kitchensync
configguipalm.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef CONFIGGUIPALM_H
00023 #define CONFIGGUIPALM_H
00024
00025 #include "configgui.h"
00026
00027 class KComboBox;
00028 class KLineEdit;
00029 class QCheckBox;
00030 class QRadioButton;
00031 class QSpinBox;
00032
00033 class ConfigGuiPalm : public ConfigGui
00034 {
00035 public:
00036 ConfigGuiPalm( const QSync::Member &, QWidget *parent );
00037
00038 void load( const QString &xml );
00039 QString save();
00040
00041 private:
00042 void initGUI();
00043
00044 KComboBox *mDevice;
00045 KComboBox *mSpeed;
00046 QSpinBox *mTimeout;
00047
00048 KLineEdit *mUserName;
00049
00050 QRadioButton *mSyncAlways;
00051 QRadioButton *mSyncAsk;
00052 QRadioButton *mSyncAbort;
00053
00054 QCheckBox *mPopup;
00055 KComboBox *mVerbosity;
00056 KComboBox *mCodePage;
00057 };
00058
00059 #endif
|