Organizer-factory.cc
00001 /* Organizer-factory.cc KPilot 00002 ** 00003 ** Copyright (C) 2001 by Dan Pilone 00004 ** Copyright (C) 2002 by Reinhold Kainhofer 00005 ** 00006 ** This file defines the factory for the Organizer-conduit plugin. 00007 */ 00008 00009 /* 00010 ** This program is free software; you can redistribute it and/or modify 00011 ** it under the terms of the GNU General Public License as published by 00012 ** the Free Software Foundation; either version 2 of the License, or 00013 ** (at your option) any later version. 00014 ** 00015 ** This program is distributed in the hope that it will be useful, 00016 ** but WITHOUT ANY WARRANTY; without even the implied warranty of 00017 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00018 ** GNU General Public License for more details. 00019 ** 00020 ** You should have received a copy of the GNU General Public License 00021 ** along with this program in a file called COPYING; if not, write to 00022 ** the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, 00023 ** MA 02111-1307, USA. 00024 */ 00025 00026 /* 00027 ** Bug reports and questions can be sent to kde-pim@kde.org 00028 */ 00029 00030 #include "options.h" 00031 #include "Organizer-factory.h" 00032 00033 void OrganizerConduitFactory::customConduitInfo() { 00034 FUNCTIONSETUP; 00035 synctypes->append( new KPilotSyncType(i18n("vcal"), i18n("Save as iCalendar file"), st_vcal, SYNC_NEEDSFILE) ); 00036 /* synctypes->append( new KPilotSyncType(i18n("ldap"), i18n("Store to LDAP directory"), st_ldap, 0) ); 00037 synctypes->append( new KPilotSyncType(i18n("SQL"), i18n("Sync with SQL database"), st_sql, 0) ); 00038 synctypes->append( new KPilotSyncType(i18n("csv"), i18n("Save as comma separated values"), st_csv, SYNC_NEEDSFILE) );*/ 00039 } 00040 00041 00042 00043 // $Log: Organizer-factory.cc,v $ 00044 // Revision 1.1.4.1 2003/03/12 23:31:10 adridg 00045 // CVS_SILENT: FSF address change 00046 // 00047 // Revision 1.1 2002/04/07 12:09:43 kainhofe 00048 // Initial checkin of the conduit. The gui works mostly, but syncing crashes KPilot... 00049 // 00050 // Revision 1.2 2002/04/07 11:56:19 reinhold 00051 // Last version before moving to KDE CVS 00052 // 00053 // Revision 1.1 2002/04/07 01:03:52 reinhold 00054 // the list of possible actions is now created dynamically 00055 // 00056 // Revision 1.1 2002/03/28 13:49:51 reinhold 00057 // Organizer factory is needed for the synctype list\!\!\! 00058 // 00059 // Revision 1.3 2002/03/15 20:43:17 reinhold 00060 // Fixed the crash on loading (member function not defined)... 00061 // 00062 // Revision 1.2 2002/03/10 23:58:32 reinhold 00063 // Made the conduit compile... 00064 // 00065 // Revision 1.1.1.1 2002/03/09 15:38:45 reinhold 00066 // Initial checin of the project manager / List manager conduit. 00067 // 00068 // 00069