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
112
113
114
115
116
117
118
119
120
121
122
|
/*
* Copyright (C) 2013-2016 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 ACCOUNTENTRY_H
#define ACCOUNTENTRY_H
#include <QObject>
#include <TelepathyQt/Account>
class Protocol;
typedef struct {
QString busName;
QString objectPath;
} ConnectionInfo;
class AccountEntry : public QObject
{
Q_OBJECT
Q_PROPERTY(AccountType type READ type CONSTANT)
Q_PROPERTY(QString accountId READ accountId NOTIFY accountIdChanged)
Q_PROPERTY(bool active READ active NOTIFY activeChanged)
Q_PROPERTY(QString displayName READ displayName WRITE setDisplayName NOTIFY displayNameChanged)
Q_PROPERTY(QString status READ status NOTIFY statusChanged)
Q_PROPERTY(QString statusMessage READ statusMessage NOTIFY statusMessageChanged)
Q_PROPERTY(QString selfContactId READ selfContactId NOTIFY selfContactIdChanged)
Q_PROPERTY(bool connected READ connected NOTIFY connectedChanged)
Q_PROPERTY(QStringList addressableVCardFields READ addressableVCardFields NOTIFY addressableVCardFieldsChanged)
Q_PROPERTY(bool usePhoneNumbers READ usePhoneNumbers NOTIFY usePhoneNumbersChanged)
Q_PROPERTY(Protocol* protocolInfo READ protocolInfo CONSTANT)
Q_PROPERTY(Capabilities capabilities READ capabilities NOTIFY capabilitiesChanged)
Q_ENUMS(AccountType)
friend class AccountEntryFactory;
public:
enum AccountType {
PhoneAccount,
GenericAccount
};
enum Capability {
CapabilityNone = 0,
CapabilityTextChatrooms = 1,
CapabilityConferenceTextChats = 2,
CapabilityConferenceTextChatsWithInvitees = 4,
CapabilityConferenceTextChatrooms = 8,
CapabilityConferenceTextChatroomsWithInvitees = 16,
CapabilityContactSearches = 32
};
Q_DECLARE_FLAGS(Capabilities, Capability);
bool ready() const;
QString accountId() const;
QString displayName() const;
QString status() const;
QString statusMessage() const;
QString selfContactId() const;
void setDisplayName(const QString &name);
Tp::AccountPtr account() const;
virtual AccountType type() const;
virtual QStringList addressableVCardFields() const;
virtual bool usePhoneNumbers() const;
virtual bool compareIds(const QString &first, const QString &second) const;
virtual bool active() const;
virtual bool connected() const;
Capabilities capabilities() const;
Protocol *protocolInfo() const;
static void addAccountLabel(const QString &accountId, QString &text);
Q_SIGNALS:
void accountReady();
void accountIdChanged();
void activeChanged();
void displayNameChanged();
void statusChanged();
void statusMessageChanged();
void selfContactIdChanged();
void connectedChanged();
void addressableVCardFieldsChanged();
void usePhoneNumbersChanged();
void removed();
void connectionStatusChanged(Tp::ConnectionStatus status);
void capabilitiesChanged();
protected Q_SLOTS:
virtual void initialize();
virtual void watchSelfContactPresence();
virtual void onConnectionChanged(Tp::ConnectionPtr connection);
virtual void onSelfContactChanged();
protected:
explicit AccountEntry(const Tp::AccountPtr &account, QObject *parent = 0);
Tp::AccountPtr mAccount;
ConnectionInfo mConnectionInfo;
bool mReady;
Protocol *mProtocol;
};
Q_DECLARE_OPERATORS_FOR_FLAGS(AccountEntry::Capabilities);
#endif // ACCOUNTENTRY_H
|