diff options
| author | Felix (xq) Queißner <git@mq32.de> | 2020-06-22 21:10:04 +0200 |
|---|---|---|
| committer | Felix (xq) Queißner <git@mq32.de> | 2020-06-22 21:10:04 +0200 |
| commit | 75ec461eeaa851cb5c53f4cfffc434e3e529ed1d (patch) | |
| tree | 3944737340718ca3675381aa06636045d397e780 /src/dialogs/certificateselectiondialog.ui | |
| parent | 8dbfb0890560fd1cd698d06fa05ac868c4db8576 (diff) | |
| download | kristall-75ec461eeaa851cb5c53f4cfffc434e3e529ed1d.tar.gz | |
Restructures the project source and cleans up a bit
Diffstat (limited to 'src/dialogs/certificateselectiondialog.ui')
| -rw-r--r-- | src/dialogs/certificateselectiondialog.ui | 172 |
1 files changed, 172 insertions, 0 deletions
diff --git a/src/dialogs/certificateselectiondialog.ui b/src/dialogs/certificateselectiondialog.ui new file mode 100644 index 0000000..d6128f9 --- /dev/null +++ b/src/dialogs/certificateselectiondialog.ui @@ -0,0 +1,172 @@ +<?xml version="1.0" encoding="UTF-8"?> +<ui version="4.0"> + <class>CertificateSelectionDialog</class> + <widget class="QDialog" name="CertificateSelectionDialog"> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>474</width> + <height>355</height> + </rect> + </property> + <property name="windowTitle"> + <string>Select client certificate</string> + </property> + <property name="windowIcon"> + <iconset resource="icons.qrc"> + <normaloff>:/icons/certificate.svg</normaloff>:/icons/certificate.svg</iconset> + </property> + <layout class="QVBoxLayout" name="verticalLayout"> + <item> + <widget class="QLabel" name="label"> + <property name="text"> + <string>Select existing certificate:</string> + </property> + </widget> + </item> + <item> + <widget class="QLabel" name="server_request"> + <property name="font"> + <font> + <weight>75</weight> + <bold>true</bold> + </font> + </property> + <property name="text"> + <string>TextLabel</string> + </property> + <property name="wordWrap"> + <bool>true</bool> + </property> + </widget> + </item> + <item> + <widget class="QTreeView" name="certificates"> + <property name="headerHidden"> + <bool>true</bool> + </property> + </widget> + </item> + <item> + <layout class="QHBoxLayout" name="horizontalLayout_2"> + <item> + <widget class="QPushButton" name="create_new_cert"> + <property name="text"> + <string>Create new identity</string> + </property> + <property name="icon"> + <iconset resource="icons.qrc"> + <normaloff>:/icons/plus.svg</normaloff>:/icons/plus.svg</iconset> + </property> + </widget> + </item> + <item> + <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> + <widget class="QPushButton" name="use_selected_cert"> + <property name="enabled"> + <bool>false</bool> + </property> + <property name="text"> + <string>Use</string> + </property> + </widget> + </item> + </layout> + </item> + <item> + <widget class="Line" name="line"> + <property name="orientation"> + <enum>Qt::Horizontal</enum> + </property> + </widget> + </item> + <item> + <widget class="QLabel" name="label_2"> + <property name="text"> + <string>Create transient session certificate:</string> + </property> + </widget> + </item> + <item> + <layout class="QHBoxLayout" name="horizontalLayout"> + <item> + <widget class="QPushButton" name="use_temp_cert_30m"> + <property name="text"> + <string>30 Minutes</string> + </property> + </widget> + </item> + <item> + <widget class="QPushButton" name="use_temp_cert_1h"> + <property name="text"> + <string>1 Hour</string> + </property> + </widget> + </item> + <item> + <widget class="QPushButton" name="use_temp_cert_12h"> + <property name="text"> + <string>12 Hours</string> + </property> + </widget> + </item> + <item> + <widget class="QPushButton" name="use_temp_cert_24h"> + <property name="text"> + <string>24 Hours</string> + </property> + </widget> + </item> + <item> + <widget class="QPushButton" name="use_temp_cert_48h"> + <property name="text"> + <string>48 Hours</string> + </property> + </widget> + </item> + </layout> + </item> + <item> + <widget class="QDialogButtonBox" name="buttonBox"> + <property name="standardButtons"> + <set>QDialogButtonBox::Cancel</set> + </property> + </widget> + </item> + </layout> + </widget> + <resources> + <include location="icons.qrc"/> + </resources> + <connections> + <connection> + <sender>buttonBox</sender> + <signal>rejected()</signal> + <receiver>CertificateSelectionDialog</receiver> + <slot>reject()</slot> + <hints> + <hint type="sourcelabel"> + <x>236</x> + <y>333</y> + </hint> + <hint type="destinationlabel"> + <x>236</x> + <y>177</y> + </hint> + </hints> + </connection> + </connections> +</ui> |
