kpilot
todo-setup.ccGo to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030 #include "options.h"
00031
00032 #include <qbuttongroup.h>
00033 #include <kaboutdata.h>
00034
00035 #include "korganizerConduit.h"
00036 #include "todo-conduit.h"
00037 #include "todo-setup.h"
00038
00039
00040
00041 ToDoWidgetSetup::ToDoWidgetSetup(QWidget *w, const char *n) :
00042 VCalWidgetSetupBase(w,n)
00043 {
00044 FUNCTIONSETUP;
00045 fConduitName = i18n("To-do");
00046 KAboutData *fAbout = new KAboutData("todoConduit",
00047 I18N_NOOP("To-do Conduit for KPilot"),
00048 KPILOT_VERSION,
00049 I18N_NOOP("Configures the To-do Conduit for KPilot"),
00050 KAboutData::License_GPL,
00051 "(C) 2001, Adriaan de Groot\n(C) 2002-2003, Reinhold Kainhofer");
00052 fAbout->addAuthor("Dan Pilone",
00053 I18N_NOOP("Original Author"));
00054 fAbout->addAuthor("Preston Brown",
00055 I18N_NOOP("Original Author"));
00056 fAbout->addAuthor("Herwin-Jan Steehouwer",
00057 I18N_NOOP("Original Author"));
00058 fAbout->addAuthor("Adriaan de Groot",
00059 I18N_NOOP("Maintainer"),
00060 "groot@kde.org",
00061 "http://www.cs.kun.nl/~adridg/kpilot");
00062 fAbout->addAuthor("Reinhold Kainhofer",
00063 I18N_NOOP("Maintainer"),
00064 "reinhold@kainhofer.com",
00065 "http://reinhold.kainhofer.com/Linux/");
00066
00067 ConduitConfigBase::addAboutPage(fConfigWidget->tabWidget,fAbout);
00068
00069 fConfigWidget->fSyncDestination->setTitle(i18n("To-do Destination"));
00070 }
00071
00072 ToDoWidgetSetup::~ToDoWidgetSetup()
00073 {
00074 FUNCTIONSETUP;
00075 }
00076
00077 ConduitConfigBase *ToDoWidgetSetup::create(QWidget *w, const char *n)
00078 {
00079 return new ToDoWidgetSetup(w,n);
00080 }
00081
00082 VCalConduitSettings*ToDoWidgetSetup::config()
00083 {
00084 return TodoConduit::theConfig();
00085 }
00086
|