summaryrefslogtreecommitdiffstats
path: root/kontact/plugins/korganizer/korganizerplugin.cpp
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commit460c52653ab0dcca6f19a4f492ed2c5e4e963ab0 (patch)
tree67208f7c145782a7e90b123b982ca78d88cc2c87 /kontact/plugins/korganizer/korganizerplugin.cpp
downloadtdepim-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 'kontact/plugins/korganizer/korganizerplugin.cpp')
-rw-r--r--kontact/plugins/korganizer/korganizerplugin.cpp227
1 files changed, 227 insertions, 0 deletions
diff --git a/kontact/plugins/korganizer/korganizerplugin.cpp b/kontact/plugins/korganizer/korganizerplugin.cpp
new file mode 100644
index 000000000..7aef2e6e0
--- /dev/null
+++ b/kontact/plugins/korganizer/korganizerplugin.cpp
@@ -0,0 +1,227 @@
+/*
+ This file is part of Kontact.
+
+ Copyright (c) 2001 Matthias Hoelzer-Kluepfel <mhk@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., 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 <qcursor.h>
+#include <qfile.h>
+#include <qwidget.h>
+#include <qdragobject.h>
+
+#include <kapplication.h>
+#include <kabc/vcardconverter.h>
+#include <kaction.h>
+#include <dcopref.h>
+#include <kdebug.h>
+#include <kgenericfactory.h>
+#include <kiconloader.h>
+#include <kmessagebox.h>
+#include <kstandarddirs.h>
+#include <ktempfile.h>
+
+#include <dcopclient.h>
+
+#include <libkdepim/kvcarddrag.h>
+#include <libkdepim/maillistdrag.h>
+
+#include "core.h"
+#include "summarywidget.h"
+#include "korganizerplugin.h"
+#include "korg_uniqueapp.h"
+
+typedef KGenericFactory< KOrganizerPlugin, Kontact::Core > KOrganizerPluginFactory;
+K_EXPORT_COMPONENT_FACTORY( libkontact_korganizerplugin,
+ KOrganizerPluginFactory( "kontact_korganizerplugin" ) )
+
+KOrganizerPlugin::KOrganizerPlugin( Kontact::Core *core, const char *, const QStringList& )
+ : Kontact::Plugin( core, core, "korganizer" ),
+ mIface( 0 )
+{
+
+ setInstance( KOrganizerPluginFactory::instance() );
+ instance()->iconLoader()->addAppDir("kdepim");
+
+ insertNewAction( new KAction( i18n( "New Event..." ), "newappointment",
+ CTRL+SHIFT+Key_E, this, SLOT( slotNewEvent() ), actionCollection(),
+ "new_event" ) );
+
+ insertSyncAction( new KAction( i18n( "Synchronize Calendar" ), "reload",
+ 0, this, SLOT( slotSyncEvents() ), actionCollection(),
+ "korganizer_sync" ) );
+
+ mUniqueAppWatcher = new Kontact::UniqueAppWatcher(
+ new Kontact::UniqueAppHandlerFactory<KOrganizerUniqueAppHandler>(), this );
+}
+
+KOrganizerPlugin::~KOrganizerPlugin()
+{
+}
+
+Kontact::Summary *KOrganizerPlugin::createSummaryWidget( QWidget *parent )
+{
+ return new SummaryWidget( this, parent );
+}
+
+KParts::ReadOnlyPart *KOrganizerPlugin::createPart()
+{
+ KParts::ReadOnlyPart *part = loadPart();
+
+ if ( !part )
+ return 0;
+
+ mIface = new KCalendarIface_stub( dcopClient(), "kontact", "CalendarIface" );
+
+ return part;
+}
+
+QString KOrganizerPlugin::tipFile() const
+{
+ QString file = ::locate("data", "korganizer/tips");
+ return file;
+}
+
+QStringList KOrganizerPlugin::invisibleToolbarActions() const
+{
+ QStringList invisible;
+ invisible += "new_event";
+ invisible += "new_todo";
+ invisible += "new_journal";
+
+ invisible += "view_todo";
+ invisible += "view_journal";
+ return invisible;
+}
+
+void KOrganizerPlugin::select()
+{
+ interface()->showEventView();
+}
+
+KCalendarIface_stub *KOrganizerPlugin::interface()
+{
+ if ( !mIface ) {
+ part();
+ }
+ Q_ASSERT( mIface );
+ return mIface;
+}
+
+void KOrganizerPlugin::slotNewEvent()
+{
+ interface()->openEventEditor( "" );
+}
+
+void KOrganizerPlugin::slotSyncEvents()
+{
+ DCOPRef ref( "kmail", "KMailICalIface" );
+ ref.send( "triggerSync", QString("Calendar") );
+}
+
+bool KOrganizerPlugin::createDCOPInterface( const QString& serviceType )
+{
+ kdDebug(5602) << k_funcinfo << serviceType << endl;
+ if ( serviceType == "DCOP/Organizer" || serviceType == "DCOP/Calendar" ) {
+ if ( part() )
+ return true;
+ }
+
+ return false;
+}
+
+bool KOrganizerPlugin::isRunningStandalone()
+{
+ return mUniqueAppWatcher->isRunningStandalone();
+}
+
+bool KOrganizerPlugin::canDecodeDrag( QMimeSource *mimeSource )
+{
+ return QTextDrag::canDecode( mimeSource ) ||
+ KPIM::MailListDrag::canDecode( mimeSource );
+}
+
+void KOrganizerPlugin::processDropEvent( QDropEvent *event )
+{
+ QString text;
+
+ KABC::VCardConverter converter;
+ if ( KVCardDrag::canDecode( event ) && KVCardDrag::decode( event, text ) ) {
+ KABC::Addressee::List contacts = converter.parseVCards( text );
+ KABC::Addressee::List::Iterator it;
+
+ QStringList attendees;
+ for ( it = contacts.begin(); it != contacts.end(); ++it ) {
+ QString email = (*it).fullEmail();
+ if ( email.isEmpty() )
+ attendees.append( (*it).realName() + "<>" );
+ else
+ attendees.append( email );
+ }
+
+ interface()->openEventEditor( i18n( "Meeting" ), QString::null, QString::null,
+ attendees );
+ return;
+ }
+
+ if ( QTextDrag::decode( event, text ) ) {
+ kdDebug(5602) << "DROP:" << text << endl;
+ interface()->openEventEditor( text );
+ return;
+ }
+
+ KPIM::MailList mails;
+ if ( KPIM::MailListDrag::decode( event, mails ) ) {
+ if ( mails.count() != 1 ) {
+ KMessageBox::sorry( core(),
+ i18n("Drops of multiple mails are not supported." ) );
+ } else {
+ KPIM::MailSummary mail = mails.first();
+ QString txt = i18n("From: %1\nTo: %2\nSubject: %3").arg( mail.from() )
+ .arg( mail.to() ).arg( mail.subject() );
+
+ KTempFile tf;
+ tf.setAutoDelete( true );
+ QString uri = QString::fromLatin1("kmail:") + QString::number( mail.serialNumber() );
+ tf.file()->writeBlock( event->encodedData( "message/rfc822" ) );
+ tf.close();
+ interface()->openEventEditor( i18n("Mail: %1").arg( mail.subject() ), txt,
+ uri, tf.name(), QStringList(), "message/rfc822" );
+ }
+ return;
+ }
+
+ KMessageBox::sorry( core(), i18n("Cannot handle drop events of type '%1'.")
+ .arg( event->format() ) );
+}
+
+void KOrganizerPlugin::loadProfile( const QString& directory )
+{
+ DCOPRef ref( "korganizer", "KOrganizerIface" );
+ ref.send( "loadProfile", directory );
+}
+
+void KOrganizerPlugin::saveToProfile( const QString& directory ) const
+{
+ DCOPRef ref( "korganizer", "KOrganizerIface" );
+ ref.send( "saveToProfile", directory );
+}
+
+#include "korganizerplugin.moc"