koeventview.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #ifndef _KOEVENTVIEW_H
00025 #define _KOEVENTVIEW_H
00026
00027 #include <libkcal/calendar.h>
00028 #include <libkcal/event.h>
00029
00030 #include <korganizer/baseview.h>
00031
00032 #include "koeventpopupmenu.h"
00033
00034 using namespace KCal;
00035
00036 class CalPrinter;
00037
00052 class KOEventView : public KOrg::BaseView
00053 {
00054 Q_OBJECT
00055
00056 public:
00062 KOEventView(Calendar *cal,QWidget *parent=0,const char *name=0);
00063
00067 virtual ~KOEventView();
00068
00073 virtual int maxDatesHint() = 0;
00074
00078 KOEventPopupMenu *eventPopup();
00079
00081 bool isEventView() { return true; }
00082
00083 public slots:
00084
00090 void showEventPopup(QPopupMenu *popup,Event *event);
00091
00096 void defaultAction( Incidence * );
00097
00098 signals:
00106 void datesSelected(const DateList);
00112 void editEventSignal(Event *);
00118 void deleteEventSignal(Event *);
00123 void newEventSignal();
00128 void newEventSignal(QDateTime);
00134 void newEventSignal(QDateTime, QDateTime);
00135
00139 void showEventSignal(Event *);
00140
00141
00146 void shiftedEvent(const QDate& olddate, const QDate& newdate);
00147
00148
00149 protected slots:
00150 void popupShow();
00151 void popupEdit();
00152 void popupDelete();
00153
00154 protected:
00155 Event *mCurrentEvent;
00156 };
00157
00158 #endif
This file is part of the documentation for kdelibs Version 3.1.5.