Lomiri
Loading...
Searching...
No Matches
AccountsServiceDBusAdaptor.h
1/*
2 * Copyright (C) 2013-2016 Canonical Ltd.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; version 3.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#ifndef LOMIRI_ACCOUNTSSERVICEDBUSADAPTOR_H
18#define LOMIRI_ACCOUNTSSERVICEDBUSADAPTOR_H
19
20#include <QDBusArgument>
21#include <QDBusContext>
22#include <QDBusInterface>
23#include <QDBusPendingReply>
24#include <QMap>
25#include <QObject>
26#include <QString>
27
28class AccountsServiceDBusAdaptor: public QObject, public QDBusContext
29{
30 Q_OBJECT
31
32public:
33 explicit AccountsServiceDBusAdaptor(QObject *parent = 0);
34 ~AccountsServiceDBusAdaptor() = default;
35
36 QDBusPendingReply<QVariantMap> getAllPropertiesAsync(const QString &user, const QString &interface);
37 QDBusPendingReply<QVariant> getUserPropertyAsync(const QString &user, const QString &interface, const QString &property);
38 QDBusPendingCall setUserPropertyAsync(const QString &user, const QString &interface, const QString &property, const QVariant &value);
39
40Q_SIGNALS:
41 void propertiesChanged(const QString &user, const QString &interface, const QStringList &changed);
42 void maybeChanged(const QString &user); // Standard properties might have changed
43
44private Q_SLOTS:
45 void propertiesChangedSlot(const QString &interface, const QVariantMap &changed, const QStringList &invalid);
46 void maybeChangedSlot();
47
48private:
49 QDBusInterface *getUserInterface(const QString &user);
50 QString getUserForPath(const QString &path) const;
51
52 QDBusInterface *m_accountsManager;
53 QMap<QString, QDBusInterface *> m_users;
54
55 bool m_ignoreNextChanged;
56};
57
58#endif