00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef UI_INSERTSILENCEDIALOG_H
00011 #define UI_INSERTSILENCEDIALOG_H
00012
00013 #include <QtCore/QVariant>
00014 #include <QtGui/QAction>
00015 #include <QtGui/QApplication>
00016 #include <QtGui/QButtonGroup>
00017 #include <QtGui/QDialog>
00018 #include <QtGui/QDialogButtonBox>
00019 #include <QtGui/QDoubleSpinBox>
00020 #include <QtGui/QHBoxLayout>
00021 #include <QtGui/QHeaderView>
00022 #include <QtGui/QLabel>
00023 #include <QtGui/QVBoxLayout>
00024
00025 QT_BEGIN_NAMESPACE
00026
00027 class Ui_InsertSilenceDialog
00028 {
00029 public:
00030 QVBoxLayout *vboxLayout;
00031 QHBoxLayout *hboxLayout;
00032 QLabel *label;
00033 QDoubleSpinBox *lengthSpinBox;
00034 QDialogButtonBox *buttonBox;
00035
00036 void setupUi(QDialog *InsertSilenceDialog)
00037 {
00038 if (InsertSilenceDialog->objectName().isEmpty())
00039 InsertSilenceDialog->setObjectName(QString::fromUtf8("InsertSilenceDialog"));
00040 InsertSilenceDialog->resize(261, 87);
00041 vboxLayout = new QVBoxLayout(InsertSilenceDialog);
00042 #ifndef Q_OS_MAC
00043 vboxLayout->setSpacing(6);
00044 #endif
00045 #ifndef Q_OS_MAC
00046 vboxLayout->setMargin(9);
00047 #endif
00048 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
00049 hboxLayout = new QHBoxLayout();
00050 #ifndef Q_OS_MAC
00051 hboxLayout->setSpacing(6);
00052 #endif
00053 #ifndef Q_OS_MAC
00054 hboxLayout->setMargin(0);
00055 #endif
00056 hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
00057 label = new QLabel(InsertSilenceDialog);
00058 label->setObjectName(QString::fromUtf8("label"));
00059
00060 hboxLayout->addWidget(label);
00061
00062 lengthSpinBox = new QDoubleSpinBox(InsertSilenceDialog);
00063 lengthSpinBox->setObjectName(QString::fromUtf8("lengthSpinBox"));
00064 lengthSpinBox->setDecimals(3);
00065 lengthSpinBox->setMaximum(3600);
00066 lengthSpinBox->setMinimum(0.001);
00067 lengthSpinBox->setValue(10);
00068
00069 hboxLayout->addWidget(lengthSpinBox);
00070
00071
00072 vboxLayout->addLayout(hboxLayout);
00073
00074 buttonBox = new QDialogButtonBox(InsertSilenceDialog);
00075 buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
00076 buttonBox->setOrientation(Qt::Horizontal);
00077 buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::NoButton|QDialogButtonBox::Ok);
00078
00079 vboxLayout->addWidget(buttonBox);
00080
00081
00082 retranslateUi(InsertSilenceDialog);
00083 QObject::connect(buttonBox, SIGNAL(accepted()), InsertSilenceDialog, SLOT(accept()));
00084 QObject::connect(buttonBox, SIGNAL(rejected()), InsertSilenceDialog, SLOT(reject()));
00085
00086 QMetaObject::connectSlotsByName(InsertSilenceDialog);
00087 }
00088
00089 void retranslateUi(QDialog *InsertSilenceDialog)
00090 {
00091 InsertSilenceDialog->setWindowTitle(QApplication::translate("InsertSilenceDialog", "Insert Silence", 0, QApplication::UnicodeUTF8));
00092 label->setText(QApplication::translate("InsertSilenceDialog", "Insert Silence (seconds):", 0, QApplication::UnicodeUTF8));
00093 Q_UNUSED(InsertSilenceDialog);
00094 }
00095
00096 };
00097
00098 namespace Ui {
00099 class InsertSilenceDialog: public Ui_InsertSilenceDialog {};
00100 }
00101
00102 QT_END_NAMESPACE
00103
00104 #endif // UI_INSERTSILENCEDIALOG_H