koeventview.h
00001 /* 00002 This file is part of KOrganizer. 00003 Copyright (c) 1999 Preston Brown <pbrown@kde.org> 00004 Copyright (c) 2000,2001 Cornelius Schumacher <schumacher@kde.org> 00005 00006 This program is free software; you can redistribute it and/or modify 00007 it under the terms of the GNU General Public License as published by 00008 the Free Software Foundation; either version 2 of the License, or 00009 (at your option) any later version. 00010 00011 This program is distributed in the hope that it will be useful, 00012 but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 GNU General Public License for more details. 00015 00016 You should have received a copy of the GNU General Public License 00017 along with this program; if not, write to the Free Software 00018 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00019 00020 As a special exception, permission is given to link this program 00021 with any edition of Qt, and distribute the resulting executable, 00022 without including the source code for Qt in the source distribution. 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 //ET CVS MERGE ! 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; // Incidence selected e.g. for a context menu 00169 }; 00170 00171 #endif