summaryrefslogtreecommitdiffabout
path: root/korganizer/koeventeditor.cpp
authorzautrix <zautrix>2004-06-26 19:01:18 (UTC)
committer zautrix <zautrix>2004-06-26 19:01:18 (UTC)
commitb9aad1f15dc600e4dbe4c62d3fcced6363188ba3 (patch) (side-by-side diff)
tree2c3d4004fb21c72cba65793859f9bcd8ffd3a49c /korganizer/koeventeditor.cpp
downloadkdepimpi-b9aad1f15dc600e4dbe4c62d3fcced6363188ba3.zip
kdepimpi-b9aad1f15dc600e4dbe4c62d3fcced6363188ba3.tar.gz
kdepimpi-b9aad1f15dc600e4dbe4c62d3fcced6363188ba3.tar.bz2
Initial revision
Diffstat (limited to 'korganizer/koeventeditor.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--korganizer/koeventeditor.cpp378
1 files changed, 378 insertions, 0 deletions
diff --git a/korganizer/koeventeditor.cpp b/korganizer/koeventeditor.cpp
new file mode 100644
index 0000000..b3edec6
--- a/dev/null
+++ b/korganizer/koeventeditor.cpp
@@ -0,0 +1,378 @@
+/*
+ This file is part of KOrganizer.
+ Copyright (c) 2001,2002 Cornelius Schumacher <schumacher@kde.org>
+
+ 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 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 <qtooltip.h>
+#include <qframe.h>
+#include <qpixmap.h>
+#include <qhbox.h>
+#include <qdir.h>
+#include <qlayout.h>
+#include <qwidgetstack.h>
+#include <qapplication.h>
+
+#include <kiconloader.h>
+#include <kstandarddirs.h>
+#include <kdebug.h>
+#include <klocale.h>
+#include <kfiledialog.h>
+#include <kmessagebox.h>
+#include <libkcal/calendarresources.h>
+#include <libkcal/resourcecalendar.h>
+#include <kresources/resourceselectdialog.h>
+
+#include <libkdepim/categoryselectdialog.h>
+#include <libkcal/calendarlocal.h>
+#include <libkcal/icalformat.h>
+
+#include "koprefs.h"
+
+#include "koeventeditor.h"
+#include "koeventeditor.moc"
+extern int globalFlagBlockAgenda;
+
+KOEventEditor::KOEventEditor( Calendar *calendar, QWidget *parent ) :
+ KOIncidenceEditor( i18n("Edit Event"), calendar, parent )
+{
+ mEvent = 0;
+ init();
+}
+
+KOEventEditor::~KOEventEditor()
+{
+ //emit dialogClose( mEvent );
+}
+
+void KOEventEditor::init()
+{
+
+ setupGeneral();
+ setupAttendeesTab();
+ setupRecurrence();
+
+ // Propagate date time settings to recurrence tab
+ connect(mGeneral,SIGNAL(dateTimesChanged(QDateTime,QDateTime)),
+ mRecurrence,SLOT(setDateTimes(QDateTime,QDateTime)));
+ connect(mGeneral,SIGNAL(dateTimeStrChanged(const QString &)),
+ mRecurrence,SLOT(setDateTimeStr(const QString &)));
+
+ // Category dialog
+ // connect(mGeneral,SIGNAL(openCategoryDialog()),mCategoryDialog,SLOT(show()));
+ //connect(mCategoryDialog,SIGNAL(categoriesSelected(const QString &)),
+ // mGeneral,SLOT(setCategories(const QString &)));
+
+
+}
+
+void KOEventEditor::reload()
+{
+ if ( mEvent ) readEvent( mEvent );
+}
+
+void KOEventEditor::setSecrecy( int sec )
+{
+ mGeneral->setSecrecy( sec );
+}
+void KOEventEditor::setCategories( QString s )
+{
+ mGeneral->setCategories(s);
+
+}
+void KOEventEditor::setupGeneral()
+{
+ mGeneral = new KOEditorGeneralEvent( this, "KOEditorGeneralEvent" );
+ connect ( mGeneral, SIGNAL ( allAccepted() ), this, SLOT ( slotOk () ) );
+
+ if( KOPrefs::instance()->mCompactDialogs ) {
+ QFrame *topFrame = addPage(i18n("General"));
+ QBoxLayout *topLayout = new QVBoxLayout(topFrame);
+ topLayout->setSpacing(spacingHint()-1);
+ topLayout->setMargin(marginHint()-1);
+ mGeneral->initHeader(topFrame,topLayout);
+ mGeneral->initTime(topFrame,topLayout);
+// QBoxLayout *alarmLineLayout = new QHBoxLayout(topLayout);
+ mGeneral->initAlarm(topFrame,topLayout);
+ mGeneral->enableAlarm( false );
+
+ QBoxLayout *buttonLayout;
+ if ( QApplication::desktop()->width() < 500 )
+ buttonLayout = new QVBoxLayout( topLayout );
+ else
+ buttonLayout = new QHBoxLayout( topLayout );
+ QHBox* buttonWidget = new QHBox (topFrame);
+ QIconSet icon;
+ if ( QApplication::desktop()->width() < 321 )
+ icon = SmallIcon("fileexport16");
+ else
+ icon = SmallIcon("fileexport");
+ QPushButton * loadTemplate = new QPushButton( buttonWidget);
+ QPushButton * saveTemplate = new QPushButton( buttonWidget);
+ saveTemplate->setIconSet (icon ) ;
+ int size = saveTemplate->sizeHint().height();
+ saveTemplate->setFixedSize( size, size );
+ if ( QApplication::desktop()->width() < 321 )
+ icon = SmallIcon("fileimport16");
+ else
+ icon = SmallIcon("fileimport");
+ loadTemplate->setIconSet (icon ) ;
+ loadTemplate->setFixedSize( size, size );
+ buttonLayout->addWidget( buttonWidget );
+ mGeneral->initCategories( topFrame, buttonLayout );
+
+ topLayout->addStretch( 1 );
+
+ QFrame *topFrame2 = addPage(i18n("Details"));
+
+ QBoxLayout *topLayout2 = new QVBoxLayout(topFrame2);
+ topLayout2->setSpacing(spacingHint());
+
+ mGeneral->initClass(topFrame2,topLayout2);
+ mGeneral->initSecrecy( topFrame2, topLayout2 );
+ mGeneral->initDescription(topFrame2,topLayout2);
+
+ connect( saveTemplate, SIGNAL( clicked() ), this , SLOT( slotSaveTemplate() ) );
+ connect( loadTemplate, SIGNAL( clicked() ), this , SLOT( slotLoadTemplate() ) );
+ } else {
+ QFrame *topFrame = addPage(i18n("General"));
+
+ QBoxLayout *topLayout = new QVBoxLayout(topFrame);
+ topLayout->setSpacing(spacingHint());
+
+ mGeneral->initHeader(topFrame,topLayout);
+ mGeneral->initTime(topFrame,topLayout);
+ QBoxLayout *alarmLineLayout = new QHBoxLayout(topLayout);
+ mGeneral->initAlarm(topFrame,alarmLineLayout);
+ mGeneral->initClass(topFrame,alarmLineLayout);
+ mGeneral->initDescription(topFrame,topLayout);
+ QBoxLayout *detailsLayout = new QHBoxLayout(topLayout);
+ mGeneral->initCategories( topFrame, detailsLayout );
+ mGeneral->initSecrecy( topFrame, detailsLayout );
+ }
+
+ mGeneral->finishSetup();
+
+}
+
+void KOEventEditor::setupRecurrence()
+{
+ QFrame *topFrame = addPage( i18n("Recurrence") );
+ QBoxLayout *topLayout = new QVBoxLayout( topFrame );
+
+ mRecurrence = new KOEditorRecurrence( topFrame );
+ topLayout->addWidget( mRecurrence );
+}
+
+void KOEventEditor::editEvent(Event *event, bool showDescription)
+{
+ // init();
+
+ mEvent = event;
+ readEvent(mEvent);
+ qApp->processEvents();
+ if ( showDescription ) {
+ showPage( 1 );
+ mGeneral->setFocusOn( 1 );
+ } else {
+ showPage( 0 );
+ mGeneral->setFocusOn( 2 );
+ }
+}
+
+void KOEventEditor::newEvent( QDateTime from, QDateTime to, bool allDay )
+{
+ // init();
+
+ mEvent = 0;
+ setDefaults(from,to,allDay);
+}
+
+void KOEventEditor::loadDefaults()
+{
+ int fmt = KOPrefs::instance()->mStartTime;
+
+ QDateTime from(QDate::currentDate(), QTime(fmt,0,0));
+ QDateTime to(QDate::currentDate(),
+ QTime(fmt+KOPrefs::instance()->mDefaultDuration,0,0));
+
+ setDefaults(from,to,false);
+}
+
+bool KOEventEditor::processInput( bool emitTime )
+{
+ if (!validateInput()) return false;
+
+ Event *event = 0;
+
+ if (mEvent) event = mEvent;
+ else {
+ event = new Event;
+ event->setOrganizer(KOPrefs::instance()->email());
+ }
+
+ writeEvent(event);
+ if ( emitTime ) {
+ globalFlagBlockAgenda = 1;
+ emit showAgendaView( false );
+ emit jumpToTime( event->dtStart().date() );
+ globalFlagBlockAgenda = 2;
+
+ }
+ if (mEvent) {
+ event->setRevision(event->revision()+1);
+ emit eventChanged(event);
+ } else {
+ mCalendar->addEvent(event);
+ mEvent = event;
+ emit eventAdded(event);
+ }
+
+ return true;
+}
+
+void KOEventEditor::deleteEvent()
+{
+ kdDebug() << "Delete event" << endl;
+
+ if (mEvent) {
+ if (KOPrefs::instance()->mConfirm) {
+ switch (msgItemDelete()) {
+ case KMessageBox::Continue: // OK
+ emit eventToBeDeleted(mEvent);
+ emit dialogClose(mEvent);
+ mCalendar->deleteEvent(mEvent);
+ emit eventDeleted();
+ reject();
+ break;
+ }
+ }
+ else {
+ emit eventToBeDeleted(mEvent);
+ emit dialogClose(mEvent);
+ mCalendar->deleteEvent(mEvent);
+ emit eventDeleted();
+ reject();
+ }
+ } else {
+ reject();
+ }
+}
+
+void KOEventEditor::setDefaults(QDateTime from, QDateTime to, bool allDay)
+{
+ mGeneral->setDefaults(from,to,allDay);
+ mDetails->setDefaults();
+ mRecurrence->setDefaults(from,to,allDay);
+ showPage( 0 );
+ mGeneral->setFocusOn( 2 );
+}
+
+void KOEventEditor::readEvent( Event *event, bool tmpl )
+{
+ mGeneral->readEvent( event, tmpl );
+ mDetails->readEvent( event );
+ mRecurrence->readEvent( event );
+
+ // categories
+ //mCategoryDialog->setSelected( event->categories() );
+}
+
+void KOEventEditor::writeEvent(Event *event)
+{
+ mGeneral->writeEvent( event );
+ mDetails->writeEvent( event );
+
+ if ( event->organizer() == KOPrefs::instance()->email() ) {
+ Event *ev = new Event( *event );
+ ev->registerObserver(0);
+ mDetails->cancelAttendeeEvent( ev );
+ if ( ev->attendeeCount() > 0 ) {
+ emit deleteAttendee( ev );
+ }
+ delete(ev);
+ }
+
+ mRecurrence->writeEvent(event);
+}
+
+bool KOEventEditor::validateInput()
+{
+ if (!mGeneral->validateInput()) return false;
+ if (!mDetails->validateInput()) return false;
+ if (!mRecurrence->validateInput()) return false;
+ return true;
+}
+
+int KOEventEditor::msgItemDelete()
+{
+ return KMessageBox::warningContinueCancel(this,
+ i18n("This item will be permanently deleted."),
+ i18n("KOrganizer Confirmation"),i18n("Delete"));
+}
+
+void KOEventEditor::slotLoadTemplate()
+{
+
+ QString fileName =locateLocal( "templates", "events" );
+ QDir t_dir;
+ if ( !t_dir.exists(fileName) )
+ t_dir.mkdir ( fileName );
+ fileName += "/event";
+ fileName = KFileDialog::getSaveFileName( fileName , "Load Event template", this );
+ if ( fileName.length() == 0 )
+ return;
+ CalendarLocal cal;
+ ICalFormat format;
+ if ( !format.load( &cal, fileName ) ) {
+ KMessageBox::error( this, i18n("Error loading template file\n '%1'.")
+ .arg( fileName ) );
+ return ;
+ }
+ QPtrList<Event> events = cal.events();
+ Event* event = events.first();
+ if ( !event ) {
+ KMessageBox::error( this,
+ i18n("Template does not contain\na valid Event."));
+ } else {
+ kdDebug() << "KOEventEditor::slotLoadTemplate(): readTemplate" << endl;
+ readEvent( event, true );
+ }
+}
+
+
+void KOEventEditor::slotSaveTemplate()
+{
+ QString fileName =locateLocal( "templates", "events" );
+ QDir t_dir;
+ if ( !t_dir.exists(fileName) )
+ t_dir.mkdir ( fileName );
+ fileName += "/event";
+ fileName = KFileDialog::getSaveFileName( fileName , "Save as Event template", this );
+ if ( fileName.length() > 0 )
+ saveTemplate( fileName );
+}
+
+void KOEventEditor::saveTemplate( const QString &templateName )
+{
+ Event *event = new Event;
+ writeEvent( event );
+ saveAsTemplate( event, templateName );
+}