Mon, 12 Nov 2012 19:04:11 +0100
Changed a bunch of forms to use the E5ClearableLineEdit and E5ClearableComboBox.
<?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>AdBlockExceptionsDialog</class> <widget class="QDialog" name="AdBlockExceptionsDialog"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>550</width> <height>450</height> </rect> </property> <property name="windowTitle"> <string>AdBlock Exceptions</string> </property> <property name="sizeGripEnabled"> <bool>true</bool> </property> <layout class="QVBoxLayout" name="verticalLayout"> <item> <layout class="QGridLayout" name="gridLayout"> <item row="0" column="0" rowspan="2"> <widget class="QLabel" name="iconLabel"> <property name="minimumSize"> <size> <width>48</width> <height>48</height> </size> </property> <property name="text"> <string notr="true">Icon</string> </property> </widget> </item> <item row="0" column="1"> <spacer name="horizontalSpacer"> <property name="orientation"> <enum>Qt::Horizontal</enum> </property> <property name="sizeHint" stdset="0"> <size> <width>188</width> <height>20</height> </size> </property> </spacer> </item> <item row="1" column="1"> <widget class="E5ClearableLineEdit" name="hostEdit"> <property name="toolTip"> <string>Enter a host to block AdBlock for</string> </property> </widget> </item> <item row="1" column="2"> <widget class="QPushButton" name="addButton"> <property name="enabled"> <bool>false</bool> </property> <property name="toolTip"> <string>Press to add the host</string> </property> <property name="text"> <string>&Add</string> </property> </widget> </item> <item row="2" column="0" rowspan="2" colspan="2"> <widget class="QListWidget" name="hostList"> <property name="alternatingRowColors"> <bool>true</bool> </property> <property name="sortingEnabled"> <bool>true</bool> </property> </widget> </item> <item row="2" column="2"> <widget class="QPushButton" name="deleteButton"> <property name="enabled"> <bool>false</bool> </property> <property name="toolTip"> <string>Press to delete the selected hosts</string> </property> <property name="text"> <string>&Delete</string> </property> </widget> </item> <item row="3" column="2"> <spacer name="verticalSpacer"> <property name="orientation"> <enum>Qt::Vertical</enum> </property> <property name="sizeHint" stdset="0"> <size> <width>20</width> <height>148</height> </size> </property> </spacer> </item> </layout> </item> <item> <widget class="QDialogButtonBox" name="buttonBox"> <property name="orientation"> <enum>Qt::Horizontal</enum> </property> <property name="standardButtons"> <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set> </property> </widget> </item> </layout> </widget> <customwidgets> <customwidget> <class>E5ClearableLineEdit</class> <extends>QLineEdit</extends> <header>E5Gui/E5LineEdit.h</header> </customwidget> </customwidgets> <tabstops> <tabstop>hostEdit</tabstop> <tabstop>addButton</tabstop> <tabstop>hostList</tabstop> <tabstop>deleteButton</tabstop> <tabstop>buttonBox</tabstop> </tabstops> <resources/> <connections> <connection> <sender>buttonBox</sender> <signal>accepted()</signal> <receiver>AdBlockExceptionsDialog</receiver> <slot>accept()</slot> <hints> <hint type="sourcelabel"> <x>248</x> <y>254</y> </hint> <hint type="destinationlabel"> <x>157</x> <y>274</y> </hint> </hints> </connection> <connection> <sender>buttonBox</sender> <signal>rejected()</signal> <receiver>AdBlockExceptionsDialog</receiver> <slot>reject()</slot> <hints> <hint type="sourcelabel"> <x>316</x> <y>260</y> </hint> <hint type="destinationlabel"> <x>286</x> <y>274</y> </hint> </hints> </connection> </connections> </ui>