ui_chatroomselect.h
5.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
/********************************************************************************
** Form generated from reading UI file 'chatroomselect.ui'
**
** Created by: Qt User Interface Compiler version 5.0.2
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
********************************************************************************/
#ifndef UI_CHATROOMSELECT_H
#define UI_CHATROOMSELECT_H
#include <QtCore/QVariant>
#include <QtWidgets/QAction>
#include <QtWidgets/QApplication>
#include <QtWidgets/QButtonGroup>
#include <QtWidgets/QColumnView>
#include <QtWidgets/QDialog>
#include <QtWidgets/QGridLayout>
#include <QtWidgets/QHeaderView>
#include <QtWidgets/QLabel>
#include <QtWidgets/QPushButton>
#include <QtWidgets/QSpacerItem>
#include <QtWidgets/QWidget>
QT_BEGIN_NAMESPACE
class Ui_ChatroomSelect
{
public:
QGridLayout *gridLayout;
QSpacerItem *listVertSpacer;
QWidget *buttonBox;
QGridLayout *gridLayout_3;
QPushButton *okButton;
QPushButton *cancelButton;
QSpacerItem *buttonHorizSpacer;
QSpacerItem *topSpacer;
QSpacerItem *leftSpacer;
QColumnView *chatroomList;
QLabel *titleLabel;
QWidget *roomButtonBox;
QGridLayout *gridLayout_2;
QPushButton *editButton;
QPushButton *removeButton;
QPushButton *addButton;
QSpacerItem *buttonVertSpacer;
QSpacerItem *listHorizSpacer;
void setupUi(QDialog *ChatroomSelect)
{
if (ChatroomSelect->objectName().isEmpty())
ChatroomSelect->setObjectName(QStringLiteral("ChatroomSelect"));
ChatroomSelect->resize(555, 379);
QSizePolicy sizePolicy(QSizePolicy::Minimum, QSizePolicy::Minimum);
sizePolicy.setHorizontalStretch(0);
sizePolicy.setVerticalStretch(0);
sizePolicy.setHeightForWidth(ChatroomSelect->sizePolicy().hasHeightForWidth());
ChatroomSelect->setSizePolicy(sizePolicy);
gridLayout = new QGridLayout(ChatroomSelect);
gridLayout->setObjectName(QStringLiteral("gridLayout"));
listVertSpacer = new QSpacerItem(20, 5, QSizePolicy::Minimum, QSizePolicy::Fixed);
gridLayout->addItem(listVertSpacer, 2, 1, 1, 1);
buttonBox = new QWidget(ChatroomSelect);
buttonBox->setObjectName(QStringLiteral("buttonBox"));
gridLayout_3 = new QGridLayout(buttonBox);
gridLayout_3->setObjectName(QStringLiteral("gridLayout_3"));
okButton = new QPushButton(buttonBox);
okButton->setObjectName(QStringLiteral("okButton"));
gridLayout_3->addWidget(okButton, 0, 1, 1, 1);
cancelButton = new QPushButton(buttonBox);
cancelButton->setObjectName(QStringLiteral("cancelButton"));
gridLayout_3->addWidget(cancelButton, 0, 2, 1, 1);
buttonHorizSpacer = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
gridLayout_3->addItem(buttonHorizSpacer, 0, 0, 1, 1);
gridLayout->addWidget(buttonBox, 5, 1, 1, 3);
topSpacer = new QSpacerItem(20, 5, QSizePolicy::Minimum, QSizePolicy::Fixed);
gridLayout->addItem(topSpacer, 0, 1, 1, 1);
leftSpacer = new QSpacerItem(10, 20, QSizePolicy::Fixed, QSizePolicy::Minimum);
gridLayout->addItem(leftSpacer, 3, 0, 1, 1);
chatroomList = new QColumnView(ChatroomSelect);
chatroomList->setObjectName(QStringLiteral("chatroomList"));
gridLayout->addWidget(chatroomList, 3, 1, 1, 1);
titleLabel = new QLabel(ChatroomSelect);
titleLabel->setObjectName(QStringLiteral("titleLabel"));
gridLayout->addWidget(titleLabel, 1, 1, 1, 1);
roomButtonBox = new QWidget(ChatroomSelect);
roomButtonBox->setObjectName(QStringLiteral("roomButtonBox"));
gridLayout_2 = new QGridLayout(roomButtonBox);
gridLayout_2->setObjectName(QStringLiteral("gridLayout_2"));
editButton = new QPushButton(roomButtonBox);
editButton->setObjectName(QStringLiteral("editButton"));
gridLayout_2->addWidget(editButton, 1, 0, 1, 1);
removeButton = new QPushButton(roomButtonBox);
removeButton->setObjectName(QStringLiteral("removeButton"));
gridLayout_2->addWidget(removeButton, 2, 0, 1, 1);
addButton = new QPushButton(roomButtonBox);
addButton->setObjectName(QStringLiteral("addButton"));
gridLayout_2->addWidget(addButton, 0, 0, 1, 1);
buttonVertSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding);
gridLayout_2->addItem(buttonVertSpacer, 3, 0, 1, 1);
gridLayout->addWidget(roomButtonBox, 3, 3, 1, 1);
listHorizSpacer = new QSpacerItem(5, 20, QSizePolicy::Fixed, QSizePolicy::Minimum);
gridLayout->addItem(listHorizSpacer, 3, 2, 1, 1);
retranslateUi(ChatroomSelect);
QMetaObject::connectSlotsByName(ChatroomSelect);
} // setupUi
void retranslateUi(QDialog *ChatroomSelect)
{
ChatroomSelect->setWindowTitle(QApplication::translate("ChatroomSelect", "Dialog", 0));
okButton->setText(QApplication::translate("ChatroomSelect", "OK", 0));
cancelButton->setText(QApplication::translate("ChatroomSelect", "Cancel", 0));
titleLabel->setText(QApplication::translate("ChatroomSelect", "Select one chatroom from the list:", 0));
editButton->setText(QApplication::translate("ChatroomSelect", "Edit", 0));
removeButton->setText(QApplication::translate("ChatroomSelect", "Delete", 0));
addButton->setText(QApplication::translate("ChatroomSelect", "Add", 0));
} // retranslateUi
};
namespace Ui {
class ChatroomSelect: public Ui_ChatroomSelect {};
} // namespace Ui
QT_END_NAMESPACE
#endif // UI_CHATROOMSELECT_H