00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef UI_PROJECTCONVERTERDIALOG_H
00011 #define UI_PROJECTCONVERTERDIALOG_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/QHBoxLayout>
00019 #include <QtGui/QHeaderView>
00020 #include <QtGui/QLabel>
00021 #include <QtGui/QProgressBar>
00022 #include <QtGui/QPushButton>
00023 #include <QtGui/QSpacerItem>
00024 #include <QtGui/QTextBrowser>
00025 #include <QtGui/QVBoxLayout>
00026
00027 QT_BEGIN_NAMESPACE
00028
00029 class Ui_ProjectConverterDialog
00030 {
00031 public:
00032 QVBoxLayout *vboxLayout;
00033 QLabel *projectNameLable;
00034 QTextBrowser *conversionInfoText;
00035 QLabel *taskLable;
00036 QTextBrowser *taskTextBrowswer;
00037 QLabel *progressLable;
00038 QProgressBar *progressBar;
00039 QHBoxLayout *hboxLayout;
00040 QSpacerItem *spacerItem;
00041 QPushButton *startButton;
00042 QPushButton *stopConversionButton;
00043 QPushButton *loadProjectButton;
00044 QPushButton *closeButton;
00045
00046 void setupUi(QDialog *ProjectConverterDialog)
00047 {
00048 if (ProjectConverterDialog->objectName().isEmpty())
00049 ProjectConverterDialog->setObjectName(QString::fromUtf8("ProjectConverterDialog"));
00050 ProjectConverterDialog->resize(452, 480);
00051 vboxLayout = new QVBoxLayout(ProjectConverterDialog);
00052 #ifndef Q_OS_MAC
00053 vboxLayout->setSpacing(6);
00054 #endif
00055 #ifndef Q_OS_MAC
00056 vboxLayout->setMargin(9);
00057 #endif
00058 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
00059 projectNameLable = new QLabel(ProjectConverterDialog);
00060 projectNameLable->setObjectName(QString::fromUtf8("projectNameLable"));
00061
00062 vboxLayout->addWidget(projectNameLable);
00063
00064 conversionInfoText = new QTextBrowser(ProjectConverterDialog);
00065 conversionInfoText->setObjectName(QString::fromUtf8("conversionInfoText"));
00066 QSizePolicy sizePolicy(static_cast<QSizePolicy::Policy>(7), static_cast<QSizePolicy::Policy>(7));
00067 sizePolicy.setHorizontalStretch(0);
00068 sizePolicy.setVerticalStretch(5);
00069 sizePolicy.setHeightForWidth(conversionInfoText->sizePolicy().hasHeightForWidth());
00070 conversionInfoText->setSizePolicy(sizePolicy);
00071
00072 vboxLayout->addWidget(conversionInfoText);
00073
00074 taskLable = new QLabel(ProjectConverterDialog);
00075 taskLable->setObjectName(QString::fromUtf8("taskLable"));
00076
00077 vboxLayout->addWidget(taskLable);
00078
00079 taskTextBrowswer = new QTextBrowser(ProjectConverterDialog);
00080 taskTextBrowswer->setObjectName(QString::fromUtf8("taskTextBrowswer"));
00081 QSizePolicy sizePolicy1(static_cast<QSizePolicy::Policy>(7), static_cast<QSizePolicy::Policy>(7));
00082 sizePolicy1.setHorizontalStretch(0);
00083 sizePolicy1.setVerticalStretch(1);
00084 sizePolicy1.setHeightForWidth(taskTextBrowswer->sizePolicy().hasHeightForWidth());
00085 taskTextBrowswer->setSizePolicy(sizePolicy1);
00086
00087 vboxLayout->addWidget(taskTextBrowswer);
00088
00089 progressLable = new QLabel(ProjectConverterDialog);
00090 progressLable->setObjectName(QString::fromUtf8("progressLable"));
00091
00092 vboxLayout->addWidget(progressLable);
00093
00094 progressBar = new QProgressBar(ProjectConverterDialog);
00095 progressBar->setObjectName(QString::fromUtf8("progressBar"));
00096 progressBar->setValue(0);
00097 progressBar->setOrientation(Qt::Horizontal);
00098
00099 vboxLayout->addWidget(progressBar);
00100
00101 hboxLayout = new QHBoxLayout();
00102 #ifndef Q_OS_MAC
00103 hboxLayout->setSpacing(6);
00104 #endif
00105 hboxLayout->setMargin(0);
00106 hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
00107 spacerItem = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
00108
00109 hboxLayout->addItem(spacerItem);
00110
00111 startButton = new QPushButton(ProjectConverterDialog);
00112 startButton->setObjectName(QString::fromUtf8("startButton"));
00113
00114 hboxLayout->addWidget(startButton);
00115
00116 stopConversionButton = new QPushButton(ProjectConverterDialog);
00117 stopConversionButton->setObjectName(QString::fromUtf8("stopConversionButton"));
00118
00119 hboxLayout->addWidget(stopConversionButton);
00120
00121 loadProjectButton = new QPushButton(ProjectConverterDialog);
00122 loadProjectButton->setObjectName(QString::fromUtf8("loadProjectButton"));
00123
00124 hboxLayout->addWidget(loadProjectButton);
00125
00126 closeButton = new QPushButton(ProjectConverterDialog);
00127 closeButton->setObjectName(QString::fromUtf8("closeButton"));
00128
00129 hboxLayout->addWidget(closeButton);
00130
00131
00132 vboxLayout->addLayout(hboxLayout);
00133
00134
00135 retranslateUi(ProjectConverterDialog);
00136 QObject::connect(closeButton, SIGNAL(clicked()), ProjectConverterDialog, SLOT(reject()));
00137 QObject::connect(startButton, SIGNAL(clicked()), ProjectConverterDialog, SLOT(accept()));
00138
00139 QMetaObject::connectSlotsByName(ProjectConverterDialog);
00140 }
00141
00142 void retranslateUi(QDialog *ProjectConverterDialog)
00143 {
00144 ProjectConverterDialog->setWindowTitle(QApplication::translate("ProjectConverterDialog", "Project Converter", 0, QApplication::UnicodeUTF8));
00145 projectNameLable->setText(QApplication::translate("ProjectConverterDialog", "Project XXX (no translation needed)", 0, QApplication::UnicodeUTF8));
00146 taskLable->setText(QApplication::translate("ProjectConverterDialog", "Conversion information", 0, QApplication::UnicodeUTF8));
00147 progressLable->setText(QApplication::translate("ProjectConverterDialog", "Conversion progress", 0, QApplication::UnicodeUTF8));
00148 startButton->setText(QApplication::translate("ProjectConverterDialog", "Start conversion", 0, QApplication::UnicodeUTF8));
00149 stopConversionButton->setText(QApplication::translate("ProjectConverterDialog", "Stop conversion", 0, QApplication::UnicodeUTF8));
00150 loadProjectButton->setText(QApplication::translate("ProjectConverterDialog", "Load Project", 0, QApplication::UnicodeUTF8));
00151 closeButton->setText(QApplication::translate("ProjectConverterDialog", "Close", 0, QApplication::UnicodeUTF8));
00152 Q_UNUSED(ProjectConverterDialog);
00153 }
00154
00155 };
00156
00157 namespace Ui {
00158 class ProjectConverterDialog: public Ui_ProjectConverterDialog {};
00159 }
00160
00161 QT_END_NAMESPACE
00162
00163 #endif // UI_PROJECTCONVERTERDIALOG_H