Progect-conduit.cc
00001 /* Progect-conduit.cc Progect-Conduit for syncing KPilot and KOrganizer 00002 ** 00003 ** Copyright (C) 1998-2001 Dan Pilone 00004 ** Copyright (C) 1998-2000 Preston Brown 00005 ** Copyright (C) 1998 Herwin-Jan Steehouwer 00006 ** Copyright (C) 2001 Cornelius Schumacher 00007 ** Copyright (C) 2002 by Reinhold Kainhofer 00008 ** 00009 ** This file is part of the Progect conduit, a conduit for KPilot that 00010 ** synchronises the Pilot's Progect application with the outside world, 00011 ** which currently means KOrganizer. 00012 */ 00013 00014 /* 00015 ** This program is free software; you can redistribute it and/or modify 00016 ** it under the terms of the GNU General Public License as published by 00017 ** the Free Software Foundation; either version 2 of the License, or 00018 ** (at your option) any later version. 00019 ** 00020 ** This program is distributed in the hope that it will be useful, 00021 ** but WITHOUT ANY WARRANTY; without even the implied warranty of 00022 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00023 ** GNU General Public License for more details. 00024 ** 00025 ** You should have received a copy of the GNU General Public License 00026 ** along with this program in a file called COPYING; if not, write to 00027 ** the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, 00028 ** MA 02111-1307, USA. 00029 */ 00030 00031 #include "options.h" 00032 00033 #if QT_VERSION < 300 00034 #include <qmsgbox.h> 00035 #else 00036 #include <qmessagebox.h> 00037 #endif 00038 00039 #include <kconfig.h> 00040 00041 #if KDE_VERSION < 300 00042 #include <libkcal/todo.h> 00043 #else 00044 #include <todo.h> 00045 #endif 00046 00047 #include "pilotRecord.h" 00048 #include "pilotSerialDatabase.h" 00049 #include "pilotProgectEntry.h" 00050 00051 #include "Progect-factory.h" 00052 #include "Progect-conduit.h" 00053 00054 using namespace KCal; 00055 00056 static const char *Progect_conduit_id = "$Id: Progect-conduit.cc,v 1.2.4.1 2003/03/12 23:31:09 adridg Exp $"; 00057 00058 00059 00060 ProgectConduit::ProgectConduit(KPilotDeviceLink *d, const char *n, const QStringList &l) : GenericOrganizerConduit(d,n,l) { 00061 FUNCTIONSETUP; 00062 } 00063 00064 00065 // $Log: Progect-conduit.cc,v $ 00066 // Revision 1.2.4.1 2003/03/12 23:31:09 adridg 00067 // CVS_SILENT: FSF address change 00068 // 00069 // Revision 1.2 2002/06/10 21:30:48 danimo 00070 // includemocs 00071 // 00072 // Revision 1.1 2002/04/07 12:09:42 kainhofe 00073 // Initial checkin of the conduit. The gui works mostly, but syncing crashes KPilot... 00074 // 00075 // Revision 1.2 2002/03/23 21:46:43 reinhold 00076 // config dlg works, but the last changes crash the plugin itself 00077 // 00078 // Revision 1.1 2002/03/09 15:45:48 reinhold 00079 // Moved the files around 00080 // 00081 // Revision 1.1.1.1 2002/03/09 15:38:45 reinhold 00082 // Initial checin of the generic project manager / List manager conduit. 00083 // 00084 // 00085 #include "Progect-conduit.moc"