~jpakkane/indicator-network/grace

« back to all changes in this revision

Viewing changes to src/qt/src/dbus-properties-interface.h

* Move in connectivity-cpp from lp:connectivity-api
* Move out libconnectivity-qt and qtdeclarative5-connectivity-plugin
  to lp:connectivity-api Fixes: 1341548
Approved by: Charles Kerr, PS Jenkins bot

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright © 2014 Canonical Ltd.
3
 
 *
4
 
 * This program is free software: you can redistribute it and/or modify it
5
 
 * under the terms of the GNU Lesser General Public License version 3,
6
 
 * as published by the Free Software Foundation.
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 Lesser General Public License for more details.
12
 
 *
13
 
 * You should have received a copy of the GNU Lesser General Public License
14
 
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
15
 
 *
16
 
 * Authors:
17
 
 *     Antti Kaijanmäki <antti.kaijanmaki@canonical.com>
18
 
 */
19
 
 
20
 
#ifndef DBUSPROPERTIES_H
21
 
#define DBUSPROPERTIES_H
22
 
 
23
 
#include <QtCore/QObject>
24
 
#include <QtCore/QByteArray>
25
 
#include <QtCore/QList>
26
 
#include <QtCore/QMap>
27
 
#include <QtCore/QString>
28
 
#include <QtCore/QStringList>
29
 
#include <QtCore/QVariant>
30
 
#include <QtDBus/QtDBus>
31
 
 
32
 
class DBusPropertiesInterface: public QDBusAbstractInterface
33
 
{
34
 
    Q_OBJECT
35
 
public:
36
 
    static inline const char *staticInterfaceName()
37
 
    { return "org.freedesktop.DBus.Properties"; }
38
 
 
39
 
public:
40
 
    DBusPropertiesInterface(const QString &service,
41
 
                            const QString &path,
42
 
                            const QDBusConnection &connection,
43
 
                            QObject *parent = 0);
44
 
 
45
 
    ~DBusPropertiesInterface();
46
 
 
47
 
Q_SIGNALS:
48
 
    void PropertiesChanged(const QString interface_name,
49
 
                           const QVariantMap &changed_properties,
50
 
                           const QStringList &invalidated_properties);
51
 
};
52
 
 
53
 
#endif