1<ui version="4.0" > 2 <class>AddBookmarkDialog</class> 3 <widget class="QDialog" name="AddBookmarkDialog" > 4 <property name="geometry" > 5 <rect> 6 <x>0</x> 7 <y>0</y> 8 <width>240</width> 9 <height>168</height> 10 </rect> 11 </property> 12 <property name="windowTitle" > 13 <string>Add Bookmark</string> 14 </property> 15 <layout class="QVBoxLayout" name="verticalLayout" > 16 <item> 17 <widget class="QLabel" name="label" > 18 <property name="text" > 19 <string>Type a name for the bookmark, and choose where to keep it.</string> 20 </property> 21 <property name="textFormat" > 22 <enum>Qt::PlainText</enum> 23 </property> 24 <property name="wordWrap" > 25 <bool>true</bool> 26 </property> 27 </widget> 28 </item> 29 <item> 30 <widget class="QLineEdit" name="name" /> 31 </item> 32 <item> 33 <widget class="QComboBox" name="location" /> 34 </item> 35 <item> 36 <spacer name="verticalSpacer" > 37 <property name="orientation" > 38 <enum>Qt::Vertical</enum> 39 </property> 40 <property name="sizeHint" stdset="0" > 41 <size> 42 <width>20</width> 43 <height>2</height> 44 </size> 45 </property> 46 </spacer> 47 </item> 48 <item> 49 <widget class="QDialogButtonBox" name="buttonBox" > 50 <property name="orientation" > 51 <enum>Qt::Horizontal</enum> 52 </property> 53 <property name="standardButtons" > 54 <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set> 55 </property> 56 <property name="centerButtons" > 57 <bool>false</bool> 58 </property> 59 </widget> 60 </item> 61 </layout> 62 </widget> 63 <resources/> 64 <connections> 65 <connection> 66 <sender>buttonBox</sender> 67 <signal>accepted()</signal> 68 <receiver>AddBookmarkDialog</receiver> 69 <slot>accept()</slot> 70 <hints> 71 <hint type="sourcelabel" > 72 <x>248</x> 73 <y>254</y> 74 </hint> 75 <hint type="destinationlabel" > 76 <x>157</x> 77 <y>274</y> 78 </hint> 79 </hints> 80 </connection> 81 <connection> 82 <sender>buttonBox</sender> 83 <signal>rejected()</signal> 84 <receiver>AddBookmarkDialog</receiver> 85 <slot>reject()</slot> 86 <hints> 87 <hint type="sourcelabel" > 88 <x>316</x> 89 <y>260</y> 90 </hint> 91 <hint type="destinationlabel" > 92 <x>286</x> 93 <y>274</y> 94 </hint> 95 </hints> 96 </connection> 97 </connections> 98</ui> 99