kitchensync
configguijescs.h00001 #ifndef CONFIGGUIJESCS_H
00002 #define CONFIGGUIJESCS_H
00003
00004 #include "configgui.h"
00005
00006 class KLineEdit;
00007 class QCheckBox;
00008
00009 class ConfigGuiJescs : public ConfigGui
00010 {
00011 public:
00012 ConfigGuiJescs( const QSync::Member &, QWidget *parent );
00013
00014 void load( const QString &xml );
00015
00016 QString save();
00017
00018 private:
00019 void initGUI();
00020
00021 KLineEdit *mUrl;
00022
00023 KLineEdit *mUsername;
00024
00025 KLineEdit *mPassword;
00026
00027 QCheckBox *mDelNotify;
00028 };
00029
00030 #endif
|