1<?xml version="1.0" encoding="UTF-8"?> 2<ui version="4.0"> 3 <class>DeviceDiscovery</class> 4 <widget class="QDialog" name="DeviceDiscovery"> 5 <property name="geometry"> 6 <rect> 7 <x>0</x> 8 <y>0</y> 9 <width>400</width> 10 <height>411</height> 11 </rect> 12 </property> 13 <property name="windowTitle"> 14 <string>Bluetooth Scanner</string> 15 </property> 16 <layout class="QVBoxLayout" name="verticalLayout"> 17 <item> 18 <widget class="QListWidget" name="list"/> 19 </item> 20 <item> 21 <widget class="QGroupBox" name="groupBox"> 22 <property name="title"> 23 <string>Local Device</string> 24 </property> 25 <layout class="QHBoxLayout" name="horizontalLayout_2"> 26 <item> 27 <widget class="QCheckBox" name="power"> 28 <property name="text"> 29 <string>Bluetooth Powered On</string> 30 </property> 31 <property name="checked"> 32 <bool>true</bool> 33 </property> 34 </widget> 35 </item> 36 <item> 37 <widget class="QCheckBox" name="discoverable"> 38 <property name="text"> 39 <string>Discoverable</string> 40 </property> 41 <property name="checked"> 42 <bool>true</bool> 43 </property> 44 </widget> 45 </item> 46 </layout> 47 </widget> 48 </item> 49 <item> 50 <widget class="QCheckBox" name="inquiryType"> 51 <property name="text"> 52 <string>General Unlimited Inquiry</string> 53 </property> 54 <property name="checked"> 55 <bool>true</bool> 56 </property> 57 </widget> 58 </item> 59 <item> 60 <layout class="QHBoxLayout" name="horizontalLayout"> 61 <item> 62 <widget class="QPushButton" name="scan"> 63 <property name="text"> 64 <string>Scan</string> 65 </property> 66 </widget> 67 </item> 68 <item> 69 <widget class="QPushButton" name="clear"> 70 <property name="text"> 71 <string>Clear</string> 72 </property> 73 </widget> 74 </item> 75 <item> 76 <widget class="QPushButton" name="quit"> 77 <property name="text"> 78 <string>Quit</string> 79 </property> 80 </widget> 81 </item> 82 </layout> 83 </item> 84 </layout> 85 </widget> 86 <resources/> 87 <connections> 88 <connection> 89 <sender>quit</sender> 90 <signal>clicked()</signal> 91 <receiver>DeviceDiscovery</receiver> 92 <slot>accept()</slot> 93 <hints> 94 <hint type="sourcelabel"> 95 <x>323</x> 96 <y>275</y> 97 </hint> 98 <hint type="destinationlabel"> 99 <x>396</x> 100 <y>268</y> 101 </hint> 102 </hints> 103 </connection> 104 <connection> 105 <sender>clear</sender> 106 <signal>clicked()</signal> 107 <receiver>list</receiver> 108 <slot>clear()</slot> 109 <hints> 110 <hint type="sourcelabel"> 111 <x>188</x> 112 <y>276</y> 113 </hint> 114 <hint type="destinationlabel"> 115 <x>209</x> 116 <y>172</y> 117 </hint> 118 </hints> 119 </connection> 120 </connections> 121</ui> 122