diff options
author | Saturneric <[email protected]> | 2021-06-05 20:57:30 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-06-05 20:57:30 +0000 |
commit | 9c09b5de5180632746d9fc7f75a3ed7f07b06292 (patch) | |
tree | 89c1e21762f04b4e383ff7f2f45c280b2c5e67ce /include/MainWindow.h | |
parent | Update the verification function. (diff) | |
download | GpgFrontend-9c09b5de5180632746d9fc7f75a3ed7f07b06292.tar.gz GpgFrontend-9c09b5de5180632746d9fc7f75a3ed7f07b06292.zip |
Adjust and improve the detailed interface of the verification information result.
Check whether the key can be signed before signing operation.
Check whether the key is qualified before encrypting and signing operations.
Modify part of the text explanation on the key details tab.
Adjust the length and width of the key pair management interface.
Add the actual function column to the list on the file operation page.
Adjust the file operation page.
For the function that displays the actual possession of the key in the key list by default.
Add the function of displaying the actual possession of the key in the key details page.
Adjust the code structure.
Convert the label prompt below into a message board prompt.
Signed-off-by: Saturneric <[email protected]>
Diffstat (limited to '')
-rw-r--r-- | include/MainWindow.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/MainWindow.h b/include/MainWindow.h index 19eddf13..c8efd63c 100644 --- a/include/MainWindow.h +++ b/include/MainWindow.h @@ -71,6 +71,12 @@ private slots: void slotEncrypt(); /** + * @details encrypt and sign the text of currently active textedit-page + * with the currently checked keys + */ + void slotEncryptSign(); + + /** * @details Show a passphrase dialog and decrypt the text of currently active tab. */ void slotDecrypt(); @@ -306,6 +312,7 @@ private: QAction *closeTabAct; /** Action to print */ QAction *quitAct; /** Action to quit application */ QAction *encryptAct; /** Action to encrypt text */ + QAction *encryptSignAct; /** Action to encrypt text */ QAction *decryptAct; /** Action to decrypt text */ QAction *signAct; /** Action to sign text */ QAction *verifyAct; /** Action to verify text */ |