Update Doxygen ref refs/heads/develop on 2024-04-30 17:59:32

This commit is contained in:
stehu 2024-04-30 17:59:32 +00:00
parent de068d4cc8
commit ce0440bf46
349 changed files with 195 additions and 180 deletions

View File

@ -101,7 +101,7 @@ $(document).ready(function(){initNavTree('Event_8h_source.html',''); initResizab
<div class="line"><a name="l00040"></a><span class="lineno"> 40</span>&#160; </div>
<div class="line"><a name="l00041"></a><span class="lineno"> 41</span>&#160;<span class="keyword">class </span>Event;</div>
<div class="line"><a name="l00042"></a><span class="lineno"> 42</span>&#160; </div>
<div class="line"><a name="l00043"></a><span class="lineno"> 43</span>&#160;<span class="keyword">using</span> EventRefrernce = std::shared_ptr&lt;Event&gt;;</div>
<div class="line"><a name="l00043"></a><span class="lineno"> 43</span>&#160;<span class="keyword">using</span> EventReference = std::shared_ptr&lt;Event&gt;;</div>
<div class="line"><a name="l00044"></a><span class="lineno"> 44</span>&#160;<span class="keyword">using</span> EventIdentifier = QString;</div>
<div class="line"><a name="l00045"></a><span class="lineno"> 45</span>&#160;<span class="keyword">using</span> EventTriggerIdentifier = QString;</div>
<div class="line"><a name="l00046"></a><span class="lineno"> 46</span>&#160;<span class="keyword">using</span> Evnets = std::vector&lt;Event&gt;;</div>
@ -153,7 +153,7 @@ $(document).ready(function(){initNavTree('Event_8h_source.html',''); initResizab
<div class="line"><a name="l00092"></a><span class="lineno"> 92</span>&#160; </div>
<div class="line"><a name="l00093"></a><span class="lineno"> 93</span>&#160;<span class="keyword">template</span> &lt;<span class="keyword">typename</span>... Args&gt;</div>
<div class="line"><a name="l00094"></a><span class="lineno"> 94</span>&#160;<span class="keyword">auto</span> MakeEvent(<span class="keyword">const</span> EventIdentifier&amp; event_id, Args&amp;&amp;... args,</div>
<div class="line"><a name="l00095"></a><span class="lineno"> 95</span>&#160; Event::EventCallback e_cb) -&gt; EventRefrernce {</div>
<div class="line"><a name="l00095"></a><span class="lineno"> 95</span>&#160; Event::EventCallback e_cb) -&gt; EventReference {</div>
<div class="line"><a name="l00096"></a><span class="lineno"> 96</span>&#160; std::initializer_list&lt;Event::ParameterInitializer&gt; params = {</div>
<div class="line"><a name="l00097"></a><span class="lineno"> 97</span>&#160; Event::ParameterInitializer{std::forward&lt;Args&gt;(args)}...};</div>
<div class="line"><a name="l00098"></a><span class="lineno"> 98</span>&#160; <span class="keywordflow">return</span> GpgFrontend::SecureCreateSharedObject&lt;Event&gt;(event_id, params, e_cb);</div>

View File

@ -139,9 +139,9 @@ $(document).ready(function(){initNavTree('GlobalModuleContext_8h_source.html',''
<div class="line"><a name="l00078"></a><span class="lineno"> 78</span>&#160; </div>
<div class="line"><a name="l00079"></a><span class="lineno"> 79</span>&#160; <span class="keyword">auto</span> ListenEvent(ModuleIdentifier, EventIdentifier) -&gt; bool;</div>
<div class="line"><a name="l00080"></a><span class="lineno"> 80</span>&#160; </div>
<div class="line"><a name="l00081"></a><span class="lineno"> 81</span>&#160; <span class="keyword">auto</span> TriggerEvent(EventRefrernce) -&gt; bool;</div>
<div class="line"><a name="l00081"></a><span class="lineno"> 81</span>&#160; <span class="keyword">auto</span> TriggerEvent(EventReference) -&gt; bool;</div>
<div class="line"><a name="l00082"></a><span class="lineno"> 82</span>&#160; </div>
<div class="line"><a name="l00083"></a><span class="lineno"> 83</span>&#160; <span class="keyword">auto</span> SearchEvent(EventTriggerIdentifier) -&gt; std::optional&lt;EventRefrernce&gt;;</div>
<div class="line"><a name="l00083"></a><span class="lineno"> 83</span>&#160; <span class="keyword">auto</span> SearchEvent(EventTriggerIdentifier) -&gt; std::optional&lt;EventReference&gt;;</div>
<div class="line"><a name="l00084"></a><span class="lineno"> 84</span>&#160; </div>
<div class="line"><a name="l00085"></a><span class="lineno"> 85</span>&#160; <span class="keyword">auto</span> GetModuleListening(ModuleIdentifier) -&gt; QList&lt;EventIdentifier&gt;;</div>
<div class="line"><a name="l00086"></a><span class="lineno"> 86</span>&#160; </div>

View File

@ -111,7 +111,7 @@ $(document).ready(function(){initNavTree('ModuleManager_8h_source.html',''); ini
<div class="line"><a name="l00050"></a><span class="lineno"> 50</span>&#160;<span class="keyword">class </span>ModuleManager;</div>
<div class="line"><a name="l00051"></a><span class="lineno"> 51</span>&#160;<span class="keyword">class </span>GlobalRegisterTable;</div>
<div class="line"><a name="l00052"></a><span class="lineno"> 52</span>&#160; </div>
<div class="line"><a name="l00053"></a><span class="lineno"> 53</span>&#160;<span class="keyword">using</span> EventRefrernce = std::shared_ptr&lt;Event&gt;;</div>
<div class="line"><a name="l00053"></a><span class="lineno"> 53</span>&#160;<span class="keyword">using</span> EventReference = std::shared_ptr&lt;Event&gt;;</div>
<div class="line"><a name="l00054"></a><span class="lineno"> 54</span>&#160;<span class="keyword">using</span> ModuleIdentifier = QString;</div>
<div class="line"><a name="l00055"></a><span class="lineno"> 55</span>&#160;<span class="keyword">using</span> ModulePtr = std::shared_ptr&lt;Module&gt;;</div>
<div class="line"><a name="l00056"></a><span class="lineno"> 56</span>&#160;<span class="keyword">using</span> ModuleMangerPtr = std::shared_ptr&lt;ModuleManager&gt;;</div>
@ -141,9 +141,9 @@ $(document).ready(function(){initNavTree('ModuleManager_8h_source.html',''); ini
<div class="line"><a name="l00080"></a><span class="lineno"> 80</span>&#160; </div>
<div class="line"><a name="l00081"></a><span class="lineno"> 81</span>&#160; <span class="keywordtype">void</span> ListenEvent(ModuleIdentifier, EventIdentifier);</div>
<div class="line"><a name="l00082"></a><span class="lineno"> 82</span>&#160; </div>
<div class="line"><a name="l00083"></a><span class="lineno"> 83</span>&#160; <span class="keywordtype">void</span> TriggerEvent(EventRefrernce);</div>
<div class="line"><a name="l00083"></a><span class="lineno"> 83</span>&#160; <span class="keywordtype">void</span> TriggerEvent(EventReference);</div>
<div class="line"><a name="l00084"></a><span class="lineno"> 84</span>&#160; </div>
<div class="line"><a name="l00085"></a><span class="lineno"> 85</span>&#160; <span class="keyword">auto</span> SearchEvent(EventTriggerIdentifier) -&gt; std::optional&lt;EventRefrernce&gt;;</div>
<div class="line"><a name="l00085"></a><span class="lineno"> 85</span>&#160; <span class="keyword">auto</span> SearchEvent(EventTriggerIdentifier) -&gt; std::optional&lt;EventReference&gt;;</div>
<div class="line"><a name="l00086"></a><span class="lineno"> 86</span>&#160; </div>
<div class="line"><a name="l00087"></a><span class="lineno"> 87</span>&#160; <span class="keyword">auto</span> GetModuleListening(ModuleIdentifier) -&gt; QList&lt;EventIdentifier&gt;;</div>
<div class="line"><a name="l00088"></a><span class="lineno"> 88</span>&#160; </div>
@ -228,16 +228,16 @@ $(document).ready(function(){initNavTree('ModuleManager_8h_source.html',''); ini
<div class="line"><a name="l00195"></a><span class="lineno"> 195</span>&#160; </div>
<div class="line"><a name="l00196"></a><span class="lineno"> 196</span>&#160;} <span class="comment">// namespace GpgFrontend::Module</span></div>
<div class="ttc" id="aclassGpgFrontend_1_1Module_1_1GlobalRegisterTable_html"><div class="ttname"><a href="classGpgFrontend_1_1Module_1_1GlobalRegisterTable.html">GpgFrontend::Module::GlobalRegisterTable</a></div><div class="ttdef"><b>Definition:</b> GlobalRegisterTable.h:43</div></div>
<div class="ttc" id="aclassGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl_html"><div class="ttname"><a href="classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html">GpgFrontend::Module::ModuleManager::Impl</a></div><div class="ttdef"><b>Definition:</b> ModuleManager.cpp:48</div></div>
<div class="ttc" id="aclassGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl_html"><div class="ttname"><a href="classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html">GpgFrontend::Module::ModuleManager::Impl</a></div><div class="ttdef"><b>Definition:</b> ModuleManager.cpp:47</div></div>
<div class="ttc" id="aclassGpgFrontend_1_1Module_1_1ModuleManager_html"><div class="ttname"><a href="classGpgFrontend_1_1Module_1_1ModuleManager.html">GpgFrontend::Module::ModuleManager</a></div><div class="ttdef"><b>Definition:</b> ModuleManager.h:63</div></div>
<div class="ttc" id="aclassGpgFrontend_1_1SingletonFunctionObject_html"><div class="ttname"><a href="classGpgFrontend_1_1SingletonFunctionObject.html">GpgFrontend::SingletonFunctionObject</a></div><div class="ttdef"><b>Definition:</b> GpgFunctionObject.h:57</div></div>
<div class="ttc" id="aclassGpgFrontend_1_1SingletonFunctionObject_html_ac963fee992753970bfb5c81608d4070f"><div class="ttname"><a href="classGpgFrontend_1_1SingletonFunctionObject.html#ac963fee992753970bfb5c81608d4070f">GpgFrontend::SingletonFunctionObject&lt; ModuleManager &gt;::GetInstance</a></div><div class="ttdeci">static auto GetInstance(int channel=GpgFrontend::kGpgFrontendDefaultChannel) -&gt; ModuleManager &amp;</div><div class="ttdoc">Get the Instance object.</div><div class="ttdef"><b>Definition:</b> GpgFunctionObject.h:79</div></div>
<div class="ttc" id="aclassGpgFrontend_1_1Thread_1_1TaskRunner_html"><div class="ttname"><a href="classGpgFrontend_1_1Thread_1_1TaskRunner.html">GpgFrontend::Thread::TaskRunner</a></div><div class="ttdef"><b>Definition:</b> TaskRunner.h:37</div></div>
<div class="ttc" id="anamespaceGpgFrontend_1_1Module_html"><div class="ttname"><a href="namespaceGpgFrontend_1_1Module.html">GpgFrontend::Module</a></div><div class="ttdef"><b>Definition:</b> Event.cpp:33</div></div>
<div class="ttc" id="anamespaceGpgFrontend_1_1Module_html_a5e4614222306688d8c2f36fd4ae23de3"><div class="ttname"><a href="namespaceGpgFrontend_1_1Module.html#a5e4614222306688d8c2f36fd4ae23de3">GpgFrontend::Module::UpsertRTValue</a></div><div class="ttdeci">auto UpsertRTValue(const QString &amp;namespace_, const QString &amp;key, const std::any &amp;value) -&gt; bool</div><div class="ttdef"><b>Definition:</b> ModuleManager.cpp:235</div></div>
<div class="ttc" id="anamespaceGpgFrontend_1_1Module_html_a92a4ccb9246f778143ad3e88d2068d7c"><div class="ttname"><a href="namespaceGpgFrontend_1_1Module.html#a92a4ccb9246f778143ad3e88d2068d7c">GpgFrontend::Module::ListRTChildKeys</a></div><div class="ttdeci">auto ListRTChildKeys(const QString &amp;namespace_, const QString &amp;key) -&gt; std::vector&lt; Key &gt;</div><div class="ttdef"><b>Definition:</b> ModuleManager.cpp:246</div></div>
<div class="ttc" id="anamespaceGpgFrontend_1_1Module_html_ad603c5872c4d356cb59b70b63b99126c"><div class="ttname"><a href="namespaceGpgFrontend_1_1Module.html#ad603c5872c4d356cb59b70b63b99126c">GpgFrontend::Module::IsModuleActivate</a></div><div class="ttdeci">auto IsModuleActivate(ModuleIdentifier id) -&gt; bool</div><div class="ttdef"><b>Definition:</b> ModuleManager.cpp:231</div></div>
<div class="ttc" id="anamespaceGpgFrontend_1_1Module_html_af88df9c72a7e6ec8dede9afc7234aca7"><div class="ttname"><a href="namespaceGpgFrontend_1_1Module.html#af88df9c72a7e6ec8dede9afc7234aca7">GpgFrontend::Module::ListenRTPublishEvent</a></div><div class="ttdeci">auto ListenRTPublishEvent(QObject *o, Namespace n, Key k, LPCallback c) -&gt; bool</div><div class="ttdef"><b>Definition:</b> ModuleManager.cpp:241</div></div>
<div class="ttc" id="anamespaceGpgFrontend_1_1Module_html_a5e4614222306688d8c2f36fd4ae23de3"><div class="ttname"><a href="namespaceGpgFrontend_1_1Module.html#a5e4614222306688d8c2f36fd4ae23de3">GpgFrontend::Module::UpsertRTValue</a></div><div class="ttdeci">auto UpsertRTValue(const QString &amp;namespace_, const QString &amp;key, const std::any &amp;value) -&gt; bool</div><div class="ttdef"><b>Definition:</b> ModuleManager.cpp:228</div></div>
<div class="ttc" id="anamespaceGpgFrontend_1_1Module_html_a92a4ccb9246f778143ad3e88d2068d7c"><div class="ttname"><a href="namespaceGpgFrontend_1_1Module.html#a92a4ccb9246f778143ad3e88d2068d7c">GpgFrontend::Module::ListRTChildKeys</a></div><div class="ttdeci">auto ListRTChildKeys(const QString &amp;namespace_, const QString &amp;key) -&gt; std::vector&lt; Key &gt;</div><div class="ttdef"><b>Definition:</b> ModuleManager.cpp:239</div></div>
<div class="ttc" id="anamespaceGpgFrontend_1_1Module_html_ad603c5872c4d356cb59b70b63b99126c"><div class="ttname"><a href="namespaceGpgFrontend_1_1Module.html#ad603c5872c4d356cb59b70b63b99126c">GpgFrontend::Module::IsModuleActivate</a></div><div class="ttdeci">auto IsModuleActivate(ModuleIdentifier id) -&gt; bool</div><div class="ttdef"><b>Definition:</b> ModuleManager.cpp:224</div></div>
<div class="ttc" id="anamespaceGpgFrontend_1_1Module_html_af88df9c72a7e6ec8dede9afc7234aca7"><div class="ttname"><a href="namespaceGpgFrontend_1_1Module.html#af88df9c72a7e6ec8dede9afc7234aca7">GpgFrontend::Module::ListenRTPublishEvent</a></div><div class="ttdeci">auto ListenRTPublishEvent(QObject *o, Namespace n, Key k, LPCallback c) -&gt; bool</div><div class="ttdef"><b>Definition:</b> ModuleManager.cpp:234</div></div>
<div class="ttc" id="anamespaceGpgFrontend_1_1Thread_html"><div class="ttname"><a href="namespaceGpgFrontend_1_1Thread.html">GpgFrontend::Thread</a></div><div class="ttdef"><b>Definition:</b> ModuleManager.h:39</div></div>
</div><!-- fragment --></div><!-- contents -->
</div><!-- doc-content -->

View File

@ -96,37 +96,43 @@ $(document).ready(function(){initNavTree('ModuleSO_8h_source.html',''); initResi
<div class="line"><a name="l00035"></a><span class="lineno"> 35</span>&#160; QString module_version;</div>
<div class="line"><a name="l00036"></a><span class="lineno"> 36</span>&#160; QString module_hash;</div>
<div class="line"><a name="l00037"></a><span class="lineno"> 37</span>&#160; <span class="keywordtype">bool</span> auto_activate;</div>
<div class="line"><a name="l00038"></a><span class="lineno"> 38</span>&#160; </div>
<div class="line"><a name="l00039"></a><span class="lineno"> 39</span>&#160; <a class="code" href="structGpgFrontend_1_1ModuleSO.html">ModuleSO</a>() = <span class="keywordflow">default</span>;</div>
<div class="line"><a name="l00040"></a><span class="lineno"> 40</span>&#160; </div>
<div class="line"><a name="l00041"></a><span class="lineno"> 41</span>&#160; <span class="keyword">explicit</span> <a class="code" href="structGpgFrontend_1_1ModuleSO.html">ModuleSO</a>(<span class="keyword">const</span> QJsonObject&amp; j) {</div>
<div class="line"><a name="l00042"></a><span class="lineno"> 42</span>&#160; <span class="keywordflow">if</span> (<span class="keyword">const</span> <span class="keyword">auto</span> v = j[<span class="stringliteral">&quot;module_id&quot;</span>]; v.isString()) {</div>
<div class="line"><a name="l00043"></a><span class="lineno"> 43</span>&#160; module_id = v.toString();</div>
<div class="line"><a name="l00044"></a><span class="lineno"> 44</span>&#160; }</div>
<div class="line"><a name="l00045"></a><span class="lineno"> 45</span>&#160; </div>
<div class="line"><a name="l00046"></a><span class="lineno"> 46</span>&#160; <span class="keywordflow">if</span> (<span class="keyword">const</span> <span class="keyword">auto</span> v = j[<span class="stringliteral">&quot;module_version&quot;</span>]; v.isString()) {</div>
<div class="line"><a name="l00047"></a><span class="lineno"> 47</span>&#160; module_version = v.toString();</div>
<div class="line"><a name="l00048"></a><span class="lineno"> 48</span>&#160; }</div>
<div class="line"><a name="l00049"></a><span class="lineno"> 49</span>&#160; </div>
<div class="line"><a name="l00050"></a><span class="lineno"> 50</span>&#160; <span class="keywordflow">if</span> (<span class="keyword">const</span> <span class="keyword">auto</span> v = j[<span class="stringliteral">&quot;module_hash&quot;</span>]; v.isString()) {</div>
<div class="line"><a name="l00051"></a><span class="lineno"> 51</span>&#160; module_hash = v.toString();</div>
<div class="line"><a name="l00052"></a><span class="lineno"> 52</span>&#160; }</div>
<div class="line"><a name="l00053"></a><span class="lineno"> 53</span>&#160; </div>
<div class="line"><a name="l00054"></a><span class="lineno"> 54</span>&#160; <span class="keywordflow">if</span> (<span class="keyword">const</span> <span class="keyword">auto</span> v = j[<span class="stringliteral">&quot;auto_activate&quot;</span>]; v.isBool()) {</div>
<div class="line"><a name="l00055"></a><span class="lineno"> 55</span>&#160; auto_activate = v.toBool();</div>
<div class="line"><a name="l00056"></a><span class="lineno"> 56</span>&#160; }</div>
<div class="line"><a name="l00057"></a><span class="lineno"> 57</span>&#160; }</div>
<div class="line"><a name="l00038"></a><span class="lineno"> 38</span>&#160; <span class="keywordtype">bool</span> set_by_user;</div>
<div class="line"><a name="l00039"></a><span class="lineno"> 39</span>&#160; </div>
<div class="line"><a name="l00040"></a><span class="lineno"> 40</span>&#160; <a class="code" href="structGpgFrontend_1_1ModuleSO.html">ModuleSO</a>() = <span class="keywordflow">default</span>;</div>
<div class="line"><a name="l00041"></a><span class="lineno"> 41</span>&#160; </div>
<div class="line"><a name="l00042"></a><span class="lineno"> 42</span>&#160; <span class="keyword">explicit</span> <a class="code" href="structGpgFrontend_1_1ModuleSO.html">ModuleSO</a>(<span class="keyword">const</span> QJsonObject&amp; j) {</div>
<div class="line"><a name="l00043"></a><span class="lineno"> 43</span>&#160; <span class="keywordflow">if</span> (<span class="keyword">const</span> <span class="keyword">auto</span> v = j[<span class="stringliteral">&quot;module_id&quot;</span>]; v.isString()) {</div>
<div class="line"><a name="l00044"></a><span class="lineno"> 44</span>&#160; module_id = v.toString();</div>
<div class="line"><a name="l00045"></a><span class="lineno"> 45</span>&#160; }</div>
<div class="line"><a name="l00046"></a><span class="lineno"> 46</span>&#160; </div>
<div class="line"><a name="l00047"></a><span class="lineno"> 47</span>&#160; <span class="keywordflow">if</span> (<span class="keyword">const</span> <span class="keyword">auto</span> v = j[<span class="stringliteral">&quot;module_version&quot;</span>]; v.isString()) {</div>
<div class="line"><a name="l00048"></a><span class="lineno"> 48</span>&#160; module_version = v.toString();</div>
<div class="line"><a name="l00049"></a><span class="lineno"> 49</span>&#160; }</div>
<div class="line"><a name="l00050"></a><span class="lineno"> 50</span>&#160; </div>
<div class="line"><a name="l00051"></a><span class="lineno"> 51</span>&#160; <span class="keywordflow">if</span> (<span class="keyword">const</span> <span class="keyword">auto</span> v = j[<span class="stringliteral">&quot;module_hash&quot;</span>]; v.isString()) {</div>
<div class="line"><a name="l00052"></a><span class="lineno"> 52</span>&#160; module_hash = v.toString();</div>
<div class="line"><a name="l00053"></a><span class="lineno"> 53</span>&#160; }</div>
<div class="line"><a name="l00054"></a><span class="lineno"> 54</span>&#160; </div>
<div class="line"><a name="l00055"></a><span class="lineno"> 55</span>&#160; <span class="keywordflow">if</span> (<span class="keyword">const</span> <span class="keyword">auto</span> v = j[<span class="stringliteral">&quot;auto_activate&quot;</span>]; v.isBool()) {</div>
<div class="line"><a name="l00056"></a><span class="lineno"> 56</span>&#160; auto_activate = v.toBool();</div>
<div class="line"><a name="l00057"></a><span class="lineno"> 57</span>&#160; }</div>
<div class="line"><a name="l00058"></a><span class="lineno"> 58</span>&#160; </div>
<div class="line"><a name="l00059"></a><span class="lineno"> 59</span>&#160; [[nodiscard]] <span class="keyword">auto</span> ToJson() <span class="keyword">const</span> -&gt; QJsonObject {</div>
<div class="line"><a name="l00060"></a><span class="lineno"> 60</span>&#160; QJsonObject j;</div>
<div class="line"><a name="l00061"></a><span class="lineno"> 61</span>&#160; j[<span class="stringliteral">&quot;module_id&quot;</span>] = module_id;</div>
<div class="line"><a name="l00062"></a><span class="lineno"> 62</span>&#160; j[<span class="stringliteral">&quot;module_version&quot;</span>] = module_version;</div>
<div class="line"><a name="l00063"></a><span class="lineno"> 63</span>&#160; j[<span class="stringliteral">&quot;module_hash&quot;</span>] = module_hash;</div>
<div class="line"><a name="l00064"></a><span class="lineno"> 64</span>&#160; j[<span class="stringliteral">&quot;auto_activate&quot;</span>] = auto_activate;</div>
<div class="line"><a name="l00065"></a><span class="lineno"> 65</span>&#160; <span class="keywordflow">return</span> j;</div>
<div class="line"><a name="l00066"></a><span class="lineno"> 66</span>&#160; }</div>
<div class="line"><a name="l00067"></a><span class="lineno"> 67</span>&#160;};</div>
<div class="line"><a name="l00068"></a><span class="lineno"> 68</span>&#160;} <span class="comment">// namespace GpgFrontend</span></div>
<div class="line"><a name="l00059"></a><span class="lineno"> 59</span>&#160; <span class="keywordflow">if</span> (<span class="keyword">const</span> <span class="keyword">auto</span> v = j[<span class="stringliteral">&quot;set_by_user&quot;</span>]; v.isBool()) {</div>
<div class="line"><a name="l00060"></a><span class="lineno"> 60</span>&#160; set_by_user = v.toBool();</div>
<div class="line"><a name="l00061"></a><span class="lineno"> 61</span>&#160; }</div>
<div class="line"><a name="l00062"></a><span class="lineno"> 62</span>&#160; }</div>
<div class="line"><a name="l00063"></a><span class="lineno"> 63</span>&#160; </div>
<div class="line"><a name="l00064"></a><span class="lineno"> 64</span>&#160; [[nodiscard]] <span class="keyword">auto</span> ToJson() <span class="keyword">const</span> -&gt; QJsonObject {</div>
<div class="line"><a name="l00065"></a><span class="lineno"> 65</span>&#160; QJsonObject j;</div>
<div class="line"><a name="l00066"></a><span class="lineno"> 66</span>&#160; j[<span class="stringliteral">&quot;module_id&quot;</span>] = module_id;</div>
<div class="line"><a name="l00067"></a><span class="lineno"> 67</span>&#160; j[<span class="stringliteral">&quot;module_version&quot;</span>] = module_version;</div>
<div class="line"><a name="l00068"></a><span class="lineno"> 68</span>&#160; j[<span class="stringliteral">&quot;module_hash&quot;</span>] = module_hash;</div>
<div class="line"><a name="l00069"></a><span class="lineno"> 69</span>&#160; j[<span class="stringliteral">&quot;auto_activate&quot;</span>] = auto_activate;</div>
<div class="line"><a name="l00070"></a><span class="lineno"> 70</span>&#160; j[<span class="stringliteral">&quot;set_by_user&quot;</span>] = set_by_user;</div>
<div class="line"><a name="l00071"></a><span class="lineno"> 71</span>&#160; <span class="keywordflow">return</span> j;</div>
<div class="line"><a name="l00072"></a><span class="lineno"> 72</span>&#160; }</div>
<div class="line"><a name="l00073"></a><span class="lineno"> 73</span>&#160;};</div>
<div class="line"><a name="l00074"></a><span class="lineno"> 74</span>&#160;} <span class="comment">// namespace GpgFrontend</span></div>
<div class="ttc" id="anamespaceGpgFrontend_html"><div class="ttname"><a href="namespaceGpgFrontend.html">GpgFrontend</a></div><div class="ttdef"><b>Definition:</b> app.cpp:39</div></div>
<div class="ttc" id="astructGpgFrontend_1_1ModuleSO_html"><div class="ttname"><a href="structGpgFrontend_1_1ModuleSO.html">GpgFrontend::ModuleSO</a></div><div class="ttdef"><b>Definition:</b> ModuleSO.h:33</div></div>
</div><!-- fragment --></div><!-- contents -->

View File

@ -120,7 +120,7 @@ $(document).ready(function(){initNavTree('Module_8h_source.html',''); initResiza
<div class="line"><a name="l00059"></a><span class="lineno"> 59</span>&#160; </div>
<div class="line"><a name="l00060"></a><span class="lineno"> 60</span>&#160; <span class="keyword">virtual</span> <span class="keyword">auto</span> Active() -&gt; int;</div>
<div class="line"><a name="l00061"></a><span class="lineno"> 61</span>&#160; </div>
<div class="line"><a name="l00062"></a><span class="lineno"> 62</span>&#160; <span class="keyword">virtual</span> <span class="keyword">auto</span> Exec(EventRefrernce) -&gt; int;</div>
<div class="line"><a name="l00062"></a><span class="lineno"> 62</span>&#160; <span class="keyword">virtual</span> <span class="keyword">auto</span> Exec(EventReference) -&gt; int;</div>
<div class="line"><a name="l00063"></a><span class="lineno"> 63</span>&#160; </div>
<div class="line"><a name="l00064"></a><span class="lineno"> 64</span>&#160; <span class="keyword">virtual</span> <span class="keyword">auto</span> Deactive() -&gt; int;</div>
<div class="line"><a name="l00065"></a><span class="lineno"> 65</span>&#160; </div>

View File

@ -104,9 +104,9 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1Module_1_1GlobalMo
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>ListenEvent</b>(ModuleIdentifier, EventIdentifier) -&gt; bool (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1GlobalModuleContext.html">GpgFrontend::Module::GlobalModuleContext</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1GlobalModuleContext.html">GpgFrontend::Module::GlobalModuleContext</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>p_</b> (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1GlobalModuleContext.html">GpgFrontend::Module::GlobalModuleContext</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1GlobalModuleContext.html">GpgFrontend::Module::GlobalModuleContext</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>RegisterModule</b>(ModulePtr, bool) -&gt; bool (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1GlobalModuleContext.html">GpgFrontend::Module::GlobalModuleContext</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1GlobalModuleContext.html">GpgFrontend::Module::GlobalModuleContext</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>SearchEvent</b>(EventTriggerIdentifier) -&gt; std::optional&lt; EventRefrernce &gt; (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1GlobalModuleContext.html">GpgFrontend::Module::GlobalModuleContext</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1GlobalModuleContext.html">GpgFrontend::Module::GlobalModuleContext</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>SearchEvent</b>(EventTriggerIdentifier) -&gt; std::optional&lt; EventReference &gt; (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1GlobalModuleContext.html">GpgFrontend::Module::GlobalModuleContext</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1GlobalModuleContext.html">GpgFrontend::Module::GlobalModuleContext</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>SearchModule</b>(ModuleIdentifier) -&gt; ModulePtr (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1GlobalModuleContext.html">GpgFrontend::Module::GlobalModuleContext</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1GlobalModuleContext.html">GpgFrontend::Module::GlobalModuleContext</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>TriggerEvent</b>(EventRefrernce) -&gt; bool (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1GlobalModuleContext.html">GpgFrontend::Module::GlobalModuleContext</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1GlobalModuleContext.html">GpgFrontend::Module::GlobalModuleContext</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>TriggerEvent</b>(EventReference) -&gt; bool (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1GlobalModuleContext.html">GpgFrontend::Module::GlobalModuleContext</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1GlobalModuleContext.html">GpgFrontend::Module::GlobalModuleContext</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>~GlobalModuleContext</b>() override (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1GlobalModuleContext.html">GpgFrontend::Module::GlobalModuleContext</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1GlobalModuleContext.html">GpgFrontend::Module::GlobalModuleContext</a></td><td class="entry"></td></tr>
</table></div><!-- contents -->
</div><!-- doc-content -->

View File

@ -145,12 +145,12 @@ auto&#160;</td><td class="memItemRight" valign="bottom"><b>DeactivateModule</b>
<tr class="memitem:a1f4335cab295542f49b78a8e15b6f456"><td class="memItemLeft" align="right" valign="top"><a id="a1f4335cab295542f49b78a8e15b6f456"></a>
auto&#160;</td><td class="memItemRight" valign="bottom"><b>ListenEvent</b> (ModuleIdentifier, EventIdentifier) -&gt; bool</td></tr>
<tr class="separator:a1f4335cab295542f49b78a8e15b6f456"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa656d6d835b2ccb20494ff580a7cafac"><td class="memItemLeft" align="right" valign="top"><a id="aa656d6d835b2ccb20494ff580a7cafac"></a>
auto&#160;</td><td class="memItemRight" valign="bottom"><b>TriggerEvent</b> (EventRefrernce) -&gt; bool</td></tr>
<tr class="separator:aa656d6d835b2ccb20494ff580a7cafac"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa11772c7ecb3fdc8545a67ceb8c6369b"><td class="memItemLeft" align="right" valign="top"><a id="aa11772c7ecb3fdc8545a67ceb8c6369b"></a>
auto&#160;</td><td class="memItemRight" valign="bottom"><b>SearchEvent</b> (EventTriggerIdentifier) -&gt; std::optional&lt; EventRefrernce &gt;</td></tr>
<tr class="separator:aa11772c7ecb3fdc8545a67ceb8c6369b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad9c9b7ffc770046ff1e6486ef1fc4415"><td class="memItemLeft" align="right" valign="top"><a id="ad9c9b7ffc770046ff1e6486ef1fc4415"></a>
auto&#160;</td><td class="memItemRight" valign="bottom"><b>TriggerEvent</b> (EventReference) -&gt; bool</td></tr>
<tr class="separator:ad9c9b7ffc770046ff1e6486ef1fc4415"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4c1d56338f4b4a8d594c4ecc8aac420d"><td class="memItemLeft" align="right" valign="top"><a id="a4c1d56338f4b4a8d594c4ecc8aac420d"></a>
auto&#160;</td><td class="memItemRight" valign="bottom"><b>SearchEvent</b> (EventTriggerIdentifier) -&gt; std::optional&lt; EventReference &gt;</td></tr>
<tr class="separator:a4c1d56338f4b4a8d594c4ecc8aac420d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aec9f17c91c5cb6da83b3d1a5af800895"><td class="memItemLeft" align="right" valign="top"><a id="aec9f17c91c5cb6da83b3d1a5af800895"></a>
auto&#160;</td><td class="memItemRight" valign="bottom"><b>GetModuleListening</b> (ModuleIdentifier) -&gt; QList&lt; EventIdentifier &gt;</td></tr>
<tr class="separator:aec9f17c91c5cb6da83b3d1a5af800895"><td class="memSeparator" colspan="2">&#160;</td></tr>

View File

@ -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 ]
];

View File

@ -111,9 +111,9 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1Module_1_1GlobalMo
<tr bgcolor="#f0f0f0"><td class="entry"><b>ModuleRegisterInfoPtr</b> typedef (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html">GpgFrontend::Module::GlobalModuleContext::Impl</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html">GpgFrontend::Module::GlobalModuleContext::Impl</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>RegisterModule</b>(const ModulePtr &amp;module, bool integrated_module) -&gt; bool (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html">GpgFrontend::Module::GlobalModuleContext::Impl</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html">GpgFrontend::Module::GlobalModuleContext::Impl</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>search_module_register_table</b>(const ModuleIdentifier &amp;identifier) const -&gt; std::optional&lt; ModuleRegisterInfoPtr &gt; (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html">GpgFrontend::Module::GlobalModuleContext::Impl</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html">GpgFrontend::Module::GlobalModuleContext::Impl</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">private</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>SearchEvent</b>(const EventTriggerIdentifier &amp;trigger_id) -&gt; std::optional&lt; EventRefrernce &gt; (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html">GpgFrontend::Module::GlobalModuleContext::Impl</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html">GpgFrontend::Module::GlobalModuleContext::Impl</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>SearchEvent</b>(const EventTriggerIdentifier &amp;trigger_id) -&gt; std::optional&lt; EventReference &gt; (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html">GpgFrontend::Module::GlobalModuleContext::Impl</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html">GpgFrontend::Module::GlobalModuleContext::Impl</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>SearchModule</b>(ModuleIdentifier module_id) -&gt; ModulePtr (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html">GpgFrontend::Module::GlobalModuleContext::Impl</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html">GpgFrontend::Module::GlobalModuleContext::Impl</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>TriggerEvent</b>(const EventRefrernce &amp;event) -&gt; bool (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html">GpgFrontend::Module::GlobalModuleContext::Impl</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html">GpgFrontend::Module::GlobalModuleContext::Impl</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>TriggerEvent</b>(const EventReference &amp;event) -&gt; bool (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html">GpgFrontend::Module::GlobalModuleContext::Impl</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl.html">GpgFrontend::Module::GlobalModuleContext::Impl</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
</table></div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->

View File

@ -150,12 +150,12 @@ auto&#160;</td><td class="memItemRight" valign="bottom"><b>ListenEvent</b> (Modu
<tr class="memitem:ab84d50a8d389015d29115d28ab8edbde"><td class="memItemLeft" align="right" valign="top"><a id="ab84d50a8d389015d29115d28ab8edbde"></a>
auto&#160;</td><td class="memItemRight" valign="bottom"><b>DeactivateModule</b> (ModuleIdentifier module_id) -&gt; bool</td></tr>
<tr class="separator:ab84d50a8d389015d29115d28ab8edbde"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac7991d6d2022915212987b7a2d330446"><td class="memItemLeft" align="right" valign="top"><a id="ac7991d6d2022915212987b7a2d330446"></a>
auto&#160;</td><td class="memItemRight" valign="bottom"><b>TriggerEvent</b> (const EventRefrernce &amp;event) -&gt; bool</td></tr>
<tr class="separator:ac7991d6d2022915212987b7a2d330446"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab3e05b1a9bf5f03ece0caa1fc8809b50"><td class="memItemLeft" align="right" valign="top"><a id="ab3e05b1a9bf5f03ece0caa1fc8809b50"></a>
auto&#160;</td><td class="memItemRight" valign="bottom"><b>SearchEvent</b> (const EventTriggerIdentifier &amp;trigger_id) -&gt; std::optional&lt; EventRefrernce &gt;</td></tr>
<tr class="separator:ab3e05b1a9bf5f03ece0caa1fc8809b50"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a07acdf211b98d8e917abb19406e9507d"><td class="memItemLeft" align="right" valign="top"><a id="a07acdf211b98d8e917abb19406e9507d"></a>
auto&#160;</td><td class="memItemRight" valign="bottom"><b>TriggerEvent</b> (const EventReference &amp;event) -&gt; bool</td></tr>
<tr class="separator:a07acdf211b98d8e917abb19406e9507d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae3f001188f83e173fd84f89e3973bef2"><td class="memItemLeft" align="right" valign="top"><a id="ae3f001188f83e173fd84f89e3973bef2"></a>
auto&#160;</td><td class="memItemRight" valign="bottom"><b>SearchEvent</b> (const EventTriggerIdentifier &amp;trigger_id) -&gt; std::optional&lt; EventReference &gt;</td></tr>
<tr class="separator:ae3f001188f83e173fd84f89e3973bef2"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa4262354dcf1d56bbd732afbac5b1e82"><td class="memItemLeft" align="right" valign="top"><a id="aa4262354dcf1d56bbd732afbac5b1e82"></a>
auto&#160;</td><td class="memItemRight" valign="bottom"><b>IsModuleActivated</b> (const ModuleIdentifier &amp;m_id) const -&gt; bool</td></tr>
<tr class="separator:aa4262354dcf1d56bbd732afbac5b1e82"><td class="memSeparator" colspan="2">&#160;</td></tr>
@ -198,9 +198,9 @@ std::unordered_map&lt; ModuleIdentifier, ModuleRegisterInfoPtr &gt;&#160;</td><t
<tr class="memitem:aaa6ec2fcc2569cd1b22f419feadaa568"><td class="memItemLeft" align="right" valign="top"><a id="aaa6ec2fcc2569cd1b22f419feadaa568"></a>
std::map&lt; EventIdentifier, std::unordered_set&lt; ModuleIdentifier &gt; &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>module_events_table_</b></td></tr>
<tr class="separator:aaa6ec2fcc2569cd1b22f419feadaa568"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a36f9cf218e3cd84658cbd61116d34a96"><td class="memItemLeft" align="right" valign="top"><a id="a36f9cf218e3cd84658cbd61116d34a96"></a>
std::map&lt; EventTriggerIdentifier, EventRefrernce &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>module_on_triggering_events_table_</b></td></tr>
<tr class="separator:a36f9cf218e3cd84658cbd61116d34a96"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8b1169966c7200118373bb56d555a89c"><td class="memItemLeft" align="right" valign="top"><a id="a8b1169966c7200118373bb56d555a89c"></a>
std::map&lt; EventTriggerIdentifier, EventReference &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>module_on_triggering_events_table_</b></td></tr>
<tr class="separator:a8b1169966c7200118373bb56d555a89c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acc10c7acd6244ef93e85ffb6c4ad267e"><td class="memItemLeft" align="right" valign="top"><a id="acc10c7acd6244ef93e85ffb6c4ad267e"></a>
std::set&lt; int &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>acquired_channel_</b></td></tr>
<tr class="separator:acc10c7acd6244ef93e85ffb6c4ad267e"><td class="memSeparator" colspan="2">&#160;</td></tr>

View File

@ -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 ]
];

View File

@ -6,11 +6,11 @@
<area shape="rect" id="node5" title=" " alt="" coords="375,5,414,83"/>
<area shape="rect" id="node6" title=" " alt="" coords="367,293,502,370"/>
<area shape="rect" id="node9" title=" " alt="" coords="55,145,164,223"/>
<area shape="rect" id="node14" title=" " alt="" coords="861,285,1013,377"/>
<area shape="rect" id="node10" title=" " alt="" coords="691,510,928,602"/>
<area shape="rect" id="node13" title=" " alt="" coords="861,285,1013,377"/>
<area shape="rect" id="node14" title=" " alt="" coords="691,510,928,602"/>
<area shape="rect" id="node7" title=" " alt="" coords="739,145,778,223"/>
<area shape="rect" id="node11" title=" " alt="" coords="680,293,837,370"/>
<area shape="rect" id="node8" title=" " alt="" coords="5,401,123,479"/>
<area shape="rect" id="node12" title=" " alt="" coords="488,510,667,602"/>
<area shape="rect" id="node13" title=" " alt="" coords="952,503,1139,609"/>
<area shape="rect" id="node10" title=" " alt="" coords="488,510,667,602"/>
<area shape="rect" id="node12" title=" " alt="" coords="952,503,1139,609"/>
</map>

View File

@ -1 +1 @@
d155e5fbc134cca6f2736512712c3255
5a0ca382e6208639961c08a4dc92e594

Binary file not shown.

Before

Width:  |  Height:  |  Size: 119 KiB

After

Width:  |  Height:  |  Size: 119 KiB

View File

@ -91,7 +91,7 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1Module_1_1Module.h
<table class="directory">
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>Active</b>() -&gt; int (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1Module.html">GpgFrontend::Module::Module</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1Module.html">GpgFrontend::Module::Module</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>Deactive</b>() -&gt; int (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1Module.html">GpgFrontend::Module::Module</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1Module.html">GpgFrontend::Module::Module</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>Exec</b>(EventRefrernce) -&gt; int (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1Module.html">GpgFrontend::Module::Module</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1Module.html">GpgFrontend::Module::Module</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>Exec</b>(EventReference) -&gt; int (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1Module.html">GpgFrontend::Module::Module</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1Module.html">GpgFrontend::Module::Module</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>getChannel</b>() -&gt; int (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1Module.html">GpgFrontend::Module::Module</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1Module.html">GpgFrontend::Module::Module</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>getDefaultChannel</b>() -&gt; int (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1Module.html">GpgFrontend::Module::Module</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1Module.html">GpgFrontend::Module::Module</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>GetModuleHash</b>() const -&gt; QString (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1Module.html">GpgFrontend::Module::Module</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1Module.html">GpgFrontend::Module::Module</a></td><td class="entry"></td></tr>

View File

@ -133,9 +133,9 @@ virtual auto&#160;</td><td class="memItemRight" valign="bottom"><b>Register</b>
<tr class="memitem:aba8d8690179721ddcbcabac04a72a157"><td class="memItemLeft" align="right" valign="top"><a id="aba8d8690179721ddcbcabac04a72a157"></a>
virtual auto&#160;</td><td class="memItemRight" valign="bottom"><b>Active</b> () -&gt; int</td></tr>
<tr class="separator:aba8d8690179721ddcbcabac04a72a157"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aaa782445f133f0ad740cdfee687f09a1"><td class="memItemLeft" align="right" valign="top"><a id="aaa782445f133f0ad740cdfee687f09a1"></a>
virtual auto&#160;</td><td class="memItemRight" valign="bottom"><b>Exec</b> (EventRefrernce) -&gt; int</td></tr>
<tr class="separator:aaa782445f133f0ad740cdfee687f09a1"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af0b52299d613acc0c1df7d542b00dccd"><td class="memItemLeft" align="right" valign="top"><a id="af0b52299d613acc0c1df7d542b00dccd"></a>
virtual auto&#160;</td><td class="memItemRight" valign="bottom"><b>Exec</b> (EventReference) -&gt; int</td></tr>
<tr class="separator:af0b52299d613acc0c1df7d542b00dccd"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2707656f14bec27c74a3d3f476a82494"><td class="memItemLeft" align="right" valign="top"><a id="a2707656f14bec27c74a3d3f476a82494"></a>
virtual auto&#160;</td><td class="memItemRight" valign="bottom"><b>Deactive</b> () -&gt; int</td></tr>
<tr class="separator:a2707656f14bec27c74a3d3f476a82494"><td class="memSeparator" colspan="2">&#160;</td></tr>

View File

@ -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 ],

View File

@ -116,7 +116,7 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1Module_1_1ModuleMa
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>RegisterModule</b>(ModulePtr) (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1ModuleManager.html">GpgFrontend::Module::ModuleManager</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1ModuleManager.html">GpgFrontend::Module::ModuleManager</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classGpgFrontend_1_1SingletonFunctionObject.html#ab49b1d50252e1934691a9483a6df2106">ReleaseChannel</a>(int channel)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1SingletonFunctionObject.html">GpgFrontend::SingletonFunctionObject&lt; ModuleManager &gt;</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">static</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>RetrieveRTValue</b>(Namespace, Key) -&gt; std::optional&lt; std::any &gt; (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1ModuleManager.html">GpgFrontend::Module::ModuleManager</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1ModuleManager.html">GpgFrontend::Module::ModuleManager</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>SearchEvent</b>(EventTriggerIdentifier) -&gt; std::optional&lt; EventRefrernce &gt; (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1ModuleManager.html">GpgFrontend::Module::ModuleManager</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1ModuleManager.html">GpgFrontend::Module::ModuleManager</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>SearchEvent</b>(EventTriggerIdentifier) -&gt; std::optional&lt; EventReference &gt; (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1ModuleManager.html">GpgFrontend::Module::ModuleManager</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1ModuleManager.html">GpgFrontend::Module::ModuleManager</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>SearchModule</b>(ModuleIdentifier) -&gt; ModulePtr (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1ModuleManager.html">GpgFrontend::Module::ModuleManager</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1ModuleManager.html">GpgFrontend::Module::ModuleManager</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classGpgFrontend_1_1ChannelObject.html#aa3b19cad6d873b314bba32a3dae85f09">SetChannel</a>(int channel)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1ChannelObject.html">GpgFrontend::ChannelObject</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classGpgFrontend_1_1SingletonFunctionObject.html#a194e49b07d46345bdad386505d743a61">SingletonFunctionObject</a>(const SingletonFunctionObject&lt; ModuleManager &gt; &amp;)=delete</td><td class="entry"><a class="el" href="classGpgFrontend_1_1SingletonFunctionObject.html">GpgFrontend::SingletonFunctionObject&lt; ModuleManager &gt;</a></td><td class="entry"></td></tr>
@ -124,7 +124,7 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1Module_1_1ModuleMa
<tr class="even"><td class="entry"><a class="el" href="classGpgFrontend_1_1SingletonFunctionObject.html#a7090636bed6f4bad5b99f28f6872c645">SingletonFunctionObject</a>(const ModuleManager &amp;)=delete</td><td class="entry"><a class="el" href="classGpgFrontend_1_1SingletonFunctionObject.html">GpgFrontend::SingletonFunctionObject&lt; ModuleManager &gt;</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classGpgFrontend_1_1SingletonFunctionObject.html#a02e76b42ab51d77588b01c7508bed258">SingletonFunctionObject</a>()=default</td><td class="entry"><a class="el" href="classGpgFrontend_1_1SingletonFunctionObject.html">GpgFrontend::SingletonFunctionObject&lt; ModuleManager &gt;</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classGpgFrontend_1_1SingletonFunctionObject.html#a4aa7f1eb1d3281bb1fccfcbb1b416251">SingletonFunctionObject</a>(int channel)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1SingletonFunctionObject.html">GpgFrontend::SingletonFunctionObject&lt; ModuleManager &gt;</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">explicit</span><span class="mlabel">protected</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>TriggerEvent</b>(EventRefrernce) (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1ModuleManager.html">GpgFrontend::Module::ModuleManager</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1ModuleManager.html">GpgFrontend::Module::ModuleManager</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>TriggerEvent</b>(EventReference) (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1ModuleManager.html">GpgFrontend::Module::ModuleManager</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1ModuleManager.html">GpgFrontend::Module::ModuleManager</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>type_</b> (defined in <a class="el" href="classGpgFrontend_1_1ChannelObject.html">GpgFrontend::ChannelObject</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1ChannelObject.html">GpgFrontend::ChannelObject</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>UpsertRTValue</b>(Namespace, Key, std::any) -&gt; bool (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1ModuleManager.html">GpgFrontend::Module::ModuleManager</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1ModuleManager.html">GpgFrontend::Module::ModuleManager</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classGpgFrontend_1_1ChannelObject.html#a85a29ff6a1233114eb9f159c408cbe35">~ChannelObject</a>() noexcept</td><td class="entry"><a class="el" href="classGpgFrontend_1_1ChannelObject.html">GpgFrontend::ChannelObject</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>

View File

@ -145,12 +145,12 @@ auto&#160;</td><td class="memItemRight" valign="bottom"><b>IsIntegratedModule</b
<tr class="memitem:a28535b400738a4601ee836603aa13480"><td class="memItemLeft" align="right" valign="top"><a id="a28535b400738a4601ee836603aa13480"></a>
void&#160;</td><td class="memItemRight" valign="bottom"><b>ListenEvent</b> (ModuleIdentifier, EventIdentifier)</td></tr>
<tr class="separator:a28535b400738a4601ee836603aa13480"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad802fe563954717b33ab85f5a781c06f"><td class="memItemLeft" align="right" valign="top"><a id="ad802fe563954717b33ab85f5a781c06f"></a>
void&#160;</td><td class="memItemRight" valign="bottom"><b>TriggerEvent</b> (EventRefrernce)</td></tr>
<tr class="separator:ad802fe563954717b33ab85f5a781c06f"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1a1e0d46101d6f1dd6ca2751cf77577e"><td class="memItemLeft" align="right" valign="top"><a id="a1a1e0d46101d6f1dd6ca2751cf77577e"></a>
auto&#160;</td><td class="memItemRight" valign="bottom"><b>SearchEvent</b> (EventTriggerIdentifier) -&gt; std::optional&lt; EventRefrernce &gt;</td></tr>
<tr class="separator:a1a1e0d46101d6f1dd6ca2751cf77577e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae4e4a6c3cd06de7da34b59822d893ecc"><td class="memItemLeft" align="right" valign="top"><a id="ae4e4a6c3cd06de7da34b59822d893ecc"></a>
void&#160;</td><td class="memItemRight" valign="bottom"><b>TriggerEvent</b> (EventReference)</td></tr>
<tr class="separator:ae4e4a6c3cd06de7da34b59822d893ecc"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afa0844590ddfdc6e44cbea4303f34382"><td class="memItemLeft" align="right" valign="top"><a id="afa0844590ddfdc6e44cbea4303f34382"></a>
auto&#160;</td><td class="memItemRight" valign="bottom"><b>SearchEvent</b> (EventTriggerIdentifier) -&gt; std::optional&lt; EventReference &gt;</td></tr>
<tr class="separator:afa0844590ddfdc6e44cbea4303f34382"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a89fecabfd53b324b53242959a87d1492"><td class="memItemLeft" align="right" valign="top"><a id="a89fecabfd53b324b53242959a87d1492"></a>
auto&#160;</td><td class="memItemRight" valign="bottom"><b>GetModuleListening</b> (ModuleIdentifier) -&gt; QList&lt; EventIdentifier &gt;</td></tr>
<tr class="separator:a89fecabfd53b324b53242959a87d1492"><td class="memSeparator" colspan="2">&#160;</td></tr>

View File

@ -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 ]
];

View File

@ -108,9 +108,9 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1Module_1_1ModuleMa
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>module_libraries_</b> (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html">GpgFrontend::Module::ModuleManager::Impl</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html">GpgFrontend::Module::ModuleManager::Impl</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>RegisterModule</b>(const ModulePtr &amp;module) (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html">GpgFrontend::Module::ModuleManager::Impl</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html">GpgFrontend::Module::ModuleManager::Impl</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>RetrieveRTValue</b>(Namespace n, Key k) -&gt; std::optional&lt; std::any &gt; (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html">GpgFrontend::Module::ModuleManager::Impl</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html">GpgFrontend::Module::ModuleManager::Impl</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>SearchEvent</b>(EventTriggerIdentifier trigger_id) -&gt; std::optional&lt; EventRefrernce &gt; (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html">GpgFrontend::Module::ModuleManager::Impl</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html">GpgFrontend::Module::ModuleManager::Impl</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>SearchEvent</b>(EventTriggerIdentifier trigger_id) -&gt; std::optional&lt; EventReference &gt; (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html">GpgFrontend::Module::ModuleManager::Impl</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html">GpgFrontend::Module::ModuleManager::Impl</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>SearchModule</b>(ModuleIdentifier module_id) -&gt; ModulePtr (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html">GpgFrontend::Module::ModuleManager::Impl</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html">GpgFrontend::Module::ModuleManager::Impl</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>TriggerEvent</b>(const EventRefrernce &amp;event) (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html">GpgFrontend::Module::ModuleManager::Impl</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html">GpgFrontend::Module::ModuleManager::Impl</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>TriggerEvent</b>(const EventReference &amp;event) (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html">GpgFrontend::Module::ModuleManager::Impl</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html">GpgFrontend::Module::ModuleManager::Impl</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>UpsertRTValue</b>(Namespace n, Key k, std::any v) -&gt; bool (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html">GpgFrontend::Module::ModuleManager::Impl</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html">GpgFrontend::Module::ModuleManager::Impl</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>~Impl</b>()=default (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html">GpgFrontend::Module::ModuleManager::Impl</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl.html">GpgFrontend::Module::ModuleManager::Impl</a></td><td class="entry"></td></tr>
</table></div><!-- contents -->

View File

@ -119,12 +119,12 @@ void&#160;</td><td class="memItemRight" valign="bottom"><b>RegisterModule</b> (c
<tr class="memitem:a993748e05bd4e6048a8f073328244804"><td class="memItemLeft" align="right" valign="top"><a id="a993748e05bd4e6048a8f073328244804"></a>
void&#160;</td><td class="memItemRight" valign="bottom"><b>ListenEvent</b> (const ModuleIdentifier &amp;module_id, const EventIdentifier &amp;event_id)</td></tr>
<tr class="separator:a993748e05bd4e6048a8f073328244804"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a41f8154e4d1e211cc1dbc9ba5d847e89"><td class="memItemLeft" align="right" valign="top"><a id="a41f8154e4d1e211cc1dbc9ba5d847e89"></a>
void&#160;</td><td class="memItemRight" valign="bottom"><b>TriggerEvent</b> (const EventRefrernce &amp;event)</td></tr>
<tr class="separator:a41f8154e4d1e211cc1dbc9ba5d847e89"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ada2e879d721026aa1b37e66c16501544"><td class="memItemLeft" align="right" valign="top"><a id="ada2e879d721026aa1b37e66c16501544"></a>
auto&#160;</td><td class="memItemRight" valign="bottom"><b>SearchEvent</b> (EventTriggerIdentifier trigger_id) -&gt; std::optional&lt; EventRefrernce &gt;</td></tr>
<tr class="separator:ada2e879d721026aa1b37e66c16501544"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac15fef1d9b22075e819855e4b4c09a52"><td class="memItemLeft" align="right" valign="top"><a id="ac15fef1d9b22075e819855e4b4c09a52"></a>
void&#160;</td><td class="memItemRight" valign="bottom"><b>TriggerEvent</b> (const EventReference &amp;event)</td></tr>
<tr class="separator:ac15fef1d9b22075e819855e4b4c09a52"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a01eadb53513afb01c88dc3f97a6c2459"><td class="memItemLeft" align="right" valign="top"><a id="a01eadb53513afb01c88dc3f97a6c2459"></a>
auto&#160;</td><td class="memItemRight" valign="bottom"><b>SearchEvent</b> (EventTriggerIdentifier trigger_id) -&gt; std::optional&lt; EventReference &gt;</td></tr>
<tr class="separator:a01eadb53513afb01c88dc3f97a6c2459"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa4739c519e47ab297a2f9d19c603922a"><td class="memItemLeft" align="right" valign="top"><a id="aa4739c519e47ab297a2f9d19c603922a"></a>
auto&#160;</td><td class="memItemRight" valign="bottom"><b>GetModuleListening</b> (ModuleIdentifier module_id) -&gt; QList&lt; EventIdentifier &gt;</td></tr>
<tr class="separator:aa4739c519e47ab297a2f9d19c603922a"><td class="memSeparator" colspan="2">&#160;</td></tr>

View File

@ -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 ],

View File

@ -93,7 +93,7 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1Module_1_1Module_1
<tr bgcolor="#f0f0f0"><td class="entry"><b>Active</b>() -&gt; int (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1Module_1_1Impl.html">GpgFrontend::Module::Module::Impl</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1Module_1_1Impl.html">GpgFrontend::Module::Module::Impl</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>deactivate_api_</b> (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1Module_1_1Impl.html">GpgFrontend::Module::Module::Impl</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1Module_1_1Impl.html">GpgFrontend::Module::Module::Impl</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>Deactive</b>() -&gt; int (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1Module_1_1Impl.html">GpgFrontend::Module::Module::Impl</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1Module_1_1Impl.html">GpgFrontend::Module::Module::Impl</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>Exec</b>(const EventRefrernce &amp;event) -&gt; int (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1Module_1_1Impl.html">GpgFrontend::Module::Module::Impl</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1Module_1_1Impl.html">GpgFrontend::Module::Module::Impl</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>Exec</b>(const EventReference &amp;event) -&gt; int (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1Module_1_1Impl.html">GpgFrontend::Module::Module::Impl</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1Module_1_1Impl.html">GpgFrontend::Module::Module::Impl</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>ExecCallback</b> typedef (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1Module_1_1Impl.html">GpgFrontend::Module::Module::Impl</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1Module_1_1Impl.html">GpgFrontend::Module::Module::Impl</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>execute_api_</b> (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1Module_1_1Impl.html">GpgFrontend::Module::Module::Impl</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1Module_1_1Impl.html">GpgFrontend::Module::Module::Impl</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>get_gpc</b>() -&gt; GlobalModuleContext * (defined in <a class="el" href="classGpgFrontend_1_1Module_1_1Module_1_1Impl.html">GpgFrontend::Module::Module::Impl</a>)</td><td class="entry"><a class="el" href="classGpgFrontend_1_1Module_1_1Module_1_1Impl.html">GpgFrontend::Module::Module::Impl</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">private</span></td></tr>

View File

@ -137,9 +137,9 @@ auto&#160;</td><td class="memItemRight" valign="bottom"><b>Register</b> () -&gt;
<tr class="memitem:aa55c74b6387af03a60ec3ec749b925c3"><td class="memItemLeft" align="right" valign="top"><a id="aa55c74b6387af03a60ec3ec749b925c3"></a>
auto&#160;</td><td class="memItemRight" valign="bottom"><b>Active</b> () -&gt; int</td></tr>
<tr class="separator:aa55c74b6387af03a60ec3ec749b925c3"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a336d8016bd94c87e351c490a9dc5185c"><td class="memItemLeft" align="right" valign="top"><a id="a336d8016bd94c87e351c490a9dc5185c"></a>
auto&#160;</td><td class="memItemRight" valign="bottom"><b>Exec</b> (const EventRefrernce &amp;event) -&gt; int</td></tr>
<tr class="separator:a336d8016bd94c87e351c490a9dc5185c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac9ebd95fcd53af661e0461dc7ca0b421"><td class="memItemLeft" align="right" valign="top"><a id="ac9ebd95fcd53af661e0461dc7ca0b421"></a>
auto&#160;</td><td class="memItemRight" valign="bottom"><b>Exec</b> (const EventReference &amp;event) -&gt; int</td></tr>
<tr class="separator:ac9ebd95fcd53af661e0461dc7ca0b421"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0cb4bb7366fe1787adbe0590c3188ae6"><td class="memItemLeft" align="right" valign="top"><a id="a0cb4bb7366fe1787adbe0590c3188ae6"></a>
auto&#160;</td><td class="memItemRight" valign="bottom"><b>Deactive</b> () -&gt; int</td></tr>
<tr class="separator:a0cb4bb7366fe1787adbe0590c3188ae6"><td class="memSeparator" colspan="2">&#160;</td></tr>

View File

@ -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 ],

View File

@ -110,9 +110,9 @@ Classes</h2></td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="typedef-members"></a>
Typedefs</h2></td></tr>
<tr class="memitem:a340abcd73c766e5691e90e504b3cd975"><td class="memItemLeft" align="right" valign="top"><a id="a340abcd73c766e5691e90e504b3cd975"></a>
using&#160;</td><td class="memItemRight" valign="bottom"><b>EventRefrernce</b> = std::shared_ptr&lt; <a class="el" href="classGpgFrontend_1_1Module_1_1Event.html">Event</a> &gt;</td></tr>
<tr class="separator:a340abcd73c766e5691e90e504b3cd975"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab5e154977c509d24fd9ef231a39b95cb"><td class="memItemLeft" align="right" valign="top"><a id="ab5e154977c509d24fd9ef231a39b95cb"></a>
using&#160;</td><td class="memItemRight" valign="bottom"><b>EventReference</b> = std::shared_ptr&lt; <a class="el" href="classGpgFrontend_1_1Module_1_1Event.html">Event</a> &gt;</td></tr>
<tr class="separator:ab5e154977c509d24fd9ef231a39b95cb"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0c3d65fe66a8f7e0fc93d0a45a899723"><td class="memItemLeft" align="right" valign="top"><a id="a0c3d65fe66a8f7e0fc93d0a45a899723"></a>
using&#160;</td><td class="memItemRight" valign="bottom"><b>EventIdentifier</b> = QString</td></tr>
<tr class="separator:a0c3d65fe66a8f7e0fc93d0a45a899723"><td class="memSeparator" colspan="2">&#160;</td></tr>
@ -161,10 +161,10 @@ using&#160;</td><td class="memItemRight" valign="bottom"><b>ModuleMangerPtr</b>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="func-members"></a>
Functions</h2></td></tr>
<tr class="memitem:aaafda413ba6ccb2e0e5e866f11cf8dc5"><td class="memTemplParams" colspan="2"><a id="aaafda413ba6ccb2e0e5e866f11cf8dc5"></a>
<tr class="memitem:a8e7cac96091d6c396cf6b1254e8b5735"><td class="memTemplParams" colspan="2"><a id="a8e7cac96091d6c396cf6b1254e8b5735"></a>
template&lt;typename... Args&gt; </td></tr>
<tr class="memitem:aaafda413ba6ccb2e0e5e866f11cf8dc5"><td class="memTemplItemLeft" align="right" valign="top">auto&#160;</td><td class="memTemplItemRight" valign="bottom"><b>MakeEvent</b> (const EventIdentifier &amp;event_id, Args &amp;&amp;... args, Event::EventCallback e_cb) -&gt; EventRefrernce</td></tr>
<tr class="separator:aaafda413ba6ccb2e0e5e866f11cf8dc5"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8e7cac96091d6c396cf6b1254e8b5735"><td class="memTemplItemLeft" align="right" valign="top">auto&#160;</td><td class="memTemplItemRight" valign="bottom"><b>MakeEvent</b> (const EventIdentifier &amp;event_id, Args &amp;&amp;... args, Event::EventCallback e_cb) -&gt; EventReference</td></tr>
<tr class="separator:a8e7cac96091d6c396cf6b1254e8b5735"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abed70603b6806aca6d2db12a2448e1e3"><td class="memItemLeft" align="right" valign="top"><a id="abed70603b6806aca6d2db12a2448e1e3"></a>
void&#160;</td><td class="memItemRight" valign="bottom"><b>LoadModuleFromPath</b> (const QString &amp;mods_path, bool integrated)</td></tr>
<tr class="separator:abed70603b6806aca6d2db12a2448e1e3"><td class="memSeparator" colspan="2">&#160;</td></tr>

View File

@ -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 ],

View File

@ -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';

View File

@ -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],

View File

@ -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]
};

View File

@ -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]
};

View File

@ -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]
};

View File

@ -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],

View File

@ -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],

View File

@ -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']]],

View File

@ -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']]],

View File

@ -95,7 +95,8 @@ $(document).ready(function(){initNavTree('structGpgFrontend_1_1ModuleSO.html',''
<tr bgcolor="#f0f0f0"><td class="entry"><b>module_version</b> (defined in <a class="el" href="structGpgFrontend_1_1ModuleSO.html">GpgFrontend::ModuleSO</a>)</td><td class="entry"><a class="el" href="structGpgFrontend_1_1ModuleSO.html">GpgFrontend::ModuleSO</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>ModuleSO</b>()=default (defined in <a class="el" href="structGpgFrontend_1_1ModuleSO.html">GpgFrontend::ModuleSO</a>)</td><td class="entry"><a class="el" href="structGpgFrontend_1_1ModuleSO.html">GpgFrontend::ModuleSO</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>ModuleSO</b>(const QJsonObject &amp;j) (defined in <a class="el" href="structGpgFrontend_1_1ModuleSO.html">GpgFrontend::ModuleSO</a>)</td><td class="entry"><a class="el" href="structGpgFrontend_1_1ModuleSO.html">GpgFrontend::ModuleSO</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">explicit</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>ToJson</b>() const -&gt; QJsonObject (defined in <a class="el" href="structGpgFrontend_1_1ModuleSO.html">GpgFrontend::ModuleSO</a>)</td><td class="entry"><a class="el" href="structGpgFrontend_1_1ModuleSO.html">GpgFrontend::ModuleSO</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>set_by_user</b> (defined in <a class="el" href="structGpgFrontend_1_1ModuleSO.html">GpgFrontend::ModuleSO</a>)</td><td class="entry"><a class="el" href="structGpgFrontend_1_1ModuleSO.html">GpgFrontend::ModuleSO</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>ToJson</b>() const -&gt; QJsonObject (defined in <a class="el" href="structGpgFrontend_1_1ModuleSO.html">GpgFrontend::ModuleSO</a>)</td><td class="entry"><a class="el" href="structGpgFrontend_1_1ModuleSO.html">GpgFrontend::ModuleSO</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
</table></div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->

View File

@ -95,7 +95,7 @@ Collaboration diagram for GpgFrontend::ModuleSO:</div>
<div class="dyncontent">
<div class="center"><img src="structGpgFrontend_1_1ModuleSO__coll__graph.png" border="0" usemap="#aGpgFrontend_1_1ModuleSO_coll__map" alt="Collaboration graph"/></div>
<map name="aGpgFrontend_1_1ModuleSO_coll__map" id="aGpgFrontend_1_1ModuleSO_coll__map">
<area shape="rect" title=" " alt="" coords="5,5,184,156"/>
<area shape="rect" title=" " alt="" coords="5,5,184,171"/>
</map>
</div>
<table class="memberdecls">
@ -122,6 +122,9 @@ QString&#160;</td><td class="memItemRight" valign="bottom"><b>module_hash</b></t
<tr class="memitem:ad00b3665fe25d22d3b8d17fd43229978"><td class="memItemLeft" align="right" valign="top"><a id="ad00b3665fe25d22d3b8d17fd43229978"></a>
bool&#160;</td><td class="memItemRight" valign="bottom"><b>auto_activate</b></td></tr>
<tr class="separator:ad00b3665fe25d22d3b8d17fd43229978"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aeb2565c17ffee4c765c9500608f39fa2"><td class="memItemLeft" align="right" valign="top"><a id="aeb2565c17ffee4c765c9500608f39fa2"></a>
bool&#160;</td><td class="memItemRight" valign="bottom"><b>set_by_user</b></td></tr>
<tr class="separator:aeb2565c17ffee4c765c9500608f39fa2"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table>
<hr/>The documentation for this struct was generated from the following file:<ul>
<li>src/core/struct/settings_object/<a class="el" href="ModuleSO_8h_source.html">ModuleSO.h</a></li>

View File

@ -6,5 +6,6 @@ var structGpgFrontend_1_1ModuleSO =
[ "auto_activate", "structGpgFrontend_1_1ModuleSO.html#ad00b3665fe25d22d3b8d17fd43229978", null ],
[ "module_hash", "structGpgFrontend_1_1ModuleSO.html#a27c74ad3458979d47c05a68e8f2c0d48", null ],
[ "module_id", "structGpgFrontend_1_1ModuleSO.html#a93966f41306e14c3415d3e872bb710ef", null ],
[ "module_version", "structGpgFrontend_1_1ModuleSO.html#acd337e60a6f44a5d4f7835d1660c0d74", null ]
[ "module_version", "structGpgFrontend_1_1ModuleSO.html#acd337e60a6f44a5d4f7835d1660c0d74", null ],
[ "set_by_user", "structGpgFrontend_1_1ModuleSO.html#aeb2565c17ffee4c765c9500608f39fa2", null ]
];

View File

@ -1,3 +1,3 @@
<map id="GpgFrontend::ModuleSO" name="GpgFrontend::ModuleSO">
<area shape="rect" id="node1" title=" " alt="" coords="5,5,184,156"/>
<area shape="rect" id="node1" title=" " alt="" coords="5,5,184,171"/>
</map>

View File

@ -1 +1 @@
dd6f2a8b6cc9f05dfbaccf63727f211a
5782b5a7a42f8be4ac132c030921c5d4

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.7 KiB

After

Width:  |  Height:  |  Size: 6.1 KiB

Some files were not shown because too many files have changed in this diff Show More