00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef UI_IMPORTCLIPSDIALOG_H
00011 #define UI_IMPORTCLIPSDIALOG_H
00012
00013 #include <QtCore/QVariant>
00014 #include <QtGui/QAction>
00015 #include <QtGui/QApplication>
00016 #include <QtGui/QButtonGroup>
00017 #include <QtGui/QCheckBox>
00018 #include <QtGui/QComboBox>
00019 #include <QtGui/QDialog>
00020 #include <QtGui/QDialogButtonBox>
00021 #include <QtGui/QHBoxLayout>
00022 #include <QtGui/QHeaderView>
00023 #include <QtGui/QLabel>
00024 #include <QtGui/QVBoxLayout>
00025
00026 QT_BEGIN_NAMESPACE
00027
00028 class Ui_ImportClipsDialog
00029 {
00030 public:
00031 QVBoxLayout *vboxLayout;
00032 QHBoxLayout *hboxLayout;
00033 QLabel *label;
00034 QComboBox *comboBoxTrack;
00035 QCheckBox *checkBoxMarkers;
00036 QDialogButtonBox *buttonBox;
00037
00038 void setupUi(QDialog *ImportClipsDialog)
00039 {
00040 if (ImportClipsDialog->objectName().isEmpty())
00041 ImportClipsDialog->setObjectName(QString::fromUtf8("ImportClipsDialog"));
00042 ImportClipsDialog->resize(344, 103);
00043 vboxLayout = new QVBoxLayout(ImportClipsDialog);
00044 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
00045 hboxLayout = new QHBoxLayout();
00046 hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
00047 label = new QLabel(ImportClipsDialog);
00048 label->setObjectName(QString::fromUtf8("label"));
00049
00050 hboxLayout->addWidget(label);
00051
00052 comboBoxTrack = new QComboBox(ImportClipsDialog);
00053 comboBoxTrack->setObjectName(QString::fromUtf8("comboBoxTrack"));
00054
00055 hboxLayout->addWidget(comboBoxTrack);
00056
00057
00058 vboxLayout->addLayout(hboxLayout);
00059
00060 checkBoxMarkers = new QCheckBox(ImportClipsDialog);
00061 checkBoxMarkers->setObjectName(QString::fromUtf8("checkBoxMarkers"));
00062
00063 vboxLayout->addWidget(checkBoxMarkers);
00064
00065 buttonBox = new QDialogButtonBox(ImportClipsDialog);
00066 buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
00067 buttonBox->setOrientation(Qt::Horizontal);
00068 buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::NoButton|QDialogButtonBox::Ok);
00069
00070 vboxLayout->addWidget(buttonBox);
00071
00072
00073 retranslateUi(ImportClipsDialog);
00074 QObject::connect(buttonBox, SIGNAL(accepted()), ImportClipsDialog, SLOT(accept()));
00075 QObject::connect(buttonBox, SIGNAL(rejected()), ImportClipsDialog, SLOT(reject()));
00076
00077 QMetaObject::connectSlotsByName(ImportClipsDialog);
00078 }
00079
00080 void retranslateUi(QDialog *ImportClipsDialog)
00081 {
00082 ImportClipsDialog->setWindowTitle(QApplication::translate("ImportClipsDialog", "Import Audio Clips", 0, QApplication::UnicodeUTF8));
00083 label->setText(QApplication::translate("ImportClipsDialog", "Import to Track:", 0, QApplication::UnicodeUTF8));
00084 checkBoxMarkers->setText(QApplication::translate("ImportClipsDialog", "Add Markers", 0, QApplication::UnicodeUTF8));
00085 Q_UNUSED(ImportClipsDialog);
00086 }
00087
00088 };
00089
00090 namespace Ui {
00091 class ImportClipsDialog: public Ui_ImportClipsDialog {};
00092 }
00093
00094 QT_END_NAMESPACE
00095
00096 #endif // UI_IMPORTCLIPSDIALOG_H