diff options
author | saturneric <[email protected]> | 2025-02-02 18:43:46 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2025-02-02 18:43:46 +0000 |
commit | bec8f5e614884cb86e7f1c597b7a0767c99349d9 (patch) | |
tree | bfe24598ec22d7bef7e439d1f64dcd81e772fd98 /ui/SubkeyGenDialog.ui | |
parent | feat: improve KeyGenerateDialog (diff) | |
download | GpgFrontend-bec8f5e614884cb86e7f1c597b7a0767c99349d9.tar.gz GpgFrontend-bec8f5e614884cb86e7f1c597b7a0767c99349d9.zip |
refactor: rewrite subkey generate dialog and fix some issues discovered
Diffstat (limited to 'ui/SubkeyGenDialog.ui')
-rw-r--r-- | ui/SubkeyGenDialog.ui | 134 |
1 files changed, 134 insertions, 0 deletions
diff --git a/ui/SubkeyGenDialog.ui b/ui/SubkeyGenDialog.ui new file mode 100644 index 00000000..ad1e6293 --- /dev/null +++ b/ui/SubkeyGenDialog.ui @@ -0,0 +1,134 @@ +<?xml version="1.0" encoding="UTF-8"?> +<ui version="4.0"> + <class>SubkeyGenDialog</class> + <widget class="QDialog" name="SubkeyGenDialog"> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>521</width> + <height>391</height> + </rect> + </property> + <property name="windowTitle"> + <string>Subkey Generation</string> + </property> + <layout class="QVBoxLayout" name="verticalLayout"> + <item> + <layout class="QGridLayout" name="gridLayout_3"> + <property name="topMargin"> + <number>5</number> + </property> + <item row="2" column="1"> + <widget class="QDateTimeEdit" name="expireDateTimeEdit"/> + </item> + <item row="2" column="0"> + <widget class="QLabel" name="expireLabel"> + <property name="text"> + <string>Expiration Date</string> + </property> + </widget> + </item> + <item row="0" column="0"> + <widget class="QLabel" name="algoLabel"> + <property name="text"> + <string>Algorithm</string> + </property> + </widget> + </item> + <item row="0" column="1"> + <widget class="QComboBox" name="algoComboBox"/> + </item> + <item row="1" column="0"> + <widget class="QLabel" name="keyLengthLabel"> + <property name="text"> + <string>Key Length</string> + </property> + </widget> + </item> + <item row="1" column="1"> + <widget class="QComboBox" name="keyLengthComboBox"/> + </item> + <item row="3" column="0"> + <widget class="QLabel" name="usageLabel"> + <property name="text"> + <string>Usage</string> + </property> + </widget> + </item> + <item row="3" column="1"> + <layout class="QHBoxLayout" name="horizontalLayout"> + <item> + <widget class="QCheckBox" name="encrCheckBox"> + <property name="text"> + <string>Encrypt</string> + </property> + </widget> + </item> + <item> + <widget class="QCheckBox" name="signCheckBox"> + <property name="text"> + <string>Sign</string> + </property> + </widget> + </item> + <item> + <widget class="QCheckBox" name="authCheckBox"> + <property name="text"> + <string>Authentication</string> + </property> + </widget> + </item> + </layout> + </item> + <item row="4" column="0" colspan="2"> + <widget class="QCheckBox" name="nonExpiredCheckBox"> + <property name="text"> + <string>Non Expired</string> + </property> + </widget> + </item> + <item row="5" column="0" colspan="2"> + <widget class="QCheckBox" name="nonPassphraseCheckBox"> + <property name="text"> + <string>No Passphrase</string> + </property> + </widget> + </item> + </layout> + </item> + <item> + <widget class="Line" name="line"> + <property name="orientation"> + <enum>Qt::Orientation::Horizontal</enum> + </property> + </widget> + </item> + <item> + <spacer name="verticalSpacer"> + <property name="orientation"> + <enum>Qt::Orientation::Vertical</enum> + </property> + <property name="sizeHint" stdset="0"> + <size> + <width>20</width> + <height>40</height> + </size> + </property> + </spacer> + </item> + <item> + <widget class="QPlainTextEdit" name="statusPlainTextEdit"/> + </item> + <item> + <widget class="QPushButton" name="generateButton"> + <property name="text"> + <string>Generate</string> + </property> + </widget> + </item> + </layout> + </widget> + <resources/> + <connections/> +</ui> |