summaryrefslogtreecommitdiff
path: root/core/pim/datebook/datebook.h
authorhakan <hakan>2002-03-09 11:39:21 (UTC)
committer hakan <hakan>2002-03-09 11:39:21 (UTC)
commit603e969bb8cef91534a1785e27106ba71eb03ba6 (patch) (side-by-side diff)
tree20642ed29acb08ab0cecc1dffd1d63baa8914ae2 /core/pim/datebook/datebook.h
parent3d03d0e3f679578080bbbf7d8b7f9eba1b9560db (diff)
downloadopie-603e969bb8cef91534a1785e27106ba71eb03ba6.zip
opie-603e969bb8cef91534a1785e27106ba71eb03ba6.tar.gz
opie-603e969bb8cef91534a1785e27106ba71eb03ba6.tar.bz2
Added a WeekLst view showing an entire week and appointment descriptions and made default view configurable
Diffstat (limited to 'core/pim/datebook/datebook.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/datebook/datebook.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/core/pim/datebook/datebook.h b/core/pim/datebook/datebook.h
index 44627bb..fcdbfec 100644
--- a/core/pim/datebook/datebook.h
+++ b/core/pim/datebook/datebook.h
@@ -28,6 +28,7 @@ class QAction;
class QWidgetStack;
class DateBookDay;
class DateBookWeek;
+class DateBookWeekLst;
class DateBookMonth;
class Event;
class QDate;
@@ -57,7 +58,9 @@ public slots:
private slots:
void fileNew();
+ void slotNewEntry(const QDateTime &start, const QDateTime &end, const QString &str);
void slotSettings();
+ void newDefaultView(QAction *a);
void slotToday(); // view today
void changeClock( bool newClock );
void changeWeek( bool newDay );
@@ -69,6 +72,7 @@ private slots:
void viewDay();
void viewWeek();
+ void viewWeekLst();
void viewMonth();
void showDay( int y, int m, int d );
@@ -85,6 +89,7 @@ private:
void addEvent( const Event &e );
void initDay();
void initWeek();
+ void initWeekLst();
void initMonth();
void loadSettings();
void saveSettings();
@@ -95,7 +100,8 @@ private:
DateBookDay *dayView;
DateBookWeek *weekView;
DateBookMonth *monthView;
- QAction *dayAction, *weekAction, *monthAction;
+ DateBookWeekLst *weekLstView;
+ QAction *dayAction, *weekAction, *weekLstAction, *monthAction;
bool aPreset; // have everything set to alarm?
int presetTime; // the standard time for the alarm
int startTime;