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.
78 lines
2.2 KiB
78 lines
2.2 KiB
/***************************************************************************
|
|
pluginloader.h
|
|
-------------------
|
|
begin : Thu Feb 12 2009
|
|
copyright : (C) 2009 Cristian Onet
|
|
email : onet.cristian@gmail.com
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* 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 PLUGINLOADER_H
|
|
#define PLUGINLOADER_H
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// QT Includes
|
|
|
|
#include <tqwidget.h>
|
|
#include <tqscrollview.h>
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// KDE Includes
|
|
#include <kplugininfo.h>
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// Project Includes
|
|
|
|
#include <kmymoney/export.h>
|
|
|
|
class KPluginSelector;
|
|
|
|
namespace KMyMoneyPlugin
|
|
{
|
|
class Plugin;
|
|
|
|
class KMYMONEY_EXPORT PluginLoader : public TQObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
PluginLoader(TQObject* parent);
|
|
virtual ~PluginLoader();
|
|
static PluginLoader* instance();
|
|
|
|
void loadPlugins();
|
|
Plugin* getPluginFromInfo(KPluginInfo*);
|
|
KPluginSelector* pluginSelectorWidget();
|
|
|
|
private:
|
|
void loadPlugin(KPluginInfo*);
|
|
|
|
signals:
|
|
void plug(KPluginInfo*);
|
|
void unplug(KPluginInfo*);
|
|
void configChanged(Plugin*); // consfiguration of the plugin has changed not the enabled/disabled state
|
|
|
|
private slots:
|
|
void changed();
|
|
void changedConfigOfPlugin( const TQCString & );
|
|
|
|
private:
|
|
struct Private;
|
|
Private* d;
|
|
};
|
|
}
|
|
|
|
#endif /* PLUGINLOADER_H */
|