Sayonara Player
ui_LineInputDialog.h
1 /********************************************************************************
2 ** Form generated from reading UI file 'LineInputDialog.ui'
3 **
4 ** Created by: Qt User Interface Compiler version 5.12.4
5 **
6 ** WARNING! All changes made in this file will be lost when recompiling UI file!
7 ********************************************************************************/
8 
9 #ifndef UI_LINEINPUTDIALOG_H
10 #define UI_LINEINPUTDIALOG_H
11 
12 #include <QtCore/QVariant>
13 #include <QtWidgets/QApplication>
14 #include <QtWidgets/QDialog>
15 #include <QtWidgets/QFrame>
16 #include <QtWidgets/QGridLayout>
17 #include <QtWidgets/QHBoxLayout>
18 #include <QtWidgets/QLabel>
19 #include <QtWidgets/QLineEdit>
20 #include <QtWidgets/QPushButton>
21 #include <QtWidgets/QSpacerItem>
22 
23 QT_BEGIN_NAMESPACE
24 
26 {
27 public:
28  QGridLayout *gridLayout;
29  QLabel *lab_info;
30  QLineEdit *le_input;
31  QFrame *line;
32  QHBoxLayout *horizontalLayout;
33  QSpacerItem *horizontalSpacer;
34  QPushButton *btn_cancel;
35  QPushButton *btn_ok;
36  QLabel *lab_header;
37 
38  void setupUi(QDialog *LineInputDialog)
39  {
40  if (LineInputDialog->objectName().isEmpty())
41  LineInputDialog->setObjectName(QString::fromUtf8("LineInputDialog"));
42  LineInputDialog->resize(401, 123);
43  gridLayout = new QGridLayout(LineInputDialog);
44  gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
45  lab_info = new QLabel(LineInputDialog);
46  lab_info->setObjectName(QString::fromUtf8("lab_info"));
47  lab_info->setText(QString::fromUtf8("Info Text"));
48 
49  gridLayout->addWidget(lab_info, 1, 0, 1, 1);
50 
51  le_input = new QLineEdit(LineInputDialog);
52  le_input->setObjectName(QString::fromUtf8("le_input"));
53 
54  gridLayout->addWidget(le_input, 2, 0, 1, 1);
55 
56  line = new QFrame(LineInputDialog);
57  line->setObjectName(QString::fromUtf8("line"));
58  line->setFrameShape(QFrame::HLine);
59  line->setFrameShadow(QFrame::Sunken);
60 
61  gridLayout->addWidget(line, 3, 0, 1, 1);
62 
63  horizontalLayout = new QHBoxLayout();
64  horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
65  horizontalSpacer = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
66 
67  horizontalLayout->addItem(horizontalSpacer);
68 
69  btn_cancel = new QPushButton(LineInputDialog);
70  btn_cancel->setObjectName(QString::fromUtf8("btn_cancel"));
71  btn_cancel->setText(QString::fromUtf8("Cancel"));
72 
73  horizontalLayout->addWidget(btn_cancel);
74 
75  btn_ok = new QPushButton(LineInputDialog);
76  btn_ok->setObjectName(QString::fromUtf8("btn_ok"));
77  btn_ok->setText(QString::fromUtf8("Ok"));
78 
79  horizontalLayout->addWidget(btn_ok);
80 
81 
82  gridLayout->addLayout(horizontalLayout, 4, 0, 1, 1);
83 
84  lab_header = new QLabel(LineInputDialog);
85  lab_header->setObjectName(QString::fromUtf8("lab_header"));
86  QFont font;
87  font.setBold(true);
88  font.setWeight(75);
89  lab_header->setFont(font);
90  lab_header->setText(QString::fromUtf8("Header Text"));
91 
92  gridLayout->addWidget(lab_header, 0, 0, 1, 1);
93 
94 
95  retranslateUi(LineInputDialog);
96 
97  QMetaObject::connectSlotsByName(LineInputDialog);
98  } // setupUi
99 
100  void retranslateUi(QDialog *LineInputDialog)
101  {
102  Q_UNUSED(LineInputDialog);
103  } // retranslateUi
104 
105 };
106 
107 namespace Ui {
109 } // namespace Ui
110 
111 QT_END_NAMESPACE
112 
113 #endif // UI_LINEINPUTDIALOG_H
Definition: ui_LineInputDialog.h:25
Definition: ui_LineInputDialog.h:108