kpilot/kpilot
kpilotConfigDialog_backup.h00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef BACKUPCONFIGFORM_H
00010 #define BACKUPCONFIGFORM_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 QGroupBox;
00020 class QLabel;
00021 class QComboBox;
00022 class QLineEdit;
00023 class QPushButton;
00024 class QCheckBox;
00025
00026 class BackupConfigWidget : public QWidget
00027 {
00028 Q_OBJECT
00029
00030 public:
00031 BackupConfigWidget( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
00032 ~BackupConfigWidget();
00033
00034 QGroupBox* GroupBox23_2;
00035 QLabel* TextLabel5_2;
00036 QComboBox* fBackupFrequency;
00037 QGroupBox* GroupBox23;
00038 QLabel* TextLabel5;
00039 QLabel* TextLabel6;
00040 QLineEdit* fBackupOnly;
00041 QLineEdit* fSkipDB;
00042 QPushButton* fBackupOnlyChooser;
00043 QPushButton* fSkipDBChooser;
00044 QCheckBox* fRunConduitsWithBackup;
00045
00046 protected:
00047 QVBoxLayout* BackupConfigFormLayout;
00048 QSpacerItem* spacer8;
00049 QHBoxLayout* GroupBox23_2Layout;
00050 QGridLayout* GroupBox23Layout;
00051
00052 protected slots:
00053 virtual void languageChange();
00054
00055 };
00056
00057 #endif // BACKUPCONFIGFORM_H
|