1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
/***************************************************************************
kradioapp.h - description
-------------------
begin : Sa Feb 9 2002
copyright : (C) 2002 by Klas Kalass / Martin Witte / Frank Schwanz
email : klas.kalass@gmx.de
***************************************************************************/
/***************************************************************************
* *
* 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 KRADIO_KRADIOAPP_H
#define KRADIO_KRADIOAPP_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <tqdict.h>
#include <kapplication.h>
#include <kaboutapplication.h>
#include "pluginmanager.h"
#include "plugins.h"
class KLibrary;
class KRadioAbout : public PluginBase
{
public:
KRadioAbout(const TQString &name) : PluginBase(name, "KRadio Application") {}
virtual TQString pluginClassName() const { return "KRadioAbout"; }
virtual ConfigPageInfo createConfigurationPage () { return ConfigPageInfo(); }
virtual AboutPageInfo createAboutPage ();
virtual void saveState (TDEConfig *) const {}
virtual void restoreState (TDEConfig *) {}
};
typedef PluginBase *(*t_kradio_plugin_init_func)(const TQString & cls, const TQString &obj);
typedef void (*t_kradio_plugin_info_func)(TQMap<TQString, TQString> &);
typedef void (*t_kradio_plugin_libload_func)();
typedef void (*t_kradio_plugin_libunload_func)();
struct PluginLibraryInfo {
KLibrary *library;
TQMap<TQString,TQString> plugins;
t_kradio_plugin_init_func init_func;
t_kradio_plugin_info_func info_func;
t_kradio_plugin_libload_func libload_func;
t_kradio_plugin_libunload_func libunload_func;
PluginLibraryInfo() : library(NULL), init_func(NULL), info_func(NULL), libload_func(NULL), libunload_func(NULL) {}
PluginLibraryInfo(const TQString &libname);
bool valid() { return init_func && info_func && library && libload_func && libunload_func; }
};
struct PluginClassInfo {
TQString class_name;
TQString description;
t_kradio_plugin_init_func create_function;
PluginClassInfo() : create_function(NULL) {}
PluginClassInfo(const TQString &_name, const TQString &descr, t_kradio_plugin_init_func init_func)
: class_name(_name), description(descr), create_function(init_func) {}
PluginBase *CreateInstance(const TQString &obj_name) { return create_function ? create_function(class_name, obj_name) : NULL; }
};
class KRadioApp : public TDEApplication
{
Q_OBJECT
public:
KRadioApp();
virtual ~KRadioApp();
virtual void saveState (TDEConfig *c);
virtual void restoreState (TDEConfig *c);
virtual PluginManager *createNewInstance(const TQString &name);
virtual KLibrary *LoadLibrary (const TQString &library);
virtual void UnloadLibrary (const TQString &library);
virtual PluginBase *CreatePlugin (PluginManager *manager, const TQString &name, const TQString &object_name);
virtual const TQMap<TQString, PluginLibraryInfo> &getPluginLibraries() const { return m_PluginLibraries; }
virtual const TQMap<TQString, PluginClassInfo> &getPluginClasses() const { return m_PluginInfos; }
virtual void startPlugins();
protected slots:
virtual void saveState();
virtual void slotAboutToQuit();
protected:
TQDict<PluginManager> m_Instances;
TQMap<TQString, PluginLibraryInfo> m_PluginLibraries;
TQMap<TQString, PluginClassInfo> m_PluginInfos;
bool m_quitting;
};
#endif
|