diff options
author | Saturneric <[email protected]> | 2023-07-13 09:32:04 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2023-07-13 09:32:04 +0000 |
commit | a20527f4ba85b462f936f4ee54d93752f9c70ebe (patch) | |
tree | 95ac504aca96ce4da4e84a700fc0c48869ecaccd /src/ui/main_window/MainWindow.h | |
parent | fix: update ui file of KeyList (diff) | |
download | GpgFrontend-a20527f4ba85b462f936f4ee54d93752f9c70ebe.tar.gz GpgFrontend-a20527f4ba85b462f936f4ee54d93752f9c70ebe.zip |
feat: support resotring unsaved pages after a crash
Diffstat (limited to '')
-rw-r--r-- | src/ui/main_window/MainWindow.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/ui/main_window/MainWindow.h b/src/ui/main_window/MainWindow.h index 670db23a..42f9daf3 100644 --- a/src/ui/main_window/MainWindow.h +++ b/src/ui/main_window/MainWindow.h @@ -102,6 +102,11 @@ class MainWindow : public GeneralMainWindow { */ void SignalUIRefresh(); + /** + * @brief + */ + void SignalKeyDatabaseRefresh(); + public slots: /** @@ -322,6 +327,11 @@ class MainWindow : public GeneralMainWindow { */ void slot_remove_key_from_favourite(); + /** + * @details + */ + void slot_set_owner_trust_level_of_key(); + private: /** * @details Create actions for the main-menu and the context-menu of the @@ -365,6 +375,11 @@ class MainWindow : public GeneralMainWindow { void restore_settings(); /** + * @details + */ + void recover_editor_unsaved_pages_from_cache(); + + /** * @details Save settings to ini-file. */ void save_settings(); @@ -438,6 +453,7 @@ class MainWindow : public GeneralMainWindow { QAction* add_key_2_favourtie_act_{}; ///< QAction* remove_key_from_favourtie_act_{}; ///< + QAction* set_owner_trust_of_key_act_{}; ///< QAction* open_key_management_act_{}; ///< Action to open key management QAction* copy_act_{}; ///< Action to copy text |