summaryrefslogtreecommitdiff
path: root/examples/todayplugin/examplepluginwidget.h
Unidiff
Diffstat (limited to 'examples/todayplugin/examplepluginwidget.h') (more/less context) (ignore whitespace changes)
-rw-r--r--examples/todayplugin/examplepluginwidget.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/examples/todayplugin/examplepluginwidget.h b/examples/todayplugin/examplepluginwidget.h
new file mode 100644
index 0000000..c94d2cf
--- a/dev/null
+++ b/examples/todayplugin/examplepluginwidget.h
@@ -0,0 +1,44 @@
1/*
2 * examplepluginwidget.h
3 *
4 * copyright : (c) 2004 by Maximilian Reiß
5 * email : harlekin@handhelds.org
6 *
7 */
8/***************************************************************************
9 * *
10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 2 of the License, or *
13 * (at your option) any later version. *
14 * *
15 ***************************************************************************/
16
17#ifndef EXAMPLE_PLUGIN_WIDGET_H
18#define EXAMPLE_PLUGIN_WIDGET_H
19
20#include <qlayout.h>
21
22#include <opie/oclickablelabel.h>
23
24class ExamplePluginWidget : public QWidget {
25
26 Q_OBJECT
27
28public:
29 ExamplePluginWidget( QWidget *parent, const char *name );
30 ~ExamplePluginWidget();
31
32 void refresh();
33
34private slots:
35 void slotClicked();
36
37private:
38 OClickableLabel* m_exampleLabel;
39 QHBoxLayout* m_layout;
40 void readConfig();
41 void getInfo();
42};
43
44#endif