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.
32 lines
501 B
32 lines
501 B
%{H_TEMPLATE}
|
|
|
|
#ifndef _%{APPNAMEUC}WIDGET_H_
|
|
#define _%{APPNAMEUC}WIDGET_H_
|
|
|
|
#include "%{APPNAMELC}widgetbase.h"
|
|
|
|
class %{APPNAME}Widget : public %{APPNAME}WidgetBase
|
|
{
|
|
Q_OBJECT
|
|
|
|
|
|
public:
|
|
%{APPNAME}Widget(TQWidget* parent = 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
|
|
|