Browse Source

- BUGFIX: Fix link to plugins.qbittorrent.org in plugins dialog

adaptive-webui-19844
Christophe Dumez 15 years ago
parent
commit
2dd5bccd49
  1. 77
      src/ui/engineselect.ui

77
src/ui/engineselect.ui

@ -1,7 +1,8 @@
<ui version="4.0" > <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>engineSelect</class> <class>engineSelect</class>
<widget class="QDialog" name="engineSelect" > <widget class="QDialog" name="engineSelect">
<property name="geometry" > <property name="geometry">
<rect> <rect>
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
@ -9,94 +10,100 @@
<height>254</height> <height>254</height>
</rect> </rect>
</property> </property>
<property name="acceptDrops" > <property name="acceptDrops">
<bool>true</bool> <bool>true</bool>
</property> </property>
<property name="windowTitle" > <property name="windowTitle">
<string>Search plugins</string> <string>Search plugins</string>
</property> </property>
<layout class="QVBoxLayout" > <layout class="QVBoxLayout">
<item> <item>
<widget class="QLabel" name="lbl_engines" > <widget class="QLabel" name="lbl_engines">
<property name="font" > <property name="font">
<font> <font>
<weight>75</weight> <weight>75</weight>
<bold>true</bold> <bold>true</bold>
<underline>true</underline> <underline>true</underline>
</font> </font>
</property> </property>
<property name="text" > <property name="text">
<string>Installed search engines:</string> <string>Installed search engines:</string>
</property> </property>
</widget> </widget>
</item> </item>
<item> <item>
<widget class="QTreeWidget" name="pluginsTree" > <widget class="QTreeWidget" name="pluginsTree">
<property name="contextMenuPolicy" > <property name="contextMenuPolicy">
<enum>Qt::CustomContextMenu</enum> <enum>Qt::CustomContextMenu</enum>
</property> </property>
<property name="selectionMode" > <property name="selectionMode">
<enum>QAbstractItemView::ExtendedSelection</enum> <enum>QAbstractItemView::ExtendedSelection</enum>
</property> </property>
<property name="uniformRowHeights" > <property name="uniformRowHeights">
<bool>true</bool> <bool>true</bool>
</property> </property>
<property name="itemsExpandable" > <property name="itemsExpandable">
<bool>false</bool> <bool>false</bool>
</property> </property>
<column> <column>
<property name="text" > <property name="text">
<string>Name</string> <string>Name</string>
</property> </property>
</column> </column>
<column> <column>
<property name="text" > <property name="text">
<string>Url</string> <string>Url</string>
</property> </property>
</column> </column>
<column> <column>
<property name="text" > <property name="text">
<string>Enabled</string> <string>Enabled</string>
</property> </property>
</column> </column>
<column> <column>
<property name="text" > <property name="text">
<string/> <string/>
</property> </property>
</column> </column>
</widget> </widget>
</item> </item>
<item> <item>
<widget class="QLabel" name="getNewEngine_lbl" > <widget class="QLabel" name="getNewEngine_lbl">
<property name="font" > <property name="font">
<font> <font>
<italic>true</italic> <italic>true</italic>
</font> </font>
</property> </property>
<property name="text" > <property name="text">
<string>You can get new search engine plugins here: &lt;a href="http:plugins.qbittorrent.org">http://plugins.qbittorrent.org&lt;/a></string> <string>You can get new search engine plugins here: &lt;a href=&quot;http://plugins.qbittorrent.org&quot;&gt;http://plugins.qbittorrent.org&lt;/a&gt;</string>
</property>
<property name="textFormat">
<enum>Qt::AutoText</enum>
</property>
<property name="openExternalLinks">
<bool>true</bool>
</property> </property>
</widget> </widget>
</item> </item>
<item> <item>
<layout class="QHBoxLayout" > <layout class="QHBoxLayout">
<item> <item>
<widget class="QPushButton" name="installButton" > <widget class="QPushButton" name="installButton">
<property name="text" > <property name="text">
<string>Install a new one</string> <string>Install a new one</string>
</property> </property>
</widget> </widget>
</item> </item>
<item> <item>
<widget class="QPushButton" name="updateButton" > <widget class="QPushButton" name="updateButton">
<property name="text" > <property name="text">
<string>Check for updates</string> <string>Check for updates</string>
</property> </property>
</widget> </widget>
</item> </item>
<item> <item>
<widget class="QPushButton" name="closeButton" > <widget class="QPushButton" name="closeButton">
<property name="text" > <property name="text">
<string>Close</string> <string>Close</string>
</property> </property>
</widget> </widget>
@ -104,18 +111,18 @@
</layout> </layout>
</item> </item>
</layout> </layout>
<action name="actionEnable" > <action name="actionEnable">
<property name="text" > <property name="text">
<string>Enable</string> <string>Enable</string>
</property> </property>
</action> </action>
<action name="actionDisable" > <action name="actionDisable">
<property name="text" > <property name="text">
<string>Disable</string> <string>Disable</string>
</property> </property>
</action> </action>
<action name="actionUninstall" > <action name="actionUninstall">
<property name="text" > <property name="text">
<string>Uninstall</string> <string>Uninstall</string>
</property> </property>
</action> </action>

Loading…
Cancel
Save