00001 #ifndef UI_RUNPIHM_H
00002 #define UI_RUNPIHM_H
00003
00004 #include <QtCore/QVariant>
00005 #include <QtGui/QAction>
00006 #include <QtGui/QApplication>
00007 #include <QtGui/QButtonGroup>
00008 #include <QtGui/QDialog>
00009 #include <QtGui/QGridLayout>
00010 #include <QtGui/QGroupBox>
00011 #include <QtGui/QHBoxLayout>
00012 #include <QtGui/QLabel>
00013 #include <QtGui/QLineEdit>
00014 #include <QtGui/QProgressBar>
00015 #include <QtGui/QPushButton>
00016 #include <QtGui/QSpacerItem>
00017 #include <QtGui/QTextBrowser>
00018 #include <QtGui/QWidget>
00019
00020 class Ui_runPIHM
00021 {
00022 public:
00023 QProgressBar *progressBar;
00024 QTextBrowser *textBrowser;
00025 QWidget *widget;
00026 QGridLayout *gridLayout;
00027 QPushButton *cancelButton;
00028 QPushButton *runButton;
00029 QPushButton *helpButton;
00030 QSpacerItem *spacerItem;
00031 QGroupBox *groupBox;
00032 QWidget *layoutWidget;
00033 QHBoxLayout *hboxLayout;
00034 QPushButton *browseButton;
00035 QLabel *label;
00036 QLabel *label_2;
00037 QLineEdit *lineEdit;
00038 QLineEdit *lineEditFile;
00039
00040 void setupUi(QDialog *runPIHM)
00041 {
00042 runPIHM->setObjectName(QString::fromUtf8("runPIHM"));
00043 runPIHM->resize(QSize(555, 347).expandedTo(runPIHM->minimumSizeHint()));
00044 progressBar = new QProgressBar(runPIHM);
00045 progressBar->setObjectName(QString::fromUtf8("progressBar"));
00046 progressBar->setGeometry(QRect(125, 177, 216, 25));
00047 progressBar->setValue(0);
00048 progressBar->setOrientation(Qt::Horizontal);
00049 textBrowser = new QTextBrowser(runPIHM);
00050 textBrowser->setObjectName(QString::fromUtf8("textBrowser"));
00051 textBrowser->setGeometry(QRect(7, 220, 538, 111));
00052 widget = new QWidget(runPIHM);
00053 widget->setObjectName(QString::fromUtf8("widget"));
00054 widget->setGeometry(QRect(10, 170, 531, 40));
00055 gridLayout = new QGridLayout(widget);
00056 gridLayout->setSpacing(6);
00057 gridLayout->setMargin(0);
00058 gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
00059 cancelButton = new QPushButton(widget);
00060 cancelButton->setObjectName(QString::fromUtf8("cancelButton"));
00061
00062 gridLayout->addWidget(cancelButton, 0, 3, 1, 1);
00063
00064 runButton = new QPushButton(widget);
00065 runButton->setObjectName(QString::fromUtf8("runButton"));
00066
00067 gridLayout->addWidget(runButton, 0, 2, 1, 1);
00068
00069 helpButton = new QPushButton(widget);
00070 helpButton->setObjectName(QString::fromUtf8("helpButton"));
00071
00072 gridLayout->addWidget(helpButton, 0, 0, 1, 1);
00073
00074 spacerItem = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
00075
00076 gridLayout->addItem(spacerItem, 0, 1, 1, 1);
00077
00078 groupBox = new QGroupBox(runPIHM);
00079 groupBox->setObjectName(QString::fromUtf8("groupBox"));
00080 groupBox->setGeometry(QRect(10, 10, 535, 141));
00081 layoutWidget = new QWidget(groupBox);
00082 layoutWidget->setObjectName(QString::fromUtf8("layoutWidget"));
00083 layoutWidget->setGeometry(QRect(434, 30, 81, 40));
00084 hboxLayout = new QHBoxLayout(layoutWidget);
00085 hboxLayout->setSpacing(6);
00086 hboxLayout->setMargin(0);
00087 hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
00088 browseButton = new QPushButton(layoutWidget);
00089 browseButton->setObjectName(QString::fromUtf8("browseButton"));
00090
00091 hboxLayout->addWidget(browseButton);
00092
00093 label = new QLabel(groupBox);
00094 label->setObjectName(QString::fromUtf8("label"));
00095 label->setGeometry(QRect(16, 40, 102, 17));
00096 label_2 = new QLabel(groupBox);
00097 label_2->setObjectName(QString::fromUtf8("label_2"));
00098 label_2->setGeometry(QRect(16, 90, 102, 17));
00099 lineEdit = new QLineEdit(groupBox);
00100 lineEdit->setObjectName(QString::fromUtf8("lineEdit"));
00101 lineEdit->setGeometry(QRect(132, 38, 291, 23));
00102 lineEditFile = new QLineEdit(groupBox);
00103 lineEditFile->setObjectName(QString::fromUtf8("lineEditFile"));
00104 lineEditFile->setGeometry(QRect(132, 90, 151, 23));
00105 retranslateUi(runPIHM);
00106 QObject::connect(cancelButton, SIGNAL(clicked()), runPIHM, SLOT(reject()));
00107
00108 QMetaObject::connectSlotsByName(runPIHM);
00109 }
00110
00111 void retranslateUi(QDialog *runPIHM)
00112 {
00113 runPIHM->setWindowTitle(QApplication::translate("runPIHM", "PIHM", 0, QApplication::UnicodeUTF8));
00114 cancelButton->setText(QApplication::translate("runPIHM", "Close", 0, QApplication::UnicodeUTF8));
00115 runButton->setText(QApplication::translate("runPIHM", "RUN", 0, QApplication::UnicodeUTF8));
00116 helpButton->setText(QApplication::translate("runPIHM", "Help", 0, QApplication::UnicodeUTF8));
00117 groupBox->setTitle(QApplication::translate("runPIHM", "", 0, QApplication::UnicodeUTF8));
00118 browseButton->setText(QApplication::translate("runPIHM", "Browse...", 0, QApplication::UnicodeUTF8));
00119 label->setText(QApplication::translate("runPIHM", "Select Input Folder", 0, QApplication::UnicodeUTF8));
00120 label_2->setText(QApplication::translate("runPIHM", "Input File ID", 0, QApplication::UnicodeUTF8));
00121 Q_UNUSED(runPIHM);
00122 }
00123
00124 };
00125
00126 namespace Ui {
00127 class runPIHM: public Ui_runPIHM {};
00128 }
00129
00130 #endif // UI_RUNPIHM_H