|
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
15
|
<string>ChatWindow</string>
</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
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
|
<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="QTextEdit" 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>
</widget>
|
|
66
|
</widget>
|
|
67
68
69
70
71
72
73
74
75
76
77
78
79
|
</item>
</layout>
</widget>
<widget class="QMenuBar" name="menuBar">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>400</width>
<height>25</height>
</rect>
</property>
</widget>
|
|
80
|
</widget>
|
|
81
|
<layoutdefault spacing="6" margin="11"/>
|
|
82
83
84
85
86
87
88
|
<customwidgets>
<customwidget>
<class>ChatWidget</class>
<extends>QTextEdit</extends>
<header>chatwidget.h</header>
</customwidget>
</customwidgets>
|
|
89
90
91
|
<resources/>
<connections/>
</ui>
|