blob: a40c39e8d8fca44bc113ce9b69a5b4bff6459539 (
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 KInstance;
class KAboutData;
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 KInstance* global();
// _Creates_ a KAboutData but doesn't keep ownership
static KAboutData* aboutData();
private:
static KInstance* s_global;
static KAboutData *s_aboutData;
};
} //namespace KChart
#endif
|