diff options
author | Tobias Markmann <tm@ayena.de> | 2012-09-02 12:30:24 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2012-09-02 17:32:02 (GMT) |
commit | 10e368538ec36b6a5f0c115196fb1177d547a64a (patch) | |
tree | 3adf47ff4d72dcd80306e4f556aa1444357fa3c0 /Swift/QtUI/QtCertificateViewerDialog.ui | |
parent | abf10a2c0200819f6bb99366220f4c7566c01028 (diff) | |
download | swift-contrib-10e368538ec36b6a5f0c115196fb1177d547a64a.zip swift-contrib-10e368538ec36b6a5f0c115196fb1177d547a64a.tar.bz2 |
Adding Qt based certificate viewer as fallback for Linux.
License: This patch is BSD-licensed, see http://www.opensource.org/licenses/bsd-license.php
Diffstat (limited to 'Swift/QtUI/QtCertificateViewerDialog.ui')
-rw-r--r-- | Swift/QtUI/QtCertificateViewerDialog.ui | 131 |
1 files changed, 131 insertions, 0 deletions
diff --git a/Swift/QtUI/QtCertificateViewerDialog.ui b/Swift/QtUI/QtCertificateViewerDialog.ui new file mode 100644 index 0000000..63a96bf --- /dev/null +++ b/Swift/QtUI/QtCertificateViewerDialog.ui @@ -0,0 +1,131 @@ +<?xml version="1.0" encoding="UTF-8"?> +<ui version="4.0"> + <class>QtCertificateViewerDialog</class> + <widget class="QDialog" name="QtCertificateViewerDialog"> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>655</width> + <height>514</height> + </rect> + </property> + <property name="windowTitle"> + <string>Certificate Viewer</string> + </property> + <property name="sizeGripEnabled"> + <bool>true</bool> + </property> + <layout class="QGridLayout" name="gridLayout" rowstretch="0,0,0,0"> + <item row="3" column="0"> + <widget class="QDialogButtonBox" name="buttonBox"> + <property name="orientation"> + <enum>Qt::Horizontal</enum> + </property> + <property name="standardButtons"> + <set>QDialogButtonBox::Ok</set> + </property> + </widget> + </item> + <item row="1" column="0"> + <widget class="QScrollArea" name="scrollArea"> + <property name="autoFillBackground"> + <bool>false</bool> + </property> + <property name="horizontalScrollBarPolicy"> + <enum>Qt::ScrollBarAlwaysOff</enum> + </property> + <property name="widgetResizable"> + <bool>true</bool> + </property> + <widget class="QWidget" name="scrollAreaWidgetContents"> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>629</width> + <height>368</height> + </rect> + </property> + <layout class="QVBoxLayout" name="verticalLayout"> + <item> + <layout class="QGridLayout" name="certGridLayout"/> + </item> + </layout> + </widget> + </widget> + </item> + <item row="0" column="0"> + <widget class="QTreeWidget" name="certChainTreeWidget"> + <property name="maximumSize"> + <size> + <width>16777215</width> + <height>70</height> + </size> + </property> + <property name="editTriggers"> + <set>QAbstractItemView::NoEditTriggers</set> + </property> + <property name="showDropIndicator" stdset="0"> + <bool>false</bool> + </property> + <property name="dragEnabled"> + <bool>false</bool> + </property> + <property name="rootIsDecorated"> + <bool>false</bool> + </property> + <property name="itemsExpandable"> + <bool>false</bool> + </property> + <property name="expandsOnDoubleClick"> + <bool>false</bool> + </property> + <attribute name="headerVisible"> + <bool>false</bool> + </attribute> + <column> + <property name="text"> + <string notr="true">1</string> + </property> + </column> + </widget> + </item> + </layout> + </widget> + <resources/> + <connections> + <connection> + <sender>buttonBox</sender> + <signal>accepted()</signal> + <receiver>QtCertificateViewerDialog</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>QtCertificateViewerDialog</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> |