1/********************************************************************************
2** Form generated from reading UI file 'chatdialog.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_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
22QT_BEGIN_NAMESPACE
23
24class Ui_ChatDialog
25{
26public:
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(str: "ChatDialog"));
39 ChatDialog->resize(w: 513, h: 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(left: 9, top: 9, right: 9, bottom: 9);
46#endif
47 vboxLayout->setObjectName(QString::fromUtf8(str: "vboxLayout"));
48 hboxLayout = new QHBoxLayout();
49#ifndef Q_OS_MAC
50 hboxLayout->setSpacing(6);
51#endif
52#ifndef Q_OS_MAC
53 hboxLayout->setContentsMargins(left: 0, top: 0, right: 0, bottom: 0);
54#endif
55 hboxLayout->setObjectName(QString::fromUtf8(str: "hboxLayout"));
56 textEdit = new QTextEdit(ChatDialog);
57 textEdit->setObjectName(QString::fromUtf8(str: "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(str: "listWidget"));
65 listWidget->setMaximumSize(QSize(180, 16777215));
66 listWidget->setFocusPolicy(Qt::NoFocus);
67
68 hboxLayout->addWidget(listWidget);
69
70
71 vboxLayout->addLayout(layout: hboxLayout);
72
73 hboxLayout1 = new QHBoxLayout();
74#ifndef Q_OS_MAC
75 hboxLayout1->setSpacing(6);
76#endif
77 hboxLayout1->setContentsMargins(left: 0, top: 0, right: 0, bottom: 0);
78 hboxLayout1->setObjectName(QString::fromUtf8(str: "hboxLayout1"));
79 label = new QLabel(ChatDialog);
80 label->setObjectName(QString::fromUtf8(str: "label"));
81
82 hboxLayout1->addWidget(label);
83
84 lineEdit = new QLineEdit(ChatDialog);
85 lineEdit->setObjectName(QString::fromUtf8(str: "lineEdit"));
86
87 hboxLayout1->addWidget(lineEdit);
88
89
90 vboxLayout->addLayout(layout: hboxLayout1);
91
92
93 retranslateUi(ChatDialog);
94
95 QMetaObject::connectSlotsByName(o: ChatDialog);
96 } // setupUi
97
98 void retranslateUi(QDialog *ChatDialog)
99 {
100 ChatDialog->setWindowTitle(QCoreApplication::translate(context: "ChatDialog", key: "Chat", disambiguation: nullptr));
101 label->setText(QCoreApplication::translate(context: "ChatDialog", key: "Message:", disambiguation: nullptr));
102 } // retranslateUi
103
104};
105
106namespace Ui {
107 class ChatDialog: public Ui_ChatDialog {};
108} // namespace Ui
109
110QT_END_NAMESPACE
111
112#endif // UI_CHATDIALOG_H
113

source code of qtbase/examples/network/network-chat/.uic/ui_chatdialog.h