diff options
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 |