summaryrefslogtreecommitdiffstats
path: root/systemsettings/tdecmodulemenu.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 16:17:04 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 16:17:04 -0600
commit63c7b752146a799925d8e2669aa3ee40a04754c8 (patch)
tree9537f3dba6b8236799a00f921108dd6e38215a1a /systemsettings/tdecmodulemenu.h
parentae3203e4a4717c90e6364c5a66a0d9a5dd5b7c4d (diff)
downloadtde-systemsettings-63c7b752146a799925d8e2669aa3ee40a04754c8.tar.gz
tde-systemsettings-63c7b752146a799925d8e2669aa3ee40a04754c8.zip
Fix FTBFS resulting from KCModule rename
Diffstat (limited to 'systemsettings/tdecmodulemenu.h')
-rw-r--r--systemsettings/tdecmodulemenu.h158
1 files changed, 158 insertions, 0 deletions
diff --git a/systemsettings/tdecmodulemenu.h b/systemsettings/tdecmodulemenu.h
new file mode 100644
index 0000000..e025f8d
--- /dev/null
+++ b/systemsettings/tdecmodulemenu.h
@@ -0,0 +1,158 @@
+/**
+ * Copyright (C) 2005 Benjamin C Meyer (ben+tdecmodulemenu at meyerhome dot net)
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public License
+ * along with this library; see the file COPYING.LIB. If not, write to
+ * the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
+ */
+
+#ifndef KCMMODULEMENU_H
+#define KCMMODULEMENU_H
+
+#include <tdecmoduleinfo.h>
+
+class TDECModuleMenuPrivate;
+
+/**
+ * List of all KCM modules inside a FreeDesktop.org menu
+ * The menu spec is located at: http://www.freedesktop.org/Standards/menu-spec
+ *
+ * For a menu to show up in TDE three files need to be installed in the system.
+ *
+ * example-merge.menu
+ * example.directory
+ * example.menu
+ *
+ * example-merge.menu should be installed in xdg/menus/applications-merged/
+ * so that ksyscoco will find it.
+ *
+ * \code
+ * <!DOCTYPE Menu PUBLIC "-//freedesktop//DTD Menu 1.0//EN"
+ * "http://www.freedesktop.org/standards/menu-spec/1.0/menu.dtd">
+ *
+ * <Menu>
+ * <!-- The following menus are hidden by default -->
+ * <Menu>
+ * <Name>Example Menu</Name>
+ * <Directory>example.directory</Directory>
+ * <MergeFile>../example.menu</MergeFile>
+ * </Menu>
+ * </Menu>
+ * \endcode
+ *
+ * example.directory should be installed in share/desktop-directories/ where files
+ * such as tde-system.directory reside. It is important that it have X-TDE-BaseGroup
+ * as this value is the class constructor argument.
+ *
+ * \code
+ * [Desktop Entry]
+ * Encoding=UTF-8
+ * Name=Example Menu
+ * NoDisplay=true
+ * Icon=package_settings
+ * X-TDE-BaseGroup=examplemenu
+ * \endcode
+ *
+ * example.menu should be installed in xdg/menus/ so that ksyscoco will find
+ * it. See the above url for example menus. After changing the menu you need
+ * to run "kbuildsycoca" to regenerate the cache as ksyscoco will cache the
+ * menu and is a file that doesn't change on users.
+ */
+
+/**
+ * A menu consists of menu items. An item is either another menu or a module.
+ */
+class MenuItem {
+public:
+ MenuItem( bool isMenu=false ){ menu = isMenu; };
+ bool menu;
+ TQString subMenu;
+ TQString caption;
+ TDECModuleInfo item;
+};
+
+
+class TDECModuleMenu : public TQValueList<TDECModuleInfo>
+{
+
+public:
+ TQString caption;
+
+ /**
+ * @param the X-TDE-BaseGroup item from the directory file
+ * that should be loaded.
+ *
+ * Example:
+ * In example.directory
+ * X-TDE-BaseGroup=examplemenu
+ * so menuName should be "systemsettings"
+ */
+ TDECModuleMenu( const TQString &menuName );
+
+ /**
+ * Deconstructor
+ */
+ virtual ~TDECModuleMenu();
+
+ /**
+ * Returns item of a menu path. An empty string is the top level.
+ * Item order is maintained from the menu file.
+ * @param path to return submenus from.
+ * @return all items in menuPath.
+ */
+ TQValueList<MenuItem> menuList( const TQString &menuPath=TQString() );
+
+ /**
+ * Returns the modules in a menu path. An empty string is the top level.
+ * @param menu to return modules from.
+ * @returns only the top level modules of menuPath
+ */
+ TQValueList<TDECModuleInfo> modules( const TQString &menuPath=TQString() );
+
+ /**
+ * Returns the sub menus of a menu path. An empty string is the top level.
+ * @param path to return submenus from.
+ * @return only the submenus of menuPath.
+ */
+ TQStringList submenus( const TQString &menuPath=TQString() );
+
+
+protected:
+ /**
+ * Reads all the desktop files from the pathName and saves/loads
+ * all of the kcm's into the list.
+ * This is the <Name> from the merge.menu file
+ * @param pathName the base path name of the menu.
+ */
+ virtual void readMenu( const TQString &pathName );
+
+ /**
+ * Function that determines if the entry from readMenu
+ * should be added to the list or not. It checks
+ * to see if it is an authorized kcm module that has a library.
+ *
+ * Overload to filter out kcm modules
+ *
+ * @entry to test
+ * @return true if it should be included
+ */
+ virtual bool addEntry( KSycocaEntry *entry );
+
+private:
+ TDECModuleMenuPrivate *d;
+ TQString deriveCaptionFromPath( const TQString &menuPath );
+};
+
+#endif // KCMMODULEMENU_H
+