summaryrefslogtreecommitdiff
path: root/core/pim/today/today.h
Unidiff
Diffstat (limited to 'core/pim/today/today.h') (more/less context) (show whitespace changes)
-rw-r--r--core/pim/today/today.h21
1 files changed, 15 insertions, 6 deletions
diff --git a/core/pim/today/today.h b/core/pim/today/today.h
index 89170e1..c947ae1 100644
--- a/core/pim/today/today.h
+++ b/core/pim/today/today.h
@@ -23,4 +23,5 @@
23#include <opie2/todayplugininterface.h> 23#include <opie2/todayplugininterface.h>
24#include <opie2/oclickablelabel.h> 24#include <opie2/oclickablelabel.h>
25#include <opie2/opluginloader.h>
25 26
26#include <qpe/qlibrary.h> 27#include <qpe/qlibrary.h>
@@ -32,4 +33,11 @@
32class QVBoxLayout; 33class QVBoxLayout;
33 34
35namespace Opie {
36 namespace Core {
37 class OPluginManager;
38 class OPluginLoader;
39 }
40}
41
34class Today : public TodayBase { 42class Today : public TodayBase {
35 43
@@ -39,5 +47,7 @@ class Today : public TodayBase {
39 Today( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); 47 Today( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
40 ~Today(); 48 ~Today();
41 static QString appName() { return QString::fromLatin1("today"); } 49 static QString appName() {
50 return QString::fromLatin1("today");
51 }
42 52
43private slots: 53private slots:
@@ -51,7 +61,5 @@ private:
51 void setOwnerField(); 61 void setOwnerField();
52 void setOwnerField(QString &string); 62 void setOwnerField(QString &string);
53 void loadPlugins(); 63 void initialize();
54 void draw();
55 void reinitialize();
56 64
57 void setRefreshTimer( int ); 65 void setRefreshTimer( int );
@@ -59,4 +67,5 @@ private:
59private slots: 67private slots:
60 void channelReceived(const QCString &msg, const QByteArray & data); 68 void channelReceived(const QCString &msg, const QByteArray & data);
69 void loadPlugins();
61 70
62 private: 71 private:
@@ -69,5 +78,6 @@ private slots:
69 QVBoxLayout *m_bblayout; 78 QVBoxLayout *m_bblayout;
70 79
71 80 Opie::Core::OPluginLoader *m_pluginLoader;
81 Opie::Core::OPluginManager *m_manager;
72 82
73 QTimer *m_refreshTimer; 83 QTimer *m_refreshTimer;
@@ -79,4 +89,3 @@ private slots:
79 int m_hideBanner; 89 int m_hideBanner;
80}; 90};
81
82#endif 91#endif