kpilot/kpilot
kpilotConfigDialog_sync.h00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef SYNCCONFIGFORM_H
00010 #define SYNCCONFIGFORM_H
00011
00012 #include <qvariant.h>
00013 #include <qwidget.h>
00014
00015 class QVBoxLayout;
00016 class QHBoxLayout;
00017 class QGridLayout;
00018 class QSpacerItem;
00019 class QCheckBox;
00020 class QComboBox;
00021 class QLabel;
00022
00023 class SyncConfigWidget : public QWidget
00024 {
00025 Q_OBJECT
00026
00027 public:
00028 SyncConfigWidget( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
00029 ~SyncConfigWidget();
00030
00031 QCheckBox* fFullSyncCheck;
00032 QComboBox* fSpecialSync;
00033 QLabel* textLabel1_2;
00034 QComboBox* fConflictResolution;
00035 QLabel* textLabel1;
00036 QCheckBox* fScreenlockSecure;
00037
00038 protected:
00039 QGridLayout* SyncConfigFormLayout;
00040 QSpacerItem* spacer3;
00041
00042 protected slots:
00043 virtual void languageChange();
00044
00045 };
00046
00047 #endif // SYNCCONFIGFORM_H
|