blob: 149b4b509edaa887ef5df722e7b84b265c2f1b37 (
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
|
/* This template is based off of the KOffice example written by Torben Weis <[email protected]
It was converted to a KDevelop template by Ian Reinhart Geiser <[email protected]>
*/
#ifndef %{APPNAME}_FACTORY_H
#define %{APPNAME}_FACTORY_H
#include <koFactory.h>
class KInstance;
class KAboutData;
class %{APPNAME}Factory : public KoFactory
{
Q_OBJECT
TQ_OBJECT
public:
%{APPNAME}Factory( TQObject* tqparent = 0, const char* name = 0 );
~%{APPNAME}Factory();
virtual KParts::Part *createPartObject( TQWidget *tqparentWidget = 0, const char *widgetName = 0, TQObject *tqparent = 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;
};
#endif
|