1 | /******************************************************************************** |
2 | ** Form generated from reading UI file 'dialog.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_DIALOG_H |
10 | #define UI_DIALOG_H |
11 | |
12 | #include <QtCore/QVariant> |
13 | #include <QtWidgets/QApplication> |
14 | #include <QtWidgets/QDialog> |
15 | #include <QtWidgets/QGridLayout> |
16 | #include <QtWidgets/QLineEdit> |
17 | #include <QtWidgets/QPlainTextEdit> |
18 | #include <QtWidgets/QPushButton> |
19 | |
20 | QT_BEGIN_NAMESPACE |
21 | |
22 | class Ui_Dialog |
23 | { |
24 | public: |
25 | QGridLayout *gridLayout; |
26 | QLineEdit *input; |
27 | QPushButton *send; |
28 | QPlainTextEdit *output; |
29 | |
30 | void setupUi(QDialog *Dialog) |
31 | { |
32 | if (Dialog->objectName().isEmpty()) |
33 | Dialog->setObjectName(QString::fromUtf8(str: "Dialog" )); |
34 | Dialog->resize(w: 400, h: 300); |
35 | gridLayout = new QGridLayout(Dialog); |
36 | gridLayout->setObjectName(QString::fromUtf8(str: "gridLayout" )); |
37 | input = new QLineEdit(Dialog); |
38 | input->setObjectName(QString::fromUtf8(str: "input" )); |
39 | |
40 | gridLayout->addWidget(input, row: 1, column: 0, rowSpan: 1, columnSpan: 1); |
41 | |
42 | send = new QPushButton(Dialog); |
43 | send->setObjectName(QString::fromUtf8(str: "send" )); |
44 | |
45 | gridLayout->addWidget(send, row: 1, column: 1, rowSpan: 1, columnSpan: 1); |
46 | |
47 | output = new QPlainTextEdit(Dialog); |
48 | output->setObjectName(QString::fromUtf8(str: "output" )); |
49 | output->setReadOnly(true); |
50 | output->setPlainText(QString::fromUtf8(str: "Initializing WebChannel..." )); |
51 | output->setBackgroundVisible(false); |
52 | |
53 | gridLayout->addWidget(output, row: 0, column: 0, rowSpan: 1, columnSpan: 2); |
54 | |
55 | |
56 | retranslateUi(Dialog); |
57 | |
58 | QMetaObject::connectSlotsByName(o: Dialog); |
59 | } // setupUi |
60 | |
61 | void retranslateUi(QDialog *Dialog) |
62 | { |
63 | Dialog->setWindowTitle(QCoreApplication::translate(context: "Dialog" , key: "Dialog" , disambiguation: nullptr)); |
64 | input->setPlaceholderText(QCoreApplication::translate(context: "Dialog" , key: "Message Contents" , disambiguation: nullptr)); |
65 | send->setText(QCoreApplication::translate(context: "Dialog" , key: "Send" , disambiguation: nullptr)); |
66 | } // retranslateUi |
67 | |
68 | }; |
69 | |
70 | namespace Ui { |
71 | class Dialog: public Ui_Dialog {}; |
72 | } // namespace Ui |
73 | |
74 | QT_END_NAMESPACE |
75 | |
76 | #endif // UI_DIALOG_H |
77 | |