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.
38 lines
585 B
38 lines
585 B
15 years ago
|
%{CPP_TEMPLATE}
|
||
|
|
||
|
#ifndef %{APPNAME}_H__
|
||
|
#define %{APPNAME}_H__
|
||
|
|
||
12 years ago
|
#include "tdescreensaver.h"
|
||
15 years ago
|
#include "%{APPNAMELC}ui.h"
|
||
|
|
||
|
class %{APPNAME} : public KScreenSaver
|
||
|
{
|
||
|
Q_OBJECT
|
||
13 years ago
|
|
||
15 years ago
|
public:
|
||
|
%{APPNAME}( WId drawable );
|
||
|
virtual ~%{APPNAME}();
|
||
|
private:
|
||
|
void readSettings();
|
||
|
void blank();
|
||
|
};
|
||
|
|
||
|
class %{APPNAME}Setup : public %{APPNAME}UI
|
||
|
{
|
||
|
Q_OBJECT
|
||
13 years ago
|
|
||
15 years ago
|
public:
|
||
14 years ago
|
%{APPNAME}Setup( TQWidget *parent = NULL, const char *name = NULL );
|
||
15 years ago
|
|
||
|
private slots:
|
||
|
void slotOkPressed();
|
||
|
void slotCancelPressed();
|
||
|
|
||
|
private:
|
||
|
void readSettings();
|
||
|
%{APPNAME} *saver;
|
||
|
};
|
||
|
|
||
|
#endif
|