diff options
author | Saturneric <[email protected]> | 2021-06-25 07:04:22 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-06-25 07:04:22 +0000 |
commit | 6f5d4672972c87486f5a34d6dc8b0c8668f9a2a4 (patch) | |
tree | 651bc6b2ac5ae26bbb0bee334630a786bef9bc29 /include/MainWindow.h | |
parent | Updated Document; (diff) | |
download | GpgFrontend-6f5d4672972c87486f5a34d6dc8b0c8668f9a2a4.tar.gz GpgFrontend-6f5d4672972c87486f5a34d6dc8b0c8668f9a2a4.zip |
Update Project Structure;
Update Version;
Add FilePage;
Diffstat (limited to '')
-rw-r--r-- | include/MainWindow.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/include/MainWindow.h b/include/MainWindow.h index 95a10210..c5937e0d 100644 --- a/include/MainWindow.h +++ b/include/MainWindow.h @@ -26,9 +26,9 @@ #define __GPGWIN_H__ #include "gpg/GpgConstants.h" -#include "ui/Attachments.h" +#include "ui/widgets/Attachments.h" #include "ui/KeyMgmt.h" -#include "ui/TextEdit.h" +#include "ui/widgets/TextEdit.h" #include "ui/FileEncryptionDialog.h" #include "ui/SettingsDialog.h" #include "ui/AboutDialog.h" @@ -176,6 +176,11 @@ private slots: void slotFileVerify(); /** + * @details Open File Opera Tab + */ + void slotOpenFileTab(); + + /** * @details Open settings-dialog. */ void slotOpenSettingsDialog(); @@ -339,6 +344,7 @@ private: GpgME::GpgContext *mCtx; /**< TODO */ KeyMgmt *keyMgmt; /**< TODO */ KeyServerImportDialog *importDialog; /**< TODO */ + bool attachmentDockCreated; bool restartNeeded; }; |