|
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
3
|
<ui version="4.0">
<class>ChatWindow</class>
|
|
4
5
|
<widget class="QMainWindow" name="ChatWindow">
<property name="geometry">
|
|
6
7
8
9
|
<rect>
<x>0</x>
<y>0</y>
<width>400</width>
|
|
10
|
<height>502</height>
|
|
11
12
|
</rect>
</property>
|
|
13
|
<property name="windowTitle">
|
|
14
|
<string>QChatClient</string>
|
|
15
|
</property>
|
|
16
17
18
19
20
21
22
23
24
25
26
|
<widget class="QWidget" name="centralWidget">
<property name="enabled">
<bool>true</bool>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<layout class="QGridLayout" name="gridLayout">
|
|
27
28
|
<item row="3" column="1">
<spacer name="horizontalSpacer">
|
|
29
|
<property name="orientation">
|
|
30
|
<enum>Qt::Horizontal</enum>
|
|
31
|
</property>
|
|
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
|
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item row="3" column="0">
<widget class="QPushButton" name="sendButton">
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="text">
<string>Send</string>
</property>
</widget>
</item>
<item row="0" column="0" colspan="2">
<widget class="QWidget" name="widget" native="true">
<layout class="QGridLayout" name="gridLayout_2">
<item row="0" column="0">
<widget class="QSplitter" name="splitter">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<widget class="ChatWidget" name="chatText">
<property name="readOnly">
<bool>true</bool>
</property>
</widget>
<widget class="chatInputText" name="inputText">
<property name="enabled">
<bool>true</bool>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Expanding" vsizetype="Ignored">
<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>
<property name="baseSize">
<size>
<width>0</width>
<height>0</height>
</size>
</property>
<property name="readOnly">
<bool>true</bool>
</property>
</widget>
</widget>
</item>
</layout>
|
|
101
|
</widget>
|
|
102
103
104
105
106
107
108
109
110
|
</item>
</layout>
</widget>
<widget class="QMenuBar" name="menuBar">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>400</width>
|
|
111
|
<height>26</height>
|
|
112
113
|
</rect>
</property>
|
|
114
115
116
117
118
119
120
|
<widget class="QMenu" name="menuChat">
<property name="title">
<string>Chat</string>
</property>
<addaction name="actionExit"/>
</widget>
<addaction name="menuChat"/>
|
|
121
|
</widget>
|
|
122
123
124
125
126
|
<action name="actionExit">
<property name="text">
<string>Exit</string>
</property>
</action>
|
|
127
|
</widget>
|
|
128
|
<layoutdefault spacing="6" margin="11"/>
|
|
129
130
131
132
133
134
|
<customwidgets>
<customwidget>
<class>ChatWidget</class>
<extends>QTextEdit</extends>
<header>chatwidget.h</header>
</customwidget>
|
|
135
136
137
138
139
|
<customwidget>
<class>chatInputText</class>
<extends>QTextEdit</extends>
<header>chatinputtext.h</header>
</customwidget>
|
|
140
|
</customwidgets>
|
|
141
142
143
|
<resources/>
<connections/>
</ui>
|