author | drw <drw> | 2004-03-02 16:04:48 (UTC) |
---|---|---|
committer | drw <drw> | 2004-03-02 16:04:48 (UTC) |
commit | 31f776618b8615074b56dd2d3cdda3002fde671d (patch) (unidiff) | |
tree | 4ca9f1c9e1c1174b685a48fab7715e63d11896dd | |
parent | 5a384bdb8bec87955ee18c08463abb386f3755fd (diff) | |
download | opie-31f776618b8615074b56dd2d3cdda3002fde671d.zip opie-31f776618b8615074b56dd2d3cdda3002fde671d.tar.gz opie-31f776618b8615074b56dd2d3cdda3002fde671d.tar.bz2 |
Added #include <qwidget.h>
-rw-r--r-- | libopie2/opiepim/ui/todayconfigwidget.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libopie2/opiepim/ui/todayconfigwidget.h b/libopie2/opiepim/ui/todayconfigwidget.h index f3501a1..134fbdf 100644 --- a/libopie2/opiepim/ui/todayconfigwidget.h +++ b/libopie2/opiepim/ui/todayconfigwidget.h | |||
@@ -1,39 +1,40 @@ | |||
1 | 1 | ||
2 | #ifndef CONFIG_WIDGET_H | 2 | #ifndef CONFIG_WIDGET_H |
3 | #define CONFIG_WIDGET_H | 3 | #define CONFIG_WIDGET_H |
4 | 4 | ||
5 | #include <qwidget.h> | ||
5 | 6 | ||
6 | /** | 7 | /** |
7 | * A base class for all Today Config Widgets. | 8 | * A base class for all Today Config Widgets. |
8 | * This will let a Today plugin to add the possibility of configuration. | 9 | * This will let a Today plugin to add the possibility of configuration. |
9 | * Plugins need to inherit from this class and need to implement | 10 | * Plugins need to inherit from this class and need to implement |
10 | * the pure virtual method to control configuration. | 11 | * the pure virtual method to control configuration. |
11 | * The Plugin should read its configuration during creation of the Widget | 12 | * The Plugin should read its configuration during creation of the Widget |
12 | * | 13 | * |
13 | * | 14 | * |
14 | * @author Maximilian Reiß | 15 | * @author Maximilian Reiß |
15 | * @short base class of all today config widgets | 16 | * @short base class of all today config widgets |
16 | */ | 17 | */ |
17 | class TodayConfigWidget : public QWidget { | 18 | class TodayConfigWidget : public QWidget { |
18 | 19 | ||
19 | 20 | ||
20 | public: | 21 | public: |
21 | 22 | ||
22 | /** | 23 | /** |
23 | * This will construct the widget. The widget gets deleted once the parent | 24 | * This will construct the widget. The widget gets deleted once the parent |
24 | * gets deleted as in any Qt application | 25 | * gets deleted as in any Qt application |
25 | * | 26 | * |
26 | * @param parent The parent of the widget | 27 | * @param parent The parent of the widget |
27 | * @param name The name of the object | 28 | * @param name The name of the object |
28 | */ | 29 | */ |
29 | TodayConfigWidget( QWidget *parent, const char *name ) : QWidget( parent, name ) {} ; | 30 | TodayConfigWidget( QWidget *parent, const char *name ) : QWidget( parent, name ) {} ; |
30 | virtual ~TodayConfigWidget() {}; | 31 | virtual ~TodayConfigWidget() {}; |
31 | 32 | ||
32 | /** | 33 | /** |
33 | * Plugins need to reimplement this in the config widget | 34 | * Plugins need to reimplement this in the config widget |
34 | * Used when the config dialog is closed to write config stuff | 35 | * Used when the config dialog is closed to write config stuff |
35 | */ | 36 | */ |
36 | virtual void writeConfig() = 0; | 37 | virtual void writeConfig() = 0; |
37 | }; | 38 | }; |
38 | 39 | ||
39 | #endif | 40 | #endif |