From 460c52653ab0dcca6f19a4f492ed2c5e4e963ab0 Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: 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 --- korganizer/plugins/exchange/exchange.cpp | 238 +++++++++++++++++++++++++++++++ 1 file changed, 238 insertions(+) create mode 100644 korganizer/plugins/exchange/exchange.cpp (limited to 'korganizer/plugins/exchange/exchange.cpp') diff --git a/korganizer/plugins/exchange/exchange.cpp b/korganizer/plugins/exchange/exchange.cpp new file mode 100644 index 00000000..86377f04 --- /dev/null +++ b/korganizer/plugins/exchange/exchange.cpp @@ -0,0 +1,238 @@ +/* + This file is part of KOrganizer. + Copyright (c) 2002 Jan-Pascal van Best + + 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. +*/ + +#include + +#include +#include +#include + +#include +#include + +#include +#include +#include +#include + +#include "korganizer/korganizer.h" +#include "korganizer/calendarview.h" + +#include +#include + +#include "exchange.h" +#include "exchangedialog.h" +#include "exchangeconfig.h" + + +using namespace KCal; // Needed for connecting slots + +class ExchangeFactory : public KOrg::PartFactory { + public: + KOrg::Part *create(KOrg::MainWindow *parent, const char *name) + { + kdDebug(5850) << "Registering Exchange Plugin...\n"; + KGlobal::locale()->insertCatalogue("libkpimexchange"); + return new Exchange(parent,name); + } +}; + +K_EXPORT_COMPONENT_FACTORY( libkorg_exchange, ExchangeFactory ) + +Exchange::Exchange(KOrg::MainWindow *parent, const char *name) : + KOrg::Part(parent,name) +{ + setInstance( new KInstance( "korganizer" ) ); + + kdDebug(5850) << "Creating Exchange Plugin...\n"; + + mAccount = new KPIM::ExchangeAccount( "Calendar/Exchange Plugin" ); + mClient = new KPIM::ExchangeClient( mAccount ); + mClient->setWindow( parent->topLevelWidget() ); + + setXMLFile("plugins/exchangeui.rc"); + + new KAction(i18n("&Download..."), 0, this, SLOT(download()), + actionCollection(), "exchange_download"); + + KAction *action = new KAction(i18n("&Upload Event..."), 0, this, SLOT(upload()), + actionCollection(), "exchange_upload"); + QObject::connect(mainWindow()->view(),SIGNAL(incidenceSelected(Incidence *)), + this, SLOT(slotIncidenceSelected(Incidence *))); + action->setEnabled( false ); + QObject::connect(this,SIGNAL(enableIncidenceActions(bool)), + action,SLOT(setEnabled(bool))); + + action = new KAction(i18n("De&lete Event"), 0, this, SLOT(remove()), + actionCollection(), "exchange_delete"); + QObject::connect(this,SIGNAL(enableIncidenceActions(bool)), + action,SLOT(setEnabled(bool))); + action->setEnabled( false ); + + new KAction(i18n("&Configure..."), 0, this, SLOT(configure()), + actionCollection(), "exchange_configure"); + + connect( this, SIGNAL( calendarChanged() ), mainWindow()->view(), SLOT( updateView() ) ); + connect( this, SIGNAL( calendarChanged(const QDate &, const QDate &)), + mainWindow()->view(), SLOT(updateView(const QDate &, const QDate &)) ); +} + +Exchange::~Exchange() +{ + kdDebug(5850) << "Exchange Plugin destructor" << endl; +} + +QString Exchange::info() +{ + return i18n("This plugin imports and export calendar events from/to a Microsoft Exchange 2000 Server."); +} + +QString Exchange::shortInfo() +{ + return i18n("Exchange Plugin"); +} + +void Exchange::slotIncidenceSelected( Incidence *incidence ) +{ + emit enableIncidenceActions( incidence != 0 ); +} + +void Exchange::download() +{ + ExchangeDialog dialog( mainWindow()->view()->startDate(), mainWindow()->view()->endDate() ); + + if (dialog.exec() != QDialog::Accepted ) + return; + + QDate start = dialog.m_start->date(); + QDate end = dialog.m_end->date(); + + KCal::Calendar* calendar = mainWindow()->view()->calendar(); + + int result = mClient->downloadSynchronous(calendar, start, end, true ); + + if ( result == KPIM::ExchangeClient::ResultOK ) + emit calendarChanged(); + else + showError( result, mClient->detailedErrorString() ); + +} + +void Exchange::upload() +{ + kdDebug(5850) << "Called Exchange::upload()" << endl; + + Event* event = dynamic_cast ( mainWindow()->view()->currentSelection() ); + if ( ! event ) + { + KMessageBox::information( 0L, i18n("Please select an appointment."), i18n("Exchange Plugin") ); + return; + } + if ( KMessageBox::warningContinueCancel( 0L, i18n("Exchange Upload is EXPERIMENTAL, you may lose data on this appointment!"), i18n("Exchange Plugin"), i18n("&Upload") ) + == KMessageBox::Continue ) { + kdDebug(5850) << "Trying to add appointment " << event->summary() << endl; + int result = mClient->uploadSynchronous( event ); + if ( result != KPIM::ExchangeClient::ResultOK ) + showError( result, mClient->detailedErrorString() ); + } +} + +void Exchange::remove() +{ + kdDebug(5850) << "Called Exchange::remove()" << endl; + + Event* event = dynamic_cast ( mainWindow()->view()->currentSelection() ); + if ( ! event ) + { + KMessageBox::information( 0L, i18n("Please select an appointment."), i18n("Exchange Plugin") ); + return; + } + + if ( KMessageBox::warningContinueCancel( 0L, i18n("Exchange Delete is EXPERIMENTAL, if this is a recurring event it will delete all instances!"), i18n("Exchange Plugin"), KGuiItem(i18n("&Delete"),"editdelete") ) + == KMessageBox::Continue ) { + kdDebug(5850) << "Trying to delete appointment " << event->summary() << endl; + int result = mClient->removeSynchronous( event ); + + if ( result == KPIM::ExchangeClient::ResultOK ) { + mainWindow()->view()->calendar()->deleteEvent( event ); + emit calendarChanged(); + } else + showError( result, mClient->detailedErrorString() ); + } +} + +void Exchange::configure() +{ + kdDebug(5850) << "Exchange::configure" << endl; + ExchangeConfig dialog( mAccount ); + + if (dialog.exec() == QDialog::Accepted ) + mAccount->save( "Calendar/Exchange Plugin" ); +} + +void Exchange::showError( int error, const QString& moreInfo /* = QString::null */ ) +{ + QString errorText; + switch( error ) { + case KPIM::ExchangeClient::ResultOK: + errorText = i18n( "No Error" ); + break; + case KPIM::ExchangeClient::CommunicationError: + errorText = i18n( "The Exchange server could not be reached or returned an error." ); + break; + case KPIM::ExchangeClient::ServerResponseError: + errorText = i18n( "Server response could not be interpreted." ); + break; + case KPIM::ExchangeClient::IllegalAppointmentError: + errorText = i18n( "Appointment data could not be interpreted." ); + break; + case KPIM::ExchangeClient::NonEventError: + errorText = i18n( "This should not happen: trying to upload wrong type of event." ); + break; + case KPIM::ExchangeClient::EventWriteError: + errorText = i18n( "An error occurred trying to write an appointment to the server." ); + break; + case KPIM::ExchangeClient::DeleteUnknownEventError: + errorText = i18n( "Trying to delete an event that is not present on the server." ); + break; + case KPIM::ExchangeClient::UnknownError: + default: + errorText = i18n( "Unknown Error" ); + } + + if ( error != KPIM::ExchangeClient::ResultOK ) { + if ( moreInfo.isNull() ) + KMessageBox::error( mainWindow()->topLevelWidget(), errorText, i18n( "Exchange Plugin" ) ); + else + KMessageBox::detailedError( mainWindow()->topLevelWidget(), errorText, moreInfo, i18n( "Exchange Plugin" ) ); + } +} + +void Exchange::test() +{ + kdDebug(5850) << "Entering test()" << endl; + mClient->test(); +} + +void Exchange::test2() +{ + kdDebug(5850) << "Entering test2()" << endl; +} +#include "exchange.moc" -- cgit v1.2.3