|
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>449</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
27
|
<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">
<item row="1" column="0">
|
|
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
66
67
68
69
70
71
72
73
74
75
|
<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="QTextBrowser" name="chatText">
<property name="sizePolicy">
<sizepolicy hsizetype="Expanding" vsizetype="Ignored">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
</widget>
<widget class="QTextEdit" name="inputText">
<property name="enabled">
<bool>true</bool>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Expanding" vsizetype="Preferred">
<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>
</widget>
</item>
</layout>
</widget>
|
|
76
77
78
79
80
81
82
83
84
85
86
87
88
|
</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>
|
|
89
|
</widget>
|
|
90
|
<layoutdefault spacing="6" margin="11"/>
|
|
91
92
93
|
<resources/>
<connections/>
</ui>
|