Mon, 13 Aug 2012 20:01:04 +0200
Added support for variable AdBlock update periods (given in subscription) to the web browser.
<?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>AdBlockDialog</class> <widget class="QDialog" name="AdBlockDialog"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>650</width> <height>600</height> </rect> </property> <property name="windowTitle"> <string>AdBlock Configuration</string> </property> <property name="sizeGripEnabled"> <bool>true</bool> </property> <layout class="QVBoxLayout" name="verticalLayout_2"> <item> <widget class="QGroupBox" name="adBlockGroup"> <property name="title"> <string>Enable AdBlock</string> </property> <property name="checkable"> <bool>true</bool> </property> <layout class="QVBoxLayout" name="verticalLayout"> <item> <layout class="QGridLayout" name="gridLayout"> <property name="horizontalSpacing"> <number>20</number> </property> <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>40</width> <height>20</height> </size> </property> </spacer> </item> <item row="1" column="1"> <widget class="E5LineEdit" name="searchEdit"> <property name="toolTip"> <string>Enter search term for subscriptions and rules</string> </property> </widget> </item> </layout> </item> <item> <widget class="QTabWidget" name="subscriptionsTabWidget"> <property name="documentMode"> <bool>true</bool> </property> </widget> </item> <item> <layout class="QHBoxLayout" name="horizontalLayout"> <item> <widget class="QToolButton" name="actionButton"> <property name="text"> <string>Actions</string> </property> </widget> </item> <item> <spacer name="horizontalSpacer_2"> <property name="orientation"> <enum>Qt::Horizontal</enum> </property> <property name="sizeHint" stdset="0"> <size> <width>40</width> <height>20</height> </size> </property> </spacer> </item> <item> <widget class="QLabel" name="label"> <property name="text"> <string>Default Update Period (days):</string> </property> </widget> </item> <item> <widget class="QSpinBox" name="updateSpinBox"> <property name="toolTip"> <string>Enter the update period (1 to 14 days)</string> </property> <property name="alignment"> <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set> </property> <property name="suffix"> <string/> </property> <property name="minimum"> <number>1</number> </property> <property name="maximum"> <number>14</number> </property> <property name="value"> <number>7</number> </property> </widget> </item> </layout> </item> </layout> </widget> </item> <item> <widget class="QDialogButtonBox" name="buttonBox"> <property name="orientation"> <enum>Qt::Horizontal</enum> </property> <property name="standardButtons"> <set>QDialogButtonBox::Close</set> </property> </widget> </item> </layout> </widget> <customwidgets> <customwidget> <class>E5LineEdit</class> <extends>QLineEdit</extends> <header>E5Gui/E5LineEdit.h</header> </customwidget> </customwidgets> <tabstops> <tabstop>adBlockGroup</tabstop> <tabstop>searchEdit</tabstop> <tabstop>subscriptionsTabWidget</tabstop> <tabstop>actionButton</tabstop> <tabstop>updateSpinBox</tabstop> <tabstop>buttonBox</tabstop> </tabstops> <resources/> <connections> <connection> <sender>buttonBox</sender> <signal>accepted()</signal> <receiver>AdBlockDialog</receiver> <slot>accept()</slot> <hints> <hint type="sourcelabel"> <x>252</x> <y>445</y> </hint> <hint type="destinationlabel"> <x>157</x> <y>274</y> </hint> </hints> </connection> <connection> <sender>buttonBox</sender> <signal>rejected()</signal> <receiver>AdBlockDialog</receiver> <slot>reject()</slot> <hints> <hint type="sourcelabel"> <x>320</x> <y>445</y> </hint> <hint type="destinationlabel"> <x>286</x> <y>274</y> </hint> </hints> </connection> </connections> </ui>