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.
30 lines
488 B
30 lines
488 B
#ifndef %{APPNAME}_PLUGIN_WIDGET_H
|
|
#define %{APPNAME}_PLUGIN_WIDGET_H
|
|
|
|
#include <tqlayout.h>
|
|
|
|
#include <opie/oclickablelabel.h>
|
|
|
|
class %{APPNAME}Widget : public TQWidget {
|
|
|
|
Q_OBJECT
|
|
TQ_OBJECT
|
|
|
|
public:
|
|
%{APPNAME}Widget( TQWidget *tqparent, const char *name );
|
|
~%{APPNAME}Widget();
|
|
|
|
void refresh();
|
|
|
|
private slots:
|
|
void slotClicked();
|
|
|
|
private:
|
|
OClickableLabel* m_exampleLabel;
|
|
TQHBoxLayout* m_layout;
|
|
void readConfig();
|
|
void getInfo();
|
|
};
|
|
|
|
#endif
|