blob: 234107bb9b4a7f1acfdb86df37200c18f7bb7c16 (
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
|
%{H_TEMPLATE}
#ifndef __KDEVPART_%{APPNAMEUC}_H__
#define __KDEVPART_%{APPNAMEUC}_H__
#include <kdevplugin.h>
#include <codemodel.h>
#include <kdevlanguagesupport.h>
#include <tqstringlist.h>
#include <kdialogbase.h>
class KAction;
/*
Please read the README.dox file for more info about this part
*/
class %{APPNAME}Part : public KDevLanguageSupport
{
Q_OBJECT
TQ_OBJECT
public:
%{APPNAME}Part(TQObject *tqparent, const char *name, const TQStringList &);
~%{APPNAME}Part();
protected:
virtual Features features();
virtual KMimeType::List mimeTypes();
private slots:
void slotRun();
void projectConfigWidget(KDialogBase *dlg);
void projectOpened();
void projectClosed();
void savedFile(const KURL &fileName);
void addedFilesToProject(const TQStringList &fileList);
void removedFilesFromProject(const TQStringList &fileList);
void parse();
void slotActivePartChanged(KParts::Part *part);
private:
KAction *m_build;
};
#endif
|