1<?xml version="1.0" encoding="UTF-8"?> 2<ui version="4.0"> 3 <class>ServiceDiscovery</class> 4 <widget class="QDialog" name="ServiceDiscovery"> 5 <property name="geometry"> 6 <rect> 7 <x>0</x> 8 <y>0</y> 9 <width>400</width> 10 <height>300</height> 11 </rect> 12 </property> 13 <property name="windowTitle"> 14 <string>Available Services</string> 15 </property> 16 <layout class="QVBoxLayout" name="verticalLayout"> 17 <item> 18 <widget class="QListWidget" name="list"/> 19 </item> 20 <item> 21 <widget class="QLabel" name="status"> 22 <property name="text"> 23 <string>Querying...</string> 24 </property> 25 </widget> 26 </item> 27 <item> 28 <layout class="QHBoxLayout" name="horizontalLayout"> 29 <item> 30 <spacer name="horizontalSpacer"> 31 <property name="orientation"> 32 <enum>Qt::Horizontal</enum> 33 </property> 34 <property name="sizeHint" stdset="0"> 35 <size> 36 <width>40</width> 37 <height>20</height> 38 </size> 39 </property> 40 </spacer> 41 </item> 42 <item> 43 <widget class="QPushButton" name="close"> 44 <property name="text"> 45 <string>Close</string> 46 </property> 47 </widget> 48 </item> 49 </layout> 50 </item> 51 </layout> 52 </widget> 53 <tabstops> 54 <tabstop>list</tabstop> 55 <tabstop>close</tabstop> 56 </tabstops> 57 <resources/> 58 <connections> 59 <connection> 60 <sender>close</sender> 61 <signal>clicked()</signal> 62 <receiver>ServiceDiscovery</receiver> 63 <slot>accept()</slot> 64 <hints> 65 <hint type="sourcelabel"> 66 <x>350</x> 67 <y>277</y> 68 </hint> 69 <hint type="destinationlabel"> 70 <x>237</x> 71 <y>269</y> 72 </hint> 73 </hints> 74 </connection> 75 </connections> 76</ui> 77