diff --git a/docs/html/Event_8h_source.html b/docs/html/Event_8h_source.html index 77e24e06..ef77c511 100644 --- a/docs/html/Event_8h_source.html +++ b/docs/html/Event_8h_source.html @@ -101,7 +101,7 @@ $(document).ready(function(){initNavTree('Event_8h_source.html',''); initResizab
40 
41 class Event;
42 
-
43 using EventRefrernce = std::shared_ptr<Event>;
+
43 using EventReference = std::shared_ptr<Event>;
44 using EventIdentifier = QString;
45 using EventTriggerIdentifier = QString;
46 using Evnets = std::vector<Event>;
@@ -153,7 +153,7 @@ $(document).ready(function(){initNavTree('Event_8h_source.html',''); initResizab
92 
93 template <typename... Args>
94 auto MakeEvent(const EventIdentifier& event_id, Args&&... args,
-
95  Event::EventCallback e_cb) -> EventRefrernce {
+
95  Event::EventCallback e_cb) -> EventReference {
96  std::initializer_list<Event::ParameterInitializer> params = {
97  Event::ParameterInitializer{std::forward<Args>(args)}...};
98  return GpgFrontend::SecureCreateSharedObject<Event>(event_id, params, e_cb);
diff --git a/docs/html/GlobalModuleContext_8h_source.html b/docs/html/GlobalModuleContext_8h_source.html index 47bb431c..41e8c480 100644 --- a/docs/html/GlobalModuleContext_8h_source.html +++ b/docs/html/GlobalModuleContext_8h_source.html @@ -139,9 +139,9 @@ $(document).ready(function(){initNavTree('GlobalModuleContext_8h_source.html',''
78 
79  auto ListenEvent(ModuleIdentifier, EventIdentifier) -> bool;
80 
-
81  auto TriggerEvent(EventRefrernce) -> bool;
+
81  auto TriggerEvent(EventReference) -> bool;
82 
-
83  auto SearchEvent(EventTriggerIdentifier) -> std::optional<EventRefrernce>;
+
83  auto SearchEvent(EventTriggerIdentifier) -> std::optional<EventReference>;
84 
85  auto GetModuleListening(ModuleIdentifier) -> QList<EventIdentifier>;
86 
diff --git a/docs/html/ModuleManager_8h_source.html b/docs/html/ModuleManager_8h_source.html index 7be6ad2b..1e7719b9 100644 --- a/docs/html/ModuleManager_8h_source.html +++ b/docs/html/ModuleManager_8h_source.html @@ -111,7 +111,7 @@ $(document).ready(function(){initNavTree('ModuleManager_8h_source.html',''); ini
50 class ModuleManager;
51 class GlobalRegisterTable;
52 
-
53 using EventRefrernce = std::shared_ptr<Event>;
+
53 using EventReference = std::shared_ptr<Event>;
54 using ModuleIdentifier = QString;
55 using ModulePtr = std::shared_ptr<Module>;
56 using ModuleMangerPtr = std::shared_ptr<ModuleManager>;
@@ -141,9 +141,9 @@ $(document).ready(function(){initNavTree('ModuleManager_8h_source.html',''); ini
80 
81  void ListenEvent(ModuleIdentifier, EventIdentifier);
82 
-
83  void TriggerEvent(EventRefrernce);
+
83  void TriggerEvent(EventReference);
84 
-
85  auto SearchEvent(EventTriggerIdentifier) -> std::optional<EventRefrernce>;
+
85  auto SearchEvent(EventTriggerIdentifier) -> std::optional<EventReference>;
86 
87  auto GetModuleListening(ModuleIdentifier) -> QList<EventIdentifier>;
88 
@@ -228,16 +228,16 @@ $(document).ready(function(){initNavTree('ModuleManager_8h_source.html',''); ini
195 
196 } // namespace GpgFrontend::Module
GpgFrontend::Module::GlobalRegisterTable
Definition: GlobalRegisterTable.h:43
-
GpgFrontend::Module::ModuleManager::Impl
Definition: ModuleManager.cpp:48
+
GpgFrontend::Module::ModuleManager::Impl
Definition: ModuleManager.cpp:47
GpgFrontend::Module::ModuleManager
Definition: ModuleManager.h:63
GpgFrontend::SingletonFunctionObject
Definition: GpgFunctionObject.h:57
GpgFrontend::SingletonFunctionObject< ModuleManager >::GetInstance
static auto GetInstance(int channel=GpgFrontend::kGpgFrontendDefaultChannel) -> ModuleManager &
Get the Instance object.
Definition: GpgFunctionObject.h:79
GpgFrontend::Thread::TaskRunner
Definition: TaskRunner.h:37
GpgFrontend::Module
Definition: Event.cpp:33
-
GpgFrontend::Module::UpsertRTValue
auto UpsertRTValue(const QString &namespace_, const QString &key, const std::any &value) -> bool
Definition: ModuleManager.cpp:235
-
GpgFrontend::Module::ListRTChildKeys
auto ListRTChildKeys(const QString &namespace_, const QString &key) -> std::vector< Key >
Definition: ModuleManager.cpp:246
-
GpgFrontend::Module::IsModuleActivate
auto IsModuleActivate(ModuleIdentifier id) -> bool
Definition: ModuleManager.cpp:231
-
GpgFrontend::Module::ListenRTPublishEvent
auto ListenRTPublishEvent(QObject *o, Namespace n, Key k, LPCallback c) -> bool
Definition: ModuleManager.cpp:241
+
GpgFrontend::Module::UpsertRTValue
auto UpsertRTValue(const QString &namespace_, const QString &key, const std::any &value) -> bool
Definition: ModuleManager.cpp:228
+
GpgFrontend::Module::ListRTChildKeys
auto ListRTChildKeys(const QString &namespace_, const QString &key) -> std::vector< Key >
Definition: ModuleManager.cpp:239
+
GpgFrontend::Module::IsModuleActivate
auto IsModuleActivate(ModuleIdentifier id) -> bool
Definition: ModuleManager.cpp:224
+
GpgFrontend::Module::ListenRTPublishEvent
auto ListenRTPublishEvent(QObject *o, Namespace n, Key k, LPCallback c) -> bool
Definition: ModuleManager.cpp:234
GpgFrontend::Thread
Definition: ModuleManager.h:39
diff --git a/docs/html/ModuleSO_8h_source.html b/docs/html/ModuleSO_8h_source.html index c2e76878..7d01def9 100644 --- a/docs/html/ModuleSO_8h_source.html +++ b/docs/html/ModuleSO_8h_source.html @@ -96,37 +96,43 @@ $(document).ready(function(){initNavTree('ModuleSO_8h_source.html',''); initResi
35  QString module_version;
36  QString module_hash;
37  bool auto_activate;
-
38 
-
39  ModuleSO() = default;
-
40 
-
41  explicit ModuleSO(const QJsonObject& j) {
-
42  if (const auto v = j["module_id"]; v.isString()) {
-
43  module_id = v.toString();
-
44  }
-
45 
-
46  if (const auto v = j["module_version"]; v.isString()) {
-
47  module_version = v.toString();
-
48  }
-
49 
-
50  if (const auto v = j["module_hash"]; v.isString()) {
-
51  module_hash = v.toString();
-
52  }
-
53 
-
54  if (const auto v = j["auto_activate"]; v.isBool()) {
-
55  auto_activate = v.toBool();
-
56  }
-
57  }
+
38  bool set_by_user;
+
39 
+
40  ModuleSO() = default;
+
41 
+
42  explicit ModuleSO(const QJsonObject& j) {
+
43  if (const auto v = j["module_id"]; v.isString()) {
+
44  module_id = v.toString();
+
45  }
+
46 
+
47  if (const auto v = j["module_version"]; v.isString()) {
+
48  module_version = v.toString();
+
49  }
+
50 
+
51  if (const auto v = j["module_hash"]; v.isString()) {
+
52  module_hash = v.toString();
+
53  }
+
54 
+
55  if (const auto v = j["auto_activate"]; v.isBool()) {
+
56  auto_activate = v.toBool();
+
57  }
58 
-
59  [[nodiscard]] auto ToJson() const -> QJsonObject {
-
60  QJsonObject j;
-
61  j["module_id"] = module_id;
-
62  j["module_version"] = module_version;
-
63  j["module_hash"] = module_hash;
-
64  j["auto_activate"] = auto_activate;
-
65  return j;
-
66  }
-
67 };
-
68 } // namespace GpgFrontend
+
59  if (const auto v = j["set_by_user"]; v.isBool()) {
+
60  set_by_user = v.toBool();
+
61  }
+
62  }
+
63 
+
64  [[nodiscard]] auto ToJson() const -> QJsonObject {
+
65  QJsonObject j;
+
66  j["module_id"] = module_id;
+
67  j["module_version"] = module_version;
+
68  j["module_hash"] = module_hash;
+
69  j["auto_activate"] = auto_activate;
+
70  j["set_by_user"] = set_by_user;
+
71  return j;
+
72  }
+
73 };
+
74 } // namespace GpgFrontend
GpgFrontend
Definition: app.cpp:39
GpgFrontend::ModuleSO
Definition: ModuleSO.h:33
diff --git a/docs/html/Module_8h_source.html b/docs/html/Module_8h_source.html index 66228f1e..d41f48de 100644 --- a/docs/html/Module_8h_source.html +++ b/docs/html/Module_8h_source.html @@ -120,7 +120,7 @@ $(document).ready(function(){initNavTree('Module_8h_source.html',''); initResiza
59 
60  virtual auto Active() -> int;
61 
-
62  virtual auto Exec(EventRefrernce) -> int;
+
62  virtual auto Exec(EventReference) -> int;
63 
64  virtual auto Deactive() -> int;
65 
diff --git a/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext-members.html b/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext-members.html index d50b10bd..3b3dc293 100644 --- a/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext-members.html +++ b/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext-members.html @@ -104,9 +104,9 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1Module_1_1GlobalMo ListenEvent(ModuleIdentifier, EventIdentifier) -> bool (defined in GpgFrontend::Module::GlobalModuleContext)GpgFrontend::Module::GlobalModuleContext p_ (defined in GpgFrontend::Module::GlobalModuleContext)GpgFrontend::Module::GlobalModuleContextprivate RegisterModule(ModulePtr, bool) -> bool (defined in GpgFrontend::Module::GlobalModuleContext)GpgFrontend::Module::GlobalModuleContext - SearchEvent(EventTriggerIdentifier) -> std::optional< EventRefrernce > (defined in GpgFrontend::Module::GlobalModuleContext)GpgFrontend::Module::GlobalModuleContext + SearchEvent(EventTriggerIdentifier) -> std::optional< EventReference > (defined in GpgFrontend::Module::GlobalModuleContext)GpgFrontend::Module::GlobalModuleContext SearchModule(ModuleIdentifier) -> ModulePtr (defined in GpgFrontend::Module::GlobalModuleContext)GpgFrontend::Module::GlobalModuleContext - TriggerEvent(EventRefrernce) -> bool (defined in GpgFrontend::Module::GlobalModuleContext)GpgFrontend::Module::GlobalModuleContext + TriggerEvent(EventReference) -> bool (defined in GpgFrontend::Module::GlobalModuleContext)GpgFrontend::Module::GlobalModuleContext ~GlobalModuleContext() override (defined in GpgFrontend::Module::GlobalModuleContext)GpgFrontend::Module::GlobalModuleContext diff --git a/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext.html b/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext.html index a43bba0e..2cc7f90c 100644 --- a/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext.html +++ b/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext.html @@ -145,12 +145,12 @@ auto DeactivateModule auto ListenEvent (ModuleIdentifier, EventIdentifier) -> bool   - -auto TriggerEvent (EventRefrernce) -> bool -  - -auto SearchEvent (EventTriggerIdentifier) -> std::optional< EventRefrernce > -  + +auto TriggerEvent (EventReference) -> bool +  + +auto SearchEvent (EventTriggerIdentifier) -> std::optional< EventReference > +  auto GetModuleListening (ModuleIdentifier) -> QList< EventIdentifier >   diff --git a/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext.js b/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext.js index fd226271..077e2518 100644 --- a/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext.js +++ b/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext.js @@ -16,8 +16,8 @@ var classGpgFrontend_1_1Module_1_1GlobalModuleContext = [ "ListAllRegisteredModuleID", "classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#a3d26d680dfb5036832852ccab2e31cd2", null ], [ "ListenEvent", "classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#a1f4335cab295542f49b78a8e15b6f456", null ], [ "RegisterModule", "classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#a3834836325dab26902e9d66770ce895f", null ], - [ "SearchEvent", "classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#aa11772c7ecb3fdc8545a67ceb8c6369b", null ], + [ "SearchEvent", "classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#a4c1d56338f4b4a8d594c4ecc8aac420d", null ], [ "SearchModule", "classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#ac488a3f4e3cbd668fd9ce84b39078cbb", null ], - [ "TriggerEvent", "classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#aa656d6d835b2ccb20494ff580a7cafac", null ], + [ "TriggerEvent", "classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#ad9c9b7ffc770046ff1e6486ef1fc4415", null ], [ "p_", "classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#a2e109678b81d92569b442aba617d86fe", null ] ]; \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl-members.html b/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl-members.html index 53f464e5..a1a207b2 100644 --- a/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl-members.html +++ b/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl-members.html @@ -111,9 +111,9 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1Module_1_1GlobalMo ModuleRegisterInfoPtr typedef (defined in GpgFrontend::Module::GlobalModuleContext::Impl)GpgFrontend::Module::GlobalModuleContext::Implprivate RegisterModule(const ModulePtr &module, bool integrated_module) -> bool (defined in GpgFrontend::Module::GlobalModuleContext::Impl)GpgFrontend::Module::GlobalModuleContext::Implinline search_module_register_table(const ModuleIdentifier &identifier) const -> std::optional< ModuleRegisterInfoPtr > (defined in GpgFrontend::Module::GlobalModuleContext::Impl)GpgFrontend::Module::GlobalModuleContext::Implinlineprivate - SearchEvent(const EventTriggerIdentifier &trigger_id) -> std::optional< EventRefrernce > (defined in GpgFrontend::Module::GlobalModuleContext::Impl)GpgFrontend::Module::GlobalModuleContext::Implinline + SearchEvent(const EventTriggerIdentifier &trigger_id) -> std::optional< EventReference > (defined in GpgFrontend::Module::GlobalModuleContext::Impl)GpgFrontend::Module::GlobalModuleContext::Implinline SearchModule(ModuleIdentifier module_id) -> ModulePtr (defined in GpgFrontend::Module::GlobalModuleContext::Impl)GpgFrontend::Module::GlobalModuleContext::Implinline - TriggerEvent(const EventRefrernce &event) -> bool (defined in GpgFrontend::Module::GlobalModuleContext::Impl)GpgFrontend::Module::GlobalModuleContext::Implinline + TriggerEvent(const EventReference &event) -> bool (defined in GpgFrontend::Module::GlobalModuleContext::Impl)GpgFrontend::Module::GlobalModuleContext::Implinline diff --git a/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html b/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html index ddd5e9a6..5769ea8a 100644 --- a/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html +++ b/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html @@ -150,12 +150,12 @@ auto ListenEvent (Modu auto DeactivateModule (ModuleIdentifier module_id) -> bool   - -auto TriggerEvent (const EventRefrernce &event) -> bool -  - -auto SearchEvent (const EventTriggerIdentifier &trigger_id) -> std::optional< EventRefrernce > -  + +auto TriggerEvent (const EventReference &event) -> bool +  + +auto SearchEvent (const EventTriggerIdentifier &trigger_id) -> std::optional< EventReference > +  auto IsModuleActivated (const ModuleIdentifier &m_id) const -> bool   @@ -198,9 +198,9 @@ std::unordered_map< ModuleIdentifier, ModuleRegisterInfoPtr >  std::map< EventIdentifier, std::unordered_set< ModuleIdentifier > > module_events_table_   - -std::map< EventTriggerIdentifier, EventRefrernce > module_on_triggering_events_table_ -  + +std::map< EventTriggerIdentifier, EventReference > module_on_triggering_events_table_ std::set< int > acquired_channel_   diff --git a/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.js b/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.js index 22b42a62..58d5e66c 100644 --- a/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.js +++ b/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.js @@ -18,12 +18,12 @@ var classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl = [ "ListenEvent", "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#a4479bbccc6929a1c096f764d9c13c02f", null ], [ "RegisterModule", "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#abc363ae2bc81fbfed0f08315023a2155", null ], [ "search_module_register_table", "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#a11dde09190cfa31bd19efad5dcacf214", null ], - [ "SearchEvent", "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#ab3e05b1a9bf5f03ece0caa1fc8809b50", null ], + [ "SearchEvent", "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#ae3f001188f83e173fd84f89e3973bef2", null ], [ "SearchModule", "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#abba0e51c3af19398cfca723d15b27b58", null ], - [ "TriggerEvent", "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#ac7991d6d2022915212987b7a2d330446", null ], + [ "TriggerEvent", "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#a07acdf211b98d8e917abb19406e9507d", null ], [ "acquired_channel_", "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#acc10c7acd6244ef93e85ffb6c4ad267e", null ], [ "default_task_runner_", "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#ad8285c96435bc2431481828ca943ce49", null ], [ "module_events_table_", "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#aaa6ec2fcc2569cd1b22f419feadaa568", null ], - [ "module_on_triggering_events_table_", "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#a36f9cf218e3cd84658cbd61116d34a96", null ], + [ "module_on_triggering_events_table_", "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#a8b1169966c7200118373bb56d555a89c", null ], [ "module_register_table_", "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#a8e3cd9ab8dc16a2f7431618bfbc09520", null ] ]; \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl__coll__graph.map b/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl__coll__graph.map index 2a6115d3..95cd264b 100644 --- a/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl__coll__graph.map @@ -6,11 +6,11 @@ - - + + - - + + diff --git a/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl__coll__graph.md5 b/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl__coll__graph.md5 index 76440aab..26671f77 100644 --- a/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl__coll__graph.md5 @@ -1 +1 @@ -d155e5fbc134cca6f2736512712c3255 \ No newline at end of file +5a0ca382e6208639961c08a4dc92e594 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl__coll__graph.png b/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl__coll__graph.png index c758110e..bde00020 100644 Binary files a/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl__coll__graph.png and b/docs/html/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1Module_1_1Module-members.html b/docs/html/classGpgFrontend_1_1Module_1_1Module-members.html index c20c8166..95d5a055 100644 --- a/docs/html/classGpgFrontend_1_1Module_1_1Module-members.html +++ b/docs/html/classGpgFrontend_1_1Module_1_1Module-members.html @@ -91,7 +91,7 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1Module_1_1Module.h - + diff --git a/docs/html/classGpgFrontend_1_1Module_1_1Module.html b/docs/html/classGpgFrontend_1_1Module_1_1Module.html index b52de91b..92f49cd6 100644 --- a/docs/html/classGpgFrontend_1_1Module_1_1Module.html +++ b/docs/html/classGpgFrontend_1_1Module_1_1Module.html @@ -133,9 +133,9 @@ virtual auto  - - + + diff --git a/docs/html/classGpgFrontend_1_1Module_1_1Module.js b/docs/html/classGpgFrontend_1_1Module_1_1Module.js index e54942b2..df8c7f36 100644 --- a/docs/html/classGpgFrontend_1_1Module_1_1Module.js +++ b/docs/html/classGpgFrontend_1_1Module_1_1Module.js @@ -6,7 +6,7 @@ var classGpgFrontend_1_1Module_1_1Module = [ "~Module", "classGpgFrontend_1_1Module_1_1Module.html#a9951cd256d16e5117b49131430499ad1", null ], [ "Active", "classGpgFrontend_1_1Module_1_1Module.html#aba8d8690179721ddcbcabac04a72a157", null ], [ "Deactive", "classGpgFrontend_1_1Module_1_1Module.html#a2707656f14bec27c74a3d3f476a82494", null ], - [ "Exec", "classGpgFrontend_1_1Module_1_1Module.html#aaa782445f133f0ad740cdfee687f09a1", null ], + [ "Exec", "classGpgFrontend_1_1Module_1_1Module.html#af0b52299d613acc0c1df7d542b00dccd", null ], [ "getChannel", "classGpgFrontend_1_1Module_1_1Module.html#af4a6decab6e9b05b5c456d62ca588e92", null ], [ "getDefaultChannel", "classGpgFrontend_1_1Module_1_1Module.html#ab16513c547ee594ebb78c8d67ce8b447", null ], [ "GetModuleHash", "classGpgFrontend_1_1Module_1_1Module.html#a63bdf54d462ccf6eaef72211eb38fe7b", null ], diff --git a/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager-members.html b/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager-members.html index c703f48d..65ec0ac6 100644 --- a/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager-members.html +++ b/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager-members.html @@ -116,7 +116,7 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1Module_1_1ModuleMa - + @@ -124,7 +124,7 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1Module_1_1ModuleMa - + diff --git a/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager.html b/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager.html index 34f7329f..14ef00fc 100644 --- a/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager.html +++ b/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager.html @@ -145,12 +145,12 @@ auto  - - - - + + + + diff --git a/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager.js b/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager.js index 43ac3226..b40622cb 100644 --- a/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager.js +++ b/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager.js @@ -17,9 +17,9 @@ var classGpgFrontend_1_1Module_1_1ModuleManager = [ "LoadModule", "classGpgFrontend_1_1Module_1_1ModuleManager.html#aaa8675386da0e23a37f6475ae0b52196", null ], [ "RegisterModule", "classGpgFrontend_1_1Module_1_1ModuleManager.html#a654aceac22bb8f153617181658705771", null ], [ "RetrieveRTValue", "classGpgFrontend_1_1Module_1_1ModuleManager.html#a2834cd112b032ae0e62de81050d1318e", null ], - [ "SearchEvent", "classGpgFrontend_1_1Module_1_1ModuleManager.html#a1a1e0d46101d6f1dd6ca2751cf77577e", null ], + [ "SearchEvent", "classGpgFrontend_1_1Module_1_1ModuleManager.html#afa0844590ddfdc6e44cbea4303f34382", null ], [ "SearchModule", "classGpgFrontend_1_1Module_1_1ModuleManager.html#a708ed5ee3ab6684ddfa3d7ec00703693", null ], - [ "TriggerEvent", "classGpgFrontend_1_1Module_1_1ModuleManager.html#ad802fe563954717b33ab85f5a781c06f", null ], + [ "TriggerEvent", "classGpgFrontend_1_1Module_1_1ModuleManager.html#ae4e4a6c3cd06de7da34b59822d893ecc", null ], [ "UpsertRTValue", "classGpgFrontend_1_1Module_1_1ModuleManager.html#aba272edfb6fd75a403a03a09256b86ba", null ], [ "p_", "classGpgFrontend_1_1Module_1_1ModuleManager.html#a88e837c5325074d10582f1b41188f0d6", null ] ]; \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl-members.html b/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl-members.html index 1e13ce9e..f19363b9 100644 --- a/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl-members.html +++ b/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl-members.html @@ -108,9 +108,9 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1Module_1_1ModuleMa - + - +
Active() -> int (defined in GpgFrontend::Module::Module)GpgFrontend::Module::Modulevirtual
Deactive() -> int (defined in GpgFrontend::Module::Module)GpgFrontend::Module::Modulevirtual
Exec(EventRefrernce) -> int (defined in GpgFrontend::Module::Module)GpgFrontend::Module::Modulevirtual
Exec(EventReference) -> int (defined in GpgFrontend::Module::Module)GpgFrontend::Module::Modulevirtual
getChannel() -> int (defined in GpgFrontend::Module::Module)GpgFrontend::Module::Moduleprotected
getDefaultChannel() -> int (defined in GpgFrontend::Module::Module)GpgFrontend::Module::Moduleprotected
GetModuleHash() const -> QString (defined in GpgFrontend::Module::Module)GpgFrontend::Module::Module
Register
virtual auto Active () -> int
 
-virtual auto Exec (EventRefrernce) -> int
 
+virtual auto Exec (EventReference) -> int
 
virtual auto Deactive () -> int
 
RegisterModule(ModulePtr) (defined in GpgFrontend::Module::ModuleManager)GpgFrontend::Module::ModuleManager
ReleaseChannel(int channel)GpgFrontend::SingletonFunctionObject< ModuleManager >inlinestatic
RetrieveRTValue(Namespace, Key) -> std::optional< std::any > (defined in GpgFrontend::Module::ModuleManager)GpgFrontend::Module::ModuleManager
SearchEvent(EventTriggerIdentifier) -> std::optional< EventRefrernce > (defined in GpgFrontend::Module::ModuleManager)GpgFrontend::Module::ModuleManager
SearchEvent(EventTriggerIdentifier) -> std::optional< EventReference > (defined in GpgFrontend::Module::ModuleManager)GpgFrontend::Module::ModuleManager
SearchModule(ModuleIdentifier) -> ModulePtr (defined in GpgFrontend::Module::ModuleManager)GpgFrontend::Module::ModuleManager
SetChannel(int channel)GpgFrontend::ChannelObject
SingletonFunctionObject(const SingletonFunctionObject< ModuleManager > &)=deleteGpgFrontend::SingletonFunctionObject< ModuleManager >
SingletonFunctionObject(const ModuleManager &)=deleteGpgFrontend::SingletonFunctionObject< ModuleManager >
SingletonFunctionObject()=defaultGpgFrontend::SingletonFunctionObject< ModuleManager >protected
SingletonFunctionObject(int channel)GpgFrontend::SingletonFunctionObject< ModuleManager >inlineexplicitprotected
TriggerEvent(EventRefrernce) (defined in GpgFrontend::Module::ModuleManager)GpgFrontend::Module::ModuleManager
TriggerEvent(EventReference) (defined in GpgFrontend::Module::ModuleManager)GpgFrontend::Module::ModuleManager
type_ (defined in GpgFrontend::ChannelObject)GpgFrontend::ChannelObjectprivate
UpsertRTValue(Namespace, Key, std::any) -> bool (defined in GpgFrontend::Module::ModuleManager)GpgFrontend::Module::ModuleManager
~ChannelObject() noexceptGpgFrontend::ChannelObjectvirtual
IsIntegratedModule void ListenEvent (ModuleIdentifier, EventIdentifier)
 
-void TriggerEvent (EventRefrernce)
 
-auto SearchEvent (EventTriggerIdentifier) -> std::optional< EventRefrernce >
 
+void TriggerEvent (EventReference)
 
+auto SearchEvent (EventTriggerIdentifier) -> std::optional< EventReference >
 
auto GetModuleListening (ModuleIdentifier) -> QList< EventIdentifier >
 
module_libraries_ (defined in GpgFrontend::Module::ModuleManager::Impl)GpgFrontend::Module::ModuleManager::Implprivate
RegisterModule(const ModulePtr &module) (defined in GpgFrontend::Module::ModuleManager::Impl)GpgFrontend::Module::ModuleManager::Implinline
RetrieveRTValue(Namespace n, Key k) -> std::optional< std::any > (defined in GpgFrontend::Module::ModuleManager::Impl)GpgFrontend::Module::ModuleManager::Implinline
SearchEvent(EventTriggerIdentifier trigger_id) -> std::optional< EventRefrernce > (defined in GpgFrontend::Module::ModuleManager::Impl)GpgFrontend::Module::ModuleManager::Implinline
SearchEvent(EventTriggerIdentifier trigger_id) -> std::optional< EventReference > (defined in GpgFrontend::Module::ModuleManager::Impl)GpgFrontend::Module::ModuleManager::Implinline
SearchModule(ModuleIdentifier module_id) -> ModulePtr (defined in GpgFrontend::Module::ModuleManager::Impl)GpgFrontend::Module::ModuleManager::Implinline
TriggerEvent(const EventRefrernce &event) (defined in GpgFrontend::Module::ModuleManager::Impl)GpgFrontend::Module::ModuleManager::Implinline
TriggerEvent(const EventReference &event) (defined in GpgFrontend::Module::ModuleManager::Impl)GpgFrontend::Module::ModuleManager::Implinline
UpsertRTValue(Namespace n, Key k, std::any v) -> bool (defined in GpgFrontend::Module::ModuleManager::Impl)GpgFrontend::Module::ModuleManager::Implinline
~Impl()=default (defined in GpgFrontend::Module::ModuleManager::Impl)GpgFrontend::Module::ModuleManager::Impl
diff --git a/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html b/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html index 3833565d..262c284e 100644 --- a/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html +++ b/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html @@ -119,12 +119,12 @@ void RegisterModule (c void ListenEvent (const ModuleIdentifier &module_id, const EventIdentifier &event_id)   - -void TriggerEvent (const EventRefrernce &event) -  - -auto SearchEvent (EventTriggerIdentifier trigger_id) -> std::optional< EventRefrernce > -  + +void TriggerEvent (const EventReference &event) +  + +auto SearchEvent (EventTriggerIdentifier trigger_id) -> std::optional< EventReference > +  auto GetModuleListening (ModuleIdentifier module_id) -> QList< EventIdentifier >   diff --git a/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.js b/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.js index 2579df21..cf0a8a28 100644 --- a/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.js +++ b/docs/html/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.js @@ -16,9 +16,9 @@ var classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl = [ "LoadAndRegisterModule", "classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a4aa0a8ec0bdbbd938da5052dc101be8b", null ], [ "RegisterModule", "classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a701c5a2ac5ecbad2f7748692c913227e", null ], [ "RetrieveRTValue", "classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a08a6d06da083c96e12c6117eeb1a9d73", null ], - [ "SearchEvent", "classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#ada2e879d721026aa1b37e66c16501544", null ], + [ "SearchEvent", "classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a01eadb53513afb01c88dc3f97a6c2459", null ], [ "SearchModule", "classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a752848641e5bac2096d0d40264f59f41", null ], - [ "TriggerEvent", "classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a41f8154e4d1e211cc1dbc9ba5d847e89", null ], + [ "TriggerEvent", "classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#ac15fef1d9b22075e819855e4b4c09a52", null ], [ "UpsertRTValue", "classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#ac640531756c26386d6353293b420851e", null ], [ "global_module_manager", "classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a3075eef2bb18d65e051d4ccb6c601a69", null ], [ "gmc_", "classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#ac030cab7dc39e07c5a198ba4d2ad8c1a", null ], diff --git a/docs/html/classGpgFrontend_1_1Module_1_1Module_1_1Impl-members.html b/docs/html/classGpgFrontend_1_1Module_1_1Module_1_1Impl-members.html index c497270c..482421b5 100644 --- a/docs/html/classGpgFrontend_1_1Module_1_1Module_1_1Impl-members.html +++ b/docs/html/classGpgFrontend_1_1Module_1_1Module_1_1Impl-members.html @@ -93,7 +93,7 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1Module_1_1Module_1 Active() -> int (defined in GpgFrontend::Module::Module::Impl)GpgFrontend::Module::Module::Implinline deactivate_api_ (defined in GpgFrontend::Module::Module::Impl)GpgFrontend::Module::Module::Implprivate Deactive() -> int (defined in GpgFrontend::Module::Module::Impl)GpgFrontend::Module::Module::Implinline - Exec(const EventRefrernce &event) -> int (defined in GpgFrontend::Module::Module::Impl)GpgFrontend::Module::Module::Implinline + Exec(const EventReference &event) -> int (defined in GpgFrontend::Module::Module::Impl)GpgFrontend::Module::Module::Implinline ExecCallback typedef (defined in GpgFrontend::Module::Module::Impl)GpgFrontend::Module::Module::Impl execute_api_ (defined in GpgFrontend::Module::Module::Impl)GpgFrontend::Module::Module::Implprivate get_gpc() -> GlobalModuleContext * (defined in GpgFrontend::Module::Module::Impl)GpgFrontend::Module::Module::Implinlineprivate diff --git a/docs/html/classGpgFrontend_1_1Module_1_1Module_1_1Impl.html b/docs/html/classGpgFrontend_1_1Module_1_1Module_1_1Impl.html index acf219b9..8aaef943 100644 --- a/docs/html/classGpgFrontend_1_1Module_1_1Module_1_1Impl.html +++ b/docs/html/classGpgFrontend_1_1Module_1_1Module_1_1Impl.html @@ -137,9 +137,9 @@ auto Register () -> auto Active () -> int   - -auto Exec (const EventRefrernce &event) -> int -  + +auto Exec (const EventReference &event) -> int +  auto Deactive () -> int   diff --git a/docs/html/classGpgFrontend_1_1Module_1_1Module_1_1Impl.js b/docs/html/classGpgFrontend_1_1Module_1_1Module_1_1Impl.js index c7f7f8aa..94f99501 100644 --- a/docs/html/classGpgFrontend_1_1Module_1_1Module_1_1Impl.js +++ b/docs/html/classGpgFrontend_1_1Module_1_1Module_1_1Impl.js @@ -6,7 +6,7 @@ var classGpgFrontend_1_1Module_1_1Module_1_1Impl = [ "Impl", "classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#a4d559d8a9e86d2029af45bd5412c1951", null ], [ "Active", "classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#aa55c74b6387af03a60ec3ec749b925c3", null ], [ "Deactive", "classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#a0cb4bb7366fe1787adbe0590c3188ae6", null ], - [ "Exec", "classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#a336d8016bd94c87e351c490a9dc5185c", null ], + [ "Exec", "classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#ac9ebd95fcd53af661e0461dc7ca0b421", null ], [ "get_gpc", "classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#a084b0c4e64edd80140b79c576e92af5e", null ], [ "GetChannel", "classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#a8f874b486d0ce6c7df177df3927f0b19", null ], [ "GetDefaultChannel", "classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#afe85061d93568cabc555b05fff0e63e7", null ], diff --git a/docs/html/namespaceGpgFrontend_1_1Module.html b/docs/html/namespaceGpgFrontend_1_1Module.html index 6ef54fd9..6a4cfca5 100644 --- a/docs/html/namespaceGpgFrontend_1_1Module.html +++ b/docs/html/namespaceGpgFrontend_1_1Module.html @@ -110,9 +110,9 @@ Classes - - + + @@ -161,10 +161,10 @@ using 

Typedefs

-using EventRefrernce = std::shared_ptr< Event >
 
+using EventReference = std::shared_ptr< Event >
 
using EventIdentifier = QString
 
ModuleMangerPtr
- - - + + diff --git a/docs/html/namespaceGpgFrontend_1_1Module.js b/docs/html/namespaceGpgFrontend_1_1Module.js index 58bd52b3..f86fe76d 100644 --- a/docs/html/namespaceGpgFrontend_1_1Module.js +++ b/docs/html/namespaceGpgFrontend_1_1Module.js @@ -8,7 +8,7 @@ var namespaceGpgFrontend_1_1Module = [ "ModuleInitArgs", "structGpgFrontend_1_1Module_1_1ModuleInitArgs.html", "structGpgFrontend_1_1Module_1_1ModuleInitArgs" ], [ "ModuleManager", "classGpgFrontend_1_1Module_1_1ModuleManager.html", "classGpgFrontend_1_1Module_1_1ModuleManager" ], [ "EventIdentifier", "namespaceGpgFrontend_1_1Module.html#a0c3d65fe66a8f7e0fc93d0a45a899723", null ], - [ "EventRefrernce", "namespaceGpgFrontend_1_1Module.html#a340abcd73c766e5691e90e504b3cd975", null ], + [ "EventReference", "namespaceGpgFrontend_1_1Module.html#ab5e154977c509d24fd9ef231a39b95cb", null ], [ "EventTriggerIdentifier", "namespaceGpgFrontend_1_1Module.html#ad158f92b60cffde02f5d5560fd094d5e", null ], [ "Evnets", "namespaceGpgFrontend_1_1Module.html#a6abb965a4aab039e321111ac39045a56", null ], [ "GMCPtr", "namespaceGpgFrontend_1_1Module.html#ab93c267b476f6d61f9d4063e3242520a", null ], @@ -30,7 +30,7 @@ var namespaceGpgFrontend_1_1Module = [ "LoadGpgFrontendModules", "namespaceGpgFrontend_1_1Module.html#a7f3912fe331338264ae22e434425f59e", null ], [ "LoadIntegratedMods", "namespaceGpgFrontend_1_1Module.html#a671a34cf78c3b30c9148383885a767ff", null ], [ "LoadModuleFromPath", "namespaceGpgFrontend_1_1Module.html#abed70603b6806aca6d2db12a2448e1e3", null ], - [ "MakeEvent", "namespaceGpgFrontend_1_1Module.html#aaafda413ba6ccb2e0e5e866f11cf8dc5", null ], + [ "MakeEvent", "namespaceGpgFrontend_1_1Module.html#a8e7cac96091d6c396cf6b1254e8b5735", null ], [ "RegisterAndActivateModule", "namespaceGpgFrontend_1_1Module.html#a548ad04674384cf77aad447bc7eeaac0", null ], [ "RegisterModule", "namespaceGpgFrontend_1_1Module.html#a0dd02118df9de6c1a538d8a4a9910129", null ], [ "RetrieveRTValueTyped", "namespaceGpgFrontend_1_1Module.html#a23a586d557162b22ef92dc316deb1edc", null ], diff --git a/docs/html/navtreedata.js b/docs/html/navtreedata.js index 4ded2053..f831576f 100644 --- a/docs/html/navtreedata.js +++ b/docs/html/navtreedata.js @@ -58,7 +58,7 @@ var NAVTREEINDEX = "classGpgFrontend_1_1DataObjectOperator.html#a8adf6fd4aebbb9d59ea94ec65e83169d", "classGpgFrontend_1_1GpgFileOpera.html#a891024cb4fdd7e9163421d7893c43ef3", "classGpgFrontend_1_1GpgSubKey.html#ad12e160dbb394a849d6cf31e614a76f5", -"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a0802bc4e2a177a5eb0a3fb2ea80bd739", +"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a01eadb53513afb01c88dc3f97a6c2459", "classGpgFrontend_1_1UI_1_1CommonUtils.html#a0cf35e9d02ff3464cb83435a61d060c2", "classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ab40bd826a5437124f8afd09824606c76", "classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a5e1fb2810c4b07bd9d8c6fe11c72c526", @@ -66,7 +66,7 @@ var NAVTREEINDEX = "classPinEntryDialog.html#affff341e7d03154b56d83a0278aa5143a8e3454c439c642eb78522bf43cd23258", "namespaceGpgFrontend.html#a92c42a4157576fc2386eb2295120fed3", "structGpgFrontend_1_1GpgContextInitArgs.html#a2b09f18f4f10ca44370ed204d19de122", -"structpinentry.html#a86b90be888ce66da86f4628ec406b4e4" +"structpinentry.html#a7e89de346d3ab6aa146c7cf70c592f07" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/docs/html/navtreeindex10.js b/docs/html/navtreeindex10.js index b1855839..740cde81 100644 --- a/docs/html/navtreeindex10.js +++ b/docs/html/navtreeindex10.js @@ -97,7 +97,6 @@ var NAVTREEINDEX10 = "namespaceGpgFrontend_1_1Module.html#a25a2b6107e70c76ab0731f2685d94745":[1,0,2,0,35], "namespaceGpgFrontend_1_1Module.html#a326305250e96756a0eb3b8683bc836db":[1,0,2,0,14], "namespaceGpgFrontend_1_1Module.html#a32bd9a427f0726a36222753a10395059":[1,0,2,0,21], -"namespaceGpgFrontend_1_1Module.html#a340abcd73c766e5691e90e504b3cd975":[1,0,2,0,8], "namespaceGpgFrontend_1_1Module.html#a4d85e8bfe4d6ab0193e59535b0d2ed32":[1,0,2,0,13], "namespaceGpgFrontend_1_1Module.html#a540ad137a43cb000c3b5f200c3edc036":[1,0,2,0,17], "namespaceGpgFrontend_1_1Module.html#a548ad04674384cf77aad447bc7eeaac0":[1,0,2,0,31], @@ -107,12 +106,13 @@ var NAVTREEINDEX10 = "namespaceGpgFrontend_1_1Module.html#a77e47a91519df4f0df6aaa47ba7e04b5":[1,0,2,0,15], "namespaceGpgFrontend_1_1Module.html#a7f3912fe331338264ae22e434425f59e":[1,0,2,0,27], "namespaceGpgFrontend_1_1Module.html#a82533db0a36b076ebe095b76636b6df8":[1,0,2,0,19], +"namespaceGpgFrontend_1_1Module.html#a8e7cac96091d6c396cf6b1254e8b5735":[1,0,2,0,30], "namespaceGpgFrontend_1_1Module.html#a92a4ccb9246f778143ad3e88d2068d7c":[1,0,2,0,25], "namespaceGpgFrontend_1_1Module.html#a939c65185b5cabe42e5cd187b3238e2c":[1,0,2,0,20], "namespaceGpgFrontend_1_1Module.html#a95a3c32ad6b753ea6535c2b299b61b35":[1,0,2,0,26], "namespaceGpgFrontend_1_1Module.html#a9e9ac88fcd1c94018139dbe11ce21e90":[1,0,2,0,34], "namespaceGpgFrontend_1_1Module.html#aa21d42624d1f3dc14ada7b1f609a132a":[1,0,2,0,16], -"namespaceGpgFrontend_1_1Module.html#aaafda413ba6ccb2e0e5e866f11cf8dc5":[1,0,2,0,30], +"namespaceGpgFrontend_1_1Module.html#ab5e154977c509d24fd9ef231a39b95cb":[1,0,2,0,8], "namespaceGpgFrontend_1_1Module.html#ab93c267b476f6d61f9d4063e3242520a":[1,0,2,0,11], "namespaceGpgFrontend_1_1Module.html#abed70603b6806aca6d2db12a2448e1e3":[1,0,2,0,29], "namespaceGpgFrontend_1_1Module.html#aca4d4541b62bdd408e60d25ac9d77831":[1,0,2,0,18], diff --git a/docs/html/navtreeindex11.js b/docs/html/navtreeindex11.js index 1680ecc8..f8263556 100644 --- a/docs/html/navtreeindex11.js +++ b/docs/html/navtreeindex11.js @@ -49,6 +49,7 @@ var NAVTREEINDEX11 = "structGpgFrontend_1_1ModuleSO.html#acd337e60a6f44a5d4f7835d1660c0d74":[2,0,1,59,6], "structGpgFrontend_1_1ModuleSO.html#ad00b3665fe25d22d3b8d17fd43229978":[2,0,1,59,3], "structGpgFrontend_1_1ModuleSO.html#adea80e1387cab1147f7855984afc21b7":[2,0,1,59,1], +"structGpgFrontend_1_1ModuleSO.html#aeb2565c17ffee4c765c9500608f39fa2":[2,0,1,59,7], "structGpgFrontend_1_1Module_1_1Event_1_1ParameterInitializer.html":[2,0,1,0,0,1], "structGpgFrontend_1_1Module_1_1Event_1_1ParameterInitializer.html#a65e6295972676a20b6dd8c39328a486a":[2,0,1,0,0,1,0], "structGpgFrontend_1_1Module_1_1Event_1_1ParameterInitializer.html#ab8ae285de10b5751f6486aef63d3e853":[2,0,1,0,0,1,1], @@ -195,27 +196,27 @@ var NAVTREEINDEX11 = "structSoftwareVersion.html#af4f48691c5797f623cd5634580973bd9":[2,0,17,10], "structSoftwareVersion.html#af95656d8841511839009539799f48704":[2,0,17,7], "structfmt_1_1formatter_3_01QByteArray_01_4.html":[2,0,0,1], -"structfmt_1_1formatter_3_01QByteArray_01_4.html#a93b3bf7f7b33dddcc7b240c18ecd48b7":[2,0,0,1,2], "structfmt_1_1formatter_3_01QByteArray_01_4.html#a93b3bf7f7b33dddcc7b240c18ecd48b7":[2,0,0,1,0], -"structfmt_1_1formatter_3_01QByteArray_01_4.html#a93b3bf7f7b33dddcc7b240c18ecd48b7":[2,0,0,1,3], -"structfmt_1_1formatter_3_01QByteArray_01_4.html#a93b3bf7f7b33dddcc7b240c18ecd48b7":[2,0,0,1,4], +"structfmt_1_1formatter_3_01QByteArray_01_4.html#a93b3bf7f7b33dddcc7b240c18ecd48b7":[2,0,0,1,2], "structfmt_1_1formatter_3_01QByteArray_01_4.html#a93b3bf7f7b33dddcc7b240c18ecd48b7":[2,0,0,1,1], -"structfmt_1_1formatter_3_01QByteArray_01_4.html#ac66a3903f2bc7caa320592840a9a2c91":[2,0,0,1,6], -"structfmt_1_1formatter_3_01QByteArray_01_4.html#ac66a3903f2bc7caa320592840a9a2c91":[2,0,0,1,5], -"structfmt_1_1formatter_3_01QByteArray_01_4.html#ac66a3903f2bc7caa320592840a9a2c91":[2,0,0,1,8], +"structfmt_1_1formatter_3_01QByteArray_01_4.html#a93b3bf7f7b33dddcc7b240c18ecd48b7":[2,0,0,1,4], +"structfmt_1_1formatter_3_01QByteArray_01_4.html#a93b3bf7f7b33dddcc7b240c18ecd48b7":[2,0,0,1,3], "structfmt_1_1formatter_3_01QByteArray_01_4.html#ac66a3903f2bc7caa320592840a9a2c91":[2,0,0,1,7], +"structfmt_1_1formatter_3_01QByteArray_01_4.html#ac66a3903f2bc7caa320592840a9a2c91":[2,0,0,1,5], +"structfmt_1_1formatter_3_01QByteArray_01_4.html#ac66a3903f2bc7caa320592840a9a2c91":[2,0,0,1,6], +"structfmt_1_1formatter_3_01QByteArray_01_4.html#ac66a3903f2bc7caa320592840a9a2c91":[2,0,0,1,8], "structfmt_1_1formatter_3_01QByteArray_01_4.html#ac66a3903f2bc7caa320592840a9a2c91":[2,0,0,1,9], "structfmt_1_1formatter_3_01QString_01_4.html":[2,0,0,0], -"structfmt_1_1formatter_3_01QString_01_4.html#a0a51b8f0b49cfafb8bf46c32c5e7ea3d":[2,0,0,0,9], -"structfmt_1_1formatter_3_01QString_01_4.html#a0a51b8f0b49cfafb8bf46c32c5e7ea3d":[2,0,0,0,5], -"structfmt_1_1formatter_3_01QString_01_4.html#a0a51b8f0b49cfafb8bf46c32c5e7ea3d":[2,0,0,0,8], "structfmt_1_1formatter_3_01QString_01_4.html#a0a51b8f0b49cfafb8bf46c32c5e7ea3d":[2,0,0,0,7], +"structfmt_1_1formatter_3_01QString_01_4.html#a0a51b8f0b49cfafb8bf46c32c5e7ea3d":[2,0,0,0,8], +"structfmt_1_1formatter_3_01QString_01_4.html#a0a51b8f0b49cfafb8bf46c32c5e7ea3d":[2,0,0,0,9], "structfmt_1_1formatter_3_01QString_01_4.html#a0a51b8f0b49cfafb8bf46c32c5e7ea3d":[2,0,0,0,6], -"structfmt_1_1formatter_3_01QString_01_4.html#aca03925995464275861427727a4e709a":[2,0,0,0,3], -"structfmt_1_1formatter_3_01QString_01_4.html#aca03925995464275861427727a4e709a":[2,0,0,0,1], -"structfmt_1_1formatter_3_01QString_01_4.html#aca03925995464275861427727a4e709a":[2,0,0,0,0], +"structfmt_1_1formatter_3_01QString_01_4.html#a0a51b8f0b49cfafb8bf46c32c5e7ea3d":[2,0,0,0,5], "structfmt_1_1formatter_3_01QString_01_4.html#aca03925995464275861427727a4e709a":[2,0,0,0,2], +"structfmt_1_1formatter_3_01QString_01_4.html#aca03925995464275861427727a4e709a":[2,0,0,0,0], +"structfmt_1_1formatter_3_01QString_01_4.html#aca03925995464275861427727a4e709a":[2,0,0,0,3], "structfmt_1_1formatter_3_01QString_01_4.html#aca03925995464275861427727a4e709a":[2,0,0,0,4], +"structfmt_1_1formatter_3_01QString_01_4.html#aca03925995464275861427727a4e709a":[2,0,0,0,1], "structpinentry.html":[2,0,12], "structpinentry.html#a01d023d70058225507186078938e26f7":[2,0,12,32], "structpinentry.html#a0246a61cab9de3ab251b0d481a2e0f55":[2,0,12,56], @@ -248,6 +249,5 @@ var NAVTREEINDEX11 = "structpinentry.html#a60be55e3699b1cb1832ad2a3ad0d2230":[2,0,12,39], "structpinentry.html#a6395cfc79de85c30660ca0ed9e39d6e2":[2,0,12,36], "structpinentry.html#a6810e60a64b360e46773f419403fb97e":[2,0,12,65], -"structpinentry.html#a6c2f16572834bdc885ca5534ed886591":[2,0,12,11], -"structpinentry.html#a7e89de346d3ab6aa146c7cf70c592f07":[2,0,12,55] +"structpinentry.html#a6c2f16572834bdc885ca5534ed886591":[2,0,12,11] }; diff --git a/docs/html/navtreeindex12.js b/docs/html/navtreeindex12.js index fc6f26ac..0020b22d 100644 --- a/docs/html/navtreeindex12.js +++ b/docs/html/navtreeindex12.js @@ -1,5 +1,6 @@ var NAVTREEINDEX12 = { +"structpinentry.html#a7e89de346d3ab6aa146c7cf70c592f07":[2,0,12,55], "structpinentry.html#a86b90be888ce66da86f4628ec406b4e4":[2,0,12,60], "structpinentry.html#a879bd98959f2681f32771838864d8c4a":[2,0,12,5], "structpinentry.html#a8befa3521f3c8501a24d456aa18b709c":[2,0,12,15], @@ -41,7 +42,7 @@ var NAVTREEINDEX12 = "structsecmem_1_1alloc_1_1rebind.html#ad8d07ef1da80f557d0814db49a919b14":[2,0,2,0,0,0], "ver__check_2GFModuleExport_8h_source.html":[3,0,0,1,0,1,0], "ver__check_2QtLoggerFmt_8h_source.html":[3,0,0,1,0,1,1], +"":[1,0,0], "":[1,0,3], -"":[1,0,1], -"":[1,0,0] +"":[1,0,1] }; diff --git a/docs/html/navtreeindex3.js b/docs/html/navtreeindex3.js index a467ecb2..d6451f98 100644 --- a/docs/html/navtreeindex3.js +++ b/docs/html/navtreeindex3.js @@ -124,43 +124,43 @@ var NAVTREEINDEX3 = "classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#a3834836325dab26902e9d66770ce895f":[2,0,1,0,1,15], "classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#a3d26d680dfb5036832852ccab2e31cd2":[2,0,1,0,1,13], "classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#a446db76f3518eb46133e14366ff13a05":[2,0,1,0,1,7], +"classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#a4c1d56338f4b4a8d594c4ecc8aac420d":[2,0,1,0,1,16], "classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#a4de89b6132d184cf94444a94634a38d8":[2,0,1,0,1,3], "classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#a627cfb3a280954d43ed09aa16d982e08":[2,0,1,0,1,6], "classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#a683639b9af7cf521bc9ffe4a5fc46cea":[2,0,1,0,1,11], "classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#a73d55999acdcd0b7ac58fc99d61e232a":[2,0,1,0,1,4], "classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#a99414d575c55ac1f61a44f077db06028":[2,0,1,0,1,12], -"classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#aa11772c7ecb3fdc8545a67ceb8c6369b":[2,0,1,0,1,16], -"classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#aa656d6d835b2ccb20494ff580a7cafac":[2,0,1,0,1,18], "classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#aadce2e61acda3c4191423f28628c56bf":[2,0,1,0,1,5], "classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#ac10c8f007eaf7dca6fe33e6e7af757b0":[2,0,1,0,1,2], "classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#ac488a3f4e3cbd668fd9ce84b39078cbb":[2,0,1,0,1,17], +"classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#ad9c9b7ffc770046ff1e6486ef1fc4415":[2,0,1,0,1,18], "classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#ae2e989ee80541129e050c86a48ed8f14":[2,0,1,0,1,9], "classGpgFrontend_1_1Module_1_1GlobalModuleContext.html#aec9f17c91c5cb6da83b3d1a5af800895":[2,0,1,0,1,8], "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html":[2,0,1,0,1,0], "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#a0388268ec4a003a465f76cb9d3a85b13":[2,0,1,0,1,0,7], "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#a07a95697a3653f22d5270708ede1f213":[2,0,1,0,1,0,8], +"classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#a07acdf211b98d8e917abb19406e9507d":[2,0,1,0,1,0,20], "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#a11dde09190cfa31bd19efad5dcacf214":[2,0,1,0,1,0,17], -"classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#a36f9cf218e3cd84658cbd61116d34a96":[2,0,1,0,1,0,24], "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#a4479bbccc6929a1c096f764d9c13c02f":[2,0,1,0,1,0,15], "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#a4b982badccf837f3efe10b1c7e2428b5":[2,0,1,0,1,0,12], "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#a574eafbe2bd2d84abc1d59d3472f0770":[2,0,1,0,1,0,2], "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#a61e810f356cf0e5073dc5c83bbbbab84":[2,0,1,0,1,0,9], "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#a66c9166ec3af4f15dd3af00e57ced049":[2,0,1,0,1,0,14], +"classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#a8b1169966c7200118373bb56d555a89c":[2,0,1,0,1,0,24], "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#a8e3cd9ab8dc16a2f7431618bfbc09520":[2,0,1,0,1,0,25], "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#a90e5698590ebc999c67e4966a7835c5c":[2,0,1,0,1,0,11], "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#aa4262354dcf1d56bbd732afbac5b1e82":[2,0,1,0,1,0,13], "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#aaa6ec2fcc2569cd1b22f419feadaa568":[2,0,1,0,1,0,23], "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#aad554eb8e681ed9c91fee58a255bbaca":[2,0,1,0,1,0,1], "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#ab1b61e3fb3bbd9c8f2c209751bd470d2":[2,0,1,0,1,0,10], -"classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#ab3e05b1a9bf5f03ece0caa1fc8809b50":[2,0,1,0,1,0,18], "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#ab84d50a8d389015d29115d28ab8edbde":[2,0,1,0,1,0,5], "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#abba0e51c3af19398cfca723d15b27b58":[2,0,1,0,1,0,19], "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#abc363ae2bc81fbfed0f08315023a2155":[2,0,1,0,1,0,16], "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#ac3262026e43f2891f74da6dd5a7f38a0":[2,0,1,0,1,0,6], "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#ac66eb6ed5e8d5742a5d271647bf10f85":[2,0,1,0,1,0,4], -"classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#ac7991d6d2022915212987b7a2d330446":[2,0,1,0,1,0,20], "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#acc10c7acd6244ef93e85ffb6c4ad267e":[2,0,1,0,1,0,21], "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#ad8285c96435bc2431481828ca943ce49":[2,0,1,0,1,0,22], +"classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#ae3f001188f83e173fd84f89e3973bef2":[2,0,1,0,1,0,18], "classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html#ae72741f7c324660c852930dbbdc2b031":[2,0,1,0,1,0,3], "classGpgFrontend_1_1Module_1_1GlobalRegisterTable.html":[2,0,1,0,2], "classGpgFrontend_1_1Module_1_1GlobalRegisterTable.html#a77bee043c1f7549c11b74968f31f4ac2":[2,0,1,0,2,5], @@ -218,17 +218,16 @@ var NAVTREEINDEX3 = "classGpgFrontend_1_1Module_1_1Module.html#a82105c87c45f3d58736e106be271910f":[2,0,1,0,4,10], "classGpgFrontend_1_1Module_1_1Module.html#a87c631643d16a87fcf15895fbc0c53c7":[2,0,1,0,4,16], "classGpgFrontend_1_1Module_1_1Module.html#a9951cd256d16e5117b49131430499ad1":[2,0,1,0,4,3], -"classGpgFrontend_1_1Module_1_1Module.html#aaa782445f133f0ad740cdfee687f09a1":[2,0,1,0,4,6], "classGpgFrontend_1_1Module_1_1Module.html#ab16513c547ee594ebb78c8d67ce8b447":[2,0,1,0,4,8], "classGpgFrontend_1_1Module_1_1Module.html#ab721af24599d02f2f62bfbc139b213fa":[2,0,1,0,4,12], "classGpgFrontend_1_1Module_1_1Module.html#aba8d8690179721ddcbcabac04a72a157":[2,0,1,0,4,4], "classGpgFrontend_1_1Module_1_1Module.html#ac0ff5afa799ff2e5d41fa35dd39694aa":[2,0,1,0,4,20], "classGpgFrontend_1_1Module_1_1Module.html#ac4d6e961b19129767c69be023853c13c":[2,0,1,0,4,19], "classGpgFrontend_1_1Module_1_1Module.html#aca010db52c44b025a03e76de4e1f9088":[2,0,1,0,4,1], +"classGpgFrontend_1_1Module_1_1Module.html#af0b52299d613acc0c1df7d542b00dccd":[2,0,1,0,4,6], "classGpgFrontend_1_1Module_1_1Module.html#af4a6decab6e9b05b5c456d62ca588e92":[2,0,1,0,4,7], "classGpgFrontend_1_1Module_1_1Module.html#af6067f27d8dfa6731e1f38384d13085c":[2,0,1,0,4,18], "classGpgFrontend_1_1Module_1_1ModuleManager.html":[2,0,1,0,6], -"classGpgFrontend_1_1Module_1_1ModuleManager.html#a1a1e0d46101d6f1dd6ca2751cf77577e":[2,0,1,0,6,17], "classGpgFrontend_1_1Module_1_1ModuleManager.html#a20d230e88684b09392a2a2f034248ddf":[2,0,1,0,6,2], "classGpgFrontend_1_1Module_1_1ModuleManager.html#a2834cd112b032ae0e62de81050d1318e":[2,0,1,0,6,16], "classGpgFrontend_1_1Module_1_1ModuleManager.html#a28535b400738a4601ee836603aa13480":[2,0,1,0,6,11], @@ -246,8 +245,9 @@ var NAVTREEINDEX3 = "classGpgFrontend_1_1Module_1_1ModuleManager.html#ac041f5f94e2f258dd0220d8e6f245219":[2,0,1,0,6,8], "classGpgFrontend_1_1Module_1_1ModuleManager.html#ac3abb90991be2e924a8ab0d4d7b6953d":[2,0,1,0,6,3], "classGpgFrontend_1_1Module_1_1ModuleManager.html#ad699694b74ada1edd1fcf9d094c92a7d":[2,0,1,0,6,1], -"classGpgFrontend_1_1Module_1_1ModuleManager.html#ad802fe563954717b33ab85f5a781c06f":[2,0,1,0,6,19], "classGpgFrontend_1_1Module_1_1ModuleManager.html#ae04a5eac55ad8c96eca86e59eb0ef88d":[2,0,1,0,6,10], +"classGpgFrontend_1_1Module_1_1ModuleManager.html#ae4e4a6c3cd06de7da34b59822d893ecc":[2,0,1,0,6,19], "classGpgFrontend_1_1Module_1_1ModuleManager.html#af4f2570fbed76fb484e9ec5d3e8b703b":[2,0,1,0,6,4], +"classGpgFrontend_1_1Module_1_1ModuleManager.html#afa0844590ddfdc6e44cbea4303f34382":[2,0,1,0,6,17], "classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html":[2,0,1,0,6,0] }; diff --git a/docs/html/navtreeindex4.js b/docs/html/navtreeindex4.js index 05ad0932..95023b91 100644 --- a/docs/html/navtreeindex4.js +++ b/docs/html/navtreeindex4.js @@ -1,9 +1,9 @@ var NAVTREEINDEX4 = { +"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a01eadb53513afb01c88dc3f97a6c2459":[2,0,1,0,6,0,16], "classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a0802bc4e2a177a5eb0a3fb2ea80bd739":[2,0,1,0,6,0,1], "classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a08a6d06da083c96e12c6117eeb1a9d73":[2,0,1,0,6,0,15], "classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a3075eef2bb18d65e051d4ccb6c601a69":[2,0,1,0,6,0,20], -"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a41f8154e4d1e211cc1dbc9ba5d847e89":[2,0,1,0,6,0,18], "classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a4aa0a8ec0bdbbd938da5052dc101be8b":[2,0,1,0,6,0,13], "classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a56dc1b8575049fe79ac696309839748c":[2,0,1,0,6,0,3], "classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#a61e2aa9cc72619426fd957b4945c593e":[2,0,1,0,6,0,2], @@ -19,11 +19,11 @@ var NAVTREEINDEX4 = "classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#ab2ba2f6e4be6000bb9fbffe81824f5c2":[2,0,1,0,6,0,9], "classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#ab78b9f24728188dc9e884d0cbc284eb7":[2,0,1,0,6,0,22], "classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#ac030cab7dc39e07c5a198ba4d2ad8c1a":[2,0,1,0,6,0,21], +"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#ac15fef1d9b22075e819855e4b4c09a52":[2,0,1,0,6,0,18], "classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#ac25e0c12e44b13b436560e14ba6d2d00":[2,0,1,0,6,0,6], "classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#ac640531756c26386d6353293b420851e":[2,0,1,0,6,0,19], "classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#acdf788c1494dc722c2606783310b0238":[2,0,1,0,6,0,0], "classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#ad97457a3e8d7157d7aa355283644c623":[2,0,1,0,6,0,23], -"classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html#ada2e879d721026aa1b37e66c16501544":[2,0,1,0,6,0,16], "classGpgFrontend_1_1Module_1_1Module_1_1Impl.html":[2,0,1,0,4,0], "classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#a00108e0f2da38114e9ddfb558bde9791":[2,0,1,0,4,0,42], "classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#a035bbadd3661e4259b3f43b5be792b23":[2,0,1,0,4,0,30], @@ -35,7 +35,6 @@ var NAVTREEINDEX4 = "classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#a2fd7e33c4dc60b01f6500991817abc62":[2,0,1,0,4,0,27], "classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#a3085b9d88920f32401426d8fa78785e4":[2,0,1,0,4,0,16], "classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#a332440f2335b46eb4c1c2173bdefe01f":[2,0,1,0,4,0,22], -"classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#a336d8016bd94c87e351c490a9dc5185c":[2,0,1,0,4,0,6], "classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#a3709ab70918190f6f21ce403c547e775":[2,0,1,0,4,0,31], "classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#a47fb418654519e7e6a8a7b2433d73991":[2,0,1,0,4,0,12], "classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#a4d559d8a9e86d2029af45bd5412c1951":[2,0,1,0,4,0,3], @@ -61,6 +60,7 @@ var NAVTREEINDEX4 = "classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#ac05664a662e9bbdb1a5831d6555e609c":[2,0,1,0,4,0,43], "classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#ac1163893225f8c16b5945e6bf1489282":[2,0,1,0,4,0,2], "classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#ac7c23924a53a3e2acd149e2a6813e69c":[2,0,1,0,4,0,25], +"classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#ac9ebd95fcd53af661e0461dc7ca0b421":[2,0,1,0,4,0,6], "classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#ad58ee3fef7e93f74aadf8ab3227db5ed":[2,0,1,0,4,0,36], "classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#ad67c082d87a8867de27278befb29557c":[2,0,1,0,4,0,33], "classGpgFrontend_1_1Module_1_1Module_1_1Impl.html#adaa19e79a69157b20688ba26a7f50d64":[2,0,1,0,4,0,20], diff --git a/docs/html/navtreeindex9.js b/docs/html/navtreeindex9.js index 9737e6c8..baabad28 100644 --- a/docs/html/navtreeindex9.js +++ b/docs/html/navtreeindex9.js @@ -111,8 +111,8 @@ var NAVTREEINDEX9 = "dir_fc6c58bf49530122ab17df13a9869378.html":[3,0,0,0,0,2], "dir_fd71accbf528c1576ca21e7ec5716833.html":[3,0,0,0,4], "files.html":[3,0], -"functions.html":[2,3,0,0], "functions.html":[2,3,0], +"functions.html":[2,3,0,0], "functions_b.html":[2,3,0,1], "functions_c.html":[2,3,0,2], "functions_d.html":[2,3,0,3], @@ -163,8 +163,8 @@ var NAVTREEINDEX9 = "gpg__info_2GFModuleExport_8h_source.html":[3,0,0,1,0,0,0], "gpg__info_2QtLoggerFmt_8h_source.html":[3,0,0,1,0,0,3], "hierarchy.html":[2,2], -"index.html":[], "index.html":[0], +"index.html":[], "init_8h_source.html":[3,0,0,8], "main_8h_source.html":[3,0,0,9], "namespaceGpgFrontend.html":[1,0,2], diff --git a/docs/html/search/all_6.js b/docs/html/search/all_6.js index 7dea871f..2a602ab5 100644 --- a/docs/html/search/all_6.js +++ b/docs/html/search/all_6.js @@ -60,8 +60,8 @@ var searchData= ['gethashalgo_243',['GetHashAlgo',['../classGpgFrontend_1_1GpgSignature.html#a23084904b84dd0d2a619565c0ae18d2e',1,'GpgFrontend::GpgSignature']]], ['gethttprequestuseragent_244',['GetHttpRequestUserAgent',['../namespaceGpgFrontend.html#aa0393307275afa9b4f27f7ff0d74f9ae',1,'GpgFrontend']]], ['gethumanfriendlyfilesize_245',['GetHumanFriendlyFileSize',['../namespaceGpgFrontend.html#a5b86eb3adc57fa5f55e9f55a69031f71',1,'GpgFrontend']]], - ['getid_246',['GetId',['../classGpgFrontend_1_1GpgKey.html#a3dec62e06f6f8f43059b293ad192e0c1',1,'GpgFrontend::GpgKey']]], - ['getid_247',['GetID',['../classGpgFrontend_1_1GpgSubKey.html#a28be04ec888468dbd7341aa4cb28785d',1,'GpgFrontend::GpgSubKey']]], + ['getid_246',['GetID',['../classGpgFrontend_1_1GpgSubKey.html#a28be04ec888468dbd7341aa4cb28785d',1,'GpgFrontend::GpgSubKey']]], + ['getid_247',['GetId',['../classGpgFrontend_1_1GpgKey.html#a3dec62e06f6f8f43059b293ad192e0c1',1,'GpgFrontend::GpgKey']]], ['getinstance_248',['GetInstance',['../classGpgFrontend_1_1UI_1_1UISignalStation.html#a6294f44348070707b4b6abcfd1b6509d',1,'GpgFrontend::UI::UISignalStation::GetInstance()'],['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a530688726ce3a319de8d4bdcc291db87',1,'GpgFrontend::UI::CommonUtils::GetInstance()'],['../classGpgFrontend_1_1CoreSignalStation.html#a4ab63c97545b007d2b720c9b59ed1c47',1,'GpgFrontend::CoreSignalStation::GetInstance()'],['../classGpgFrontend_1_1SingletonStorageCollection.html#a4bba0f1f2880648909af6824bcef9568',1,'GpgFrontend::SingletonStorageCollection::GetInstance()'],['../classGpgFrontend_1_1SingletonStorageCollection_1_1Impl.html#a9cdea3d2b2d2776f241d2a871d233dd5',1,'GpgFrontend::SingletonStorageCollection::Impl::GetInstance()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#ac963fee992753970bfb5c81608d4070f',1,'GpgFrontend::SingletonFunctionObject::GetInstance()']]], ['getinvalid_249',['GetInvalid',['../classGpgFrontend_1_1GpgUID.html#a1e7436091a5de3c08727608880afedd2',1,'GpgFrontend::GpgUID']]], ['getkey_250',['GetKey',['../classGpgFrontend_1_1GpgKeyGetter.html#a74075299f1dee8cbccbf46939a1871f5',1,'GpgFrontend::GpgKeyGetter']]], diff --git a/docs/html/search/functions_6.js b/docs/html/search/functions_6.js index 46f5c955..242fb85e 100644 --- a/docs/html/search/functions_6.js +++ b/docs/html/search/functions_6.js @@ -58,8 +58,8 @@ var searchData= ['gethashalgo_1223',['GetHashAlgo',['../classGpgFrontend_1_1GpgSignature.html#a23084904b84dd0d2a619565c0ae18d2e',1,'GpgFrontend::GpgSignature']]], ['gethttprequestuseragent_1224',['GetHttpRequestUserAgent',['../namespaceGpgFrontend.html#aa0393307275afa9b4f27f7ff0d74f9ae',1,'GpgFrontend']]], ['gethumanfriendlyfilesize_1225',['GetHumanFriendlyFileSize',['../namespaceGpgFrontend.html#a5b86eb3adc57fa5f55e9f55a69031f71',1,'GpgFrontend']]], - ['getid_1226',['GetId',['../classGpgFrontend_1_1GpgKey.html#a3dec62e06f6f8f43059b293ad192e0c1',1,'GpgFrontend::GpgKey']]], - ['getid_1227',['GetID',['../classGpgFrontend_1_1GpgSubKey.html#a28be04ec888468dbd7341aa4cb28785d',1,'GpgFrontend::GpgSubKey']]], + ['getid_1226',['GetID',['../classGpgFrontend_1_1GpgSubKey.html#a28be04ec888468dbd7341aa4cb28785d',1,'GpgFrontend::GpgSubKey']]], + ['getid_1227',['GetId',['../classGpgFrontend_1_1GpgKey.html#a3dec62e06f6f8f43059b293ad192e0c1',1,'GpgFrontend::GpgKey']]], ['getinstance_1228',['GetInstance',['../classGpgFrontend_1_1SingletonFunctionObject.html#ac963fee992753970bfb5c81608d4070f',1,'GpgFrontend::SingletonFunctionObject::GetInstance()'],['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a530688726ce3a319de8d4bdcc291db87',1,'GpgFrontend::UI::CommonUtils::GetInstance()'],['../classGpgFrontend_1_1UI_1_1UISignalStation.html#a6294f44348070707b4b6abcfd1b6509d',1,'GpgFrontend::UI::UISignalStation::GetInstance()'],['../classGpgFrontend_1_1CoreSignalStation.html#a4ab63c97545b007d2b720c9b59ed1c47',1,'GpgFrontend::CoreSignalStation::GetInstance()'],['../classGpgFrontend_1_1SingletonStorageCollection.html#a4bba0f1f2880648909af6824bcef9568',1,'GpgFrontend::SingletonStorageCollection::GetInstance()'],['../classGpgFrontend_1_1SingletonStorageCollection_1_1Impl.html#a9cdea3d2b2d2776f241d2a871d233dd5',1,'GpgFrontend::SingletonStorageCollection::Impl::GetInstance()']]], ['getinvalid_1229',['GetInvalid',['../classGpgFrontend_1_1GpgUID.html#a1e7436091a5de3c08727608880afedd2',1,'GpgFrontend::GpgUID']]], ['getkey_1230',['GetKey',['../classGpgFrontend_1_1GpgKeyGetter.html#a74075299f1dee8cbccbf46939a1871f5',1,'GpgFrontend::GpgKeyGetter']]], diff --git a/docs/html/structGpgFrontend_1_1ModuleSO-members.html b/docs/html/structGpgFrontend_1_1ModuleSO-members.html index eb21943c..a449dbbd 100644 --- a/docs/html/structGpgFrontend_1_1ModuleSO-members.html +++ b/docs/html/structGpgFrontend_1_1ModuleSO-members.html @@ -95,7 +95,8 @@ $(document).ready(function(){initNavTree('structGpgFrontend_1_1ModuleSO.html','' - + +

Functions

+
template<typename... Args>
auto MakeEvent (const EventIdentifier &event_id, Args &&... args, Event::EventCallback e_cb) -> EventRefrernce
 
auto MakeEvent (const EventIdentifier &event_id, Args &&... args, Event::EventCallback e_cb) -> EventReference
 
void LoadModuleFromPath (const QString &mods_path, bool integrated)
 
module_version (defined in GpgFrontend::ModuleSO)GpgFrontend::ModuleSO
ModuleSO()=default (defined in GpgFrontend::ModuleSO)GpgFrontend::ModuleSO
ModuleSO(const QJsonObject &j) (defined in GpgFrontend::ModuleSO)GpgFrontend::ModuleSOinlineexplicit
ToJson() const -> QJsonObject (defined in GpgFrontend::ModuleSO)GpgFrontend::ModuleSOinline
set_by_user (defined in GpgFrontend::ModuleSO)GpgFrontend::ModuleSO
ToJson() const -> QJsonObject (defined in GpgFrontend::ModuleSO)GpgFrontend::ModuleSOinline
diff --git a/docs/html/structGpgFrontend_1_1ModuleSO.html b/docs/html/structGpgFrontend_1_1ModuleSO.html index e8b9bb2f..5ba1d630 100644 --- a/docs/html/structGpgFrontend_1_1ModuleSO.html +++ b/docs/html/structGpgFrontend_1_1ModuleSO.html @@ -95,7 +95,7 @@ Collaboration diagram for GpgFrontend::ModuleSO:
Collaboration graph
- +
@@ -122,6 +122,9 @@ QString  + +
module_hash bool auto_activate
 
+bool set_by_user
 

The documentation for this struct was generated from the following file: