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

29 lines
470 B

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