summaryrefslogtreecommitdiffabout
path: root/korganizer/kojournalview.h
Unidiff
Diffstat (limited to 'korganizer/kojournalview.h') (more/less context) (ignore whitespace changes)
-rw-r--r--korganizer/kojournalview.h67
1 files changed, 67 insertions, 0 deletions
diff --git a/korganizer/kojournalview.h b/korganizer/kojournalview.h
new file mode 100644
index 0000000..1c0be82
--- a/dev/null
+++ b/korganizer/kojournalview.h
@@ -0,0 +1,67 @@
1/*
2 This file is part of KOrganizer.
3 Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
19 As a special exception, permission is given to link this program
20 with any edition of Qt, and distribute the resulting executable,
21 without including the source code for Qt in the source distribution.
22*/
23#ifndef _KOJOURNALVIEW_H
24#define _KOJOURNALVIEW_H
25
26#include <korganizer/baseview.h>
27
28class JournalEntry;
29
30/**
31 * This class provides a journal view.
32
33 * @short View for Journal components.
34 * @author Cornelius Schumacher <schumacher@kde.org>
35 * @see KOBaseView
36 */
37class KOJournalView : public KOrg::BaseView
38{
39 Q_OBJECT
40 public:
41 KOJournalView(Calendar *calendar, QWidget *parent = 0,
42 const char *name = 0);
43 ~KOJournalView();
44
45 virtual int currentDateCount();
46 virtual QPtrList<Incidence> selectedIncidences();
47 DateList selectedDates()
48 {DateList q;
49 return q;};
50 signals:
51 void deleteJournal(Journal *);
52 public slots:
53 void updateView();
54 void flushView();
55 void updateConfig();
56 void showDates( const QDate &start, const QDate &end );
57 void showEvents(QPtrList<Event> eventList);
58
59 void changeEventDisplay(Event *, int);
60
61 private:
62 JournalEntry *mEntry;
63 void keyPressEvent ( QKeyEvent * ) ;
64
65};
66
67#endif