1 | /******************************************************************************** |
2 | ** Form generated from reading UI file 'chatdialog.ui' |
3 | ** |
4 | ** Created by: Qt User Interface Compiler version 6.0.0 |
5 | ** |
6 | ** WARNING! All changes made in this file will be lost when recompiling UI file! |
7 | ********************************************************************************/ |
8 | |
9 | #ifndef UI_CHATDIALOG_H |
10 | #define UI_CHATDIALOG_H |
11 | |
12 | #include <QtCore/QVariant> |
13 | #include <QtWidgets/QApplication> |
14 | #include <QtWidgets/QDialog> |
15 | #include <QtWidgets/QHBoxLayout> |
16 | #include <QtWidgets/QLabel> |
17 | #include <QtWidgets/QLineEdit> |
18 | #include <QtWidgets/QListWidget> |
19 | #include <QtWidgets/QTextEdit> |
20 | #include <QtWidgets/QVBoxLayout> |
21 | |
22 | QT_BEGIN_NAMESPACE |
23 | |
24 | class Ui_ChatDialog |
25 | { |
26 | public: |
27 | QVBoxLayout *vboxLayout; |
28 | QHBoxLayout *hboxLayout; |
29 | QTextEdit *textEdit; |
30 | QListWidget *listWidget; |
31 | QHBoxLayout *hboxLayout1; |
32 | QLabel *label; |
33 | QLineEdit *lineEdit; |
34 | |
35 | void setupUi(QDialog *ChatDialog) |
36 | { |
37 | if (ChatDialog->objectName().isEmpty()) |
38 | ChatDialog->setObjectName(QString::fromUtf8("ChatDialog" )); |
39 | ChatDialog->resize(513, 349); |
40 | vboxLayout = new QVBoxLayout(ChatDialog); |
41 | #ifndef Q_OS_MAC |
42 | vboxLayout->setSpacing(6); |
43 | #endif |
44 | #ifndef Q_OS_MAC |
45 | vboxLayout->setContentsMargins(9, 9, 9, 9); |
46 | #endif |
47 | vboxLayout->setObjectName(QString::fromUtf8("vboxLayout" )); |
48 | hboxLayout = new QHBoxLayout(); |
49 | #ifndef Q_OS_MAC |
50 | hboxLayout->setSpacing(6); |
51 | #endif |
52 | #ifndef Q_OS_MAC |
53 | hboxLayout->setContentsMargins(0, 0, 0, 0); |
54 | #endif |
55 | hboxLayout->setObjectName(QString::fromUtf8("hboxLayout" )); |
56 | textEdit = new QTextEdit(ChatDialog); |
57 | textEdit->setObjectName(QString::fromUtf8("textEdit" )); |
58 | textEdit->setFocusPolicy(Qt::NoFocus); |
59 | textEdit->setReadOnly(true); |
60 | |
61 | hboxLayout->addWidget(textEdit); |
62 | |
63 | listWidget = new QListWidget(ChatDialog); |
64 | listWidget->setObjectName(QString::fromUtf8("listWidget" )); |
65 | listWidget->setMaximumSize(QSize(180, 16777215)); |
66 | listWidget->setFocusPolicy(Qt::NoFocus); |
67 | |
68 | hboxLayout->addWidget(listWidget); |
69 | |
70 | |
71 | vboxLayout->addLayout(hboxLayout); |
72 | |
73 | hboxLayout1 = new QHBoxLayout(); |
74 | #ifndef Q_OS_MAC |
75 | hboxLayout1->setSpacing(6); |
76 | #endif |
77 | hboxLayout1->setContentsMargins(0, 0, 0, 0); |
78 | hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1" )); |
79 | label = new QLabel(ChatDialog); |
80 | label->setObjectName(QString::fromUtf8("label" )); |
81 | |
82 | hboxLayout1->addWidget(label); |
83 | |
84 | lineEdit = new QLineEdit(ChatDialog); |
85 | lineEdit->setObjectName(QString::fromUtf8("lineEdit" )); |
86 | |
87 | hboxLayout1->addWidget(lineEdit); |
88 | |
89 | |
90 | vboxLayout->addLayout(hboxLayout1); |
91 | |
92 | |
93 | retranslateUi(ChatDialog); |
94 | |
95 | QMetaObject::connectSlotsByName(ChatDialog); |
96 | } // setupUi |
97 | |
98 | void retranslateUi(QDialog *ChatDialog) |
99 | { |
100 | ChatDialog->setWindowTitle(QCoreApplication::translate("ChatDialog" , "Chat" , nullptr)); |
101 | label->setText(QCoreApplication::translate("ChatDialog" , "Message:" , nullptr)); |
102 | } // retranslateUi |
103 | |
104 | }; |
105 | |
106 | namespace Ui { |
107 | class ChatDialog: public Ui_ChatDialog {}; |
108 | } // namespace Ui |
109 | |
110 | QT_END_NAMESPACE |
111 | |
112 | #endif // UI_CHATDIALOG_H |
113 | |