kpilot/kpilot
kpilotConfigWizard_user.h00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef CONFIGWIZARD_BASE2_H
00010 #define CONFIGWIZARD_BASE2_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 QLabel;
00020 class QGroupBox;
00021 class QPushButton;
00022 class QLineEdit;
00023 class QCheckBox;
00024
00025 class ConfigWizard_base2 : public QWidget
00026 {
00027 Q_OBJECT
00028
00029 public:
00030 ConfigWizard_base2( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
00031 ~ConfigWizard_base2();
00032
00033 QLabel* textLabel1;
00034 QLabel* textLabel5;
00035 QGroupBox* groupBox2;
00036 QLabel* textLabel3_2;
00037 QPushButton* fProbeButton;
00038 QLineEdit* fDeviceName;
00039 QLineEdit* fUserName;
00040 QLabel* textLabel2_2;
00041 QCheckBox* fPilotRunningPermanently;
00042
00043 protected:
00044 QVBoxLayout* ConfigWizard_base2Layout;
00045 QSpacerItem* spacer4;
00046 QGridLayout* groupBox2Layout;
00047
00048 protected slots:
00049 virtual void languageChange();
00050
00051 };
00052
00053 #endif // CONFIGWIZARD_BASE2_H
|