diff options
author | ubbo <ubbo@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2011-12-06 12:29:39 +0000 |
---|---|---|
committer | ubbo <ubbo@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2011-12-06 12:29:39 +0000 |
commit | ac7dfcc91345f9752b9f387e8b1653af41718621 (patch) | |
tree | c754321cb21743ac3038ce646ecf344d59d27d31 /mainwindow.h | |
parent | replace ts files with 0.3.1 version, update to reflect name change from gpgwi... (diff) | |
download | gpg4usb-ac7dfcc91345f9752b9f387e8b1653af41718621.tar.gz gpg4usb-ac7dfcc91345f9752b9f387e8b1653af41718621.zip |
file encryption dialog configurable for encrypt / decrypt / both. popup menu for file encrypt or decrypt in toolbar now
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@668 34ebc366-c3a9-4b3c-9f84-69acf7962910
Diffstat (limited to 'mainwindow.h')
-rw-r--r-- | mainwindow.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/mainwindow.h b/mainwindow.h index 89e2046..5529f2d 100644 --- a/mainwindow.h +++ b/mainwindow.h @@ -138,6 +138,16 @@ private slots: void fileEncryption(); /** + * @details Open dialog for encrypting file. + */ + void fileEncrypt(); + + /** + * @details Open dialog for decrypting file. + */ + void fileDecrypt(); + + /** * @details Open settings-dialog. */ void openSettingsDialog(); @@ -261,6 +271,8 @@ private: QAction *redoAct; /** Action to redo last action */ QAction *aboutAct; /** Action to open about dialog */ QAction *fileEncryptionAct; /** Action to open file-encryption dialog */ + QAction *fileEncryptAct; /** Action to open dialog for encrypting file */ + QAction *fileDecryptAct; /** Action to open dialog for decrypting file */ QAction *openSettingsAct; /** Action to open settings dialog */ QAction *openTranslateAct; /** Action to open translate doc*/ QAction *openTutorialAct; /** Action to open tutorial */ |