summaryrefslogtreecommitdiffabout
path: root/korganizer/kojournalview.h
Side-by-side diff
Diffstat (limited to 'korganizer/kojournalview.h') (more/less context) (ignore whitespace changes)
-rw-r--r--korganizer/kojournalview.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/korganizer/kojournalview.h b/korganizer/kojournalview.h
index 445f940..aabf11c 100644
--- a/korganizer/kojournalview.h
+++ b/korganizer/kojournalview.h
@@ -25,4 +25,5 @@
#include <korganizer/baseview.h>
+#include <qlayout.h>
class JournalEntry;
@@ -52,4 +53,6 @@ class KOJournalView : public KOrg::BaseView
void deleteJournal(Journal *);
public slots:
+ void showOnly ( Journal* );
+ void newJournal();
void updateView();
void flushView();
@@ -61,6 +64,11 @@ class KOJournalView : public KOrg::BaseView
private:
- JournalEntry *mEntry;
+ void showList(QPtrList<Journal> jl);
+ Calendar *mCalendar;
+ JournalEntry* getNewEntry();
+ QPtrList<JournalEntry> jEntries;
void keyPressEvent ( QKeyEvent * ) ;
+ QBoxLayout *mTopLayout;
+ QDate mDate;
};