/usr/include/accounts-qt5/Accounts/account.h is in libaccounts-qt5-dev 1.15+17.04.20161104.1-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 | /* vi: set et sw=4 ts=4 cino=t0,(0: */
/*
* This file is part of libaccounts-qt
*
* Copyright (C) 2009-2011 Nokia Corporation.
* Copyright (C) 2012-2016 Canonical Ltd.
*
* Contact: Alberto Mardegan <alberto.mardegan@canonical.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* version 2.1 as published by the Free Software Foundation.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA
*/
/*!
* @copyright Copyright (C) 2009-2011 Nokia Corporation.
* @license LGPL
*/
#ifndef ACCOUNTS_ACCOUNT_H
#define ACCOUNTS_ACCOUNT_H
#include "Accounts/accountscommon.h"
#include "Accounts/error.h"
#include "Accounts/service.h"
#define ACCOUNTS_KEY_CREDENTIALS_ID QStringLiteral("CredentialsId")
#include <QObject>
#include <QStringList>
#include <QVariant>
extern "C"
{
typedef struct _AgAccount AgAccount;
typedef struct _AgAccountWatch *AgAccountWatch;
}
/*!
* @namespace Accounts
*/
namespace Accounts
{
typedef quint32 AccountId;
typedef QList<AccountId> AccountIdList;
class Manager;
class Provider;
class AccountServicePrivate;
/*!
* Tells the origin of an account setting: whether it was set on the account,
* or is it a default value in the service template, or whether it is unset.
*/
enum SettingSource
{
NONE,
ACCOUNT,
TEMPLATE
};
class ACCOUNTS_EXPORT Watch: public QObject
{
Q_OBJECT
public:
/* We don't want to document these.
* \cond
*/
Watch(QObject *parent = 0);
~Watch();
void setWatch(AgAccountWatch w) { watch = w; };
class Private;
// \endcond
Q_SIGNALS:
void notify(const char *key);
// \cond
private:
AgAccountWatch watch;
friend class Private;
// \endcond
};
class ACCOUNTS_EXPORT Account: public QObject
{
Q_OBJECT
public:
Account(Manager *manager, const QString &provider, QObject *parent = 0);
virtual ~Account();
static Account *fromId(Manager *manager, AccountId id,
QObject *parent = 0);
AccountId id() const;
Manager *manager() const;
bool supportsService(const QString &serviceType) const;
ServiceList services(const QString &serviceType = QString()) const;
ServiceList enabledServices() const;
bool enabled() const;
bool isEnabled() const;
void setEnabled(bool);
/*!
* Gets the account's credentials ID in Signon database.
*
* The credentials ID is first read from the currently selected service;
* if it is not found, then it is ready from the global account settings.
* In any case, the currently selected service is not altered.
*/
uint credentialsId();
/*!
* Sets the accounts credentials ID.
* The change will be written only when sync() is called.
*
* This method operates on the currently selected service.
*/
void setCredentialsId(const uint id) {
setValue(ACCOUNTS_KEY_CREDENTIALS_ID, id);
}
QString displayName() const;
void setDisplayName(const QString &displayName);
QString providerName() const;
Provider provider() const;
void selectService(const Service &service = Service());
Service selectedService() const;
/* QSettings-like methods */
QStringList allKeys() const;
void beginGroup(const QString &prefix);
QStringList childGroups() const;
QStringList childKeys() const;
void clear();
bool contains(const QString &key) const;
void endGroup();
QString group() const;
bool isWritable() const;
void remove(const QString &key);
void setValue(const QString &key, const QVariant &value);
QVariant value(const QString &key,
const QVariant &defaultValue = QVariant(),
SettingSource *source = 0) const;
SettingSource value(const QString &key, QVariant &value) const;
QString valueAsString(const QString &key,
QString default_value = QString::null,
SettingSource *source = 0) const;
int valueAsInt(const QString &key,
int default_value = 0,
SettingSource *source = 0) const;
quint64 valueAsUInt64(const QString &key,
quint64 default_value = 0,
SettingSource *source = 0) const;
bool valueAsBool(const QString &key,
bool default_value = false,
SettingSource *source = 0) const;
Watch *watchKey(const QString &key = QString());
void sync();
bool syncAndBlock();
void remove();
void sign(const QString &key, const char *token);
bool verify(const QString &key, const char **token);
bool verifyWithTokens(const QString &key, QList<const char*> tokens);
Q_SIGNALS:
void displayNameChanged(const QString &displayName);
void enabledChanged(const QString &serviceName, bool enabled);
void error(Accounts::Error error);
void synced();
void removed();
private:
AgAccount *account();
// Don't include private data in docs: \cond
class Private;
Account(Private *d, QObject *parent = 0);
friend class Manager;
friend class Account::Private;
friend class Watch;
friend class AccountService;
friend class AccountServicePrivate;
Private *d;
// \endcond
};
} //namespace Accounts
#endif // ACCOUNTS_ACCOUNT_H
|