diff options
author | Saturneric <[email protected]> | 2021-12-15 18:29:46 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-12-16 09:36:19 +0000 |
commit | 51259403d70cb69c2fbd2b38794867f0b60bcf35 (patch) | |
tree | ecbaffef748db326f00ac58f757e5e824b61d52e /ui/KeyServerSettings.ui | |
parent | SMTP Support Added. (diff) | |
download | GpgFrontend-51259403d70cb69c2fbd2b38794867f0b60bcf35.tar.gz GpgFrontend-51259403d70cb69c2fbd2b38794867f0b60bcf35.zip |
Added & Improved & Fixed.
Fixed Bugs in core.
Improved Send Mail & Keyserver Settings.
Added Pubkey Sync for key list.
Added Refresh for key list.
Improved Send Mail and others.
Known Bugs Fixed.
Diffstat (limited to 'ui/KeyServerSettings.ui')
-rw-r--r-- | ui/KeyServerSettings.ui | 168 |
1 files changed, 168 insertions, 0 deletions
diff --git a/ui/KeyServerSettings.ui b/ui/KeyServerSettings.ui new file mode 100644 index 00000000..4a0490b9 --- /dev/null +++ b/ui/KeyServerSettings.ui @@ -0,0 +1,168 @@ +<?xml version="1.0" encoding="UTF-8"?> +<ui version="4.0"> + <class>KeyServerSettings</class> + <widget class="QWidget" name="KeyServerSettings"> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>548</width> + <height>555</height> + </rect> + </property> + <property name="windowTitle"> + <string>Form</string> + </property> + <layout class="QGridLayout" name="gridLayout"> + <item row="0" column="0"> + <layout class="QVBoxLayout" name="verticalLayout"> + <item> + <widget class="QGroupBox" name="keyServerListGroupBox"> + <property name="title"> + <string>Keyserver List</string> + </property> + <layout class="QGridLayout" name="gridLayout_2"> + <property name="leftMargin"> + <number>0</number> + </property> + <property name="topMargin"> + <number>0</number> + </property> + <property name="rightMargin"> + <number>0</number> + </property> + <property name="bottomMargin"> + <number>0</number> + </property> + <property name="spacing"> + <number>0</number> + </property> + <item row="2" column="0"> + <layout class="QHBoxLayout" name="horizontalLayout"> + <property name="spacing"> + <number>0</number> + </property> + <item> + <widget class="QLabel" name="addKeyServerLabel"> + <property name="text"> + <string>URL: </string> + </property> + </widget> + </item> + <item> + <widget class="QLineEdit" name="addKeyServerEdit"/> + </item> + <item> + <widget class="QPushButton" name="addKeyServerPushButton"> + <property name="text"> + <string>Add</string> + </property> + </widget> + </item> + </layout> + </item> + <item row="0" column="0"> + <widget class="QTableWidget" name="keyServerListTable"> + <property name="selectionMode"> + <enum>QAbstractItemView::SingleSelection</enum> + </property> + <property name="selectionBehavior"> + <enum>QAbstractItemView::SelectRows</enum> + </property> + <property name="showGrid"> + <bool>false</bool> + </property> + <property name="wordWrap"> + <bool>false</bool> + </property> + <attribute name="horizontalHeaderCascadingSectionResizes"> + <bool>true</bool> + </attribute> + <attribute name="horizontalHeaderStretchLastSection"> + <bool>true</bool> + </attribute> + <attribute name="verticalHeaderStretchLastSection"> + <bool>false</bool> + </attribute> + <column> + <property name="text"> + <string>default</string> + </property> + </column> + <column> + <property name="text"> + <string>Keyserver Address</string> + </property> + </column> + <column> + <property name="text"> + <string>Security</string> + </property> + </column> + <column> + <property name="text"> + <string>Avaliable</string> + </property> + </column> + </widget> + </item> + <item row="1" column="0"> + <widget class="QLabel" name="tipsLabel"> + <property name="text"> + <string>Tips: Please Double-click table item to edit it.</string> + </property> + </widget> + </item> + </layout> + </widget> + </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="QGroupBox" name="operationsGroupBox"> + <property name="title"> + <string>Operations</string> + </property> + <layout class="QGridLayout" name="gridLayout_3"> + <item row="0" column="0"> + <layout class="QVBoxLayout" name="verticalLayout_2"> + <item> + <widget class="QPushButton" name="testKeyServerButton"> + <property name="text"> + <string>Test Listed Key Server</string> + </property> + </widget> + </item> + </layout> + </item> + </layout> + </widget> + </item> + </layout> + </item> + </layout> + <action name="actionDelete_Selected_Key_Server"> + <property name="text"> + <string>Delete Selected Key Server</string> + </property> + </action> + <action name="actionSet_As_Default"> + <property name="text"> + <string>Set As Default</string> + </property> + </action> + </widget> + <resources/> + <connections/> +</ui> |