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.
tdevelop/languages/cpp/app_templates/khello2/widget.h

32 lines
502 B

%{H_TEMPLATE}
#ifndef _%{APPNAMEUC}WIDGET_H_
#define _%{APPNAMEUC}WIDGET_H_
#include "%{APPNAMELC}widgetbase.h"
class %{APPNAME}Widget : public %{APPNAME}WidgetBase
{
TQ_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