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
|
%{H_TEMPLATE}
#ifndef __KDEVPART_%{APPNAMEUC}_H__
#define __KDEVPART_%{APPNAMEUC}_H__
#include <kdevplugin.h>
#include <codemodel.h>
#include <kdevlanguagesupport.h>
#include <qstringlist.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
public:
%{APPNAME}Part(QObject *parent, const char *name, const QStringList &);
~%{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 QStringList &fileList);
void removedFilesFromProject(const QStringList &fileList);
void parse();
void slotActivePartChanged(KParts::Part *part);
private:
KAction *m_build;
};
#endif
|