00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef UI_EXTERNALPROCESSING_H
00011 #define UI_EXTERNALPROCESSING_H
00012
00013 #include <QtCore/QVariant>
00014 #include <QtGui/QAction>
00015 #include <QtGui/QApplication>
00016 #include <QtGui/QButtonGroup>
00017 #include <QtGui/QComboBox>
00018 #include <QtGui/QDialog>
00019 #include <QtGui/QHBoxLayout>
00020 #include <QtGui/QLabel>
00021 #include <QtGui/QLineEdit>
00022 #include <QtGui/QProgressBar>
00023 #include <QtGui/QPushButton>
00024 #include <QtGui/QSpacerItem>
00025 #include <QtGui/QTextEdit>
00026 #include <QtGui/QVBoxLayout>
00027
00028 QT_BEGIN_NAMESPACE
00029
00030 class Ui_ExternalProcessing
00031 {
00032 public:
00033 QVBoxLayout *vboxLayout;
00034 QHBoxLayout *hboxLayout;
00035 QVBoxLayout *vboxLayout1;
00036 QLabel *label;
00037 QLabel *label_2;
00038 QLabel *label_4;
00039 QVBoxLayout *vboxLayout2;
00040 QLineEdit *programLineEdit;
00041 QHBoxLayout *hboxLayout1;
00042 QLineEdit *argumentsLineEdit;
00043 QComboBox *argsComboBox;
00044 QProgressBar *progressBar;
00045 QHBoxLayout *hboxLayout2;
00046 QSpacerItem *spacerItem;
00047 QPushButton *startButton;
00048 QPushButton *cancelButton;
00049 QLabel *label_3;
00050 QTextEdit *statusText;
00051
00052 void setupUi(QDialog *ExternalProcessing)
00053 {
00054 if (ExternalProcessing->objectName().isEmpty())
00055 ExternalProcessing->setObjectName(QString::fromUtf8("ExternalProcessing"));
00056 ExternalProcessing->resize(430, 316);
00057 ExternalProcessing->setMinimumSize(QSize(380, 0));
00058 ExternalProcessing->setMaximumSize(QSize(460, 400));
00059 vboxLayout = new QVBoxLayout(ExternalProcessing);
00060 #ifndef Q_OS_MAC
00061 vboxLayout->setSpacing(6);
00062 #endif
00063 #ifndef Q_OS_MAC
00064 vboxLayout->setMargin(9);
00065 #endif
00066 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
00067 hboxLayout = new QHBoxLayout();
00068 #ifndef Q_OS_MAC
00069 hboxLayout->setSpacing(6);
00070 #endif
00071 #ifndef Q_OS_MAC
00072 hboxLayout->setMargin(0);
00073 #endif
00074 hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
00075 vboxLayout1 = new QVBoxLayout();
00076 #ifndef Q_OS_MAC
00077 vboxLayout1->setSpacing(6);
00078 #endif
00079 #ifndef Q_OS_MAC
00080 vboxLayout1->setMargin(0);
00081 #endif
00082 vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1"));
00083 label = new QLabel(ExternalProcessing);
00084 label->setObjectName(QString::fromUtf8("label"));
00085
00086 vboxLayout1->addWidget(label);
00087
00088 label_2 = new QLabel(ExternalProcessing);
00089 label_2->setObjectName(QString::fromUtf8("label_2"));
00090
00091 vboxLayout1->addWidget(label_2);
00092
00093 label_4 = new QLabel(ExternalProcessing);
00094 label_4->setObjectName(QString::fromUtf8("label_4"));
00095
00096 vboxLayout1->addWidget(label_4);
00097
00098
00099 hboxLayout->addLayout(vboxLayout1);
00100
00101 vboxLayout2 = new QVBoxLayout();
00102 #ifndef Q_OS_MAC
00103 vboxLayout2->setSpacing(6);
00104 #endif
00105 vboxLayout2->setMargin(0);
00106 vboxLayout2->setObjectName(QString::fromUtf8("vboxLayout2"));
00107 programLineEdit = new QLineEdit(ExternalProcessing);
00108 programLineEdit->setObjectName(QString::fromUtf8("programLineEdit"));
00109
00110 vboxLayout2->addWidget(programLineEdit);
00111
00112 hboxLayout1 = new QHBoxLayout();
00113 #ifndef Q_OS_MAC
00114 hboxLayout1->setSpacing(6);
00115 #endif
00116 hboxLayout1->setMargin(0);
00117 hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
00118 argumentsLineEdit = new QLineEdit(ExternalProcessing);
00119 argumentsLineEdit->setObjectName(QString::fromUtf8("argumentsLineEdit"));
00120
00121 hboxLayout1->addWidget(argumentsLineEdit);
00122
00123 argsComboBox = new QComboBox(ExternalProcessing);
00124 argsComboBox->setObjectName(QString::fromUtf8("argsComboBox"));
00125 argsComboBox->setMinimumSize(QSize(100, 0));
00126
00127 hboxLayout1->addWidget(argsComboBox);
00128
00129
00130 vboxLayout2->addLayout(hboxLayout1);
00131
00132 progressBar = new QProgressBar(ExternalProcessing);
00133 progressBar->setObjectName(QString::fromUtf8("progressBar"));
00134 progressBar->setValue(0);
00135 progressBar->setTextVisible(true);
00136 progressBar->setOrientation(Qt::Horizontal);
00137
00138 vboxLayout2->addWidget(progressBar);
00139
00140
00141 hboxLayout->addLayout(vboxLayout2);
00142
00143
00144 vboxLayout->addLayout(hboxLayout);
00145
00146 hboxLayout2 = new QHBoxLayout();
00147 #ifndef Q_OS_MAC
00148 hboxLayout2->setSpacing(6);
00149 #endif
00150 hboxLayout2->setMargin(0);
00151 hboxLayout2->setObjectName(QString::fromUtf8("hboxLayout2"));
00152 spacerItem = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
00153
00154 hboxLayout2->addItem(spacerItem);
00155
00156 startButton = new QPushButton(ExternalProcessing);
00157 startButton->setObjectName(QString::fromUtf8("startButton"));
00158
00159 hboxLayout2->addWidget(startButton);
00160
00161 cancelButton = new QPushButton(ExternalProcessing);
00162 cancelButton->setObjectName(QString::fromUtf8("cancelButton"));
00163
00164 hboxLayout2->addWidget(cancelButton);
00165
00166
00167 vboxLayout->addLayout(hboxLayout2);
00168
00169 label_3 = new QLabel(ExternalProcessing);
00170 label_3->setObjectName(QString::fromUtf8("label_3"));
00171
00172 vboxLayout->addWidget(label_3);
00173
00174 statusText = new QTextEdit(ExternalProcessing);
00175 statusText->setObjectName(QString::fromUtf8("statusText"));
00176 statusText->setAcceptDrops(false);
00177 statusText->setTextInteractionFlags(Qt::TextSelectableByMouse);
00178
00179 vboxLayout->addWidget(statusText);
00180
00181
00182 retranslateUi(ExternalProcessing);
00183
00184 QMetaObject::connectSlotsByName(ExternalProcessing);
00185 }
00186
00187 void retranslateUi(QDialog *ExternalProcessing)
00188 {
00189 ExternalProcessing->setWindowTitle(QApplication::translate("ExternalProcessing", "External Processing", 0, QApplication::UnicodeUTF8));
00190 label->setText(QApplication::translate("ExternalProcessing", "Program", 0, QApplication::UnicodeUTF8));
00191 label_2->setText(QApplication::translate("ExternalProcessing", "Arguments", 0, QApplication::UnicodeUTF8));
00192 label_4->setText(QApplication::translate("ExternalProcessing", "Progress", 0, QApplication::UnicodeUTF8));
00193 programLineEdit->setText(QApplication::translate("ExternalProcessing", "sox", 0, QApplication::UnicodeUTF8));
00194 startButton->setText(QApplication::translate("ExternalProcessing", "Start", 0, QApplication::UnicodeUTF8));
00195 cancelButton->setText(QApplication::translate("ExternalProcessing", "Cancel", 0, QApplication::UnicodeUTF8));
00196 label_3->setText(QApplication::translate("ExternalProcessing", "Program output", 0, QApplication::UnicodeUTF8));
00197 Q_UNUSED(ExternalProcessing);
00198 }
00199
00200 };
00201
00202 namespace Ui {
00203 class ExternalProcessing: public Ui_ExternalProcessing {};
00204 }
00205
00206 QT_END_NAMESPACE
00207
00208 #endif // UI_EXTERNALPROCESSING_H