1 | /******************************************************************************** |
2 | ** Form generated from reading UI file 'textrecordeditor.ui' |
3 | ** |
4 | ** Created by: Qt User Interface Compiler version 5.15.9 |
5 | ** |
6 | ** WARNING! All changes made in this file will be lost when recompiling UI file! |
7 | ********************************************************************************/ |
8 | |
9 | #ifndef UI_TEXTRECORDEDITOR_H |
10 | #define UI_TEXTRECORDEDITOR_H |
11 | |
12 | #include <QtCore/QVariant> |
13 | #include <QtWidgets/QApplication> |
14 | #include <QtWidgets/QComboBox> |
15 | #include <QtWidgets/QFormLayout> |
16 | #include <QtWidgets/QLabel> |
17 | #include <QtWidgets/QLineEdit> |
18 | #include <QtWidgets/QWidget> |
19 | |
20 | QT_BEGIN_NAMESPACE |
21 | |
22 | class Ui_TextRecordEditor |
23 | { |
24 | public: |
25 | QFormLayout *formLayout; |
26 | QLabel *label_5; |
27 | QLabel *label_7; |
28 | QLineEdit *text; |
29 | QLabel *label_6; |
30 | QLineEdit *locale; |
31 | QLabel *label; |
32 | QComboBox *encoding; |
33 | |
34 | void setupUi(QWidget *TextRecordEditor) |
35 | { |
36 | if (TextRecordEditor->objectName().isEmpty()) |
37 | TextRecordEditor->setObjectName(QString::fromUtf8(str: "TextRecordEditor" )); |
38 | TextRecordEditor->resize(w: 344, h: 115); |
39 | QSizePolicy sizePolicy(QSizePolicy::Expanding, QSizePolicy::Minimum); |
40 | sizePolicy.setHorizontalStretch(0); |
41 | sizePolicy.setVerticalStretch(0); |
42 | sizePolicy.setHeightForWidth(TextRecordEditor->sizePolicy().hasHeightForWidth()); |
43 | TextRecordEditor->setSizePolicy(sizePolicy); |
44 | formLayout = new QFormLayout(TextRecordEditor); |
45 | formLayout->setObjectName(QString::fromUtf8(str: "formLayout" )); |
46 | formLayout->setRowWrapPolicy(QFormLayout::WrapLongRows); |
47 | label_5 = new QLabel(TextRecordEditor); |
48 | label_5->setObjectName(QString::fromUtf8(str: "label_5" )); |
49 | |
50 | formLayout->setWidget(row: 0, role: QFormLayout::SpanningRole, widget: label_5); |
51 | |
52 | label_7 = new QLabel(TextRecordEditor); |
53 | label_7->setObjectName(QString::fromUtf8(str: "label_7" )); |
54 | |
55 | formLayout->setWidget(row: 1, role: QFormLayout::LabelRole, widget: label_7); |
56 | |
57 | text = new QLineEdit(TextRecordEditor); |
58 | text->setObjectName(QString::fromUtf8(str: "text" )); |
59 | QSizePolicy sizePolicy1(QSizePolicy::MinimumExpanding, QSizePolicy::Fixed); |
60 | sizePolicy1.setHorizontalStretch(0); |
61 | sizePolicy1.setVerticalStretch(0); |
62 | sizePolicy1.setHeightForWidth(text->sizePolicy().hasHeightForWidth()); |
63 | text->setSizePolicy(sizePolicy1); |
64 | |
65 | formLayout->setWidget(row: 1, role: QFormLayout::FieldRole, widget: text); |
66 | |
67 | label_6 = new QLabel(TextRecordEditor); |
68 | label_6->setObjectName(QString::fromUtf8(str: "label_6" )); |
69 | |
70 | formLayout->setWidget(row: 2, role: QFormLayout::LabelRole, widget: label_6); |
71 | |
72 | locale = new QLineEdit(TextRecordEditor); |
73 | locale->setObjectName(QString::fromUtf8(str: "locale" )); |
74 | sizePolicy1.setHeightForWidth(locale->sizePolicy().hasHeightForWidth()); |
75 | locale->setSizePolicy(sizePolicy1); |
76 | |
77 | formLayout->setWidget(row: 2, role: QFormLayout::FieldRole, widget: locale); |
78 | |
79 | label = new QLabel(TextRecordEditor); |
80 | label->setObjectName(QString::fromUtf8(str: "label" )); |
81 | |
82 | formLayout->setWidget(row: 3, role: QFormLayout::LabelRole, widget: label); |
83 | |
84 | encoding = new QComboBox(TextRecordEditor); |
85 | encoding->addItem(atext: QString()); |
86 | encoding->addItem(atext: QString()); |
87 | encoding->setObjectName(QString::fromUtf8(str: "encoding" )); |
88 | sizePolicy1.setHeightForWidth(encoding->sizePolicy().hasHeightForWidth()); |
89 | encoding->setSizePolicy(sizePolicy1); |
90 | |
91 | formLayout->setWidget(row: 3, role: QFormLayout::FieldRole, widget: encoding); |
92 | |
93 | |
94 | retranslateUi(TextRecordEditor); |
95 | |
96 | QMetaObject::connectSlotsByName(o: TextRecordEditor); |
97 | } // setupUi |
98 | |
99 | void retranslateUi(QWidget *TextRecordEditor) |
100 | { |
101 | TextRecordEditor->setWindowTitle(QCoreApplication::translate(context: "TextRecordEditor" , key: "Form" , disambiguation: nullptr)); |
102 | label_5->setText(QCoreApplication::translate(context: "TextRecordEditor" , key: "NFC Text Record" , disambiguation: nullptr)); |
103 | label_7->setText(QCoreApplication::translate(context: "TextRecordEditor" , key: "Text:" , disambiguation: nullptr)); |
104 | label_6->setText(QCoreApplication::translate(context: "TextRecordEditor" , key: "Locale:" , disambiguation: nullptr)); |
105 | locale->setText(QString()); |
106 | label->setText(QCoreApplication::translate(context: "TextRecordEditor" , key: "Encoding:" , disambiguation: nullptr)); |
107 | encoding->setItemText(index: 0, text: QCoreApplication::translate(context: "TextRecordEditor" , key: "UTF-8" , disambiguation: nullptr)); |
108 | encoding->setItemText(index: 1, text: QCoreApplication::translate(context: "TextRecordEditor" , key: "UTF-16" , disambiguation: nullptr)); |
109 | |
110 | } // retranslateUi |
111 | |
112 | }; |
113 | |
114 | namespace Ui { |
115 | class TextRecordEditor: public Ui_TextRecordEditor {}; |
116 | } // namespace Ui |
117 | |
118 | QT_END_NAMESPACE |
119 | |
120 | #endif // UI_TEXTRECORDEDITOR_H |
121 | |