summaryrefslogtreecommitdiffstats
path: root/kicker/kicker/ui/service_mnu.h
diff options
context:
space:
mode:
Diffstat (limited to 'kicker/kicker/ui/service_mnu.h')
-rw-r--r--kicker/kicker/ui/service_mnu.h129
1 files changed, 129 insertions, 0 deletions
diff --git a/kicker/kicker/ui/service_mnu.h b/kicker/kicker/ui/service_mnu.h
new file mode 100644
index 000000000..9e28acd3f
--- /dev/null
+++ b/kicker/kicker/ui/service_mnu.h
@@ -0,0 +1,129 @@
+/*****************************************************************
+
+Copyright (c) 1996-2000 the kicker authors. See file AUTHORS.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
+AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+******************************************************************/
+
+#ifndef SERVICE_MENU_H
+#define SERVICE_MENU_H
+
+#include <qmap.h>
+#include <qvaluevector.h>
+
+#include <ksycocaentry.h>
+#include <kservice.h>
+#include <kpanelmenu.h>
+#include <kservicegroup.h>
+/**
+ * PanelServiceMenu is filled with KDE services and service groups. The sycoca
+ * database is queried and the hierarchical structure built by creating child
+ * menus of type PanelServiceMenu, so the creation is recursive.
+ *
+ * The entries are sorted alphabetically and groups come before services.
+ *
+ * @author Rik Hemsley <rik@kde.org>
+ */
+
+typedef QMap<int, KSycocaEntry::Ptr> EntryMap;
+typedef QValueVector<QPopupMenu*> PopupMenuList;
+
+class KDE_EXPORT PanelServiceMenu : public KPanelMenu
+{
+ Q_OBJECT
+
+public:
+ PanelServiceMenu(const QString & label, const QString & relPath,
+ QWidget* parent = 0, const char* name = 0,
+ bool addmenumode = false,
+ const QString &insertInlineHeader = QString::null);
+
+ virtual ~PanelServiceMenu();
+
+ QString relPath() { return relPath_; }
+
+ void setExcludeNoDisplay( bool flag );
+
+ virtual void showMenu();
+ bool highlightMenuItem( const QString &menuId );
+ void selectFirstItem();
+
+private:
+ void fillMenu( KServiceGroup::Ptr &_root, KServiceGroup::List &_list,
+ const QString &_relPath, int & id );
+
+protected slots:
+ virtual void initialize();
+ virtual void slotExec(int id);
+ virtual void slotClearOnClose();
+ virtual void slotClear();
+ virtual void configChanged();
+ virtual void slotClose();
+ void slotDragObjectDestroyed();
+
+ // for use in Add Applicaton To Panel
+ virtual void addNonKDEApp() {}
+
+protected:
+ void insertMenuItem(KService::Ptr & s, int nId, int nIndex = -1,
+ const QStringList *suppressGenericNames=0,
+ const QString &aliasname = QString::null);
+ virtual PanelServiceMenu * newSubMenu(const QString & label,
+ const QString & relPath,
+ QWidget * parent, const char * name,
+ const QString & _inlineHeader =
+ QString::null);
+
+ virtual void mousePressEvent(QMouseEvent *);
+ virtual void mouseReleaseEvent(QMouseEvent *);
+ virtual void mouseMoveEvent(QMouseEvent *);
+ virtual void dragEnterEvent(QDragEnterEvent *);
+ virtual void dragLeaveEvent(QDragLeaveEvent *);
+ virtual void updateRecentlyUsedApps(KService::Ptr &s);
+ void activateParent(const QString &child);
+ int serviceMenuStartId() { return 4242; }
+ int serviceMenuEndId() { return 5242; }
+ virtual void clearSubmenus();
+ void doInitialize();
+
+ QString relPath_;
+
+ EntryMap entryMap_;
+
+ bool loaded_;
+ bool excludeNoDisplay_;
+ QString insertInlineHeader_;
+ QPopupMenu * opPopup_;
+ bool clearOnClose_;
+ bool addmenumode_;
+ QPoint startPos_;
+ PopupMenuList subMenus;
+
+private slots:
+ void slotContextMenu(int);
+
+private:
+ enum ContextMenuEntry { AddItemToPanel, EditItem, AddMenuToPanel, EditMenu,
+ AddItemToDesktop, AddMenuToDesktop, PutIntoRunDialog };
+ KPopupMenu* popupMenu_;
+ KSycocaEntry* contextKSycocaEntry_;
+ void readConfig();
+ };
+
+#endif // SERVICE_MENU_H