1<ui version="4.0" > 2 <class>CookiesExceptionsDialog</class> 3 <widget class="QDialog" name="CookiesExceptionsDialog" > 4 <property name="geometry" > 5 <rect> 6 <x>0</x> 7 <y>0</y> 8 <width>466</width> 9 <height>446</height> 10 </rect> 11 </property> 12 <property name="windowTitle" > 13 <string>Cookie Exceptions</string> 14 </property> 15 <layout class="QVBoxLayout" > 16 <item> 17 <widget class="QGroupBox" name="newExceptionGroupBox" > 18 <property name="title" > 19 <string>New Exception</string> 20 </property> 21 <layout class="QGridLayout" > 22 <item row="0" column="0" > 23 <layout class="QHBoxLayout" > 24 <item> 25 <widget class="QLabel" name="label" > 26 <property name="text" > 27 <string>Domain:</string> 28 </property> 29 </widget> 30 </item> 31 <item> 32 <widget class="QLineEdit" name="domainLineEdit" /> 33 </item> 34 </layout> 35 </item> 36 <item row="1" column="0" > 37 <layout class="QHBoxLayout" > 38 <item> 39 <spacer> 40 <property name="orientation" > 41 <enum>Qt::Horizontal</enum> 42 </property> 43 <property name="sizeHint" stdset="0" > 44 <size> 45 <width>81</width> 46 <height>25</height> 47 </size> 48 </property> 49 </spacer> 50 </item> 51 <item> 52 <widget class="QPushButton" name="blockButton" > 53 <property name="enabled" > 54 <bool>false</bool> 55 </property> 56 <property name="text" > 57 <string>Block</string> 58 </property> 59 </widget> 60 </item> 61 <item> 62 <widget class="QPushButton" name="allowForSessionButton" > 63 <property name="enabled" > 64 <bool>false</bool> 65 </property> 66 <property name="text" > 67 <string>Allow For Session</string> 68 </property> 69 </widget> 70 </item> 71 <item> 72 <widget class="QPushButton" name="allowButton" > 73 <property name="enabled" > 74 <bool>false</bool> 75 </property> 76 <property name="text" > 77 <string>Allow</string> 78 </property> 79 </widget> 80 </item> 81 </layout> 82 </item> 83 </layout> 84 </widget> 85 </item> 86 <item> 87 <widget class="QGroupBox" name="ExceptionsGroupBox" > 88 <property name="title" > 89 <string>Exceptions</string> 90 </property> 91 <layout class="QGridLayout" > 92 <item row="0" column="0" colspan="3" > 93 <spacer> 94 <property name="orientation" > 95 <enum>Qt::Horizontal</enum> 96 </property> 97 <property name="sizeHint" stdset="0" > 98 <size> 99 <width>252</width> 100 <height>20</height> 101 </size> 102 </property> 103 </spacer> 104 </item> 105 <item row="0" column="3" > 106 <widget class="SearchLineEdit" name="search" /> 107 </item> 108 <item row="1" column="0" colspan="4" > 109 <widget class="EditTableView" name="exceptionTable" /> 110 </item> 111 <item row="2" column="0" > 112 <widget class="QPushButton" name="removeButton" > 113 <property name="text" > 114 <string>&Remove</string> 115 </property> 116 </widget> 117 </item> 118 <item row="2" column="1" > 119 <widget class="QPushButton" name="removeAllButton" > 120 <property name="text" > 121 <string>Remove &All</string> 122 </property> 123 </widget> 124 </item> 125 <item row="2" column="2" colspan="2" > 126 <spacer> 127 <property name="orientation" > 128 <enum>Qt::Horizontal</enum> 129 </property> 130 <property name="sizeHint" stdset="0" > 131 <size> 132 <width>40</width> 133 <height>20</height> 134 </size> 135 </property> 136 </spacer> 137 </item> 138 </layout> 139 </widget> 140 </item> 141 <item> 142 <widget class="QDialogButtonBox" name="buttonBox" > 143 <property name="orientation" > 144 <enum>Qt::Horizontal</enum> 145 </property> 146 <property name="standardButtons" > 147 <set>QDialogButtonBox::Ok</set> 148 </property> 149 </widget> 150 </item> 151 </layout> 152 </widget> 153 <customwidgets> 154 <customwidget> 155 <class>SearchLineEdit</class> 156 <extends>QLineEdit</extends> 157 <header>searchlineedit.h</header> 158 </customwidget> 159 <customwidget> 160 <class>EditTableView</class> 161 <extends>QTableView</extends> 162 <header>edittableview.h</header> 163 </customwidget> 164 </customwidgets> 165 <resources/> 166 <connections> 167 <connection> 168 <sender>buttonBox</sender> 169 <signal>accepted()</signal> 170 <receiver>CookiesExceptionsDialog</receiver> 171 <slot>accept()</slot> 172 <hints> 173 <hint type="sourcelabel" > 174 <x>381</x> 175 <y>428</y> 176 </hint> 177 <hint type="destinationlabel" > 178 <x>336</x> 179 <y>443</y> 180 </hint> 181 </hints> 182 </connection> 183 </connections> 184</ui> 185