1<ui version="4.0" > 2 <class>CookiesDialog</class> 3 <widget class="QDialog" name="CookiesDialog" > 4 <property name="geometry" > 5 <rect> 6 <x>0</x> 7 <y>0</y> 8 <width>550</width> 9 <height>370</height> 10 </rect> 11 </property> 12 <property name="windowTitle" > 13 <string>Cookies</string> 14 </property> 15 <layout class="QGridLayout" > 16 <item row="0" column="0" > 17 <spacer> 18 <property name="orientation" > 19 <enum>Qt::Horizontal</enum> 20 </property> 21 <property name="sizeHint" stdset="0" > 22 <size> 23 <width>252</width> 24 <height>20</height> 25 </size> 26 </property> 27 </spacer> 28 </item> 29 <item row="0" column="1" > 30 <widget class="SearchLineEdit" name="search" /> 31 </item> 32 <item row="1" column="0" colspan="2" > 33 <widget class="EditTableView" name="cookiesTable" /> 34 </item> 35 <item row="2" column="0" colspan="2" > 36 <layout class="QHBoxLayout" > 37 <item> 38 <widget class="QPushButton" name="removeButton" > 39 <property name="text" > 40 <string>&Remove</string> 41 </property> 42 </widget> 43 </item> 44 <item> 45 <widget class="QPushButton" name="removeAllButton" > 46 <property name="text" > 47 <string>Remove &All Cookies</string> 48 </property> 49 </widget> 50 </item> 51 <item> 52 <spacer> 53 <property name="orientation" > 54 <enum>Qt::Horizontal</enum> 55 </property> 56 <property name="sizeHint" stdset="0" > 57 <size> 58 <width>40</width> 59 <height>20</height> 60 </size> 61 </property> 62 </spacer> 63 </item> 64 <item> 65 <widget class="QDialogButtonBox" name="buttonBox" > 66 <property name="standardButtons" > 67 <set>QDialogButtonBox::Ok</set> 68 </property> 69 </widget> 70 </item> 71 </layout> 72 </item> 73 </layout> 74 </widget> 75 <customwidgets> 76 <customwidget> 77 <class>SearchLineEdit</class> 78 <extends>QLineEdit</extends> 79 <header>searchlineedit.h</header> 80 </customwidget> 81 <customwidget> 82 <class>EditTableView</class> 83 <extends>QTableView</extends> 84 <header>edittableview.h</header> 85 </customwidget> 86 </customwidgets> 87 <resources/> 88 <connections> 89 <connection> 90 <sender>buttonBox</sender> 91 <signal>accepted()</signal> 92 <receiver>CookiesDialog</receiver> 93 <slot>accept()</slot> 94 <hints> 95 <hint type="sourcelabel" > 96 <x>472</x> 97 <y>329</y> 98 </hint> 99 <hint type="destinationlabel" > 100 <x>461</x> 101 <y>356</y> 102 </hint> 103 </hints> 104 </connection> 105 </connections> 106</ui> 107