1<?xml version="1.0" encoding="UTF-8"?>
2<ui version="4.0">
3 <class>ServerListDialog</class>
4 <widget class="QDialog" name="ServerListDialog">
5  <property name="geometry">
6   <rect>
7    <x>0</x>
8    <y>0</y>
9    <width>800</width>
10    <height>300</height>
11   </rect>
12  </property>
13  <property name="minimumSize">
14   <size>
15    <width>800</width>
16    <height>300</height>
17   </size>
18  </property>
19  <property name="maximumSize">
20   <size>
21    <width>800</width>
22    <height>300</height>
23   </size>
24  </property>
25  <property name="windowTitle">
26   <string>Server List</string>
27  </property>
28  <property name="styleSheet">
29   <string notr="true">QObject {font: 20px}</string>
30  </property>
31  <layout class="QGridLayout" name="gridLayout">
32   <item row="1" column="0">
33    <widget class="QDialogButtonBox" name="buttonBox">
34     <property name="styleSheet">
35      <string notr="true">QObject {font: bold 20px}</string>
36     </property>
37     <property name="orientation">
38      <enum>Qt::Horizontal</enum>
39     </property>
40     <property name="standardButtons">
41      <set>QDialogButtonBox::Ok</set>
42     </property>
43     <property name="centerButtons">
44      <bool>false</bool>
45     </property>
46    </widget>
47   </item>
48   <item row="0" column="0">
49    <widget class="QTreeWidget" name="treeWidget_serverList">
50     <property name="alternatingRowColors">
51      <bool>true</bool>
52     </property>
53     <property name="rootIsDecorated">
54      <bool>false</bool>
55     </property>
56     <column>
57      <property name="text">
58       <string>Server Name</string>
59      </property>
60     </column>
61     <column>
62      <property name="text">
63       <string>Country/Region</string>
64      </property>
65     </column>
66    </widget>
67   </item>
68  </layout>
69 </widget>
70 <resources/>
71 <connections>
72  <connection>
73   <sender>buttonBox</sender>
74   <signal>accepted()</signal>
75   <receiver>ServerListDialog</receiver>
76   <slot>accept()</slot>
77   <hints>
78    <hint type="sourcelabel">
79     <x>248</x>
80     <y>254</y>
81    </hint>
82    <hint type="destinationlabel">
83     <x>157</x>
84     <y>274</y>
85    </hint>
86   </hints>
87  </connection>
88  <connection>
89   <sender>buttonBox</sender>
90   <signal>rejected()</signal>
91   <receiver>ServerListDialog</receiver>
92   <slot>reject()</slot>
93   <hints>
94    <hint type="sourcelabel">
95     <x>316</x>
96     <y>260</y>
97    </hint>
98    <hint type="destinationlabel">
99     <x>286</x>
100     <y>274</y>
101    </hint>
102   </hints>
103  </connection>
104 </connections>
105</ui>
106