aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/main_window/KeyMgmt.h
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2025-04-15 23:19:53 +0000
committersaturneric <[email protected]>2025-04-15 23:19:53 +0000
commit73a0f7ddf8a8db0057201374f1518d2063ad9a06 (patch)
tree4dfdf140fa639f0ab8799433c4d9cf5079a92bf0 /src/ui/main_window/KeyMgmt.h
parentrefactor: code cleanup (diff)
downloadGpgFrontend-73a0f7ddf8a8db0057201374f1518d2063ad9a06.tar.gz
GpgFrontend-73a0f7ddf8a8db0057201374f1518d2063ad9a06.zip
feat: support key groups
Diffstat (limited to 'src/ui/main_window/KeyMgmt.h')
-rw-r--r--src/ui/main_window/KeyMgmt.h50
1 files changed, 25 insertions, 25 deletions
diff --git a/src/ui/main_window/KeyMgmt.h b/src/ui/main_window/KeyMgmt.h
index c0c004af..b25cfaaa 100644
--- a/src/ui/main_window/KeyMgmt.h
+++ b/src/ui/main_window/KeyMgmt.h
@@ -121,31 +121,6 @@ class KeyMgmt : public GeneralMainWindow {
void SignalKeyStatusUpdated();
private:
- /**
- * @brief Create a menus object
- *
- */
- void create_menus();
-
- /**
- * @brief Create a actions object
- *
- */
- void create_actions();
-
- /**
- * @brief Create a tool bars object
- *
- */
- void create_tool_bars();
-
- /**
- * @brief
- *
- * @param uidList
- */
- void delete_keys_with_warning(KeyIdArgsList uid_list);
-
KeyList* key_list_; ///<
QMenu* file_menu_{}; ///<
QMenu* key_menu_{}; ///<
@@ -169,6 +144,31 @@ class KeyMgmt : public GeneralMainWindow {
QAction* close_act_{}; ///<
QAction* show_key_details_act_{}; ///<
QAction* set_owner_trust_of_key_act_{};
+
+ /**
+ * @brief Create a menus object
+ *
+ */
+ void create_menus();
+
+ /**
+ * @brief Create a actions object
+ *
+ */
+ void create_actions();
+
+ /**
+ * @brief Create a tool bars object
+ *
+ */
+ void create_tool_bars();
+
+ /**
+ * @brief
+ *
+ * @param uidList
+ */
+ void delete_keys_with_warning(const GpgAbstractKeyPtrList& keys);
};
} // namespace GpgFrontend::UI