blob: 256aadf859761f57ef9aab3dd25ba14cfcdc43dc [file] [log] [blame]
Alexander Afanasyevb4b92292013-07-09 13:54:59 -07001<?xml version="1.0" encoding="UTF-8"?>
Zhenkai Zhu6d589aa2012-05-29 17:34:35 -07002<ui version="4.0">
Alexander Afanasyevb4b92292013-07-09 13:54:59 -07003 <class>ChatDialog</class>
4 <widget class="QDialog" name="ChatDialog">
5 <property name="geometry">
6 <rect>
7 <x>0</x>
8 <y>0</y>
9 <width>838</width>
10 <height>600</height>
11 </rect>
12 </property>
13 <property name="windowTitle">
14 <string>ChronoChat -- Powered By ChronoSync</string>
15 </property>
16 <layout class="QVBoxLayout">
17 <property name="spacing">
18 <number>6</number>
19 </property>
20 <item>
21 <layout class="QHBoxLayout">
22 <property name="spacing">
23 <number>-1</number>
24 </property>
25 <item>
26 <layout class="QVBoxLayout">
27 <item>
28 <widget class="QLabel" name="infoLabel">
29 <property name="focusPolicy">
30 <enum>Qt::NoFocus</enum>
31 </property>
32 </widget>
33 </item>
34 <item>
Zhenkai Zhu55f9d112012-09-27 17:11:21 -070035 <layout class="QHBoxLayout">
Alexander Afanasyevb4b92292013-07-09 13:54:59 -070036 <item>
37 <widget class="QLabel" name="prefixLabel">
38 <property name="focusPolicy">
39 <enum>Qt::NoFocus</enum>
40 </property>
41 </widget>
42 </item>
Zhenkai Zhu6d589aa2012-05-29 17:34:35 -070043 </layout>
Alexander Afanasyevb4b92292013-07-09 13:54:59 -070044 </item>
45 </layout>
46 </item>
47 <item>
48 <spacer name="horizontalSpacer">
49 <property name="orientation">
50 <enum>Qt::Horizontal</enum>
51 </property>
52 <property name="sizeHint" stdset="0">
53 <size>
54 <width>40</width>
55 <height>20</height>
56 </size>
57 </property>
58 </spacer>
59 </item>
60 <item>
61 <layout class="QVBoxLayout">
62 <property name="sizeConstraint">
63 <enum>QLayout::SetFixedSize</enum>
64 </property>
65 <item>
Yingdi Yu7989eb22013-10-31 17:38:22 -070066 <widget class="QPushButton" name="inviteButton">
67 <property name="text">
68 <string>Invite</string>
69 </property>
70 <property name="autoDefault">
71 <bool>false</bool>
72 </property>
73 </widget>
74 </item>
75 <item>
Alexander Afanasyevb4b92292013-07-09 13:54:59 -070076 <widget class="QPushButton" name="treeButton">
77 <property name="enabled">
78 <bool>false</bool>
79 </property>
80 <property name="sizePolicy">
81 <sizepolicy hsizetype="Maximum" vsizetype="Fixed">
82 <horstretch>0</horstretch>
83 <verstretch>0</verstretch>
84 </sizepolicy>
85 </property>
86 <property name="minimumSize">
87 <size>
88 <width>200</width>
89 <height>0</height>
90 </size>
91 </property>
92 <property name="maximumSize">
93 <size>
94 <width>200</width>
95 <height>16777215</height>
96 </size>
97 </property>
98 <property name="focusPolicy">
99 <enum>Qt::NoFocus</enum>
100 </property>
101 <property name="text">
102 <string>Show ChronoSync Tree</string>
103 </property>
104 </widget>
105 </item>
106 </layout>
107 </item>
Zhenkai Zhu6d589aa2012-05-29 17:34:35 -0700108 </layout>
Alexander Afanasyevb4b92292013-07-09 13:54:59 -0700109 </item>
110 <item>
111 <layout class="QHBoxLayout">
112 <item>
113 <widget class="QListView" name="listView">
114 <property name="sizePolicy">
115 <sizepolicy hsizetype="Fixed" vsizetype="Expanding">
116 <horstretch>0</horstretch>
117 <verstretch>0</verstretch>
118 </sizepolicy>
119 </property>
120 <property name="font">
121 <font>
122 <pointsize>14</pointsize>
123 <weight>75</weight>
124 <bold>true</bold>
125 </font>
126 </property>
127 <property name="focusPolicy">
128 <enum>Qt::NoFocus</enum>
129 </property>
130 <property name="styleSheet">
131 <string notr="true">color: darkGreen;
132background: #F0F0F0;</string>
133 </property>
134 <property name="editTriggers">
135 <set>QAbstractItemView::NoEditTriggers</set>
136 </property>
137 <property name="showDropIndicator" stdset="0">
138 <bool>false</bool>
139 </property>
140 <property name="selectionMode">
141 <enum>QAbstractItemView::NoSelection</enum>
142 </property>
143 </widget>
144 </item>
145 <item>
146 <layout class="QVBoxLayout">
147 <item>
148 <widget class="QGraphicsView" name="treeViewer">
149 <property name="focusPolicy">
150 <enum>Qt::NoFocus</enum>
151 </property>
152 </widget>
153 </item>
154 <item>
155 <widget class="QTextEdit" name="textEdit">
156 <property name="focusPolicy">
157 <enum>Qt::NoFocus</enum>
158 </property>
159 <property name="readOnly">
160 <bool>true</bool>
161 </property>
162 </widget>
163 </item>
164 <item>
165 <layout class="QHBoxLayout">
166 <item>
167 <widget class="QLabel" name="label">
168 <property name="text">
169 <string>Message:</string>
170 </property>
171 </widget>
172 </item>
173 <item>
174 <widget class="QLineEdit" name="lineEdit"/>
175 </item>
176 </layout>
177 </item>
178 </layout>
179 </item>
180 </layout>
181 </item>
182 </layout>
183 </widget>
184 <resources/>
185 <connections/>
Zhenkai Zhu6d589aa2012-05-29 17:34:35 -0700186</ui>