diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2012-08-07 15:05:40 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2012-12-10 02:48:04 +0100 |
commit | bba7ddd2e05a548219dda89cdb5182f220f122d7 (patch) | |
tree | ef76e45f0f826476d27237ccb232e3891c25ae94 /src/cleardata.ui | |
parent | Add RekonqFactory to locally generate rekonq toolbars and menus by the (diff) | |
download | rekonq-bba7ddd2e05a548219dda89cdb5182f220f122d7.tar.xz |
Add actions to the web window, STEP 1 (the easiest ones...)
Diffstat (limited to 'src/cleardata.ui')
-rw-r--r-- | src/cleardata.ui | 129 |
1 files changed, 129 insertions, 0 deletions
diff --git a/src/cleardata.ui b/src/cleardata.ui new file mode 100644 index 00000000..2ceb3354 --- /dev/null +++ b/src/cleardata.ui @@ -0,0 +1,129 @@ +<?xml version="1.0" encoding="UTF-8"?> +<ui version="4.0"> + <class>ClearDataWidget</class> + <widget class="QWidget" name="ClearDataWidget"> + <property name="windowModality"> + <enum>Qt::WindowModal</enum> + </property> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>245</width> + <height>226</height> + </rect> + </property> + <property name="windowTitle"> + <string comment="@title:window">Clear Private Data</string> + </property> + <layout class="QVBoxLayout" name="verticalLayout"> + <item> + <widget class="QLabel" name="label"> + <property name="sizePolicy"> + <sizepolicy hsizetype="Fixed" vsizetype="Fixed"> + <horstretch>0</horstretch> + <verstretch>0</verstretch> + </sizepolicy> + </property> + <property name="text"> + <string><h3>Clear the following items:</h3></string> + </property> + </widget> + </item> + <item> + <spacer name="verticalSpacer_2"> + <property name="orientation"> + <enum>Qt::Vertical</enum> + </property> + <property name="sizeType"> + <enum>QSizePolicy::Fixed</enum> + </property> + <property name="sizeHint" stdset="0"> + <size> + <width>20</width> + <height>10</height> + </size> + </property> + </spacer> + </item> + <item> + <widget class="QCheckBox" name="clearHistory"> + <property name="text"> + <string>Visited pages history</string> + </property> + <property name="checked"> + <bool>true</bool> + </property> + </widget> + </item> + <item> + <widget class="QCheckBox" name="clearDownloads"> + <property name="text"> + <string>Downloads history</string> + </property> + <property name="checked"> + <bool>true</bool> + </property> + </widget> + </item> + <item> + <widget class="QCheckBox" name="clearCookies"> + <property name="text"> + <string>Cookies</string> + </property> + <property name="checked"> + <bool>true</bool> + </property> + </widget> + </item> + <item> + <widget class="QCheckBox" name="clearCachedPages"> + <property name="text"> + <string>Cached web pages</string> + </property> + <property name="checked"> + <bool>true</bool> + </property> + </widget> + </item> + <item> + <widget class="QCheckBox" name="clearWebIcons"> + <property name="text"> + <string>Website icons</string> + </property> + <property name="checked"> + <bool>true</bool> + </property> + </widget> + </item> + <item> + <widget class="QCheckBox" name="homePageThumbs"> + <property name="text"> + <string>Home page thumbs</string> + </property> + <property name="checked"> + <bool>true</bool> + </property> + </widget> + </item> + <item> + <spacer name="verticalSpacer"> + <property name="orientation"> + <enum>Qt::Vertical</enum> + </property> + <property name="sizeType"> + <enum>QSizePolicy::MinimumExpanding</enum> + </property> + <property name="sizeHint" stdset="0"> + <size> + <width>20</width> + <height>15</height> + </size> + </property> + </spacer> + </item> + </layout> + </widget> + <resources/> + <connections/> +</ui> |