00001 /* 00002 * examplepluginwidget.h 00003 * 00004 * email : harlekin@handhelds.org 00005 * 00006 */ 00007 00008 #ifndef EXAMPLE_PLUGIN_WIDGET_H 00009 #define EXAMPLE_PLUGIN_WIDGET_H 00010 00011 #include <qlayout.h> 00012 00013 #include <opie2/oclickablelabel.h> 00014 00015 class ExamplePluginWidget : public QWidget { 00016 00017 Q_OBJECT 00018 00019 public: 00020 ExamplePluginWidget( QWidget *parent, const char *name ); 00021 ~ExamplePluginWidget(); 00022 00023 void refresh(); 00024 00025 private slots: 00026 void slotClicked(); 00027 00028 private: 00029 Opie::Ui::OClickableLabel* m_exampleLabel; 00030 QHBoxLayout* m_layout; 00031 void readConfig(); 00032 void getInfo(); 00033 }; 00034 00035 #endif
1.4.2