You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
613 B
34 lines
613 B
15 years ago
|
%{H_TEMPLATE}
|
||
|
|
||
|
#ifndef _%{APPNAMEUC}_H_
|
||
|
#define _%{APPNAMEUC}_H_
|
||
|
|
||
12 years ago
|
#include <tdecmodule.h>
|
||
15 years ago
|
#include <kaboutdata.h>
|
||
|
|
||
12 years ago
|
class %{APPNAME}: public TDECModule
|
||
15 years ago
|
{
|
||
|
Q_OBJECT
|
||
13 years ago
|
|
||
15 years ago
|
|
||
|
public:
|
||
14 years ago
|
%{APPNAME}( TQWidget *parent=0, const char *name=0, const TQStringList& = TQStringList() );
|
||
15 years ago
|
~%{APPNAME}();
|
||
|
|
||
|
virtual void load();
|
||
|
virtual void save();
|
||
|
virtual void defaults();
|
||
|
virtual int buttons();
|
||
15 years ago
|
virtual TQString quickHelp() const;
|
||
12 years ago
|
virtual const TDEAboutData *aboutData()const
|
||
15 years ago
|
{ return myAboutData; };
|
||
|
|
||
|
public slots:
|
||
|
void configChanged();
|
||
|
|
||
|
private:
|
||
12 years ago
|
TDEAboutData *myAboutData;
|
||
15 years ago
|
};
|
||
|
|
||
|
#endif
|