korganizer Library API Documentation

korganizerifaceimpl.h

00001 /* 00002 This file is part of KOrganizer 00003 Copyright (c) 2004 Bo Thorsen <bo@sonofthor.dk> 00004 00005 This program is free software; you can redistribute it and/or modify 00006 it under the terms of the GNU General Public License as published by 00007 the Free Software Foundation; either version 2 of the License, or 00008 (at your option) any later version. 00009 00010 This program is distributed in the hope that it will be useful, 00011 but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00013 GNU General Public License for more details. 00014 00015 You should have received a copy of the GNU General Public License 00016 along with this program; if not, write to the Free Software 00017 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00018 00019 In addition, as a special exception, the copyright holders give 00020 permission to link the code of this program with any edition of 00021 the Qt library by Trolltech AS, Norway (or with modified versions 00022 of Qt that use the same license as Qt), and distribute linked 00023 combinations including the two. You must obey the GNU General 00024 Public License in all respects for all of the code used other than 00025 Qt. If you modify this file, you may extend this exception to 00026 your version of the file, but you are not obligated to do so. If 00027 you do not wish to do so, delete this exception statement from 00028 your version. 00029 */ 00030 00031 #ifndef KORGANIZER_SHARED_H 00032 #define KORGANIZER_SHARED_H 00033 00034 #include "korganizeriface.h" 00035 00036 #include <qobject.h> 00037 00038 class ActionManager; 00039 00040 00041 class KOrganizerIfaceImpl : public QObject, virtual public KOrganizerIface { 00042 public: 00043 KOrganizerIfaceImpl( ActionManager* mActionManager, 00044 QObject* parent=0, const char* name=0 ); 00045 ~KOrganizerIfaceImpl(); 00046 00047 bool openURL( QString url ); 00048 bool mergeURL( QString url ); 00049 void closeURL(); 00050 bool saveURL(); 00051 bool saveAsURL( QString url ); 00052 QString getCurrentURLasString() const; 00053 00054 bool editIncidence( QString uid ); 00055 bool deleteEvent( QString uid ); 00056 bool eventRequest( QString request, QString receiver, QString iCal ); 00057 bool eventReply( QString iCal ); 00058 bool cancelEvent( QString iCal ); 00059 00060 // These are supposed to be moved to the upcoming HTML 00061 // body part formatter plugin 00062 QString formatICal( QString iCal ); 00063 QString formatTNEF( QByteArray tnef ); 00064 QString msTNEFToVPart( QByteArray tnef ); 00065 00066 private: 00067 ActionManager* mActionManager; 00068 }; 00069 00070 00071 #endif // KORGANIZER_SHARED_H 00072
KDE Logo
This file is part of the documentation for korganizer Library Version 3.3.0.
Documentation copyright © 1996-2004 the KDE developers.
Generated on Fri Oct 1 15:19:32 2004 by doxygen 1.3.7 written by Dimitri van Heesch, © 1997-2003