9 #ifndef UI_LINEINPUTDIALOG_H
10 #define UI_LINEINPUTDIALOG_H
12 #include <QtCore/QVariant>
13 #include <QtWidgets/QApplication>
14 #include <QtWidgets/QDialog>
15 #include <QtWidgets/QDialogButtonBox>
16 #include <QtWidgets/QFrame>
17 #include <QtWidgets/QGridLayout>
18 #include <QtWidgets/QLabel>
19 #include "Gui/Utils/Widgets/LineEdit.h"
26 QGridLayout *gridLayout;
31 QDialogButtonBox *buttonBox;
33 void setupUi(QDialog *LineInputDialog)
35 if (LineInputDialog->objectName().isEmpty())
36 LineInputDialog->setObjectName(QString::fromUtf8(
"LineInputDialog"));
37 LineInputDialog->resize(376, 142);
38 gridLayout =
new QGridLayout(LineInputDialog);
39 gridLayout->setObjectName(QString::fromUtf8(
"gridLayout"));
40 gridLayout->setVerticalSpacing(7);
41 line =
new QFrame(LineInputDialog);
42 line->setObjectName(QString::fromUtf8(
"line"));
43 line->setFrameShape(QFrame::HLine);
44 line->setFrameShadow(QFrame::Sunken);
46 gridLayout->addWidget(line, 3, 0, 1, 1);
48 labInfo =
new QLabel(LineInputDialog);
49 labInfo->setObjectName(QString::fromUtf8(
"labInfo"));
51 gridLayout->addWidget(labInfo, 2, 0, 1, 1);
53 labHeader =
new QLabel(LineInputDialog);
54 labHeader->setObjectName(QString::fromUtf8(
"labHeader"));
58 labHeader->setFont(font);
59 labHeader->setText(QString::fromUtf8(
"Header Text"));
61 gridLayout->addWidget(labHeader, 0, 0, 1, 1);
64 leInput->setObjectName(QString::fromUtf8(
"leInput"));
66 gridLayout->addWidget(leInput, 1, 0, 1, 1);
68 buttonBox =
new QDialogButtonBox(LineInputDialog);
69 buttonBox->setObjectName(QString::fromUtf8(
"buttonBox"));
70 buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
72 gridLayout->addWidget(buttonBox, 4, 0, 1, 1);
75 retranslateUi(LineInputDialog);
77 QMetaObject::connectSlotsByName(LineInputDialog);
80 void retranslateUi(QDialog *LineInputDialog)
82 labInfo->setText(QString());
83 (void)LineInputDialog;
94 #endif // UI_LINEINPUTDIALOG_H