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;
42class DBUSMENU_EXPORT DBusMenuImporter : public QObject
43{
44 Q_OBJECT
45public:
49 DBusMenuImporter(const QString &service, const QString &path, QObject *parent = 0);
50
52
56 QMenu *menu() const;
57
58public Q_SLOTS:
72 void updateMenu();
73
74Q_SIGNALS:
80
89
94
95protected:
100 virtual QMenu *createMenu(QWidget *parent);
101
106 virtual QIcon iconForName(const QString &);
107
108private Q_SLOTS:
109 void sendClickedEvent(int);
110 void slotMenuAboutToShow();
111 void slotMenuAboutToHide();
112 void slotAboutToShowDBusCallFinished(QDBusPendingCallWatcher *);
113 void slotItemActivationRequested(int id, uint timestamp);
114 void processPendingLayoutUpdates();
115 void slotLayoutUpdated(uint revision, int parentId);
116 void slotGetLayoutFinished(QDBusPendingCallWatcher *);
117
118private:
119 Q_DISABLE_COPY(DBusMenuImporter)
120 DBusMenuImporterPrivate *const d;
121 friend class DBusMenuImporterPrivate;
122
123 // Use Q_PRIVATE_SLOT to avoid exposing DBusMenuItemList
124 Q_PRIVATE_SLOT(d, void slotItemsPropertiesUpdated(const DBusMenuItemList &updatedList, const DBusMenuItemKeysList &removedList));
125};
126
127#endif /* DBUSMENUIMPORTER_H */
Definition dbusmenuimporter.h:43
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()