kitchensync
configguievo2.h00001 #ifndef CONFIGGUIEVO2_H
00002 #define CONFIGGUIEVO2_H
00003
00004 #include "configgui.h"
00005
00006 class KURLRequester;
00007
00008 class ConfigGuiEvo2 : public ConfigGui
00009 {
00010 public:
00011 ConfigGuiEvo2( const QSync::Member &, QWidget *parent );
00012
00013 void load( const QString &xml );
00014
00015 QString save();
00016
00017 private:
00018 void initGUI();
00019
00020 KURLRequester *mAddressPath;
00021
00022 KURLRequester *mCalendarPath;
00023
00024 KURLRequester *mTasksPath;
00025 };
00026
00027 #endif
|