ListMaker-setup.h
00001 #ifndef _KPILOT_ListMaker_SETUP_H 00002 #define _KPILOT_ListMaker_SETUP_H 00003 /* ListMaker-setup.h KPilot 00004 ** 00005 ** Copyright (C) 2002 by Reinhold Kainhofer 00006 ** Copyright (C) 2001 by Dan Pilone 00007 ** 00008 ** This file defines the class for the behavior of the setup dialog. 00009 */ 00010 00011 /* 00012 ** This program is free software; you can redistribute it and/or modify 00013 ** it under the terms of the GNU General Public License as published by 00014 ** the Free Software Foundation; either version 2 of the License, or 00015 ** (at your option) any later version. 00016 ** 00017 ** This program is distributed in the hope that it will be useful, 00018 ** but WITHOUT ANY WARRANTY; without even the implied warranty of 00019 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00020 ** GNU General Public License for more details. 00021 ** 00022 ** You should have received a copy of the GNU General Public License 00023 ** along with this program in a file called COPYING; if not, write to 00024 ** the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, 00025 ** MA 02111-1307, USA. 00026 */ 00027 00028 /* 00029 ** Bug reports and questions can be sent to kde-pim@kde.org 00030 */ 00031 00032 #include "options.h" 00033 #include "plugin.h" 00034 #include "MultiDB-setup.h" 00035 00036 00037 //class ListMakerWidget; 00038 00039 class ListMakerWidgetSetup : public MultiDBWidgetSetup { 00040 Q_OBJECT 00041 public: 00042 ListMakerWidgetSetup(QWidget *w, const char *n, const QStringList & a, SyncTypeList_t *lst=0L, KAboutData *abt=NULL) : MultiDBWidgetSetup(w,n,a,lst,abt) {FUNCTIONSETUP;}; 00043 virtual ~ListMakerWidgetSetup() {}; 00044 protected: 00045 virtual const QString getSettingsGroup() { return "ListMaker";}; 00046 }; 00047 00048 // $Log: ListMaker-setup.h,v $ 00049 // Revision 1.1.4.1 2003/03/12 23:31:09 adridg 00050 // CVS_SILENT: FSF address change 00051 // 00052 // Revision 1.1 2002/04/07 12:09:42 kainhofe 00053 // Initial checkin of the conduit. The gui works mostly, but syncing crashes KPilot... 00054 // 00055 // Revision 1.6 2002/04/07 11:56:19 reinhold 00056 // Last version before moving to KDE CVS 00057 // 00058 // Revision 1.5 2002/04/06 00:51:08 reinhold 00059 // Finally the conduit compiles again... Still have a lot of TODOS 00060 // 00061 // Revision 1.4 2002/04/05 21:17:00 reinhold 00062 // *** empty log message *** 00063 // 00064 // Revision 1.3 2002/03/28 13:47:54 reinhold 00065 // Added the list of synctypes, aboutbox is now directly passed on to the setup dlg (instead of being a static var) 00066 // 00067 // Revision 1.2 2002/03/13 22:14:40 reinhold 00068 // GUI should work now... 00069 // 00070 // Revision 1.1 2002/03/10 23:59:17 reinhold 00071 // Made the conduit compile... 00072 // 00073 // Revision 1.2 2002/03/10 16:06:43 reinhold 00074 // Cleaned up the class hierarchy, implemented some more features (should be quite finished now...) 00075 // 00076 // Revision 1.1.1.1 2002/03/09 15:38:45 reinhold 00077 // Initial checin of the project manager / List manager conduit. 00078 // 00079 // 00080 // 00081 00082 #endif