OSDN Git Service

initial import
[kde/libdbusmenu-qt.git] / src / dbusmenuexporterdbus_p.h
1 /* This file is part of the dbusmenu-qt library
2    Copyright 2010 Canonical
3    Author: Aurelien Gateau <aurelien.gateau@canonical.com>
4
5    This library is free software; you can redistribute it and/or
6    modify it under the terms of the GNU Library General Public
7    License (LGPL) as published by the Free Software Foundation;
8    either version 2 of the License, or (at your option) any later
9    version.
10
11    This library is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14    Library General Public License for more details.
15
16    You should have received a copy of the GNU Library General Public License
17    along with this library; see the file COPYING.LIB.  If not, write to
18    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19    Boston, MA 02110-1301, USA.
20 */
21 #ifndef DBUSMENUEXPORTERDBUS_P_H
22 #define DBUSMENUEXPORTERDBUS_P_H
23
24 // Local
25 #include <dbusmenutypes_p.h>
26
27 // Qt
28 #include <QtCore/QObject>
29 #include <QtCore/QVariant>
30 #include <QtDBus/QDBusAbstractAdaptor>
31 #include <QtDBus/QDBusVariant>
32
33 class DBusMenuExporter;
34
35 /**
36  * Internal class implementing the DBus side of DBusMenuExporter
37  * This avoid exposing the implementation of the DBusMenu spec to the outside
38  * world.
39  */
40 class DBusMenuExporterDBus : public QObject
41 {
42     Q_OBJECT
43     Q_CLASSINFO("D-Bus Interface", "com.canonical.dbusmenu")
44     Q_PROPERTY(uint Version READ Version)
45     Q_PROPERTY(QString Status READ status)
46 public:
47     DBusMenuExporterDBus(DBusMenuExporter *m_exporter);
48
49     uint Version() const { return 2; }
50
51     QString status() const;
52     void setStatus(const QString &status);
53
54 public Q_SLOTS:
55     Q_NOREPLY void Event(int id, const QString &eventId, const QDBusVariant &data, uint timestamp);
56     QDBusVariant GetProperty(int id, const QString &property);
57     uint GetLayout(int parentId, int recursionDepth, const QStringList &propertyNames, DBusMenuLayoutItem &item);
58     DBusMenuItemList GetGroupProperties(const QList<int> &ids, const QStringList &propertyNames);
59     bool AboutToShow(int id);
60
61 Q_SIGNALS:
62     void ItemsPropertiesUpdated(DBusMenuItemList, DBusMenuItemKeysList);
63     void LayoutUpdated(uint revision, int parentId);
64     void ItemActivationRequested(int id, uint timeStamp);
65
66 private:
67     DBusMenuExporter *m_exporter;
68     QString m_status;
69
70     friend class DBusMenuExporter;
71     friend class DBusMenuExporterPrivate;
72
73     QVariantMap getProperties(int id, const QStringList &names) const;
74 };
75
76 #endif /* DBUSMENUEXPORTERDBUS_P_H */