blob: ec5123080f0cdf5cee579c99a24d2cac1efb4f3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
#ifndef VOICECALLMANAGER_H
#define VOICECALLMANAGER_H
#include "voicecallhandler.h"
#include "settings.h"
#include <QObject>
#include <QDBusInterface>
#include <QDBusPendingCallWatcher>
#include <QLoggingCategory>
class VoiceCallProviderData
{
public:
VoiceCallProviderData() {/*..*/}
VoiceCallProviderData(const QString &pId, const QString &pType, const QString &pLabel)
: id(pId), type(pType), label(pLabel) {/*...*/}
QString id;
QString type;
QString label;
};
typedef QHash<QString,VoiceCallProviderData> VoiceCallProviderHash;
typedef QList<VoiceCallHandler*> VoiceCallHandlerList;
class VoiceCallManager : public QObject
{
Q_OBJECT
QLoggingCategory l;
Q_PROPERTY(QDBusInterface* interface READ interface)
Q_PROPERTY(VoiceCallHandlerList voiceCalls READ voiceCalls NOTIFY voiceCallsChanged)
Q_PROPERTY(VoiceCallProviderHash providers READ providers NOTIFY providersChanged)
Q_PROPERTY(QString defaultProviderId READ defaultProviderId NOTIFY defaultProviderChanged)
Q_PROPERTY(VoiceCallHandler* activeVoiceCall READ activeVoiceCall NOTIFY activeVoiceCallChanged)
Q_PROPERTY(QString audioMode READ audioMode WRITE setAudioMode NOTIFY audioModeChanged)
Q_PROPERTY(bool isAudioRouted READ isAudioRouted WRITE setAudioRouted NOTIFY audioRoutedChanged)
Q_PROPERTY(bool isMicrophoneMuted READ isMicrophoneMuted WRITE setMuteMicrophone NOTIFY microphoneMutedChanged)
Q_PROPERTY(bool isSpeakerMuted READ isSpeakerMuted WRITE setMuteSpeaker NOTIFY speakerMutedChanged)
public:
explicit VoiceCallManager(Settings *settings, QObject *parent = 0);
~VoiceCallManager();
QDBusInterface* interface() const;
VoiceCallHandlerList voiceCalls() const;
VoiceCallProviderHash providers() const;
QString defaultProviderId() const;
VoiceCallHandler* activeVoiceCall() const;
QString audioMode() const;
bool isAudioRouted() const;
bool isMicrophoneMuted() const;
bool isSpeakerMuted() const;
Q_SIGNALS:
void error(const QString &message);
void providersChanged();
void voiceCallsChanged();
void defaultProviderChanged();
void activeVoiceCallChanged();
void audioModeChanged();
void audioRoutedChanged();
void microphoneMutedChanged();
void speakerMutedChanged();
public Q_SLOTS:
void dial(const QString &providerId, const QString &msisdn);
void hangupAll();
void silenceRingtone();
bool setAudioMode(const QString &mode);
bool setAudioRouted(bool on);
bool setMuteMicrophone(bool on = true);
bool setMuteSpeaker(bool on = true);
protected Q_SLOTS:
void initialize(bool notifyError = false);
void onProvidersChanged();
void onVoiceCallsChanged();
void onActiveVoiceCallChanged();
void onPendingCallFinished(QDBusPendingCallWatcher *watcher);
void onPendingSilenceFinished(QDBusPendingCallWatcher *watcher);
private:
class VoiceCallManagerPrivate *d_ptr;
Settings *settings;
Q_DISABLE_COPY(VoiceCallManager)
Q_DECLARE_PRIVATE(VoiceCallManager)
};
#endif // VOICECALLMANAGER_H
|