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.15.5
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/QDialogButtonBox>
16#include <QtWidgets/QFrame>
17#include <QtWidgets/QGridLayout>
18#include <QtWidgets/QLabel>
19#include "Gui/Utils/Widgets/LineEdit.h"
20
21QT_BEGIN_NAMESPACE
22
24{
25public:
26 QGridLayout *gridLayout;
27 QFrame *line;
28 QLabel *labInfo;
29 QLabel *labHeader;
30 Gui::LineEdit *leInput;
31 QDialogButtonBox *buttonBox;
32
33 void setupUi(QDialog *LineInputDialog)
34 {
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);
45
46 gridLayout->addWidget(line, 3, 0, 1, 1);
47
48 labInfo = new QLabel(LineInputDialog);
49 labInfo->setObjectName(QString::fromUtf8("labInfo"));
50
51 gridLayout->addWidget(labInfo, 2, 0, 1, 1);
52
53 labHeader = new QLabel(LineInputDialog);
54 labHeader->setObjectName(QString::fromUtf8("labHeader"));
55 QFont font;
56 font.setBold(true);
57 font.setWeight(75);
58 labHeader->setFont(font);
59 labHeader->setText(QString::fromUtf8("Header Text"));
60
61 gridLayout->addWidget(labHeader, 0, 0, 1, 1);
62
63 leInput = new Gui::LineEdit(LineInputDialog);
64 leInput->setObjectName(QString::fromUtf8("leInput"));
65
66 gridLayout->addWidget(leInput, 1, 0, 1, 1);
67
68 buttonBox = new QDialogButtonBox(LineInputDialog);
69 buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
70 buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
71
72 gridLayout->addWidget(buttonBox, 4, 0, 1, 1);
73
74
75 retranslateUi(LineInputDialog);
76
77 QMetaObject::connectSlotsByName(LineInputDialog);
78 } // setupUi
79
80 void retranslateUi(QDialog *LineInputDialog)
81 {
82 labInfo->setText(QString());
83 (void)LineInputDialog;
84 } // retranslateUi
85
86};
87
88namespace Ui {
90} // namespace Ui
91
92QT_END_NAMESPACE
93
94#endif // UI_LINEINPUTDIALOG_H
GUI class for String fields meant to convert content to first upper case by a context menu.
Definition: LineEdit.h:41
Definition: ui_LineInputDialog.h:89
Definition: ui_LineInputDialog.h:24