blob: 252efc85a4dab7001f61190ddf65ffafd487cfea (
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
|
#ifndef %{APPNAME}_PLUGIN_WIDGET_H
#define %{APPNAME}_PLUGIN_WIDGET_H
#include <tqlayout.h>
#include <opie/oclickablelabel.h>
class %{APPNAME}Widget : public TQWidget {
Q_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
|