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