00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef COPENDEVICEDLG_H
00010 #define COPENDEVICEDLG_H
00011
00012 #include <qvariant.h>
00013 #include <qdialog.h>
00014 class QVBoxLayout;
00015 class QHBoxLayout;
00016 class QGridLayout;
00017 class QButtonGroup;
00018 class QComboBox;
00019 class QLabel;
00020 class QPushButton;
00021 class QRadioButton;
00022
00023 class COpenDeviceDlg : public QDialog
00024 {
00025 Q_OBJECT
00026
00027 public:
00028 COpenDeviceDlg( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
00029 ~COpenDeviceDlg();
00030
00031 QLabel* TextLabel1;
00032 QComboBox* m_DeviceSelection;
00033 QButtonGroup* m_InitialSize;
00034 QRadioButton* RadioButton1;
00035 QRadioButton* RadioButton4;
00036 QRadioButton* RadioButton2;
00037 QRadioButton* RadioButton3;
00038 QRadioButton* RadioButton5;
00039 QRadioButton* RadioButton6;
00040 QRadioButton* RadioButton7;
00041 QRadioButton* RadioButton8;
00042 QPushButton* buttonOk;
00043 QPushButton* buttonCancel;
00044
00045 protected:
00046 QVBoxLayout* COpenDeviceDlgLayout;
00047 QHBoxLayout* Layout6;
00048 QVBoxLayout* m_InitialSizeLayout;
00049 QHBoxLayout* Layout4;
00050 };
00051
00052 #endif // COPENDEVICEDLG_H