diff options
author | saturneric <[email protected]> | 2024-10-18 18:15:36 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-10-18 18:15:36 +0000 |
commit | c3a23900281c2024f7d4507ac84b0fe700fbf6dd (patch) | |
tree | b8f611ef7b4121ffe9f0df60eb3b3c3896c444b5 /ui/RevocationOptionsDialog.ui | |
parent | feat: add filter option of 'comment' at key list of main window (diff) | |
download | GpgFrontend-c3a23900281c2024f7d4507ac84b0fe700fbf6dd.tar.gz GpgFrontend-c3a23900281c2024f7d4507ac84b0fe700fbf6dd.zip |
feat: set reason code and text at revoke-certification
Diffstat (limited to 'ui/RevocationOptionsDialog.ui')
-rw-r--r-- | ui/RevocationOptionsDialog.ui | 107 |
1 files changed, 107 insertions, 0 deletions
diff --git a/ui/RevocationOptionsDialog.ui b/ui/RevocationOptionsDialog.ui new file mode 100644 index 00000000..050fa889 --- /dev/null +++ b/ui/RevocationOptionsDialog.ui @@ -0,0 +1,107 @@ +<?xml version="1.0" encoding="UTF-8"?> +<ui version="4.0"> + <class>RevocationOptionsDialog</class> + <widget class="QDialog" name="RevocationOptionsDialog"> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>525</width> + <height>430</height> + </rect> + </property> + <property name="windowTitle"> + <string>Revocation Options</string> + </property> + <property name="autoFillBackground"> + <bool>false</bool> + </property> + <property name="modal"> + <bool>false</bool> + </property> + <layout class="QVBoxLayout" name="verticalLayout_2"> + <item> + <layout class="QVBoxLayout" name="verticalLayout"> + <item> + <widget class="QLabel" name="revocationReasonCodeLabel"> + <property name="text"> + <string>Revocation Reason (Code)</string> + </property> + </widget> + </item> + <item> + <widget class="QComboBox" name="rRcodeComboBox"/> + </item> + <item> + <widget class="QLabel" name="revocationReasonTextLabel"> + <property name="text"> + <string>Revocation Reason (Text)</string> + </property> + </widget> + </item> + <item> + <widget class="QPlainTextEdit" name="rRPlainTextEdit"/> + </item> + <item> + <spacer name="verticalSpacer"> + <property name="orientation"> + <enum>Qt::Vertical</enum> + </property> + <property name="sizeHint" stdset="0"> + <size> + <width>20</width> + <height>40</height> + </size> + </property> + </spacer> + </item> + <item> + <widget class="QDialogButtonBox" name="buttonBox"> + <property name="orientation"> + <enum>Qt::Horizontal</enum> + </property> + <property name="standardButtons"> + <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set> + </property> + </widget> + </item> + </layout> + </item> + </layout> + </widget> + <resources/> + <connections> + <connection> + <sender>buttonBox</sender> + <signal>accepted()</signal> + <receiver>RevocationOptionsDialog</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>RevocationOptionsDialog</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> |