Skip to content
Snippets Groups Projects
Commit e14a2564 authored by jpbl's avatar jpbl
Browse files

*** empty log message ***

parent 2e078b61
No related branches found
No related tags found
No related merge requests found
Showing
with 120 additions and 3 deletions
......@@ -31,6 +31,13 @@ Call::Call(const std::string &sessionId,
, mId(callId)
{}
Call::Call(const Session &session,
const std::string &callId)
: mSessionId(session.id())
, mId(callId)
{}
std::string
Call::answer()
{
......
......@@ -23,11 +23,15 @@
#include <string>
class Session;
class Call
{
public:
Call(const std::string &sessionId,
const std::string &callId);
Call(const Session &session,
const std::string &callId);
/**
* This function will answer the call.
......
#include "PhoneLine.hpp"
PhoneLine::PhoneLine()
: mCall(NULL)
{}
#include <QObject>
#include <QMutex>
#include <string>
#include "Call.h"
class PhoneLine : public QObject
{
Q_OBJECT
public:
PhoneLine();
~PhoneLine();
void call(const std::string &to);
signals:
void selected();
void unselected();
private:
Call *mCall;
QMutex mCallMutex;
}
#include "PhoneLineManager.hpp"
PhoneLineManager::PhoneLineManager()
: mAccount(mSession.getDefaultAccount())
, mCurrentLine(NULL)
{}
void
PhoneLineManager::selectLine(int line)
{
PhoneLine *newline = NULL;
QMutexLock currentLineGuard(&mCurrentLineMutex);
{
QMutexLock phoneLinesGuard(&mPhoneLinesMutex);
if(mPhoneLines.size() > line) {
if(mCurrentLine != mPhoneLines[line]) {
if(mCurrentLine != NULL) {
mCurrentLine->unselect();
}
mCurrentLine = mPhoneLines[line];
mCurrentLine->select();
}
}
}
}
#include <QObject>
#include <QMutex>
#include <utility>
#include <vector>
class PhoneLineManager : public QObject
{
Q_OBJECT
public:
void call(const QString &to);
/**
* This function will switch the lines.
*/
void selectLine(int line);
PhoneLine *getLine(int line);
private:
Session mSession;
Account mAccount;
std::vector< PhoneLine * > mPhoneLines;
QMutex mPhoneLinesMutex;
PhoneLine *mCurrentLine;
QMutex mCurrentLineMutex;
};
......@@ -11,7 +11,8 @@
SFLPhoneWindow::SFLPhoneWindow()
: QMainWindow(NULL, 0)
// Qt::FramelessWindowHint)
, mSession()
, mAccount(mSession.getAccount("monaccount")
{
QLabel *l = new QLabel(this);
QPixmap main(":/images/main-img.png");
......@@ -19,6 +20,13 @@ SFLPhoneWindow::SFLPhoneWindow()
resize(main.size());
l->resize(main.size());
// QLabel *os = new QLabel(this);
// QPixmap overscreen(":/images/overscreen.png");
// os->setPixmap(overscreen);
// os->resize(overscreen.size());
// os->move(22,44);
initLineButtons();
}
......@@ -45,7 +53,7 @@ SFLPhoneWindow::initLineButtons()
this);
line->move(xpos, ypos);
xpos += offset;
mLines.push_back(line);
mLineButtons.push_back(line);
}
}
......@@ -10,8 +10,10 @@ public:
SFLPhoneWindow();
~SFLPhoneWindow();
private:
void initLineButtons();
private:
std::list< JPushButton * > mLines;
std::list< JPushButton * > mLineButtons;
std::list< PhoneLine > mPhoneLines;
};
......@@ -36,6 +36,12 @@ Session::Session()
Requester::instance().registerSession(mId, s);
}
std::string
Session::id()
{
return mId;
}
Account
Session::getAccount(const std::string &name)
{
......
......@@ -35,6 +35,8 @@ class Session
* retreive the account identified by name.
*/
Account getAccount(const std::string &name);
std::string id();
private:
std::string mId;
......
src/gui/official/images/about.png

2.34 KiB

src/gui/official/images/audio.png

1.92 KiB

src/gui/official/images/gsm.png

1.02 KiB

src/gui/official/images/logo_ico.png

1.48 KiB

src/gui/official/images/network.png

1.85 KiB

src/gui/official/images/preferences.png

2.29 KiB

src/gui/official/images/sfl-logo.png

1.7 KiB

src/gui/official/images/sflphone_logo.png

10.2 KiB

src/gui/official/images/signalisations.png

2.22 KiB

src/gui/official/images/tray-icon.png

1.32 KiB

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment