blob: 3773456bd1a4d169096bafba8fc136ec2b0eca0e (
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
|
%{H_TEMPLATE}
#ifndef _%{APPNAMEUC}WIDGET_H_
#define _%{APPNAMEUC}WIDGET_H_
#include "%{APPNAMELC}widgetbase.h"
class %{APPNAME}Widget : public %{APPNAME}WidgetBase
{
Q_OBJECT
TQ_OBJECT
public:
%{APPNAME}Widget(TQWidget* tqparent = 0, const char* name = 0, WFlags fl = 0 );
~%{APPNAME}Widget();
/*$PUBLIC_FUNCTIONS$*/
public slots:
/*$PUBLIC_SLOTS$*/
virtual void button_clicked();
protected:
/*$PROTECTED_FUNCTIONS$*/
protected slots:
/*$PROTECTED_SLOTS$*/
};
#endif
|