00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef MP3OPTIONSDIALOG_H
00011 #define MP3OPTIONSDIALOG_H
00012
00013 #include <qvariant.h>
00014 #include <qdialog.h>
00015
00016 class QVBoxLayout;
00017 class QHBoxLayout;
00018 class QGridLayout;
00019 class QSpacerItem;
00020 class QGroupBox;
00021 class QLabel;
00022 class QCheckBox;
00023 class QComboBox;
00024 class QPushButton;
00025 class QFrame;
00026 class QSpinBox;
00027
00028 class MP3OptionsDialog : public QDialog
00029 {
00030 Q_OBJECT
00031
00032 public:
00033 MP3OptionsDialog( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
00034 ~MP3OptionsDialog();
00035
00036 QGroupBox* groupBox2;
00037 QLabel* textLabel4;
00038 QLabel* textLabel5;
00039 QCheckBox* checkPreset;
00040 QCheckBox* checkFastEncoding;
00041 QComboBox* comboVBRMethod;
00042 QComboBox* comboMode;
00043 QComboBox* comboPreset;
00044 QPushButton* btOK;
00045 QPushButton* btCancel;
00046 QGroupBox* groupBox1;
00047 QCheckBox* checkVBR;
00048 QLabel* textLabel1;
00049 QCheckBox* checkABR;
00050 QFrame* line1;
00051 QLabel* textLabel2;
00052 QSpinBox* spinABRBitrate;
00053 QFrame* line2;
00054 QSpinBox* spinVRBQuality;
00055 QLabel* textLabel3;
00056 QSpinBox* spinCBRBitrate;
00057 QCheckBox* checkCBR;
00058
00059 public slots:
00060 virtual void ExitDialog();
00061 virtual void checkVBRToggled(int);
00062 virtual void checkABRToggled(int);
00063 virtual void checkCBRToggled(int);
00064 virtual void checkPresetToggled(int);
00065
00066 protected:
00067 QGridLayout* MP3OptionsDialogLayout;
00068 QSpacerItem* spacer7;
00069 QGridLayout* groupBox2Layout;
00070 QGridLayout* groupBox1Layout;
00071
00072 protected slots:
00073 virtual void languageChange();
00074
00075 };
00076
00077 #endif // MP3OPTIONSDIALOG_H