From 63c7b752146a799925d8e2669aa3ee40a04754c8 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Fri, 25 Jan 2013 16:17:04 -0600 Subject: Fix FTBFS resulting from KCModule rename --- systemsettings/tdecmodulemenu.h | 158 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 158 insertions(+) create mode 100644 systemsettings/tdecmodulemenu.h (limited to 'systemsettings/tdecmodulemenu.h') 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 + +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 + * + * + * + * + * + * Example Menu + * example.directory + * ../example.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 +{ + +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 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 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 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 + -- cgit v1.2.1