diff options
| -rw-r--r-- | src/clicktoflash.cpp | 2 | ||||
| -rw-r--r-- | src/settings/settings_webkit.ui | 74 | 
2 files changed, 64 insertions, 12 deletions
| diff --git a/src/clicktoflash.cpp b/src/clicktoflash.cpp index 4ec1a9c1..b6ea1093 100644 --- a/src/clicktoflash.cpp +++ b/src/clicktoflash.cpp @@ -71,7 +71,7 @@ ClickToFlash::ClickToFlash(QUrl pluginUrl, QWidget *parent)      QToolButton *button = new QToolButton(this);      button->setPopupMode(QToolButton::InstantPopup);      button->setToolButtonStyle(Qt::ToolButtonTextBesideIcon); -    button->setText(i18n("Load animation")); +    button->setText(i18n("Load Plugin"));      button->setAutoRaise(false);      layout()->addWidget(button);      connect(button, SIGNAL(clicked(bool)), this, SLOT(load())); diff --git a/src/settings/settings_webkit.ui b/src/settings/settings_webkit.ui index c59dc9c3..2a0799dd 100644 --- a/src/settings/settings_webkit.ui +++ b/src/settings/settings_webkit.ui @@ -24,13 +24,6 @@          </property>         </widget>        </item> -      <item row="0" column="2" rowspan="6"> -       <widget class="Line" name="line"> -        <property name="orientation"> -         <enum>Qt::Vertical</enum> -        </property> -       </widget> -      </item>        <item row="0" column="3">         <widget class="QCheckBox" name="kcfg_linksIncludedInFocusChain">          <property name="text"> @@ -40,6 +33,12 @@        </item>        <item row="1" column="0" colspan="2">         <widget class="QCheckBox" name="kcfg_javascriptEnabled"> +        <property name="sizePolicy"> +         <sizepolicy hsizetype="Minimum" vsizetype="Fixed"> +          <horstretch>0</horstretch> +          <verstretch>0</verstretch> +         </sizepolicy> +        </property>          <property name="text">           <string>JavaScript support</string>          </property> @@ -101,21 +100,74 @@          </property>         </widget>        </item> -      <item row="5" column="0"> +      <item row="0" column="2" rowspan="6"> +       <widget class="Line" name="line"> +        <property name="sizePolicy"> +         <sizepolicy hsizetype="Expanding" vsizetype="Minimum"> +          <horstretch>0</horstretch> +          <verstretch>0</verstretch> +         </sizepolicy> +        </property> +        <property name="orientation"> +         <enum>Qt::Vertical</enum> +        </property> +       </widget> +      </item> +     </layout> +    </widget> +   </item> +   <item> +    <widget class="QGroupBox" name="groupBox_3"> +     <property name="enabled"> +      <bool>true</bool> +     </property> +     <property name="sizePolicy"> +      <sizepolicy hsizetype="Preferred" vsizetype="Preferred"> +       <horstretch>0</horstretch> +       <verstretch>0</verstretch> +      </sizepolicy> +     </property> +     <property name="title"> +      <string>Plugin Settings</string> +     </property> +     <layout class="QHBoxLayout" name="horizontalLayout_2"> +      <item> +       <widget class="QLabel" name="label_2"> +        <property name="enabled"> +         <bool>true</bool> +        </property> +        <property name="sizePolicy"> +         <sizepolicy hsizetype="Minimum" vsizetype="Minimum"> +          <horstretch>0</horstretch> +          <verstretch>0</verstretch> +         </sizepolicy> +        </property> +        <property name="text"> +         <string>Some descriptive text here:</string> +        </property> +       </widget> +      </item> +      <item>         <widget class="QComboBox" name="kcfg_pluginsEnabled"> +        <property name="sizePolicy"> +         <sizepolicy hsizetype="Expanding" vsizetype="Minimum"> +          <horstretch>0</horstretch> +          <verstretch>0</verstretch> +         </sizepolicy> +        </property>          <item>           <property name="text"> -          <string>Autoload plugins</string> +          <string>Autoload Plugins</string>           </property>          </item>          <item>           <property name="text"> -          <string>Manually load plugins</string> +          <string>Manually Load Plugins</string>           </property>          </item>          <item>           <property name="text"> -          <string>Never load plugins</string> +          <string>Never Load Plugins</string>           </property>          </item>         </widget> | 
