-rw-r--r-- | core/pim/today/today.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/core/pim/today/today.h b/core/pim/today/today.h index b28ac96..bf2293a 100644 --- a/core/pim/today/today.h +++ b/core/pim/today/today.h @@ -19,4 +19,6 @@ #define TODAY_H +#include <qscrollview.h> +#include <qvbox.h> #include <qpe/qlibrary.h> @@ -38,4 +40,5 @@ class Today : public TodayBase { Today( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); ~Today(); + static QString appName() { return QString::fromLatin1("today"); } private slots: @@ -51,4 +54,6 @@ private: void loadPlugins(); void draw(); + void reinitialize(); + void setRefreshTimer( int ); @@ -61,4 +66,10 @@ private slots: QStringList m_allApplets; + QScrollView *m_sv; + QWidget* m_big_box; + QVBoxLayout *m_bblayout; + + + QTimer *m_refreshTimer; |