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/opietoday/examplepluginwidget.h

30 lines
478 B

#ifndef %{APPNAME}_PLUGIN_WIDGET_H
#define %{APPNAME}_PLUGIN_WIDGET_H
#include <tqlayout.h>
#include <opie/oclickablelabel.h>
class %{APPNAME}Widget : public TQWidget {
TQ_OBJECT
public:
%{APPNAME}Widget( TQWidget *parent, const char *name );
~%{APPNAME}Widget();
void refresh();
private slots:
void slotClicked();
private:
OClickableLabel* m_exampleLabel;
TQHBoxLayout* m_layout;
void readConfig();
void getInfo();
};
#endif