summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/todayplugininterface.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/libopie/todayplugininterface.h b/libopie/todayplugininterface.h
index b37a3ab..5bf5564 100644
--- a/libopie/todayplugininterface.h
+++ b/libopie/todayplugininterface.h
@@ -1,46 +1,44 @@
1 1
2#ifndef TODAY_PLUGIN_INTERFACE 2#ifndef TODAY_PLUGIN_INTERFACE
3#define TODAY_PLUGIN_INTERFACE 3#define TODAY_PLUGIN_INTERFACE
4 4
5#include <qpe/qcom.h> 5#include <qpe/qcom.h>
6#include "todayconfigwidget.h" 6#include "todayconfigwidget.h"
7 7
8class QString; 8class QString;
9class QWidget; 9class QWidget;
10 10
11#ifndef IID_TodayPluginInterface 11#ifndef IID_TodayPluginInterface
12#define IID_TodayPluginInterface QUuid( 0x70481804, 0x2b50, 0x4fba, 0x80, 0xbb, 0x0b, 0xf8, 0xdc, 0x72, 0x04, 0x14) 12#define IID_TodayPluginInterface QUuid( 0x70481804, 0x2b50, 0x4fba, 0x80, 0xbb, 0x0b, 0xf8, 0xdc, 0x72, 0x04, 0x14)
13#endif 13#endif
14 14
15/** 15/**
16 * 16 *
17 * 17 *
18 * 18 *
19 */ 19 */
20class TodayPluginObject { 20class TodayPluginObject {
21
22 Q_OBJECT
23 21
24public: 22public:
25 23
26 virtual ~TodayPluginObject() {}; 24 virtual ~TodayPluginObject() {};
27 25
28 /** 26 /**
29 * The name if the plugin 27 * The name if the plugin
30 */ 28 */
31 virtual QString pluginName() const = 0; 29 virtual QString pluginName() const = 0;
32 30
33 /** 31 /**
34 * Version numbering 32 * Version numbering
35 */ 33 */
36 virtual double versionNumber() const = 0; 34 virtual double versionNumber() const = 0;
37 35
38 36
39 virtual QString pixmapNameWidget() const = 0; 37 virtual QString pixmapNameWidget() const = 0;
40 38
41 /** widget for the today view 39 /** widget for the today view
42 * It _needs_ a parent here. 40 * It _needs_ a parent here.
43 */ 41 */
44 virtual QWidget* widget( QWidget * ) = 0; 42 virtual QWidget* widget( QWidget * ) = 0;
45 43
46 /** 44 /**