0
|
1 |
/********************************************************************************
|
|
2 |
** Form generated from reading UI file 'inputpage.ui'
|
|
3 |
**
|
|
4 |
** Created: Fri Sep 4 10:17:13 2009
|
|
5 |
** by: Qt User Interface Compiler version 4.6.0
|
|
6 |
**
|
|
7 |
** WARNING! All changes made in this file will be lost when recompiling UI file!
|
|
8 |
********************************************************************************/
|
|
9 |
|
|
10 |
#ifndef INPUTPAGE_H
|
|
11 |
#define INPUTPAGE_H
|
|
12 |
|
|
13 |
#include <QtCore/QVariant>
|
|
14 |
#include <QtGui/QAction>
|
|
15 |
#include <QtGui/QApplication>
|
|
16 |
#include <QtGui/QButtonGroup>
|
|
17 |
#include <QtGui/QGridLayout>
|
|
18 |
#include <QtGui/QHBoxLayout>
|
|
19 |
#include <QtGui/QHeaderView>
|
|
20 |
#include <QtGui/QLabel>
|
|
21 |
#include <QtGui/QLineEdit>
|
|
22 |
#include <QtGui/QSpacerItem>
|
|
23 |
#include <QtGui/QToolButton>
|
|
24 |
#include <QtGui/QWidget>
|
|
25 |
|
|
26 |
QT_BEGIN_NAMESPACE
|
|
27 |
|
|
28 |
class Ui_InputPage
|
|
29 |
{
|
|
30 |
public:
|
|
31 |
QGridLayout *gridLayout;
|
|
32 |
QSpacerItem *spacerItem;
|
|
33 |
QLabel *label;
|
|
34 |
QHBoxLayout *hboxLayout;
|
|
35 |
QLineEdit *fileLineEdit;
|
|
36 |
QToolButton *browseButton;
|
|
37 |
QSpacerItem *spacerItem1;
|
|
38 |
|
|
39 |
void setupUi(QWidget *InputPage)
|
|
40 |
{
|
|
41 |
if (InputPage->objectName().isEmpty())
|
|
42 |
InputPage->setObjectName(QString::fromUtf8("InputPage"));
|
|
43 |
InputPage->resize(417, 242);
|
|
44 |
gridLayout = new QGridLayout(InputPage);
|
|
45 |
gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
|
|
46 |
spacerItem = new QSpacerItem(20, 20, QSizePolicy::Minimum, QSizePolicy::Fixed);
|
|
47 |
|
|
48 |
gridLayout->addItem(spacerItem, 0, 2, 1, 1);
|
|
49 |
|
|
50 |
label = new QLabel(InputPage);
|
|
51 |
label->setObjectName(QString::fromUtf8("label"));
|
|
52 |
QSizePolicy sizePolicy(QSizePolicy::Maximum, QSizePolicy::Preferred);
|
|
53 |
sizePolicy.setHorizontalStretch(0);
|
|
54 |
sizePolicy.setVerticalStretch(0);
|
|
55 |
sizePolicy.setHeightForWidth(label->sizePolicy().hasHeightForWidth());
|
|
56 |
label->setSizePolicy(sizePolicy);
|
|
57 |
|
|
58 |
gridLayout->addWidget(label, 1, 0, 1, 1);
|
|
59 |
|
|
60 |
hboxLayout = new QHBoxLayout();
|
|
61 |
hboxLayout->setSpacing(0);
|
|
62 |
hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
|
|
63 |
fileLineEdit = new QLineEdit(InputPage);
|
|
64 |
fileLineEdit->setObjectName(QString::fromUtf8("fileLineEdit"));
|
|
65 |
|
|
66 |
hboxLayout->addWidget(fileLineEdit);
|
|
67 |
|
|
68 |
browseButton = new QToolButton(InputPage);
|
|
69 |
browseButton->setObjectName(QString::fromUtf8("browseButton"));
|
|
70 |
|
|
71 |
hboxLayout->addWidget(browseButton);
|
|
72 |
|
|
73 |
|
|
74 |
gridLayout->addLayout(hboxLayout, 1, 1, 1, 2);
|
|
75 |
|
|
76 |
spacerItem1 = new QSpacerItem(20, 31, QSizePolicy::Minimum, QSizePolicy::Expanding);
|
|
77 |
|
|
78 |
gridLayout->addItem(spacerItem1, 2, 1, 1, 1);
|
|
79 |
|
|
80 |
|
|
81 |
retranslateUi(InputPage);
|
|
82 |
|
|
83 |
QMetaObject::connectSlotsByName(InputPage);
|
|
84 |
} // setupUi
|
|
85 |
|
|
86 |
void retranslateUi(QWidget *InputPage)
|
|
87 |
{
|
|
88 |
InputPage->setWindowTitle(QApplication::translate("InputPage", "Form", 0, QApplication::UnicodeUTF8));
|
|
89 |
label->setText(QApplication::translate("InputPage", "File name:", 0, QApplication::UnicodeUTF8));
|
|
90 |
browseButton->setText(QApplication::translate("InputPage", "...", 0, QApplication::UnicodeUTF8));
|
|
91 |
} // retranslateUi
|
|
92 |
|
|
93 |
};
|
|
94 |
|
|
95 |
namespace Ui {
|
|
96 |
class InputPage: public Ui_InputPage {};
|
|
97 |
} // namespace Ui
|
|
98 |
|
|
99 |
QT_END_NAMESPACE
|
|
100 |
|
|
101 |
#endif // INPUTPAGE_H
|