|
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>Chatroom</class>
<widget class="QMainWindow" name="Chatroom">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>800</width>
<height>600</height>
</rect>
</property>
<property name="windowTitle">
|
|
14
|
<string>QChatClient</string>
|
|
15
|
</property>
|
|
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
|
<widget class="QWidget" name="centralwidget">
<layout class="QGridLayout" name="gridLayout_2">
<item row="0" column="0">
<widget class="QSplitter" name="windowSplitter">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<widget class="QWidget" name="chatWindow" native="true">
<layout class="QGridLayout" name="gridLayout">
<property name="leftMargin">
<number>0</number>
</property>
<property name="topMargin">
<number>0</number>
</property>
<property name="rightMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<property name="spacing">
<number>0</number>
</property>
<item row="0" column="0">
<widget class="QSplitter" name="chatSplitter">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<widget class="ChatWidget" name="chatText">
<property name="readOnly">
|
|
47
|
<bool>true</bool>
|
|
48
49
|
</property>
</widget>
|
|
50
|
<widget class="chatInputText" name="inputText">
|
|
51
52
53
54
55
56
57
58
59
60
61
62
|
<property name="sizePolicy">
<sizepolicy hsizetype="Expanding" vsizetype="Ignored">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="maximumSize">
<size>
<width>16777215</width>
<height>16777215</height>
</size>
</property>
|
|
63
64
65
|
<property name="readOnly">
<bool>true</bool>
</property>
|
|
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
|
</widget>
</widget>
</item>
</layout>
</widget>
<widget class="QListWidget" name="userList">
<property name="sizePolicy">
<sizepolicy hsizetype="Ignored" vsizetype="Expanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>0</width>
<height>0</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>16777215</width>
<height>16777215</height>
</size>
</property>
</widget>
</widget>
</item>
|
|
93
94
|
<item row="1" column="0">
<widget class="QPushButton" name="sendButton">
|
|
95
96
97
|
<property name="enabled">
<bool>false</bool>
</property>
|
|
98
99
100
101
102
103
104
105
106
107
108
|
<property name="sizePolicy">
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="text">
<string>Send</string>
</property>
</widget>
</item>
|
|
109
110
|
</layout>
</widget>
|
|
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
<widget class="QMenuBar" name="menuBar">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>800</width>
<height>26</height>
</rect>
</property>
<widget class="QMenu" name="menuChat">
<property name="title">
<string>Chat</string>
</property>
<addaction name="actionConnect"/>
<addaction name="actionDisconnect"/>
|
|
126
|
<addaction name="actionSave_chat"/>
|
|
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
|
<addaction name="actionExit"/>
</widget>
<addaction name="menuChat"/>
</widget>
<action name="actionConnect">
<property name="text">
<string>Connect...</string>
</property>
</action>
<action name="actionExit">
<property name="text">
<string>Exit</string>
</property>
</action>
<action name="actionDisconnect">
|
|
142
143
144
|
<property name="enabled">
<bool>false</bool>
</property>
|
|
145
146
147
148
|
<property name="text">
<string>Disconnect</string>
</property>
</action>
|
|
149
150
151
152
153
|
<action name="actionSave_chat">
<property name="text">
<string>Save chat...</string>
</property>
</action>
|
|
154
|
</widget>
|
|
155
156
157
158
159
160
|
<customwidgets>
<customwidget>
<class>ChatWidget</class>
<extends>QTextEdit</extends>
<header>chatwidget.h</header>
</customwidget>
|
|
161
162
163
164
165
|
<customwidget>
<class>chatInputText</class>
<extends>QTextEdit</extends>
<header>chatinputtext.h</header>
</customwidget>
|
|
166
|
</customwidgets>
|
|
167
168
169
170
171
172
|
<tabstops>
<tabstop>chatText</tabstop>
<tabstop>inputText</tabstop>
<tabstop>userList</tabstop>
<tabstop>sendButton</tabstop>
</tabstops>
|
|
173
174
175
|
<resources/>
<connections/>
</ui>
|