diff --git a/docs/html/GlobalModuleContext_8h_source.html b/docs/html/GlobalModuleContext_8h_source.html
index 51d7ce82..47bb431c 100644
--- a/docs/html/GlobalModuleContext_8h_source.html
+++ b/docs/html/GlobalModuleContext_8h_source.html
@@ -131,7 +131,7 @@ $(document).ready(function(){initNavTree('GlobalModuleContext_8h_source.html',''
71 auto GetGlobalTaskRunner() -> std::optional<TaskRunnerPtr>;
- 73 auto RegisterModule(ModulePtr) -> bool;
+ 73 auto RegisterModule(ModulePtr,
bool) -> bool;
75 auto ActiveModule(ModuleIdentifier) -> bool;
@@ -147,14 +147,16 @@ $(document).ready(function(){initNavTree('GlobalModuleContext_8h_source.html',''
87 auto IsModuleActivated(ModuleIdentifier) -> bool;
- 89 auto ListAllRegisteredModuleID() -> QList<ModuleIdentifier>;
+ 89 auto IsIntegratedModule(ModuleIdentifier) -> bool;
-
-
- 93 SecureUniquePtr<Impl> p_;
-
-
-
+ 91 auto ListAllRegisteredModuleID() -> QList<ModuleIdentifier>;
+
+
+
+ 95 SecureUniquePtr<Impl> p_;
+
+
+
Definition: GlobalModuleContext.cpp:45
Definition: GlobalModuleContext.h:54
diff --git a/docs/html/ModuleControllerDialog_8h_source.html b/docs/html/ModuleControllerDialog_8h_source.html
index 90e55201..d4f39639 100644
--- a/docs/html/ModuleControllerDialog_8h_source.html
+++ b/docs/html/ModuleControllerDialog_8h_source.html
@@ -113,7 +113,7 @@ $(document).ready(function(){initNavTree('ModuleControllerDialog_8h_source.html'
Definition: ModuleManager.h:63
Definition: ModuleControllerDialog.h:39
-ModuleControllerDialog(QWidget *parent)
Construct a new Module Controller Dialog object.
Definition: ModuleControllerDialog.cpp:41
+ModuleControllerDialog(QWidget *parent)
Construct a new Module Controller Dialog object.
Definition: ModuleControllerDialog.cpp:42
Definition: FileReadTask.cpp:31
diff --git a/docs/html/ModuleInit_8h_source.html b/docs/html/ModuleInit_8h_source.html
index 64e59828..3b4895b1 100644
--- a/docs/html/ModuleInit_8h_source.html
+++ b/docs/html/ModuleInit_8h_source.html
@@ -105,8 +105,8 @@ $(document).ready(function(){initNavTree('ModuleInit_8h_source.html',''); initRe
-void ShutdownGpgFrontendModules()
shutdown the module library
Definition: ModuleInit.cpp:101
-void LoadGpgFrontendModules(ModuleInitArgs)
init the module library
Definition: ModuleInit.cpp:91
+void ShutdownGpgFrontendModules()
shutdown the module library
Definition: ModuleInit.cpp:113
+void LoadGpgFrontendModules(ModuleInitArgs)
init the module library
Definition: ModuleInit.cpp:103
Definition: ModuleInit.h:37
diff --git a/docs/html/ModuleManager_8h_source.html b/docs/html/ModuleManager_8h_source.html
index d27bb7b3..7be6ad2b 100644
--- a/docs/html/ModuleManager_8h_source.html
+++ b/docs/html/ModuleManager_8h_source.html
@@ -127,7 +127,7 @@ $(document).ready(function(){initNavTree('ModuleManager_8h_source.html',''); ini
- 69 auto LoadModule(QString) -> void;
+ 69 auto LoadModule(QString,
bool) -> void;
71 auto SearchModule(ModuleIdentifier) -> ModulePtr;
@@ -137,94 +137,96 @@ $(document).ready(function(){initNavTree('ModuleManager_8h_source.html',''); ini
77 auto IsModuleActivated(ModuleIdentifier) -> bool;
- 79 void ListenEvent(ModuleIdentifier, EventIdentifier);
+ 79 auto IsIntegratedModule(ModuleIdentifier) -> bool;
- 81 void TriggerEvent(EventRefrernce);
+ 81 void ListenEvent(ModuleIdentifier, EventIdentifier);
- 83 auto SearchEvent(EventTriggerIdentifier) -> std::optional<EventRefrernce>;
+ 83 void TriggerEvent(EventRefrernce);
- 85 auto GetModuleListening(ModuleIdentifier) -> QList<EventIdentifier>;
+ 85 auto SearchEvent(EventTriggerIdentifier) -> std::optional<EventRefrernce>;
- 87 void ActiveModule(ModuleIdentifier);
+ 87 auto GetModuleListening(ModuleIdentifier) -> QList<EventIdentifier>;
- 89 void DeactiveModule(ModuleIdentifier);
+ 89 void ActiveModule(ModuleIdentifier);
- 91 auto GetTaskRunner(ModuleIdentifier) -> std::optional<TaskRunnerPtr>;
+ 91 void DeactiveModule(ModuleIdentifier);
-
+ 93 auto GetTaskRunner(ModuleIdentifier) -> std::optional<TaskRunnerPtr>;
- 95 auto RetrieveRTValue(Namespace, Key) -> std::optional<std::any>;
+
- 97 auto ListenRTPublish(QObject*, Namespace, Key, LPCallback) -> bool;
+ 97 auto RetrieveRTValue(Namespace, Key) -> std::optional<std::any>;
- 99 auto ListRTChildKeys(
const QString&,
const QString&) -> std::vector<Key>;
+ 99 auto ListenRTPublish(QObject*, Namespace, Key, LPCallback) -> bool;
-
+ 101 auto ListRTChildKeys(
const QString&,
const QString&) -> std::vector<Key>;
-
-
- 105 SecureUniquePtr<Impl> p_;
-
-
- 108 template <
typename T,
typename... Args>
- 109 void RegisterModule(Args&&... args) {
-
- 111 GpgFrontend::SecureCreateSharedObject<T>(std::forward<Args>(args)...));
-
-
- 114 template <
typename T,
typename... Args>
- 115 void RegisterAndActivateModule(Args&&... args) {
-
-
- 118 GpgFrontend::SecureCreateSharedObject<T>(std::forward<Args>(args)...);
- 119 manager.RegisterModule(module);
- 120 manager.ActiveModule(module->GetModuleIdentifier());
-
-
- 123 template <
typename... Args>
- 124 void TriggerEvent(
const EventIdentifier& event_id, Args&&... args,
- 125 Event::EventCallback e_cb =
nullptr) {
-
- 127 std::move(MakeEvent(event_id, std::forward<Args>(args)..., e_cb)));
-
-
-
-
- 147 auto GPGFRONTEND_CORE_EXPORT
UpsertRTValue(
const QString& namespace_,
-
- 149 const std::any& value) -> bool;
-
-
-
-
- 167 auto GPGFRONTEND_CORE_EXPORT
ListRTChildKeys(
const QString& namespace_,
-
-
-
- 171 template <
typename T>
- 172 auto RetrieveRTValueTyped(
const QString& namespace_,
const QString& key)
- 173 -> std::optional<T> {
-
-
- 176 if (any_value && any_value->type() ==
typeid(T)) {
- 177 return std::any_cast<T>(*any_value);
-
-
-
-
- 182 template <
typename T>
- 183 auto RetrieveRTValueTypedOrDefault(
const QString& namespace_,
- 184 const QString& key,
const T& defaultValue)
-
-
-
- 188 if (any_value && any_value->type() ==
typeid(T)) {
- 189 return std::any_cast<T>(*any_value);
-
-
-
-
-
+
+
+
+
+ 107 SecureUniquePtr<Impl> p_;
+
+
+ 110 template <
typename T,
typename... Args>
+ 111 void RegisterModule(Args&&... args) {
+
+ 113 GpgFrontend::SecureCreateSharedObject<T>(std::forward<Args>(args)...));
+
+
+ 116 template <
typename T,
typename... Args>
+ 117 void RegisterAndActivateModule(Args&&... args) {
+
+
+ 120 GpgFrontend::SecureCreateSharedObject<T>(std::forward<Args>(args)...);
+ 121 manager.RegisterModule(module);
+ 122 manager.ActiveModule(module->GetModuleIdentifier());
+
+
+ 125 template <
typename... Args>
+ 126 void TriggerEvent(
const EventIdentifier& event_id, Args&&... args,
+ 127 Event::EventCallback e_cb =
nullptr) {
+
+ 129 std::move(MakeEvent(event_id, std::forward<Args>(args)..., e_cb)));
+
+
+
+
+ 149 auto GPGFRONTEND_CORE_EXPORT
UpsertRTValue(
const QString& namespace_,
+
+ 151 const std::any& value) -> bool;
+
+
+
+
+ 169 auto GPGFRONTEND_CORE_EXPORT
ListRTChildKeys(
const QString& namespace_,
+
+
+
+ 173 template <
typename T>
+ 174 auto RetrieveRTValueTyped(
const QString& namespace_,
const QString& key)
+ 175 -> std::optional<T> {
+
+
+ 178 if (any_value && any_value->type() ==
typeid(T)) {
+ 179 return std::any_cast<T>(*any_value);
+
+
+
+
+ 184 template <
typename T>
+ 185 auto RetrieveRTValueTypedOrDefault(
const QString& namespace_,
+ 186 const QString& key,
const T& defaultValue)
+
+
+
+ 190 if (any_value && any_value->type() ==
typeid(T)) {
+ 191 return std::any_cast<T>(*any_value);
+
+
+
+
+
Definition: GlobalRegisterTable.h:43
Definition: ModuleManager.cpp:48
Definition: ModuleManager.h:63
@@ -232,10 +234,10 @@ $(document).ready(function(){initNavTree('ModuleManager_8h_source.html',''); ini
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:212
-auto ListRTChildKeys(const QString &namespace_, const QString &key) -> std::vector< Key >
Definition: ModuleManager.cpp:223
-auto IsModuleActivate(ModuleIdentifier id) -> bool
Definition: ModuleManager.cpp:208
-auto ListenRTPublishEvent(QObject *o, Namespace n, Key k, LPCallback c) -> bool
Definition: ModuleManager.cpp:218
+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
Definition: ModuleManager.h:39
diff --git a/docs/html/classGpgFrontend_1_1ChannelObject__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1ChannelObject__inherit__graph.md5
index 1f25cf8f..b116cd88 100644
--- a/docs/html/classGpgFrontend_1_1ChannelObject__inherit__graph.md5
+++ b/docs/html/classGpgFrontend_1_1ChannelObject__inherit__graph.md5
@@ -1 +1 @@
-b3af8ba8e2123d171269096b1a43eec6
\ No newline at end of file
+861b3b825e9f788b46b22352b91c979b
\ No newline at end of file
diff --git a/docs/html/classGpgFrontend_1_1ChannelObject__inherit__graph.png b/docs/html/classGpgFrontend_1_1ChannelObject__inherit__graph.png
index 6a0e85fc..c6f1cdb7 100644
Binary files a/docs/html/classGpgFrontend_1_1ChannelObject__inherit__graph.png and b/docs/html/classGpgFrontend_1_1ChannelObject__inherit__graph.png differ
diff --git a/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext-members.html b/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext-members.html
index 49ae2443..d50b10bd 100644
--- a/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext-members.html
+++ b/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext-members.html
@@ -98,15 +98,16 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1Module_1_1GlobalMo
GetTaskRunner(ModuleRawPtr) -> std::optional< TaskRunnerPtr > (defined in GpgFrontend::Module::GlobalModuleContext) | GpgFrontend::Module::GlobalModuleContext | |
GetTaskRunner(ModuleIdentifier) -> std::optional< TaskRunnerPtr > (defined in GpgFrontend::Module::GlobalModuleContext) | GpgFrontend::Module::GlobalModuleContext | |
GlobalModuleContext() (defined in GpgFrontend::Module::GlobalModuleContext) | GpgFrontend::Module::GlobalModuleContext | explicit |
- IsModuleActivated(ModuleIdentifier) -> bool (defined in GpgFrontend::Module::GlobalModuleContext) | GpgFrontend::Module::GlobalModuleContext | |
- ListAllRegisteredModuleID() -> QList< ModuleIdentifier > (defined in GpgFrontend::Module::GlobalModuleContext) | GpgFrontend::Module::GlobalModuleContext | |
- 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 (defined in GpgFrontend::Module::GlobalModuleContext) | GpgFrontend::Module::GlobalModuleContext | |
- SearchEvent(EventTriggerIdentifier) -> std::optional< EventRefrernce > (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 | |
- ~GlobalModuleContext() override (defined in GpgFrontend::Module::GlobalModuleContext) | GpgFrontend::Module::GlobalModuleContext | |
+ IsIntegratedModule(ModuleIdentifier) -> bool (defined in GpgFrontend::Module::GlobalModuleContext) | GpgFrontend::Module::GlobalModuleContext | |
+ IsModuleActivated(ModuleIdentifier) -> bool (defined in GpgFrontend::Module::GlobalModuleContext) | GpgFrontend::Module::GlobalModuleContext | |
+ ListAllRegisteredModuleID() -> QList< ModuleIdentifier > (defined in GpgFrontend::Module::GlobalModuleContext) | GpgFrontend::Module::GlobalModuleContext | |
+ 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 | |
+ SearchModule(ModuleIdentifier) -> ModulePtr (defined in GpgFrontend::Module::GlobalModuleContext) | GpgFrontend::Module::GlobalModuleContext | |
+ TriggerEvent(EventRefrernce) -> 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 790af121..a43bba0e 100644
--- a/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext.html
+++ b/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext.html
@@ -133,9 +133,9 @@ auto GetTaskRunner (Mo
|
auto | GetGlobalTaskRunner () -> std::optional< TaskRunnerPtr > |
|
-
-auto | RegisterModule (ModulePtr) -> bool |
- |
+
+auto | RegisterModule (ModulePtr, bool) -> bool |
+ |
auto | ActiveModule (ModuleIdentifier) -> bool |
|
@@ -157,6 +157,9 @@ auto GetModuleListening |
auto | IsModuleActivated (ModuleIdentifier) -> bool |
|
+
+auto | IsIntegratedModule (ModuleIdentifier) -> bool |
+ |
auto | ListAllRegisteredModuleID () -> QList< ModuleIdentifier > |
|
diff --git a/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext.js b/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext.js
index 257589de..fd226271 100644
--- a/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext.js
+++ b/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext.js
@@ -11,10 +11,11 @@ var classGpgFrontend_1_1Module_1_1GlobalModuleContext =
[ "GetModuleListening", "classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#aec9f17c91c5cb6da83b3d1a5af800895", null ],
[ "GetTaskRunner", "classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#ae2e989ee80541129e050c86a48ed8f14", null ],
[ "GetTaskRunner", "classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#a264c8e3fff040efe97e66297c1007e93", null ],
+ [ "IsIntegratedModule", "classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#a683639b9af7cf521bc9ffe4a5fc46cea", null ],
[ "IsModuleActivated", "classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#a99414d575c55ac1f61a44f077db06028", null ],
[ "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#aaf7c18deea8185834ad9f53f2a5a8579", null ],
+ [ "RegisterModule", "classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#a3834836325dab26902e9d66770ce895f", null ],
[ "SearchEvent", "classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#aa11772c7ecb3fdc8545a67ceb8c6369b", null ],
[ "SearchModule", "classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#ac488a3f4e3cbd668fd9ce84b39078cbb", null ],
[ "TriggerEvent", "classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#aa656d6d835b2ccb20494ff580a7cafac", null ],
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 6de1e556..53f464e5 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
@@ -101,18 +101,19 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1Module_1_1GlobalMo
GetTaskRunner(ModuleRawPtr) -> std::optional< TaskRunnerPtr > (defined in GpgFrontend::Module::GlobalModuleContext::Impl) | GpgFrontend::Module::GlobalModuleContext::Impl | inline |
GetTaskRunner(ModuleIdentifier) -> std::optional< TaskRunnerPtr > (defined in GpgFrontend::Module::GlobalModuleContext::Impl) | GpgFrontend::Module::GlobalModuleContext::Impl | inline |
Impl() (defined in GpgFrontend::Module::GlobalModuleContext::Impl) | GpgFrontend::Module::GlobalModuleContext::Impl | inlineexplicit |
- IsModuleActivated(const ModuleIdentifier &m_id) const -> bool (defined in GpgFrontend::Module::GlobalModuleContext::Impl) | GpgFrontend::Module::GlobalModuleContext::Impl | inline |
- ListAllRegisteredModuleID() -> QList< ModuleIdentifier > (defined in GpgFrontend::Module::GlobalModuleContext::Impl) | GpgFrontend::Module::GlobalModuleContext::Impl | inline |
- ListenEvent(ModuleIdentifier module_id, EventIdentifier event) -> bool (defined in GpgFrontend::Module::GlobalModuleContext::Impl) | GpgFrontend::Module::GlobalModuleContext::Impl | inline |
- module_events_table_ (defined in GpgFrontend::Module::GlobalModuleContext::Impl) | GpgFrontend::Module::GlobalModuleContext::Impl | private |
- module_on_triggering_events_table_ (defined in GpgFrontend::Module::GlobalModuleContext::Impl) | GpgFrontend::Module::GlobalModuleContext::Impl | private |
- module_register_table_ (defined in GpgFrontend::Module::GlobalModuleContext::Impl) | GpgFrontend::Module::GlobalModuleContext::Impl | private |
- ModuleRegisterInfoPtr typedef (defined in GpgFrontend::Module::GlobalModuleContext::Impl) | GpgFrontend::Module::GlobalModuleContext::Impl | private |
- RegisterModule(const ModulePtr &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 |
- 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 |
+ IsIntegratedModule(ModuleIdentifier m_id) -> bool (defined in GpgFrontend::Module::GlobalModuleContext::Impl) | GpgFrontend::Module::GlobalModuleContext::Impl | inline |
+ IsModuleActivated(const ModuleIdentifier &m_id) const -> bool (defined in GpgFrontend::Module::GlobalModuleContext::Impl) | GpgFrontend::Module::GlobalModuleContext::Impl | inline |
+ ListAllRegisteredModuleID() -> QList< ModuleIdentifier > (defined in GpgFrontend::Module::GlobalModuleContext::Impl) | GpgFrontend::Module::GlobalModuleContext::Impl | inline |
+ ListenEvent(ModuleIdentifier module_id, EventIdentifier event) -> bool (defined in GpgFrontend::Module::GlobalModuleContext::Impl) | GpgFrontend::Module::GlobalModuleContext::Impl | inline |
+ module_events_table_ (defined in GpgFrontend::Module::GlobalModuleContext::Impl) | GpgFrontend::Module::GlobalModuleContext::Impl | private |
+ module_on_triggering_events_table_ (defined in GpgFrontend::Module::GlobalModuleContext::Impl) | GpgFrontend::Module::GlobalModuleContext::Impl | private |
+ module_register_table_ (defined in GpgFrontend::Module::GlobalModuleContext::Impl) | GpgFrontend::Module::GlobalModuleContext::Impl | private |
+ 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 |
+ 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 |
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 5dfdc751..ddd5e9a6 100644
--- a/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html
+++ b/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html
@@ -99,7 +99,7 @@ Collaboration diagram for GpgFrontend::Module::GlobalModuleContext::Impl:
diff --git a/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager.html b/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager.html
index 463b26ae..34f7329f 100644
--- a/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager.html
+++ b/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager.html
@@ -124,9 +124,9 @@ Public Member Functions
| ModuleManager (int channel) |
|
-
-auto | LoadModule (QString) -> void |
- |
+
+auto | LoadModule (QString, bool) -> void |
+ |
auto | SearchModule (ModuleIdentifier) -> ModulePtr |
|
@@ -139,6 +139,9 @@ void RegisterModule (M
|
auto | IsModuleActivated (ModuleIdentifier) -> bool |
|
+
+auto | IsIntegratedModule (ModuleIdentifier) -> bool |
+ |
void | ListenEvent (ModuleIdentifier, EventIdentifier) |
|
diff --git a/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager.js b/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager.js
index 30faa11f..43ac3226 100644
--- a/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager.js
+++ b/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager.js
@@ -8,12 +8,13 @@ var classGpgFrontend_1_1Module_1_1ModuleManager =
[ "GetModuleListening", "classGpgFrontend_1_1Module_1_1ModuleManager.html#a89fecabfd53b324b53242959a87d1492", null ],
[ "GetTaskRunner", "classGpgFrontend_1_1Module_1_1ModuleManager.html#aa1aa0b421a961c17b0a29f8e6a2102b8", null ],
[ "GRT", "classGpgFrontend_1_1Module_1_1ModuleManager.html#abe32ff3b5a730d9b36a4012680402b7e", null ],
+ [ "IsIntegratedModule", "classGpgFrontend_1_1Module_1_1ModuleManager.html#ac041f5f94e2f258dd0220d8e6f245219", null ],
[ "IsModuleActivated", "classGpgFrontend_1_1Module_1_1ModuleManager.html#a3b1d20608829a48688c53ecb24e6a97b", null ],
[ "ListAllRegisteredModuleID", "classGpgFrontend_1_1Module_1_1ModuleManager.html#ae04a5eac55ad8c96eca86e59eb0ef88d", null ],
[ "ListenEvent", "classGpgFrontend_1_1Module_1_1ModuleManager.html#a28535b400738a4601ee836603aa13480", null ],
[ "ListenRTPublish", "classGpgFrontend_1_1Module_1_1ModuleManager.html#a64b2c2d26f092f413a5b3b0742366e8b", null ],
[ "ListRTChildKeys", "classGpgFrontend_1_1Module_1_1ModuleManager.html#abaca5b14a84e9d4d6b56dec82e88cf5d", null ],
- [ "LoadModule", "classGpgFrontend_1_1Module_1_1ModuleManager.html#acf93ddb27e882708493c0b0d90d5a301", null ],
+ [ "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 ],
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 6f3ed58f..1e13ce9e 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
@@ -98,20 +98,21 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1Module_1_1ModuleMa
GRT() -> GlobalRegisterTable * (defined in GpgFrontend::Module::ModuleManager::Impl) | GpgFrontend::Module::ModuleManager::Impl | inline |
grt_ (defined in GpgFrontend::Module::ModuleManager::Impl) | GpgFrontend::Module::ModuleManager::Impl | private |
Impl() (defined in GpgFrontend::Module::ModuleManager::Impl) | GpgFrontend::Module::ModuleManager::Impl | inline |
- IsModuleActivated(ModuleIdentifier id) -> bool (defined in GpgFrontend::Module::ModuleManager::Impl) | GpgFrontend::Module::ModuleManager::Impl | inline |
- ListAllRegisteredModuleID() -> QList< ModuleIdentifier > (defined in GpgFrontend::Module::ModuleManager::Impl) | GpgFrontend::Module::ModuleManager::Impl | inline |
- ListenEvent(const ModuleIdentifier &module_id, const EventIdentifier &event_id) (defined in GpgFrontend::Module::ModuleManager::Impl) | GpgFrontend::Module::ModuleManager::Impl | inline |
- ListenPublish(QObject *o, Namespace n, Key k, LPCallback c) -> bool (defined in GpgFrontend::Module::ModuleManager::Impl) | GpgFrontend::Module::ModuleManager::Impl | inline |
- ListRTChildKeys(const QString &n, const QString &k) -> std::vector< Key > (defined in GpgFrontend::Module::ModuleManager::Impl) | GpgFrontend::Module::ModuleManager::Impl | inline |
- LoadAndRegisterModule(const QString &module_library_path) -> void (defined in GpgFrontend::Module::ModuleManager::Impl) | GpgFrontend::Module::ModuleManager::Impl | inline |
- 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 |
- 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 |
- 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 | |
+ IsIntegratedModule(ModuleIdentifier id) -> bool (defined in GpgFrontend::Module::ModuleManager::Impl) | GpgFrontend::Module::ModuleManager::Impl | inline |
+ IsModuleActivated(ModuleIdentifier id) -> bool (defined in GpgFrontend::Module::ModuleManager::Impl) | GpgFrontend::Module::ModuleManager::Impl | inline |
+ ListAllRegisteredModuleID() -> QList< ModuleIdentifier > (defined in GpgFrontend::Module::ModuleManager::Impl) | GpgFrontend::Module::ModuleManager::Impl | inline |
+ ListenEvent(const ModuleIdentifier &module_id, const EventIdentifier &event_id) (defined in GpgFrontend::Module::ModuleManager::Impl) | GpgFrontend::Module::ModuleManager::Impl | inline |
+ ListenPublish(QObject *o, Namespace n, Key k, LPCallback c) -> bool (defined in GpgFrontend::Module::ModuleManager::Impl) | GpgFrontend::Module::ModuleManager::Impl | inline |
+ ListRTChildKeys(const QString &n, const QString &k) -> std::vector< Key > (defined in GpgFrontend::Module::ModuleManager::Impl) | GpgFrontend::Module::ModuleManager::Impl | inline |
+ LoadAndRegisterModule(const QString &module_library_path, bool integrated_module) -> void (defined in GpgFrontend::Module::ModuleManager::Impl) | GpgFrontend::Module::ModuleManager::Impl | inline |
+ 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 |
+ 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 |
+ 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 2d3afa43..3833565d 100644
--- a/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html
+++ b/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html
@@ -104,9 +104,9 @@ Collaboration diagram for GpgFrontend::Module::ModuleManager::Impl:
|
-
-auto | LoadAndRegisterModule (const QString &module_library_path) -> void |
- |
+
+auto | LoadAndRegisterModule (const QString &module_library_path, bool integrated_module) -> void |
+ |
auto | SearchModule (ModuleIdentifier module_id) -> ModulePtr |
|
@@ -152,6 +152,9 @@ auto ListRTChildKeys (
|
auto | IsModuleActivated (ModuleIdentifier id) -> bool |
|
+
+auto | IsIntegratedModule (ModuleIdentifier id) -> bool |
+ |
auto | GRT () -> GlobalRegisterTable * |
|
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 659a341b..2579df21 100644
--- a/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.js
+++ b/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.js
@@ -7,12 +7,13 @@ var classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl =
[ "GetModuleListening", "classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#aa4739c519e47ab297a2f9d19c603922a", null ],
[ "GetTaskRunner", "classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#aa7c7248b68c5598b3efe1a544f7f7428", null ],
[ "GRT", "classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#ac25e0c12e44b13b436560e14ba6d2d00", null ],
+ [ "IsIntegratedModule", "classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a9409a069485e9d928844886a9b5c6597", null ],
[ "IsModuleActivated", "classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a9ef4a8e708bc009941303ead198f94be", null ],
[ "ListAllRegisteredModuleID", "classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#ab2ba2f6e4be6000bb9fbffe81824f5c2", null ],
[ "ListenEvent", "classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a993748e05bd4e6048a8f073328244804", null ],
[ "ListenPublish", "classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a99431f15ee5d514fc7c2dea7beedd1fa", null ],
[ "ListRTChildKeys", "classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#aa96ad5d2bd9364cac07e61e3606d93bc", null ],
- [ "LoadAndRegisterModule", "classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a7f19b8046b3d09c0c0ccbbc3121c0b14", null ],
+ [ "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 ],
diff --git a/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl__coll__graph.md5 b/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl__coll__graph.md5
index d5eaabab..bdf6c266 100644
--- a/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl__coll__graph.md5
+++ b/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl__coll__graph.md5
@@ -1 +1 @@
-f80fc5128195a6a416a32f51c32f3839
\ No newline at end of file
+95e0421ed14809dac6cc1120131c79c1
\ No newline at end of file
diff --git a/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl__coll__graph.png b/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl__coll__graph.png
index 835a082e..e53de226 100644
Binary files a/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl__coll__graph.png and b/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl__coll__graph.png differ
diff --git a/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager__coll__graph.md5 b/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager__coll__graph.md5
index 53a2c1c5..8410d9c2 100644
--- a/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager__coll__graph.md5
+++ b/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager__coll__graph.md5
@@ -1 +1 @@
-c4d007ab52c102cf6b5b881ec7e5f320
\ No newline at end of file
+d8d6aa516702c30359ee64eec3ec27bc
\ No newline at end of file
diff --git a/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager__coll__graph.png b/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager__coll__graph.png
index aea45e09..f876df31 100644
Binary files a/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager__coll__graph.png and b/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager__coll__graph.png differ
diff --git a/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager__inherit__graph.md5
index 53a2c1c5..8410d9c2 100644
--- a/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager__inherit__graph.md5
+++ b/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager__inherit__graph.md5
@@ -1 +1 @@
-c4d007ab52c102cf6b5b881ec7e5f320
\ No newline at end of file
+d8d6aa516702c30359ee64eec3ec27bc
\ No newline at end of file
diff --git a/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager__inherit__graph.png b/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager__inherit__graph.png
index aea45e09..f876df31 100644
Binary files a/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager__inherit__graph.png and b/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager__inherit__graph.png differ
diff --git a/docs/html/classGpgFrontend_1_1Module_1_1Module_1_1Impl__coll__graph.md5 b/docs/html/classGpgFrontend_1_1Module_1_1Module_1_1Impl__coll__graph.md5
index bb450b8c..6917f21c 100644
--- a/docs/html/classGpgFrontend_1_1Module_1_1Module_1_1Impl__coll__graph.md5
+++ b/docs/html/classGpgFrontend_1_1Module_1_1Module_1_1Impl__coll__graph.md5
@@ -1 +1 @@
-062907b073575a2a73d04593aa36489f
\ No newline at end of file
+f2cb6068ade3ae229d0cfa470a836204
\ No newline at end of file
diff --git a/docs/html/classGpgFrontend_1_1Module_1_1Module_1_1Impl__coll__graph.png b/docs/html/classGpgFrontend_1_1Module_1_1Module_1_1Impl__coll__graph.png
index 0cbc994a..d2236769 100644
Binary files a/docs/html/classGpgFrontend_1_1Module_1_1Module_1_1Impl__coll__graph.png and b/docs/html/classGpgFrontend_1_1Module_1_1Module_1_1Impl__coll__graph.png differ
diff --git a/docs/html/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.md5
index 6b7b011e..d35967a5 100644
--- a/docs/html/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.md5
+++ b/docs/html/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.md5
@@ -1 +1 @@
-dc1c377a8eea4ab6b326717ea6989b37
\ No newline at end of file
+f01f482870ef77fc2ab3025a7f1e2b80
\ No newline at end of file
diff --git a/docs/html/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.png b/docs/html/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.png
index 47ef8bcf..bd12ccfc 100644
Binary files a/docs/html/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.png and b/docs/html/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.png differ
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1ModuleControllerDialog__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1ModuleControllerDialog__coll__graph.md5
index 17b97e6a..e70f2167 100644
--- a/docs/html/classGpgFrontend_1_1UI_1_1ModuleControllerDialog__coll__graph.md5
+++ b/docs/html/classGpgFrontend_1_1UI_1_1ModuleControllerDialog__coll__graph.md5
@@ -1 +1 @@
-b497415c788024a1d11120e67bafdc2a
\ No newline at end of file
+fa15d926d730c2dd6a3cf02d9f3f14a9
\ No newline at end of file
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1ModuleControllerDialog__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1ModuleControllerDialog__coll__graph.png
index 5248e60b..5dd41b3b 100644
Binary files a/docs/html/classGpgFrontend_1_1UI_1_1ModuleControllerDialog__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1ModuleControllerDialog__coll__graph.png differ
diff --git a/docs/html/namespaceGpgFrontend_1_1Module.html b/docs/html/namespaceGpgFrontend_1_1Module.html
index 186686b7..6ef54fd9 100644
--- a/docs/html/namespaceGpgFrontend_1_1Module.html
+++ b/docs/html/namespaceGpgFrontend_1_1Module.html
@@ -165,9 +165,9 @@ Functions
template<typename... Args>
auto | MakeEvent (const EventIdentifier &event_id, Args &&... args, Event::EventCallback e_cb) -> EventRefrernce |
|
-
-void | LoadModuleFromPath (const QString &mods_path) |
- |
+
+void | LoadModuleFromPath (const QString &mods_path, bool integrated) |
+ |
auto | LoadIntegratedMods () -> bool |
|
diff --git a/docs/html/namespaceGpgFrontend_1_1Module.js b/docs/html/namespaceGpgFrontend_1_1Module.js
index 828910fe..58bd52b3 100644
--- a/docs/html/namespaceGpgFrontend_1_1Module.js
+++ b/docs/html/namespaceGpgFrontend_1_1Module.js
@@ -29,7 +29,7 @@ var namespaceGpgFrontend_1_1Module =
[ "LoadExternalMods", "namespaceGpgFrontend_1_1Module.html#a95a3c32ad6b753ea6535c2b299b61b35", null ],
[ "LoadGpgFrontendModules", "namespaceGpgFrontend_1_1Module.html#a7f3912fe331338264ae22e434425f59e", null ],
[ "LoadIntegratedMods", "namespaceGpgFrontend_1_1Module.html#a671a34cf78c3b30c9148383885a767ff", null ],
- [ "LoadModuleFromPath", "namespaceGpgFrontend_1_1Module.html#a6b079a63ef733db932c99757895a5bdb", null ],
+ [ "LoadModuleFromPath", "namespaceGpgFrontend_1_1Module.html#abed70603b6806aca6d2db12a2448e1e3", null ],
[ "MakeEvent", "namespaceGpgFrontend_1_1Module.html#aaafda413ba6ccb2e0e5e866f11cf8dc5", null ],
[ "RegisterAndActivateModule", "namespaceGpgFrontend_1_1Module.html#a548ad04674384cf77aad447bc7eeaac0", null ],
[ "RegisterModule", "namespaceGpgFrontend_1_1Module.html#a0dd02118df9de6c1a538d8a4a9910129", null ],
diff --git a/docs/html/navtreedata.js b/docs/html/navtreedata.js
index 99d41066..b0ab7211 100644
--- a/docs/html/navtreedata.js
+++ b/docs/html/navtreedata.js
@@ -58,15 +58,15 @@ var NAVTREEINDEX =
"classGpgFrontend_1_1DataObjectOperator.html#a4e7673037b5c7eda5c334d50f8155150",
"classGpgFrontend_1_1GpgFileOpera.html#a5534131c79647b29c92ba282c3af7978",
"classGpgFrontend_1_1GpgSubKey.html#ac3e89f13273f8a7743f47e2ddd1e479e",
-"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a0802bc4e2a177a5eb0a3fb2ea80bd739",
-"classGpgFrontend_1_1UI_1_1CommonUtils.html#a1abc83bba95579aa94d0870181991a28",
-"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ab8f04b046abb56d53bdbe67838b84fdc",
-"classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a857152c19538b833f8945e2e68c6fe1b",
-"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#ae867b6329fcb1978479a9d70f7b017db",
-"classPinEntryDialog.html#affff341e7d03154b56d83a0278aa5143ab37c4cbae4e1b2d8b41617a230cf96fd",
-"namespaceGpgFrontend.html#a93c0ac9e329baa602e0bfdee7ea1273f",
-"structGpgFrontend_1_1GpgContextInitArgs.html#a33cd883333581952ae49784ae86edae7",
-"structpinentry.html#a8befa3521f3c8501a24d456aa18b709c"
+"classGpgFrontend_1_1Module_1_1ModuleManager.html#ae04a5eac55ad8c96eca86e59eb0ef88d",
+"classGpgFrontend_1_1UI_1_1CommonUtils.html",
+"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#aa765259f9aa65b81d59b982ee0595e52",
+"classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a200fd95182c6b7ac8103c0beed893468",
+"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a8759224e57d4c322933ed3df6d96e5f1",
+"classPinEntryDialog.html#af8667cf3aebff7354d9a1eb92b7ca668",
+"namespaceGpgFrontend.html#a8aa750a6b51fb10e71a4bcbff7777a8a",
+"structGpgFrontend_1_1GpgContextInitArgs.html",
+"structpinentry.html#a6810e60a64b360e46773f419403fb97e"
];
var SYNCONMSG = 'click to disable panel synchronisation';
diff --git a/docs/html/navtreeindex10.js b/docs/html/navtreeindex10.js
index 113749d7..b27a5c62 100644
--- a/docs/html/navtreeindex10.js
+++ b/docs/html/navtreeindex10.js
@@ -1,5 +1,9 @@
var NAVTREEINDEX10 =
{
+"namespaceGpgFrontend.html#a8aa750a6b51fb10e71a4bcbff7777a8a":[1,0,2,70],
+"namespaceGpgFrontend.html#a8de4d38ede9da260d3e9b327a1f366f1":[1,0,2,71],
+"namespaceGpgFrontend.html#a8fe8112cc97385961a3f6a18129ea789":[1,0,2,91],
+"namespaceGpgFrontend.html#a92c42a4157576fc2386eb2295120fed3":[1,0,2,95],
"namespaceGpgFrontend.html#a93c0ac9e329baa602e0bfdee7ea1273f":[1,0,2,87],
"namespaceGpgFrontend.html#a96965d89a0dbe9a2787e8db26fd8df5e":[1,0,2,107],
"namespaceGpgFrontend.html#a98a045b142891ab353f8dd2c534120e6":[1,0,2,148],
@@ -103,7 +107,6 @@ var NAVTREEINDEX10 =
"namespaceGpgFrontend_1_1Module.html#a5e4614222306688d8c2f36fd4ae23de3":[1,0,2,0,37],
"namespaceGpgFrontend_1_1Module.html#a671a34cf78c3b30c9148383885a767ff":[1,0,2,0,28],
"namespaceGpgFrontend_1_1Module.html#a6abb965a4aab039e321111ac39045a56":[1,0,2,0,10],
-"namespaceGpgFrontend_1_1Module.html#a6b079a63ef733db932c99757895a5bdb":[1,0,2,0,29],
"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],
@@ -114,6 +117,7 @@ var NAVTREEINDEX10 =
"namespaceGpgFrontend_1_1Module.html#aa21d42624d1f3dc14ada7b1f609a132a":[1,0,2,0,16],
"namespaceGpgFrontend_1_1Module.html#aaafda413ba6ccb2e0e5e866f11cf8dc5":[1,0,2,0,30],
"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],
"namespaceGpgFrontend_1_1Module.html#accf5a43c8a79876c005b9d287e8ff245":[1,0,2,0,36],
"namespaceGpgFrontend_1_1Module.html#ad158f92b60cffde02f5d5560fd094d5e":[1,0,2,0,9],
@@ -245,9 +249,5 @@ var NAVTREEINDEX10 =
"structGpgFrontend_1_1GpgCommandExecutor_1_1ExecuteContext.html#a8f7500d8174f1cef2c847a3884526111":[2,0,1,17,0,0],
"structGpgFrontend_1_1GpgCommandExecutor_1_1ExecuteContext.html#a9b3d83494d408021c39b20e0bd53d62f":[2,0,1,17,0,1],
"structGpgFrontend_1_1GpgCommandExecutor_1_1ExecuteContext.html#ab74387a32543f28a389ea41d8ba45201":[2,0,1,17,0,2],
-"structGpgFrontend_1_1GpgCommandExecutor_1_1ExecuteContext.html#ac8f9c29ee4dae95dd41e5b3d10d2f45b":[2,0,1,17,0,4],
-"structGpgFrontend_1_1GpgContextInitArgs.html":[2,0,1,18],
-"structGpgFrontend_1_1GpgContextInitArgs.html#a12e9e2e6ad393864a4b2d85727350edc":[2,0,1,18,0],
-"structGpgFrontend_1_1GpgContextInitArgs.html#a25ca282a0a82ed7aa4cb677a86f53eef":[2,0,1,18,5],
-"structGpgFrontend_1_1GpgContextInitArgs.html#a2b09f18f4f10ca44370ed204d19de122":[2,0,1,18,6]
+"structGpgFrontend_1_1GpgCommandExecutor_1_1ExecuteContext.html#ac8f9c29ee4dae95dd41e5b3d10d2f45b":[2,0,1,17,0,4]
};
diff --git a/docs/html/navtreeindex11.js b/docs/html/navtreeindex11.js
index 25a4c580..d7ed4b40 100644
--- a/docs/html/navtreeindex11.js
+++ b/docs/html/navtreeindex11.js
@@ -1,5 +1,9 @@
var NAVTREEINDEX11 =
{
+"structGpgFrontend_1_1GpgContextInitArgs.html":[2,0,1,18],
+"structGpgFrontend_1_1GpgContextInitArgs.html#a12e9e2e6ad393864a4b2d85727350edc":[2,0,1,18,0],
+"structGpgFrontend_1_1GpgContextInitArgs.html#a25ca282a0a82ed7aa4cb677a86f53eef":[2,0,1,18,5],
+"structGpgFrontend_1_1GpgContextInitArgs.html#a2b09f18f4f10ca44370ed204d19de122":[2,0,1,18,6],
"structGpgFrontend_1_1GpgContextInitArgs.html#a33cd883333581952ae49784ae86edae7":[2,0,1,18,4],
"structGpgFrontend_1_1GpgContextInitArgs.html#a5f65e909a4fdb918a55a6e92193356af":[2,0,1,18,3],
"structGpgFrontend_1_1GpgContextInitArgs.html#aa46e72b29dd89211f468047f45a7a31d":[2,0,1,18,1],
@@ -53,8 +57,9 @@ var NAVTREEINDEX11 =
"structGpgFrontend_1_1Module_1_1Event_1_1ParameterInitializer.html#ab8ae285de10b5751f6486aef63d3e853":[2,0,1,0,0,1,1],
"structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo.html":[2,0,1,0,1,0,0],
"structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo.html#a64abfeafd07546cf5a37d13cd5b65705":[2,0,1,0,1,0,0,1],
-"structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo.html#a69cea079791538b5b1587093ddf2801d":[2,0,1,0,1,0,0,2],
-"structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo.html#a7ca3f92ba143361962644b548ed21b57":[2,0,1,0,1,0,0,3],
+"structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo.html#a69cea079791538b5b1587093ddf2801d":[2,0,1,0,1,0,0,3],
+"structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo.html#a7ca3f92ba143361962644b548ed21b57":[2,0,1,0,1,0,0,4],
+"structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo.html#a80a0d88392bf9941d90c1b305c99dfb4":[2,0,1,0,1,0,0,2],
"structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo.html#ae692d0100b031800a9aebf0f78f2a0ff":[2,0,1,0,1,0,0,0],
"structGpgFrontend_1_1Module_1_1GlobalRegisterTable_1_1Impl_1_1RTNode.html":[2,0,1,0,2,0,0],
"structGpgFrontend_1_1Module_1_1GlobalRegisterTable_1_1Impl_1_1RTNode.html#a03c226f2b4f2c7d5a8c1170a8ec22d8a":[2,0,1,0,2,0,0,6],
@@ -193,27 +198,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,3],
"structfmt_1_1formatter_3_01QByteArray_01_4.html#a93b3bf7f7b33dddcc7b240c18ecd48b7":[2,0,0,1,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,4],
-"structfmt_1_1formatter_3_01QByteArray_01_4.html#ac66a3903f2bc7caa320592840a9a2c91":[2,0,0,1,5],
+"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,9],
-"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,7],
"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,7],
+"structfmt_1_1formatter_3_01QByteArray_01_4.html#ac66a3903f2bc7caa320592840a9a2c91":[2,0,0,1,8],
"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,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,6],
+"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,9],
-"structfmt_1_1formatter_3_01QString_01_4.html#aca03925995464275861427727a4e709a":[2,0,0,0,3],
+"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,6],
+"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,4],
+"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,2],
"structpinentry.html":[2,0,12],
"structpinentry.html#a01d023d70058225507186078938e26f7":[2,0,12,32],
"structpinentry.html#a0246a61cab9de3ab251b0d481a2e0f55":[2,0,12,56],
@@ -244,10 +249,5 @@ var NAVTREEINDEX11 =
"structpinentry.html#a5e196e945c9be71f3b0b06ae26e0847b":[2,0,12,48],
"structpinentry.html#a6047a4f7a27f9a1ec26dc24a37255215":[2,0,12,20],
"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#a86b90be888ce66da86f4628ec406b4e4":[2,0,12,60],
-"structpinentry.html#a879bd98959f2681f32771838864d8c4a":[2,0,12,5]
+"structpinentry.html#a6395cfc79de85c30660ca0ed9e39d6e2":[2,0,12,36]
};
diff --git a/docs/html/navtreeindex12.js b/docs/html/navtreeindex12.js
index e077a0d6..db4707df 100644
--- a/docs/html/navtreeindex12.js
+++ b/docs/html/navtreeindex12.js
@@ -1,5 +1,10 @@
var NAVTREEINDEX12 =
{
+"structpinentry.html#a6810e60a64b360e46773f419403fb97e":[2,0,12,65],
+"structpinentry.html#a6c2f16572834bdc885ca5534ed886591":[2,0,12,11],
+"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],
"structpinentry.html#a907d7456f3cca42bb48975ee5690d485":[2,0,12,57],
"structpinentry.html#a9c8b307eeab74d3c6156367a25660f42":[2,0,12,7],
diff --git a/docs/html/navtreeindex3.js b/docs/html/navtreeindex3.js
index 7728e9fa..cc39b214 100644
--- a/docs/html/navtreeindex3.js
+++ b/docs/html/navtreeindex3.js
@@ -120,48 +120,50 @@ var NAVTREEINDEX3 =
"classGpgFrontend_1_1Module_1_1Event_1_1Impl.html#aff7c72af92afdf96516ce35b8d1352ec":[2,0,1,0,0,0,13],
"classGpgFrontend_1_1Module_1_1Event_1_1Impl.html#affa787d67889fe7890da3ea105a2c187":[2,0,1,0,0,0,12],
"classGpgFrontend_1_1Module_1_1GlobalModuleContext.html":[2,0,1,0,1],
-"classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#a1f4335cab295542f49b78a8e15b6f456":[2,0,1,0,1,13],
+"classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#a1f4335cab295542f49b78a8e15b6f456":[2,0,1,0,1,14],
"classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#a264c8e3fff040efe97e66297c1007e93":[2,0,1,0,1,10],
"classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#a2a483f0c682dcf2aa6e75b7865bee2ec":[2,0,1,0,1,1],
-"classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#a2e109678b81d92569b442aba617d86fe":[2,0,1,0,1,18],
-"classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#a3d26d680dfb5036832852ccab2e31cd2":[2,0,1,0,1,12],
+"classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#a2e109678b81d92569b442aba617d86fe":[2,0,1,0,1,19],
+"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#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,11],
-"classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#aa11772c7ecb3fdc8545a67ceb8c6369b":[2,0,1,0,1,15],
-"classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#aa656d6d835b2ccb20494ff580a7cafac":[2,0,1,0,1,17],
+"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#aaf7c18deea8185834ad9f53f2a5a8579":[2,0,1,0,1,14],
"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,16],
+"classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#ac488a3f4e3cbd668fd9ce84b39078cbb":[2,0,1,0,1,17],
"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#a100b8a083176cbc5788d8af1702fb274":[2,0,1,0,1,0,15],
-"classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#a11dde09190cfa31bd19efad5dcacf214":[2,0,1,0,1,0,16],
-"classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#a36f9cf218e3cd84658cbd61116d34a96":[2,0,1,0,1,0,23],
-"classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#a4479bbccc6929a1c096f764d9c13c02f":[2,0,1,0,1,0,14],
+"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,13],
-"classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#a8e3cd9ab8dc16a2f7431618bfbc09520":[2,0,1,0,1,0,24],
+"classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#a66c9166ec3af4f15dd3af00e57ced049":[2,0,1,0,1,0,14],
+"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,12],
-"classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#aaa6ec2fcc2569cd1b22f419feadaa568":[2,0,1,0,1,0,22],
+"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,17],
+"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,18],
+"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,19],
-"classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#acc10c7acd6244ef93e85ffb6c4ad267e":[2,0,1,0,1,0,20],
-"classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#ad8285c96435bc2431481828ca943ce49":[2,0,1,0,1,0,21],
+"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#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],
@@ -229,25 +231,23 @@ var NAVTREEINDEX3 =
"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,16],
+"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,15],
-"classGpgFrontend_1_1Module_1_1ModuleManager.html#a28535b400738a4601ee836603aa13480":[2,0,1,0,6,10],
-"classGpgFrontend_1_1Module_1_1ModuleManager.html#a3b1d20608829a48688c53ecb24e6a97b":[2,0,1,0,6,8],
-"classGpgFrontend_1_1Module_1_1ModuleManager.html#a64b2c2d26f092f413a5b3b0742366e8b":[2,0,1,0,6,11],
-"classGpgFrontend_1_1Module_1_1ModuleManager.html#a654aceac22bb8f153617181658705771":[2,0,1,0,6,14],
-"classGpgFrontend_1_1Module_1_1ModuleManager.html#a708ed5ee3ab6684ddfa3d7ec00703693":[2,0,1,0,6,17],
-"classGpgFrontend_1_1Module_1_1ModuleManager.html#a88e837c5325074d10582f1b41188f0d6":[2,0,1,0,6,20],
+"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],
+"classGpgFrontend_1_1Module_1_1ModuleManager.html#a3b1d20608829a48688c53ecb24e6a97b":[2,0,1,0,6,9],
+"classGpgFrontend_1_1Module_1_1ModuleManager.html#a64b2c2d26f092f413a5b3b0742366e8b":[2,0,1,0,6,12],
+"classGpgFrontend_1_1Module_1_1ModuleManager.html#a654aceac22bb8f153617181658705771":[2,0,1,0,6,15],
+"classGpgFrontend_1_1Module_1_1ModuleManager.html#a708ed5ee3ab6684ddfa3d7ec00703693":[2,0,1,0,6,18],
+"classGpgFrontend_1_1Module_1_1ModuleManager.html#a88e837c5325074d10582f1b41188f0d6":[2,0,1,0,6,21],
"classGpgFrontend_1_1Module_1_1ModuleManager.html#a89fecabfd53b324b53242959a87d1492":[2,0,1,0,6,5],
"classGpgFrontend_1_1Module_1_1ModuleManager.html#aa1aa0b421a961c17b0a29f8e6a2102b8":[2,0,1,0,6,6],
-"classGpgFrontend_1_1Module_1_1ModuleManager.html#aba272edfb6fd75a403a03a09256b86ba":[2,0,1,0,6,19],
-"classGpgFrontend_1_1Module_1_1ModuleManager.html#abaca5b14a84e9d4d6b56dec82e88cf5d":[2,0,1,0,6,12],
+"classGpgFrontend_1_1Module_1_1ModuleManager.html#aaa8675386da0e23a37f6475ae0b52196":[2,0,1,0,6,14],
+"classGpgFrontend_1_1Module_1_1ModuleManager.html#aba272edfb6fd75a403a03a09256b86ba":[2,0,1,0,6,20],
+"classGpgFrontend_1_1Module_1_1ModuleManager.html#abaca5b14a84e9d4d6b56dec82e88cf5d":[2,0,1,0,6,13],
"classGpgFrontend_1_1Module_1_1ModuleManager.html#abe32ff3b5a730d9b36a4012680402b7e":[2,0,1,0,6,7],
+"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#acf93ddb27e882708493c0b0d90d5a301":[2,0,1,0,6,13],
"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,18],
-"classGpgFrontend_1_1Module_1_1ModuleManager.html#ae04a5eac55ad8c96eca86e59eb0ef88d":[2,0,1,0,6,9],
-"classGpgFrontend_1_1Module_1_1ModuleManager.html#af4f2570fbed76fb484e9ec5d3e8b703b":[2,0,1,0,6,4],
-"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html":[2,0,1,0,6,0]
+"classGpgFrontend_1_1Module_1_1ModuleManager.html#ad802fe563954717b33ab85f5a781c06f":[2,0,1,0,6,19]
};
diff --git a/docs/html/navtreeindex4.js b/docs/html/navtreeindex4.js
index 5a946e09..ea84afd7 100644
--- a/docs/html/navtreeindex4.js
+++ b/docs/html/navtreeindex4.js
@@ -1,28 +1,32 @@
var NAVTREEINDEX4 =
{
+"classGpgFrontend_1_1Module_1_1ModuleManager.html#ae04a5eac55ad8c96eca86e59eb0ef88d":[2,0,1,0,6,10],
+"classGpgFrontend_1_1Module_1_1ModuleManager.html#af4f2570fbed76fb484e9ec5d3e8b703b":[2,0,1,0,6,4],
+"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html":[2,0,1,0,6,0],
"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,14],
-"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a3075eef2bb18d65e051d4ccb6c601a69":[2,0,1,0,6,0,19],
-"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a41f8154e4d1e211cc1dbc9ba5d847e89":[2,0,1,0,6,0,17],
+"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],
-"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a701c5a2ac5ecbad2f7748692c913227e":[2,0,1,0,6,0,13],
-"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a752848641e5bac2096d0d40264f59f41":[2,0,1,0,6,0,16],
-"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a7f19b8046b3d09c0c0ccbbc3121c0b14":[2,0,1,0,6,0,12],
-"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a993748e05bd4e6048a8f073328244804":[2,0,1,0,6,0,9],
-"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a99431f15ee5d514fc7c2dea7beedd1fa":[2,0,1,0,6,0,10],
-"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a9ef4a8e708bc009941303ead198f94be":[2,0,1,0,6,0,7],
+"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a701c5a2ac5ecbad2f7748692c913227e":[2,0,1,0,6,0,14],
+"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a752848641e5bac2096d0d40264f59f41":[2,0,1,0,6,0,17],
+"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a9409a069485e9d928844886a9b5c6597":[2,0,1,0,6,0,7],
+"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a993748e05bd4e6048a8f073328244804":[2,0,1,0,6,0,10],
+"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a99431f15ee5d514fc7c2dea7beedd1fa":[2,0,1,0,6,0,11],
+"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a9ef4a8e708bc009941303ead198f94be":[2,0,1,0,6,0,8],
"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#aa4739c519e47ab297a2f9d19c603922a":[2,0,1,0,6,0,4],
"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#aa7c7248b68c5598b3efe1a544f7f7428":[2,0,1,0,6,0,5],
-"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#aa96ad5d2bd9364cac07e61e3606d93bc":[2,0,1,0,6,0,11],
-"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#ab2ba2f6e4be6000bb9fbffe81824f5c2":[2,0,1,0,6,0,8],
-"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#ab78b9f24728188dc9e884d0cbc284eb7":[2,0,1,0,6,0,21],
-"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#ac030cab7dc39e07c5a198ba4d2ad8c1a":[2,0,1,0,6,0,20],
+"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#aa96ad5d2bd9364cac07e61e3606d93bc":[2,0,1,0,6,0,12],
+"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#ac25e0c12e44b13b436560e14ba6d2d00":[2,0,1,0,6,0,6],
-"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#ac640531756c26386d6353293b420851e":[2,0,1,0,6,0,18],
+"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,22],
-"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#ada2e879d721026aa1b37e66c16501544":[2,0,1,0,6,0,15],
+"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],
@@ -245,9 +249,5 @@ var NAVTREEINDEX4 =
"classGpgFrontend_1_1UI_1_1ChoosePage.html#a22bb223faa8f94e80b677b78b08e5d67":[2,0,1,3,34,3],
"classGpgFrontend_1_1UI_1_1ChoosePage.html#a243a82d13267b7252844fd7691c703f0":[2,0,1,3,34,1],
"classGpgFrontend_1_1UI_1_1ChoosePage.html#ae370e789009be3926410cb749c86907b":[2,0,1,3,34,0],
-"classGpgFrontend_1_1UI_1_1ChoosePage.html#af0d7890fe65385b7785719b9cff0718b":[2,0,1,3,34,2],
-"classGpgFrontend_1_1UI_1_1CommonUtils.html":[2,0,1,3,53],
-"classGpgFrontend_1_1UI_1_1CommonUtils.html#a057526790f6b2f6288c3a35322c34d8d":[2,0,1,3,53,19],
-"classGpgFrontend_1_1UI_1_1CommonUtils.html#a0c8bf56fc5371cd2c5e9d2a0f67bf72a":[2,0,1,3,53,18],
-"classGpgFrontend_1_1UI_1_1CommonUtils.html#a0cf35e9d02ff3464cb83435a61d060c2":[2,0,1,3,53,9]
+"classGpgFrontend_1_1UI_1_1ChoosePage.html#af0d7890fe65385b7785719b9cff0718b":[2,0,1,3,34,2]
};
diff --git a/docs/html/navtreeindex5.js b/docs/html/navtreeindex5.js
index b9c48b6e..5eff802a 100644
--- a/docs/html/navtreeindex5.js
+++ b/docs/html/navtreeindex5.js
@@ -1,5 +1,9 @@
var NAVTREEINDEX5 =
{
+"classGpgFrontend_1_1UI_1_1CommonUtils.html":[2,0,1,3,53],
+"classGpgFrontend_1_1UI_1_1CommonUtils.html#a057526790f6b2f6288c3a35322c34d8d":[2,0,1,3,53,19],
+"classGpgFrontend_1_1UI_1_1CommonUtils.html#a0c8bf56fc5371cd2c5e9d2a0f67bf72a":[2,0,1,3,53,18],
+"classGpgFrontend_1_1UI_1_1CommonUtils.html#a0cf35e9d02ff3464cb83435a61d060c2":[2,0,1,3,53,9],
"classGpgFrontend_1_1UI_1_1CommonUtils.html#a1abc83bba95579aa94d0870181991a28":[2,0,1,3,53,11],
"classGpgFrontend_1_1UI_1_1CommonUtils.html#a2eb678ee01d3b6e1c0d8f90345712644":[2,0,1,3,53,8],
"classGpgFrontend_1_1UI_1_1CommonUtils.html#a35a47fc31b81b6c4f5899e8ab5c4c51a":[2,0,1,3,53,20],
@@ -245,9 +249,5 @@ var NAVTREEINDEX5 =
"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a8e6554b47e0dd6c2025ccb0d1d0cb658":[2,0,1,3,14,3],
"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a8ecbb5721d5a2a0f85fd7b362f62bf83":[2,0,1,3,14,31],
"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a904d5e72a1946382ddfca80dc57c4db5":[2,0,1,3,14,9],
-"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#aa36de61cedb98f919f10e35d4e6b5146":[2,0,1,3,14,6],
-"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#aa765259f9aa65b81d59b982ee0595e52":[2,0,1,3,14,15],
-"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#aaa9b55830c39ce854e4ede26d916a844":[2,0,1,3,14,24],
-"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ab0ccac068670a3e28ce78ff87a40b2fc":[2,0,1,3,14,26],
-"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ab40bd826a5437124f8afd09824606c76":[2,0,1,3,14,7]
+"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#aa36de61cedb98f919f10e35d4e6b5146":[2,0,1,3,14,6]
};
diff --git a/docs/html/navtreeindex6.js b/docs/html/navtreeindex6.js
index cbea6c05..d4b7f178 100644
--- a/docs/html/navtreeindex6.js
+++ b/docs/html/navtreeindex6.js
@@ -1,5 +1,9 @@
var NAVTREEINDEX6 =
{
+"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#aa765259f9aa65b81d59b982ee0595e52":[2,0,1,3,14,15],
+"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#aaa9b55830c39ce854e4ede26d916a844":[2,0,1,3,14,24],
+"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ab0ccac068670a3e28ce78ff87a40b2fc":[2,0,1,3,14,26],
+"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ab40bd826a5437124f8afd09824606c76":[2,0,1,3,14,7],
"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ab8f04b046abb56d53bdbe67838b84fdc":[2,0,1,3,14,8],
"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ae611933ccd6fd67e65a2cf1ff09b5e8f":[2,0,1,3,14,11],
"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ae8aeaff7be0b1552b29d1f209af0bd28":[2,0,1,3,14,1],
@@ -245,9 +249,5 @@ var NAVTREEINDEX6 =
"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#af615a531375a74aa4b46a7dd53d38422":[2,0,1,3,12,24],
"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#af64f0fb9433ea88853beec3a3dd5a334":[2,0,1,3,12,2],
"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#afae8573a9f425bd53c84828576f4ac1f":[2,0,1,3,12,16],
-"classGpgFrontend_1_1UI_1_1KeyServerImportTask.html":[2,0,1,3,48],
-"classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a200fd95182c6b7ac8103c0beed893468":[2,0,1,3,48,4],
-"classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a388dabb769828ce3df76497bc02c2e18":[2,0,1,3,48,5],
-"classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a3adcb012ca6a6c08c65b94ab301eba27":[2,0,1,3,48,8],
-"classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a5e1fb2810c4b07bd9d8c6fe11c72c526":[2,0,1,3,48,7]
+"classGpgFrontend_1_1UI_1_1KeyServerImportTask.html":[2,0,1,3,48]
};
diff --git a/docs/html/navtreeindex7.js b/docs/html/navtreeindex7.js
index ff9204a2..4c228151 100644
--- a/docs/html/navtreeindex7.js
+++ b/docs/html/navtreeindex7.js
@@ -1,5 +1,9 @@
var NAVTREEINDEX7 =
{
+"classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a200fd95182c6b7ac8103c0beed893468":[2,0,1,3,48,4],
+"classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a388dabb769828ce3df76497bc02c2e18":[2,0,1,3,48,5],
+"classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a3adcb012ca6a6c08c65b94ab301eba27":[2,0,1,3,48,8],
+"classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a5e1fb2810c4b07bd9d8c6fe11c72c526":[2,0,1,3,48,7],
"classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a857152c19538b833f8945e2e68c6fe1b":[2,0,1,3,48,3],
"classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#ac0c91559fa74b01a5b6d9cf925727339":[2,0,1,3,48,1],
"classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#acc4979fdc2daa3c0805754a725969aa3":[2,0,1,3,48,2],
@@ -245,9 +249,5 @@ var NAVTREEINDEX7 =
"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a45267bcfc8fc83851894061c0fe2a9c2":[2,0,1,3,66,10],
"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a4f94e9ef7889a169bda5a47b7f657358":[2,0,1,3,66,16],
"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a5b8ce290e1b949b56734227e8d42adba":[2,0,1,3,66,15],
-"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a6218e6e12bdba0228e4ab4276f7fed7a":[2,0,1,3,66,3],
-"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a8759224e57d4c322933ed3df6d96e5f1":[2,0,1,3,66,0],
-"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aa9e82690824c82e7628ba4ace9d6e2fe":[2,0,1,3,66,7],
-"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#ac1902b063decfeebe7f0908cbfe618ce":[2,0,1,3,66,5],
-"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#ac3404f71f0f93cd7f5cb64d5d56624d7":[2,0,1,3,66,6]
+"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a6218e6e12bdba0228e4ab4276f7fed7a":[2,0,1,3,66,3]
};
diff --git a/docs/html/navtreeindex8.js b/docs/html/navtreeindex8.js
index d3a88a26..403ff7f1 100644
--- a/docs/html/navtreeindex8.js
+++ b/docs/html/navtreeindex8.js
@@ -1,5 +1,9 @@
var NAVTREEINDEX8 =
{
+"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a8759224e57d4c322933ed3df6d96e5f1":[2,0,1,3,66,0],
+"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aa9e82690824c82e7628ba4ace9d6e2fe":[2,0,1,3,66,7],
+"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#ac1902b063decfeebe7f0908cbfe618ce":[2,0,1,3,66,5],
+"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#ac3404f71f0f93cd7f5cb64d5d56624d7":[2,0,1,3,66,6],
"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#ae867b6329fcb1978479a9d70f7b017db":[2,0,1,3,66,12],
"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aee4f46e54f29da671838ed232e526700":[2,0,1,3,66,1],
"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#af5dfdfd48ef64cc46e524ec70a22fe3a":[2,0,1,3,66,8],
@@ -245,9 +249,5 @@ var NAVTREEINDEX8 =
"classPinEntryDialog.html#ae46f6d884db28a85ca289b74a6ed6657":[2,0,14,49],
"classPinEntryDialog.html#aed26dd7ba9f5ff300f113e04400871ff":[2,0,14,69],
"classPinEntryDialog.html#af0c044d4e82f6e72a72b713704953044":[2,0,14,58],
-"classPinEntryDialog.html#af12911bea59bd5df05346952c6b9382c":[2,0,14,53],
-"classPinEntryDialog.html#af8667cf3aebff7354d9a1eb92b7ca668":[2,0,14,38],
-"classPinEntryDialog.html#affff341e7d03154b56d83a0278aa5143":[2,0,14,2],
-"classPinEntryDialog.html#affff341e7d03154b56d83a0278aa5143a4285b0cd9faf99584dea1b20b81eb4a2":[2,0,14,2,2],
-"classPinEntryDialog.html#affff341e7d03154b56d83a0278aa5143a8e3454c439c642eb78522bf43cd23258":[2,0,14,2,0]
+"classPinEntryDialog.html#af12911bea59bd5df05346952c6b9382c":[2,0,14,53]
};
diff --git a/docs/html/navtreeindex9.js b/docs/html/navtreeindex9.js
index 937d6f16..7e2d9cb8 100644
--- a/docs/html/navtreeindex9.js
+++ b/docs/html/navtreeindex9.js
@@ -1,5 +1,9 @@
var NAVTREEINDEX9 =
{
+"classPinEntryDialog.html#af8667cf3aebff7354d9a1eb92b7ca668":[2,0,14,38],
+"classPinEntryDialog.html#affff341e7d03154b56d83a0278aa5143":[2,0,14,2],
+"classPinEntryDialog.html#affff341e7d03154b56d83a0278aa5143a4285b0cd9faf99584dea1b20b81eb4a2":[2,0,14,2,2],
+"classPinEntryDialog.html#affff341e7d03154b56d83a0278aa5143a8e3454c439c642eb78522bf43cd23258":[2,0,14,2,0],
"classPinEntryDialog.html#affff341e7d03154b56d83a0278aa5143ab37c4cbae4e1b2d8b41617a230cf96fd":[2,0,14,2,1],
"classPinLineEdit.html":[2,0,15],
"classPinLineEdit.html#a14dd3fe7ed64aedfdeee1ba548a3c93b":[2,0,15,5],
@@ -117,8 +121,8 @@ var NAVTREEINDEX9 =
"functions_d.html":[2,3,0,3],
"functions_e.html":[2,3,0,4],
"functions_f.html":[2,3,0,5],
-"functions_func.html":[2,3,1,0],
"functions_func.html":[2,3,1],
+"functions_func.html":[2,3,1,0],
"functions_func_c.html":[2,3,1,1],
"functions_func_d.html":[2,3,1,2],
"functions_func_e.html":[2,3,1,3],
@@ -162,8 +166,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],
@@ -245,9 +249,5 @@ var NAVTREEINDEX9 =
"namespaceGpgFrontend.html#a80a8da094435f1d6ff7275024f58b0ee":[1,0,2,178],
"namespaceGpgFrontend.html#a820d6ec2f05b8dba4d72b4d73839219f":[1,0,2,125],
"namespaceGpgFrontend.html#a8289d85d3d0ba11d77b6982c362ca33d":[1,0,2,98],
-"namespaceGpgFrontend.html#a864178db4c07b932c2ae6e7a20fe87bf":[1,0,2,113],
-"namespaceGpgFrontend.html#a8aa750a6b51fb10e71a4bcbff7777a8a":[1,0,2,70],
-"namespaceGpgFrontend.html#a8de4d38ede9da260d3e9b327a1f366f1":[1,0,2,71],
-"namespaceGpgFrontend.html#a8fe8112cc97385961a3f6a18129ea789":[1,0,2,91],
-"namespaceGpgFrontend.html#a92c42a4157576fc2386eb2295120fed3":[1,0,2,95]
+"namespaceGpgFrontend.html#a864178db4c07b932c2ae6e7a20fe87bf":[1,0,2,113]
};
diff --git a/docs/html/search/all_11.js b/docs/html/search/all_11.js
index 1610547d..99f3c52e 100644
--- a/docs/html/search/all_11.js
+++ b/docs/html/search/all_11.js
@@ -47,8 +47,8 @@ var searchData=
['setownertrustlevel_631',['SetOwnerTrustLevel',['../classGpgFrontend_1_1UI_1_1SetOwnerTrustLevel.html',1,'GpgFrontend::UI::SetOwnerTrustLevel'],['../classGpgFrontend_1_1GpgKeyManager.html#a5fa56401416872cd4ed741830b72041b',1,'GpgFrontend::GpgKeyManager::SetOwnerTrustLevel()'],['../classGpgFrontend_1_1UI_1_1SetOwnerTrustLevel.html#a635e1ca7837abb556ffa589d52d8ce42',1,'GpgFrontend::UI::SetOwnerTrustLevel::SetOwnerTrustLevel()']]],
['setpassphrase_632',['SetPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#a0499b0e924ff9d63361b744ead83fc40',1,'GpgFrontend::GenKeyInfo']]],
['setprimaryuid_633',['SetPrimaryUID',['../classGpgFrontend_1_1GpgUIDOperator.html#a5a591f82d024b0383c1445acad99d8ee',1,'GpgFrontend::GpgUIDOperator']]],
- ['setrtn_634',['SetRTN',['../classGpgFrontend_1_1Thread_1_1Task_1_1Impl.html#a4f5addc7abfd18e180a5969895f5d83a',1,'GpgFrontend::Thread::Task::Impl']]],
- ['setrtn_635',['setRTN',['../classGpgFrontend_1_1Thread_1_1Task.html#a406206b3ecb2bdcff9608d762735c5e4',1,'GpgFrontend::Thread::Task']]],
+ ['setrtn_634',['setRTN',['../classGpgFrontend_1_1Thread_1_1Task.html#a406206b3ecb2bdcff9608d762735c5e4',1,'GpgFrontend::Thread::Task']]],
+ ['setrtn_635',['SetRTN',['../classGpgFrontend_1_1Thread_1_1Task_1_1Impl.html#a4f5addc7abfd18e180a5969895f5d83a',1,'GpgFrontend::Thread::Task::Impl']]],
['setsettings_636',['SetSettings',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html#a2fed39a2657407fcdb37d2431ef28e56',1,'GpgFrontend::UI::AppearanceTab::SetSettings()'],['../classGpgFrontend_1_1UI_1_1GeneralTab.html#a7b26d8a088ce8f50b1fd0e719e38534b',1,'GpgFrontend::UI::GeneralTab::SetSettings()'],['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#a221117b56dda48956e44d96a08f6823b',1,'GpgFrontend::UI::KeyserverTab::SetSettings()'],['../classGpgFrontend_1_1UI_1_1NetworkTab.html#a51cd114731899b6480cc1b6d5a80826a',1,'GpgFrontend::UI::NetworkTab::SetSettings()']]],
['setsigners_637',['SetSigners',['../classGpgFrontend_1_1GpgBasicOperator.html#aba9f6442dadcba29994d6680a4a0a8d6',1,'GpgFrontend::GpgBasicOperator']]],
['setstatus_638',['setStatus',['../classGpgFrontend_1_1GpgResultAnalyse.html#a034b7e5ccf50f9d89ac9597cd5c84efc',1,'GpgFrontend::GpgResultAnalyse']]],
@@ -75,8 +75,8 @@ var searchData=
['signalrefreshinfoboard_659',['SignalRefreshInfoBoard',['../classGpgFrontend_1_1UI_1_1UISignalStation.html#a1952bc7608f4449afd2c0f0e169a0007',1,'GpgFrontend::UI::UISignalStation::SignalRefreshInfoBoard()'],['../classGpgFrontend_1_1UI_1_1FilePage.html#a8c24032167f81c86770c216c3831da57',1,'GpgFrontend::UI::FilePage::SignalRefreshInfoBoard()']]],
['signalrefreshstatusbar_660',['SignalRefreshStatusBar',['../classGpgFrontend_1_1UI_1_1UISignalStation.html#a28d70bad814ed795ba47e4daf2917e19',1,'GpgFrontend::UI::UISignalStation::SignalRefreshStatusBar()'],['../classGpgFrontend_1_1UI_1_1KeyList.html#a947f4ce45285b58bbde94f4ae879ff7a',1,'GpgFrontend::UI::KeyList::SignalRefreshStatusBar()']]],
['signalreplyfromupdateserver_661',['SignalReplyFromUpdateServer',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a5e752e01539ccfdc6bbe41a404ddaa95',1,'GpgFrontend::UI::UpdateTab']]],
- ['signalrestartneeded_662',['SignalRestartNeeded',['../classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html#a35a707865fbcc95b6261e382a6ff171c',1,'GpgFrontend::UI::GnuPGControllerDialog::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#af5ba6646af45d0d1d794bc52ee54b1b9',1,'GpgFrontend::UI::SettingsDialog::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1GeneralTab.html#aa88ccbda61728be6de0aa2d9b92e0b69',1,'GpgFrontend::UI::GeneralTab::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#a26449a77844d9db69a543ff88f10e347',1,'GpgFrontend::UI::KeyserverTab::SignalRestartNeeded()']]],
- ['signalrestartneeded_663',['signalRestartNeeded',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html#abff49b636449815a9ebff52f5c067712',1,'GpgFrontend::UI::AppearanceTab']]],
+ ['signalrestartneeded_662',['signalRestartNeeded',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html#abff49b636449815a9ebff52f5c067712',1,'GpgFrontend::UI::AppearanceTab']]],
+ ['signalrestartneeded_663',['SignalRestartNeeded',['../classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html#a35a707865fbcc95b6261e382a6ff171c',1,'GpgFrontend::UI::GnuPGControllerDialog::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#af5ba6646af45d0d1d794bc52ee54b1b9',1,'GpgFrontend::UI::SettingsDialog::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1GeneralTab.html#aa88ccbda61728be6de0aa2d9b92e0b69',1,'GpgFrontend::UI::GeneralTab::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#a26449a77844d9db69a543ff88f10e347',1,'GpgFrontend::UI::KeyserverTab::SignalRestartNeeded()']]],
['signaluibytesdisplayed_664',['SignalUIBytesDisplayed',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#afd3749488fdd3d1c53446fb8c833f3f4',1,'GpgFrontend::UI::PlainTextEditorPage']]],
['signalupgradeversion_665',['SignalUpgradeVersion',['../classVersionCheckTask.html#a017130179e7d18f361d112b9ad3d7462',1,'VersionCheckTask']]],
['signaturedetailsdialog_666',['SignatureDetailsDialog',['../classSignatureDetailsDialog.html',1,'']]],
diff --git a/docs/html/search/enums_0.js b/docs/html/search/enums_0.js
index d687a56c..a80bbf00 100644
--- a/docs/html/search/enums_0.js
+++ b/docs/html/search/enums_0.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['infoboardstatus_1810',['InfoBoardStatus',['../namespaceGpgFrontend_1_1UI.html#acbaebd342a317b1f067942e5144bb00d',1,'GpgFrontend::UI']]]
+ ['infoboardstatus_1811',['InfoBoardStatus',['../namespaceGpgFrontend_1_1UI.html#acbaebd342a317b1f067942e5144bb00d',1,'GpgFrontend::UI']]]
];
diff --git a/docs/html/search/functions_11.js b/docs/html/search/functions_11.js
index b57b5d5c..68b16141 100644
--- a/docs/html/search/functions_11.js
+++ b/docs/html/search/functions_11.js
@@ -42,8 +42,8 @@ var searchData=
['setownertrustlevel_1507',['SetOwnerTrustLevel',['../classGpgFrontend_1_1UI_1_1SetOwnerTrustLevel.html#a635e1ca7837abb556ffa589d52d8ce42',1,'GpgFrontend::UI::SetOwnerTrustLevel::SetOwnerTrustLevel()'],['../classGpgFrontend_1_1GpgKeyManager.html#a5fa56401416872cd4ed741830b72041b',1,'GpgFrontend::GpgKeyManager::SetOwnerTrustLevel()']]],
['setpassphrase_1508',['SetPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#a0499b0e924ff9d63361b744ead83fc40',1,'GpgFrontend::GenKeyInfo']]],
['setprimaryuid_1509',['SetPrimaryUID',['../classGpgFrontend_1_1GpgUIDOperator.html#a5a591f82d024b0383c1445acad99d8ee',1,'GpgFrontend::GpgUIDOperator']]],
- ['setrtn_1510',['SetRTN',['../classGpgFrontend_1_1Thread_1_1Task_1_1Impl.html#a4f5addc7abfd18e180a5969895f5d83a',1,'GpgFrontend::Thread::Task::Impl']]],
- ['setrtn_1511',['setRTN',['../classGpgFrontend_1_1Thread_1_1Task.html#a406206b3ecb2bdcff9608d762735c5e4',1,'GpgFrontend::Thread::Task']]],
+ ['setrtn_1510',['setRTN',['../classGpgFrontend_1_1Thread_1_1Task.html#a406206b3ecb2bdcff9608d762735c5e4',1,'GpgFrontend::Thread::Task']]],
+ ['setrtn_1511',['SetRTN',['../classGpgFrontend_1_1Thread_1_1Task_1_1Impl.html#a4f5addc7abfd18e180a5969895f5d83a',1,'GpgFrontend::Thread::Task::Impl']]],
['setsettings_1512',['SetSettings',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html#a2fed39a2657407fcdb37d2431ef28e56',1,'GpgFrontend::UI::AppearanceTab::SetSettings()'],['../classGpgFrontend_1_1UI_1_1GeneralTab.html#a7b26d8a088ce8f50b1fd0e719e38534b',1,'GpgFrontend::UI::GeneralTab::SetSettings()'],['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#a221117b56dda48956e44d96a08f6823b',1,'GpgFrontend::UI::KeyserverTab::SetSettings()'],['../classGpgFrontend_1_1UI_1_1NetworkTab.html#a51cd114731899b6480cc1b6d5a80826a',1,'GpgFrontend::UI::NetworkTab::SetSettings()']]],
['setsigners_1513',['SetSigners',['../classGpgFrontend_1_1GpgBasicOperator.html#aba9f6442dadcba29994d6680a4a0a8d6',1,'GpgFrontend::GpgBasicOperator']]],
['setstatus_1514',['setStatus',['../classGpgFrontend_1_1GpgResultAnalyse.html#a034b7e5ccf50f9d89ac9597cd5c84efc',1,'GpgFrontend::GpgResultAnalyse']]],
@@ -67,119 +67,120 @@ var searchData=
['signalrefreshinfoboard_1532',['SignalRefreshInfoBoard',['../classGpgFrontend_1_1UI_1_1FilePage.html#a8c24032167f81c86770c216c3831da57',1,'GpgFrontend::UI::FilePage::SignalRefreshInfoBoard()'],['../classGpgFrontend_1_1UI_1_1UISignalStation.html#a1952bc7608f4449afd2c0f0e169a0007',1,'GpgFrontend::UI::UISignalStation::SignalRefreshInfoBoard()']]],
['signalrefreshstatusbar_1533',['SignalRefreshStatusBar',['../classGpgFrontend_1_1UI_1_1KeyList.html#a947f4ce45285b58bbde94f4ae879ff7a',1,'GpgFrontend::UI::KeyList::SignalRefreshStatusBar()'],['../classGpgFrontend_1_1UI_1_1UISignalStation.html#a28d70bad814ed795ba47e4daf2917e19',1,'GpgFrontend::UI::UISignalStation::SignalRefreshStatusBar()']]],
['signalreplyfromupdateserver_1534',['SignalReplyFromUpdateServer',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a5e752e01539ccfdc6bbe41a404ddaa95',1,'GpgFrontend::UI::UpdateTab']]],
- ['signalrestartneeded_1535',['SignalRestartNeeded',['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#a26449a77844d9db69a543ff88f10e347',1,'GpgFrontend::UI::KeyserverTab::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1GeneralTab.html#aa88ccbda61728be6de0aa2d9b92e0b69',1,'GpgFrontend::UI::GeneralTab::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#af5ba6646af45d0d1d794bc52ee54b1b9',1,'GpgFrontend::UI::SettingsDialog::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html#a35a707865fbcc95b6261e382a6ff171c',1,'GpgFrontend::UI::GnuPGControllerDialog::SignalRestartNeeded()']]],
+ ['signalrestartneeded_1535',['SignalRestartNeeded',['../classGpgFrontend_1_1UI_1_1GeneralTab.html#aa88ccbda61728be6de0aa2d9b92e0b69',1,'GpgFrontend::UI::GeneralTab::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#af5ba6646af45d0d1d794bc52ee54b1b9',1,'GpgFrontend::UI::SettingsDialog::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html#a35a707865fbcc95b6261e382a6ff171c',1,'GpgFrontend::UI::GnuPGControllerDialog::SignalRestartNeeded()']]],
['signalrestartneeded_1536',['signalRestartNeeded',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html#abff49b636449815a9ebff52f5c067712',1,'GpgFrontend::UI::AppearanceTab']]],
- ['signaluibytesdisplayed_1537',['SignalUIBytesDisplayed',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#afd3749488fdd3d1c53446fb8c833f3f4',1,'GpgFrontend::UI::PlainTextEditorPage']]],
- ['signalupgradeversion_1538',['SignalUpgradeVersion',['../classVersionCheckTask.html#a017130179e7d18f361d112b9ad3d7462',1,'VersionCheckTask']]],
- ['signerspicker_1539',['SignersPicker',['../classGpgFrontend_1_1UI_1_1SignersPicker.html#a02c3ba737702894fc6d4ac1a1c543ccb',1,'GpgFrontend::UI::SignersPicker']]],
- ['signfile_1540',['SignFile',['../classGpgFrontend_1_1GpgFileOpera.html#acbbc57156fd7aa984489a2397b942fef',1,'GpgFrontend::GpgFileOpera']]],
- ['signfilesync_1541',['SignFileSync',['../classGpgFrontend_1_1GpgFileOpera.html#a247db95aa42991f6772f2404e81e822d',1,'GpgFrontend::GpgFileOpera']]],
- ['signkey_1542',['SignKey',['../classGpgFrontend_1_1GpgKeyManager.html#ab5e56b3a2161f3251666c988d7eaa929',1,'GpgFrontend::GpgKeyManager']]],
- ['signsync_1543',['SignSync',['../classGpgFrontend_1_1GpgBasicOperator.html#aec37726d1386dcca7a75e1f2706bad77',1,'GpgFrontend::GpgBasicOperator']]],
- ['singletonfunctionobject_1544',['SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html#a194e49b07d46345bdad386505d743a61',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(const SingletonFunctionObject< T > &)=delete'],['../classGpgFrontend_1_1SingletonFunctionObject.html#aabc5fe8e5a372ac276a265286457cb9a',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(T &&)=delete'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a4aa7f1eb1d3281bb1fccfcbb1b416251',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(int channel)'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a02e76b42ab51d77588b01c7508bed258',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject()=default'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a7090636bed6f4bad5b99f28f6872c645',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(const T &)=delete']]],
- ['slot_5factivated_5fkey_5ftype_1545',['slot_activated_key_type',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a52a0aadc9b1e80bdcaaf1ad9d8997957',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_activated_key_type()'],['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ab8f04b046abb56d53bdbe67838b84fdc',1,'GpgFrontend::UI::KeyGenDialog::slot_activated_key_type()']]],
- ['slot_5fadd_5fpgp_5fheader_1546',['slot_add_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a821247d738457c4ee046162aad6728f9',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fadd_5fuid_5fresult_1547',['slot_add_uid_result',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a16f1ae88d6a417b614cfc6ae1852187c',1,'GpgFrontend::UI::KeyPairUIDTab']]],
- ['slot_5fappend_5fselected_5fkeys_1548',['slot_append_selected_keys',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a76bf3784d751db78ed13bd9962e14472',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fauthentication_5fbox_5fchanged_1549',['slot_authentication_box_changed',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a13229f07ef0ed594357df1918af50d3d',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_authentication_box_changed()'],['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a904d5e72a1946382ddfca80dc57c4db5',1,'GpgFrontend::UI::KeyGenDialog::slot_authentication_box_changed()']]],
- ['slot_5fcertification_5fbox_5fchanged_1550',['slot_certification_box_changed',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a8ab50d8f47489c57e382b3fe231ba9a7',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_certification_box_changed()'],['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a48e953cd49efde2315868e8606af7226',1,'GpgFrontend::UI::KeyGenDialog::slot_certification_box_changed()']]],
- ['slot_5fclean_5fdouble_5fline_5fbreaks_1551',['slot_clean_double_line_breaks',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aea9274389c3b049793fe5aa5a6adf63c',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fcompress_5ffiles_1552',['slot_compress_files',['../classGpgFrontend_1_1UI_1_1FileTreeView.html#a4e4c6474f46750c5e78cbd10ce6c2cc1',1,'GpgFrontend::UI::FileTreeView']]],
- ['slot_5fcopy_5fdefault_5fuid_5fto_5fclipboard_1553',['slot_copy_default_uid_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3982432b140738859415e487e2c5f5eb',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fcopy_5ffingerprint_1554',['slot_copy_fingerprint',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#af8b600fbd7cd0fbb5b6183403bf870b2',1,'GpgFrontend::UI::KeyPairDetailTab']]],
- ['slot_5fcopy_5fkey_5fid_5fto_5fclipboard_1555',['slot_copy_key_id_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9e2ddb2135df42d76134bea168fbdce9',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fcopy_5fmail_5faddress_5fto_5fclipboard_1556',['slot_copy_mail_address_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af93d72eaf58326f1f9e926752c6b1fc6',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fcreate_5fnew_5fuid_1557',['slot_create_new_uid',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a4e115ce46a85c2f9e4e0e2427839fc7c',1,'GpgFrontend::UI::KeyNewUIDDialog']]],
- ['slot_5fcreate_5fpopup_5fmenu_1558',['slot_create_popup_menu',['../classGpgFrontend_1_1UI_1_1FileTreeView.html#ac45715a8e6e67f1221a1902ee5d51a44',1,'GpgFrontend::UI::FileTreeView']]],
- ['slot_5fcut_5fpgp_5fheader_1559',['slot_cut_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7f5a88922d06bee977335fb4b5f1d86d',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fdisable_5ftab_5factions_1560',['slot_disable_tab_actions',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a24a0b0d974fc5f8fdda60c128a82d957',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fdouble_5fclicked_1561',['slot_double_clicked',['../classGpgFrontend_1_1UI_1_1KeyList.html#a69e54f06d546d516a0dcdf1055b8028e',1,'GpgFrontend::UI::KeyList']]],
- ['slot_5fencryption_5fbox_5fchanged_1562',['slot_encryption_box_changed',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a1f4dda7500b3de7476e5d1e7bd5b550b',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_encryption_box_changed()'],['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ae611933ccd6fd67e65a2cf1ff09b5e8f',1,'GpgFrontend::UI::KeyGenDialog::slot_encryption_box_changed()']]],
- ['slot_5fexpire_5fbox_5fchanged_1563',['slot_expire_box_changed',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a49d9f3bb2cfb17eb39dcd4dc0385234e',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_expire_box_changed()'],['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a516aa59c71a9ddf06c51e93252e93b76',1,'GpgFrontend::UI::KeyGenDialog::slot_expire_box_changed()']]],
- ['slot_5fexport_5fprivate_5fkey_1564',['slot_export_private_key',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a384f4250e58110da58c0e6996b42a8ab',1,'GpgFrontend::UI::KeyPairOperaTab']]],
- ['slot_5ffile_5ftree_5fview_5fitem_5fdouble_5fclicked_1565',['slot_file_tree_view_item_double_clicked',['../classGpgFrontend_1_1UI_1_1FileTreeView.html#a3f3f0feea01ce05304e48110d2f33af0',1,'GpgFrontend::UI::FileTreeView']]],
- ['slot_5ffind_1566',['slot_find',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae28089efbd236708601470f30f26faaa',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fformat_5fgpg_5fheader_1567',['slot_format_gpg_header',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a45267bcfc8fc83851894061c0fe2a9c2',1,'GpgFrontend::UI::PlainTextEditorPage']]],
- ['slot_5fimport_1568',['slot_import',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ac9c14bbc97945c94fd02c8e067ccab06',1,'GpgFrontend::UI::KeyServerImportDialog']]],
- ['slot_5fimport_5ffinished_1569',['slot_import_finished',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a236935d77e2b2a17ee66798c490f1361',1,'GpgFrontend::UI::KeyServerImportDialog']]],
- ['slot_5fimport_5fkey_5ffrom_5fedit_1570',['slot_import_key_from_edit',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a55926649e28a96318b89afba01b966bf',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5finsert_5ftext_1571',['slot_insert_text',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a184985104f23da8fdf2b9aaf7b27405b',1,'GpgFrontend::UI::PlainTextEditorPage']]],
- ['slot_5fjump_5fpage_1572',['slot_jump_page',['../classGpgFrontend_1_1UI_1_1ChoosePage.html#af0d7890fe65385b7785719b9cff0718b',1,'GpgFrontend::UI::ChoosePage']]],
- ['slot_5fkey_5fgen_5faccept_1573',['slot_key_gen_accept',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#af1f7a62dcb024513453766ee8816d514',1,'GpgFrontend::UI::KeyGenDialog::slot_key_gen_accept()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aab426dec4b4655b215b09b490e05ad05',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_key_gen_accept()']]],
- ['slot_5fnon_5fexpired_5fchecked_1574',['slot_non_expired_checked',['../classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#adde2b33bd17f521f0630702987b1d274',1,'GpgFrontend::UI::KeySetExpireDateDialog']]],
- ['slot_5fopen_5ffile_5ftab_1575',['slot_open_file_tab',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a29a811d4d440c79c1bd2cc2bb40cdf7e',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fopen_5fkey_5fmanagement_1576',['slot_open_key_management',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a16ddebec90a4bd0d13baa9d972c3445f',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fopen_5fsettings_5fdialog_1577',['slot_open_settings_dialog',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a874b505fbc1046f579a736683f5a7f65',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fopen_5furl_1578',['slot_open_url',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a51ff99077a75507365307f5dd783df99',1,'GpgFrontend::UI::HelpPage']]],
- ['slot_5fprocess_5fnetwork_5freply_1579',['slot_process_network_reply',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask.html#a612eabb08138bed927bdd845d0fdd3e6',1,'GpgFrontend::UI::ProxyConnectionTestTask::slot_process_network_reply()'],['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#af9350e0a8d5993e5be0a5478fcb161be',1,'GpgFrontend::UI::ListedKeyServerTestTask::slot_process_network_reply()']]],
- ['slot_5fremove_5ftab_1580',['slot_remove_tab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a12f65fbc4984c266a5df4505ecde7c42',1,'GpgFrontend::UI::TextEdit']]],
- ['slot_5fsave_5fstatus_5fto_5fcache_5ffor_5frevovery_1581',['slot_save_status_to_cache_for_revovery',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a1bf57ebe1e32b12c48bb633b7dd7a4f1',1,'GpgFrontend::UI::TextEdit']]],
- ['slot_5fset_5frestart_5fneeded_1582',['slot_set_restart_needed',['../classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html#a2bb963a14733cf9b99736b6624c09d83',1,'GpgFrontend::UI::GnuPGControllerDialog::slot_set_restart_needed()'],['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#acc6b4386de554fce6fbb60ac6d201952',1,'GpgFrontend::UI::SettingsDialog::slot_set_restart_needed()']]],
- ['slot_5fshow_5fcustom_5fcontext_5fmenu_1583',['slot_show_custom_context_menu',['../classGpgFrontend_1_1UI_1_1FileTreeView.html#a626b131b432c29f162aa9a47fd9f67f7',1,'GpgFrontend::UI::FileTreeView']]],
- ['slot_5fshow_5fkey_5fdetails_1584',['slot_show_key_details',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a033d448541b44fa48b76dec828a4eb0e',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fshow_5fversion_5fstatus_1585',['slot_show_version_status',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a29a504b9657b0f553b7c5a6997892a24',1,'GpgFrontend::UI::UpdateTab']]],
- ['slot_5fsign_5fkey_1586',['slot_sign_key',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#a82f6bf641ff3b64341a0bdcf76571c43',1,'GpgFrontend::UI::KeyUIDSignDialog']]],
- ['slot_5fsigning_5fbox_5fchanged_1587',['slot_signing_box_changed',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a03b7fe3e34147e404ca3ca6a0aa80cfc',1,'GpgFrontend::UI::KeyGenDialog::slot_signing_box_changed()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aedef4e8784c8a3edb06b0f2821500552',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_signing_box_changed()']]],
- ['slot_5fstart_5fwizard_1588',['slot_start_wizard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aabf3ddf6b624790369f164b4889c95be',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fupdate_5fkey_5fstatus_1589',['slot_update_key_status',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#ab4ac26378d6a07757720163eb4b1cb0e',1,'GpgFrontend::UI::CommonUtils']]],
- ['slot_5fupload_5fkey_5fto_5fserver_1590',['slot_upload_key_to_server',['../classGpgFrontend_1_1UI_1_1KeyUploadDialog.html#ae72c3bbd04e1bfbf142d806d50bbe617',1,'GpgFrontend::UI::KeyUploadDialog']]],
- ['slot_5fversion_5fupgrade_5fnofity_1591',['slot_version_upgrade_nofity',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2af52ff72325fc4c4d50aefc496100cd',1,'GpgFrontend::UI::MainWindow']]],
- ['slotappendtext2curtextpage_1592',['SlotAppendText2CurTextPage',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae9ffb1f027ce05737e77add66bd1540f',1,'GpgFrontend::UI::TextEdit']]],
- ['slotarchivedecrypt_1593',['SlotArchiveDecrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aba7c5572c2736701cc5799776876bbdd',1,'GpgFrontend::UI::MainWindow']]],
- ['slotarchivedecryptverify_1594',['SlotArchiveDecryptVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8ee995b7d1a21ebaab2333a5e79ae77c',1,'GpgFrontend::UI::MainWindow']]],
- ['slotclosetab_1595',['SlotCloseTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa21659aa7acba98dfd6286d69e00ab9b',1,'GpgFrontend::UI::TextEdit']]],
- ['slotcopy_1596',['SlotCopy',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3599bd01636a873cf3437ab6b9d38780',1,'GpgFrontend::UI::TextEdit']]],
- ['slotcurpagefiletreeview_1597',['SlotCurPageFileTreeView',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a72014409d407c161b048e07c061b4cf9',1,'GpgFrontend::UI::TextEdit']]],
- ['slotcurpagetextedit_1598',['SlotCurPageTextEdit',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a48351dc1529da3b8da311f65b735b5f1',1,'GpgFrontend::UI::TextEdit']]],
- ['slotcut_1599',['SlotCut',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae1e710c6722910b8d35df97aaabb3162',1,'GpgFrontend::UI::TextEdit']]],
- ['slotdecrypt_1600',['SlotDecrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3751c475a29a5827a5eea587ffa6abfb',1,'GpgFrontend::UI::MainWindow']]],
- ['slotdecryptverify_1601',['SlotDecryptVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7d38ca18a8688b5df163157d26a14c72',1,'GpgFrontend::UI::MainWindow']]],
- ['slotdirectoryencryptsign_1602',['SlotDirectoryEncryptSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af999edaa3ce60ed0303ded5fcd4ed527',1,'GpgFrontend::UI::MainWindow']]],
- ['slotencrypt_1603',['SlotEncrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a07d02cdb29a8101f988e776ceecc49ad',1,'GpgFrontend::UI::MainWindow']]],
- ['slotencryptsign_1604',['SlotEncryptSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aca691847190c39fe2d41d669b1e686b8',1,'GpgFrontend::UI::MainWindow']]],
- ['slotexecutecommand_1605',['SlotExecuteCommand',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a39fbfbc9ab39581330a02d9cb54e6e4d',1,'GpgFrontend::UI::CommonUtils']]],
- ['slotexecutegpgcommand_1606',['SlotExecuteGpgCommand',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#afc845c1c37487c99f78d8e66f6874f6d',1,'GpgFrontend::UI::CommonUtils']]],
- ['slotfiledecrypt_1607',['SlotFileDecrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a60d82d4da1775ef21284543435a1f421',1,'GpgFrontend::UI::MainWindow']]],
- ['slotfiledecryptverify_1608',['SlotFileDecryptVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#afd80e8d6e6a1acad0cd12e26635cfc22',1,'GpgFrontend::UI::MainWindow']]],
- ['slotfileencrypt_1609',['SlotFileEncrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a88c467b5be4712f7d2b16da0e96cd7e9',1,'GpgFrontend::UI::MainWindow']]],
- ['slotfileencryptsign_1610',['SlotFileEncryptSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#afc86384de0913968ab767e930fc9e24f',1,'GpgFrontend::UI::MainWindow']]],
- ['slotfilesign_1611',['SlotFileSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa0bb003f2f1209a4e4d10e94e3d5d06d',1,'GpgFrontend::UI::MainWindow']]],
- ['slotfileverify_1612',['SlotFileVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aea395f8629aef1532bcec3de337fa6ac',1,'GpgFrontend::UI::MainWindow']]],
- ['slotfilltexteditwithtext_1613',['SlotFillTextEditWithText',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af466ec2b8ab3f695d206efc0574bbe20',1,'GpgFrontend::UI::TextEdit']]],
- ['slotimport_1614',['SlotImport',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a7de2096702baf67f1335ac4fe50cfa38',1,'GpgFrontend::UI::KeyServerImportDialog::SlotImport(std::vector< QString > key_ids_list, QString keyserver_url)'],['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a1e17305d6b470d0f7050eb8e3e6ee3d8',1,'GpgFrontend::UI::KeyServerImportDialog::SlotImport(const KeyIdArgsListPtr &keys)']]],
- ['slotimportkeyfromclipboard_1615',['SlotImportKeyFromClipboard',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a0c8bf56fc5371cd2c5e9d2a0f67bf72a',1,'GpgFrontend::UI::CommonUtils']]],
- ['slotimportkeyfromfile_1616',['SlotImportKeyFromFile',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a057526790f6b2f6288c3a35322c34d8d',1,'GpgFrontend::UI::CommonUtils']]],
- ['slotimportkeyfromkeyserver_1617',['SlotImportKeyFromKeyServer',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a35a47fc31b81b6c4f5899e8ab5c4c51a',1,'GpgFrontend::UI::CommonUtils::SlotImportKeyFromKeyServer(const GpgFrontend::KeyIdArgsList &key_ids, const GpgFrontend::UI::CommonUtils::ImportCallbackFunctiopn &callback)'],['../classGpgFrontend_1_1UI_1_1CommonUtils.html#af1b3538d3119c8564e83c7661f73f6ea',1,'GpgFrontend::UI::CommonUtils::SlotImportKeyFromKeyServer(QWidget *parent)']]],
- ['slotimportkeys_1618',['SlotImportKeys',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#ae730cf0ee73379186f082f29a90a2f94',1,'GpgFrontend::UI::CommonUtils']]],
- ['slotnewfiletab_1619',['SlotNewFileTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a1859df6906160400710accb0481d6b0c',1,'GpgFrontend::UI::TextEdit']]],
- ['slotnewhelptab_1620',['slotNewHelpTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3c17fdf3abf9c4fb6ce35cfb8f0f8fc4',1,'GpgFrontend::UI::TextEdit']]],
- ['slotnewtab_1621',['SlotNewTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a57a46ab5595622ae0b7bceef7d56bd7c',1,'GpgFrontend::UI::TextEdit']]],
- ['slotopen_1622',['SlotOpen',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a15335d38187ddf580b7200d856768cfb',1,'GpgFrontend::UI::TextEdit']]],
- ['slotopenfile_1623',['SlotOpenFile',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad344606cf3c665fc73a3c0dd10a44310',1,'GpgFrontend::UI::MainWindow::SlotOpenFile()'],['../classGpgFrontend_1_1UI_1_1TextEdit.html#a60c73cc66a48a38c13e7890de49e86c3',1,'GpgFrontend::UI::TextEdit::SlotOpenFile(const QString &path)']]],
- ['slotpaste_1624',['SlotPaste',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa2230418dc8f72c400f5a90082a983c9',1,'GpgFrontend::UI::TextEdit']]],
- ['slotprint_1625',['SlotPrint',['../classGpgFrontend_1_1UI_1_1TextEdit.html#adca2bbfa746b5598f2a4f74026b84224',1,'GpgFrontend::UI::TextEdit']]],
- ['slotquote_1626',['SlotQuote',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6a02fce9dc4039c982d6dd19231517ee',1,'GpgFrontend::UI::TextEdit']]],
- ['slotraisepinentry_1627',['SlotRaisePinentry',['../classGpgFrontend_1_1UI_1_1MainWindow.html#abf4b09c9bc6242630c066eb7bf4636bf',1,'GpgFrontend::UI::MainWindow']]],
- ['slotredo_1628',['SlotRedo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae2b3bf422789d56087face98b6a9e929',1,'GpgFrontend::UI::TextEdit']]],
- ['slotrefresh_1629',['SlotRefresh',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a68f984815100f4ce281b9794f193e516',1,'GpgFrontend::UI::InfoBoardWidget']]],
- ['slotsave_1630',['SlotSave',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ace0b8f4c161db9f4f5db5ecbfd7a91c0',1,'GpgFrontend::UI::TextEdit']]],
- ['slotsaveas_1631',['SlotSaveAs',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a306999df608947dc0728d651893b20f6',1,'GpgFrontend::UI::TextEdit']]],
- ['slotselectall_1632',['SlotSelectAll',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6c814253dfc061bfdae0fa71c6196c55',1,'GpgFrontend::UI::TextEdit']]],
- ['slotsetrestartneeded_1633',['SlotSetRestartNeeded',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a276e843e2f5eda8934fb350fb6f89327',1,'GpgFrontend::UI::MainWindow']]],
- ['slotshowhiddenfile_1634',['SlotShowHiddenFile',['../classGpgFrontend_1_1UI_1_1FileTreeView.html#aed6a2eaa435630ccf7b65da2f09114dd',1,'GpgFrontend::UI::FileTreeView']]],
- ['slotshowmodified_1635',['SlotShowModified',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ab24adc1adb3b9b29469992e4c444436e',1,'GpgFrontend::UI::TextEdit']]],
- ['slotsign_1636',['SlotSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa2aeef298a7a05fc1b38bad75b62aad8',1,'GpgFrontend::UI::MainWindow']]],
- ['slotswitchtabdown_1637',['SlotSwitchTabDown',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a576e06390e65576465297d2ab8d7d474',1,'GpgFrontend::UI::TextEdit']]],
- ['slotswitchtabup_1638',['SlotSwitchTabUp',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af1e364b513f566c743a5d36c19098762',1,'GpgFrontend::UI::TextEdit']]],
- ['slotundo_1639',['SlotUndo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a4a81e69f6dc74ea649ca9a2358342fd5',1,'GpgFrontend::UI::TextEdit']]],
- ['slotupdatecryptomenustatus_1640',['SlotUpdateCryptoMenuStatus',['../classGpgFrontend_1_1UI_1_1MainWindow.html#abd5408ca5f908c330a15db24d959f3a5',1,'GpgFrontend::UI::MainWindow']]],
- ['slotverify_1641',['SlotVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ac9bf2a20727eb8e727aa2e3ce5c248e5',1,'GpgFrontend::UI::MainWindow']]],
- ['startapplication_1642',['StartApplication',['../namespaceGpgFrontend.html#abca29d455373e3278486ed20c4a63b6e',1,'GpgFrontend']]],
- ['startdirmngr_1643',['StartDirmngr',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a7687d84063c6c1d9d8bc11c617085530',1,'GpgFrontend::GpgAdvancedOperator']]],
- ['startgpgagent_1644',['StartGpgAgent',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a4af186d06b01ce998e51a42e39e01c86',1,'GpgFrontend::GpgAdvancedOperator']]],
- ['startkeyboxd_1645',['StartKeyBoxd',['../classGpgFrontend_1_1GpgAdvancedOperator.html#ae2b097912eb2c9d97da859c45e7a5bac',1,'GpgFrontend::GpgAdvancedOperator']]],
- ['stripped_5fname_1646',['stripped_name',['../classGpgFrontend_1_1UI_1_1TextEdit.html#afb9b7a7d88154d774b3d727d8e640cbb',1,'GpgFrontend::UI::TextEdit']]],
- ['subkeygeneratedialog_1647',['SubkeyGenerateDialog',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a8f9d8baa7b576a4aa857818b87c26bcd',1,'GpgFrontend::UI::SubkeyGenerateDialog']]],
- ['switch_5fui_5fenabled_1648',['switch_ui_enabled',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#ae3d97948f205e84f0604d4da634a4513',1,'GpgFrontend::UI::NetworkTab']]],
- ['switch_5fui_5fproxy_5ftype_1649',['switch_ui_proxy_type',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#a1b0297158f13daec77645c88e5a8adcd',1,'GpgFrontend::UI::NetworkTab']]]
+ ['signalrestartneeded_1537',['SignalRestartNeeded',['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#a26449a77844d9db69a543ff88f10e347',1,'GpgFrontend::UI::KeyserverTab']]],
+ ['signaluibytesdisplayed_1538',['SignalUIBytesDisplayed',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#afd3749488fdd3d1c53446fb8c833f3f4',1,'GpgFrontend::UI::PlainTextEditorPage']]],
+ ['signalupgradeversion_1539',['SignalUpgradeVersion',['../classVersionCheckTask.html#a017130179e7d18f361d112b9ad3d7462',1,'VersionCheckTask']]],
+ ['signerspicker_1540',['SignersPicker',['../classGpgFrontend_1_1UI_1_1SignersPicker.html#a02c3ba737702894fc6d4ac1a1c543ccb',1,'GpgFrontend::UI::SignersPicker']]],
+ ['signfile_1541',['SignFile',['../classGpgFrontend_1_1GpgFileOpera.html#acbbc57156fd7aa984489a2397b942fef',1,'GpgFrontend::GpgFileOpera']]],
+ ['signfilesync_1542',['SignFileSync',['../classGpgFrontend_1_1GpgFileOpera.html#a247db95aa42991f6772f2404e81e822d',1,'GpgFrontend::GpgFileOpera']]],
+ ['signkey_1543',['SignKey',['../classGpgFrontend_1_1GpgKeyManager.html#ab5e56b3a2161f3251666c988d7eaa929',1,'GpgFrontend::GpgKeyManager']]],
+ ['signsync_1544',['SignSync',['../classGpgFrontend_1_1GpgBasicOperator.html#aec37726d1386dcca7a75e1f2706bad77',1,'GpgFrontend::GpgBasicOperator']]],
+ ['singletonfunctionobject_1545',['SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html#a194e49b07d46345bdad386505d743a61',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(const SingletonFunctionObject< T > &)=delete'],['../classGpgFrontend_1_1SingletonFunctionObject.html#aabc5fe8e5a372ac276a265286457cb9a',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(T &&)=delete'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a4aa7f1eb1d3281bb1fccfcbb1b416251',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(int channel)'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a02e76b42ab51d77588b01c7508bed258',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject()=default'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a7090636bed6f4bad5b99f28f6872c645',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(const T &)=delete']]],
+ ['slot_5factivated_5fkey_5ftype_1546',['slot_activated_key_type',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a52a0aadc9b1e80bdcaaf1ad9d8997957',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_activated_key_type()'],['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ab8f04b046abb56d53bdbe67838b84fdc',1,'GpgFrontend::UI::KeyGenDialog::slot_activated_key_type()']]],
+ ['slot_5fadd_5fpgp_5fheader_1547',['slot_add_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a821247d738457c4ee046162aad6728f9',1,'GpgFrontend::UI::MainWindow']]],
+ ['slot_5fadd_5fuid_5fresult_1548',['slot_add_uid_result',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a16f1ae88d6a417b614cfc6ae1852187c',1,'GpgFrontend::UI::KeyPairUIDTab']]],
+ ['slot_5fappend_5fselected_5fkeys_1549',['slot_append_selected_keys',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a76bf3784d751db78ed13bd9962e14472',1,'GpgFrontend::UI::MainWindow']]],
+ ['slot_5fauthentication_5fbox_5fchanged_1550',['slot_authentication_box_changed',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a13229f07ef0ed594357df1918af50d3d',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_authentication_box_changed()'],['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a904d5e72a1946382ddfca80dc57c4db5',1,'GpgFrontend::UI::KeyGenDialog::slot_authentication_box_changed()']]],
+ ['slot_5fcertification_5fbox_5fchanged_1551',['slot_certification_box_changed',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a8ab50d8f47489c57e382b3fe231ba9a7',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_certification_box_changed()'],['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a48e953cd49efde2315868e8606af7226',1,'GpgFrontend::UI::KeyGenDialog::slot_certification_box_changed()']]],
+ ['slot_5fclean_5fdouble_5fline_5fbreaks_1552',['slot_clean_double_line_breaks',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aea9274389c3b049793fe5aa5a6adf63c',1,'GpgFrontend::UI::MainWindow']]],
+ ['slot_5fcompress_5ffiles_1553',['slot_compress_files',['../classGpgFrontend_1_1UI_1_1FileTreeView.html#a4e4c6474f46750c5e78cbd10ce6c2cc1',1,'GpgFrontend::UI::FileTreeView']]],
+ ['slot_5fcopy_5fdefault_5fuid_5fto_5fclipboard_1554',['slot_copy_default_uid_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3982432b140738859415e487e2c5f5eb',1,'GpgFrontend::UI::MainWindow']]],
+ ['slot_5fcopy_5ffingerprint_1555',['slot_copy_fingerprint',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#af8b600fbd7cd0fbb5b6183403bf870b2',1,'GpgFrontend::UI::KeyPairDetailTab']]],
+ ['slot_5fcopy_5fkey_5fid_5fto_5fclipboard_1556',['slot_copy_key_id_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9e2ddb2135df42d76134bea168fbdce9',1,'GpgFrontend::UI::MainWindow']]],
+ ['slot_5fcopy_5fmail_5faddress_5fto_5fclipboard_1557',['slot_copy_mail_address_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af93d72eaf58326f1f9e926752c6b1fc6',1,'GpgFrontend::UI::MainWindow']]],
+ ['slot_5fcreate_5fnew_5fuid_1558',['slot_create_new_uid',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a4e115ce46a85c2f9e4e0e2427839fc7c',1,'GpgFrontend::UI::KeyNewUIDDialog']]],
+ ['slot_5fcreate_5fpopup_5fmenu_1559',['slot_create_popup_menu',['../classGpgFrontend_1_1UI_1_1FileTreeView.html#ac45715a8e6e67f1221a1902ee5d51a44',1,'GpgFrontend::UI::FileTreeView']]],
+ ['slot_5fcut_5fpgp_5fheader_1560',['slot_cut_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7f5a88922d06bee977335fb4b5f1d86d',1,'GpgFrontend::UI::MainWindow']]],
+ ['slot_5fdisable_5ftab_5factions_1561',['slot_disable_tab_actions',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a24a0b0d974fc5f8fdda60c128a82d957',1,'GpgFrontend::UI::MainWindow']]],
+ ['slot_5fdouble_5fclicked_1562',['slot_double_clicked',['../classGpgFrontend_1_1UI_1_1KeyList.html#a69e54f06d546d516a0dcdf1055b8028e',1,'GpgFrontend::UI::KeyList']]],
+ ['slot_5fencryption_5fbox_5fchanged_1563',['slot_encryption_box_changed',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a1f4dda7500b3de7476e5d1e7bd5b550b',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_encryption_box_changed()'],['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ae611933ccd6fd67e65a2cf1ff09b5e8f',1,'GpgFrontend::UI::KeyGenDialog::slot_encryption_box_changed()']]],
+ ['slot_5fexpire_5fbox_5fchanged_1564',['slot_expire_box_changed',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a49d9f3bb2cfb17eb39dcd4dc0385234e',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_expire_box_changed()'],['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a516aa59c71a9ddf06c51e93252e93b76',1,'GpgFrontend::UI::KeyGenDialog::slot_expire_box_changed()']]],
+ ['slot_5fexport_5fprivate_5fkey_1565',['slot_export_private_key',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a384f4250e58110da58c0e6996b42a8ab',1,'GpgFrontend::UI::KeyPairOperaTab']]],
+ ['slot_5ffile_5ftree_5fview_5fitem_5fdouble_5fclicked_1566',['slot_file_tree_view_item_double_clicked',['../classGpgFrontend_1_1UI_1_1FileTreeView.html#a3f3f0feea01ce05304e48110d2f33af0',1,'GpgFrontend::UI::FileTreeView']]],
+ ['slot_5ffind_1567',['slot_find',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae28089efbd236708601470f30f26faaa',1,'GpgFrontend::UI::MainWindow']]],
+ ['slot_5fformat_5fgpg_5fheader_1568',['slot_format_gpg_header',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a45267bcfc8fc83851894061c0fe2a9c2',1,'GpgFrontend::UI::PlainTextEditorPage']]],
+ ['slot_5fimport_1569',['slot_import',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ac9c14bbc97945c94fd02c8e067ccab06',1,'GpgFrontend::UI::KeyServerImportDialog']]],
+ ['slot_5fimport_5ffinished_1570',['slot_import_finished',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a236935d77e2b2a17ee66798c490f1361',1,'GpgFrontend::UI::KeyServerImportDialog']]],
+ ['slot_5fimport_5fkey_5ffrom_5fedit_1571',['slot_import_key_from_edit',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a55926649e28a96318b89afba01b966bf',1,'GpgFrontend::UI::MainWindow']]],
+ ['slot_5finsert_5ftext_1572',['slot_insert_text',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a184985104f23da8fdf2b9aaf7b27405b',1,'GpgFrontend::UI::PlainTextEditorPage']]],
+ ['slot_5fjump_5fpage_1573',['slot_jump_page',['../classGpgFrontend_1_1UI_1_1ChoosePage.html#af0d7890fe65385b7785719b9cff0718b',1,'GpgFrontend::UI::ChoosePage']]],
+ ['slot_5fkey_5fgen_5faccept_1574',['slot_key_gen_accept',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#af1f7a62dcb024513453766ee8816d514',1,'GpgFrontend::UI::KeyGenDialog::slot_key_gen_accept()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aab426dec4b4655b215b09b490e05ad05',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_key_gen_accept()']]],
+ ['slot_5fnon_5fexpired_5fchecked_1575',['slot_non_expired_checked',['../classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#adde2b33bd17f521f0630702987b1d274',1,'GpgFrontend::UI::KeySetExpireDateDialog']]],
+ ['slot_5fopen_5ffile_5ftab_1576',['slot_open_file_tab',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a29a811d4d440c79c1bd2cc2bb40cdf7e',1,'GpgFrontend::UI::MainWindow']]],
+ ['slot_5fopen_5fkey_5fmanagement_1577',['slot_open_key_management',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a16ddebec90a4bd0d13baa9d972c3445f',1,'GpgFrontend::UI::MainWindow']]],
+ ['slot_5fopen_5fsettings_5fdialog_1578',['slot_open_settings_dialog',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a874b505fbc1046f579a736683f5a7f65',1,'GpgFrontend::UI::MainWindow']]],
+ ['slot_5fopen_5furl_1579',['slot_open_url',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a51ff99077a75507365307f5dd783df99',1,'GpgFrontend::UI::HelpPage']]],
+ ['slot_5fprocess_5fnetwork_5freply_1580',['slot_process_network_reply',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask.html#a612eabb08138bed927bdd845d0fdd3e6',1,'GpgFrontend::UI::ProxyConnectionTestTask::slot_process_network_reply()'],['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#af9350e0a8d5993e5be0a5478fcb161be',1,'GpgFrontend::UI::ListedKeyServerTestTask::slot_process_network_reply()']]],
+ ['slot_5fremove_5ftab_1581',['slot_remove_tab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a12f65fbc4984c266a5df4505ecde7c42',1,'GpgFrontend::UI::TextEdit']]],
+ ['slot_5fsave_5fstatus_5fto_5fcache_5ffor_5frevovery_1582',['slot_save_status_to_cache_for_revovery',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a1bf57ebe1e32b12c48bb633b7dd7a4f1',1,'GpgFrontend::UI::TextEdit']]],
+ ['slot_5fset_5frestart_5fneeded_1583',['slot_set_restart_needed',['../classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html#a2bb963a14733cf9b99736b6624c09d83',1,'GpgFrontend::UI::GnuPGControllerDialog::slot_set_restart_needed()'],['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#acc6b4386de554fce6fbb60ac6d201952',1,'GpgFrontend::UI::SettingsDialog::slot_set_restart_needed()']]],
+ ['slot_5fshow_5fcustom_5fcontext_5fmenu_1584',['slot_show_custom_context_menu',['../classGpgFrontend_1_1UI_1_1FileTreeView.html#a626b131b432c29f162aa9a47fd9f67f7',1,'GpgFrontend::UI::FileTreeView']]],
+ ['slot_5fshow_5fkey_5fdetails_1585',['slot_show_key_details',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a033d448541b44fa48b76dec828a4eb0e',1,'GpgFrontend::UI::MainWindow']]],
+ ['slot_5fshow_5fversion_5fstatus_1586',['slot_show_version_status',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a29a504b9657b0f553b7c5a6997892a24',1,'GpgFrontend::UI::UpdateTab']]],
+ ['slot_5fsign_5fkey_1587',['slot_sign_key',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#a82f6bf641ff3b64341a0bdcf76571c43',1,'GpgFrontend::UI::KeyUIDSignDialog']]],
+ ['slot_5fsigning_5fbox_5fchanged_1588',['slot_signing_box_changed',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a03b7fe3e34147e404ca3ca6a0aa80cfc',1,'GpgFrontend::UI::KeyGenDialog::slot_signing_box_changed()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aedef4e8784c8a3edb06b0f2821500552',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_signing_box_changed()']]],
+ ['slot_5fstart_5fwizard_1589',['slot_start_wizard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aabf3ddf6b624790369f164b4889c95be',1,'GpgFrontend::UI::MainWindow']]],
+ ['slot_5fupdate_5fkey_5fstatus_1590',['slot_update_key_status',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#ab4ac26378d6a07757720163eb4b1cb0e',1,'GpgFrontend::UI::CommonUtils']]],
+ ['slot_5fupload_5fkey_5fto_5fserver_1591',['slot_upload_key_to_server',['../classGpgFrontend_1_1UI_1_1KeyUploadDialog.html#ae72c3bbd04e1bfbf142d806d50bbe617',1,'GpgFrontend::UI::KeyUploadDialog']]],
+ ['slot_5fversion_5fupgrade_5fnofity_1592',['slot_version_upgrade_nofity',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2af52ff72325fc4c4d50aefc496100cd',1,'GpgFrontend::UI::MainWindow']]],
+ ['slotappendtext2curtextpage_1593',['SlotAppendText2CurTextPage',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae9ffb1f027ce05737e77add66bd1540f',1,'GpgFrontend::UI::TextEdit']]],
+ ['slotarchivedecrypt_1594',['SlotArchiveDecrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aba7c5572c2736701cc5799776876bbdd',1,'GpgFrontend::UI::MainWindow']]],
+ ['slotarchivedecryptverify_1595',['SlotArchiveDecryptVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8ee995b7d1a21ebaab2333a5e79ae77c',1,'GpgFrontend::UI::MainWindow']]],
+ ['slotclosetab_1596',['SlotCloseTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa21659aa7acba98dfd6286d69e00ab9b',1,'GpgFrontend::UI::TextEdit']]],
+ ['slotcopy_1597',['SlotCopy',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3599bd01636a873cf3437ab6b9d38780',1,'GpgFrontend::UI::TextEdit']]],
+ ['slotcurpagefiletreeview_1598',['SlotCurPageFileTreeView',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a72014409d407c161b048e07c061b4cf9',1,'GpgFrontend::UI::TextEdit']]],
+ ['slotcurpagetextedit_1599',['SlotCurPageTextEdit',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a48351dc1529da3b8da311f65b735b5f1',1,'GpgFrontend::UI::TextEdit']]],
+ ['slotcut_1600',['SlotCut',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae1e710c6722910b8d35df97aaabb3162',1,'GpgFrontend::UI::TextEdit']]],
+ ['slotdecrypt_1601',['SlotDecrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3751c475a29a5827a5eea587ffa6abfb',1,'GpgFrontend::UI::MainWindow']]],
+ ['slotdecryptverify_1602',['SlotDecryptVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7d38ca18a8688b5df163157d26a14c72',1,'GpgFrontend::UI::MainWindow']]],
+ ['slotdirectoryencryptsign_1603',['SlotDirectoryEncryptSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af999edaa3ce60ed0303ded5fcd4ed527',1,'GpgFrontend::UI::MainWindow']]],
+ ['slotencrypt_1604',['SlotEncrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a07d02cdb29a8101f988e776ceecc49ad',1,'GpgFrontend::UI::MainWindow']]],
+ ['slotencryptsign_1605',['SlotEncryptSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aca691847190c39fe2d41d669b1e686b8',1,'GpgFrontend::UI::MainWindow']]],
+ ['slotexecutecommand_1606',['SlotExecuteCommand',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a39fbfbc9ab39581330a02d9cb54e6e4d',1,'GpgFrontend::UI::CommonUtils']]],
+ ['slotexecutegpgcommand_1607',['SlotExecuteGpgCommand',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#afc845c1c37487c99f78d8e66f6874f6d',1,'GpgFrontend::UI::CommonUtils']]],
+ ['slotfiledecrypt_1608',['SlotFileDecrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a60d82d4da1775ef21284543435a1f421',1,'GpgFrontend::UI::MainWindow']]],
+ ['slotfiledecryptverify_1609',['SlotFileDecryptVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#afd80e8d6e6a1acad0cd12e26635cfc22',1,'GpgFrontend::UI::MainWindow']]],
+ ['slotfileencrypt_1610',['SlotFileEncrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a88c467b5be4712f7d2b16da0e96cd7e9',1,'GpgFrontend::UI::MainWindow']]],
+ ['slotfileencryptsign_1611',['SlotFileEncryptSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#afc86384de0913968ab767e930fc9e24f',1,'GpgFrontend::UI::MainWindow']]],
+ ['slotfilesign_1612',['SlotFileSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa0bb003f2f1209a4e4d10e94e3d5d06d',1,'GpgFrontend::UI::MainWindow']]],
+ ['slotfileverify_1613',['SlotFileVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aea395f8629aef1532bcec3de337fa6ac',1,'GpgFrontend::UI::MainWindow']]],
+ ['slotfilltexteditwithtext_1614',['SlotFillTextEditWithText',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af466ec2b8ab3f695d206efc0574bbe20',1,'GpgFrontend::UI::TextEdit']]],
+ ['slotimport_1615',['SlotImport',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a7de2096702baf67f1335ac4fe50cfa38',1,'GpgFrontend::UI::KeyServerImportDialog::SlotImport(std::vector< QString > key_ids_list, QString keyserver_url)'],['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a1e17305d6b470d0f7050eb8e3e6ee3d8',1,'GpgFrontend::UI::KeyServerImportDialog::SlotImport(const KeyIdArgsListPtr &keys)']]],
+ ['slotimportkeyfromclipboard_1616',['SlotImportKeyFromClipboard',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a0c8bf56fc5371cd2c5e9d2a0f67bf72a',1,'GpgFrontend::UI::CommonUtils']]],
+ ['slotimportkeyfromfile_1617',['SlotImportKeyFromFile',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a057526790f6b2f6288c3a35322c34d8d',1,'GpgFrontend::UI::CommonUtils']]],
+ ['slotimportkeyfromkeyserver_1618',['SlotImportKeyFromKeyServer',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a35a47fc31b81b6c4f5899e8ab5c4c51a',1,'GpgFrontend::UI::CommonUtils::SlotImportKeyFromKeyServer(const GpgFrontend::KeyIdArgsList &key_ids, const GpgFrontend::UI::CommonUtils::ImportCallbackFunctiopn &callback)'],['../classGpgFrontend_1_1UI_1_1CommonUtils.html#af1b3538d3119c8564e83c7661f73f6ea',1,'GpgFrontend::UI::CommonUtils::SlotImportKeyFromKeyServer(QWidget *parent)']]],
+ ['slotimportkeys_1619',['SlotImportKeys',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#ae730cf0ee73379186f082f29a90a2f94',1,'GpgFrontend::UI::CommonUtils']]],
+ ['slotnewfiletab_1620',['SlotNewFileTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a1859df6906160400710accb0481d6b0c',1,'GpgFrontend::UI::TextEdit']]],
+ ['slotnewhelptab_1621',['slotNewHelpTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3c17fdf3abf9c4fb6ce35cfb8f0f8fc4',1,'GpgFrontend::UI::TextEdit']]],
+ ['slotnewtab_1622',['SlotNewTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a57a46ab5595622ae0b7bceef7d56bd7c',1,'GpgFrontend::UI::TextEdit']]],
+ ['slotopen_1623',['SlotOpen',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a15335d38187ddf580b7200d856768cfb',1,'GpgFrontend::UI::TextEdit']]],
+ ['slotopenfile_1624',['SlotOpenFile',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad344606cf3c665fc73a3c0dd10a44310',1,'GpgFrontend::UI::MainWindow::SlotOpenFile()'],['../classGpgFrontend_1_1UI_1_1TextEdit.html#a60c73cc66a48a38c13e7890de49e86c3',1,'GpgFrontend::UI::TextEdit::SlotOpenFile(const QString &path)']]],
+ ['slotpaste_1625',['SlotPaste',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa2230418dc8f72c400f5a90082a983c9',1,'GpgFrontend::UI::TextEdit']]],
+ ['slotprint_1626',['SlotPrint',['../classGpgFrontend_1_1UI_1_1TextEdit.html#adca2bbfa746b5598f2a4f74026b84224',1,'GpgFrontend::UI::TextEdit']]],
+ ['slotquote_1627',['SlotQuote',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6a02fce9dc4039c982d6dd19231517ee',1,'GpgFrontend::UI::TextEdit']]],
+ ['slotraisepinentry_1628',['SlotRaisePinentry',['../classGpgFrontend_1_1UI_1_1MainWindow.html#abf4b09c9bc6242630c066eb7bf4636bf',1,'GpgFrontend::UI::MainWindow']]],
+ ['slotredo_1629',['SlotRedo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae2b3bf422789d56087face98b6a9e929',1,'GpgFrontend::UI::TextEdit']]],
+ ['slotrefresh_1630',['SlotRefresh',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a68f984815100f4ce281b9794f193e516',1,'GpgFrontend::UI::InfoBoardWidget']]],
+ ['slotsave_1631',['SlotSave',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ace0b8f4c161db9f4f5db5ecbfd7a91c0',1,'GpgFrontend::UI::TextEdit']]],
+ ['slotsaveas_1632',['SlotSaveAs',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a306999df608947dc0728d651893b20f6',1,'GpgFrontend::UI::TextEdit']]],
+ ['slotselectall_1633',['SlotSelectAll',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6c814253dfc061bfdae0fa71c6196c55',1,'GpgFrontend::UI::TextEdit']]],
+ ['slotsetrestartneeded_1634',['SlotSetRestartNeeded',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a276e843e2f5eda8934fb350fb6f89327',1,'GpgFrontend::UI::MainWindow']]],
+ ['slotshowhiddenfile_1635',['SlotShowHiddenFile',['../classGpgFrontend_1_1UI_1_1FileTreeView.html#aed6a2eaa435630ccf7b65da2f09114dd',1,'GpgFrontend::UI::FileTreeView']]],
+ ['slotshowmodified_1636',['SlotShowModified',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ab24adc1adb3b9b29469992e4c444436e',1,'GpgFrontend::UI::TextEdit']]],
+ ['slotsign_1637',['SlotSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa2aeef298a7a05fc1b38bad75b62aad8',1,'GpgFrontend::UI::MainWindow']]],
+ ['slotswitchtabdown_1638',['SlotSwitchTabDown',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a576e06390e65576465297d2ab8d7d474',1,'GpgFrontend::UI::TextEdit']]],
+ ['slotswitchtabup_1639',['SlotSwitchTabUp',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af1e364b513f566c743a5d36c19098762',1,'GpgFrontend::UI::TextEdit']]],
+ ['slotundo_1640',['SlotUndo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a4a81e69f6dc74ea649ca9a2358342fd5',1,'GpgFrontend::UI::TextEdit']]],
+ ['slotupdatecryptomenustatus_1641',['SlotUpdateCryptoMenuStatus',['../classGpgFrontend_1_1UI_1_1MainWindow.html#abd5408ca5f908c330a15db24d959f3a5',1,'GpgFrontend::UI::MainWindow']]],
+ ['slotverify_1642',['SlotVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ac9bf2a20727eb8e727aa2e3ce5c248e5',1,'GpgFrontend::UI::MainWindow']]],
+ ['startapplication_1643',['StartApplication',['../namespaceGpgFrontend.html#abca29d455373e3278486ed20c4a63b6e',1,'GpgFrontend']]],
+ ['startdirmngr_1644',['StartDirmngr',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a7687d84063c6c1d9d8bc11c617085530',1,'GpgFrontend::GpgAdvancedOperator']]],
+ ['startgpgagent_1645',['StartGpgAgent',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a4af186d06b01ce998e51a42e39e01c86',1,'GpgFrontend::GpgAdvancedOperator']]],
+ ['startkeyboxd_1646',['StartKeyBoxd',['../classGpgFrontend_1_1GpgAdvancedOperator.html#ae2b097912eb2c9d97da859c45e7a5bac',1,'GpgFrontend::GpgAdvancedOperator']]],
+ ['stripped_5fname_1647',['stripped_name',['../classGpgFrontend_1_1UI_1_1TextEdit.html#afb9b7a7d88154d774b3d727d8e640cbb',1,'GpgFrontend::UI::TextEdit']]],
+ ['subkeygeneratedialog_1648',['SubkeyGenerateDialog',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a8f9d8baa7b576a4aa857818b87c26bcd',1,'GpgFrontend::UI::SubkeyGenerateDialog']]],
+ ['switch_5fui_5fenabled_1649',['switch_ui_enabled',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#ae3d97948f205e84f0604d4da634a4513',1,'GpgFrontend::UI::NetworkTab']]],
+ ['switch_5fui_5fproxy_5ftype_1650',['switch_ui_proxy_type',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#a1b0297158f13daec77645c88e5a8adcd',1,'GpgFrontend::UI::NetworkTab']]]
];
diff --git a/docs/html/search/functions_12.js b/docs/html/search/functions_12.js
index 9af17f65..a96086b4 100644
--- a/docs/html/search/functions_12.js
+++ b/docs/html/search/functions_12.js
@@ -1,11 +1,11 @@
var searchData=
[
- ['tabcount_1650',['TabCount',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a05c54658597b04c3976c72d3a5f9add9',1,'GpgFrontend::UI::TextEdit']]],
- ['takechargeofresult_1651',['TakeChargeOfResult',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a8d0af2a9c0a52ef8bfd88bcb66aaf07e',1,'GpgFrontend::GpgVerifyResultAnalyse']]],
- ['targetfileprecheck_1652',['TargetFilePreCheck',['../namespaceGpgFrontend.html#a730cce728b43f040f6b0cb2823146a06',1,'GpgFrontend']]],
- ['task_1653',['Task',['../classGpgFrontend_1_1Thread_1_1Task.html#a3ca97551610b81a476d5594c97fde559',1,'GpgFrontend::Thread::Task::Task(QString name)'],['../classGpgFrontend_1_1Thread_1_1Task.html#a287d737e66f873850d5eb49d1475a762',1,'GpgFrontend::Thread::Task::Task(TaskRunnable runnable, QString name, DataObjectPtr data_object=nullptr)'],['../classGpgFrontend_1_1Thread_1_1Task.html#afa69068f1b2f930d6ab1d9f66340c565',1,'GpgFrontend::Thread::Task::Task(TaskRunnable runnable, QString name, DataObjectPtr data, TaskCallback callback)']]],
- ['taskrunner_1654',['TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#ad3c8612cbe60112f9b14e616fb0a4acf',1,'GpgFrontend::Thread::TaskRunner']]],
- ['textissigned_1655',['TextIsSigned',['../namespaceGpgFrontend.html#a05c3fa7850da1b7fc2e89a9604beb1db',1,'GpgFrontend']]],
- ['tofuinfopage_1656',['TOFUInfoPage',['../classGpgFrontend_1_1UI_1_1TOFUInfoPage.html#a9adc1666e3f57536594876520019e395',1,'GpgFrontend::UI::TOFUInfoPage']]],
- ['translatorstab_1657',['TranslatorsTab',['../classGpgFrontend_1_1UI_1_1TranslatorsTab.html#a89e5c7b9c17fb41b7c7bf461fb8ad99e',1,'GpgFrontend::UI::TranslatorsTab']]]
+ ['tabcount_1651',['TabCount',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a05c54658597b04c3976c72d3a5f9add9',1,'GpgFrontend::UI::TextEdit']]],
+ ['takechargeofresult_1652',['TakeChargeOfResult',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a8d0af2a9c0a52ef8bfd88bcb66aaf07e',1,'GpgFrontend::GpgVerifyResultAnalyse']]],
+ ['targetfileprecheck_1653',['TargetFilePreCheck',['../namespaceGpgFrontend.html#a730cce728b43f040f6b0cb2823146a06',1,'GpgFrontend']]],
+ ['task_1654',['Task',['../classGpgFrontend_1_1Thread_1_1Task.html#a3ca97551610b81a476d5594c97fde559',1,'GpgFrontend::Thread::Task::Task(QString name)'],['../classGpgFrontend_1_1Thread_1_1Task.html#a287d737e66f873850d5eb49d1475a762',1,'GpgFrontend::Thread::Task::Task(TaskRunnable runnable, QString name, DataObjectPtr data_object=nullptr)'],['../classGpgFrontend_1_1Thread_1_1Task.html#afa69068f1b2f930d6ab1d9f66340c565',1,'GpgFrontend::Thread::Task::Task(TaskRunnable runnable, QString name, DataObjectPtr data, TaskCallback callback)']]],
+ ['taskrunner_1655',['TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#ad3c8612cbe60112f9b14e616fb0a4acf',1,'GpgFrontend::Thread::TaskRunner']]],
+ ['textissigned_1656',['TextIsSigned',['../namespaceGpgFrontend.html#a05c3fa7850da1b7fc2e89a9604beb1db',1,'GpgFrontend']]],
+ ['tofuinfopage_1657',['TOFUInfoPage',['../classGpgFrontend_1_1UI_1_1TOFUInfoPage.html#a9adc1666e3f57536594876520019e395',1,'GpgFrontend::UI::TOFUInfoPage']]],
+ ['translatorstab_1658',['TranslatorsTab',['../classGpgFrontend_1_1UI_1_1TranslatorsTab.html#a89e5c7b9c17fb41b7c7bf461fb8ad99e',1,'GpgFrontend::UI::TranslatorsTab']]]
];
diff --git a/docs/html/search/functions_13.js b/docs/html/search/functions_13.js
index ca77fe27..7ca91d64 100644
--- a/docs/html/search/functions_13.js
+++ b/docs/html/search/functions_13.js
@@ -1,7 +1,7 @@
var searchData=
[
- ['unsaveddocuments_1658',['UnsavedDocuments',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a82fe98d45f54909ebea933b540367c39',1,'GpgFrontend::UI::TextEdit']]],
- ['updatetab_1659',['UpdateTab',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a833c5f709607032bac530aacf389a117',1,'GpgFrontend::UI::UpdateTab']]],
- ['upload_5fkey_5fto_5fserver_1660',['upload_key_to_server',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad27dcf3f534f13d8df71df680c4d177c',1,'GpgFrontend::UI::MainWindow']]],
- ['upsertrtvalue_1661',['UpsertRTValue',['../namespaceGpgFrontend_1_1Module.html#a5e4614222306688d8c2f36fd4ae23de3',1,'GpgFrontend::Module']]]
+ ['unsaveddocuments_1659',['UnsavedDocuments',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a82fe98d45f54909ebea933b540367c39',1,'GpgFrontend::UI::TextEdit']]],
+ ['updatetab_1660',['UpdateTab',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a833c5f709607032bac530aacf389a117',1,'GpgFrontend::UI::UpdateTab']]],
+ ['upload_5fkey_5fto_5fserver_1661',['upload_key_to_server',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad27dcf3f534f13d8df71df680c4d177c',1,'GpgFrontend::UI::MainWindow']]],
+ ['upsertrtvalue_1662',['UpsertRTValue',['../namespaceGpgFrontend_1_1Module.html#a5e4614222306688d8c2f36fd4ae23de3',1,'GpgFrontend::Module']]]
];
diff --git a/docs/html/search/functions_14.js b/docs/html/search/functions_14.js
index 1b91f62a..794dfaab 100644
--- a/docs/html/search/functions_14.js
+++ b/docs/html/search/functions_14.js
@@ -1,11 +1,11 @@
var searchData=
[
- ['verify_1662',['Verify',['../classGpgFrontend_1_1GpgBasicOperator.html#ae9a2f9923061efae82fe012ebc7a56ab',1,'GpgFrontend::GpgBasicOperator']]],
- ['verifydetailsdialog_1663',['VerifyDetailsDialog',['../classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#ac73f0405e249f623ddd0de22b5130fda',1,'GpgFrontend::UI::VerifyDetailsDialog']]],
- ['verifyfile_1664',['VerifyFile',['../classGpgFrontend_1_1GpgFileOpera.html#af4a26e42f0a3d49905777d22828fa430',1,'GpgFrontend::GpgFileOpera']]],
- ['verifyfilesync_1665',['VerifyFileSync',['../classGpgFrontend_1_1GpgFileOpera.html#a9511b6a128a6228ebca47ae637c44e55',1,'GpgFrontend::GpgFileOpera']]],
- ['verifykeydetailbox_1666',['VerifyKeyDetailBox',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#afbbe8e87786cca020c9aa8759eb041a0',1,'GpgFrontend::UI::VerifyKeyDetailBox']]],
- ['verifysync_1667',['VerifySync',['../classGpgFrontend_1_1GpgBasicOperator.html#a3507dec7f2528c8627d3289cfb638a7a',1,'GpgFrontend::GpgBasicOperator']]],
- ['versionchecktask_1668',['VersionCheckTask',['../classVersionCheckTask.html#a5be89e73bb5430c248b62f7819c58044',1,'VersionCheckTask']]],
- ['versionwithdrawn_1669',['VersionWithdrawn',['../structSoftwareVersion.html#a4f129d14867355cd4ee8ebc323ca1fab',1,'SoftwareVersion']]]
+ ['verify_1663',['Verify',['../classGpgFrontend_1_1GpgBasicOperator.html#ae9a2f9923061efae82fe012ebc7a56ab',1,'GpgFrontend::GpgBasicOperator']]],
+ ['verifydetailsdialog_1664',['VerifyDetailsDialog',['../classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#ac73f0405e249f623ddd0de22b5130fda',1,'GpgFrontend::UI::VerifyDetailsDialog']]],
+ ['verifyfile_1665',['VerifyFile',['../classGpgFrontend_1_1GpgFileOpera.html#af4a26e42f0a3d49905777d22828fa430',1,'GpgFrontend::GpgFileOpera']]],
+ ['verifyfilesync_1666',['VerifyFileSync',['../classGpgFrontend_1_1GpgFileOpera.html#a9511b6a128a6228ebca47ae637c44e55',1,'GpgFrontend::GpgFileOpera']]],
+ ['verifykeydetailbox_1667',['VerifyKeyDetailBox',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#afbbe8e87786cca020c9aa8759eb041a0',1,'GpgFrontend::UI::VerifyKeyDetailBox']]],
+ ['verifysync_1668',['VerifySync',['../classGpgFrontend_1_1GpgBasicOperator.html#a3507dec7f2528c8627d3289cfb638a7a',1,'GpgFrontend::GpgBasicOperator']]],
+ ['versionchecktask_1669',['VersionCheckTask',['../classVersionCheckTask.html#a5be89e73bb5430c248b62f7819c58044',1,'VersionCheckTask']]],
+ ['versionwithdrawn_1670',['VersionWithdrawn',['../structSoftwareVersion.html#a4f129d14867355cd4ee8ebc323ca1fab',1,'SoftwareVersion']]]
];
diff --git a/docs/html/search/functions_15.js b/docs/html/search/functions_15.js
index ae4d8f6a..367fe5d5 100644
--- a/docs/html/search/functions_15.js
+++ b/docs/html/search/functions_15.js
@@ -1,9 +1,9 @@
var searchData=
[
- ['waitforopera_1670',['WaitForOpera',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#adc42d12a58717dee86d8bd59b1cacf82',1,'GpgFrontend::UI::CommonUtils']]],
- ['waitingdialog_1671',['WaitingDialog',['../classGpgFrontend_1_1UI_1_1WaitingDialog.html#a809d0ffc8208eb2ff5d8da76c8ee10dc',1,'GpgFrontend::UI::WaitingDialog']]],
- ['wizard_1672',['Wizard',['../classGpgFrontend_1_1UI_1_1Wizard.html#a448db8fe5ace96418ffd1f23b0142b10',1,'GpgFrontend::UI::Wizard']]],
- ['writebuffertofile_1673',['WriteBufferToFile',['../namespaceGpgFrontend.html#a4e780b0a2bddd1ce8735d3fa36dbfa86',1,'GpgFrontend']]],
- ['writefile_1674',['WriteFile',['../namespaceGpgFrontend.html#acc93a10f79f6479f72940fba39b780e1',1,'GpgFrontend']]],
- ['writefilegfbuffer_1675',['WriteFileGFBuffer',['../namespaceGpgFrontend.html#a4df3f25e93d16e2dc60c7d680c22dcb9',1,'GpgFrontend']]]
+ ['waitforopera_1671',['WaitForOpera',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#adc42d12a58717dee86d8bd59b1cacf82',1,'GpgFrontend::UI::CommonUtils']]],
+ ['waitingdialog_1672',['WaitingDialog',['../classGpgFrontend_1_1UI_1_1WaitingDialog.html#a809d0ffc8208eb2ff5d8da76c8ee10dc',1,'GpgFrontend::UI::WaitingDialog']]],
+ ['wizard_1673',['Wizard',['../classGpgFrontend_1_1UI_1_1Wizard.html#a448db8fe5ace96418ffd1f23b0142b10',1,'GpgFrontend::UI::Wizard']]],
+ ['writebuffertofile_1674',['WriteBufferToFile',['../namespaceGpgFrontend.html#a4e780b0a2bddd1ce8735d3fa36dbfa86',1,'GpgFrontend']]],
+ ['writefile_1675',['WriteFile',['../namespaceGpgFrontend.html#acc93a10f79f6479f72940fba39b780e1',1,'GpgFrontend']]],
+ ['writefilegfbuffer_1676',['WriteFileGFBuffer',['../namespaceGpgFrontend.html#a4df3f25e93d16e2dc60c7d680c22dcb9',1,'GpgFrontend']]]
];
diff --git a/docs/html/search/functions_16.js b/docs/html/search/functions_16.js
index 7bfea62a..90f7b76e 100644
--- a/docs/html/search/functions_16.js
+++ b/docs/html/search/functions_16.js
@@ -1,19 +1,19 @@
var searchData=
[
- ['_7ecachemanager_1676',['~CacheManager',['../classGpgFrontend_1_1CacheManager.html#a1cb49178670a5f18debac7e59e388610',1,'GpgFrontend::CacheManager']]],
- ['_7ecacheobject_1677',['~CacheObject',['../classGpgFrontend_1_1CacheObject.html#ab4ab841bf7fef7848af72620352a3141',1,'GpgFrontend::CacheObject']]],
- ['_7echannelobject_1678',['~ChannelObject',['../classGpgFrontend_1_1ChannelObject.html#a85a29ff6a1233114eb9f159c408cbe35',1,'GpgFrontend::ChannelObject']]],
- ['_7eglobalsettingstation_1679',['~GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html#af700161900e623a0ea14261d51616451',1,'GpgFrontend::GlobalSettingStation']]],
- ['_7egpgdata_1680',['~GpgData',['../classGpgFrontend_1_1GpgData.html#a96f3c1cb27eb2f3e6f28b9cdb2135bc7',1,'GpgFrontend::GpgData']]],
- ['_7egpgfrontendapplication_1681',['~GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a32f0e7dda69f7b1e3cc869340736c590',1,'GpgFrontend::UI::GpgFrontendApplication']]],
- ['_7egpgfrontendcontext_1682',['~GpgFrontendContext',['../structGpgFrontend_1_1GpgFrontendContext.html#a7492d29abfc6292ebf8ea015f8e31d1c',1,'GpgFrontend::GpgFrontendContext']]],
- ['_7egpgkey_1683',['~GpgKey',['../classGpgFrontend_1_1GpgKey.html#a1e9223bb1ad8fbb4e769680de39b3697',1,'GpgFrontend::GpgKey']]],
- ['_7egpgkeygetter_1684',['~GpgKeyGetter',['../classGpgFrontend_1_1GpgKeyGetter.html#ac9dbf4a2358f6478cf0ce8c85260878f',1,'GpgFrontend::GpgKeyGetter']]],
- ['_7egpgkeysignature_1685',['~GpgKeySignature',['../classGpgFrontend_1_1GpgKeySignature.html#ab4d7044f4e1ddcf0ae0d28be43f0fcb3',1,'GpgFrontend::GpgKeySignature']]],
- ['_7egpgsignature_1686',['~GpgSignature',['../classGpgFrontend_1_1GpgSignature.html#a44f137a457ac109d145a1cdd8e544e3a',1,'GpgFrontend::GpgSignature']]],
- ['_7egrttreeview_1687',['~GRTTreeView',['../classGpgFrontend_1_1UI_1_1GRTTreeView.html#afe0ba5a13c36968a1340fdc08dab33d9',1,'GpgFrontend::UI::GRTTreeView']]],
- ['_7esettingsobject_1688',['~SettingsObject',['../classGpgFrontend_1_1SettingsObject.html#ab03a4ac000c8629045b205a4d7d29980',1,'GpgFrontend::SettingsObject']]],
- ['_7esingletonfunctionobject_1689',['~SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html#a8296be8c449f88175285186831b995bc',1,'GpgFrontend::SingletonFunctionObject']]],
- ['_7etask_1690',['~Task',['../classGpgFrontend_1_1Thread_1_1Task.html#a37766a505662b33ad14672c29e209ea8',1,'GpgFrontend::Thread::Task']]],
- ['_7etaskrunner_1691',['~TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#ac3e57b59d537e2a75e741d4a5418ae6d',1,'GpgFrontend::Thread::TaskRunner']]]
+ ['_7ecachemanager_1677',['~CacheManager',['../classGpgFrontend_1_1CacheManager.html#a1cb49178670a5f18debac7e59e388610',1,'GpgFrontend::CacheManager']]],
+ ['_7ecacheobject_1678',['~CacheObject',['../classGpgFrontend_1_1CacheObject.html#ab4ab841bf7fef7848af72620352a3141',1,'GpgFrontend::CacheObject']]],
+ ['_7echannelobject_1679',['~ChannelObject',['../classGpgFrontend_1_1ChannelObject.html#a85a29ff6a1233114eb9f159c408cbe35',1,'GpgFrontend::ChannelObject']]],
+ ['_7eglobalsettingstation_1680',['~GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html#af700161900e623a0ea14261d51616451',1,'GpgFrontend::GlobalSettingStation']]],
+ ['_7egpgdata_1681',['~GpgData',['../classGpgFrontend_1_1GpgData.html#a96f3c1cb27eb2f3e6f28b9cdb2135bc7',1,'GpgFrontend::GpgData']]],
+ ['_7egpgfrontendapplication_1682',['~GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a32f0e7dda69f7b1e3cc869340736c590',1,'GpgFrontend::UI::GpgFrontendApplication']]],
+ ['_7egpgfrontendcontext_1683',['~GpgFrontendContext',['../structGpgFrontend_1_1GpgFrontendContext.html#a7492d29abfc6292ebf8ea015f8e31d1c',1,'GpgFrontend::GpgFrontendContext']]],
+ ['_7egpgkey_1684',['~GpgKey',['../classGpgFrontend_1_1GpgKey.html#a1e9223bb1ad8fbb4e769680de39b3697',1,'GpgFrontend::GpgKey']]],
+ ['_7egpgkeygetter_1685',['~GpgKeyGetter',['../classGpgFrontend_1_1GpgKeyGetter.html#ac9dbf4a2358f6478cf0ce8c85260878f',1,'GpgFrontend::GpgKeyGetter']]],
+ ['_7egpgkeysignature_1686',['~GpgKeySignature',['../classGpgFrontend_1_1GpgKeySignature.html#ab4d7044f4e1ddcf0ae0d28be43f0fcb3',1,'GpgFrontend::GpgKeySignature']]],
+ ['_7egpgsignature_1687',['~GpgSignature',['../classGpgFrontend_1_1GpgSignature.html#a44f137a457ac109d145a1cdd8e544e3a',1,'GpgFrontend::GpgSignature']]],
+ ['_7egrttreeview_1688',['~GRTTreeView',['../classGpgFrontend_1_1UI_1_1GRTTreeView.html#afe0ba5a13c36968a1340fdc08dab33d9',1,'GpgFrontend::UI::GRTTreeView']]],
+ ['_7esettingsobject_1689',['~SettingsObject',['../classGpgFrontend_1_1SettingsObject.html#ab03a4ac000c8629045b205a4d7d29980',1,'GpgFrontend::SettingsObject']]],
+ ['_7esingletonfunctionobject_1690',['~SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html#a8296be8c449f88175285186831b995bc',1,'GpgFrontend::SingletonFunctionObject']]],
+ ['_7etask_1691',['~Task',['../classGpgFrontend_1_1Thread_1_1Task.html#a37766a505662b33ad14672c29e209ea8',1,'GpgFrontend::Thread::Task']]],
+ ['_7etaskrunner_1692',['~TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#ac3e57b59d537e2a75e741d4a5418ae6d',1,'GpgFrontend::Thread::TaskRunner']]]
];
diff --git a/docs/html/search/pages_0.js b/docs/html/search/pages_0.js
index 285da995..b1e186ae 100644
--- a/docs/html/search/pages_0.js
+++ b/docs/html/search/pages_0.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['gpgfrontend_20develop_20document_20main_20page_1811',['GpgFrontend Develop Document Main Page',['../index.html',1,'']]]
+ ['gpgfrontend_20develop_20document_20main_20page_1812',['GpgFrontend Develop Document Main Page',['../index.html',1,'']]]
];
diff --git a/docs/html/search/typedefs_0.js b/docs/html/search/typedefs_0.js
index 527b18d1..9a179911 100644
--- a/docs/html/search/typedefs_0.js
+++ b/docs/html/search/typedefs_0.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['gpgerror_1809',['GpgError',['../namespaceGpgFrontend.html#a2470eb154743191c3454203f23d3a2f8',1,'GpgFrontend']]]
+ ['gpgerror_1810',['GpgError',['../namespaceGpgFrontend.html#a2470eb154743191c3454203f23d3a2f8',1,'GpgFrontend']]]
];
diff --git a/docs/html/search/variables_0.js b/docs/html/search/variables_0.js
index d505e442..e31e093f 100644
--- a/docs/html/search/variables_0.js
+++ b/docs/html/search/variables_0.js
@@ -1,18 +1,18 @@
var searchData=
[
- ['about_5fact_5f_1692',['about_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9dd292f55fba1fe62c83508fef7e43a1',1,'GpgFrontend::UI::MainWindow']]],
- ['add_5fpgp_5fheader_5fact_5f_1693',['add_pgp_header_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a95b2c86afbefe47e79af87e56032e306',1,'GpgFrontend::UI::MainWindow']]],
- ['additional_5fuid_5fbox_5f_1694',['additional_uid_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a265ef140feec330e7341c1369c0aefab',1,'GpgFrontend::UI::KeyPairDetailTab']]],
- ['advance_5fmenu_5f_1695',['advance_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#abd4319366aa14f17a166c9f945d4ae90',1,'GpgFrontend::UI::MainWindow']]],
- ['algorithm_5fdetail_5fvar_5flabel_5f_1696',['algorithm_detail_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#abbfe5c15ea09478f52f25ce0a91bbbf8',1,'GpgFrontend::UI::KeyPairDetailTab']]],
- ['algorithm_5fvar_5flabel_5f_1697',['algorithm_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aadcb3bbb4233fdc2deca5b509c46b2e1',1,'GpgFrontend::UI::KeyPairDetailTab::algorithm_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a1790a8b163b94f33a3bb968f9a19f00c',1,'GpgFrontend::UI::KeyPairSubkeyTab::algorithm_var_label_()']]],
- ['app_5fconfig_5ftarget_5fpath_5f_1698',['app_config_target_path_',['../classGpgFrontend_1_1GlobalSettingStation_1_1Impl.html#a4612f0a224cf38c9f4439b4750476b10',1,'GpgFrontend::GlobalSettingStation::Impl']]],
- ['app_5fdata_5fobjs_5fpath_5f_1699',['app_data_objs_path_',['../classGpgFrontend_1_1GlobalSettingStation_1_1Impl.html#a7eae19f7ada6914cc566912e74c73221',1,'GpgFrontend::GlobalSettingStation::Impl']]],
- ['app_5fdata_5fpath_5f_1700',['app_data_path_',['../classGpgFrontend_1_1GlobalSettingStation_1_1Impl.html#a67f2e4e8a62d3b34d9f86c9235a35f05',1,'GpgFrontend::GlobalSettingStation::Impl']]],
- ['app_5flog_5fpath_5f_1701',['app_log_path_',['../classGpgFrontend_1_1GlobalSettingStation_1_1Impl.html#a92ca0d1c51d36d8984528ec089280da7',1,'GpgFrontend::GlobalSettingStation::Impl']]],
- ['app_5fportable_5fconfig_5fpath_5f_1702',['app_portable_config_path_',['../classGpgFrontend_1_1GlobalSettingStation_1_1Impl.html#a4f164aa1707e6afdef29387b4a644a59',1,'GpgFrontend::GlobalSettingStation::Impl']]],
- ['app_5fsecure_5fkey_5fpath_5f_1703',['app_secure_key_path_',['../classGpgFrontend_1_1DataObjectOperator.html#a9b13d6d68ebc584cb231e6f349a2a138',1,'GpgFrontend::DataObjectOperator']]],
- ['app_5fsecure_5fpath_5f_1704',['app_secure_path_',['../classGpgFrontend_1_1DataObjectOperator.html#a4e7673037b5c7eda5c334d50f8155150',1,'GpgFrontend::DataObjectOperator']]],
- ['append_5fselected_5fkeys_5fact_5f_1705',['append_selected_keys_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab67486a71126073e7c39ca12603198f4',1,'GpgFrontend::UI::MainWindow']]],
- ['attachment_5fdock_5f_1706',['attachment_dock_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#afd243a5f00f86d65431081ead2cae153',1,'GpgFrontend::UI::MainWindow']]]
+ ['about_5fact_5f_1693',['about_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9dd292f55fba1fe62c83508fef7e43a1',1,'GpgFrontend::UI::MainWindow']]],
+ ['add_5fpgp_5fheader_5fact_5f_1694',['add_pgp_header_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a95b2c86afbefe47e79af87e56032e306',1,'GpgFrontend::UI::MainWindow']]],
+ ['additional_5fuid_5fbox_5f_1695',['additional_uid_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a265ef140feec330e7341c1369c0aefab',1,'GpgFrontend::UI::KeyPairDetailTab']]],
+ ['advance_5fmenu_5f_1696',['advance_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#abd4319366aa14f17a166c9f945d4ae90',1,'GpgFrontend::UI::MainWindow']]],
+ ['algorithm_5fdetail_5fvar_5flabel_5f_1697',['algorithm_detail_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#abbfe5c15ea09478f52f25ce0a91bbbf8',1,'GpgFrontend::UI::KeyPairDetailTab']]],
+ ['algorithm_5fvar_5flabel_5f_1698',['algorithm_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aadcb3bbb4233fdc2deca5b509c46b2e1',1,'GpgFrontend::UI::KeyPairDetailTab::algorithm_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a1790a8b163b94f33a3bb968f9a19f00c',1,'GpgFrontend::UI::KeyPairSubkeyTab::algorithm_var_label_()']]],
+ ['app_5fconfig_5ftarget_5fpath_5f_1699',['app_config_target_path_',['../classGpgFrontend_1_1GlobalSettingStation_1_1Impl.html#a4612f0a224cf38c9f4439b4750476b10',1,'GpgFrontend::GlobalSettingStation::Impl']]],
+ ['app_5fdata_5fobjs_5fpath_5f_1700',['app_data_objs_path_',['../classGpgFrontend_1_1GlobalSettingStation_1_1Impl.html#a7eae19f7ada6914cc566912e74c73221',1,'GpgFrontend::GlobalSettingStation::Impl']]],
+ ['app_5fdata_5fpath_5f_1701',['app_data_path_',['../classGpgFrontend_1_1GlobalSettingStation_1_1Impl.html#a67f2e4e8a62d3b34d9f86c9235a35f05',1,'GpgFrontend::GlobalSettingStation::Impl']]],
+ ['app_5flog_5fpath_5f_1702',['app_log_path_',['../classGpgFrontend_1_1GlobalSettingStation_1_1Impl.html#a92ca0d1c51d36d8984528ec089280da7',1,'GpgFrontend::GlobalSettingStation::Impl']]],
+ ['app_5fportable_5fconfig_5fpath_5f_1703',['app_portable_config_path_',['../classGpgFrontend_1_1GlobalSettingStation_1_1Impl.html#a4f164aa1707e6afdef29387b4a644a59',1,'GpgFrontend::GlobalSettingStation::Impl']]],
+ ['app_5fsecure_5fkey_5fpath_5f_1704',['app_secure_key_path_',['../classGpgFrontend_1_1DataObjectOperator.html#a9b13d6d68ebc584cb231e6f349a2a138',1,'GpgFrontend::DataObjectOperator']]],
+ ['app_5fsecure_5fpath_5f_1705',['app_secure_path_',['../classGpgFrontend_1_1DataObjectOperator.html#a4e7673037b5c7eda5c334d50f8155150',1,'GpgFrontend::DataObjectOperator']]],
+ ['append_5fselected_5fkeys_5fact_5f_1706',['append_selected_keys_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab67486a71126073e7c39ca12603198f4',1,'GpgFrontend::UI::MainWindow']]],
+ ['attachment_5fdock_5f_1707',['attachment_dock_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#afd243a5f00f86d65431081ead2cae153',1,'GpgFrontend::UI::MainWindow']]]
];
diff --git a/docs/html/search/variables_1.js b/docs/html/search/variables_1.js
index 4a78f52b..b2511f90 100644
--- a/docs/html/search/variables_1.js
+++ b/docs/html/search/variables_1.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['browser_5f_1707',['browser_',['../classGpgFrontend_1_1UI_1_1HelpPage.html#af4f61342fae06a49c95d8d20ca51ca2c',1,'GpgFrontend::UI::HelpPage']]],
- ['browser_5fact_5f_1708',['browser_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3c0a5305cf55fe5bee2f18298f983cad',1,'GpgFrontend::UI::MainWindow']]],
- ['button_5fbox_5f_1709',['button_box_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#aa765259f9aa65b81d59b982ee0595e52',1,'GpgFrontend::UI::KeyGenDialog::button_box_()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#ab06b11f407fbb407139235fc84325de2',1,'GpgFrontend::UI::SubkeyGenerateDialog::button_box_()']]]
+ ['browser_5f_1708',['browser_',['../classGpgFrontend_1_1UI_1_1HelpPage.html#af4f61342fae06a49c95d8d20ca51ca2c',1,'GpgFrontend::UI::HelpPage']]],
+ ['browser_5fact_5f_1709',['browser_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3c0a5305cf55fe5bee2f18298f983cad',1,'GpgFrontend::UI::MainWindow']]],
+ ['button_5fbox_5f_1710',['button_box_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#aa765259f9aa65b81d59b982ee0595e52',1,'GpgFrontend::UI::KeyGenDialog::button_box_()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#ab06b11f407fbb407139235fc84325de2',1,'GpgFrontend::UI::SubkeyGenerateDialog::button_box_()']]]
];
diff --git a/docs/html/search/variables_10.js b/docs/html/search/variables_10.js
index d086b0c0..4a7cbafc 100644
--- a/docs/html/search/variables_10.js
+++ b/docs/html/search/variables_10.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['rd_5f_1789',['rd_',['../classGpgFrontend_1_1PassphraseGenerator.html#a12ee6f9b7fff4883074321c7e0de3dfa',1,'GpgFrontend::PassphraseGenerator']]],
- ['redo_5fact_5f_1790',['redo_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#abe38474d4e81726147f9df8a9721ce6e',1,'GpgFrontend::UI::MainWindow']]]
+ ['rd_5f_1790',['rd_',['../classGpgFrontend_1_1PassphraseGenerator.html#a12ee6f9b7fff4883074321c7e0de3dfa',1,'GpgFrontend::PassphraseGenerator']]],
+ ['redo_5fact_5f_1791',['redo_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#abe38474d4e81726147f9df8a9721ce6e',1,'GpgFrontend::UI::MainWindow']]]
];
diff --git a/docs/html/search/variables_11.js b/docs/html/search/variables_11.js
index 3f82f7af..7125e94c 100644
--- a/docs/html/search/variables_11.js
+++ b/docs/html/search/variables_11.js
@@ -1,15 +1,15 @@
var searchData=
[
- ['save_5fact_5f_1791',['save_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab0f148559d830fcf10b5a1937b0a47dc',1,'GpgFrontend::UI::MainWindow']]],
- ['save_5fas_5fact_5f_1792',['save_as_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a22256763ef83ed35a81e446b553d8112',1,'GpgFrontend::UI::MainWindow']]],
- ['select_5fall_5fact_5f_1793',['select_all_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ac6a42e6e3af7e76f0bd2ecc62c9520cc',1,'GpgFrontend::UI::MainWindow']]],
- ['show_5fkey_5fdetails_5fact_5f_1794',['show_key_details_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#acd41722ceedd20973b7d83852fab407b',1,'GpgFrontend::UI::MainWindow']]],
- ['sign_5fact_5f_1795',['sign_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0cded37ef6e07856bbe439b0e90db839',1,'GpgFrontend::UI::MainWindow']]],
- ['sign_5fmarked_5f_1796',['sign_marked_',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a4f94e9ef7889a169bda5a47b7f657358',1,'GpgFrontend::UI::PlainTextEditorPage']]],
- ['special_5fedit_5ftool_5fbar_5f_1797',['special_edit_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af2b3e3a0e9894633e1839df289f5ffe0',1,'GpgFrontend::UI::MainWindow']]],
- ['start_5fwizard_5fact_5f_1798',['start_wizard_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab0019ca316b971c594c2f20f418256a6',1,'GpgFrontend::UI::MainWindow']]],
- ['steganography_5fmenu_5f_1799',['steganography_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af763a506aed7d0fb2125d1859583b853',1,'GpgFrontend::UI::MainWindow']]],
- ['storages_5fmutex_5f_1800',['storages_mutex_',['../classGpgFrontend_1_1SingletonStorageCollection_1_1Impl.html#a10851118e959ef798ae9c534dac74824',1,'GpgFrontend::SingletonStorageCollection::Impl']]],
- ['switch_5ftab_5fdown_5fact_5f_1801',['switch_tab_down_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a88af746cd550792ab6095d2ebbd29b41',1,'GpgFrontend::UI::MainWindow']]],
- ['switch_5ftab_5fup_5fact_5f_1802',['switch_tab_up_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8d5ce6514ef3fa8ac3223176f5fa2701',1,'GpgFrontend::UI::MainWindow']]]
+ ['save_5fact_5f_1792',['save_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab0f148559d830fcf10b5a1937b0a47dc',1,'GpgFrontend::UI::MainWindow']]],
+ ['save_5fas_5fact_5f_1793',['save_as_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a22256763ef83ed35a81e446b553d8112',1,'GpgFrontend::UI::MainWindow']]],
+ ['select_5fall_5fact_5f_1794',['select_all_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ac6a42e6e3af7e76f0bd2ecc62c9520cc',1,'GpgFrontend::UI::MainWindow']]],
+ ['show_5fkey_5fdetails_5fact_5f_1795',['show_key_details_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#acd41722ceedd20973b7d83852fab407b',1,'GpgFrontend::UI::MainWindow']]],
+ ['sign_5fact_5f_1796',['sign_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0cded37ef6e07856bbe439b0e90db839',1,'GpgFrontend::UI::MainWindow']]],
+ ['sign_5fmarked_5f_1797',['sign_marked_',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a4f94e9ef7889a169bda5a47b7f657358',1,'GpgFrontend::UI::PlainTextEditorPage']]],
+ ['special_5fedit_5ftool_5fbar_5f_1798',['special_edit_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af2b3e3a0e9894633e1839df289f5ffe0',1,'GpgFrontend::UI::MainWindow']]],
+ ['start_5fwizard_5fact_5f_1799',['start_wizard_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab0019ca316b971c594c2f20f418256a6',1,'GpgFrontend::UI::MainWindow']]],
+ ['steganography_5fmenu_5f_1800',['steganography_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af763a506aed7d0fb2125d1859583b853',1,'GpgFrontend::UI::MainWindow']]],
+ ['storages_5fmutex_5f_1801',['storages_mutex_',['../classGpgFrontend_1_1SingletonStorageCollection_1_1Impl.html#a10851118e959ef798ae9c534dac74824',1,'GpgFrontend::SingletonStorageCollection::Impl']]],
+ ['switch_5ftab_5fdown_5fact_5f_1802',['switch_tab_down_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a88af746cd550792ab6095d2ebbd29b41',1,'GpgFrontend::UI::MainWindow']]],
+ ['switch_5ftab_5fup_5fact_5f_1803',['switch_tab_up_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8d5ce6514ef3fa8ac3223176f5fa2701',1,'GpgFrontend::UI::MainWindow']]]
];
diff --git a/docs/html/search/variables_12.js b/docs/html/search/variables_12.js
index efa8d068..0c17a620 100644
--- a/docs/html/search/variables_12.js
+++ b/docs/html/search/variables_12.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['translate_5fact_5f_1803',['translate_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adbac799672c43c90810366825d837e4e',1,'GpgFrontend::UI::MainWindow']]]
+ ['translate_5fact_5f_1804',['translate_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adbac799672c43c90810366825d837e4e',1,'GpgFrontend::UI::MainWindow']]]
];
diff --git a/docs/html/search/variables_13.js b/docs/html/search/variables_13.js
index 23b9520a..f8594559 100644
--- a/docs/html/search/variables_13.js
+++ b/docs/html/search/variables_13.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['undo_5fact_5f_1804',['undo_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa498dfecac36590e4b60d50824dff58c',1,'GpgFrontend::UI::MainWindow']]]
+ ['undo_5fact_5f_1805',['undo_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa498dfecac36590e4b60d50824dff58c',1,'GpgFrontend::UI::MainWindow']]]
];
diff --git a/docs/html/search/variables_14.js b/docs/html/search/variables_14.js
index bcf79174..91ec807b 100644
--- a/docs/html/search/variables_14.js
+++ b/docs/html/search/variables_14.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['verify_5fact_5f_1805',['verify_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a14bb12fa25620e1a93bd23c9f7c84081',1,'GpgFrontend::UI::MainWindow']]],
- ['view_5fmenu_5f_1806',['view_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0e9920cf0fc974ac2f70d3f039f009f2',1,'GpgFrontend::UI::MainWindow']]]
+ ['verify_5fact_5f_1806',['verify_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a14bb12fa25620e1a93bd23c9f7c84081',1,'GpgFrontend::UI::MainWindow']]],
+ ['view_5fmenu_5f_1807',['view_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0e9920cf0fc974ac2f70d3f039f009f2',1,'GpgFrontend::UI::MainWindow']]]
];
diff --git a/docs/html/search/variables_15.js b/docs/html/search/variables_15.js
index 3b618734..fa840483 100644
--- a/docs/html/search/variables_15.js
+++ b/docs/html/search/variables_15.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['zoom_5fin_5fact_5f_1807',['zoom_in_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3cb7daedbef61c1be27635c9ebc9e689',1,'GpgFrontend::UI::MainWindow']]],
- ['zoom_5fout_5fact_5f_1808',['zoom_out_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a70397629ae3ffe039051b80a099c7979',1,'GpgFrontend::UI::MainWindow']]]
+ ['zoom_5fin_5fact_5f_1808',['zoom_in_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3cb7daedbef61c1be27635c9ebc9e689',1,'GpgFrontend::UI::MainWindow']]],
+ ['zoom_5fout_5fact_5f_1809',['zoom_out_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a70397629ae3ffe039051b80a099c7979',1,'GpgFrontend::UI::MainWindow']]]
];
diff --git a/docs/html/search/variables_2.js b/docs/html/search/variables_2.js
index 0f7b85d9..1c293e4f 100644
--- a/docs/html/search/variables_2.js
+++ b/docs/html/search/variables_2.js
@@ -1,20 +1,20 @@
var searchData=
[
- ['channel_5f_1710',['channel_',['../classGpgFrontend_1_1ChannelObject.html#aee5f8a5575adbdf522da4dd195c091ee',1,'GpgFrontend::ChannelObject']]],
- ['check_5fupdate_5fact_5f_1711',['check_update_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a672f4ef07be6ad645613ecd49399700d',1,'GpgFrontend::UI::MainWindow']]],
- ['clean_5fdouble_5fline_5fbreaks_5fact_5f_1712',['clean_double_line_breaks_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0cb094e0409337cfd7dba1bb510ea96e',1,'GpgFrontend::UI::MainWindow']]],
- ['close_5ftab_5fact_5f_1713',['close_tab_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a09671c3aa26a750cfd6be6c092de8715',1,'GpgFrontend::UI::MainWindow']]],
- ['comment_5fedit_5f_1714',['comment_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3008e2a9879a8e122e422f67cf0018f8',1,'GpgFrontend::UI::KeyGenDialog']]],
- ['comment_5fvar_5flabel_5f_1715',['comment_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a83b1290251a204def52677ae000a17ec',1,'GpgFrontend::UI::KeyPairDetailTab']]],
- ['copy_5fact_5f_1716',['copy_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a71402943f4ed19e3aba0556b23eaa8f8',1,'GpgFrontend::UI::MainWindow']]],
- ['copy_5fmail_5faddress_5fto_5fclipboard_5fact_5f_1717',['copy_mail_address_to_clipboard_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af77f66b6b869f6ddb3d2caa3bc40bb09',1,'GpgFrontend::UI::MainWindow']]],
- ['count_5fpage_5f_1718',['count_page_',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a747d3740a88295e6c9565788d4cf56ec',1,'GpgFrontend::UI::TextEdit']]],
- ['created_5fvar_5flabel_5f_1719',['created_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#ac827e8474ace52814f8de70709987d36',1,'GpgFrontend::UI::KeyPairSubkeyTab::created_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aa45a2433ce82a88eeb2c9c282ab7b975',1,'GpgFrontend::UI::KeyPairDetailTab::created_var_label_()']]],
- ['crypt_5fmenu_5f_1720',['crypt_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1ef17c566a764f707f43593a1f6b3c60',1,'GpgFrontend::UI::MainWindow']]],
- ['crypt_5ftool_5fbar_5f_1721',['crypt_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aac320aef3b49cd068544aac54b927f7a',1,'GpgFrontend::UI::MainWindow']]],
- ['ctx_5f_1722',['ctx_',['../classGpgFrontend_1_1GpgBasicOperator.html#afad990a43ab06a060a93db9948ebb740',1,'GpgFrontend::GpgBasicOperator::ctx_()'],['../classGpgFrontend_1_1GpgFileOpera.html#a1b78c6554dc6f6e2055664e825a0d1c4',1,'GpgFrontend::GpgFileOpera::ctx_()'],['../classGpgFrontend_1_1GpgKeyGetter_1_1Impl.html#a4b6ff4f9484315d6352149b99efcdedd',1,'GpgFrontend::GpgKeyGetter::Impl::ctx_()']]],
- ['ctx_5fmutex_5f_1723',['ctx_mutex_',['../classGpgFrontend_1_1GpgKeyGetter_1_1Impl.html#ab8b61ca5dc753cc736a6a9062006e339',1,'GpgFrontend::GpgKeyGetter::Impl']]],
- ['current_5freply_5f_1724',['current_reply_',['../classVersionCheckTask.html#ab7ca1879053fa4b0abdca877b53fb62e',1,'VersionCheckTask']]],
- ['cut_5fact_5f_1725',['cut_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2c2f6c021219564846f1624f6bb5b9a2',1,'GpgFrontend::UI::MainWindow']]],
- ['cut_5fpgp_5fheader_5fact_5f_1726',['cut_pgp_header_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a313a5d7d0847114a6f11e4d7870edd86',1,'GpgFrontend::UI::MainWindow']]]
+ ['channel_5f_1711',['channel_',['../classGpgFrontend_1_1ChannelObject.html#aee5f8a5575adbdf522da4dd195c091ee',1,'GpgFrontend::ChannelObject']]],
+ ['check_5fupdate_5fact_5f_1712',['check_update_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a672f4ef07be6ad645613ecd49399700d',1,'GpgFrontend::UI::MainWindow']]],
+ ['clean_5fdouble_5fline_5fbreaks_5fact_5f_1713',['clean_double_line_breaks_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0cb094e0409337cfd7dba1bb510ea96e',1,'GpgFrontend::UI::MainWindow']]],
+ ['close_5ftab_5fact_5f_1714',['close_tab_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a09671c3aa26a750cfd6be6c092de8715',1,'GpgFrontend::UI::MainWindow']]],
+ ['comment_5fedit_5f_1715',['comment_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3008e2a9879a8e122e422f67cf0018f8',1,'GpgFrontend::UI::KeyGenDialog']]],
+ ['comment_5fvar_5flabel_5f_1716',['comment_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a83b1290251a204def52677ae000a17ec',1,'GpgFrontend::UI::KeyPairDetailTab']]],
+ ['copy_5fact_5f_1717',['copy_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a71402943f4ed19e3aba0556b23eaa8f8',1,'GpgFrontend::UI::MainWindow']]],
+ ['copy_5fmail_5faddress_5fto_5fclipboard_5fact_5f_1718',['copy_mail_address_to_clipboard_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af77f66b6b869f6ddb3d2caa3bc40bb09',1,'GpgFrontend::UI::MainWindow']]],
+ ['count_5fpage_5f_1719',['count_page_',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a747d3740a88295e6c9565788d4cf56ec',1,'GpgFrontend::UI::TextEdit']]],
+ ['created_5fvar_5flabel_5f_1720',['created_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#ac827e8474ace52814f8de70709987d36',1,'GpgFrontend::UI::KeyPairSubkeyTab::created_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aa45a2433ce82a88eeb2c9c282ab7b975',1,'GpgFrontend::UI::KeyPairDetailTab::created_var_label_()']]],
+ ['crypt_5fmenu_5f_1721',['crypt_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1ef17c566a764f707f43593a1f6b3c60',1,'GpgFrontend::UI::MainWindow']]],
+ ['crypt_5ftool_5fbar_5f_1722',['crypt_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aac320aef3b49cd068544aac54b927f7a',1,'GpgFrontend::UI::MainWindow']]],
+ ['ctx_5f_1723',['ctx_',['../classGpgFrontend_1_1GpgBasicOperator.html#afad990a43ab06a060a93db9948ebb740',1,'GpgFrontend::GpgBasicOperator::ctx_()'],['../classGpgFrontend_1_1GpgFileOpera.html#a1b78c6554dc6f6e2055664e825a0d1c4',1,'GpgFrontend::GpgFileOpera::ctx_()'],['../classGpgFrontend_1_1GpgKeyGetter_1_1Impl.html#a4b6ff4f9484315d6352149b99efcdedd',1,'GpgFrontend::GpgKeyGetter::Impl::ctx_()']]],
+ ['ctx_5fmutex_5f_1724',['ctx_mutex_',['../classGpgFrontend_1_1GpgKeyGetter_1_1Impl.html#ab8b61ca5dc753cc736a6a9062006e339',1,'GpgFrontend::GpgKeyGetter::Impl']]],
+ ['current_5freply_5f_1725',['current_reply_',['../classVersionCheckTask.html#ab7ca1879053fa4b0abdca877b53fb62e',1,'VersionCheckTask']]],
+ ['cut_5fact_5f_1726',['cut_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2c2f6c021219564846f1624f6bb5b9a2',1,'GpgFrontend::UI::MainWindow']]],
+ ['cut_5fpgp_5fheader_5fact_5f_1727',['cut_pgp_header_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a313a5d7d0847114a6f11e4d7870edd86',1,'GpgFrontend::UI::MainWindow']]]
];
diff --git a/docs/html/search/variables_3.js b/docs/html/search/variables_3.js
index e5dfc50b..bde71f95 100644
--- a/docs/html/search/variables_3.js
+++ b/docs/html/search/variables_3.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['date_5fedit_5f_1727',['date_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a242a3245de709ede086087d7a096e6cd',1,'GpgFrontend::UI::KeyGenDialog::date_edit_()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aa8bf228ba2a773c0d38f9e5c2f20539d',1,'GpgFrontend::UI::SubkeyGenerateDialog::date_edit_()']]],
- ['decrypt_5fact_5f_1728',['decrypt_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa92246123272e3e1085f22612aedf48f',1,'GpgFrontend::UI::MainWindow']]],
- ['decrypt_5fverify_5fact_5f_1729',['decrypt_verify_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a70d2b2311708ab023466d343f2e914b1',1,'GpgFrontend::UI::MainWindow']]]
+ ['date_5fedit_5f_1728',['date_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a242a3245de709ede086087d7a096e6cd',1,'GpgFrontend::UI::KeyGenDialog::date_edit_()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aa8bf228ba2a773c0d38f9e5c2f20539d',1,'GpgFrontend::UI::SubkeyGenerateDialog::date_edit_()']]],
+ ['decrypt_5fact_5f_1729',['decrypt_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa92246123272e3e1085f22612aedf48f',1,'GpgFrontend::UI::MainWindow']]],
+ ['decrypt_5fverify_5fact_5f_1730',['decrypt_verify_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a70d2b2311708ab023466d343f2e914b1',1,'GpgFrontend::UI::MainWindow']]]
];
diff --git a/docs/html/search/variables_4.js b/docs/html/search/variables_4.js
index f4a16c0b..01eb9dc1 100644
--- a/docs/html/search/variables_4.js
+++ b/docs/html/search/variables_4.js
@@ -1,14 +1,14 @@
var searchData=
[
- ['edit_5f_1730',['edit_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7aa41c90105fd4c2931895d8dfb5ec45',1,'GpgFrontend::UI::MainWindow']]],
- ['edit_5fmenu_5f_1731',['edit_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a6d681a306c137dc107088d60b09a925f',1,'GpgFrontend::UI::MainWindow']]],
- ['edit_5ftool_5fbar_5f_1732',['edit_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab531823acdbfb117c82a9906ce2107b9',1,'GpgFrontend::UI::MainWindow']]],
- ['email_5fedit_5f_1733',['email_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3453d1a8a4c0411472b2779d018abdc3',1,'GpgFrontend::UI::KeyGenDialog']]],
- ['email_5fvar_5flabel_5f_1734',['email_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a8c71b37aa040da50cb0105489a42e60d',1,'GpgFrontend::UI::KeyPairDetailTab']]],
- ['encrypt_5fact_5f_1735',['encrypt_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad6a2cecb2846b324604c4abd1fb7d11a',1,'GpgFrontend::UI::MainWindow']]],
- ['encrypt_5fsign_5fact_5f_1736',['encrypt_sign_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2417c807356e3b876ecb2f572568670b',1,'GpgFrontend::UI::MainWindow']]],
- ['error_5flabel_5f_1737',['error_label_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a8e500e3153558364fe5ba5b8bab6f219',1,'GpgFrontend::UI::KeyGenDialog::error_label_()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a75f325b4a5aa8bcfcc411bdaf9279683',1,'GpgFrontend::UI::SubkeyGenerateDialog::error_label_()']]],
- ['error_5fmessages_5f_1738',['error_messages_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a03a8e1c8f2c1887732d36a346185bb40',1,'GpgFrontend::UI::KeyGenDialog']]],
- ['expire_5fcheck_5fbox_5f_1739',['expire_check_box_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a196ef707a7a2cfd717f69c8a5bc3278d',1,'GpgFrontend::UI::KeyGenDialog::expire_check_box_()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#afa21ac4d45a6474afc1bc594486ed8e2',1,'GpgFrontend::UI::SubkeyGenerateDialog::expire_check_box_()']]],
- ['expire_5fvar_5flabel_5f_1740',['expire_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aedc0e13ba1b64782e40f7c14af77f8f0',1,'GpgFrontend::UI::KeyPairDetailTab::expire_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a72b94f3e8d11c44d1b4e3653ab885927',1,'GpgFrontend::UI::KeyPairSubkeyTab::expire_var_label_()']]]
+ ['edit_5f_1731',['edit_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7aa41c90105fd4c2931895d8dfb5ec45',1,'GpgFrontend::UI::MainWindow']]],
+ ['edit_5fmenu_5f_1732',['edit_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a6d681a306c137dc107088d60b09a925f',1,'GpgFrontend::UI::MainWindow']]],
+ ['edit_5ftool_5fbar_5f_1733',['edit_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab531823acdbfb117c82a9906ce2107b9',1,'GpgFrontend::UI::MainWindow']]],
+ ['email_5fedit_5f_1734',['email_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3453d1a8a4c0411472b2779d018abdc3',1,'GpgFrontend::UI::KeyGenDialog']]],
+ ['email_5fvar_5flabel_5f_1735',['email_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a8c71b37aa040da50cb0105489a42e60d',1,'GpgFrontend::UI::KeyPairDetailTab']]],
+ ['encrypt_5fact_5f_1736',['encrypt_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad6a2cecb2846b324604c4abd1fb7d11a',1,'GpgFrontend::UI::MainWindow']]],
+ ['encrypt_5fsign_5fact_5f_1737',['encrypt_sign_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2417c807356e3b876ecb2f572568670b',1,'GpgFrontend::UI::MainWindow']]],
+ ['error_5flabel_5f_1738',['error_label_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a8e500e3153558364fe5ba5b8bab6f219',1,'GpgFrontend::UI::KeyGenDialog::error_label_()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a75f325b4a5aa8bcfcc411bdaf9279683',1,'GpgFrontend::UI::SubkeyGenerateDialog::error_label_()']]],
+ ['error_5fmessages_5f_1739',['error_messages_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a03a8e1c8f2c1887732d36a346185bb40',1,'GpgFrontend::UI::KeyGenDialog']]],
+ ['expire_5fcheck_5fbox_5f_1740',['expire_check_box_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a196ef707a7a2cfd717f69c8a5bc3278d',1,'GpgFrontend::UI::KeyGenDialog::expire_check_box_()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#afa21ac4d45a6474afc1bc594486ed8e2',1,'GpgFrontend::UI::SubkeyGenerateDialog::expire_check_box_()']]],
+ ['expire_5fvar_5flabel_5f_1741',['expire_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aedc0e13ba1b64782e40f7c14af77f8f0',1,'GpgFrontend::UI::KeyPairDetailTab::expire_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a72b94f3e8d11c44d1b4e3653ab885927',1,'GpgFrontend::UI::KeyPairSubkeyTab::expire_var_label_()']]]
];
diff --git a/docs/html/search/variables_5.js b/docs/html/search/variables_5.js
index 06f4fdbf..1ad42d68 100644
--- a/docs/html/search/variables_5.js
+++ b/docs/html/search/variables_5.js
@@ -1,11 +1,11 @@
var searchData=
[
- ['file_5fmenu_5f_1741',['file_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af08c62c38a750382ee218191c8e13f4f',1,'GpgFrontend::UI::MainWindow']]],
- ['file_5ftool_5fbar_5f_1742',['file_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1e0d23d361b8e339ca85410db2bdfb64',1,'GpgFrontend::UI::MainWindow']]],
- ['find_5fact_5f_1743',['find_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a6154f5dbdc9cebc0644e5d1e25895df8',1,'GpgFrontend::UI::MainWindow']]],
- ['find_5fedit_5f_1744',['find_edit_',['../classGpgFrontend_1_1UI_1_1FindWidget.html#af420832720942dd1e7cb3f3841c7cbfe',1,'GpgFrontend::UI::FindWidget']]],
- ['fingerprint_5fbox_5f_1745',['fingerprint_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#ada1c21cf59f1f19dfd4ffe0391bc1594',1,'GpgFrontend::UI::KeyPairDetailTab']]],
- ['fingerprint_5fvar_5flabel_5f_1746',['fingerprint_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a1bb1519e5cce51ad5796065232f66ad6',1,'GpgFrontend::UI::KeyPairDetailTab::fingerprint_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a11a6e8aca1754d513ea91192ee0315bf',1,'GpgFrontend::UI::KeyPairSubkeyTab::fingerprint_var_label_()']]],
- ['fpr_5f_1747',['fpr_',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#a7d4b0cfcf5af0d4f7b7e121651cdf96d',1,'GpgFrontend::UI::VerifyKeyDetailBox']]],
- ['full_5ffile_5fpath_5f_1748',['full_file_path_',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#ae867b6329fcb1978479a9d70f7b017db',1,'GpgFrontend::UI::PlainTextEditorPage']]]
+ ['file_5fmenu_5f_1742',['file_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af08c62c38a750382ee218191c8e13f4f',1,'GpgFrontend::UI::MainWindow']]],
+ ['file_5ftool_5fbar_5f_1743',['file_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1e0d23d361b8e339ca85410db2bdfb64',1,'GpgFrontend::UI::MainWindow']]],
+ ['find_5fact_5f_1744',['find_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a6154f5dbdc9cebc0644e5d1e25895df8',1,'GpgFrontend::UI::MainWindow']]],
+ ['find_5fedit_5f_1745',['find_edit_',['../classGpgFrontend_1_1UI_1_1FindWidget.html#af420832720942dd1e7cb3f3841c7cbfe',1,'GpgFrontend::UI::FindWidget']]],
+ ['fingerprint_5fbox_5f_1746',['fingerprint_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#ada1c21cf59f1f19dfd4ffe0391bc1594',1,'GpgFrontend::UI::KeyPairDetailTab']]],
+ ['fingerprint_5fvar_5flabel_5f_1747',['fingerprint_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a1bb1519e5cce51ad5796065232f66ad6',1,'GpgFrontend::UI::KeyPairDetailTab::fingerprint_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a11a6e8aca1754d513ea91192ee0315bf',1,'GpgFrontend::UI::KeyPairSubkeyTab::fingerprint_var_label_()']]],
+ ['fpr_5f_1748',['fpr_',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#a7d4b0cfcf5af0d4f7b7e121651cdf96d',1,'GpgFrontend::UI::VerifyKeyDetailBox']]],
+ ['full_5ffile_5fpath_5f_1749',['full_file_path_',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#ae867b6329fcb1978479a9d70f7b017db',1,'GpgFrontend::UI::PlainTextEditorPage']]]
];
diff --git a/docs/html/search/variables_6.js b/docs/html/search/variables_6.js
index ddd36607..c9306af1 100644
--- a/docs/html/search/variables_6.js
+++ b/docs/html/search/variables_6.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['global_5fsetting_5fstation_5f_1749',['global_setting_station_',['../classGpgFrontend_1_1DataObjectOperator.html#a3c195f8e4c30d95be14a6d43e9282601',1,'GpgFrontend::DataObjectOperator']]],
- ['gnupg_5fact_5f_1750',['gnupg_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a79b83f536a7c4299eaa3d22e4e875227',1,'GpgFrontend::UI::MainWindow']]],
- ['gnupghomepath_1751',['GnuPGHomePath',['../classGpgInfo.html#a962e5a19e6213ae8c26b3752b6ea4a5e',1,'GpgInfo']]]
+ ['global_5fsetting_5fstation_5f_1750',['global_setting_station_',['../classGpgFrontend_1_1DataObjectOperator.html#a3c195f8e4c30d95be14a6d43e9282601',1,'GpgFrontend::DataObjectOperator']]],
+ ['gnupg_5fact_5f_1751',['gnupg_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a79b83f536a7c4299eaa3d22e4e875227',1,'GpgFrontend::UI::MainWindow']]],
+ ['gnupghomepath_1752',['GnuPGHomePath',['../classGpgInfo.html#a962e5a19e6213ae8c26b3752b6ea4a5e',1,'GpgInfo']]]
];
diff --git a/docs/html/search/variables_7.js b/docs/html/search/variables_7.js
index edda6174..cbd784e6 100644
--- a/docs/html/search/variables_7.js
+++ b/docs/html/search/variables_7.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['hash_5fkey_5f_1752',['hash_key_',['../classGpgFrontend_1_1DataObjectOperator.html#ae409c3562c3e08931daa17f5790c508b',1,'GpgFrontend::DataObjectOperator']]],
- ['help_5fmenu_5f_1753',['help_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a89fa105ed54d2189d762668262d74c63',1,'GpgFrontend::UI::MainWindow']]]
+ ['hash_5fkey_5f_1753',['hash_key_',['../classGpgFrontend_1_1DataObjectOperator.html#ae409c3562c3e08931daa17f5790c508b',1,'GpgFrontend::DataObjectOperator']]],
+ ['help_5fmenu_5f_1754',['help_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a89fa105ed54d2189d762668262d74c63',1,'GpgFrontend::UI::MainWindow']]]
];
diff --git a/docs/html/search/variables_8.js b/docs/html/search/variables_8.js
index 2a0ea1c4..93ec890c 100644
--- a/docs/html/search/variables_8.js
+++ b/docs/html/search/variables_8.js
@@ -1,9 +1,9 @@
var searchData=
[
- ['import_5fbutton_5f_1754',['import_button_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8538940a9a5dea7ddf53c89acdeb83be',1,'GpgFrontend::UI::MainWindow']]],
- ['import_5fkey_5ffrom_5fedit_5fact_5f_1755',['import_key_from_edit_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a01b85fb17c373d8f97ce439027c6d04e',1,'GpgFrontend::UI::MainWindow']]],
- ['import_5fkey_5fmenu_5f_1756',['import_key_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8d6fe32ab64797459443ed285d769745',1,'GpgFrontend::UI::MainWindow']]],
- ['instance_1757',['instance',['../classGpgFrontend_1_1CoreSignalStation.html#a671214ba506895fa5de6f80acf450d12',1,'GpgFrontend::CoreSignalStation']]],
- ['instances_5fmap_5f_1758',['instances_map_',['../classGpgFrontend_1_1SingletonStorage_1_1Impl.html#ae9347224f7094fd77236823d69bc3a4c',1,'GpgFrontend::SingletonStorage::Impl']]],
- ['instances_5fmutex_5f_1759',['instances_mutex_',['../classGpgFrontend_1_1SingletonStorage_1_1Impl.html#ad9c24c40dbad720eaf8a6a86156bca86',1,'GpgFrontend::SingletonStorage::Impl']]]
+ ['import_5fbutton_5f_1755',['import_button_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8538940a9a5dea7ddf53c89acdeb83be',1,'GpgFrontend::UI::MainWindow']]],
+ ['import_5fkey_5ffrom_5fedit_5fact_5f_1756',['import_key_from_edit_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a01b85fb17c373d8f97ce439027c6d04e',1,'GpgFrontend::UI::MainWindow']]],
+ ['import_5fkey_5fmenu_5f_1757',['import_key_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8d6fe32ab64797459443ed285d769745',1,'GpgFrontend::UI::MainWindow']]],
+ ['instance_1758',['instance',['../classGpgFrontend_1_1CoreSignalStation.html#a671214ba506895fa5de6f80acf450d12',1,'GpgFrontend::CoreSignalStation']]],
+ ['instances_5fmap_5f_1759',['instances_map_',['../classGpgFrontend_1_1SingletonStorage_1_1Impl.html#ae9347224f7094fd77236823d69bc3a4c',1,'GpgFrontend::SingletonStorage::Impl']]],
+ ['instances_5fmutex_5f_1760',['instances_mutex_',['../classGpgFrontend_1_1SingletonStorage_1_1Impl.html#ad9c24c40dbad720eaf8a6a86156bca86',1,'GpgFrontend::SingletonStorage::Impl']]]
];
diff --git a/docs/html/search/variables_9.js b/docs/html/search/variables_9.js
index 27ade2de..fb684a44 100644
--- a/docs/html/search/variables_9.js
+++ b/docs/html/search/variables_9.js
@@ -1,16 +1,16 @@
var searchData=
[
- ['key_5fbox_5f_1760',['key_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aae9905764b5551208574a932fdfba29c',1,'GpgFrontend::UI::KeyPairDetailTab']]],
- ['key_5fid_5fvar_5flabel_5f_1761',['key_id_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a10bc48799137d4c104975ca21c684985',1,'GpgFrontend::UI::KeyPairDetailTab::key_id_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a2f634f4c83ab5dd2d088eb07e0d3b862',1,'GpgFrontend::UI::KeyPairSubkeyTab::key_id_var_label_()']]],
- ['key_5flist_5fdock_5f_1762',['key_list_dock_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adaa66d9cdc51c946efc99bb94deda31c',1,'GpgFrontend::UI::MainWindow']]],
- ['key_5fmenu_5f_1763',['key_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a16bbfd12cd3a6f0df9e2c32cf7999e57',1,'GpgFrontend::UI::MainWindow']]],
- ['key_5fsize_5fspin_5fbox_5f_1764',['key_size_spin_box_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#aaa9b55830c39ce854e4ede26d916a844',1,'GpgFrontend::UI::KeyGenDialog::key_size_spin_box_()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aa91db742b41d352ba9f88620d649afb3',1,'GpgFrontend::UI::SubkeyGenerateDialog::key_size_spin_box_()']]],
- ['key_5fsize_5fvar_5flabel_5f_1765',['key_size_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a1485e603de56152f45d96e0ce5c50d9b',1,'GpgFrontend::UI::KeyPairDetailTab::key_size_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a63e054f4a2d8e12c70d25d39bb55f876',1,'GpgFrontend::UI::KeyPairSubkeyTab::key_size_var_label_()']]],
- ['key_5ftool_5fbar_5f_1766',['key_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a38f243880cfb9276545b08f0730811e7',1,'GpgFrontend::UI::MainWindow']]],
- ['key_5ftype_5fcombo_5fbox_5f_1767',['key_type_combo_box_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a281bfffd99fcb600d07c4604bf2a8841',1,'GpgFrontend::UI::KeyGenDialog::key_type_combo_box_()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#ac515dabcf6c094c5eeb2bf88aa3aa9d3',1,'GpgFrontend::UI::SubkeyGenerateDialog::key_type_combo_box_()']]],
- ['key_5fusage_5fcheck_5fboxes_5f_1768',['key_usage_check_boxes_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ab0ccac068670a3e28ce78ff87a40b2fc',1,'GpgFrontend::UI::KeyGenDialog::key_usage_check_boxes_()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a5d67b8ed68062ef127ad92986a98e95a',1,'GpgFrontend::UI::SubkeyGenerateDialog::key_usage_check_boxes_()']]],
- ['key_5fusage_5fgroup_5fbox_5f_1769',['key_usage_group_box_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7b1b9cb46c0547c1e561e56d55616cf1',1,'GpgFrontend::UI::KeyGenDialog']]],
- ['keys_5fcache_5fmutex_5f_1770',['keys_cache_mutex_',['../classGpgFrontend_1_1GpgKeyGetter_1_1Impl.html#abc3cc405bb9a90ed5cd017bf7b8bc55d',1,'GpgFrontend::GpgKeyGetter::Impl']]],
- ['keys_5fsearch_5fcache_5f_1771',['keys_search_cache_',['../classGpgFrontend_1_1GpgKeyGetter_1_1Impl.html#a5eabfecd9ecaba8d940621183ddad308',1,'GpgFrontend::GpgKeyGetter::Impl']]],
- ['krestartcode_1772',['kRestartCode',['../namespaceGpgFrontend.html#a2e3fbfe1404b1f9d140d4177fd93e449',1,'GpgFrontend']]]
+ ['key_5fbox_5f_1761',['key_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aae9905764b5551208574a932fdfba29c',1,'GpgFrontend::UI::KeyPairDetailTab']]],
+ ['key_5fid_5fvar_5flabel_5f_1762',['key_id_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a10bc48799137d4c104975ca21c684985',1,'GpgFrontend::UI::KeyPairDetailTab::key_id_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a2f634f4c83ab5dd2d088eb07e0d3b862',1,'GpgFrontend::UI::KeyPairSubkeyTab::key_id_var_label_()']]],
+ ['key_5flist_5fdock_5f_1763',['key_list_dock_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adaa66d9cdc51c946efc99bb94deda31c',1,'GpgFrontend::UI::MainWindow']]],
+ ['key_5fmenu_5f_1764',['key_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a16bbfd12cd3a6f0df9e2c32cf7999e57',1,'GpgFrontend::UI::MainWindow']]],
+ ['key_5fsize_5fspin_5fbox_5f_1765',['key_size_spin_box_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#aaa9b55830c39ce854e4ede26d916a844',1,'GpgFrontend::UI::KeyGenDialog::key_size_spin_box_()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aa91db742b41d352ba9f88620d649afb3',1,'GpgFrontend::UI::SubkeyGenerateDialog::key_size_spin_box_()']]],
+ ['key_5fsize_5fvar_5flabel_5f_1766',['key_size_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a1485e603de56152f45d96e0ce5c50d9b',1,'GpgFrontend::UI::KeyPairDetailTab::key_size_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a63e054f4a2d8e12c70d25d39bb55f876',1,'GpgFrontend::UI::KeyPairSubkeyTab::key_size_var_label_()']]],
+ ['key_5ftool_5fbar_5f_1767',['key_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a38f243880cfb9276545b08f0730811e7',1,'GpgFrontend::UI::MainWindow']]],
+ ['key_5ftype_5fcombo_5fbox_5f_1768',['key_type_combo_box_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a281bfffd99fcb600d07c4604bf2a8841',1,'GpgFrontend::UI::KeyGenDialog::key_type_combo_box_()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#ac515dabcf6c094c5eeb2bf88aa3aa9d3',1,'GpgFrontend::UI::SubkeyGenerateDialog::key_type_combo_box_()']]],
+ ['key_5fusage_5fcheck_5fboxes_5f_1769',['key_usage_check_boxes_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ab0ccac068670a3e28ce78ff87a40b2fc',1,'GpgFrontend::UI::KeyGenDialog::key_usage_check_boxes_()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a5d67b8ed68062ef127ad92986a98e95a',1,'GpgFrontend::UI::SubkeyGenerateDialog::key_usage_check_boxes_()']]],
+ ['key_5fusage_5fgroup_5fbox_5f_1770',['key_usage_group_box_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7b1b9cb46c0547c1e561e56d55616cf1',1,'GpgFrontend::UI::KeyGenDialog']]],
+ ['keys_5fcache_5fmutex_5f_1771',['keys_cache_mutex_',['../classGpgFrontend_1_1GpgKeyGetter_1_1Impl.html#abc3cc405bb9a90ed5cd017bf7b8bc55d',1,'GpgFrontend::GpgKeyGetter::Impl']]],
+ ['keys_5fsearch_5fcache_5f_1772',['keys_search_cache_',['../classGpgFrontend_1_1GpgKeyGetter_1_1Impl.html#a5eabfecd9ecaba8d940621183ddad308',1,'GpgFrontend::GpgKeyGetter::Impl']]],
+ ['krestartcode_1773',['kRestartCode',['../namespaceGpgFrontend.html#a2e3fbfe1404b1f9d140d4177fd93e449',1,'GpgFrontend']]]
];
diff --git a/docs/html/search/variables_a.js b/docs/html/search/variables_a.js
index 074ef029..4768d1ea 100644
--- a/docs/html/search/variables_a.js
+++ b/docs/html/search/variables_a.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['latest_5freply_5f_1773',['latest_reply_',['../classVersionCheckTask.html#aab56c5f5c571c3961073320136c2c22a',1,'VersionCheckTask']]]
+ ['latest_5freply_5f_1774',['latest_reply_',['../classVersionCheckTask.html#aab56c5f5c571c3961073320136c2c22a',1,'VersionCheckTask']]]
];
diff --git a/docs/html/search/variables_b.js b/docs/html/search/variables_b.js
index 9fcf51dc..3dc0a2b4 100644
--- a/docs/html/search/variables_b.js
+++ b/docs/html/search/variables_b.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['m_5ftext_5fpage_5f_1774',['m_text_page_',['../classGpgFrontend_1_1UI_1_1FindWidget.html#a11f9d0f07b704539ad1df15a5c15dca9',1,'GpgFrontend::UI::FindWidget::m_text_page_()'],['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a6380776ea1bf9a020370589e1e20efd3',1,'GpgFrontend::UI::InfoBoardWidget::m_text_page_()']]],
- ['mt_5f_1775',['mt_',['../classGpgFrontend_1_1PassphraseGenerator.html#a19ac4999bbd5fb7e6c42a4aef9606892',1,'GpgFrontend::PassphraseGenerator']]]
+ ['m_5ftext_5fpage_5f_1775',['m_text_page_',['../classGpgFrontend_1_1UI_1_1FindWidget.html#a11f9d0f07b704539ad1df15a5c15dca9',1,'GpgFrontend::UI::FindWidget::m_text_page_()'],['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a6380776ea1bf9a020370589e1e20efd3',1,'GpgFrontend::UI::InfoBoardWidget::m_text_page_()']]],
+ ['mt_5f_1776',['mt_',['../classGpgFrontend_1_1PassphraseGenerator.html#a19ac4999bbd5fb7e6c42a4aef9606892',1,'GpgFrontend::PassphraseGenerator']]]
];
diff --git a/docs/html/search/variables_c.js b/docs/html/search/variables_c.js
index f8da3bfe..4af82ebb 100644
--- a/docs/html/search/variables_c.js
+++ b/docs/html/search/variables_c.js
@@ -1,7 +1,7 @@
var searchData=
[
- ['name_5fedit_5f_1776',['name_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7ed095cce29c658741ae0520049010c0',1,'GpgFrontend::UI::KeyGenDialog']]],
- ['name_5fvar_5flabel_5f_1777',['name_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a9d57be18c2091827c04ec8809f4154be',1,'GpgFrontend::UI::KeyPairDetailTab']]],
- ['new_5ftab_5fact_5f_1778',['new_tab_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a472500fec64442b114e9ce9faf4b6a73',1,'GpgFrontend::UI::MainWindow']]],
- ['no_5fpass_5fphrase_5fcheck_5fbox_5f_1779',['no_pass_phrase_check_box_',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a001803152c0e5bd9de7c7dd04cef8ad4',1,'GpgFrontend::UI::SubkeyGenerateDialog']]]
+ ['name_5fedit_5f_1777',['name_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7ed095cce29c658741ae0520049010c0',1,'GpgFrontend::UI::KeyGenDialog']]],
+ ['name_5fvar_5flabel_5f_1778',['name_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a9d57be18c2091827c04ec8809f4154be',1,'GpgFrontend::UI::KeyPairDetailTab']]],
+ ['new_5ftab_5fact_5f_1779',['new_tab_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a472500fec64442b114e9ce9faf4b6a73',1,'GpgFrontend::UI::MainWindow']]],
+ ['no_5fpass_5fphrase_5fcheck_5fbox_5f_1780',['no_pass_phrase_check_box_',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a001803152c0e5bd9de7c7dd04cef8ad4',1,'GpgFrontend::UI::SubkeyGenerateDialog']]]
];
diff --git a/docs/html/search/variables_d.js b/docs/html/search/variables_d.js
index 5713c732..5ebf77fd 100644
--- a/docs/html/search/variables_d.js
+++ b/docs/html/search/variables_d.js
@@ -1,8 +1,8 @@
var searchData=
[
- ['open_5fact_5f_1780',['open_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a4a1edafb8c67b181ff3c29394147571d',1,'GpgFrontend::UI::MainWindow']]],
- ['open_5fkey_5ffile_5fact_5f_1781',['open_key_file_act_',['../classGpgFrontend_1_1UI_1_1KeyMgmt.html#a876e257c8d8bb7e47ceb70e1da4f9da7',1,'GpgFrontend::UI::KeyMgmt']]],
- ['open_5fkey_5fmanagement_5fact_5f_1782',['open_key_management_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad7b22560df7e3bb38b660d3ffc84dc83',1,'GpgFrontend::UI::MainWindow']]],
- ['open_5fsettings_5fact_5f_1783',['open_settings_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#afab1e0363a4b97ff68228cd4bd7cbc62',1,'GpgFrontend::UI::MainWindow']]],
- ['owner_5fbox_5f_1784',['owner_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#ad8c25061351d8e739b70d5466b87410e',1,'GpgFrontend::UI::KeyPairDetailTab']]]
+ ['open_5fact_5f_1781',['open_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a4a1edafb8c67b181ff3c29394147571d',1,'GpgFrontend::UI::MainWindow']]],
+ ['open_5fkey_5ffile_5fact_5f_1782',['open_key_file_act_',['../classGpgFrontend_1_1UI_1_1KeyMgmt.html#a876e257c8d8bb7e47ceb70e1da4f9da7',1,'GpgFrontend::UI::KeyMgmt']]],
+ ['open_5fkey_5fmanagement_5fact_5f_1783',['open_key_management_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad7b22560df7e3bb38b660d3ffc84dc83',1,'GpgFrontend::UI::MainWindow']]],
+ ['open_5fsettings_5fact_5f_1784',['open_settings_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#afab1e0363a4b97ff68228cd4bd7cbc62',1,'GpgFrontend::UI::MainWindow']]],
+ ['owner_5fbox_5f_1785',['owner_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#ad8c25061351d8e739b70d5466b87410e',1,'GpgFrontend::UI::KeyPairDetailTab']]]
];
diff --git a/docs/html/search/variables_e.js b/docs/html/search/variables_e.js
index be20a23c..30473d57 100644
--- a/docs/html/search/variables_e.js
+++ b/docs/html/search/variables_e.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['paste_5fact_5f_1785',['paste_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a62ea61c38e758022ba655c6faf54322b',1,'GpgFrontend::UI::MainWindow']]],
- ['print_5fact_5f_1786',['print_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8f9dd7edba23321a13ed630cdef7fdcc',1,'GpgFrontend::UI::MainWindow']]]
+ ['paste_5fact_5f_1786',['paste_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a62ea61c38e758022ba655c6faf54322b',1,'GpgFrontend::UI::MainWindow']]],
+ ['print_5fact_5f_1787',['print_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8f9dd7edba23321a13ed630cdef7fdcc',1,'GpgFrontend::UI::MainWindow']]]
];
diff --git a/docs/html/search/variables_f.js b/docs/html/search/variables_f.js
index c92f64e4..3abd803d 100644
--- a/docs/html/search/variables_f.js
+++ b/docs/html/search/variables_f.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['quit_5fact_5f_1787',['quit_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#abe0683e48485f9fcff622d9519c37ed9',1,'GpgFrontend::UI::MainWindow']]],
- ['quote_5fact_5f_1788',['quote_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af9640e5732c2595d0c094e7ff7e371ac',1,'GpgFrontend::UI::MainWindow']]]
+ ['quit_5fact_5f_1788',['quit_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#abe0683e48485f9fcff622d9519c37ed9',1,'GpgFrontend::UI::MainWindow']]],
+ ['quote_5fact_5f_1789',['quote_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af9640e5732c2595d0c094e7ff7e371ac',1,'GpgFrontend::UI::MainWindow']]]
];
diff --git a/docs/html/structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo-members.html b/docs/html/structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo-members.html
index 137a9058..dd60fe0c 100644
--- a/docs/html/structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo-members.html
+++ b/docs/html/structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo-members.html
@@ -91,8 +91,9 @@ $(document).ready(function(){initNavTree('structGpgFrontend_1_1Module_1_1GlobalM
diff --git a/docs/html/structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo.html b/docs/html/structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo.html
index 6d0381bb..c3e9b2cc 100644
--- a/docs/html/structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo.html
+++ b/docs/html/structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo.html
@@ -94,7 +94,7 @@ Collaboration diagram for GpgFrontend::Module::GlobalModuleContext::Impl::Module
-
+
@@ -112,6 +112,9 @@ ModulePtr module | <
bool | activate |
|
+
+bool | integrated |
+ |
QList< QString > | listening_event_ids |
|
diff --git a/docs/html/structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo.js b/docs/html/structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo.js
index 7f8cbbb4..f811ce32 100644
--- a/docs/html/structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo.js
+++ b/docs/html/structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo.js
@@ -2,6 +2,7 @@ var structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegister
[
[ "activate", "structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo.html#ae692d0100b031800a9aebf0f78f2a0ff", null ],
[ "channel", "structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo.html#a64abfeafd07546cf5a37d13cd5b65705", null ],
+ [ "integrated", "structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo.html#a80a0d88392bf9941d90c1b305c99dfb4", null ],
[ "listening_event_ids", "structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo.html#a69cea079791538b5b1587093ddf2801d", null ],
[ "module", "structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo.html#a7ca3f92ba143361962644b548ed21b57", null ]
];
\ No newline at end of file
diff --git a/docs/html/structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo__coll__graph.map b/docs/html/structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo__coll__graph.map
index 272f3f99..ec5d90a5 100644
--- a/docs/html/structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo__coll__graph.map
+++ b/docs/html/structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo__coll__graph.map
@@ -1,5 +1,5 @@
-
+
diff --git a/docs/html/structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo__coll__graph.md5 b/docs/html/structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo__coll__graph.md5
index 905e040e..b8580886 100644
--- a/docs/html/structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo__coll__graph.md5
+++ b/docs/html/structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo__coll__graph.md5
@@ -1 +1 @@
-35279d85268ade16e11c9d286e277a66
\ No newline at end of file
+d76273836572a98e70a008db52eee658
\ No newline at end of file
diff --git a/docs/html/structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo__coll__graph.png b/docs/html/structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo__coll__graph.png
index 9e986407..393e2711 100644
Binary files a/docs/html/structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo__coll__graph.png and b/docs/html/structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo__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 d8632c21..5bda038c 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 065d0eea..cd0369ba 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 9e333c63..699812d1 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 b810aa11..5b00605b 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 b15f9533..c0e05259 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 71f1ef19..34144b24 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 f60aa610..df0c808b 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 f60aa610..df0c808b 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 63a46ce3..da1342f9 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 63a46ce3..da1342f9 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 ced07f78..14bd723f 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.md5 b/docs/latex/classGpgFrontend_1_1ChannelObject__inherit__graph.md5
index d23109ae..f06dca72 100644
--- a/docs/latex/classGpgFrontend_1_1ChannelObject__inherit__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1ChannelObject__inherit__graph.md5
@@ -1 +1 @@
-6a269361fae7968a5ea88890324b559e
\ No newline at end of file
+2b59496f605a75db1ef3a565c77190b0
\ No newline at end of file
diff --git a/docs/latex/classGpgFrontend_1_1ChannelObject__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1ChannelObject__inherit__graph.pdf
index 2677b3ba..095d8abd 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 7888b44f..b3abe19f 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 c5b35e69..e22177f6 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 eca8170d..730908ac 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 d6bb1d49..4d82acc6 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 2736773a..61176dcb 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 53777a16..557cdc21 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 749f6d21..c99c673e 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 66274f37..b7ce009e 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 bcf0669a..f4626696 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 786a0938..ca9e7840 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 11c0a4cb..0f089aec 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 11c0a4cb..0f089aec 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 576ab45a..754af3a0 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 737fad75..9e9a9e33 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 e2fcc43a..df669bb0 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 d258120e..c7fc9711 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 cb2b4b65..362d5044 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 ae721aab..466f2c60 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 ae721aab..466f2c60 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 3ae835d8..f758119f 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 009643eb..d73bce3a 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 cd6195cb..c558f25e 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 1edf70fc..1c698ab3 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 e4b7c607..a4462c02 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 0a8da5f7..ecf49958 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 7700a61a..2b9cd965 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 3d688b18..0ae962db 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 49e5d2dd..4f6e4baf 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 e448b410..4eec8caa 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 b5e47056..266c4601 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 9aa02a4c..bc3c20b7 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 8a03cf6c..b047523a 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 b4feec7b..8bfb6b7b 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 d2386c27..c3f73816 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 d2386c27..c3f73816 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 e14b2a0a..794335df 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 8908eaf3..a173e7d0 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 361fe6af..c93a5d8e 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 13725322..112691b7 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 8e9e38ee..5d1dcbe0 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 bca452ef..c55f3088 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 1ef76436..2fc757ea 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 c3a6937d..5376e1f9 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 c7c43fbd..f45c898d 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 c7c43fbd..f45c898d 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 28141e93..2cac47ac 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 5734d65c..02a74d39 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 b45bed8f..87afb0ff 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 d8e124c3..82c2725b 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 bb93c8ef..5d85adfb 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 818f084e..65fc9718 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 f8240eee..4edf25c6 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 20cd7184..23857e10 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 1efe44d8..bd11b0d9 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 69241b33..a37f9b88 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 04798a91..48454f2d 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 6d0d6c73..33d4719d 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 7758a722..b7b313b4 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 1f05a42f..cb9cb11e 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 5ce14d8e..9dfd17db 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 26fa9b7b..6d8a4186 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 b90f8b58..558598a7 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 80bd7e70..a21f03c1 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 71a1d1a0..724f4147 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 609d19d6..fdab141f 100644
--- a/docs/latex/classGpgFrontend_1_1Module_1_1GlobalModuleContext.tex
+++ b/docs/latex/classGpgFrontend_1_1Module_1_1GlobalModuleContext.tex
@@ -43,8 +43,8 @@ auto {\bfseries Get\+Task\+Runner} (Module\+Identifier) -\/$>$ std\+::optional$<
\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1GlobalModuleContext_a446db76f3518eb46133e14366ff13a05}\label{classGpgFrontend_1_1Module_1_1GlobalModuleContext_a446db76f3518eb46133e14366ff13a05}}
auto {\bfseries Get\+Global\+Task\+Runner} () -\/$>$ std\+::optional$<$ Task\+Runner\+Ptr $>$
\item
-\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1GlobalModuleContext_aaf7c18deea8185834ad9f53f2a5a8579}\label{classGpgFrontend_1_1Module_1_1GlobalModuleContext_aaf7c18deea8185834ad9f53f2a5a8579}}
-auto {\bfseries Register\+Module} (Module\+Ptr) -\/$>$ bool
+\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1GlobalModuleContext_a3834836325dab26902e9d66770ce895f}\label{classGpgFrontend_1_1Module_1_1GlobalModuleContext_a3834836325dab26902e9d66770ce895f}}
+auto {\bfseries Register\+Module} (Module\+Ptr, bool) -\/$>$ bool
\item
\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1GlobalModuleContext_a4de89b6132d184cf94444a94634a38d8}\label{classGpgFrontend_1_1Module_1_1GlobalModuleContext_a4de89b6132d184cf94444a94634a38d8}}
auto {\bfseries Active\+Module} (Module\+Identifier) -\/$>$ bool
@@ -67,6 +67,9 @@ auto {\bfseries Get\+Module\+Listening} (Module\+Identifier) -\/$>$ QList$<$ Eve
\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1GlobalModuleContext_a99414d575c55ac1f61a44f077db06028}\label{classGpgFrontend_1_1Module_1_1GlobalModuleContext_a99414d575c55ac1f61a44f077db06028}}
auto {\bfseries Is\+Module\+Activated} (Module\+Identifier) -\/$>$ bool
\item
+\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1GlobalModuleContext_a683639b9af7cf521bc9ffe4a5fc46cea}\label{classGpgFrontend_1_1Module_1_1GlobalModuleContext_a683639b9af7cf521bc9ffe4a5fc46cea}}
+auto {\bfseries Is\+Integrated\+Module} (Module\+Identifier) -\/$>$ bool
+\item
\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1GlobalModuleContext_a3d26d680dfb5036832852ccab2e31cd2}\label{classGpgFrontend_1_1Module_1_1GlobalModuleContext_a3d26d680dfb5036832852ccab2e31cd2}}
auto {\bfseries List\+All\+Registered\+Module\+ID} () -\/$>$ QList$<$ Module\+Identifier $>$
\end{DoxyCompactItemize}
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 528ec740..0b5810fc 100644
--- a/docs/latex/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.tex
+++ b/docs/latex/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.tex
@@ -33,8 +33,8 @@ auto {\bfseries Get\+Task\+Runner} (Module\+Identifier) -\/$>$ std\+::optional$<
\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_a07a95697a3653f22d5270708ede1f213}\label{classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_a07a95697a3653f22d5270708ede1f213}}
auto {\bfseries Get\+Global\+Task\+Runner} () -\/$>$ std\+::optional$<$ Task\+Runner\+Ptr $>$
\item
-\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_a100b8a083176cbc5788d8af1702fb274}\label{classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_a100b8a083176cbc5788d8af1702fb274}}
-auto {\bfseries Register\+Module} (const Module\+Ptr \&module) -\/$>$ bool
+\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_abc363ae2bc81fbfed0f08315023a2155}\label{classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_abc363ae2bc81fbfed0f08315023a2155}}
+auto {\bfseries Register\+Module} (const Module\+Ptr \&module, bool integrated\+\_\+module) -\/$>$ bool
\item
\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_ac66eb6ed5e8d5742a5d271647bf10f85}\label{classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_ac66eb6ed5e8d5742a5d271647bf10f85}}
auto {\bfseries Active\+Module} (Module\+Identifier module\+\_\+id) -\/$>$ bool
@@ -54,6 +54,9 @@ auto {\bfseries Search\+Event} (const Event\+Trigger\+Identifier \&trigger\+\_\+
\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
\item
+\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_a4b982badccf837f3efe10b1c7e2428b5}\label{classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_a4b982badccf837f3efe10b1c7e2428b5}}
+auto {\bfseries Is\+Integrated\+Module} (Module\+Identifier m\+\_\+id) -\/$>$ bool
+\item
\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_a66c9166ec3af4f15dd3af00e57ced049}\label{classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_a66c9166ec3af4f15dd3af00e57ced049}}
auto {\bfseries List\+All\+Registered\+Module\+ID} () -\/$>$ QList$<$ Module\+Identifier $>$
\item
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 1f88b9a6..b5294a18 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 @@
-22eff1dc0dc5868708de45c68b66baa3
\ No newline at end of file
+97d015e6f572377129924719ab994d14
\ 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 5295bf4f..0dc1d97d 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.md5 b/docs/latex/classGpgFrontend_1_1Module_1_1GlobalModuleContext__coll__graph.md5
index a9705a43..86697548 100644
--- a/docs/latex/classGpgFrontend_1_1Module_1_1GlobalModuleContext__coll__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1Module_1_1GlobalModuleContext__coll__graph.md5
@@ -1 +1 @@
-778bec819a084ff67e4cf61e63abcbb5
\ No newline at end of file
+3c6477943df07bd3da366edc5a5dec14
\ No newline at end of file
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 d2cb0d85..6dfa7f91 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.md5 b/docs/latex/classGpgFrontend_1_1Module_1_1GlobalModuleContext__inherit__graph.md5
index a9705a43..86697548 100644
--- a/docs/latex/classGpgFrontend_1_1Module_1_1GlobalModuleContext__inherit__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1Module_1_1GlobalModuleContext__inherit__graph.md5
@@ -1 +1 @@
-778bec819a084ff67e4cf61e63abcbb5
\ No newline at end of file
+3c6477943df07bd3da366edc5a5dec14
\ No newline at end of file
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 d2cb0d85..6dfa7f91 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 364022dd..1ddec980 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 f5ba117a..f5bc6b28 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 f5ba117a..f5bc6b28 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 89aa921b..fd2da4d6 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 7d420f8a..3b90d122 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 7d420f8a..3b90d122 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_1ModuleManager.tex b/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager.tex
index 7fd45245..0779118a 100644
--- a/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager.tex
+++ b/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager.tex
@@ -31,8 +31,8 @@ class \mbox{\hyperlink{classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl}{Impl
\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1ModuleManager_ad699694b74ada1edd1fcf9d094c92a7d}\label{classGpgFrontend_1_1Module_1_1ModuleManager_ad699694b74ada1edd1fcf9d094c92a7d}}
{\bfseries Module\+Manager} (int channel)
\item
-\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1ModuleManager_acf93ddb27e882708493c0b0d90d5a301}\label{classGpgFrontend_1_1Module_1_1ModuleManager_acf93ddb27e882708493c0b0d90d5a301}}
-auto {\bfseries Load\+Module} (QString) -\/$>$ void
+\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1ModuleManager_aaa8675386da0e23a37f6475ae0b52196}\label{classGpgFrontend_1_1Module_1_1ModuleManager_aaa8675386da0e23a37f6475ae0b52196}}
+auto {\bfseries Load\+Module} (QString, bool) -\/$>$ void
\item
\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1ModuleManager_a708ed5ee3ab6684ddfa3d7ec00703693}\label{classGpgFrontend_1_1Module_1_1ModuleManager_a708ed5ee3ab6684ddfa3d7ec00703693}}
auto {\bfseries Search\+Module} (Module\+Identifier) -\/$>$ Module\+Ptr
@@ -46,6 +46,9 @@ void {\bfseries Register\+Module} (Module\+Ptr)
\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1ModuleManager_a3b1d20608829a48688c53ecb24e6a97b}\label{classGpgFrontend_1_1Module_1_1ModuleManager_a3b1d20608829a48688c53ecb24e6a97b}}
auto {\bfseries Is\+Module\+Activated} (Module\+Identifier) -\/$>$ bool
\item
+\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1ModuleManager_ac041f5f94e2f258dd0220d8e6f245219}\label{classGpgFrontend_1_1Module_1_1ModuleManager_ac041f5f94e2f258dd0220d8e6f245219}}
+auto {\bfseries Is\+Integrated\+Module} (Module\+Identifier) -\/$>$ bool
+\item
\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1ModuleManager_a28535b400738a4601ee836603aa13480}\label{classGpgFrontend_1_1Module_1_1ModuleManager_a28535b400738a4601ee836603aa13480}}
void {\bfseries Listen\+Event} (Module\+Identifier, Event\+Identifier)
\item
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 97ee4e64..770e707a 100644
--- a/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.tex
+++ b/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.tex
@@ -13,8 +13,8 @@ Collaboration diagram for Gpg\+Frontend\+::Module\+::Module\+Manager\+::Impl\+:
\doxysubsection*{Public Member Functions}
\begin{DoxyCompactItemize}
\item
-\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl_a7f19b8046b3d09c0c0ccbbc3121c0b14}\label{classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl_a7f19b8046b3d09c0c0ccbbc3121c0b14}}
-auto {\bfseries Load\+And\+Register\+Module} (const QString \&module\+\_\+library\+\_\+path) -\/$>$ void
+\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl_a4aa0a8ec0bdbbd938da5052dc101be8b}\label{classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl_a4aa0a8ec0bdbbd938da5052dc101be8b}}
+auto {\bfseries Load\+And\+Register\+Module} (const QString \&module\+\_\+library\+\_\+path, bool integrated\+\_\+module) -\/$>$ void
\item
\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl_a752848641e5bac2096d0d40264f59f41}\label{classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl_a752848641e5bac2096d0d40264f59f41}}
auto {\bfseries Search\+Module} (Module\+Identifier module\+\_\+id) -\/$>$ Module\+Ptr
@@ -61,6 +61,9 @@ auto {\bfseries List\+RTChild\+Keys} (const QString \&n, const QString \&k) -\/$
\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl_a9ef4a8e708bc009941303ead198f94be}\label{classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl_a9ef4a8e708bc009941303ead198f94be}}
auto {\bfseries Is\+Module\+Activated} (Module\+Identifier id) -\/$>$ bool
\item
+\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl_a9409a069485e9d928844886a9b5c6597}\label{classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl_a9409a069485e9d928844886a9b5c6597}}
+auto {\bfseries Is\+Integrated\+Module} (Module\+Identifier id) -\/$>$ bool
+\item
\mbox{\Hypertarget{classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl_ac25e0c12e44b13b436560e14ba6d2d00}\label{classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl_ac25e0c12e44b13b436560e14ba6d2d00}}
auto {\bfseries GRT} () -\/$>$ \mbox{\hyperlink{classGpgFrontend_1_1Module_1_1GlobalRegisterTable}{Global\+Register\+Table}} $\ast$
\end{DoxyCompactItemize}
diff --git a/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl__coll__graph.md5
index 1970b2fb..d52ee47a 100644
--- a/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl__coll__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl__coll__graph.md5
@@ -1 +1 @@
-7436b466b3dbb256d2c7d0055fd15741
\ No newline at end of file
+2cd39867c5de78be94c9e1e0a18c3b39
\ No newline at end of file
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 e3a66e66..f31a0bca 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.md5 b/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager__coll__graph.md5
index 2708443c..cfde8b33 100644
--- a/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager__coll__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager__coll__graph.md5
@@ -1 +1 @@
-b7115c9bf36d4a59943b169c9dd8c02e
\ No newline at end of file
+296090d09f576793ac1a1a3d16e0b4e7
\ No newline at end of file
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 beb1b810..7acd1dab 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.md5 b/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager__inherit__graph.md5
index 2708443c..cfde8b33 100644
--- a/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager__inherit__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager__inherit__graph.md5
@@ -1 +1 @@
-b7115c9bf36d4a59943b169c9dd8c02e
\ No newline at end of file
+296090d09f576793ac1a1a3d16e0b4e7
\ No newline at end of file
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 beb1b810..7acd1dab 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__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1Module_1_1Module_1_1Impl__coll__graph.md5
index 315766ed..cba42c95 100644
--- a/docs/latex/classGpgFrontend_1_1Module_1_1Module_1_1Impl__coll__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1Module_1_1Module_1_1Impl__coll__graph.md5
@@ -1 +1 @@
-99b334a9697d124f0d377358989faae5
\ No newline at end of file
+979b44f4019693d6332a32925a1d2057
\ No newline at end of file
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 d6f26c72..91240c55 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 b9016a66..3cb4cd95 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 b9016a66..3cb4cd95 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 6ff7df60..84dda9eb 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 6ff7df60..84dda9eb 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 406a3321..5ba6ebe5 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 df693778..61712763 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 e1be2d83..0fe0d922 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 e1be2d83..0fe0d922 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 8b66133b..47651c6a 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.md5 b/docs/latex/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.md5
index b5bc2e17..2240735a 100644
--- a/docs/latex/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.md5
@@ -1 +1 @@
-b5e7e553bc4202d4c51c60123e5d77be
\ No newline at end of file
+4c88a6f4689f3dad189f91d8086564f9
\ No newline at end of file
diff --git a/docs/latex/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.pdf
index e9146c64..fb453437 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 2037981a..334ddd6e 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 1aaed63c..86f2bcb9 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 bd04f1fa..9dd7be7a 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 5ddd11ec..706b0621 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 b53e75a8..f5950702 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 b53e75a8..f5950702 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 ab95af54..03e4da77 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 d5370d41..604336bc 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 fb66de26..860b2099 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 79cd13d4..76890794 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 6cd6b354..2004abca 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 6cd6b354..2004abca 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 7f8dbc12..53382170 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 7f8dbc12..53382170 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 af4cf915..f8e07805 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 cbddf057..e8be6a35 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 b3e5e19c..6edba0bd 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 f75b9a69..fec9ef5c 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 6cb4965f..36ebaecb 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 6cb4965f..36ebaecb 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 605dbad2..03b8352b 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 2df4b34f..0a5a672e 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 ebabe88a..dc729608 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 ebabe88a..dc729608 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 983286ff..29def96e 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 64072e31..099daba7 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 b619d00e..8697d98c 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 b619d00e..8697d98c 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 8883dbeb..a35f005c 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 d5341c42..12226a1f 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 87e177ec..24e62e0a 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 30789221..949dac7e 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 66ffe0fd..1141adf4 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 66ffe0fd..1141adf4 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 78360931..323ae08e 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 78360931..323ae08e 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 9c90c4b0..6e3fb24e 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 4d7a44f8..28a3ceec 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 6e9a963b..dc8a242b 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 6e9a963b..dc8a242b 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 561ea294..bbd109d3 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 25d195fd..f09299a1 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 cd7c3b42..fd93695e 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 cf169ef2..17eae7b2 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 264292af..95151d20 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 074825cf..60ea02dd 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 0cc9c07d..dfa62a09 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 026887fc..41d6015f 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 026887fc..41d6015f 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 2c92ebb0..d6a41c6e 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 6c4f4944..f35184ce 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 a6bec5fa..9845cc10 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 2bc4dd76..d1d2dd1a 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 8eeceda9..edc4cc60 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 8eeceda9..edc4cc60 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 352bbe59..9c1d1841 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 352bbe59..9c1d1841 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 93d737db..870208be 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 b24b78f8..ca2c6108 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 98e7f9aa..56d52211 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 98e7f9aa..56d52211 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 b38b5bf5..1727dae9 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 b38b5bf5..1727dae9 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 31e97fa7..ac5610cd 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 31e97fa7..ac5610cd 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 a9594497..dd5d29a3 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 ae3c9f1f..7b8f69ed 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 e8701f0b..23406296 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 e8701f0b..23406296 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 6d3c4873..b429541e 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 0e4d1a91..cf29c072 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 f6bda390..547256da 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 a720f97a..86b0d5af 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 ba861548..593ca7f8 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 e1077f01..8622b6e9 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 87d7950b..3b1667b4 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 949be188..034ea967 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 cadbf36f..aaa8e0e2 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 8cd3fdcb..1ae06409 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 cb26b5bb..b0d0e087 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 87a8355f..3b392b9b 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 1de53baf..4e820c89 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 f85b9bb9..c397298e 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 62a572c8..691f3a11 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 0b2555d7..19ebcef8 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 6abaa5f2..881ed814 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 6abaa5f2..881ed814 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 8e8aae55..3c3e1ace 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 532c4c15..fd8e71f1 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 279b3133..b1182e5c 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 279b3133..b1182e5c 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 4b07ba02..590b0d04 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 3ee09027..c4d76c27 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 46901352..146c7f79 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 8d20d793..a11c954a 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 9088be1e..9d568a02 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 08f4f6be..55162393 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 2c41c86d..687a23cb 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 74ac74d1..9c4ecd25 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 68b159fb..239052c3 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 67974fee..a138ad08 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 d8343345..8987c200 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 ddd38c04..b2a4d0bb 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.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1ModuleControllerDialog__coll__graph.md5
index 6d641b82..0927eaa6 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1ModuleControllerDialog__coll__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1ModuleControllerDialog__coll__graph.md5
@@ -1 +1 @@
-257b85520f0195ae0a5e475ffb00119b
\ No newline at end of file
+82f810ee4a0dbed0ff608899351eb1d9
\ No newline at end of file
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 876c7ee9..bfb06a86 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 c613401c..04773b55 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 25471a23..ad8db66a 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 25471a23..ad8db66a 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 6eaa63e1..6abcc2f2 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 868a4679..5105c1e5 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 3de0003a..7723469b 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 2060f831..a20e3b8c 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 fedcb2fd..816e653f 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 fedcb2fd..816e653f 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 7e058344..27dbcd13 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 7e058344..27dbcd13 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 67ce5118..dc2ca27e 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 67ce5118..dc2ca27e 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 44feadde..b0556afc 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 44feadde..b0556afc 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 bd16a51e..8b48c90f 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 a9a9f7b7..ab3f061f 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 0acf9f47..5f349b86 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 3a1ef981..0cc796d3 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 3d6a13a0..db319359 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 6be3f76f..ea2b2b1a 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 d89a4b16..2e9b3423 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 d89a4b16..2e9b3423 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 9680dbd9..238722f1 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 9680dbd9..238722f1 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 f4504faa..43493815 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 f4504faa..43493815 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 d2d23fcc..fd1cd9eb 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 f270f351..83a8aea0 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 d27ce264..100b842b 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 d27ce264..100b842b 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 dd3a02a2..9f446104 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 35ac5850..fdd33a6d 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 c1c6661f..e0862339 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 c1c6661f..e0862339 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 c7057d75..a500a6f9 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 c7057d75..a500a6f9 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 97a2e0e3..9e3db6a8 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 97a2e0e3..9e3db6a8 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 5bccdf55..7924d798 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 f2c3ebd5..ad0bfb05 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 3be1e5b9..402c4ca7 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 ae95d911..465b7b88 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 858bffba..196c069f 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 9f7b081f..573cc7b2 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 dc4e7bce..cb85834b 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 dc4e7bce..cb85834b 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 45bf1d2e..a7946be7 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 45bf1d2e..a7946be7 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 6508e88b..ad9f74f6 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 f53db30f..dd91059e 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 689e0898..b96a4a8a 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 eb7f269f..52c7af59 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 83707ac5..9ed6483c 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 8b0bb391..d64e275b 100644
--- a/docs/latex/namespaceGpgFrontend_1_1Module.tex
+++ b/docs/latex/namespaceGpgFrontend_1_1Module.tex
@@ -74,8 +74,8 @@ using {\bfseries Module\+Manger\+Ptr} = std\+::shared\+\_\+ptr$<$ \mbox{\hyperli
\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
\item
-\mbox{\Hypertarget{namespaceGpgFrontend_1_1Module_a6b079a63ef733db932c99757895a5bdb}\label{namespaceGpgFrontend_1_1Module_a6b079a63ef733db932c99757895a5bdb}}
-void {\bfseries Load\+Module\+From\+Path} (const QString \&mods\+\_\+path)
+\mbox{\Hypertarget{namespaceGpgFrontend_1_1Module_abed70603b6806aca6d2db12a2448e1e3}\label{namespaceGpgFrontend_1_1Module_abed70603b6806aca6d2db12a2448e1e3}}
+void {\bfseries Load\+Module\+From\+Path} (const QString \&mods\+\_\+path, bool integrated)
\item
\mbox{\Hypertarget{namespaceGpgFrontend_1_1Module_a671a34cf78c3b30c9148383885a767ff}\label{namespaceGpgFrontend_1_1Module_a671a34cf78c3b30c9148383885a767ff}}
auto {\bfseries Load\+Integrated\+Mods} () -\/$>$ bool
diff --git a/docs/latex/structFunctionObjectTypeLockInfo__coll__graph.pdf b/docs/latex/structFunctionObjectTypeLockInfo__coll__graph.pdf
index 7d67abfd..d0c9e0c9 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 40618855..4c14bd71 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 9d6b1aea..542429d5 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 fd80a4fb..fd1c1c47 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 bd6367b2..f7eb9f8e 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 3f7cc042..f2dcef04 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 1a877216..8a0324a3 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 e2a5c10b..fe1f1fd9 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 b5837abf..0f76c6e9 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 a71fca98..debaf3c7 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 16bc8db2..b53a32d0 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 23923ba7..f8039f79 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 b42a7974..a7aecae8 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 578cde42..9a73c289 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__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1ModuleSO__coll__graph.pdf
index b2f84848..4be22693 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 02f0aa88..c111ab16 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.tex b/docs/latex/structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo.tex
index 9b248eee..c794c5f5 100644
--- a/docs/latex/structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo.tex
+++ b/docs/latex/structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo.tex
@@ -22,6 +22,9 @@ Module\+Ptr {\bfseries module}
\mbox{\Hypertarget{structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo_ae692d0100b031800a9aebf0f78f2a0ff}\label{structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo_ae692d0100b031800a9aebf0f78f2a0ff}}
bool {\bfseries activate}
\item
+\mbox{\Hypertarget{structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo_a80a0d88392bf9941d90c1b305c99dfb4}\label{structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo_a80a0d88392bf9941d90c1b305c99dfb4}}
+bool {\bfseries integrated}
+\item
\mbox{\Hypertarget{structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo_a69cea079791538b5b1587093ddf2801d}\label{structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo_a69cea079791538b5b1587093ddf2801d}}
QList$<$ QString $>$ {\bfseries listening\+\_\+event\+\_\+ids}
\end{DoxyCompactItemize}
diff --git a/docs/latex/structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo__coll__graph.md5 b/docs/latex/structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo__coll__graph.md5
index 75f7b9e2..cf56eaf5 100644
--- a/docs/latex/structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo__coll__graph.md5
+++ b/docs/latex/structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo__coll__graph.md5
@@ -1 +1 @@
-73ff5f1e30ab8006a4a8ce0e44f47dda
\ No newline at end of file
+6e7b7975fa0381a28c135ce024b3159a
\ No newline at end of file
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 0fbf79c0..24169fd9 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 6cc83a7a..f086a9c3 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 6c9de525..63570cf9 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 0a769c58..d47c86cf 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 d2acf2cf..cd847df0 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 162a14b6..b224a3cc 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 058d40fa..d1b73a6e 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 fc2a77ef..c41402db 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 b345864a..a125b879 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 a3d50a11..236926d6 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 8a274021..5556c464 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 b0f7691c..2319b7e7 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 4bf2e1a1..cdc11821 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 47876310..ea3cee27 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 b0daeb5f..3751adcc 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 6deedffc..40804029 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 9d8f3561..28e7cdb9 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 c3362119..16a36d63 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 716a2010..6ea5651d 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 2658334c..35fd09c2 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 112feaa8..895f5afd 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 1325e54b..7d14d36f 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 9f2e3973..eabd330e 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