kitchensync
kcalkonnectorconfig.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef KSYNC_KCALKONNECTORCONFIG_H
00023 #define KSYNC_KCALKONNECTORCONFIG_H
00024
00025 #include <kresources/configwidget.h>
00026
00027 #include <qcombobox.h>
00028 #include <qvaluelist.h>
00029
00030 namespace KSync {
00031
00032 class KCalKonnectorConfig : public KRES::ConfigWidget
00033 {
00034 Q_OBJECT
00035
00036 public:
00037 KCalKonnectorConfig( QWidget *parent );
00038 ~KCalKonnectorConfig();
00039
00040 void loadSettings( KRES::Resource *resource );
00041 void saveSettings( KRES::Resource *resource );
00042
00043 private:
00044 void initGUI();
00045
00046 QComboBox *mResourceBox;
00047 QValueList<QString> mResourceIdentifiers;
00048 };
00049
00050 }
00051
00052 #endif
|