diff --git a/docs/html/Event_8h_source.html b/docs/html/Event_8h_source.html
index 77e24e06..ef77c511 100644
--- a/docs/html/Event_8h_source.html
+++ b/docs/html/Event_8h_source.html
@@ -101,7 +101,7 @@ $(document).ready(function(){initNavTree('Event_8h_source.html',''); initResizab
- 43 using EventRefrernce = std::shared_ptr<Event>;
+ 43 using EventReference = std::shared_ptr<Event>;
44 using EventIdentifier = QString;
45 using EventTriggerIdentifier = QString;
46 using Evnets = std::vector<Event>;
@@ -153,7 +153,7 @@ $(document).ready(function(){initNavTree('Event_8h_source.html',''); initResizab
93 template <
typename... Args>
94 auto MakeEvent(
const EventIdentifier& event_id, Args&&... args,
- 95 Event::EventCallback e_cb) -> EventRefrernce {
+ 95 Event::EventCallback e_cb) -> EventReference {
96 std::initializer_list<Event::ParameterInitializer> params = {
97 Event::ParameterInitializer{std::forward<Args>(args)}...};
98 return GpgFrontend::SecureCreateSharedObject<Event>(event_id, params, e_cb);
diff --git a/docs/html/GlobalModuleContext_8h_source.html b/docs/html/GlobalModuleContext_8h_source.html
index 47bb431c..41e8c480 100644
--- a/docs/html/GlobalModuleContext_8h_source.html
+++ b/docs/html/GlobalModuleContext_8h_source.html
@@ -139,9 +139,9 @@ $(document).ready(function(){initNavTree('GlobalModuleContext_8h_source.html',''
79 auto ListenEvent(ModuleIdentifier, EventIdentifier) -> bool;
- 81 auto TriggerEvent(EventRefrernce) -> bool;
+ 81 auto TriggerEvent(EventReference) -> bool;
- 83 auto SearchEvent(EventTriggerIdentifier) -> std::optional<EventRefrernce>;
+ 83 auto SearchEvent(EventTriggerIdentifier) -> std::optional<EventReference>;
85 auto GetModuleListening(ModuleIdentifier) -> QList<EventIdentifier>;
diff --git a/docs/html/ModuleManager_8h_source.html b/docs/html/ModuleManager_8h_source.html
index 7be6ad2b..1e7719b9 100644
--- a/docs/html/ModuleManager_8h_source.html
+++ b/docs/html/ModuleManager_8h_source.html
@@ -111,7 +111,7 @@ $(document).ready(function(){initNavTree('ModuleManager_8h_source.html',''); ini
51 class GlobalRegisterTable;
- 53 using EventRefrernce = std::shared_ptr<Event>;
+ 53 using EventReference = std::shared_ptr<Event>;
54 using ModuleIdentifier = QString;
55 using ModulePtr = std::shared_ptr<Module>;
56 using ModuleMangerPtr = std::shared_ptr<ModuleManager>;
@@ -141,9 +141,9 @@ $(document).ready(function(){initNavTree('ModuleManager_8h_source.html',''); ini
81 void ListenEvent(ModuleIdentifier, EventIdentifier);
- 83 void TriggerEvent(EventRefrernce);
+ 83 void TriggerEvent(EventReference);
- 85 auto SearchEvent(EventTriggerIdentifier) -> std::optional<EventRefrernce>;
+ 85 auto SearchEvent(EventTriggerIdentifier) -> std::optional<EventReference>;
87 auto GetModuleListening(ModuleIdentifier) -> QList<EventIdentifier>;
@@ -228,16 +228,16 @@ $(document).ready(function(){initNavTree('ModuleManager_8h_source.html',''); ini
Definition: GlobalRegisterTable.h:43
-Definition: ModuleManager.cpp:48
+Definition: ModuleManager.cpp:47
Definition: ModuleManager.h:63
Definition: GpgFunctionObject.h:57
static auto GetInstance(int channel=GpgFrontend::kGpgFrontendDefaultChannel) -> ModuleManager &
Get the Instance object.
Definition: GpgFunctionObject.h:79
Definition: TaskRunner.h:37
-auto UpsertRTValue(const QString &namespace_, const QString &key, const std::any &value) -> bool
Definition: ModuleManager.cpp:235
-auto ListRTChildKeys(const QString &namespace_, const QString &key) -> std::vector< Key >
Definition: ModuleManager.cpp:246
-auto IsModuleActivate(ModuleIdentifier id) -> bool
Definition: ModuleManager.cpp:231
-auto ListenRTPublishEvent(QObject *o, Namespace n, Key k, LPCallback c) -> bool
Definition: ModuleManager.cpp:241
+auto UpsertRTValue(const QString &namespace_, const QString &key, const std::any &value) -> bool
Definition: ModuleManager.cpp:228
+auto ListRTChildKeys(const QString &namespace_, const QString &key) -> std::vector< Key >
Definition: ModuleManager.cpp:239
+auto IsModuleActivate(ModuleIdentifier id) -> bool
Definition: ModuleManager.cpp:224
+auto ListenRTPublishEvent(QObject *o, Namespace n, Key k, LPCallback c) -> bool
Definition: ModuleManager.cpp:234
Definition: ModuleManager.h:39
diff --git a/docs/html/ModuleSO_8h_source.html b/docs/html/ModuleSO_8h_source.html
index c2e76878..7d01def9 100644
--- a/docs/html/ModuleSO_8h_source.html
+++ b/docs/html/ModuleSO_8h_source.html
@@ -96,37 +96,43 @@ $(document).ready(function(){initNavTree('ModuleSO_8h_source.html',''); initResi
35 QString module_version;
-
-
-
- 41 explicit ModuleSO(
const QJsonObject& j) {
- 42 if (
const auto v = j[
"module_id"]; v.isString()) {
- 43 module_id = v.toString();
-
-
- 46 if (
const auto v = j[
"module_version"]; v.isString()) {
- 47 module_version = v.toString();
-
-
- 50 if (
const auto v = j[
"module_hash"]; v.isString()) {
- 51 module_hash = v.toString();
-
-
- 54 if (
const auto v = j[
"auto_activate"]; v.isBool()) {
- 55 auto_activate = v.toBool();
-
-
+
+
+
+
+ 42 explicit ModuleSO(
const QJsonObject& j) {
+ 43 if (
const auto v = j[
"module_id"]; v.isString()) {
+ 44 module_id = v.toString();
+
+
+ 47 if (
const auto v = j[
"module_version"]; v.isString()) {
+ 48 module_version = v.toString();
+
+
+ 51 if (
const auto v = j[
"module_hash"]; v.isString()) {
+ 52 module_hash = v.toString();
+
+
+ 55 if (
const auto v = j[
"auto_activate"]; v.isBool()) {
+ 56 auto_activate = v.toBool();
+
- 59 [[nodiscard]]
auto ToJson()
const -> QJsonObject {
-
- 61 j[
"module_id"] = module_id;
- 62 j[
"module_version"] = module_version;
- 63 j[
"module_hash"] = module_hash;
- 64 j[
"auto_activate"] = auto_activate;
-
-
-
-
+ 59 if (
const auto v = j[
"set_by_user"]; v.isBool()) {
+ 60 set_by_user = v.toBool();
+
+
+
+ 64 [[nodiscard]]
auto ToJson()
const -> QJsonObject {
+
+ 66 j[
"module_id"] = module_id;
+ 67 j[
"module_version"] = module_version;
+ 68 j[
"module_hash"] = module_hash;
+ 69 j[
"auto_activate"] = auto_activate;
+ 70 j[
"set_by_user"] = set_by_user;
+
+
+
+
Definition: ModuleSO.h:33
diff --git a/docs/html/Module_8h_source.html b/docs/html/Module_8h_source.html
index 66228f1e..d41f48de 100644
--- a/docs/html/Module_8h_source.html
+++ b/docs/html/Module_8h_source.html
@@ -120,7 +120,7 @@ $(document).ready(function(){initNavTree('Module_8h_source.html',''); initResiza
60 virtual auto Active() -> int;
- 62 virtual auto Exec(EventRefrernce) -> int;
+ 62 virtual auto Exec(EventReference) -> int;
64 virtual auto Deactive() -> int;
diff --git a/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext-members.html b/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext-members.html
index d50b10bd..3b3dc293 100644
--- a/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext-members.html
+++ b/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext-members.html
@@ -104,9 +104,9 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1Module_1_1GlobalMo
ListenEvent(ModuleIdentifier, EventIdentifier) -> bool (defined in GpgFrontend::Module::GlobalModuleContext) | GpgFrontend::Module::GlobalModuleContext | |
p_ (defined in GpgFrontend::Module::GlobalModuleContext) | GpgFrontend::Module::GlobalModuleContext | private |
RegisterModule(ModulePtr, bool) -> bool (defined in GpgFrontend::Module::GlobalModuleContext) | GpgFrontend::Module::GlobalModuleContext | |
- SearchEvent(EventTriggerIdentifier) -> std::optional< EventRefrernce > (defined in GpgFrontend::Module::GlobalModuleContext) | GpgFrontend::Module::GlobalModuleContext | |
+ SearchEvent(EventTriggerIdentifier) -> std::optional< EventReference > (defined in GpgFrontend::Module::GlobalModuleContext) | GpgFrontend::Module::GlobalModuleContext | |
SearchModule(ModuleIdentifier) -> ModulePtr (defined in GpgFrontend::Module::GlobalModuleContext) | GpgFrontend::Module::GlobalModuleContext | |
- TriggerEvent(EventRefrernce) -> bool (defined in GpgFrontend::Module::GlobalModuleContext) | GpgFrontend::Module::GlobalModuleContext | |
+ TriggerEvent(EventReference) -> bool (defined in GpgFrontend::Module::GlobalModuleContext) | GpgFrontend::Module::GlobalModuleContext | |
~GlobalModuleContext() override (defined in GpgFrontend::Module::GlobalModuleContext) | GpgFrontend::Module::GlobalModuleContext | |
diff --git a/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext.html b/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext.html
index a43bba0e..2cc7f90c 100644
--- a/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext.html
+++ b/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext.html
@@ -145,12 +145,12 @@ auto DeactivateModule
|
auto | ListenEvent (ModuleIdentifier, EventIdentifier) -> bool |
|
-
-auto | TriggerEvent (EventRefrernce) -> bool |
- |
-
-auto | SearchEvent (EventTriggerIdentifier) -> std::optional< EventRefrernce > |
- |
+
+auto | TriggerEvent (EventReference) -> bool |
+ |
+
+auto | SearchEvent (EventTriggerIdentifier) -> std::optional< EventReference > |
+ |
auto | GetModuleListening (ModuleIdentifier) -> QList< EventIdentifier > |
|
diff --git a/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext.js b/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext.js
index fd226271..077e2518 100644
--- a/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext.js
+++ b/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext.js
@@ -16,8 +16,8 @@ var classGpgFrontend_1_1Module_1_1GlobalModuleContext =
[ "ListAllRegisteredModuleID", "classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#a3d26d680dfb5036832852ccab2e31cd2", null ],
[ "ListenEvent", "classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#a1f4335cab295542f49b78a8e15b6f456", null ],
[ "RegisterModule", "classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#a3834836325dab26902e9d66770ce895f", null ],
- [ "SearchEvent", "classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#aa11772c7ecb3fdc8545a67ceb8c6369b", null ],
+ [ "SearchEvent", "classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#a4c1d56338f4b4a8d594c4ecc8aac420d", null ],
[ "SearchModule", "classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#ac488a3f4e3cbd668fd9ce84b39078cbb", null ],
- [ "TriggerEvent", "classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#aa656d6d835b2ccb20494ff580a7cafac", null ],
+ [ "TriggerEvent", "classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#ad9c9b7ffc770046ff1e6486ef1fc4415", null ],
[ "p_", "classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#a2e109678b81d92569b442aba617d86fe", null ]
];
\ No newline at end of file
diff --git a/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl-members.html b/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl-members.html
index 53f464e5..a1a207b2 100644
--- a/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl-members.html
+++ b/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl-members.html
@@ -111,9 +111,9 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1Module_1_1GlobalMo
ModuleRegisterInfoPtr typedef (defined in GpgFrontend::Module::GlobalModuleContext::Impl) | GpgFrontend::Module::GlobalModuleContext::Impl | private |
RegisterModule(const ModulePtr &module, bool integrated_module) -> bool (defined in GpgFrontend::Module::GlobalModuleContext::Impl) | GpgFrontend::Module::GlobalModuleContext::Impl | inline |
search_module_register_table(const ModuleIdentifier &identifier) const -> std::optional< ModuleRegisterInfoPtr > (defined in GpgFrontend::Module::GlobalModuleContext::Impl) | GpgFrontend::Module::GlobalModuleContext::Impl | inlineprivate |
- SearchEvent(const EventTriggerIdentifier &trigger_id) -> std::optional< EventRefrernce > (defined in GpgFrontend::Module::GlobalModuleContext::Impl) | GpgFrontend::Module::GlobalModuleContext::Impl | inline |
+ SearchEvent(const EventTriggerIdentifier &trigger_id) -> std::optional< EventReference > (defined in GpgFrontend::Module::GlobalModuleContext::Impl) | GpgFrontend::Module::GlobalModuleContext::Impl | inline |
SearchModule(ModuleIdentifier module_id) -> ModulePtr (defined in GpgFrontend::Module::GlobalModuleContext::Impl) | GpgFrontend::Module::GlobalModuleContext::Impl | inline |
- TriggerEvent(const EventRefrernce &event) -> bool (defined in GpgFrontend::Module::GlobalModuleContext::Impl) | GpgFrontend::Module::GlobalModuleContext::Impl | inline |
+ TriggerEvent(const EventReference &event) -> bool (defined in GpgFrontend::Module::GlobalModuleContext::Impl) | GpgFrontend::Module::GlobalModuleContext::Impl | inline |
diff --git a/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html b/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html
index ddd5e9a6..5769ea8a 100644
--- a/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html
+++ b/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html
@@ -150,12 +150,12 @@ auto ListenEvent (Modu
|
auto | DeactivateModule (ModuleIdentifier module_id) -> bool |
|
-
-auto | TriggerEvent (const EventRefrernce &event) -> bool |
- |
-
-auto | SearchEvent (const EventTriggerIdentifier &trigger_id) -> std::optional< EventRefrernce > |
- |
+
+auto | TriggerEvent (const EventReference &event) -> bool |
+ |
+
+auto | SearchEvent (const EventTriggerIdentifier &trigger_id) -> std::optional< EventReference > |
+ |
auto | IsModuleActivated (const ModuleIdentifier &m_id) const -> bool |
|
@@ -198,9 +198,9 @@ std::unordered_map< ModuleIdentifier, ModuleRegisterInfoPtr >
std::map< EventIdentifier, std::unordered_set< ModuleIdentifier > > | module_events_table_ |
|
-
-std::map< EventTriggerIdentifier, EventRefrernce > | module_on_triggering_events_table_ |
- |
+
+std::map< EventTriggerIdentifier, EventReference > | module_on_triggering_events_table_ |
+ |
std::set< int > | acquired_channel_ |
|
diff --git a/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.js b/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.js
index 22b42a62..58d5e66c 100644
--- a/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.js
+++ b/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.js
@@ -18,12 +18,12 @@ var classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl =
[ "ListenEvent", "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#a4479bbccc6929a1c096f764d9c13c02f", null ],
[ "RegisterModule", "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#abc363ae2bc81fbfed0f08315023a2155", null ],
[ "search_module_register_table", "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#a11dde09190cfa31bd19efad5dcacf214", null ],
- [ "SearchEvent", "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#ab3e05b1a9bf5f03ece0caa1fc8809b50", null ],
+ [ "SearchEvent", "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#ae3f001188f83e173fd84f89e3973bef2", null ],
[ "SearchModule", "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#abba0e51c3af19398cfca723d15b27b58", null ],
- [ "TriggerEvent", "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#ac7991d6d2022915212987b7a2d330446", null ],
+ [ "TriggerEvent", "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#a07acdf211b98d8e917abb19406e9507d", null ],
[ "acquired_channel_", "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#acc10c7acd6244ef93e85ffb6c4ad267e", null ],
[ "default_task_runner_", "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#ad8285c96435bc2431481828ca943ce49", null ],
[ "module_events_table_", "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#aaa6ec2fcc2569cd1b22f419feadaa568", null ],
- [ "module_on_triggering_events_table_", "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#a36f9cf218e3cd84658cbd61116d34a96", null ],
+ [ "module_on_triggering_events_table_", "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#a8b1169966c7200118373bb56d555a89c", null ],
[ "module_register_table_", "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#a8e3cd9ab8dc16a2f7431618bfbc09520", null ]
];
\ No newline at end of file
diff --git a/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl__coll__graph.map b/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl__coll__graph.map
index 2a6115d3..95cd264b 100644
--- a/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl__coll__graph.map
+++ b/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl__coll__graph.map
@@ -6,11 +6,11 @@
-
-
+
+
-
-
+
+
diff --git a/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl__coll__graph.md5 b/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl__coll__graph.md5
index 76440aab..26671f77 100644
--- a/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl__coll__graph.md5
+++ b/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl__coll__graph.md5
@@ -1 +1 @@
-d155e5fbc134cca6f2736512712c3255
\ No newline at end of file
+5a0ca382e6208639961c08a4dc92e594
\ No newline at end of file
diff --git a/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl__coll__graph.png b/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl__coll__graph.png
index c758110e..bde00020 100644
Binary files a/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl__coll__graph.png and b/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl__coll__graph.png differ
diff --git a/docs/html/classGpgFrontend_1_1Module_1_1Module-members.html b/docs/html/classGpgFrontend_1_1Module_1_1Module-members.html
index c20c8166..95d5a055 100644
--- a/docs/html/classGpgFrontend_1_1Module_1_1Module-members.html
+++ b/docs/html/classGpgFrontend_1_1Module_1_1Module-members.html
@@ -91,7 +91,7 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1Module_1_1Module.h
Active() -> int (defined in GpgFrontend::Module::Module) | GpgFrontend::Module::Module | virtual |
Deactive() -> int (defined in GpgFrontend::Module::Module) | GpgFrontend::Module::Module | virtual |
- Exec(EventRefrernce) -> int (defined in GpgFrontend::Module::Module) | GpgFrontend::Module::Module | virtual |
+ Exec(EventReference) -> int (defined in GpgFrontend::Module::Module) | GpgFrontend::Module::Module | virtual |
getChannel() -> int (defined in GpgFrontend::Module::Module) | GpgFrontend::Module::Module | protected |
getDefaultChannel() -> int (defined in GpgFrontend::Module::Module) | GpgFrontend::Module::Module | protected |
GetModuleHash() const -> QString (defined in GpgFrontend::Module::Module) | GpgFrontend::Module::Module | |
diff --git a/docs/html/classGpgFrontend_1_1Module_1_1Module.html b/docs/html/classGpgFrontend_1_1Module_1_1Module.html
index b52de91b..92f49cd6 100644
--- a/docs/html/classGpgFrontend_1_1Module_1_1Module.html
+++ b/docs/html/classGpgFrontend_1_1Module_1_1Module.html
@@ -133,9 +133,9 @@ virtual auto Register
|
virtual auto | Active () -> int |
|
-
-virtual auto | Exec (EventRefrernce) -> int |
- |
+
+virtual auto | Exec (EventReference) -> int |
+ |
virtual auto | Deactive () -> int |
|
diff --git a/docs/html/classGpgFrontend_1_1Module_1_1Module.js b/docs/html/classGpgFrontend_1_1Module_1_1Module.js
index e54942b2..df8c7f36 100644
--- a/docs/html/classGpgFrontend_1_1Module_1_1Module.js
+++ b/docs/html/classGpgFrontend_1_1Module_1_1Module.js
@@ -6,7 +6,7 @@ var classGpgFrontend_1_1Module_1_1Module =
[ "~Module", "classGpgFrontend_1_1Module_1_1Module.html#a9951cd256d16e5117b49131430499ad1", null ],
[ "Active", "classGpgFrontend_1_1Module_1_1Module.html#aba8d8690179721ddcbcabac04a72a157", null ],
[ "Deactive", "classGpgFrontend_1_1Module_1_1Module.html#a2707656f14bec27c74a3d3f476a82494", null ],
- [ "Exec", "classGpgFrontend_1_1Module_1_1Module.html#aaa782445f133f0ad740cdfee687f09a1", null ],
+ [ "Exec", "classGpgFrontend_1_1Module_1_1Module.html#af0b52299d613acc0c1df7d542b00dccd", null ],
[ "getChannel", "classGpgFrontend_1_1Module_1_1Module.html#af4a6decab6e9b05b5c456d62ca588e92", null ],
[ "getDefaultChannel", "classGpgFrontend_1_1Module_1_1Module.html#ab16513c547ee594ebb78c8d67ce8b447", null ],
[ "GetModuleHash", "classGpgFrontend_1_1Module_1_1Module.html#a63bdf54d462ccf6eaef72211eb38fe7b", null ],
diff --git a/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager-members.html b/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager-members.html
index c703f48d..65ec0ac6 100644
--- a/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager-members.html
+++ b/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager-members.html
@@ -116,7 +116,7 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1Module_1_1ModuleMa
RegisterModule(ModulePtr) (defined in GpgFrontend::Module::ModuleManager) | GpgFrontend::Module::ModuleManager | |
ReleaseChannel(int channel) | GpgFrontend::SingletonFunctionObject< ModuleManager > | inlinestatic |
RetrieveRTValue(Namespace, Key) -> std::optional< std::any > (defined in GpgFrontend::Module::ModuleManager) | GpgFrontend::Module::ModuleManager | |
- SearchEvent(EventTriggerIdentifier) -> std::optional< EventRefrernce > (defined in GpgFrontend::Module::ModuleManager) | GpgFrontend::Module::ModuleManager | |
+ SearchEvent(EventTriggerIdentifier) -> std::optional< EventReference > (defined in GpgFrontend::Module::ModuleManager) | GpgFrontend::Module::ModuleManager | |
SearchModule(ModuleIdentifier) -> ModulePtr (defined in GpgFrontend::Module::ModuleManager) | GpgFrontend::Module::ModuleManager | |
SetChannel(int channel) | GpgFrontend::ChannelObject | |
SingletonFunctionObject(const SingletonFunctionObject< ModuleManager > &)=delete | GpgFrontend::SingletonFunctionObject< ModuleManager > | |
@@ -124,7 +124,7 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1Module_1_1ModuleMa
SingletonFunctionObject(const ModuleManager &)=delete | GpgFrontend::SingletonFunctionObject< ModuleManager > | |
SingletonFunctionObject()=default | GpgFrontend::SingletonFunctionObject< ModuleManager > | protected |
SingletonFunctionObject(int channel) | GpgFrontend::SingletonFunctionObject< ModuleManager > | inlineexplicitprotected |
- TriggerEvent(EventRefrernce) (defined in GpgFrontend::Module::ModuleManager) | GpgFrontend::Module::ModuleManager | |
+ TriggerEvent(EventReference) (defined in GpgFrontend::Module::ModuleManager) | GpgFrontend::Module::ModuleManager | |
type_ (defined in GpgFrontend::ChannelObject) | GpgFrontend::ChannelObject | private |
UpsertRTValue(Namespace, Key, std::any) -> bool (defined in GpgFrontend::Module::ModuleManager) | GpgFrontend::Module::ModuleManager | |
~ChannelObject() noexcept | GpgFrontend::ChannelObject | virtual |
diff --git a/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager.html b/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager.html
index 34f7329f..14ef00fc 100644
--- a/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager.html
+++ b/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager.html
@@ -145,12 +145,12 @@ auto IsIntegratedModule |
void | ListenEvent (ModuleIdentifier, EventIdentifier) |
|
-
-void | TriggerEvent (EventRefrernce) |
- |
-
-auto | SearchEvent (EventTriggerIdentifier) -> std::optional< EventRefrernce > |
- |
+
+void | TriggerEvent (EventReference) |
+ |
+
+auto | SearchEvent (EventTriggerIdentifier) -> std::optional< EventReference > |
+ |
auto | GetModuleListening (ModuleIdentifier) -> QList< EventIdentifier > |
|
diff --git a/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager.js b/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager.js
index 43ac3226..b40622cb 100644
--- a/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager.js
+++ b/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager.js
@@ -17,9 +17,9 @@ var classGpgFrontend_1_1Module_1_1ModuleManager =
[ "LoadModule", "classGpgFrontend_1_1Module_1_1ModuleManager.html#aaa8675386da0e23a37f6475ae0b52196", null ],
[ "RegisterModule", "classGpgFrontend_1_1Module_1_1ModuleManager.html#a654aceac22bb8f153617181658705771", null ],
[ "RetrieveRTValue", "classGpgFrontend_1_1Module_1_1ModuleManager.html#a2834cd112b032ae0e62de81050d1318e", null ],
- [ "SearchEvent", "classGpgFrontend_1_1Module_1_1ModuleManager.html#a1a1e0d46101d6f1dd6ca2751cf77577e", null ],
+ [ "SearchEvent", "classGpgFrontend_1_1Module_1_1ModuleManager.html#afa0844590ddfdc6e44cbea4303f34382", null ],
[ "SearchModule", "classGpgFrontend_1_1Module_1_1ModuleManager.html#a708ed5ee3ab6684ddfa3d7ec00703693", null ],
- [ "TriggerEvent", "classGpgFrontend_1_1Module_1_1ModuleManager.html#ad802fe563954717b33ab85f5a781c06f", null ],
+ [ "TriggerEvent", "classGpgFrontend_1_1Module_1_1ModuleManager.html#ae4e4a6c3cd06de7da34b59822d893ecc", null ],
[ "UpsertRTValue", "classGpgFrontend_1_1Module_1_1ModuleManager.html#aba272edfb6fd75a403a03a09256b86ba", null ],
[ "p_", "classGpgFrontend_1_1Module_1_1ModuleManager.html#a88e837c5325074d10582f1b41188f0d6", null ]
];
\ No newline at end of file
diff --git a/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl-members.html b/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl-members.html
index 1e13ce9e..f19363b9 100644
--- a/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl-members.html
+++ b/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl-members.html
@@ -108,9 +108,9 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1Module_1_1ModuleMa
module_libraries_ (defined in GpgFrontend::Module::ModuleManager::Impl) | GpgFrontend::Module::ModuleManager::Impl | private |
RegisterModule(const ModulePtr &module) (defined in GpgFrontend::Module::ModuleManager::Impl) | GpgFrontend::Module::ModuleManager::Impl | inline |
RetrieveRTValue(Namespace n, Key k) -> std::optional< std::any > (defined in GpgFrontend::Module::ModuleManager::Impl) | GpgFrontend::Module::ModuleManager::Impl | inline |
- SearchEvent(EventTriggerIdentifier trigger_id) -> std::optional< EventRefrernce > (defined in GpgFrontend::Module::ModuleManager::Impl) | GpgFrontend::Module::ModuleManager::Impl | inline |
+ SearchEvent(EventTriggerIdentifier trigger_id) -> std::optional< EventReference > (defined in GpgFrontend::Module::ModuleManager::Impl) | GpgFrontend::Module::ModuleManager::Impl | inline |
SearchModule(ModuleIdentifier module_id) -> ModulePtr (defined in GpgFrontend::Module::ModuleManager::Impl) | GpgFrontend::Module::ModuleManager::Impl | inline |
- TriggerEvent(const EventRefrernce &event) (defined in GpgFrontend::Module::ModuleManager::Impl) | GpgFrontend::Module::ModuleManager::Impl | inline |
+ TriggerEvent(const EventReference &event) (defined in GpgFrontend::Module::ModuleManager::Impl) | GpgFrontend::Module::ModuleManager::Impl | inline |
UpsertRTValue(Namespace n, Key k, std::any v) -> bool (defined in GpgFrontend::Module::ModuleManager::Impl) | GpgFrontend::Module::ModuleManager::Impl | inline |
~Impl()=default (defined in GpgFrontend::Module::ModuleManager::Impl) | GpgFrontend::Module::ModuleManager::Impl | |
diff --git a/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html b/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html
index 3833565d..262c284e 100644
--- a/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html
+++ b/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html
@@ -119,12 +119,12 @@ void RegisterModule (c
|
void | ListenEvent (const ModuleIdentifier &module_id, const EventIdentifier &event_id) |
|
-
-void | TriggerEvent (const EventRefrernce &event) |
- |
-
-auto | SearchEvent (EventTriggerIdentifier trigger_id) -> std::optional< EventRefrernce > |
- |
+
+void | TriggerEvent (const EventReference &event) |
+ |
+
+auto | SearchEvent (EventTriggerIdentifier trigger_id) -> std::optional< EventReference > |
+ |
auto | GetModuleListening (ModuleIdentifier module_id) -> QList< EventIdentifier > |
|
diff --git a/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.js b/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.js
index 2579df21..cf0a8a28 100644
--- a/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.js
+++ b/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.js
@@ -16,9 +16,9 @@ var classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl =
[ "LoadAndRegisterModule", "classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a4aa0a8ec0bdbbd938da5052dc101be8b", null ],
[ "RegisterModule", "classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a701c5a2ac5ecbad2f7748692c913227e", null ],
[ "RetrieveRTValue", "classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a08a6d06da083c96e12c6117eeb1a9d73", null ],
- [ "SearchEvent", "classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#ada2e879d721026aa1b37e66c16501544", null ],
+ [ "SearchEvent", "classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a01eadb53513afb01c88dc3f97a6c2459", null ],
[ "SearchModule", "classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a752848641e5bac2096d0d40264f59f41", null ],
- [ "TriggerEvent", "classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a41f8154e4d1e211cc1dbc9ba5d847e89", null ],
+ [ "TriggerEvent", "classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#ac15fef1d9b22075e819855e4b4c09a52", null ],
[ "UpsertRTValue", "classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#ac640531756c26386d6353293b420851e", null ],
[ "global_module_manager", "classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a3075eef2bb18d65e051d4ccb6c601a69", null ],
[ "gmc_", "classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#ac030cab7dc39e07c5a198ba4d2ad8c1a", null ],
diff --git a/docs/html/classGpgFrontend_1_1Module_1_1Module_1_1Impl-members.html b/docs/html/classGpgFrontend_1_1Module_1_1Module_1_1Impl-members.html
index c497270c..482421b5 100644
--- a/docs/html/classGpgFrontend_1_1Module_1_1Module_1_1Impl-members.html
+++ b/docs/html/classGpgFrontend_1_1Module_1_1Module_1_1Impl-members.html
@@ -93,7 +93,7 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1Module_1_1Module_1
Active() -> int (defined in GpgFrontend::Module::Module::Impl) | GpgFrontend::Module::Module::Impl | inline |
deactivate_api_ (defined in GpgFrontend::Module::Module::Impl) | GpgFrontend::Module::Module::Impl | private |
Deactive() -> int (defined in GpgFrontend::Module::Module::Impl) | GpgFrontend::Module::Module::Impl | inline |
- Exec(const EventRefrernce &event) -> int (defined in GpgFrontend::Module::Module::Impl) | GpgFrontend::Module::Module::Impl | inline |
+ Exec(const EventReference &event) -> int (defined in GpgFrontend::Module::Module::Impl) | GpgFrontend::Module::Module::Impl | inline |
ExecCallback typedef (defined in GpgFrontend::Module::Module::Impl) | GpgFrontend::Module::Module::Impl | |
execute_api_ (defined in GpgFrontend::Module::Module::Impl) | GpgFrontend::Module::Module::Impl | private |
get_gpc() -> GlobalModuleContext * (defined in GpgFrontend::Module::Module::Impl) | GpgFrontend::Module::Module::Impl | inlineprivate |
diff --git a/docs/html/classGpgFrontend_1_1Module_1_1Module_1_1Impl.html b/docs/html/classGpgFrontend_1_1Module_1_1Module_1_1Impl.html
index acf219b9..8aaef943 100644
--- a/docs/html/classGpgFrontend_1_1Module_1_1Module_1_1Impl.html
+++ b/docs/html/classGpgFrontend_1_1Module_1_1Module_1_1Impl.html
@@ -137,9 +137,9 @@ auto Register () ->
|
auto | Active () -> int |
|
-
-auto | Exec (const EventRefrernce &event) -> int |
- |
+
+auto | Exec (const EventReference &event) -> int |
+ |
auto | Deactive () -> int |
|
diff --git a/docs/html/classGpgFrontend_1_1Module_1_1Module_1_1Impl.js b/docs/html/classGpgFrontend_1_1Module_1_1Module_1_1Impl.js
index c7f7f8aa..94f99501 100644
--- a/docs/html/classGpgFrontend_1_1Module_1_1Module_1_1Impl.js
+++ b/docs/html/classGpgFrontend_1_1Module_1_1Module_1_1Impl.js
@@ -6,7 +6,7 @@ var classGpgFrontend_1_1Module_1_1Module_1_1Impl =
[ "Impl", "classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#a4d559d8a9e86d2029af45bd5412c1951", null ],
[ "Active", "classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#aa55c74b6387af03a60ec3ec749b925c3", null ],
[ "Deactive", "classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#a0cb4bb7366fe1787adbe0590c3188ae6", null ],
- [ "Exec", "classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#a336d8016bd94c87e351c490a9dc5185c", null ],
+ [ "Exec", "classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#ac9ebd95fcd53af661e0461dc7ca0b421", null ],
[ "get_gpc", "classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#a084b0c4e64edd80140b79c576e92af5e", null ],
[ "GetChannel", "classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#a8f874b486d0ce6c7df177df3927f0b19", null ],
[ "GetDefaultChannel", "classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#afe85061d93568cabc555b05fff0e63e7", null ],
diff --git a/docs/html/namespaceGpgFrontend_1_1Module.html b/docs/html/namespaceGpgFrontend_1_1Module.html
index 6ef54fd9..6a4cfca5 100644
--- a/docs/html/namespaceGpgFrontend_1_1Module.html
+++ b/docs/html/namespaceGpgFrontend_1_1Module.html
@@ -110,9 +110,9 @@ Classes
|
-
-using | EventRefrernce = std::shared_ptr< Event > |
- |
+
+using | EventReference = std::shared_ptr< Event > |
+ |
using | EventIdentifier = QString |
|
@@ -161,10 +161,10 @@ using ModuleMangerPtr
|
|
-
+ |
template<typename... Args> |
-auto | MakeEvent (const EventIdentifier &event_id, Args &&... args, Event::EventCallback e_cb) -> EventRefrernce |
- |
+auto | MakeEvent (const EventIdentifier &event_id, Args &&... args, Event::EventCallback e_cb) -> EventReference |
+ |
void | LoadModuleFromPath (const QString &mods_path, bool integrated) |
|
diff --git a/docs/html/namespaceGpgFrontend_1_1Module.js b/docs/html/namespaceGpgFrontend_1_1Module.js
index 58bd52b3..f86fe76d 100644
--- a/docs/html/namespaceGpgFrontend_1_1Module.js
+++ b/docs/html/namespaceGpgFrontend_1_1Module.js
@@ -8,7 +8,7 @@ var namespaceGpgFrontend_1_1Module =
[ "ModuleInitArgs", "structGpgFrontend_1_1Module_1_1ModuleInitArgs.html", "structGpgFrontend_1_1Module_1_1ModuleInitArgs" ],
[ "ModuleManager", "classGpgFrontend_1_1Module_1_1ModuleManager.html", "classGpgFrontend_1_1Module_1_1ModuleManager" ],
[ "EventIdentifier", "namespaceGpgFrontend_1_1Module.html#a0c3d65fe66a8f7e0fc93d0a45a899723", null ],
- [ "EventRefrernce", "namespaceGpgFrontend_1_1Module.html#a340abcd73c766e5691e90e504b3cd975", null ],
+ [ "EventReference", "namespaceGpgFrontend_1_1Module.html#ab5e154977c509d24fd9ef231a39b95cb", null ],
[ "EventTriggerIdentifier", "namespaceGpgFrontend_1_1Module.html#ad158f92b60cffde02f5d5560fd094d5e", null ],
[ "Evnets", "namespaceGpgFrontend_1_1Module.html#a6abb965a4aab039e321111ac39045a56", null ],
[ "GMCPtr", "namespaceGpgFrontend_1_1Module.html#ab93c267b476f6d61f9d4063e3242520a", null ],
@@ -30,7 +30,7 @@ var namespaceGpgFrontend_1_1Module =
[ "LoadGpgFrontendModules", "namespaceGpgFrontend_1_1Module.html#a7f3912fe331338264ae22e434425f59e", null ],
[ "LoadIntegratedMods", "namespaceGpgFrontend_1_1Module.html#a671a34cf78c3b30c9148383885a767ff", null ],
[ "LoadModuleFromPath", "namespaceGpgFrontend_1_1Module.html#abed70603b6806aca6d2db12a2448e1e3", null ],
- [ "MakeEvent", "namespaceGpgFrontend_1_1Module.html#aaafda413ba6ccb2e0e5e866f11cf8dc5", null ],
+ [ "MakeEvent", "namespaceGpgFrontend_1_1Module.html#a8e7cac96091d6c396cf6b1254e8b5735", null ],
[ "RegisterAndActivateModule", "namespaceGpgFrontend_1_1Module.html#a548ad04674384cf77aad447bc7eeaac0", null ],
[ "RegisterModule", "namespaceGpgFrontend_1_1Module.html#a0dd02118df9de6c1a538d8a4a9910129", null ],
[ "RetrieveRTValueTyped", "namespaceGpgFrontend_1_1Module.html#a23a586d557162b22ef92dc316deb1edc", null ],
diff --git a/docs/html/navtreedata.js b/docs/html/navtreedata.js
index 4ded2053..f831576f 100644
--- a/docs/html/navtreedata.js
+++ b/docs/html/navtreedata.js
@@ -58,7 +58,7 @@ var NAVTREEINDEX =
"classGpgFrontend_1_1DataObjectOperator.html#a8adf6fd4aebbb9d59ea94ec65e83169d",
"classGpgFrontend_1_1GpgFileOpera.html#a891024cb4fdd7e9163421d7893c43ef3",
"classGpgFrontend_1_1GpgSubKey.html#ad12e160dbb394a849d6cf31e614a76f5",
-"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a0802bc4e2a177a5eb0a3fb2ea80bd739",
+"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a01eadb53513afb01c88dc3f97a6c2459",
"classGpgFrontend_1_1UI_1_1CommonUtils.html#a0cf35e9d02ff3464cb83435a61d060c2",
"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ab40bd826a5437124f8afd09824606c76",
"classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a5e1fb2810c4b07bd9d8c6fe11c72c526",
@@ -66,7 +66,7 @@ var NAVTREEINDEX =
"classPinEntryDialog.html#affff341e7d03154b56d83a0278aa5143a8e3454c439c642eb78522bf43cd23258",
"namespaceGpgFrontend.html#a92c42a4157576fc2386eb2295120fed3",
"structGpgFrontend_1_1GpgContextInitArgs.html#a2b09f18f4f10ca44370ed204d19de122",
-"structpinentry.html#a86b90be888ce66da86f4628ec406b4e4"
+"structpinentry.html#a7e89de346d3ab6aa146c7cf70c592f07"
];
var SYNCONMSG = 'click to disable panel synchronisation';
diff --git a/docs/html/navtreeindex10.js b/docs/html/navtreeindex10.js
index b1855839..740cde81 100644
--- a/docs/html/navtreeindex10.js
+++ b/docs/html/navtreeindex10.js
@@ -97,7 +97,6 @@ var NAVTREEINDEX10 =
"namespaceGpgFrontend_1_1Module.html#a25a2b6107e70c76ab0731f2685d94745":[1,0,2,0,35],
"namespaceGpgFrontend_1_1Module.html#a326305250e96756a0eb3b8683bc836db":[1,0,2,0,14],
"namespaceGpgFrontend_1_1Module.html#a32bd9a427f0726a36222753a10395059":[1,0,2,0,21],
-"namespaceGpgFrontend_1_1Module.html#a340abcd73c766e5691e90e504b3cd975":[1,0,2,0,8],
"namespaceGpgFrontend_1_1Module.html#a4d85e8bfe4d6ab0193e59535b0d2ed32":[1,0,2,0,13],
"namespaceGpgFrontend_1_1Module.html#a540ad137a43cb000c3b5f200c3edc036":[1,0,2,0,17],
"namespaceGpgFrontend_1_1Module.html#a548ad04674384cf77aad447bc7eeaac0":[1,0,2,0,31],
@@ -107,12 +106,13 @@ var NAVTREEINDEX10 =
"namespaceGpgFrontend_1_1Module.html#a77e47a91519df4f0df6aaa47ba7e04b5":[1,0,2,0,15],
"namespaceGpgFrontend_1_1Module.html#a7f3912fe331338264ae22e434425f59e":[1,0,2,0,27],
"namespaceGpgFrontend_1_1Module.html#a82533db0a36b076ebe095b76636b6df8":[1,0,2,0,19],
+"namespaceGpgFrontend_1_1Module.html#a8e7cac96091d6c396cf6b1254e8b5735":[1,0,2,0,30],
"namespaceGpgFrontend_1_1Module.html#a92a4ccb9246f778143ad3e88d2068d7c":[1,0,2,0,25],
"namespaceGpgFrontend_1_1Module.html#a939c65185b5cabe42e5cd187b3238e2c":[1,0,2,0,20],
"namespaceGpgFrontend_1_1Module.html#a95a3c32ad6b753ea6535c2b299b61b35":[1,0,2,0,26],
"namespaceGpgFrontend_1_1Module.html#a9e9ac88fcd1c94018139dbe11ce21e90":[1,0,2,0,34],
"namespaceGpgFrontend_1_1Module.html#aa21d42624d1f3dc14ada7b1f609a132a":[1,0,2,0,16],
-"namespaceGpgFrontend_1_1Module.html#aaafda413ba6ccb2e0e5e866f11cf8dc5":[1,0,2,0,30],
+"namespaceGpgFrontend_1_1Module.html#ab5e154977c509d24fd9ef231a39b95cb":[1,0,2,0,8],
"namespaceGpgFrontend_1_1Module.html#ab93c267b476f6d61f9d4063e3242520a":[1,0,2,0,11],
"namespaceGpgFrontend_1_1Module.html#abed70603b6806aca6d2db12a2448e1e3":[1,0,2,0,29],
"namespaceGpgFrontend_1_1Module.html#aca4d4541b62bdd408e60d25ac9d77831":[1,0,2,0,18],
diff --git a/docs/html/navtreeindex11.js b/docs/html/navtreeindex11.js
index 1680ecc8..f8263556 100644
--- a/docs/html/navtreeindex11.js
+++ b/docs/html/navtreeindex11.js
@@ -49,6 +49,7 @@ var NAVTREEINDEX11 =
"structGpgFrontend_1_1ModuleSO.html#acd337e60a6f44a5d4f7835d1660c0d74":[2,0,1,59,6],
"structGpgFrontend_1_1ModuleSO.html#ad00b3665fe25d22d3b8d17fd43229978":[2,0,1,59,3],
"structGpgFrontend_1_1ModuleSO.html#adea80e1387cab1147f7855984afc21b7":[2,0,1,59,1],
+"structGpgFrontend_1_1ModuleSO.html#aeb2565c17ffee4c765c9500608f39fa2":[2,0,1,59,7],
"structGpgFrontend_1_1Module_1_1Event_1_1ParameterInitializer.html":[2,0,1,0,0,1],
"structGpgFrontend_1_1Module_1_1Event_1_1ParameterInitializer.html#a65e6295972676a20b6dd8c39328a486a":[2,0,1,0,0,1,0],
"structGpgFrontend_1_1Module_1_1Event_1_1ParameterInitializer.html#ab8ae285de10b5751f6486aef63d3e853":[2,0,1,0,0,1,1],
@@ -195,27 +196,27 @@ var NAVTREEINDEX11 =
"structSoftwareVersion.html#af4f48691c5797f623cd5634580973bd9":[2,0,17,10],
"structSoftwareVersion.html#af95656d8841511839009539799f48704":[2,0,17,7],
"structfmt_1_1formatter_3_01QByteArray_01_4.html":[2,0,0,1],
-"structfmt_1_1formatter_3_01QByteArray_01_4.html#a93b3bf7f7b33dddcc7b240c18ecd48b7":[2,0,0,1,2],
"structfmt_1_1formatter_3_01QByteArray_01_4.html#a93b3bf7f7b33dddcc7b240c18ecd48b7":[2,0,0,1,0],
-"structfmt_1_1formatter_3_01QByteArray_01_4.html#a93b3bf7f7b33dddcc7b240c18ecd48b7":[2,0,0,1,3],
-"structfmt_1_1formatter_3_01QByteArray_01_4.html#a93b3bf7f7b33dddcc7b240c18ecd48b7":[2,0,0,1,4],
+"structfmt_1_1formatter_3_01QByteArray_01_4.html#a93b3bf7f7b33dddcc7b240c18ecd48b7":[2,0,0,1,2],
"structfmt_1_1formatter_3_01QByteArray_01_4.html#a93b3bf7f7b33dddcc7b240c18ecd48b7":[2,0,0,1,1],
-"structfmt_1_1formatter_3_01QByteArray_01_4.html#ac66a3903f2bc7caa320592840a9a2c91":[2,0,0,1,6],
-"structfmt_1_1formatter_3_01QByteArray_01_4.html#ac66a3903f2bc7caa320592840a9a2c91":[2,0,0,1,5],
-"structfmt_1_1formatter_3_01QByteArray_01_4.html#ac66a3903f2bc7caa320592840a9a2c91":[2,0,0,1,8],
+"structfmt_1_1formatter_3_01QByteArray_01_4.html#a93b3bf7f7b33dddcc7b240c18ecd48b7":[2,0,0,1,4],
+"structfmt_1_1formatter_3_01QByteArray_01_4.html#a93b3bf7f7b33dddcc7b240c18ecd48b7":[2,0,0,1,3],
"structfmt_1_1formatter_3_01QByteArray_01_4.html#ac66a3903f2bc7caa320592840a9a2c91":[2,0,0,1,7],
+"structfmt_1_1formatter_3_01QByteArray_01_4.html#ac66a3903f2bc7caa320592840a9a2c91":[2,0,0,1,5],
+"structfmt_1_1formatter_3_01QByteArray_01_4.html#ac66a3903f2bc7caa320592840a9a2c91":[2,0,0,1,6],
+"structfmt_1_1formatter_3_01QByteArray_01_4.html#ac66a3903f2bc7caa320592840a9a2c91":[2,0,0,1,8],
"structfmt_1_1formatter_3_01QByteArray_01_4.html#ac66a3903f2bc7caa320592840a9a2c91":[2,0,0,1,9],
"structfmt_1_1formatter_3_01QString_01_4.html":[2,0,0,0],
-"structfmt_1_1formatter_3_01QString_01_4.html#a0a51b8f0b49cfafb8bf46c32c5e7ea3d":[2,0,0,0,9],
-"structfmt_1_1formatter_3_01QString_01_4.html#a0a51b8f0b49cfafb8bf46c32c5e7ea3d":[2,0,0,0,5],
-"structfmt_1_1formatter_3_01QString_01_4.html#a0a51b8f0b49cfafb8bf46c32c5e7ea3d":[2,0,0,0,8],
"structfmt_1_1formatter_3_01QString_01_4.html#a0a51b8f0b49cfafb8bf46c32c5e7ea3d":[2,0,0,0,7],
+"structfmt_1_1formatter_3_01QString_01_4.html#a0a51b8f0b49cfafb8bf46c32c5e7ea3d":[2,0,0,0,8],
+"structfmt_1_1formatter_3_01QString_01_4.html#a0a51b8f0b49cfafb8bf46c32c5e7ea3d":[2,0,0,0,9],
"structfmt_1_1formatter_3_01QString_01_4.html#a0a51b8f0b49cfafb8bf46c32c5e7ea3d":[2,0,0,0,6],
-"structfmt_1_1formatter_3_01QString_01_4.html#aca03925995464275861427727a4e709a":[2,0,0,0,3],
-"structfmt_1_1formatter_3_01QString_01_4.html#aca03925995464275861427727a4e709a":[2,0,0,0,1],
-"structfmt_1_1formatter_3_01QString_01_4.html#aca03925995464275861427727a4e709a":[2,0,0,0,0],
+"structfmt_1_1formatter_3_01QString_01_4.html#a0a51b8f0b49cfafb8bf46c32c5e7ea3d":[2,0,0,0,5],
"structfmt_1_1formatter_3_01QString_01_4.html#aca03925995464275861427727a4e709a":[2,0,0,0,2],
+"structfmt_1_1formatter_3_01QString_01_4.html#aca03925995464275861427727a4e709a":[2,0,0,0,0],
+"structfmt_1_1formatter_3_01QString_01_4.html#aca03925995464275861427727a4e709a":[2,0,0,0,3],
"structfmt_1_1formatter_3_01QString_01_4.html#aca03925995464275861427727a4e709a":[2,0,0,0,4],
+"structfmt_1_1formatter_3_01QString_01_4.html#aca03925995464275861427727a4e709a":[2,0,0,0,1],
"structpinentry.html":[2,0,12],
"structpinentry.html#a01d023d70058225507186078938e26f7":[2,0,12,32],
"structpinentry.html#a0246a61cab9de3ab251b0d481a2e0f55":[2,0,12,56],
@@ -248,6 +249,5 @@ var NAVTREEINDEX11 =
"structpinentry.html#a60be55e3699b1cb1832ad2a3ad0d2230":[2,0,12,39],
"structpinentry.html#a6395cfc79de85c30660ca0ed9e39d6e2":[2,0,12,36],
"structpinentry.html#a6810e60a64b360e46773f419403fb97e":[2,0,12,65],
-"structpinentry.html#a6c2f16572834bdc885ca5534ed886591":[2,0,12,11],
-"structpinentry.html#a7e89de346d3ab6aa146c7cf70c592f07":[2,0,12,55]
+"structpinentry.html#a6c2f16572834bdc885ca5534ed886591":[2,0,12,11]
};
diff --git a/docs/html/navtreeindex12.js b/docs/html/navtreeindex12.js
index fc6f26ac..0020b22d 100644
--- a/docs/html/navtreeindex12.js
+++ b/docs/html/navtreeindex12.js
@@ -1,5 +1,6 @@
var NAVTREEINDEX12 =
{
+"structpinentry.html#a7e89de346d3ab6aa146c7cf70c592f07":[2,0,12,55],
"structpinentry.html#a86b90be888ce66da86f4628ec406b4e4":[2,0,12,60],
"structpinentry.html#a879bd98959f2681f32771838864d8c4a":[2,0,12,5],
"structpinentry.html#a8befa3521f3c8501a24d456aa18b709c":[2,0,12,15],
@@ -41,7 +42,7 @@ var NAVTREEINDEX12 =
"structsecmem_1_1alloc_1_1rebind.html#ad8d07ef1da80f557d0814db49a919b14":[2,0,2,0,0,0],
"ver__check_2GFModuleExport_8h_source.html":[3,0,0,1,0,1,0],
"ver__check_2QtLoggerFmt_8h_source.html":[3,0,0,1,0,1,1],
+"":[1,0,0],
"":[1,0,3],
-"":[1,0,1],
-"":[1,0,0]
+"":[1,0,1]
};
diff --git a/docs/html/navtreeindex3.js b/docs/html/navtreeindex3.js
index a467ecb2..d6451f98 100644
--- a/docs/html/navtreeindex3.js
+++ b/docs/html/navtreeindex3.js
@@ -124,43 +124,43 @@ var NAVTREEINDEX3 =
"classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#a3834836325dab26902e9d66770ce895f":[2,0,1,0,1,15],
"classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#a3d26d680dfb5036832852ccab2e31cd2":[2,0,1,0,1,13],
"classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#a446db76f3518eb46133e14366ff13a05":[2,0,1,0,1,7],
+"classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#a4c1d56338f4b4a8d594c4ecc8aac420d":[2,0,1,0,1,16],
"classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#a4de89b6132d184cf94444a94634a38d8":[2,0,1,0,1,3],
"classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#a627cfb3a280954d43ed09aa16d982e08":[2,0,1,0,1,6],
"classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#a683639b9af7cf521bc9ffe4a5fc46cea":[2,0,1,0,1,11],
"classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#a73d55999acdcd0b7ac58fc99d61e232a":[2,0,1,0,1,4],
"classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#a99414d575c55ac1f61a44f077db06028":[2,0,1,0,1,12],
-"classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#aa11772c7ecb3fdc8545a67ceb8c6369b":[2,0,1,0,1,16],
-"classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#aa656d6d835b2ccb20494ff580a7cafac":[2,0,1,0,1,18],
"classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#aadce2e61acda3c4191423f28628c56bf":[2,0,1,0,1,5],
"classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#ac10c8f007eaf7dca6fe33e6e7af757b0":[2,0,1,0,1,2],
"classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#ac488a3f4e3cbd668fd9ce84b39078cbb":[2,0,1,0,1,17],
+"classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#ad9c9b7ffc770046ff1e6486ef1fc4415":[2,0,1,0,1,18],
"classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#ae2e989ee80541129e050c86a48ed8f14":[2,0,1,0,1,9],
"classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#aec9f17c91c5cb6da83b3d1a5af800895":[2,0,1,0,1,8],
"classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html":[2,0,1,0,1,0],
"classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#a0388268ec4a003a465f76cb9d3a85b13":[2,0,1,0,1,0,7],
"classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#a07a95697a3653f22d5270708ede1f213":[2,0,1,0,1,0,8],
+"classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#a07acdf211b98d8e917abb19406e9507d":[2,0,1,0,1,0,20],
"classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#a11dde09190cfa31bd19efad5dcacf214":[2,0,1,0,1,0,17],
-"classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#a36f9cf218e3cd84658cbd61116d34a96":[2,0,1,0,1,0,24],
"classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#a4479bbccc6929a1c096f764d9c13c02f":[2,0,1,0,1,0,15],
"classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#a4b982badccf837f3efe10b1c7e2428b5":[2,0,1,0,1,0,12],
"classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#a574eafbe2bd2d84abc1d59d3472f0770":[2,0,1,0,1,0,2],
"classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#a61e810f356cf0e5073dc5c83bbbbab84":[2,0,1,0,1,0,9],
"classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#a66c9166ec3af4f15dd3af00e57ced049":[2,0,1,0,1,0,14],
+"classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#a8b1169966c7200118373bb56d555a89c":[2,0,1,0,1,0,24],
"classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#a8e3cd9ab8dc16a2f7431618bfbc09520":[2,0,1,0,1,0,25],
"classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#a90e5698590ebc999c67e4966a7835c5c":[2,0,1,0,1,0,11],
"classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#aa4262354dcf1d56bbd732afbac5b1e82":[2,0,1,0,1,0,13],
"classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#aaa6ec2fcc2569cd1b22f419feadaa568":[2,0,1,0,1,0,23],
"classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#aad554eb8e681ed9c91fee58a255bbaca":[2,0,1,0,1,0,1],
"classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#ab1b61e3fb3bbd9c8f2c209751bd470d2":[2,0,1,0,1,0,10],
-"classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#ab3e05b1a9bf5f03ece0caa1fc8809b50":[2,0,1,0,1,0,18],
"classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#ab84d50a8d389015d29115d28ab8edbde":[2,0,1,0,1,0,5],
"classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#abba0e51c3af19398cfca723d15b27b58":[2,0,1,0,1,0,19],
"classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#abc363ae2bc81fbfed0f08315023a2155":[2,0,1,0,1,0,16],
"classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#ac3262026e43f2891f74da6dd5a7f38a0":[2,0,1,0,1,0,6],
"classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#ac66eb6ed5e8d5742a5d271647bf10f85":[2,0,1,0,1,0,4],
-"classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#ac7991d6d2022915212987b7a2d330446":[2,0,1,0,1,0,20],
"classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#acc10c7acd6244ef93e85ffb6c4ad267e":[2,0,1,0,1,0,21],
"classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#ad8285c96435bc2431481828ca943ce49":[2,0,1,0,1,0,22],
+"classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#ae3f001188f83e173fd84f89e3973bef2":[2,0,1,0,1,0,18],
"classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#ae72741f7c324660c852930dbbdc2b031":[2,0,1,0,1,0,3],
"classGpgFrontend_1_1Module_1_1GlobalRegisterTable.html":[2,0,1,0,2],
"classGpgFrontend_1_1Module_1_1GlobalRegisterTable.html#a77bee043c1f7549c11b74968f31f4ac2":[2,0,1,0,2,5],
@@ -218,17 +218,16 @@ var NAVTREEINDEX3 =
"classGpgFrontend_1_1Module_1_1Module.html#a82105c87c45f3d58736e106be271910f":[2,0,1,0,4,10],
"classGpgFrontend_1_1Module_1_1Module.html#a87c631643d16a87fcf15895fbc0c53c7":[2,0,1,0,4,16],
"classGpgFrontend_1_1Module_1_1Module.html#a9951cd256d16e5117b49131430499ad1":[2,0,1,0,4,3],
-"classGpgFrontend_1_1Module_1_1Module.html#aaa782445f133f0ad740cdfee687f09a1":[2,0,1,0,4,6],
"classGpgFrontend_1_1Module_1_1Module.html#ab16513c547ee594ebb78c8d67ce8b447":[2,0,1,0,4,8],
"classGpgFrontend_1_1Module_1_1Module.html#ab721af24599d02f2f62bfbc139b213fa":[2,0,1,0,4,12],
"classGpgFrontend_1_1Module_1_1Module.html#aba8d8690179721ddcbcabac04a72a157":[2,0,1,0,4,4],
"classGpgFrontend_1_1Module_1_1Module.html#ac0ff5afa799ff2e5d41fa35dd39694aa":[2,0,1,0,4,20],
"classGpgFrontend_1_1Module_1_1Module.html#ac4d6e961b19129767c69be023853c13c":[2,0,1,0,4,19],
"classGpgFrontend_1_1Module_1_1Module.html#aca010db52c44b025a03e76de4e1f9088":[2,0,1,0,4,1],
+"classGpgFrontend_1_1Module_1_1Module.html#af0b52299d613acc0c1df7d542b00dccd":[2,0,1,0,4,6],
"classGpgFrontend_1_1Module_1_1Module.html#af4a6decab6e9b05b5c456d62ca588e92":[2,0,1,0,4,7],
"classGpgFrontend_1_1Module_1_1Module.html#af6067f27d8dfa6731e1f38384d13085c":[2,0,1,0,4,18],
"classGpgFrontend_1_1Module_1_1ModuleManager.html":[2,0,1,0,6],
-"classGpgFrontend_1_1Module_1_1ModuleManager.html#a1a1e0d46101d6f1dd6ca2751cf77577e":[2,0,1,0,6,17],
"classGpgFrontend_1_1Module_1_1ModuleManager.html#a20d230e88684b09392a2a2f034248ddf":[2,0,1,0,6,2],
"classGpgFrontend_1_1Module_1_1ModuleManager.html#a2834cd112b032ae0e62de81050d1318e":[2,0,1,0,6,16],
"classGpgFrontend_1_1Module_1_1ModuleManager.html#a28535b400738a4601ee836603aa13480":[2,0,1,0,6,11],
@@ -246,8 +245,9 @@ var NAVTREEINDEX3 =
"classGpgFrontend_1_1Module_1_1ModuleManager.html#ac041f5f94e2f258dd0220d8e6f245219":[2,0,1,0,6,8],
"classGpgFrontend_1_1Module_1_1ModuleManager.html#ac3abb90991be2e924a8ab0d4d7b6953d":[2,0,1,0,6,3],
"classGpgFrontend_1_1Module_1_1ModuleManager.html#ad699694b74ada1edd1fcf9d094c92a7d":[2,0,1,0,6,1],
-"classGpgFrontend_1_1Module_1_1ModuleManager.html#ad802fe563954717b33ab85f5a781c06f":[2,0,1,0,6,19],
"classGpgFrontend_1_1Module_1_1ModuleManager.html#ae04a5eac55ad8c96eca86e59eb0ef88d":[2,0,1,0,6,10],
+"classGpgFrontend_1_1Module_1_1ModuleManager.html#ae4e4a6c3cd06de7da34b59822d893ecc":[2,0,1,0,6,19],
"classGpgFrontend_1_1Module_1_1ModuleManager.html#af4f2570fbed76fb484e9ec5d3e8b703b":[2,0,1,0,6,4],
+"classGpgFrontend_1_1Module_1_1ModuleManager.html#afa0844590ddfdc6e44cbea4303f34382":[2,0,1,0,6,17],
"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html":[2,0,1,0,6,0]
};
diff --git a/docs/html/navtreeindex4.js b/docs/html/navtreeindex4.js
index 05ad0932..95023b91 100644
--- a/docs/html/navtreeindex4.js
+++ b/docs/html/navtreeindex4.js
@@ -1,9 +1,9 @@
var NAVTREEINDEX4 =
{
+"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a01eadb53513afb01c88dc3f97a6c2459":[2,0,1,0,6,0,16],
"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a0802bc4e2a177a5eb0a3fb2ea80bd739":[2,0,1,0,6,0,1],
"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a08a6d06da083c96e12c6117eeb1a9d73":[2,0,1,0,6,0,15],
"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a3075eef2bb18d65e051d4ccb6c601a69":[2,0,1,0,6,0,20],
-"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a41f8154e4d1e211cc1dbc9ba5d847e89":[2,0,1,0,6,0,18],
"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a4aa0a8ec0bdbbd938da5052dc101be8b":[2,0,1,0,6,0,13],
"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a56dc1b8575049fe79ac696309839748c":[2,0,1,0,6,0,3],
"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a61e2aa9cc72619426fd957b4945c593e":[2,0,1,0,6,0,2],
@@ -19,11 +19,11 @@ var NAVTREEINDEX4 =
"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#ab2ba2f6e4be6000bb9fbffe81824f5c2":[2,0,1,0,6,0,9],
"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#ab78b9f24728188dc9e884d0cbc284eb7":[2,0,1,0,6,0,22],
"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#ac030cab7dc39e07c5a198ba4d2ad8c1a":[2,0,1,0,6,0,21],
+"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#ac15fef1d9b22075e819855e4b4c09a52":[2,0,1,0,6,0,18],
"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#ac25e0c12e44b13b436560e14ba6d2d00":[2,0,1,0,6,0,6],
"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#ac640531756c26386d6353293b420851e":[2,0,1,0,6,0,19],
"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#acdf788c1494dc722c2606783310b0238":[2,0,1,0,6,0,0],
"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#ad97457a3e8d7157d7aa355283644c623":[2,0,1,0,6,0,23],
-"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#ada2e879d721026aa1b37e66c16501544":[2,0,1,0,6,0,16],
"classGpgFrontend_1_1Module_1_1Module_1_1Impl.html":[2,0,1,0,4,0],
"classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#a00108e0f2da38114e9ddfb558bde9791":[2,0,1,0,4,0,42],
"classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#a035bbadd3661e4259b3f43b5be792b23":[2,0,1,0,4,0,30],
@@ -35,7 +35,6 @@ var NAVTREEINDEX4 =
"classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#a2fd7e33c4dc60b01f6500991817abc62":[2,0,1,0,4,0,27],
"classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#a3085b9d88920f32401426d8fa78785e4":[2,0,1,0,4,0,16],
"classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#a332440f2335b46eb4c1c2173bdefe01f":[2,0,1,0,4,0,22],
-"classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#a336d8016bd94c87e351c490a9dc5185c":[2,0,1,0,4,0,6],
"classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#a3709ab70918190f6f21ce403c547e775":[2,0,1,0,4,0,31],
"classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#a47fb418654519e7e6a8a7b2433d73991":[2,0,1,0,4,0,12],
"classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#a4d559d8a9e86d2029af45bd5412c1951":[2,0,1,0,4,0,3],
@@ -61,6 +60,7 @@ var NAVTREEINDEX4 =
"classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#ac05664a662e9bbdb1a5831d6555e609c":[2,0,1,0,4,0,43],
"classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#ac1163893225f8c16b5945e6bf1489282":[2,0,1,0,4,0,2],
"classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#ac7c23924a53a3e2acd149e2a6813e69c":[2,0,1,0,4,0,25],
+"classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#ac9ebd95fcd53af661e0461dc7ca0b421":[2,0,1,0,4,0,6],
"classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#ad58ee3fef7e93f74aadf8ab3227db5ed":[2,0,1,0,4,0,36],
"classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#ad67c082d87a8867de27278befb29557c":[2,0,1,0,4,0,33],
"classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#adaa19e79a69157b20688ba26a7f50d64":[2,0,1,0,4,0,20],
diff --git a/docs/html/navtreeindex9.js b/docs/html/navtreeindex9.js
index 9737e6c8..baabad28 100644
--- a/docs/html/navtreeindex9.js
+++ b/docs/html/navtreeindex9.js
@@ -111,8 +111,8 @@ var NAVTREEINDEX9 =
"dir_fc6c58bf49530122ab17df13a9869378.html":[3,0,0,0,0,2],
"dir_fd71accbf528c1576ca21e7ec5716833.html":[3,0,0,0,4],
"files.html":[3,0],
-"functions.html":[2,3,0,0],
"functions.html":[2,3,0],
+"functions.html":[2,3,0,0],
"functions_b.html":[2,3,0,1],
"functions_c.html":[2,3,0,2],
"functions_d.html":[2,3,0,3],
@@ -163,8 +163,8 @@ var NAVTREEINDEX9 =
"gpg__info_2GFModuleExport_8h_source.html":[3,0,0,1,0,0,0],
"gpg__info_2QtLoggerFmt_8h_source.html":[3,0,0,1,0,0,3],
"hierarchy.html":[2,2],
-"index.html":[],
"index.html":[0],
+"index.html":[],
"init_8h_source.html":[3,0,0,8],
"main_8h_source.html":[3,0,0,9],
"namespaceGpgFrontend.html":[1,0,2],
diff --git a/docs/html/search/all_6.js b/docs/html/search/all_6.js
index 7dea871f..2a602ab5 100644
--- a/docs/html/search/all_6.js
+++ b/docs/html/search/all_6.js
@@ -60,8 +60,8 @@ var searchData=
['gethashalgo_243',['GetHashAlgo',['../classGpgFrontend_1_1GpgSignature.html#a23084904b84dd0d2a619565c0ae18d2e',1,'GpgFrontend::GpgSignature']]],
['gethttprequestuseragent_244',['GetHttpRequestUserAgent',['../namespaceGpgFrontend.html#aa0393307275afa9b4f27f7ff0d74f9ae',1,'GpgFrontend']]],
['gethumanfriendlyfilesize_245',['GetHumanFriendlyFileSize',['../namespaceGpgFrontend.html#a5b86eb3adc57fa5f55e9f55a69031f71',1,'GpgFrontend']]],
- ['getid_246',['GetId',['../classGpgFrontend_1_1GpgKey.html#a3dec62e06f6f8f43059b293ad192e0c1',1,'GpgFrontend::GpgKey']]],
- ['getid_247',['GetID',['../classGpgFrontend_1_1GpgSubKey.html#a28be04ec888468dbd7341aa4cb28785d',1,'GpgFrontend::GpgSubKey']]],
+ ['getid_246',['GetID',['../classGpgFrontend_1_1GpgSubKey.html#a28be04ec888468dbd7341aa4cb28785d',1,'GpgFrontend::GpgSubKey']]],
+ ['getid_247',['GetId',['../classGpgFrontend_1_1GpgKey.html#a3dec62e06f6f8f43059b293ad192e0c1',1,'GpgFrontend::GpgKey']]],
['getinstance_248',['GetInstance',['../classGpgFrontend_1_1UI_1_1UISignalStation.html#a6294f44348070707b4b6abcfd1b6509d',1,'GpgFrontend::UI::UISignalStation::GetInstance()'],['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a530688726ce3a319de8d4bdcc291db87',1,'GpgFrontend::UI::CommonUtils::GetInstance()'],['../classGpgFrontend_1_1CoreSignalStation.html#a4ab63c97545b007d2b720c9b59ed1c47',1,'GpgFrontend::CoreSignalStation::GetInstance()'],['../classGpgFrontend_1_1SingletonStorageCollection.html#a4bba0f1f2880648909af6824bcef9568',1,'GpgFrontend::SingletonStorageCollection::GetInstance()'],['../classGpgFrontend_1_1SingletonStorageCollection_1_1Impl.html#a9cdea3d2b2d2776f241d2a871d233dd5',1,'GpgFrontend::SingletonStorageCollection::Impl::GetInstance()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#ac963fee992753970bfb5c81608d4070f',1,'GpgFrontend::SingletonFunctionObject::GetInstance()']]],
['getinvalid_249',['GetInvalid',['../classGpgFrontend_1_1GpgUID.html#a1e7436091a5de3c08727608880afedd2',1,'GpgFrontend::GpgUID']]],
['getkey_250',['GetKey',['../classGpgFrontend_1_1GpgKeyGetter.html#a74075299f1dee8cbccbf46939a1871f5',1,'GpgFrontend::GpgKeyGetter']]],
diff --git a/docs/html/search/functions_6.js b/docs/html/search/functions_6.js
index 46f5c955..242fb85e 100644
--- a/docs/html/search/functions_6.js
+++ b/docs/html/search/functions_6.js
@@ -58,8 +58,8 @@ var searchData=
['gethashalgo_1223',['GetHashAlgo',['../classGpgFrontend_1_1GpgSignature.html#a23084904b84dd0d2a619565c0ae18d2e',1,'GpgFrontend::GpgSignature']]],
['gethttprequestuseragent_1224',['GetHttpRequestUserAgent',['../namespaceGpgFrontend.html#aa0393307275afa9b4f27f7ff0d74f9ae',1,'GpgFrontend']]],
['gethumanfriendlyfilesize_1225',['GetHumanFriendlyFileSize',['../namespaceGpgFrontend.html#a5b86eb3adc57fa5f55e9f55a69031f71',1,'GpgFrontend']]],
- ['getid_1226',['GetId',['../classGpgFrontend_1_1GpgKey.html#a3dec62e06f6f8f43059b293ad192e0c1',1,'GpgFrontend::GpgKey']]],
- ['getid_1227',['GetID',['../classGpgFrontend_1_1GpgSubKey.html#a28be04ec888468dbd7341aa4cb28785d',1,'GpgFrontend::GpgSubKey']]],
+ ['getid_1226',['GetID',['../classGpgFrontend_1_1GpgSubKey.html#a28be04ec888468dbd7341aa4cb28785d',1,'GpgFrontend::GpgSubKey']]],
+ ['getid_1227',['GetId',['../classGpgFrontend_1_1GpgKey.html#a3dec62e06f6f8f43059b293ad192e0c1',1,'GpgFrontend::GpgKey']]],
['getinstance_1228',['GetInstance',['../classGpgFrontend_1_1SingletonFunctionObject.html#ac963fee992753970bfb5c81608d4070f',1,'GpgFrontend::SingletonFunctionObject::GetInstance()'],['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a530688726ce3a319de8d4bdcc291db87',1,'GpgFrontend::UI::CommonUtils::GetInstance()'],['../classGpgFrontend_1_1UI_1_1UISignalStation.html#a6294f44348070707b4b6abcfd1b6509d',1,'GpgFrontend::UI::UISignalStation::GetInstance()'],['../classGpgFrontend_1_1CoreSignalStation.html#a4ab63c97545b007d2b720c9b59ed1c47',1,'GpgFrontend::CoreSignalStation::GetInstance()'],['../classGpgFrontend_1_1SingletonStorageCollection.html#a4bba0f1f2880648909af6824bcef9568',1,'GpgFrontend::SingletonStorageCollection::GetInstance()'],['../classGpgFrontend_1_1SingletonStorageCollection_1_1Impl.html#a9cdea3d2b2d2776f241d2a871d233dd5',1,'GpgFrontend::SingletonStorageCollection::Impl::GetInstance()']]],
['getinvalid_1229',['GetInvalid',['../classGpgFrontend_1_1GpgUID.html#a1e7436091a5de3c08727608880afedd2',1,'GpgFrontend::GpgUID']]],
['getkey_1230',['GetKey',['../classGpgFrontend_1_1GpgKeyGetter.html#a74075299f1dee8cbccbf46939a1871f5',1,'GpgFrontend::GpgKeyGetter']]],
diff --git a/docs/html/structGpgFrontend_1_1ModuleSO-members.html b/docs/html/structGpgFrontend_1_1ModuleSO-members.html
index eb21943c..a449dbbd 100644
--- a/docs/html/structGpgFrontend_1_1ModuleSO-members.html
+++ b/docs/html/structGpgFrontend_1_1ModuleSO-members.html
@@ -95,7 +95,8 @@ $(document).ready(function(){initNavTree('structGpgFrontend_1_1ModuleSO.html',''
module_version (defined in GpgFrontend::ModuleSO) | GpgFrontend::ModuleSO | |
ModuleSO()=default (defined in GpgFrontend::ModuleSO) | GpgFrontend::ModuleSO | |
ModuleSO(const QJsonObject &j) (defined in GpgFrontend::ModuleSO) | GpgFrontend::ModuleSO | inlineexplicit |
- ToJson() const -> QJsonObject (defined in GpgFrontend::ModuleSO) | GpgFrontend::ModuleSO | inline |
+ set_by_user (defined in GpgFrontend::ModuleSO) | GpgFrontend::ModuleSO | |
+ ToJson() const -> QJsonObject (defined in GpgFrontend::ModuleSO) | GpgFrontend::ModuleSO | inline |
diff --git a/docs/html/structGpgFrontend_1_1ModuleSO.html b/docs/html/structGpgFrontend_1_1ModuleSO.html
index e8b9bb2f..5ba1d630 100644
--- a/docs/html/structGpgFrontend_1_1ModuleSO.html
+++ b/docs/html/structGpgFrontend_1_1ModuleSO.html
@@ -95,7 +95,7 @@ Collaboration diagram for GpgFrontend::ModuleSO:
@@ -122,6 +122,9 @@ QString module_hash |
bool | auto_activate |
|
+
+bool | set_by_user |
+ |
The documentation for this struct was generated from the following file:
- src/core/struct/settings_object/ModuleSO.h
diff --git a/docs/html/structGpgFrontend_1_1ModuleSO.js b/docs/html/structGpgFrontend_1_1ModuleSO.js
index c8fb9ea9..375fa3c4 100644
--- a/docs/html/structGpgFrontend_1_1ModuleSO.js
+++ b/docs/html/structGpgFrontend_1_1ModuleSO.js
@@ -6,5 +6,6 @@ var structGpgFrontend_1_1ModuleSO =
[ "auto_activate", "structGpgFrontend_1_1ModuleSO.html#ad00b3665fe25d22d3b8d17fd43229978", null ],
[ "module_hash", "structGpgFrontend_1_1ModuleSO.html#a27c74ad3458979d47c05a68e8f2c0d48", null ],
[ "module_id", "structGpgFrontend_1_1ModuleSO.html#a93966f41306e14c3415d3e872bb710ef", null ],
- [ "module_version", "structGpgFrontend_1_1ModuleSO.html#acd337e60a6f44a5d4f7835d1660c0d74", null ]
+ [ "module_version", "structGpgFrontend_1_1ModuleSO.html#acd337e60a6f44a5d4f7835d1660c0d74", null ],
+ [ "set_by_user", "structGpgFrontend_1_1ModuleSO.html#aeb2565c17ffee4c765c9500608f39fa2", null ]
];
\ No newline at end of file
diff --git a/docs/html/structGpgFrontend_1_1ModuleSO__coll__graph.map b/docs/html/structGpgFrontend_1_1ModuleSO__coll__graph.map
index 104d21d8..d144a519 100644
--- a/docs/html/structGpgFrontend_1_1ModuleSO__coll__graph.map
+++ b/docs/html/structGpgFrontend_1_1ModuleSO__coll__graph.map
@@ -1,3 +1,3 @@
diff --git a/docs/html/structGpgFrontend_1_1ModuleSO__coll__graph.md5 b/docs/html/structGpgFrontend_1_1ModuleSO__coll__graph.md5
index 04f106cf..8daeebb4 100644
--- a/docs/html/structGpgFrontend_1_1ModuleSO__coll__graph.md5
+++ b/docs/html/structGpgFrontend_1_1ModuleSO__coll__graph.md5
@@ -1 +1 @@
-dd6f2a8b6cc9f05dfbaccf63727f211a
\ No newline at end of file
+5782b5a7a42f8be4ac132c030921c5d4
\ No newline at end of file
diff --git a/docs/html/structGpgFrontend_1_1ModuleSO__coll__graph.png b/docs/html/structGpgFrontend_1_1ModuleSO__coll__graph.png
index 09d11507..a2632798 100644
Binary files a/docs/html/structGpgFrontend_1_1ModuleSO__coll__graph.png and b/docs/html/structGpgFrontend_1_1ModuleSO__coll__graph.png differ
diff --git a/docs/latex/classCapsLockWatcher_1_1Private__coll__graph.pdf b/docs/latex/classCapsLockWatcher_1_1Private__coll__graph.pdf
index 355772fb..5ae43aab 100644
Binary files a/docs/latex/classCapsLockWatcher_1_1Private__coll__graph.pdf and b/docs/latex/classCapsLockWatcher_1_1Private__coll__graph.pdf differ
diff --git a/docs/latex/classCapsLockWatcher__coll__graph.pdf b/docs/latex/classCapsLockWatcher__coll__graph.pdf
index 082c018c..01b9eba6 100644
Binary files a/docs/latex/classCapsLockWatcher__coll__graph.pdf and b/docs/latex/classCapsLockWatcher__coll__graph.pdf differ
diff --git a/docs/latex/classCapsLockWatcher__inherit__graph.pdf b/docs/latex/classCapsLockWatcher__inherit__graph.pdf
index 467a6b68..fc9a4c2a 100644
Binary files a/docs/latex/classCapsLockWatcher__inherit__graph.pdf and b/docs/latex/classCapsLockWatcher__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1ArchiveFileOperator__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1ArchiveFileOperator__coll__graph.pdf
index c2d06191..0668ca10 100644
Binary files a/docs/latex/classGpgFrontend_1_1ArchiveFileOperator__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1ArchiveFileOperator__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1CacheManager_1_1Impl__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1CacheManager_1_1Impl__coll__graph.pdf
index 062a5022..004b4751 100644
Binary files a/docs/latex/classGpgFrontend_1_1CacheManager_1_1Impl__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1CacheManager_1_1Impl__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1CacheManager_1_1Impl__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1CacheManager_1_1Impl__inherit__graph.pdf
index 57f47ded..cfdac279 100644
Binary files a/docs/latex/classGpgFrontend_1_1CacheManager_1_1Impl__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1CacheManager_1_1Impl__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1CacheManager__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1CacheManager__coll__graph.pdf
index 79b59cfb..9b1a5f63 100644
Binary files a/docs/latex/classGpgFrontend_1_1CacheManager__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1CacheManager__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1CacheManager__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1CacheManager__inherit__graph.pdf
index 79b59cfb..9b1a5f63 100644
Binary files a/docs/latex/classGpgFrontend_1_1CacheManager__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1CacheManager__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1CacheObject__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1CacheObject__coll__graph.pdf
index f93a57d8..19b3bdce 100644
Binary files a/docs/latex/classGpgFrontend_1_1CacheObject__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1CacheObject__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1CacheObject__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1CacheObject__inherit__graph.pdf
index f93a57d8..19b3bdce 100644
Binary files a/docs/latex/classGpgFrontend_1_1CacheObject__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1CacheObject__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1ChannelObject__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1ChannelObject__coll__graph.pdf
index b9ad4dd8..a670c527 100644
Binary files a/docs/latex/classGpgFrontend_1_1ChannelObject__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1ChannelObject__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1ChannelObject__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1ChannelObject__inherit__graph.pdf
index ee4f1af5..da517d0b 100644
Binary files a/docs/latex/classGpgFrontend_1_1ChannelObject__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1ChannelObject__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1CoreSignalStation__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1CoreSignalStation__coll__graph.pdf
index a83cbc5f..2caf71e1 100644
Binary files a/docs/latex/classGpgFrontend_1_1CoreSignalStation__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1CoreSignalStation__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1CoreSignalStation__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1CoreSignalStation__inherit__graph.pdf
index e0cbd244..b47687a1 100644
Binary files a/docs/latex/classGpgFrontend_1_1CoreSignalStation__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1CoreSignalStation__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1DataObjectOperator__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1DataObjectOperator__coll__graph.pdf
index 1d8f9abe..8f06c5ab 100644
Binary files a/docs/latex/classGpgFrontend_1_1DataObjectOperator__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1DataObjectOperator__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1DataObjectOperator__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1DataObjectOperator__inherit__graph.pdf
index 9e2591f3..d0c3af37 100644
Binary files a/docs/latex/classGpgFrontend_1_1DataObjectOperator__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1DataObjectOperator__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1DataObject_1_1Impl__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1DataObject_1_1Impl__coll__graph.pdf
index 8c9cb966..4e12be90 100644
Binary files a/docs/latex/classGpgFrontend_1_1DataObject_1_1Impl__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1DataObject_1_1Impl__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1DataObject__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1DataObject__coll__graph.pdf
index 9087336a..229d0010 100644
Binary files a/docs/latex/classGpgFrontend_1_1DataObject__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1DataObject__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GFBuffer__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GFBuffer__coll__graph.pdf
index 4354f5ba..972f7043 100644
Binary files a/docs/latex/classGpgFrontend_1_1GFBuffer__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GFBuffer__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GFDataExchanger__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GFDataExchanger__coll__graph.pdf
index 253b1079..e2a8f890 100644
Binary files a/docs/latex/classGpgFrontend_1_1GFDataExchanger__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GFDataExchanger__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GenKeyInfo__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GenKeyInfo__coll__graph.pdf
index a151aa5c..c4dd0b22 100644
Binary files a/docs/latex/classGpgFrontend_1_1GenKeyInfo__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GenKeyInfo__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GlobalSettingStation_1_1Impl__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GlobalSettingStation_1_1Impl__coll__graph.pdf
index b6db23e6..367bcc91 100644
Binary files a/docs/latex/classGpgFrontend_1_1GlobalSettingStation_1_1Impl__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GlobalSettingStation_1_1Impl__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GlobalSettingStation__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GlobalSettingStation__coll__graph.pdf
index b77a8788..e2044044 100644
Binary files a/docs/latex/classGpgFrontend_1_1GlobalSettingStation__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GlobalSettingStation__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GlobalSettingStation__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GlobalSettingStation__inherit__graph.pdf
index b77a8788..e2044044 100644
Binary files a/docs/latex/classGpgFrontend_1_1GlobalSettingStation__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GlobalSettingStation__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgAdvancedOperator__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgAdvancedOperator__coll__graph.pdf
index 605084af..08514868 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgAdvancedOperator__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgAdvancedOperator__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgBasicOperator__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgBasicOperator__coll__graph.pdf
index a5d9a064..937ce9c7 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgBasicOperator__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgBasicOperator__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgBasicOperator__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgBasicOperator__inherit__graph.pdf
index ab3fbfd8..0b756ca4 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgBasicOperator__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgBasicOperator__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgCommandExecutor__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgCommandExecutor__coll__graph.pdf
index de461a83..5b88b164 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgCommandExecutor__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgCommandExecutor__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgContext_1_1Impl__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgContext_1_1Impl__coll__graph.pdf
index d41e33ea..1663a5ad 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgContext_1_1Impl__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgContext_1_1Impl__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgContext__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgContext__coll__graph.pdf
index cb678eb1..63468b56 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgContext__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgContext__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgContext__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgContext__inherit__graph.pdf
index cb678eb1..63468b56 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgContext__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgContext__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgData__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgData__coll__graph.pdf
index 7ec785b9..cb5dcf50 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgData__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgData__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgDecryptResultAnalyse__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgDecryptResultAnalyse__coll__graph.pdf
index 81ef8bcf..e3230d01 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgDecryptResultAnalyse__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgDecryptResultAnalyse__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgDecryptResultAnalyse__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgDecryptResultAnalyse__inherit__graph.pdf
index 10f72c7c..c3b05825 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgDecryptResultAnalyse__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgDecryptResultAnalyse__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgDecryptResult__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgDecryptResult__coll__graph.pdf
index 970d73d1..8b9dc0af 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgDecryptResult__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgDecryptResult__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgEncryptResultAnalyse__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgEncryptResultAnalyse__coll__graph.pdf
index 6998943d..28df7490 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgEncryptResultAnalyse__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgEncryptResultAnalyse__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgEncryptResultAnalyse__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgEncryptResultAnalyse__inherit__graph.pdf
index bf05329c..d44ecc34 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgEncryptResultAnalyse__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgEncryptResultAnalyse__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgEncryptResult__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgEncryptResult__coll__graph.pdf
index a7fdd82f..02733a38 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgEncryptResult__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgEncryptResult__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgFileOpera__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgFileOpera__coll__graph.pdf
index f14618be..64c3b2de 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgFileOpera__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgFileOpera__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgFileOpera__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgFileOpera__inherit__graph.pdf
index 9ca6c408..4689e5e4 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgFileOpera__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgFileOpera__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgGenerateKeyResult__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgGenerateKeyResult__coll__graph.pdf
index 8bec084a..d045d590 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgGenerateKeyResult__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgGenerateKeyResult__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgImportInformation_1_1GpgImportedKey__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgImportInformation_1_1GpgImportedKey__coll__graph.pdf
index 10d1f36b..8a7f04cf 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgImportInformation_1_1GpgImportedKey__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgImportInformation_1_1GpgImportedKey__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgImportInformation__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgImportInformation__coll__graph.pdf
index cb8fd1ae..fa8619e7 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgImportInformation__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgImportInformation__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyGetter_1_1Impl__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgKeyGetter_1_1Impl__coll__graph.pdf
index 59dd6d1e..9e8a9aaa 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgKeyGetter_1_1Impl__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgKeyGetter_1_1Impl__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyGetter_1_1Impl__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgKeyGetter_1_1Impl__inherit__graph.pdf
index 7843be28..d606e71e 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgKeyGetter_1_1Impl__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgKeyGetter_1_1Impl__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyGetter__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgKeyGetter__coll__graph.pdf
index e35a825d..af4ff797 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgKeyGetter__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgKeyGetter__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyGetter__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgKeyGetter__inherit__graph.pdf
index e35a825d..af4ff797 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgKeyGetter__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgKeyGetter__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter__coll__graph.pdf
index ba32ca7b..8f95b50b 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter__inherit__graph.pdf
index 27fbc246..b98c2d66 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyManager__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgKeyManager__coll__graph.pdf
index 60ecf007..e6f07d0b 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgKeyManager__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgKeyManager__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyManager__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgKeyManager__inherit__graph.pdf
index e936eb41..75120f9e 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgKeyManager__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgKeyManager__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyOpera__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgKeyOpera__coll__graph.pdf
index 311a982e..246c18a1 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgKeyOpera__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgKeyOpera__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyOpera__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgKeyOpera__inherit__graph.pdf
index cbbe2c2b..e732e2c1 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgKeyOpera__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgKeyOpera__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgKeySignature__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgKeySignature__coll__graph.pdf
index b9df5ad3..0f0c2b70 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgKeySignature__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgKeySignature__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgKey__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgKey__coll__graph.pdf
index 893e8bdd..4d06c48a 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgKey__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgKey__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgPassphraseContext__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgPassphraseContext__coll__graph.pdf
index 3e2659f9..89796b54 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgPassphraseContext__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgPassphraseContext__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgPassphraseContext__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgPassphraseContext__inherit__graph.pdf
index 3e2659f9..89796b54 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgPassphraseContext__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgPassphraseContext__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgResultAnalyse__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgResultAnalyse__coll__graph.pdf
index bd4f23b2..043847d0 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgResultAnalyse__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgResultAnalyse__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgResultAnalyse__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgResultAnalyse__inherit__graph.pdf
index af860d7d..12a84112 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgResultAnalyse__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgResultAnalyse__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgSignResultAnalyse__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgSignResultAnalyse__coll__graph.pdf
index 306bef6e..b1e50c1e 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgSignResultAnalyse__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgSignResultAnalyse__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgSignResultAnalyse__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgSignResultAnalyse__inherit__graph.pdf
index 58158d08..08f82169 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgSignResultAnalyse__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgSignResultAnalyse__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgSignResult__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgSignResult__coll__graph.pdf
index fc59278d..56808cae 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgSignResult__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgSignResult__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgSignature__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgSignature__coll__graph.pdf
index dc3e8df7..80dc8c50 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgSignature__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgSignature__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgSubKey__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgSubKey__coll__graph.pdf
index fbc8eb30..9edae096 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgSubKey__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgSubKey__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgTOFUInfo__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgTOFUInfo__coll__graph.pdf
index 5ca87813..c344e31a 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgTOFUInfo__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgTOFUInfo__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgUIDOperator__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgUIDOperator__coll__graph.pdf
index 099f322d..da3979a8 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgUIDOperator__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgUIDOperator__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgUIDOperator__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgUIDOperator__inherit__graph.pdf
index 5d4af2e7..e99ceeb9 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgUIDOperator__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgUIDOperator__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgUID__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgUID__coll__graph.pdf
index 2180e0f5..7fcba10b 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgUID__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgUID__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgVerifyResultAnalyse__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgVerifyResultAnalyse__coll__graph.pdf
index 18f4b8d8..5e93d0fb 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgVerifyResultAnalyse__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgVerifyResultAnalyse__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgVerifyResultAnalyse__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgVerifyResultAnalyse__inherit__graph.pdf
index 0cda5186..3d03f535 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgVerifyResultAnalyse__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgVerifyResultAnalyse__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1GpgVerifyResult__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgVerifyResult__coll__graph.pdf
index 9cfd0a97..1eeff7d2 100644
Binary files a/docs/latex/classGpgFrontend_1_1GpgVerifyResult__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgVerifyResult__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1KeyPackageOperator__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1KeyPackageOperator__coll__graph.pdf
index 2227449d..8040ff09 100644
Binary files a/docs/latex/classGpgFrontend_1_1KeyPackageOperator__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1KeyPackageOperator__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1LoggerManager__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1LoggerManager__coll__graph.pdf
index c8303545..089eba12 100644
Binary files a/docs/latex/classGpgFrontend_1_1LoggerManager__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1LoggerManager__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1LoggerManager__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1LoggerManager__inherit__graph.pdf
index 16106b16..d7bf35a0 100644
Binary files a/docs/latex/classGpgFrontend_1_1LoggerManager__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1LoggerManager__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1Module_1_1Event_1_1Impl__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Module_1_1Event_1_1Impl__coll__graph.pdf
index fc5be471..12820826 100644
Binary files a/docs/latex/classGpgFrontend_1_1Module_1_1Event_1_1Impl__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1Module_1_1Event_1_1Impl__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1Module_1_1Event__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Module_1_1Event__coll__graph.pdf
index acd794dc..0ffa6f42 100644
Binary files a/docs/latex/classGpgFrontend_1_1Module_1_1Event__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1Module_1_1Event__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1Module_1_1GlobalModuleContext.tex b/docs/latex/classGpgFrontend_1_1Module_1_1GlobalModuleContext.tex
index fdab141f..47c0baaa 100644
--- a/docs/latex/classGpgFrontend_1_1Module_1_1GlobalModuleContext.tex
+++ b/docs/latex/classGpgFrontend_1_1Module_1_1GlobalModuleContext.tex
@@ -55,11 +55,11 @@ auto {\bfseries Deactivate\+Module} (Module\+Identifier) -\/$>$ bool
\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1GlobalModuleContext_a1f4335cab295542f49b78a8e15b6f456}\label{classGpgFrontend_1_1Module_1_1GlobalModuleContext_a1f4335cab295542f49b78a8e15b6f456}}
auto {\bfseries Listen\+Event} (Module\+Identifier, Event\+Identifier) -\/$>$ bool
\item
-\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1GlobalModuleContext_aa656d6d835b2ccb20494ff580a7cafac}\label{classGpgFrontend_1_1Module_1_1GlobalModuleContext_aa656d6d835b2ccb20494ff580a7cafac}}
-auto {\bfseries Trigger\+Event} (Event\+Refrernce) -\/$>$ bool
+\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1GlobalModuleContext_ad9c9b7ffc770046ff1e6486ef1fc4415}\label{classGpgFrontend_1_1Module_1_1GlobalModuleContext_ad9c9b7ffc770046ff1e6486ef1fc4415}}
+auto {\bfseries Trigger\+Event} (Event\+Reference) -\/$>$ bool
\item
-\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1GlobalModuleContext_aa11772c7ecb3fdc8545a67ceb8c6369b}\label{classGpgFrontend_1_1Module_1_1GlobalModuleContext_aa11772c7ecb3fdc8545a67ceb8c6369b}}
-auto {\bfseries Search\+Event} (Event\+Trigger\+Identifier) -\/$>$ std\+::optional$<$ Event\+Refrernce $>$
+\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1GlobalModuleContext_a4c1d56338f4b4a8d594c4ecc8aac420d}\label{classGpgFrontend_1_1Module_1_1GlobalModuleContext_a4c1d56338f4b4a8d594c4ecc8aac420d}}
+auto {\bfseries Search\+Event} (Event\+Trigger\+Identifier) -\/$>$ std\+::optional$<$ Event\+Reference $>$
\item
\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1GlobalModuleContext_aec9f17c91c5cb6da83b3d1a5af800895}\label{classGpgFrontend_1_1Module_1_1GlobalModuleContext_aec9f17c91c5cb6da83b3d1a5af800895}}
auto {\bfseries Get\+Module\+Listening} (Module\+Identifier) -\/$>$ QList$<$ Event\+Identifier $>$
diff --git a/docs/latex/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.tex b/docs/latex/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.tex
index 0b5810fc..afd4dc1e 100644
--- a/docs/latex/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.tex
+++ b/docs/latex/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.tex
@@ -45,11 +45,11 @@ auto {\bfseries Listen\+Event} (Module\+Identifier module\+\_\+id, Event\+Identi
\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_ab84d50a8d389015d29115d28ab8edbde}\label{classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_ab84d50a8d389015d29115d28ab8edbde}}
auto {\bfseries Deactivate\+Module} (Module\+Identifier module\+\_\+id) -\/$>$ bool
\item
-\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_ac7991d6d2022915212987b7a2d330446}\label{classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_ac7991d6d2022915212987b7a2d330446}}
-auto {\bfseries Trigger\+Event} (const Event\+Refrernce \&event) -\/$>$ bool
+\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_a07acdf211b98d8e917abb19406e9507d}\label{classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_a07acdf211b98d8e917abb19406e9507d}}
+auto {\bfseries Trigger\+Event} (const Event\+Reference \&event) -\/$>$ bool
\item
-\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_ab3e05b1a9bf5f03ece0caa1fc8809b50}\label{classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_ab3e05b1a9bf5f03ece0caa1fc8809b50}}
-auto {\bfseries Search\+Event} (const Event\+Trigger\+Identifier \&trigger\+\_\+id) -\/$>$ std\+::optional$<$ Event\+Refrernce $>$
+\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_ae3f001188f83e173fd84f89e3973bef2}\label{classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_ae3f001188f83e173fd84f89e3973bef2}}
+auto {\bfseries Search\+Event} (const Event\+Trigger\+Identifier \&trigger\+\_\+id) -\/$>$ std\+::optional$<$ Event\+Reference $>$
\item
\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_aa4262354dcf1d56bbd732afbac5b1e82}\label{classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_aa4262354dcf1d56bbd732afbac5b1e82}}
auto {\bfseries Is\+Module\+Activated} (const Module\+Identifier \&m\+\_\+id) const -\/$>$ bool
@@ -93,8 +93,8 @@ std\+::unordered\+\_\+map$<$ Module\+Identifier, Module\+Register\+Info\+Ptr $>$
\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_aaa6ec2fcc2569cd1b22f419feadaa568}\label{classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_aaa6ec2fcc2569cd1b22f419feadaa568}}
std\+::map$<$ Event\+Identifier, std\+::unordered\+\_\+set$<$ Module\+Identifier $>$ $>$ {\bfseries module\+\_\+events\+\_\+table\+\_\+}
\item
-\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_a36f9cf218e3cd84658cbd61116d34a96}\label{classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_a36f9cf218e3cd84658cbd61116d34a96}}
-std\+::map$<$ Event\+Trigger\+Identifier, Event\+Refrernce $>$ {\bfseries module\+\_\+on\+\_\+triggering\+\_\+events\+\_\+table\+\_\+}
+\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_a8b1169966c7200118373bb56d555a89c}\label{classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_a8b1169966c7200118373bb56d555a89c}}
+std\+::map$<$ Event\+Trigger\+Identifier, Event\+Reference $>$ {\bfseries module\+\_\+on\+\_\+triggering\+\_\+events\+\_\+table\+\_\+}
\item
\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_acc10c7acd6244ef93e85ffb6c4ad267e}\label{classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_acc10c7acd6244ef93e85ffb6c4ad267e}}
std\+::set$<$ int $>$ {\bfseries acquired\+\_\+channel\+\_\+}
diff --git a/docs/latex/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl__coll__graph.md5
index b5294a18..c6084cc9 100644
--- a/docs/latex/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl__coll__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl__coll__graph.md5
@@ -1 +1 @@
-97d015e6f572377129924719ab994d14
\ No newline at end of file
+9fb7e888c75fd76507368971bd0ba4aa
\ No newline at end of file
diff --git a/docs/latex/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl__coll__graph.pdf
index 70e32ede..016f09cd 100644
Binary files a/docs/latex/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1Module_1_1GlobalModuleContext__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Module_1_1GlobalModuleContext__coll__graph.pdf
index dbfc291e..030736be 100644
Binary files a/docs/latex/classGpgFrontend_1_1Module_1_1GlobalModuleContext__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1Module_1_1GlobalModuleContext__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1Module_1_1GlobalModuleContext__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1Module_1_1GlobalModuleContext__inherit__graph.pdf
index dbfc291e..030736be 100644
Binary files a/docs/latex/classGpgFrontend_1_1Module_1_1GlobalModuleContext__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1Module_1_1GlobalModuleContext__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1Module_1_1GlobalRegisterTableTreeModel_1_1Impl__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Module_1_1GlobalRegisterTableTreeModel_1_1Impl__coll__graph.pdf
index 33816381..d39c6c93 100644
Binary files a/docs/latex/classGpgFrontend_1_1Module_1_1GlobalRegisterTableTreeModel_1_1Impl__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1Module_1_1GlobalRegisterTableTreeModel_1_1Impl__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1Module_1_1GlobalRegisterTableTreeModel__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Module_1_1GlobalRegisterTableTreeModel__coll__graph.pdf
index cebbed65..e21318ff 100644
Binary files a/docs/latex/classGpgFrontend_1_1Module_1_1GlobalRegisterTableTreeModel__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1Module_1_1GlobalRegisterTableTreeModel__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1Module_1_1GlobalRegisterTableTreeModel__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1Module_1_1GlobalRegisterTableTreeModel__inherit__graph.pdf
index cebbed65..e21318ff 100644
Binary files a/docs/latex/classGpgFrontend_1_1Module_1_1GlobalRegisterTableTreeModel__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1Module_1_1GlobalRegisterTableTreeModel__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1Module_1_1GlobalRegisterTable_1_1Impl__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Module_1_1GlobalRegisterTable_1_1Impl__coll__graph.pdf
index 0b1ca5b7..9a690717 100644
Binary files a/docs/latex/classGpgFrontend_1_1Module_1_1GlobalRegisterTable_1_1Impl__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1Module_1_1GlobalRegisterTable_1_1Impl__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1Module_1_1GlobalRegisterTable__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Module_1_1GlobalRegisterTable__coll__graph.pdf
index 1f76aba5..6755da36 100644
Binary files a/docs/latex/classGpgFrontend_1_1Module_1_1GlobalRegisterTable__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1Module_1_1GlobalRegisterTable__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1Module_1_1GlobalRegisterTable__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1Module_1_1GlobalRegisterTable__inherit__graph.pdf
index 1f76aba5..6755da36 100644
Binary files a/docs/latex/classGpgFrontend_1_1Module_1_1GlobalRegisterTable__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1Module_1_1GlobalRegisterTable__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1Module_1_1Module.tex b/docs/latex/classGpgFrontend_1_1Module_1_1Module.tex
index 39e3901d..e16c824c 100644
--- a/docs/latex/classGpgFrontend_1_1Module_1_1Module.tex
+++ b/docs/latex/classGpgFrontend_1_1Module_1_1Module.tex
@@ -43,8 +43,8 @@ virtual auto {\bfseries Register} () -\/$>$ int
\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1Module_aba8d8690179721ddcbcabac04a72a157}\label{classGpgFrontend_1_1Module_1_1Module_aba8d8690179721ddcbcabac04a72a157}}
virtual auto {\bfseries Active} () -\/$>$ int
\item
-\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1Module_aaa782445f133f0ad740cdfee687f09a1}\label{classGpgFrontend_1_1Module_1_1Module_aaa782445f133f0ad740cdfee687f09a1}}
-virtual auto {\bfseries Exec} (Event\+Refrernce) -\/$>$ int
+\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1Module_af0b52299d613acc0c1df7d542b00dccd}\label{classGpgFrontend_1_1Module_1_1Module_af0b52299d613acc0c1df7d542b00dccd}}
+virtual auto {\bfseries Exec} (Event\+Reference) -\/$>$ int
\item
\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1Module_a2707656f14bec27c74a3d3f476a82494}\label{classGpgFrontend_1_1Module_1_1Module_a2707656f14bec27c74a3d3f476a82494}}
virtual auto {\bfseries Deactive} () -\/$>$ int
diff --git a/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager.tex b/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager.tex
index 0779118a..9e3b80f9 100644
--- a/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager.tex
+++ b/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager.tex
@@ -52,11 +52,11 @@ auto {\bfseries Is\+Integrated\+Module} (Module\+Identifier) -\/$>$ bool
\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1ModuleManager_a28535b400738a4601ee836603aa13480}\label{classGpgFrontend_1_1Module_1_1ModuleManager_a28535b400738a4601ee836603aa13480}}
void {\bfseries Listen\+Event} (Module\+Identifier, Event\+Identifier)
\item
-\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1ModuleManager_ad802fe563954717b33ab85f5a781c06f}\label{classGpgFrontend_1_1Module_1_1ModuleManager_ad802fe563954717b33ab85f5a781c06f}}
-void {\bfseries Trigger\+Event} (Event\+Refrernce)
+\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1ModuleManager_ae4e4a6c3cd06de7da34b59822d893ecc}\label{classGpgFrontend_1_1Module_1_1ModuleManager_ae4e4a6c3cd06de7da34b59822d893ecc}}
+void {\bfseries Trigger\+Event} (Event\+Reference)
\item
-\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1ModuleManager_a1a1e0d46101d6f1dd6ca2751cf77577e}\label{classGpgFrontend_1_1Module_1_1ModuleManager_a1a1e0d46101d6f1dd6ca2751cf77577e}}
-auto {\bfseries Search\+Event} (Event\+Trigger\+Identifier) -\/$>$ std\+::optional$<$ Event\+Refrernce $>$
+\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1ModuleManager_afa0844590ddfdc6e44cbea4303f34382}\label{classGpgFrontend_1_1Module_1_1ModuleManager_afa0844590ddfdc6e44cbea4303f34382}}
+auto {\bfseries Search\+Event} (Event\+Trigger\+Identifier) -\/$>$ std\+::optional$<$ Event\+Reference $>$
\item
\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1ModuleManager_a89fecabfd53b324b53242959a87d1492}\label{classGpgFrontend_1_1Module_1_1ModuleManager_a89fecabfd53b324b53242959a87d1492}}
auto {\bfseries Get\+Module\+Listening} (Module\+Identifier) -\/$>$ QList$<$ Event\+Identifier $>$
diff --git a/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.tex b/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.tex
index 770e707a..dda7d5ab 100644
--- a/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.tex
+++ b/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.tex
@@ -28,11 +28,11 @@ void {\bfseries Register\+Module} (const Module\+Ptr \&module)
\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl_a993748e05bd4e6048a8f073328244804}\label{classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl_a993748e05bd4e6048a8f073328244804}}
void {\bfseries Listen\+Event} (const Module\+Identifier \&module\+\_\+id, const Event\+Identifier \&event\+\_\+id)
\item
-\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl_a41f8154e4d1e211cc1dbc9ba5d847e89}\label{classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl_a41f8154e4d1e211cc1dbc9ba5d847e89}}
-void {\bfseries Trigger\+Event} (const Event\+Refrernce \&event)
+\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl_ac15fef1d9b22075e819855e4b4c09a52}\label{classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl_ac15fef1d9b22075e819855e4b4c09a52}}
+void {\bfseries Trigger\+Event} (const Event\+Reference \&event)
\item
-\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl_ada2e879d721026aa1b37e66c16501544}\label{classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl_ada2e879d721026aa1b37e66c16501544}}
-auto {\bfseries Search\+Event} (Event\+Trigger\+Identifier trigger\+\_\+id) -\/$>$ std\+::optional$<$ Event\+Refrernce $>$
+\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl_a01eadb53513afb01c88dc3f97a6c2459}\label{classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl_a01eadb53513afb01c88dc3f97a6c2459}}
+auto {\bfseries Search\+Event} (Event\+Trigger\+Identifier trigger\+\_\+id) -\/$>$ std\+::optional$<$ Event\+Reference $>$
\item
\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl_aa4739c519e47ab297a2f9d19c603922a}\label{classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl_aa4739c519e47ab297a2f9d19c603922a}}
auto {\bfseries Get\+Module\+Listening} (Module\+Identifier module\+\_\+id) -\/$>$ QList$<$ Event\+Identifier $>$
diff --git a/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl__coll__graph.pdf
index 82992493..78fbe617 100644
Binary files a/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager__coll__graph.pdf
index d1c8a667..96e27c81 100644
Binary files a/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager__inherit__graph.pdf
index d1c8a667..96e27c81 100644
Binary files a/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1Module_1_1Module_1_1Impl.tex b/docs/latex/classGpgFrontend_1_1Module_1_1Module_1_1Impl.tex
index 407d0c7c..1783ea2c 100644
--- a/docs/latex/classGpgFrontend_1_1Module_1_1Module_1_1Impl.tex
+++ b/docs/latex/classGpgFrontend_1_1Module_1_1Module_1_1Impl.tex
@@ -39,8 +39,8 @@ auto {\bfseries Register} () -\/$>$ int
\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1Module_1_1Impl_aa55c74b6387af03a60ec3ec749b925c3}\label{classGpgFrontend_1_1Module_1_1Module_1_1Impl_aa55c74b6387af03a60ec3ec749b925c3}}
auto {\bfseries Active} () -\/$>$ int
\item
-\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1Module_1_1Impl_a336d8016bd94c87e351c490a9dc5185c}\label{classGpgFrontend_1_1Module_1_1Module_1_1Impl_a336d8016bd94c87e351c490a9dc5185c}}
-auto {\bfseries Exec} (const Event\+Refrernce \&event) -\/$>$ int
+\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1Module_1_1Impl_ac9ebd95fcd53af661e0461dc7ca0b421}\label{classGpgFrontend_1_1Module_1_1Module_1_1Impl_ac9ebd95fcd53af661e0461dc7ca0b421}}
+auto {\bfseries Exec} (const Event\+Reference \&event) -\/$>$ int
\item
\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1Module_1_1Impl_a0cb4bb7366fe1787adbe0590c3188ae6}\label{classGpgFrontend_1_1Module_1_1Module_1_1Impl_a0cb4bb7366fe1787adbe0590c3188ae6}}
auto {\bfseries Deactive} () -\/$>$ int
diff --git a/docs/latex/classGpgFrontend_1_1Module_1_1Module_1_1Impl__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Module_1_1Module_1_1Impl__coll__graph.pdf
index f3f25b8b..00eb5c6f 100644
Binary files a/docs/latex/classGpgFrontend_1_1Module_1_1Module_1_1Impl__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1Module_1_1Module_1_1Impl__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1Module_1_1Module__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Module_1_1Module__coll__graph.pdf
index b1d8800d..4a15588c 100644
Binary files a/docs/latex/classGpgFrontend_1_1Module_1_1Module__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1Module_1_1Module__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1Module_1_1Module__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1Module_1_1Module__inherit__graph.pdf
index b1d8800d..4a15588c 100644
Binary files a/docs/latex/classGpgFrontend_1_1Module_1_1Module__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1Module_1_1Module__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1PassphraseGenerator__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1PassphraseGenerator__coll__graph.pdf
index 1f7ddb0a..e33000be 100644
Binary files a/docs/latex/classGpgFrontend_1_1PassphraseGenerator__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1PassphraseGenerator__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1PassphraseGenerator__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1PassphraseGenerator__inherit__graph.pdf
index 1f7ddb0a..e33000be 100644
Binary files a/docs/latex/classGpgFrontend_1_1PassphraseGenerator__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1PassphraseGenerator__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1PointerConverter__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1PointerConverter__coll__graph.pdf
index bdb31061..d3da0a09 100644
Binary files a/docs/latex/classGpgFrontend_1_1PointerConverter__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1PointerConverter__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1SecureMemoryAllocator__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1SecureMemoryAllocator__coll__graph.pdf
index 997a50c6..d32fa30c 100644
Binary files a/docs/latex/classGpgFrontend_1_1SecureMemoryAllocator__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1SecureMemoryAllocator__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1SettingsObject__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1SettingsObject__coll__graph.pdf
index 32703e14..33f7af36 100644
Binary files a/docs/latex/classGpgFrontend_1_1SettingsObject__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1SettingsObject__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1SettingsObject__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1SettingsObject__inherit__graph.pdf
index 32703e14..33f7af36 100644
Binary files a/docs/latex/classGpgFrontend_1_1SettingsObject__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1SettingsObject__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1SingletonFunctionObject__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1SingletonFunctionObject__coll__graph.pdf
index 898891d3..fcb8f9a8 100644
Binary files a/docs/latex/classGpgFrontend_1_1SingletonFunctionObject__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1SingletonFunctionObject__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.pdf
index 8a9321ae..acd249cc 100644
Binary files a/docs/latex/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1SingletonStorageCollection_1_1Impl__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1SingletonStorageCollection_1_1Impl__coll__graph.pdf
index 126ad834..80c02f37 100644
Binary files a/docs/latex/classGpgFrontend_1_1SingletonStorageCollection_1_1Impl__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1SingletonStorageCollection_1_1Impl__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1SingletonStorageCollection__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1SingletonStorageCollection__coll__graph.pdf
index 1f20f6ca..0e5b0419 100644
Binary files a/docs/latex/classGpgFrontend_1_1SingletonStorageCollection__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1SingletonStorageCollection__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1SingletonStorage_1_1Impl__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1SingletonStorage_1_1Impl__coll__graph.pdf
index a29bb961..c89d5e44 100644
Binary files a/docs/latex/classGpgFrontend_1_1SingletonStorage_1_1Impl__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1SingletonStorage_1_1Impl__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1SingletonStorage__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1SingletonStorage__coll__graph.pdf
index d1d0fee7..9b2cd93f 100644
Binary files a/docs/latex/classGpgFrontend_1_1SingletonStorage__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1SingletonStorage__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1Test_1_1GpgCoreTest__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Test_1_1GpgCoreTest__coll__graph.pdf
index 08e3a276..0a37921e 100644
Binary files a/docs/latex/classGpgFrontend_1_1Test_1_1GpgCoreTest__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1Test_1_1GpgCoreTest__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1Test_1_1GpgCoreTest__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1Test_1_1GpgCoreTest__inherit__graph.pdf
index 08e3a276..0a37921e 100644
Binary files a/docs/latex/classGpgFrontend_1_1Test_1_1GpgCoreTest__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1Test_1_1GpgCoreTest__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1ThreadSafeMap__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1ThreadSafeMap__coll__graph.pdf
index 3f36d2ae..e129a236 100644
Binary files a/docs/latex/classGpgFrontend_1_1ThreadSafeMap__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1ThreadSafeMap__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1ThreadSafeMap__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1ThreadSafeMap__inherit__graph.pdf
index f54b2ad2..24ddf0c8 100644
Binary files a/docs/latex/classGpgFrontend_1_1ThreadSafeMap__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1ThreadSafeMap__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunnerGetter__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunnerGetter__coll__graph.pdf
index 1ba6a980..2e87928c 100644
Binary files a/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunnerGetter__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunnerGetter__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunnerGetter__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunnerGetter__inherit__graph.pdf
index 1465133e..9680fc38 100644
Binary files a/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunnerGetter__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunnerGetter__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner_1_1Impl__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner_1_1Impl__coll__graph.pdf
index 891cb182..38726b11 100644
Binary files a/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner_1_1Impl__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner_1_1Impl__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner_1_1Impl__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner_1_1Impl__inherit__graph.pdf
index 891cb182..38726b11 100644
Binary files a/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner_1_1Impl__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner_1_1Impl__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner__coll__graph.pdf
index 3d6e0dd9..526716be 100644
Binary files a/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner__inherit__graph.pdf
index 3d6e0dd9..526716be 100644
Binary files a/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1Thread_1_1Task_1_1Impl__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Thread_1_1Task_1_1Impl__coll__graph.pdf
index d4c2e2d2..5ed81973 100644
Binary files a/docs/latex/classGpgFrontend_1_1Thread_1_1Task_1_1Impl__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1Thread_1_1Task_1_1Impl__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1Thread_1_1Task_1_1TaskHandler__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Thread_1_1Task_1_1TaskHandler__coll__graph.pdf
index 63ac5101..c22b87df 100644
Binary files a/docs/latex/classGpgFrontend_1_1Thread_1_1Task_1_1TaskHandler__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1Thread_1_1Task_1_1TaskHandler__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1Thread_1_1Task__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Thread_1_1Task__coll__graph.pdf
index 061c6d66..32fcd48c 100644
Binary files a/docs/latex/classGpgFrontend_1_1Thread_1_1Task__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1Thread_1_1Task__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1Thread_1_1Task__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1Thread_1_1Task__inherit__graph.pdf
index 9baab572..5c073e3b 100644
Binary files a/docs/latex/classGpgFrontend_1_1Thread_1_1Task__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1Thread_1_1Task__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.pdf
index bf31b88d..743616db 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.pdf
index bf31b88d..743616db 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1AppearanceTab__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1AppearanceTab__coll__graph.pdf
index 979c4a72..bf8c09cd 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1AppearanceTab__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1AppearanceTab__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1AppearanceTab__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1AppearanceTab__inherit__graph.pdf
index b692978b..33cf9486 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1AppearanceTab__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1AppearanceTab__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ChoosePage__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ChoosePage__coll__graph.pdf
index 97a93e57..62fce6e7 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ChoosePage__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ChoosePage__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ChoosePage__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ChoosePage__inherit__graph.pdf
index 97a93e57..62fce6e7 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ChoosePage__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ChoosePage__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__coll__graph.pdf
index 29ca48c4..2298eb16 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__inherit__graph.pdf
index 6912e15e..c20d1dc9 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ConclusionPage__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ConclusionPage__coll__graph.pdf
index 7aa603c3..0a7907e1 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ConclusionPage__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ConclusionPage__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ConclusionPage__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ConclusionPage__inherit__graph.pdf
index 7aa603c3..0a7907e1 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ConclusionPage__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ConclusionPage__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.pdf
index 271adbae..aa483e22 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.pdf
index c61676ee..ef53a7f6 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1FilePage__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1FilePage__coll__graph.pdf
index bd264913..1205a648 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1FilePage__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1FilePage__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1FilePage__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1FilePage__inherit__graph.pdf
index 6104e64a..cdf3caca 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1FilePage__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1FilePage__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1FileReadTask__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1FileReadTask__coll__graph.pdf
index 9f8e025e..c03357df 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1FileReadTask__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1FileReadTask__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1FileReadTask__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1FileReadTask__inherit__graph.pdf
index 9f8e025e..c03357df 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1FileReadTask__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1FileReadTask__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1FileTreeView__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1FileTreeView__coll__graph.pdf
index 93dc2d47..518c82f2 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1FileTreeView__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1FileTreeView__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1FileTreeView__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1FileTreeView__inherit__graph.pdf
index 93dc2d47..518c82f2 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1FileTreeView__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1FileTreeView__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1FindWidget__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1FindWidget__coll__graph.pdf
index ddbf60d4..07ff0e2c 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1FindWidget__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1FindWidget__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1FindWidget__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1FindWidget__inherit__graph.pdf
index 762a33a5..dc04ac12 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1FindWidget__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1FindWidget__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GRTTreeView__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GRTTreeView__coll__graph.pdf
index 8a546f39..93ff814f 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GRTTreeView__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GRTTreeView__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GRTTreeView__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GRTTreeView__inherit__graph.pdf
index 73c8f84c..93ff814f 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GRTTreeView__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GRTTreeView__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.pdf
index 2b5be013..e759dfc4 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.pdf
index 6b362b67..ed844b8b 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralMainWindow__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralMainWindow__coll__graph.pdf
index 53ee0fb9..1a0998f1 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralMainWindow__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralMainWindow__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralMainWindow__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralMainWindow__inherit__graph.pdf
index 2fbde645..a55980fd 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralMainWindow__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralMainWindow__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralTab__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralTab__coll__graph.pdf
index e482ade6..7402a5c4 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralTab__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralTab__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralTab__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralTab__inherit__graph.pdf
index c08fcc0b..2001e9aa 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralTab__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralTab__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralWindowState__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralWindowState__coll__graph.pdf
index 502346d5..04de02d2 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralWindowState__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralWindowState__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GenerateRevokeCertification__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GenerateRevokeCertification__coll__graph.pdf
index 7716b706..862c38d6 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GenerateRevokeCertification__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GenerateRevokeCertification__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GenerateRevokeCertification__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GenerateRevokeCertification__inherit__graph.pdf
index 7716b706..862c38d6 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GenerateRevokeCertification__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GenerateRevokeCertification__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__coll__graph.pdf
index b3db4b49..7e641aac 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__inherit__graph.pdf
index ad191601..f15f021a 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GnupgTab__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GnupgTab__coll__graph.pdf
index cf22d73b..7ea31714 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GnupgTab__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GnupgTab__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GnupgTab__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GnupgTab__inherit__graph.pdf
index 3cff04d9..801cbcfc 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GnupgTab__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GnupgTab__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GpgFrontendApplication__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GpgFrontendApplication__coll__graph.pdf
index 0d396d86..46208d07 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GpgFrontendApplication__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GpgFrontendApplication__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GpgFrontendApplication__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GpgFrontendApplication__inherit__graph.pdf
index 0d396d86..46208d07 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GpgFrontendApplication__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GpgFrontendApplication__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1HelpPage__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1HelpPage__coll__graph.pdf
index b661ab8e..d9f52ae0 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1HelpPage__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1HelpPage__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1HelpPage__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1HelpPage__inherit__graph.pdf
index b661ab8e..d9f52ae0 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1HelpPage__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1HelpPage__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1InfoBoardWidget__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1InfoBoardWidget__coll__graph.pdf
index 68b3cfff..6d565d55 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1InfoBoardWidget__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1InfoBoardWidget__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1InfoBoardWidget__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1InfoBoardWidget__inherit__graph.pdf
index 62758337..ca1dda9a 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1InfoBoardWidget__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1InfoBoardWidget__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1InfoTab__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1InfoTab__coll__graph.pdf
index bb070a68..232da928 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1InfoTab__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1InfoTab__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1InfoTab__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1InfoTab__inherit__graph.pdf
index bb070a68..232da928 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1InfoTab__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1InfoTab__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1IntroPage__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1IntroPage__coll__graph.pdf
index a89186f6..d564f298 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1IntroPage__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1IntroPage__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1IntroPage__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1IntroPage__inherit__graph.pdf
index a89186f6..d564f298 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1IntroPage__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1IntroPage__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.pdf
index 06954a71..b445120f 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.pdf
index 06954a71..b445120f 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.pdf
index fe6c70fc..89699428 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.pdf
index ecf9107d..074c9dc0 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenPage__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenPage__coll__graph.pdf
index 021ae115..24eb4db2 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenPage__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenPage__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenPage__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenPage__inherit__graph.pdf
index 021ae115..24eb4db2 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenPage__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenPage__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.pdf
index 663cd7b9..ac9b54fe 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.pdf
index 1f864ff0..1458e136 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyList__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyList__coll__graph.pdf
index 2dbaacec..dae5c7c6 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyList__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyList__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyList__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyList__inherit__graph.pdf
index 1d395ec0..c9dab47a 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyList__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyList__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.pdf
index 2cd20afc..d7934e9b 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt__inherit__graph.pdf
index 2446b01d..9a0e72a6 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.pdf
index 89837938..ef40548f 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.pdf
index 0c8ea0ce..8f202db4 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__coll__graph.pdf
index 279a36d0..6555bbb9 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__inherit__graph.pdf
index 50bcaba8..797d8301 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__coll__graph.pdf
index 28f9347a..ab5e40cf 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__inherit__graph.pdf
index cb73ceb8..afa749ef 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__coll__graph.pdf
index fca033a8..c8b2add1 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__inherit__graph.pdf
index 1221ca83..8a341cfe 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__coll__graph.pdf
index 999437c0..dd3304f2 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__inherit__graph.pdf
index c92ae156..86488a84 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.pdf
index 89b2a2ff..fc8d97ba 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.pdf
index 89b2a2ff..fc8d97ba 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportTask__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportTask__coll__graph.pdf
index 37e16668..28d4279a 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportTask__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportTask__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportTask__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportTask__inherit__graph.pdf
index e5098a2e..3b7039d8 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportTask__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportTask__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerSearchTask__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerSearchTask__coll__graph.pdf
index c7e1e4af..80bf08d3 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerSearchTask__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerSearchTask__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerSearchTask__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerSearchTask__inherit__graph.pdf
index c7e1e4af..80bf08d3 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerSearchTask__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerSearchTask__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.pdf
index e90987ef..a6237b2c 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.pdf
index f3fdfdb4..59b9df5b 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.pdf
index e79488c9..48ed8163 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.pdf
index c9700a0b..1594066d 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.pdf
index 74536a18..0210f6ec 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.pdf
index 29189a2d..e529dd56 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyserverTab__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyserverTab__coll__graph.pdf
index e4e80b20..3ea963e1 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyserverTab__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyserverTab__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyserverTab__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyserverTab__inherit__graph.pdf
index 2d9253ed..9487482f 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyserverTab__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyserverTab__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask__coll__graph.pdf
index 3f94810c..c0d5de26 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask__inherit__graph.pdf
index cbc7dba1..035bb898 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.pdf
index 505a4db4..a7619bac 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__inherit__graph.pdf
index 649fa3b9..6e8c24ad 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ModuleControllerDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ModuleControllerDialog__coll__graph.pdf
index e9981d29..c7065ab7 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ModuleControllerDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ModuleControllerDialog__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ModuleControllerDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ModuleControllerDialog__inherit__graph.pdf
index 70aab7ae..afc80239 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ModuleControllerDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ModuleControllerDialog__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ModuleListView__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ModuleListView__coll__graph.pdf
index 5e514b30..f1d30325 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ModuleListView__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ModuleListView__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ModuleListView__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ModuleListView__inherit__graph.pdf
index 5e514b30..f1d30325 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ModuleListView__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ModuleListView__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1NetworkTab__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1NetworkTab__coll__graph.pdf
index 17927b27..61cc7bec 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1NetworkTab__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1NetworkTab__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1NetworkTab__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1NetworkTab__inherit__graph.pdf
index b04e0e4e..4bd32ca5 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1NetworkTab__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1NetworkTab__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1PlainTextEditorPage__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1PlainTextEditorPage__coll__graph.pdf
index 646a9bcb..e3e71051 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1PlainTextEditorPage__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1PlainTextEditorPage__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1PlainTextEditorPage__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1PlainTextEditorPage__inherit__graph.pdf
index a40cb61d..7b5c6077 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1PlainTextEditorPage__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1PlainTextEditorPage__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask__coll__graph.pdf
index 0672694d..c87fca88 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask__inherit__graph.pdf
index 0672694d..c87fca88 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.pdf
index 9cef2e70..0a336fc9 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.pdf
index 9cef2e70..0a336fc9 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1RaisePinentry__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1RaisePinentry__coll__graph.pdf
index 066b766e..ad1c73cb 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1RaisePinentry__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1RaisePinentry__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1RaisePinentry__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1RaisePinentry__inherit__graph.pdf
index 066b766e..ad1c73cb 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1RaisePinentry__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1RaisePinentry__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SetOwnerTrustLevel__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SetOwnerTrustLevel__coll__graph.pdf
index addecd51..1eb7c46e 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SetOwnerTrustLevel__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SetOwnerTrustLevel__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SetOwnerTrustLevel__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SetOwnerTrustLevel__inherit__graph.pdf
index addecd51..1eb7c46e 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SetOwnerTrustLevel__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SetOwnerTrustLevel__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.pdf
index cd339a2a..137d6c93 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.pdf
index daa9ed2b..deaeede1 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.pdf
index b5bf5f85..ca73f741 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.pdf
index 15aa11e1..9a45a05d 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.pdf
index 82757197..1c4ec698 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.pdf
index 7742a0a0..75e766d7 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1TOFUInfoPage__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1TOFUInfoPage__coll__graph.pdf
index 4887a5e5..7395b55a 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1TOFUInfoPage__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1TOFUInfoPage__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1TOFUInfoPage__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1TOFUInfoPage__inherit__graph.pdf
index 4887a5e5..7395b55a 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1TOFUInfoPage__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1TOFUInfoPage__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__coll__graph.pdf
index 33ca2a2f..7a304ff2 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__inherit__graph.pdf
index 33ca2a2f..7a304ff2 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1TranslatorsTab__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1TranslatorsTab__coll__graph.pdf
index bb2d916a..0f2506a0 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1TranslatorsTab__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1TranslatorsTab__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1TranslatorsTab__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1TranslatorsTab__inherit__graph.pdf
index bb2d916a..0f2506a0 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1TranslatorsTab__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1TranslatorsTab__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1UISignalStation__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1UISignalStation__coll__graph.pdf
index de622072..dd969d01 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1UISignalStation__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1UISignalStation__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1UISignalStation__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1UISignalStation__inherit__graph.pdf
index eb50d38b..66385352 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1UISignalStation__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1UISignalStation__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1UpdateTab__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1UpdateTab__coll__graph.pdf
index cf9ecd82..89209694 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1UpdateTab__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1UpdateTab__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1UpdateTab__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1UpdateTab__inherit__graph.pdf
index cf9ecd82..89209694 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1UpdateTab__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1UpdateTab__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.pdf
index c63e6cb6..e08f76e2 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__inherit__graph.pdf
index ee3e59f5..2b9c8f7d 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox__coll__graph.pdf
index 94f41c06..ffea9099 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox__inherit__graph.pdf
index 94f41c06..ffea9099 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.pdf
index 2a56c91b..7d6406e5 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.pdf
index 2a56c91b..7d6406e5 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1Wizard__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1Wizard__coll__graph.pdf
index 6b8d0a18..8c9f7b75 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1Wizard__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1Wizard__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1Wizard__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1Wizard__inherit__graph.pdf
index 6b8d0a18..8c9f7b75 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1Wizard__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1Wizard__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgInfo__coll__graph.pdf b/docs/latex/classGpgInfo__coll__graph.pdf
index 6742b79b..7598b8a9 100644
Binary files a/docs/latex/classGpgInfo__coll__graph.pdf and b/docs/latex/classGpgInfo__coll__graph.pdf differ
diff --git a/docs/latex/classPinEntryDialog__coll__graph.pdf b/docs/latex/classPinEntryDialog__coll__graph.pdf
index d6849c1f..5137b9ee 100644
Binary files a/docs/latex/classPinEntryDialog__coll__graph.pdf and b/docs/latex/classPinEntryDialog__coll__graph.pdf differ
diff --git a/docs/latex/classPinEntryDialog__inherit__graph.pdf b/docs/latex/classPinEntryDialog__inherit__graph.pdf
index 339bc12e..9b6a2ddf 100644
Binary files a/docs/latex/classPinEntryDialog__inherit__graph.pdf and b/docs/latex/classPinEntryDialog__inherit__graph.pdf differ
diff --git a/docs/latex/classPinLineEdit_1_1Private__coll__graph.pdf b/docs/latex/classPinLineEdit_1_1Private__coll__graph.pdf
index 9d8dde03..2ada5585 100644
Binary files a/docs/latex/classPinLineEdit_1_1Private__coll__graph.pdf and b/docs/latex/classPinLineEdit_1_1Private__coll__graph.pdf differ
diff --git a/docs/latex/classPinLineEdit__coll__graph.pdf b/docs/latex/classPinLineEdit__coll__graph.pdf
index cfb2c7df..f0fb5285 100644
Binary files a/docs/latex/classPinLineEdit__coll__graph.pdf and b/docs/latex/classPinLineEdit__coll__graph.pdf differ
diff --git a/docs/latex/classPinLineEdit__inherit__graph.pdf b/docs/latex/classPinLineEdit__inherit__graph.pdf
index 5a75834e..1f28c7cb 100644
Binary files a/docs/latex/classPinLineEdit__inherit__graph.pdf and b/docs/latex/classPinLineEdit__inherit__graph.pdf differ
diff --git a/docs/latex/classPinentryConfirm__coll__graph.pdf b/docs/latex/classPinentryConfirm__coll__graph.pdf
index 6da5fed4..03c34dcc 100644
Binary files a/docs/latex/classPinentryConfirm__coll__graph.pdf and b/docs/latex/classPinentryConfirm__coll__graph.pdf differ
diff --git a/docs/latex/classPinentryConfirm__inherit__graph.pdf b/docs/latex/classPinentryConfirm__inherit__graph.pdf
index 6da5fed4..03c34dcc 100644
Binary files a/docs/latex/classPinentryConfirm__inherit__graph.pdf and b/docs/latex/classPinentryConfirm__inherit__graph.pdf differ
diff --git a/docs/latex/classSignatureDetailsDialog__coll__graph.pdf b/docs/latex/classSignatureDetailsDialog__coll__graph.pdf
index cb637a77..b8695334 100644
Binary files a/docs/latex/classSignatureDetailsDialog__coll__graph.pdf and b/docs/latex/classSignatureDetailsDialog__coll__graph.pdf differ
diff --git a/docs/latex/classSignatureDetailsDialog__inherit__graph.pdf b/docs/latex/classSignatureDetailsDialog__inherit__graph.pdf
index cb637a77..b8695334 100644
Binary files a/docs/latex/classSignatureDetailsDialog__inherit__graph.pdf and b/docs/latex/classSignatureDetailsDialog__inherit__graph.pdf differ
diff --git a/docs/latex/classTestListedKeyServerThread__coll__graph.pdf b/docs/latex/classTestListedKeyServerThread__coll__graph.pdf
index 24763cfe..7e89f450 100644
Binary files a/docs/latex/classTestListedKeyServerThread__coll__graph.pdf and b/docs/latex/classTestListedKeyServerThread__coll__graph.pdf differ
diff --git a/docs/latex/classVersionCheckTask__coll__graph.pdf b/docs/latex/classVersionCheckTask__coll__graph.pdf
index 5e058e47..bac36352 100644
Binary files a/docs/latex/classVersionCheckTask__coll__graph.pdf and b/docs/latex/classVersionCheckTask__coll__graph.pdf differ
diff --git a/docs/latex/classVersionCheckTask__inherit__graph.pdf b/docs/latex/classVersionCheckTask__inherit__graph.pdf
index e432ac69..934c3679 100644
Binary files a/docs/latex/classVersionCheckTask__inherit__graph.pdf and b/docs/latex/classVersionCheckTask__inherit__graph.pdf differ
diff --git a/docs/latex/classclass__coll__graph.pdf b/docs/latex/classclass__coll__graph.pdf
index 3c449097..4272074a 100644
Binary files a/docs/latex/classclass__coll__graph.pdf and b/docs/latex/classclass__coll__graph.pdf differ
diff --git a/docs/latex/classsecmem_1_1alloc__coll__graph.pdf b/docs/latex/classsecmem_1_1alloc__coll__graph.pdf
index fb1a51bb..5b0a1fcb 100644
Binary files a/docs/latex/classsecmem_1_1alloc__coll__graph.pdf and b/docs/latex/classsecmem_1_1alloc__coll__graph.pdf differ
diff --git a/docs/latex/namespaceGpgFrontend_1_1Module.tex b/docs/latex/namespaceGpgFrontend_1_1Module.tex
index d64e275b..507e299b 100644
--- a/docs/latex/namespaceGpgFrontend_1_1Module.tex
+++ b/docs/latex/namespaceGpgFrontend_1_1Module.tex
@@ -20,8 +20,8 @@ class \mbox{\hyperlink{classGpgFrontend_1_1Module_1_1ModuleManager}{Module\+Mana
\doxysubsection*{Typedefs}
\begin{DoxyCompactItemize}
\item
-\mbox{\Hypertarget{namespaceGpgFrontend_1_1Module_a340abcd73c766e5691e90e504b3cd975}\label{namespaceGpgFrontend_1_1Module_a340abcd73c766e5691e90e504b3cd975}}
-using {\bfseries Event\+Refrernce} = std\+::shared\+\_\+ptr$<$ \mbox{\hyperlink{classGpgFrontend_1_1Module_1_1Event}{Event}} $>$
+\mbox{\Hypertarget{namespaceGpgFrontend_1_1Module_ab5e154977c509d24fd9ef231a39b95cb}\label{namespaceGpgFrontend_1_1Module_ab5e154977c509d24fd9ef231a39b95cb}}
+using {\bfseries Event\+Reference} = std\+::shared\+\_\+ptr$<$ \mbox{\hyperlink{classGpgFrontend_1_1Module_1_1Event}{Event}} $>$
\item
\mbox{\Hypertarget{namespaceGpgFrontend_1_1Module_a0c3d65fe66a8f7e0fc93d0a45a899723}\label{namespaceGpgFrontend_1_1Module_a0c3d65fe66a8f7e0fc93d0a45a899723}}
using {\bfseries Event\+Identifier} = QString
@@ -71,8 +71,8 @@ using {\bfseries Module\+Manger\+Ptr} = std\+::shared\+\_\+ptr$<$ \mbox{\hyperli
\doxysubsection*{Functions}
\begin{DoxyCompactItemize}
\item
-\mbox{\Hypertarget{namespaceGpgFrontend_1_1Module_aaafda413ba6ccb2e0e5e866f11cf8dc5}\label{namespaceGpgFrontend_1_1Module_aaafda413ba6ccb2e0e5e866f11cf8dc5}}
-{\footnotesize template$<$typename... Args$>$ }\\auto {\bfseries Make\+Event} (const Event\+Identifier \&event\+\_\+id, Args \&\&... args, Event\+::\+Event\+Callback e\+\_\+cb) -\/$>$ Event\+Refrernce
+\mbox{\Hypertarget{namespaceGpgFrontend_1_1Module_a8e7cac96091d6c396cf6b1254e8b5735}\label{namespaceGpgFrontend_1_1Module_a8e7cac96091d6c396cf6b1254e8b5735}}
+{\footnotesize template$<$typename... Args$>$ }\\auto {\bfseries Make\+Event} (const Event\+Identifier \&event\+\_\+id, Args \&\&... args, Event\+::\+Event\+Callback e\+\_\+cb) -\/$>$ Event\+Reference
\item
\mbox{\Hypertarget{namespaceGpgFrontend_1_1Module_abed70603b6806aca6d2db12a2448e1e3}\label{namespaceGpgFrontend_1_1Module_abed70603b6806aca6d2db12a2448e1e3}}
void {\bfseries Load\+Module\+From\+Path} (const QString \&mods\+\_\+path, bool integrated)
diff --git a/docs/latex/structFunctionObjectTypeLockInfo__coll__graph.pdf b/docs/latex/structFunctionObjectTypeLockInfo__coll__graph.pdf
index 5692e780..8aed92b6 100644
Binary files a/docs/latex/structFunctionObjectTypeLockInfo__coll__graph.pdf and b/docs/latex/structFunctionObjectTypeLockInfo__coll__graph.pdf differ
diff --git a/docs/latex/structGFModuleEventParam__coll__graph.pdf b/docs/latex/structGFModuleEventParam__coll__graph.pdf
index 1ac3268f..58738102 100644
Binary files a/docs/latex/structGFModuleEventParam__coll__graph.pdf and b/docs/latex/structGFModuleEventParam__coll__graph.pdf differ
diff --git a/docs/latex/structGFModuleEvent__coll__graph.pdf b/docs/latex/structGFModuleEvent__coll__graph.pdf
index aa241d01..a35aedb6 100644
Binary files a/docs/latex/structGFModuleEvent__coll__graph.pdf and b/docs/latex/structGFModuleEvent__coll__graph.pdf differ
diff --git a/docs/latex/structGFModuleMetaData__coll__graph.pdf b/docs/latex/structGFModuleMetaData__coll__graph.pdf
index 29d846bb..2f42e51a 100644
Binary files a/docs/latex/structGFModuleMetaData__coll__graph.pdf and b/docs/latex/structGFModuleMetaData__coll__graph.pdf differ
diff --git a/docs/latex/structGpgComponentInfo__coll__graph.pdf b/docs/latex/structGpgComponentInfo__coll__graph.pdf
index bbe2e240..e7817bca 100644
Binary files a/docs/latex/structGpgComponentInfo__coll__graph.pdf and b/docs/latex/structGpgComponentInfo__coll__graph.pdf differ
diff --git a/docs/latex/structGpgFrontend_1_1ArchiveReadClientData__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1ArchiveReadClientData__coll__graph.pdf
index 5f176483..dc0aa2f4 100644
Binary files a/docs/latex/structGpgFrontend_1_1ArchiveReadClientData__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1ArchiveReadClientData__coll__graph.pdf differ
diff --git a/docs/latex/structGpgFrontend_1_1CoreInitArgs__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1CoreInitArgs__coll__graph.pdf
index febce182..0b300b91 100644
Binary files a/docs/latex/structGpgFrontend_1_1CoreInitArgs__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1CoreInitArgs__coll__graph.pdf differ
diff --git a/docs/latex/structGpgFrontend_1_1GpgCommandExecutor_1_1ExecuteContext__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1GpgCommandExecutor_1_1ExecuteContext__coll__graph.pdf
index 9648f49d..77de99d0 100644
Binary files a/docs/latex/structGpgFrontend_1_1GpgCommandExecutor_1_1ExecuteContext__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1GpgCommandExecutor_1_1ExecuteContext__coll__graph.pdf differ
diff --git a/docs/latex/structGpgFrontend_1_1GpgContextInitArgs__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1GpgContextInitArgs__coll__graph.pdf
index 9f770d8f..7ffe6725 100644
Binary files a/docs/latex/structGpgFrontend_1_1GpgContextInitArgs__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1GpgContextInitArgs__coll__graph.pdf differ
diff --git a/docs/latex/structGpgFrontend_1_1GpgData_1_1DataRefDeleter__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1GpgData_1_1DataRefDeleter__coll__graph.pdf
index c47286b1..30b0ced5 100644
Binary files a/docs/latex/structGpgFrontend_1_1GpgData_1_1DataRefDeleter__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1GpgData_1_1DataRefDeleter__coll__graph.pdf differ
diff --git a/docs/latex/structGpgFrontend_1_1GpgFrontendContext__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1GpgFrontendContext__coll__graph.pdf
index 6d8959e4..583d26cd 100644
Binary files a/docs/latex/structGpgFrontend_1_1GpgFrontendContext__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1GpgFrontendContext__coll__graph.pdf differ
diff --git a/docs/latex/structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct__coll__graph.pdf
index 62fcf3fb..294487c0 100644
Binary files a/docs/latex/structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct__coll__graph.pdf differ
diff --git a/docs/latex/structGpgFrontend_1_1GpgKey_1_1KeyRefDeleter__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1GpgKey_1_1KeyRefDeleter__coll__graph.pdf
index 28b0b51c..755b0042 100644
Binary files a/docs/latex/structGpgFrontend_1_1GpgKey_1_1KeyRefDeleter__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1GpgKey_1_1KeyRefDeleter__coll__graph.pdf differ
diff --git a/docs/latex/structGpgFrontend_1_1GpgRecipient__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1GpgRecipient__coll__graph.pdf
index 84b46078..a252116e 100644
Binary files a/docs/latex/structGpgFrontend_1_1GpgRecipient__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1GpgRecipient__coll__graph.pdf differ
diff --git a/docs/latex/structGpgFrontend_1_1ModuleSO.tex b/docs/latex/structGpgFrontend_1_1ModuleSO.tex
index 11e2fec1..6e11a4c4 100644
--- a/docs/latex/structGpgFrontend_1_1ModuleSO.tex
+++ b/docs/latex/structGpgFrontend_1_1ModuleSO.tex
@@ -33,6 +33,9 @@ QString {\bfseries module\+\_\+hash}
\item
\mbox{\Hypertarget{structGpgFrontend_1_1ModuleSO_ad00b3665fe25d22d3b8d17fd43229978}\label{structGpgFrontend_1_1ModuleSO_ad00b3665fe25d22d3b8d17fd43229978}}
bool {\bfseries auto\+\_\+activate}
+\item
+\mbox{\Hypertarget{structGpgFrontend_1_1ModuleSO_aeb2565c17ffee4c765c9500608f39fa2}\label{structGpgFrontend_1_1ModuleSO_aeb2565c17ffee4c765c9500608f39fa2}}
+bool {\bfseries set\+\_\+by\+\_\+user}
\end{DoxyCompactItemize}
diff --git a/docs/latex/structGpgFrontend_1_1ModuleSO__coll__graph.md5 b/docs/latex/structGpgFrontend_1_1ModuleSO__coll__graph.md5
index 04f106cf..8daeebb4 100644
--- a/docs/latex/structGpgFrontend_1_1ModuleSO__coll__graph.md5
+++ b/docs/latex/structGpgFrontend_1_1ModuleSO__coll__graph.md5
@@ -1 +1 @@
-dd6f2a8b6cc9f05dfbaccf63727f211a
\ No newline at end of file
+5782b5a7a42f8be4ac132c030921c5d4
\ No newline at end of file
diff --git a/docs/latex/structGpgFrontend_1_1ModuleSO__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1ModuleSO__coll__graph.pdf
index 1102ae23..925b0e8c 100644
Binary files a/docs/latex/structGpgFrontend_1_1ModuleSO__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1ModuleSO__coll__graph.pdf differ
diff --git a/docs/latex/structGpgFrontend_1_1Module_1_1Event_1_1ParameterInitializer__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1Module_1_1Event_1_1ParameterInitializer__coll__graph.pdf
index 4d5224f6..34731b3c 100644
Binary files a/docs/latex/structGpgFrontend_1_1Module_1_1Event_1_1ParameterInitializer__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1Module_1_1Event_1_1ParameterInitializer__coll__graph.pdf differ
diff --git a/docs/latex/structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo__coll__graph.pdf
index c3fdb71a..bb3039e3 100644
Binary files a/docs/latex/structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo__coll__graph.pdf differ
diff --git a/docs/latex/structGpgFrontend_1_1Module_1_1GlobalRegisterTable_1_1Impl_1_1RTNode__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1Module_1_1GlobalRegisterTable_1_1Impl_1_1RTNode__coll__graph.pdf
index 3c051e25..244d0145 100644
Binary files a/docs/latex/structGpgFrontend_1_1Module_1_1GlobalRegisterTable_1_1Impl_1_1RTNode__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1Module_1_1GlobalRegisterTable_1_1Impl_1_1RTNode__coll__graph.pdf differ
diff --git a/docs/latex/structGpgFrontend_1_1Module_1_1ModuleInitArgs__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1Module_1_1ModuleInitArgs__coll__graph.pdf
index ce536da1..82a70a8b 100644
Binary files a/docs/latex/structGpgFrontend_1_1Module_1_1ModuleInitArgs__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1Module_1_1ModuleInitArgs__coll__graph.pdf differ
diff --git a/docs/latex/structGpgFrontend_1_1Module_1_1Module_1_1Impl_1_1Symbol__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1Module_1_1Module_1_1Impl_1_1Symbol__coll__graph.pdf
index ad470368..dd722030 100644
Binary files a/docs/latex/structGpgFrontend_1_1Module_1_1Module_1_1Impl_1_1Symbol__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1Module_1_1Module_1_1Impl_1_1Symbol__coll__graph.pdf differ
diff --git a/docs/latex/structGpgFrontend_1_1RefDeleter__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1RefDeleter__coll__graph.pdf
index 00f2cafd..51f474f2 100644
Binary files a/docs/latex/structGpgFrontend_1_1RefDeleter__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1RefDeleter__coll__graph.pdf differ
diff --git a/docs/latex/structGpgFrontend_1_1SecureObjectDeleter__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1SecureObjectDeleter__coll__graph.pdf
index a691398f..fc55a2f8 100644
Binary files a/docs/latex/structGpgFrontend_1_1SecureObjectDeleter__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1SecureObjectDeleter__coll__graph.pdf differ
diff --git a/docs/latex/structGpgFrontend_1_1Test_1_1GpgFrontendContext__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1Test_1_1GpgFrontendContext__coll__graph.pdf
index 7812dea0..bb60305d 100644
Binary files a/docs/latex/structGpgFrontend_1_1Test_1_1GpgFrontendContext__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1Test_1_1GpgFrontendContext__coll__graph.pdf differ
diff --git a/docs/latex/structGpgFrontend_1_1UI_1_1AppearanceSO__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1UI_1_1AppearanceSO__coll__graph.pdf
index 549a1654..0932a9d0 100644
Binary files a/docs/latex/structGpgFrontend_1_1UI_1_1AppearanceSO__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1UI_1_1AppearanceSO__coll__graph.pdf differ
diff --git a/docs/latex/structGpgFrontend_1_1UI_1_1KeyListColumn__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1UI_1_1KeyListColumn__coll__graph.pdf
index 420d49c7..bd3a8c4e 100644
Binary files a/docs/latex/structGpgFrontend_1_1UI_1_1KeyListColumn__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1UI_1_1KeyListColumn__coll__graph.pdf differ
diff --git a/docs/latex/structGpgFrontend_1_1UI_1_1KeyListRow__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1UI_1_1KeyListRow__coll__graph.pdf
index 4735f4af..7a4fad17 100644
Binary files a/docs/latex/structGpgFrontend_1_1UI_1_1KeyListRow__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1UI_1_1KeyListRow__coll__graph.pdf differ
diff --git a/docs/latex/structGpgFrontend_1_1UI_1_1KeyMenuAbility__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1UI_1_1KeyMenuAbility__coll__graph.pdf
index 6c32351f..8894649b 100644
Binary files a/docs/latex/structGpgFrontend_1_1UI_1_1KeyMenuAbility__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1UI_1_1KeyMenuAbility__coll__graph.pdf differ
diff --git a/docs/latex/structGpgFrontend_1_1UI_1_1KeyServerSO__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1UI_1_1KeyServerSO__coll__graph.pdf
index 4566b7e5..22a67c6c 100644
Binary files a/docs/latex/structGpgFrontend_1_1UI_1_1KeyServerSO__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1UI_1_1KeyServerSO__coll__graph.pdf differ
diff --git a/docs/latex/structGpgFrontend_1_1UI_1_1KeyTable__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1UI_1_1KeyTable__coll__graph.pdf
index 89896edc..b8137fd0 100644
Binary files a/docs/latex/structGpgFrontend_1_1UI_1_1KeyTable__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1UI_1_1KeyTable__coll__graph.pdf differ
diff --git a/docs/latex/structGpgFrontend_1_1UI_1_1MainWindow_1_1CryptoMenu__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1UI_1_1MainWindow_1_1CryptoMenu__coll__graph.pdf
index 2ccb86e0..36da4c78 100644
Binary files a/docs/latex/structGpgFrontend_1_1UI_1_1MainWindow_1_1CryptoMenu__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1UI_1_1MainWindow_1_1CryptoMenu__coll__graph.pdf differ
diff --git a/docs/latex/structGpgFrontend_1_1UI_1_1WindowStateSO__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1UI_1_1WindowStateSO__coll__graph.pdf
index 42a2b546..2ff24b76 100644
Binary files a/docs/latex/structGpgFrontend_1_1UI_1_1WindowStateSO__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1UI_1_1WindowStateSO__coll__graph.pdf differ
diff --git a/docs/latex/structGpgOptionsInfo__coll__graph.pdf b/docs/latex/structGpgOptionsInfo__coll__graph.pdf
index 6a3940c7..f1ff18fa 100644
Binary files a/docs/latex/structGpgOptionsInfo__coll__graph.pdf and b/docs/latex/structGpgOptionsInfo__coll__graph.pdf differ
diff --git a/docs/latex/structPinEntryDialog_1_1ConstraintsOptions__coll__graph.pdf b/docs/latex/structPinEntryDialog_1_1ConstraintsOptions__coll__graph.pdf
index 197d5e09..3fbd2e77 100644
Binary files a/docs/latex/structPinEntryDialog_1_1ConstraintsOptions__coll__graph.pdf and b/docs/latex/structPinEntryDialog_1_1ConstraintsOptions__coll__graph.pdf differ
diff --git a/docs/latex/structPinEntryDialog_1_1FormattedPassphraseOptions__coll__graph.pdf b/docs/latex/structPinEntryDialog_1_1FormattedPassphraseOptions__coll__graph.pdf
index 824b8b26..60057db7 100644
Binary files a/docs/latex/structPinEntryDialog_1_1FormattedPassphraseOptions__coll__graph.pdf and b/docs/latex/structPinEntryDialog_1_1FormattedPassphraseOptions__coll__graph.pdf differ
diff --git a/docs/latex/structSoftwareVersion__coll__graph.pdf b/docs/latex/structSoftwareVersion__coll__graph.pdf
index 0b49f4a4..ae3b68e9 100644
Binary files a/docs/latex/structSoftwareVersion__coll__graph.pdf and b/docs/latex/structSoftwareVersion__coll__graph.pdf differ
diff --git a/docs/latex/structfmt_1_1formatter_3_01QByteArray_01_4__coll__graph.pdf b/docs/latex/structfmt_1_1formatter_3_01QByteArray_01_4__coll__graph.pdf
index 2daa9beb..39b06d1c 100644
Binary files a/docs/latex/structfmt_1_1formatter_3_01QByteArray_01_4__coll__graph.pdf and b/docs/latex/structfmt_1_1formatter_3_01QByteArray_01_4__coll__graph.pdf differ
diff --git a/docs/latex/structfmt_1_1formatter_3_01QString_01_4__coll__graph.pdf b/docs/latex/structfmt_1_1formatter_3_01QString_01_4__coll__graph.pdf
index 254bb182..142a5bb3 100644
Binary files a/docs/latex/structfmt_1_1formatter_3_01QString_01_4__coll__graph.pdf and b/docs/latex/structfmt_1_1formatter_3_01QString_01_4__coll__graph.pdf differ
diff --git a/docs/latex/structpinentry__coll__graph.pdf b/docs/latex/structpinentry__coll__graph.pdf
index 28755975..680814ec 100644
Binary files a/docs/latex/structpinentry__coll__graph.pdf and b/docs/latex/structpinentry__coll__graph.pdf differ
diff --git a/docs/latex/structsecmem_1_1alloc_1_1rebind__coll__graph.pdf b/docs/latex/structsecmem_1_1alloc_1_1rebind__coll__graph.pdf
index 183e0e49..16bd4e26 100644
Binary files a/docs/latex/structsecmem_1_1alloc_1_1rebind__coll__graph.pdf and b/docs/latex/structsecmem_1_1alloc_1_1rebind__coll__graph.pdf differ