|
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>false</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
95
96
97
98
99
100
101
102
103
104
105
|
<item row="1" column="0">
<widget class="QPushButton" name="sendButton">
<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>
|
|
106
107
|
</layout>
</widget>
|
|
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
|
<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"/>
<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">
<property name="text">
<string>Disconnect</string>
</property>
</action>
|
|
142
|
</widget>
|
|
143
144
145
146
147
148
|
<customwidgets>
<customwidget>
<class>ChatWidget</class>
<extends>QTextEdit</extends>
<header>chatwidget.h</header>
</customwidget>
|
|
149
150
151
152
153
|
<customwidget>
<class>chatInputText</class>
<extends>QTextEdit</extends>
<header>chatinputtext.h</header>
</customwidget>
|
|
154
|
</customwidgets>
|
|
155
156
157
|
<resources/>
<connections/>
</ui>
|