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
|
/*
* Copyright (C) 2013-2015 Canonical, Ltd.
*
* Authors:
* Gustavo Pichorim Boiko <gustavo.boiko@canonical.com>
*
* This file is part of telephony-service.
*
* telephony-service is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 3.
*
* telephony-service is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef OFONOACCOUNTENTRY_H
#define OFONOACCOUNTENTRY_H
#include "accountentry.h"
#include "ussdmanager.h"
class OfonoAccountEntry : public AccountEntry
{
Q_OBJECT
Q_PROPERTY(QStringList emergencyNumbers READ emergencyNumbers NOTIFY emergencyNumbersChanged)
Q_PROPERTY(QString voicemailNumber READ voicemailNumber NOTIFY voicemailNumberChanged)
Q_PROPERTY(uint voicemailCount READ voicemailCount NOTIFY voicemailCountChanged)
Q_PROPERTY(bool voicemailIndicator READ voicemailIndicator NOTIFY voicemailIndicatorChanged)
Q_PROPERTY(QString networkName READ networkName NOTIFY networkNameChanged)
Q_PROPERTY(bool emergencyCallsAvailable READ emergencyCallsAvailable NOTIFY emergencyCallsAvailableChanged)
Q_PROPERTY(bool simLocked READ simLocked NOTIFY simLockedChanged)
Q_PROPERTY(QString serial READ serial NOTIFY serialChanged)
Q_PROPERTY(QString countryCode READ countryCode NOTIFY countryCodeChanged)
Q_PROPERTY(USSDManager* ussdManager READ ussdManager CONSTANT)
friend class AccountEntryFactory;
public:
QStringList emergencyNumbers() const;
QString voicemailNumber() const;
uint voicemailCount() const;
bool voicemailIndicator() const;
QString networkName() const;
QString countryCode() const;
bool emergencyCallsAvailable() const;
bool simLocked() const;
QString serial() const;
USSDManager *ussdManager() const;
// reimplemented from AccountEntry
virtual AccountEntry::AccountType type() const;
virtual bool connected() const;
virtual bool active() const;
virtual bool compareIds(const QString &first, const QString &second) const;
virtual QStringList addressableVCardFields();
Q_SIGNALS:
void emergencyNumbersChanged();
void voicemailNumberChanged();
void voicemailCountChanged();
void voicemailIndicatorChanged();
void networkNameChanged();
void countryCodeChanged();
void emergencyCallsAvailableChanged();
void simLockedChanged();
void serialChanged();
private Q_SLOTS:
void onEmergencyNumbersChanged(const QStringList &numbers);
void onCountryCodeChanged(const QString &countryCode);
void onVoicemailNumberChanged(const QString &number);
void onVoicemailCountChanged(uint count);
void onVoicemailIndicatorChanged(bool visible);
// reimplemented from AccountEntry
void onConnectionChanged(Tp::ConnectionPtr connection);
protected:
explicit OfonoAccountEntry(const Tp::AccountPtr &account, QObject *parent = 0);
private:
QStringList mEmergencyNumbers;
QString mCountryCode;
QString mVoicemailNumber;
uint mVoicemailCount;
bool mVoicemailIndicator;
QString mSerial;
USSDManager *mUssdManager;
};
#endif // OFONOACCOUNTENTRY_H
|