dbusmenu-qt 0.9.2
Loading...
Searching...
No Matches
dbusmenuimporter.h
1/* This file is part of the dbusmenu-qt library
2 Copyright 2009 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 DBUSMENUIMPORTER_H
22#define DBUSMENUIMPORTER_H
23
24// Qt
25#include <QtCore/QObject>
26
27// Local
28#include <dbusmenu_export.h>
29
30class QAction;
31class QDBusAbstractInterface;
32class QDBusPendingCallWatcher;
33class QDBusVariant;
34class QIcon;
35class QMenu;
36
37class DBusMenuImporterPrivate;
38
43enum DBusMenuImporterType {
44 ASYNCHRONOUS,
45 SYNCHRONOUS
46};
47
52class DBUSMENU_EXPORT DBusMenuImporter : public QObject
53{
54 Q_OBJECT
55public:
59 DBusMenuImporter(const QString &service, const QString &path, QObject *parent = 0);
60
65 DBusMenuImporter(const QString &service, const QString &path, DBusMenuImporterType type, QObject *parent = 0);
66
67 virtual ~DBusMenuImporter();
68
72 QMenu *menu() const;
73
74public Q_SLOTS:
88 void updateMenu();
89
90Q_SIGNALS:
96
105
110
111protected:
116 virtual QMenu *createMenu(QWidget *parent);
117
122 virtual QIcon iconForName(const QString &);
123
124private Q_SLOTS:
125 void sendClickedEvent(int);
126 void slotMenuAboutToShow();
127 void slotMenuAboutToHide();
128 void slotAboutToShowDBusCallFinished(QDBusPendingCallWatcher *);
129 void slotItemActivationRequested(int id, uint timestamp);
130 void processPendingLayoutUpdates();
131 void slotLayoutUpdated(uint revision, int parentId);
132 void slotGetLayoutFinished(QDBusPendingCallWatcher *);
133
134private:
135 Q_DISABLE_COPY(DBusMenuImporter)
136 DBusMenuImporterPrivate *const d;
137 friend class DBusMenuImporterPrivate;
138
139 // Use Q_PRIVATE_SLOT to avoid exposing DBusMenuItemList
140 Q_PRIVATE_SLOT(d, void slotItemsPropertiesUpdated(const DBusMenuItemList &updatedList, const DBusMenuItemKeysList &removedList))
141};
142
143#endif /* DBUSMENUIMPORTER_H */
Definition dbusmenuimporter.h:53
DBusMenuImporter(const QString &service, const QString &path, DBusMenuImporterType type, QObject *parent=0)
void actionActivationRequested(QAction *)
QMenu * menu() const
virtual QMenu * createMenu(QWidget *parent)
virtual QIcon iconForName(const QString &)
DBusMenuImporter(const QString &service, const QString &path, QObject *parent=0)
void menuReadyToBeShown()