Unity 8
unitydbusvirtualobject.h
1 /*
2  * Copyright (C) 2014 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 UNITYDBUSVIRTUALOBJECT_H
18 #define UNITYDBUSVIRTUALOBJECT_H
19 
20 #include <QDBusConnection>
21 #include <QDBusVirtualObject>
22 #include <QObject>
23 
24 class Q_DECL_EXPORT UnityDBusVirtualObject : public QDBusVirtualObject
25 {
26  Q_OBJECT
27 
28 public:
29  explicit UnityDBusVirtualObject(const QString &path, const QString &service = QString(), bool async = true, QObject *parent = 0);
30  ~UnityDBusVirtualObject();
31 
32  QDBusConnection connection() const;
33  QString path() const;
34 
35 protected:
36  void notifyPropertyChanged(const QString& interface, const QString& node, const QString& propertyName, const QVariant &value);
37 
38 private Q_SLOTS:
39  void registerObject();
40 
41 private:
42  QDBusConnection m_connection;
43  QString m_path;
44  QString m_service;
45 };
46 
47 #endif // UNITYDBUSVIRTUALOBJECT_H