00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef XVIDOPTIONSDIALOG_H
00011 #define XVIDOPTIONSDIALOG_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 QSpinBox;
00022 class QLabel;
00023 class QCheckBox;
00024 class QComboBox;
00025 class QPushButton;
00026
00027 class XvidOptionsDialog : public QDialog
00028 {
00029 Q_OBJECT
00030
00031 public:
00032 XvidOptionsDialog( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
00033 ~XvidOptionsDialog();
00034
00035 QGroupBox* groupBox1;
00036 QSpinBox* MotionSpinBox;
00037 QSpinBox* BitrateSpinBox;
00038 QLabel* textLabel1_5;
00039 QLabel* textLabel3_4;
00040 QLabel* textLabel1;
00041 QLabel* textLabel2;
00042 QCheckBox* GreyBox;
00043 QGroupBox* groupBox2;
00044 QCheckBox* FQBox;
00045 QCheckBox* MpegBox;
00046 QCheckBox* GMCBox;
00047 QCheckBox* TrellisBox;
00048 QCheckBox* AnimeBox;
00049 QCheckBox* ChromaBox;
00050 QLabel* textLabel3;
00051 QComboBox* MSAComboBox;
00052 QSpinBox* FQSpinBox;
00053 QCheckBox* AAspectBox;
00054 QPushButton* btCancel;
00055 QPushButton* btOk;
00056
00057 public slots:
00058 virtual void FQEnabled();
00059
00060 protected:
00061 QGridLayout* XvidOptionsDialogLayout;
00062 QSpacerItem* spacer1_2;
00063 QGridLayout* groupBox1Layout;
00064 QSpacerItem* spacer2;
00065 QSpacerItem* spacer1;
00066 QGridLayout* groupBox2Layout;
00067 QSpacerItem* spacer3;
00068
00069 protected slots:
00070 virtual void languageChange();
00071
00072 };
00073
00074 #endif // XVIDOPTIONSDIALOG_H