/*************************************************************************** quantaplugininterface.h - description ------------------- begin : Mon Sep 16 2002 copyright : (C) 2002 by Marc Britton (C) 2003 by Andras Mantia ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef QUANTAPLUGININTERFACE_H #define QUANTAPLUGININTERFACE_H /* KDE INCLUDES */ #include #include /* QT INCLUDES */ #include #include #include #include /* OTHER INCLUDES */ class QuantaPlugin; /**Provides an interface to the installed plugins *@author Marc Britton */ class QuantaPluginInterface : public TQObject { Q_OBJECT public: /** * since this class is a singleton you must use this function to access it * * the parameters are only used at the first call to create the class * */ static QuantaPluginInterface* const ref(TQWidget *parent = 0L) { static QuantaPluginInterface *m_ref; if (!m_ref) m_ref = new QuantaPluginInterface (parent); return m_ref; } ~QuantaPluginInterface(); /** Reads the rc file */ virtual void readConfig(); /** Write the rc file */ virtual void writeConfig(); /* Returns TRUE if the plugin specified by a_name is available for us*/ bool pluginAvailable(const TQString &); /** Gets the plugins */ TQDict plugins() {return m_plugins;}; /** Sets the plugins */ void setPlugins(TQDict plugins) {m_plugins = plugins;}; /** Gets the plugin specified by a_name */ virtual QuantaPlugin *plugin(const TQString &); /** Gets the plugin menu */ virtual TQPopupMenu *pluginMenu() {return m_pluginMenu;}; void setPluginMenu(TQPopupMenu *pluginMenu) {m_pluginMenu = pluginMenu;} /** Builds the plugins menu dynamically */ void buildPluginMenu(); private: /** The constructor is privat because we use singleton patter. * If you need the class use QuantaPluginInterface::ref() for * construction and reference */ QuantaPluginInterface(TQWidget *parent); protected slots: /** slot for the menu: validate */ void slotPluginsValidate(); /** slot for the menu: edit */ void slotPluginsEdit(); protected: /** Gets the plugin names */ virtual TQStringList pluginNames() const; void readConfigFile(const TQString& configFile); TQDict m_plugins; TQWidget *m_parent; TQPopupMenu *m_pluginMenu; signals: void hideSplash(); void statusMsg(const TQString &); }; #endif