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
00083 QPopupMenu *
newEventPopup();
00084
00086 bool isEventView() {
return true; }
00087
00088
public slots:
00089
00095
void showIncidencePopup(QPopupMenu *popup, Incidence *event);
00096
00101
void defaultAction( Incidence * );
00102
00103 signals:
00111
void datesSelected(
const DateList);
00112
00116
void showIncidenceSignal(Incidence *);
00117
00123
void editIncidenceSignal(Incidence *);
00124
00130
void deleteIncidenceSignal(Incidence *);
00131
00136
void newEventSignal();
00141
void newEventSignal(QDate);
00146
void newEventSignal(QDateTime);
00152
void newEventSignal(QDateTime, QDateTime);
00153
00154
00159
void shiftedEvent(
const QDate& olddate,
const QDate& newdate);
00160
00161
00162
protected slots:
00163
void popupShow();
00164
void popupEdit();
00165
void popupDelete();
00166
00167
protected:
00168 Incidence *mCurrentIncidence;
00169 };
00170
00171
#endif