diff options
author | Saturneric <[email protected]> | 2021-12-13 16:43:17 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-12-13 16:43:17 +0000 |
commit | 71bec7d8b0715bfc2ac953ef8051c96fa27c0682 (patch) | |
tree | dccc073271c4165f375783ed95aa839099a19e60 /src/ui/MainWindow.h | |
parent | Merge pull request #31 from saturneric/develop-ui (diff) | |
download | GpgFrontend-71bec7d8b0715bfc2ac953ef8051c96fa27c0682.tar.gz GpgFrontend-71bec7d8b0715bfc2ac953ef8051c96fa27c0682.zip |
Improve UI & Fixed.
Diffstat (limited to '')
-rw-r--r-- | src/ui/MainWindow.h | 29 |
1 files changed, 2 insertions, 27 deletions
diff --git a/src/ui/MainWindow.h b/src/ui/MainWindow.h index 97c5c73f..1a36bf8a 100644 --- a/src/ui/MainWindow.h +++ b/src/ui/MainWindow.h @@ -153,26 +153,6 @@ class MainWindow : public QMainWindow { 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(); @@ -338,7 +318,6 @@ class MainWindow : public QMainWindow { QMenu* fileMenu{}; /** Submenu for file-operations*/ QMenu* editMenu{}; /** Submenu for text-operations*/ QMenu* cryptMenu{}; /** Submenu for crypt-operations */ - QMenu* fileEncMenu{}; /** Submenu for file crypt operations */ QMenu* helpMenu{}; /** Submenu for help-operations */ QMenu* keyMenu{}; /** Submenu for key-operations */ QMenu* viewMenu{}; /** Submenu for view operations */ @@ -393,12 +372,8 @@ class MainWindow : public QMainWindow { QAction* aboutAct{}; /** Action to open about dialog */ QAction* checkUpdateAct{}; /** Action to open about dialog */ QAction* translateAct{}; /** Action to open about dialog */ - QAction* fileEncryptAct{}; /** Action to open dialog for encrypting file */ - QAction* fileDecryptAct{}; /** Action to open dialog for decrypting file */ - QAction* fileSignAct{}; /** Action to open dialog for signing file */ - QAction* fileVerifyAct{}; /** Action to open dialog for verifying file */ - QAction* openSettingsAct{}; /** Action to open settings dialog */ - QAction* showKeyDetailsAct{}; /** Action to open key-details dialog */ + QAction* openSettingsAct{}; /** Action to open settings dialog */ + QAction* showKeyDetailsAct{}; /** Action to open key-details dialog */ QAction* refreshKeysFromKeyserverAct{}; /** Action to refresh a key from keyserver */ QAction* uploadKeyToServerAct{}; /** Action to append selected keys to edit */ |