00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef PREVIEWFORM_H
00011 #define PREVIEWFORM_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 QFrame;
00021 class QGroupBox;
00022 class QLabel;
00023 class QSpinBox;
00024 class QPushButton;
00025 class QComboBox;
00026
00027 class PreviewForm : public QDialog
00028 {
00029 Q_OBJECT
00030
00031 public:
00032 PreviewForm( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
00033 ~PreviewForm();
00034
00035 QFrame* previewLayoutBox;
00036 QGroupBox* groupBox3;
00037 QFrame* convPreviewFrame;
00038 QGroupBox* groupBox2;
00039 QFrame* orPreviewFrame;
00040 QLabel* textLabel2_2;
00041 QSpinBox* secsToGrabSpinBox;
00042 QPushButton* PlayButton;
00043 QPushButton* StopButton;
00044 QComboBox* HVLComboBox;
00045 QPushButton* ChnageSecToGrabButton;
00046 QPushButton* CloseButton;
00047
00048 public slots:
00049 virtual void PlayBoth();
00050 virtual void ChangeSecToGrab();
00051 virtual void ChangeLayout();
00052 virtual void StopBoth();
00053 virtual void ClosePreview();
00054
00055 protected:
00056 QGridLayout* PreviewFormLayout;
00057 QGridLayout* groupBox3Layout;
00058 QGridLayout* groupBox2Layout;
00059 QHBoxLayout* layout2;
00060 QSpacerItem* spacer7_2;
00061 QSpacerItem* spacer16;
00062 QSpacerItem* spacer5_2;
00063 QSpacerItem* spacer5;
00064 QSpacerItem* spacer4;
00065
00066 protected slots:
00067 virtual void languageChange();
00068
00069 };
00070
00071 #endif // PREVIEWFORM_H