00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef UI_NEWTRACKDIALOG_H
00011 #define UI_NEWTRACKDIALOG_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/QHBoxLayout>
00020 #include <QtGui/QHeaderView>
00021 #include <QtGui/QLabel>
00022 #include <QtGui/QLineEdit>
00023 #include <QtGui/QSpinBox>
00024 #include <QtGui/QVBoxLayout>
00025
00026 QT_BEGIN_NAMESPACE
00027
00028 class Ui_NewTrackDialog
00029 {
00030 public:
00031 QVBoxLayout *vboxLayout;
00032 QHBoxLayout *hboxLayout;
00033 QLabel *label;
00034 QLineEdit *titleLineEdit;
00035 QHBoxLayout *hboxLayout1;
00036 QLabel *label_2;
00037 QSpinBox *countSpinBox;
00038 QDialogButtonBox *buttonBox;
00039
00040 void setupUi(QDialog *NewTrackDialog)
00041 {
00042 if (NewTrackDialog->objectName().isEmpty())
00043 NewTrackDialog->setObjectName(QString::fromUtf8("NewTrackDialog"));
00044 NewTrackDialog->resize(239, 111);
00045 vboxLayout = new QVBoxLayout(NewTrackDialog);
00046 #ifndef Q_OS_MAC
00047 vboxLayout->setSpacing(6);
00048 #endif
00049 #ifndef Q_OS_MAC
00050 vboxLayout->setMargin(9);
00051 #endif
00052 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
00053 hboxLayout = new QHBoxLayout();
00054 #ifndef Q_OS_MAC
00055 hboxLayout->setSpacing(6);
00056 #endif
00057 #ifndef Q_OS_MAC
00058 hboxLayout->setMargin(0);
00059 #endif
00060 hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
00061 label = new QLabel(NewTrackDialog);
00062 label->setObjectName(QString::fromUtf8("label"));
00063
00064 hboxLayout->addWidget(label);
00065
00066 titleLineEdit = new QLineEdit(NewTrackDialog);
00067 titleLineEdit->setObjectName(QString::fromUtf8("titleLineEdit"));
00068
00069 hboxLayout->addWidget(titleLineEdit);
00070
00071
00072 vboxLayout->addLayout(hboxLayout);
00073
00074 hboxLayout1 = new QHBoxLayout();
00075 #ifndef Q_OS_MAC
00076 hboxLayout1->setSpacing(6);
00077 #endif
00078 hboxLayout1->setMargin(0);
00079 hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
00080 label_2 = new QLabel(NewTrackDialog);
00081 label_2->setObjectName(QString::fromUtf8("label_2"));
00082
00083 hboxLayout1->addWidget(label_2);
00084
00085 countSpinBox = new QSpinBox(NewTrackDialog);
00086 countSpinBox->setObjectName(QString::fromUtf8("countSpinBox"));
00087 countSpinBox->setMinimum(1);
00088 countSpinBox->setValue(1);
00089
00090 hboxLayout1->addWidget(countSpinBox);
00091
00092
00093 vboxLayout->addLayout(hboxLayout1);
00094
00095 buttonBox = new QDialogButtonBox(NewTrackDialog);
00096 buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
00097 buttonBox->setOrientation(Qt::Horizontal);
00098 buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::NoButton|QDialogButtonBox::Ok);
00099
00100 vboxLayout->addWidget(buttonBox);
00101
00102
00103 retranslateUi(NewTrackDialog);
00104 QObject::connect(buttonBox, SIGNAL(accepted()), NewTrackDialog, SLOT(accept()));
00105 QObject::connect(buttonBox, SIGNAL(rejected()), NewTrackDialog, SLOT(reject()));
00106
00107 QMetaObject::connectSlotsByName(NewTrackDialog);
00108 }
00109
00110 void retranslateUi(QDialog *NewTrackDialog)
00111 {
00112 NewTrackDialog->setWindowTitle(QApplication::translate("NewTrackDialog", "New Track(s)", 0, QApplication::UnicodeUTF8));
00113 label->setText(QApplication::translate("NewTrackDialog", "Track name", 0, QApplication::UnicodeUTF8));
00114 label_2->setText(QApplication::translate("NewTrackDialog", "Track count", 0, QApplication::UnicodeUTF8));
00115 Q_UNUSED(NewTrackDialog);
00116 }
00117
00118 };
00119
00120 namespace Ui {
00121 class NewTrackDialog: public Ui_NewTrackDialog {};
00122 }
00123
00124 QT_END_NAMESPACE
00125
00126 #endif // UI_NEWTRACKDIALOG_H