korganizer
calendarviewbase.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef KORG_CALENDARVIEWBASE_H
00023 #define KORG_CALENDARVIEWBASE_H
00024
00025 #include <qwidget.h>
00026
00027 #include <libkcal/calendar.h>
00028
00029 #include <korganizer/baseview.h>
00030
00031 namespace KOrg {
00032
00037 class CalendarViewBase : public QWidget
00038 {
00039 public:
00040 CalendarViewBase( QWidget *parent, const char *name )
00041 : QWidget( parent, name ) {}
00042 virtual ~CalendarViewBase() {}
00043
00044 virtual KCal::Calendar *calendar() = 0;
00045
00046 virtual QDate startDate() = 0;
00047 virtual QDate endDate() = 0;
00048
00049 virtual Incidence *currentSelection() = 0;
00050
00051 virtual void addView( KOrg::BaseView * ) = 0;
00052
00054 virtual void showView( KOrg::BaseView * ) = 0;
00055
00056 public slots:
00057 virtual void updateView() = 0;
00058 virtual void updateCategories() = 0;
00059 };
00060
00061 }
00062
00063 #endif
|