mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-23 18:32:53 +00:00
205 lines
5.5 KiB
XML
205 lines
5.5 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<ui version="4.0">
|
|
<class>kgpgKeyGenerate</class>
|
|
<widget class="KDialog" name="kgpgKeyGenerate">
|
|
<property name="geometry">
|
|
<rect>
|
|
<x>0</x>
|
|
<y>0</y>
|
|
<width>367</width>
|
|
<height>464</height>
|
|
</rect>
|
|
</property>
|
|
<property name="windowTitle">
|
|
<string>Key Generation</string>
|
|
</property>
|
|
<widget class="QGroupBox" name="vgroup">
|
|
<property name="geometry">
|
|
<rect>
|
|
<x>0</x>
|
|
<y>10</y>
|
|
<width>361</width>
|
|
<height>434</height>
|
|
</rect>
|
|
</property>
|
|
<property name="title">
|
|
<string>Generate Key Pair</string>
|
|
</property>
|
|
<layout class="QVBoxLayout" name="verticalLayout">
|
|
<item>
|
|
<widget class="QLabel" name="nameLabel">
|
|
<property name="text">
|
|
<string extracomment="Name of key owner">&Name:</string>
|
|
</property>
|
|
<property name="buddy">
|
|
<cstring>m_kname</cstring>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item>
|
|
<widget class="KLineEdit" name="m_kname">
|
|
<property name="toolTip">
|
|
<string>The name must have a length of at least 5 characters and must not begin with a digit.</string>
|
|
</property>
|
|
<property name="placeholderText">
|
|
<string>Real name, at least 5 characters, no leading digits</string>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item>
|
|
<widget class="QLabel" name="emailLabel">
|
|
<property name="text">
|
|
<string extracomment="Email address of key owner">E&mail (optional):</string>
|
|
</property>
|
|
<property name="buddy">
|
|
<cstring>m_mail</cstring>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item>
|
|
<widget class="KLineEdit" name="m_mail"/>
|
|
</item>
|
|
<item>
|
|
<widget class="QLabel" name="label_2">
|
|
<property name="text">
|
|
<string>Commen&t (optional):</string>
|
|
</property>
|
|
<property name="buddy">
|
|
<cstring>m_comment</cstring>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item>
|
|
<widget class="KLineEdit" name="m_comment"/>
|
|
</item>
|
|
<item>
|
|
<widget class="QLabel" name="label_3">
|
|
<property name="text">
|
|
<string>Expiration:</string>
|
|
</property>
|
|
<property name="buddy">
|
|
<cstring>m_days</cstring>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item>
|
|
<widget class="KLineEdit" name="m_days">
|
|
<property name="text">
|
|
<string>0</string>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item>
|
|
<widget class="QLabel" name="label_4">
|
|
<property name="text">
|
|
<string>&Key size:</string>
|
|
</property>
|
|
<property name="buddy">
|
|
<cstring>m_keysize</cstring>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item>
|
|
<widget class="KComboBox" name="m_keysize"/>
|
|
</item>
|
|
<item>
|
|
<widget class="QLabel" name="label_5">
|
|
<property name="text">
|
|
<string>&Algorithm:</string>
|
|
</property>
|
|
<property name="buddy">
|
|
<cstring>m_keykind</cstring>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item>
|
|
<widget class="KComboBox" name="m_keykind"/>
|
|
</item>
|
|
<item>
|
|
<widget class="QGroupBox" name="capabilities">
|
|
<property name="sizePolicy">
|
|
<sizepolicy hsizetype="MinimumExpanding" vsizetype="MinimumExpanding">
|
|
<horstretch>0</horstretch>
|
|
<verstretch>0</verstretch>
|
|
</sizepolicy>
|
|
</property>
|
|
<property name="title">
|
|
<string>Capabilities</string>
|
|
</property>
|
|
<layout class="QFormLayout" name="formLayout">
|
|
<property name="fieldGrowthPolicy">
|
|
<enum>QFormLayout::ExpandingFieldsGrow</enum>
|
|
</property>
|
|
<item row="0" column="1">
|
|
<widget class="QCheckBox" name="capCert">
|
|
<property name="enabled">
|
|
<bool>false</bool>
|
|
</property>
|
|
<property name="toolTip">
|
|
<string>Certification is automatically enabled for all keys</string>
|
|
</property>
|
|
<property name="text">
|
|
<string>Certification</string>
|
|
</property>
|
|
<property name="checked">
|
|
<bool>true</bool>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item row="3" column="1">
|
|
<widget class="QCheckBox" name="capSign">
|
|
<property name="text">
|
|
<string>Signature</string>
|
|
</property>
|
|
<property name="checked">
|
|
<bool>true</bool>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item row="1" column="1">
|
|
<widget class="QCheckBox" name="capAuth">
|
|
<property name="text">
|
|
<string>Authentication</string>
|
|
</property>
|
|
<property name="checked">
|
|
<bool>true</bool>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item row="2" column="1">
|
|
<widget class="QCheckBox" name="capEncrypt">
|
|
<property name="text">
|
|
<string>Encryption</string>
|
|
</property>
|
|
<property name="checked">
|
|
<bool>true</bool>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
</layout>
|
|
</widget>
|
|
</item>
|
|
</layout>
|
|
</widget>
|
|
</widget>
|
|
<customwidgets>
|
|
<customwidget>
|
|
<class>KDialog</class>
|
|
<extends>QDialog</extends>
|
|
<header>kdialog.h</header>
|
|
<container>1</container>
|
|
</customwidget>
|
|
<customwidget>
|
|
<class>KComboBox</class>
|
|
<extends>QComboBox</extends>
|
|
<header>kcombobox.h</header>
|
|
</customwidget>
|
|
<customwidget>
|
|
<class>KLineEdit</class>
|
|
<extends>QLineEdit</extends>
|
|
<header>klineedit.h</header>
|
|
</customwidget>
|
|
</customwidgets>
|
|
<resources/>
|
|
<connections/>
|
|
</ui>
|