diff options
author | Saturneric <[email protected]> | 2021-06-27 20:00:05 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-06-27 20:00:05 +0000 |
commit | 5143c2d56255dec8ca618bc9acaf054781dd8746 (patch) | |
tree | c2861c182fc59bbf5d505bc87929cdd118a5297e /include/MainWindow.h | |
parent | Develop File Opera Functions (diff) | |
download | GpgFrontend-5143c2d56255dec8ca618bc9acaf054781dd8746.tar.gz GpgFrontend-5143c2d56255dec8ca618bc9acaf054781dd8746.zip |
Add and improve file operation functions.
Diffstat (limited to '')
-rw-r--r-- | include/MainWindow.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/include/MainWindow.h b/include/MainWindow.h index af6b1560..8c88a301 100644 --- a/include/MainWindow.h +++ b/include/MainWindow.h @@ -96,6 +96,16 @@ public slots: */ void slotFileVerify(); + /** + * @details Open dialog for signing file. + */ + void slotFileEncryptSign(); + + /** + * @details Open dialog for verifying file. + */ + void slotFileDecryptVerify(); + private slots: @@ -135,6 +145,26 @@ private slots: void slotDecryptVerify(); /** + * @details Open dialog for encrypting file. + */ + void slotFileEncryptCustom(); + + /** + * @details Open dialog for decrypting file. + */ + void slotFileDecryptCustom(); + + /** + * @details Open dialog for signing file. + */ + void slotFileSignCustom(); + + /** + * @details Open dialog for verifying file. + */ + void slotFileVerifyCustom(); + + /** * @details Show the details of the first of the first of selected keys */ void slotShowKeyDetails(); |