diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | 460c52653ab0dcca6f19a4f492ed2c5e4e963ab0 (patch) | |
tree | 67208f7c145782a7e90b123b982ca78d88cc2c87 /korganizer/koeventview.cpp | |
download | tdepim-460c52653ab0dcca6f19a4f492ed2c5e4e963ab0.tar.gz tdepim-460c52653ab0dcca6f19a4f492ed2c5e4e963ab0.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'korganizer/koeventview.cpp')
-rw-r--r-- | korganizer/koeventview.cpp | 169 |
1 files changed, 169 insertions, 0 deletions
diff --git a/korganizer/koeventview.cpp b/korganizer/koeventview.cpp new file mode 100644 index 000000000..1f3e62a59 --- /dev/null +++ b/korganizer/koeventview.cpp @@ -0,0 +1,169 @@ +/* + This file is part of KOrganizer. + Copyright (c) 2000, 2001 Cornelius Schumacher <schumacher@kde.org> + Copyright (C) 2003-2004 Reinhold Kainhofer <reinhold@kainhofer.com> + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + + As a special exception, permission is given to link this program + with any edition of Qt, and distribute the resulting executable, + without including the source code for Qt in the source distribution. +*/ + +#include <qpopupmenu.h> +#include <qcursor.h> + +#include <klocale.h> +#include <kdebug.h> +#include <kiconloader.h> +#include <kmessagebox.h> +#include <kxmlguiclient.h> +#include <kxmlguifactory.h> + +#include <libkcal/calendar.h> + + +#include "kocore.h" +#include "koeventview.h" +#include "koeventpopupmenu.h" + +using namespace KOrg; +#include "koeventview.moc" + +//--------------------------------------------------------------------------- + +KOEventView::KOEventView(Calendar *cal,QWidget *parent,const char *name) + : KOrg::BaseView(cal,parent,name) +{ +} + +//--------------------------------------------------------------------------- + +KOEventView::~KOEventView() +{ +} + +//--------------------------------------------------------------------------- + +KOEventPopupMenu *KOEventView::eventPopup() +{ + KOEventPopupMenu *eventPopup = new KOEventPopupMenu; + + connect(eventPopup,SIGNAL(editIncidenceSignal(Incidence *)), + SIGNAL(editIncidenceSignal(Incidence *))); + connect(eventPopup,SIGNAL(showIncidenceSignal(Incidence *)), + SIGNAL(showIncidenceSignal(Incidence *))); + connect(eventPopup,SIGNAL(deleteIncidenceSignal(Incidence *)), + SIGNAL(deleteIncidenceSignal(Incidence *))); + connect(eventPopup,SIGNAL(cutIncidenceSignal(Incidence *)), + SIGNAL(cutIncidenceSignal(Incidence *))); + connect(eventPopup,SIGNAL(copyIncidenceSignal(Incidence *)), + SIGNAL(copyIncidenceSignal(Incidence *))); + connect(eventPopup,SIGNAL(pasteIncidenceSignal()), + SIGNAL(pasteIncidenceSignal())); + connect(eventPopup,SIGNAL(toggleAlarmSignal(Incidence *)), + SIGNAL(toggleAlarmSignal(Incidence*))); + connect(eventPopup,SIGNAL(dissociateOccurrenceSignal( Incidence *, const QDate & )), + SIGNAL(dissociateOccurrenceSignal( Incidence *, const QDate & ))); + connect(eventPopup,SIGNAL(dissociateFutureOccurrenceSignal( Incidence *, const QDate & )), + SIGNAL(dissociateFutureOccurrenceSignal( Incidence *, const QDate & ))); + + return eventPopup; +} + +QPopupMenu *KOEventView::newEventPopup() +{ + KXMLGUIClient *client = KOCore::self()->xmlguiClient( this ); + if ( !client ) { + kdError() << "KOEventView::newEventPopup(): no xmlGuiClient." << endl; + return 0; + } + if ( !client->factory() ) { + kdError() << "KOEventView::newEventPopup(): no factory" << endl; + return 0; // can happen if called too early + } + + return static_cast<QPopupMenu*> + ( client->factory()->container( "rmb_selection_popup", client ) ); +} +//--------------------------------------------------------------------------- + +void KOEventView::popupShow() +{ + emit showIncidenceSignal(mCurrentIncidence); +} + +//--------------------------------------------------------------------------- + +void KOEventView::popupEdit() +{ + emit editIncidenceSignal(mCurrentIncidence); +} + +//--------------------------------------------------------------------------- + +void KOEventView::popupDelete() +{ + emit deleteIncidenceSignal(mCurrentIncidence); +} + +//--------------------------------------------------------------------------- + +void KOEventView::popupCut() +{ + emit cutIncidenceSignal(mCurrentIncidence); +} + +//--------------------------------------------------------------------------- + +void KOEventView::popupCopy() +{ + emit copyIncidenceSignal(mCurrentIncidence); +} + +//--------------------------------------------------------------------------- + +void KOEventView::showNewEventPopup() +{ + QPopupMenu *popup = newEventPopup(); + if ( !popup ) { + kdError() << "KOEventView::showNewEventPopup(): popup creation failed" + << endl; + return; + } + + popup->popup( QCursor::pos() ); +} + +//--------------------------------------------------------------------------- + +void KOEventView::defaultAction( Incidence *incidence ) +{ + kdDebug(5850) << "KOEventView::defaultAction()" << endl; + + if ( !incidence ) return; + + kdDebug(5850) << " type: " << incidence->type() << endl; + + if ( incidence->isReadOnly() ) + emit showIncidenceSignal(incidence); + else + emit editIncidenceSignal(incidence); +} + +//--------------------------------------------------------------------------- + +#include "baseview.moc" + |