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