kitchensync Library API Documentation

localkonnector.h

00001 /* 00002 This file is part of KitchenSync. 00003 00004 Copyright (c) 2003,2004 Cornelius Schumacher <schumacher@kde.org> 00005 00006 This library is free software; you can redistribute it and/or 00007 modify it under the terms of the GNU Library General Public 00008 License as published by the Free Software Foundation; either 00009 version 2 of the License, or (at your option) any later version. 00010 00011 This library is distributed in the hope that it will be useful, 00012 but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00014 Library General Public License for more details. 00015 00016 You should have received a copy of the GNU Library General Public License 00017 along with this library; see the file COPYING.LIB. If not, write to 00018 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, 00019 Boston, MA 02111-1307, USA. 00020 */ 00021 #ifndef KSYNC_LOCALKONNECTOR_H 00022 #define KSYNC_LOCALKONNECTOR_H 00023 00024 #include <libkcal/calendarlocal.h> 00025 #include <kabc/addressbook.h> 00026 #include <kbookmarkmanager.h> 00027 00028 #include <konnector.h> 00029 00030 #include <qiconset.h> 00031 #include <qptrlist.h> 00032 00033 namespace KABC { 00034 class ResourceFile; 00035 } 00036 00037 namespace KSync { 00038 00039 class LocalKonnectorConfig; 00040 00041 class LocalKonnector : public KSync::Konnector 00042 { 00043 Q_OBJECT 00044 public: 00045 LocalKonnector( const KConfig *config ); 00046 ~LocalKonnector(); 00047 00048 void writeConfig( KConfig * ); 00049 00051 KSync::Kapabilities capabilities(); 00052 00057 void setCapabilities( const KSync::Kapabilities& ); 00058 00059 SynceeList syncees() { return mSyncees; } 00060 00061 bool readSyncees(); 00062 bool writeSyncees(); 00063 00064 bool connectDevice(); 00065 bool disconnectDevice(); 00066 00068 KSync::KonnectorInfo info() const; 00069 00071 void download( const QString& ); 00072 00073 void setCalendarFile( const QString &f ) { mCalendarFile = f; } 00074 QString calendarFile() const { return mCalendarFile; } 00075 00076 void setAddressBookFile( const QString &f ) { mAddressBookFile = f; } 00077 QString addressBookFile() const { return mAddressBookFile; } 00078 00079 void setBookmarkFile( const QString &f ) { mBookmarkFile = f; } 00080 QString bookmarkFile() const { return mBookmarkFile; } 00081 00082 private: 00083 LocalKonnectorConfig *mConfigWidget; 00084 QString mCalendarFile; 00085 QString mAddressBookFile; 00086 QString mBookmarkFile; 00087 00088 KCal::CalendarLocal mCalendar; 00089 KABC::AddressBook mAddressBook; 00090 KABC::ResourceFile *mAddressBookResourceFile; 00091 00092 KSync::AddressBookSyncee *mAddressBookSyncee; 00093 KSync::CalendarSyncee *mCalendarSyncee; 00094 00095 class LocalBookmarkManager : public KBookmarkManager 00096 { 00097 public: 00098 LocalBookmarkManager() : KBookmarkManager() {} 00099 }; 00100 LocalBookmarkManager mBookmarkManager; 00101 00102 SynceeList mSyncees; 00103 }; 00104 00105 } 00106 00107 #endif
KDE Logo
This file is part of the documentation for kitchensync Library Version 3.3.0.
Documentation copyright © 1996-2004 the KDE developers.
Generated on Thu Oct 21 19:46:32 2004 by doxygen 1.3.7 written by Dimitri van Heesch, © 1997-2003