You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
105 lines
3.2 KiB
105 lines
3.2 KiB
/***************************************************************************
|
|
quantaplugininterface.h - description
|
|
-------------------
|
|
begin : Mon Sep 16 2002
|
|
copyright : (C) 2002 by Marc Britton <consume@optushome.com.au>
|
|
(C) 2003 by Andras Mantia <amantia@kde.org>
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* 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 <tdeconfig.h>
|
|
#include <kstandarddirs.h>
|
|
|
|
/* QT INCLUDES */
|
|
#include <tqobject.h>
|
|
#include <tqdict.h>
|
|
#include <tqstringlist.h>
|
|
#include <tqpopupmenu.h>
|
|
|
|
/* OTHER INCLUDES */
|
|
|
|
class QuantaPlugin;
|
|
|
|
/**Provides an interface to the installed plugins
|
|
*@author Marc Britton
|
|
*/
|
|
class QuantaPluginInterface : public TQObject
|
|
{
|
|
TQ_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<QuantaPlugin> plugins() {return m_plugins;};
|
|
/** Sets the plugins */
|
|
void setPlugins(TQDict<QuantaPlugin> 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<QuantaPlugin> m_plugins;
|
|
|
|
TQWidget *m_parent;
|
|
|
|
TQPopupMenu *m_pluginMenu;
|
|
|
|
signals:
|
|
void hideSplash();
|
|
void statusMsg(const TQString &);
|
|
};
|
|
|
|
#endif
|