blob: 4e64c583e42b98305e9c717b084465f577d01570 (
plain)
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
|
/**
* $Id: kchart_factory.h 508787 2006-02-12 18:28:12Z ingwa $
*
* Kalle Dalheimer <kalle@kde.org>
*/
#ifndef KCHART_FACTORY_H
#define KCHART_FACTORY_H
#include <KoFactory.h>
class TDEInstance;
class TDEAboutData;
namespace KChart
{
class KChartFactory : public KoFactory
{
Q_OBJECT
public:
KChartFactory( TQObject* parent = 0, const char* name = 0 );
virtual ~KChartFactory();
virtual KParts::Part *createPartObject( TQWidget* = 0,
const char * = 0,
TQObject* parent = 0,
const char* name = 0,
const char* classname = "KoDocument",
const TQStringList &args = TQStringList() );
static TDEInstance* global();
// _Creates_ a TDEAboutData but doesn't keep ownership
static TDEAboutData* aboutData();
private:
static TDEInstance* s_global;
static TDEAboutData *s_aboutData;
};
} //namespace KChart
#endif
|