00001 00023 #ifndef CONTROLLER_OSD_CONFIG_H 00024 #define CONTROLLER_OSD_CONFIG_H 00025 00026 #include <QtGui> 00027 00028 class OsdConfig : public QWidget 00029 { 00030 public: 00031 OsdConfig(); 00032 00033 QGroupBox* m_groupConfig; 00034 QLabel m_labWidth; 00035 QLabel m_labHeight; 00036 QLabel m_labColor; 00037 QLabel m_labPosition; 00038 QLabel m_labXOffset; 00039 QLabel m_labYOffset; 00040 QSpinBox m_spinWidth; 00041 QSpinBox m_spinHeight; 00042 QSpinBox m_spinXOffset; 00043 QSpinBox m_spinYOffset; 00044 QComboBox m_cmbColor; 00045 QComboBox m_cmbPosition; 00046 }; 00047 00048 #endif