diff --git a/docs/html/CtxCheckTask_8h_source.html b/docs/html/CtxCheckTask_8h_source.html index 96aedb3e..06e72000 100644 --- a/docs/html/CtxCheckTask_8h_source.html +++ b/docs/html/CtxCheckTask_8h_source.html @@ -117,7 +117,7 @@ $(document).ready(function(){initNavTree('CtxCheckTask_8h_source.html',''); init
GpgFrontend::GpgKeyGetter::FlushKeyCache
void FlushKeyCache()
flush the keys in the cache
Definition: GpgKeyGetter.cpp:101
GpgFrontend::Thread
Definition: CtxCheckTask.h:33
GpgFrontend::Thread::CtxCheckTask
Definition: CtxCheckTask.h:38
-
GpgFrontend::Thread::Task
Definition: Task.h:43
+
GpgFrontend::Thread::Task
Definition: Task.h:45
GpgFrontend::Thread::CtxCheckTask::Run
void Run() override
Run - run the task.
Definition: CtxCheckTask.cpp:40
GpgFrontend::UI
Definition: FileReadTask.cpp:31
GpgFrontend::UI::FileReadTask
Definition: FileReadTask.h:39
-
GpgFrontend::Thread::Task
Definition: Task.h:43
+
GpgFrontend::Thread::Task
Definition: Task.h:45
GpgFrontend::Thread::Task::SetFinishAfterRun
void SetFinishAfterRun(bool finish_after_run)
Set the Finish After Run object.
Definition: Task.cpp:71
GpgFrontend::UI::FileReadTask::Run
void Run() override
Run - run the task.
Definition: FileReadTask.cpp:47
diff --git a/docs/html/TaskRunner_8h_source.html b/docs/html/TaskRunner_8h_source.html index a82fa8cb..4b3075a8 100644 --- a/docs/html/TaskRunner_8h_source.html +++ b/docs/html/TaskRunner_8h_source.html @@ -127,7 +127,7 @@ $(document).ready(function(){initNavTree('TaskRunner_8h_source.html',''); initRe
GpgFrontend::Thread::TaskRunner::TaskRunner
TaskRunner()
Construct a new Task Runner object.
GpgFrontend::Thread::TaskRunner::tasks
std::queue< Task * > tasks
The task queue.
Definition: TaskRunner.h:70
GpgFrontend::Thread::TaskRunner::tasks_mutex_
std::mutex tasks_mutex_
The task queue mutex.
Definition: TaskRunner.h:71
-
GpgFrontend::Thread::Task
Definition: Task.h:43
+
GpgFrontend::Thread::Task
Definition: Task.h:45
GpgFrontend::Thread::Task::GetUUID
std::string GetUUID() const
Definition: Task.cpp:69
GpgFrontend::Thread::TaskRunner::~TaskRunner
virtual ~TaskRunner() override
Destroy the Task Runner object.
diff --git a/docs/html/Task_8h_source.html b/docs/html/Task_8h_source.html index 7a62970a..6b1bac24 100644 --- a/docs/html/Task_8h_source.html +++ b/docs/html/Task_8h_source.html @@ -87,122 +87,138 @@ $(document).ready(function(){initNavTree('Task_8h_source.html',''); initResizabl
1 
-
27 #ifndef GPGFRONTEND_TASK_H
-
28 #define GPGFRONTEND_TASK_H
-
29 
-
30 #include <functional>
-
31 #include <memory>
-
32 #include <stack>
-
33 #include <string>
-
34 #include <type_traits>
-
35 #include <utility>
-
36 
-
37 #include "core/GpgFrontendCore.h"
+
29 #ifndef GPGFRONTEND_TASK_H
+
30 #define GPGFRONTEND_TASK_H
+
31 
+
32 #include <functional>
+
33 #include <memory>
+
34 #include <stack>
+
35 #include <string>
+
36 #include <type_traits>
+
37 #include <utility>
38 
-
39 namespace GpgFrontend::Thread {
+
39 #include "core/GpgFrontendCore.h"
40 
-
41 class TaskRunner;
+
41 namespace GpgFrontend::Thread {
42 
-
43 class GPGFRONTEND_CORE_EXPORT Task : public QObject, public QRunnable {
-
44  Q_OBJECT
-
45  public:
-
46  class DataObject;
-
47  using DataObjectPtr = std::shared_ptr<DataObject>;
-
48  using TaskRunnable = std::function<int(DataObjectPtr)>;
-
49  using TaskCallback = std::function<void(int, DataObjectPtr)>;
-
50 
-
51  friend class TaskRunner;
+
43 class TaskRunner;
+
44 
+
45 class GPGFRONTEND_CORE_EXPORT Task : public QObject, public QRunnable {
+
46  Q_OBJECT
+
47  public:
+
48  class DataObject;
+
49  using DataObjectPtr = std::shared_ptr<DataObject>;
+
50  using TaskRunnable = std::function<int(DataObjectPtr)>;
+
51  using TaskCallback = std::function<void(int, DataObjectPtr)>;
52 
-
57  class DataObject {
-
58  public:
-
59  struct Destructor {
-
60  const void *p_obj;
-
61  void (*destroy)(const void *);
-
62  };
-
63 
-
69  size_t GetObjectSize();
-
70 
-
77  template <typename T>
-
78  void AppendObject(T &&obj) {
-
79  LOG(INFO) << "called:" << this;
-
80  auto *obj_dstr = this->get_heap_ptr(sizeof(T));
-
81  auto *ptr_heap = new ((void *)obj_dstr->p_obj) T(std::move(obj));
-
82  if (std::is_class_v<T>) {
-
83  auto destructor = [](const void *x) {
-
84  static_cast<const T *>(x)->~T();
-
85  };
-
86  obj_dstr->destroy = destructor;
-
87  } else {
-
88  obj_dstr->destroy = nullptr;
-
89  }
-
90  data_objects_.push(std::move(obj_dstr));
-
91  }
-
92 
-
99  template <typename T>
-
100  T PopObject() {
-
101  LOG(INFO) << "called:" << this;
-
102  if (data_objects_.empty()) throw std::runtime_error("No object to pop");
-
103  auto *obj_dstr = data_objects_.top();
-
104  auto *heap_ptr = (T *)obj_dstr->p_obj;
-
105  auto obj = std::move(*(T *)(heap_ptr));
-
106  this->free_heap_ptr(obj_dstr);
-
107  data_objects_.pop();
-
108  return obj;
-
109  }
-
110 
-
115  ~DataObject();
+
53  friend class TaskRunner;
+
54 
+
59  class GPGFRONTEND_CORE_EXPORT DataObject {
+
60  public:
+
61  struct Destructor {
+
62  const void *p_obj;
+
63  void (*destroy)(const void *);
+
64  };
+
65 
+
71  size_t GetObjectSize();
+
72 
+
79  template <typename T>
+
80  void AppendObject(T &&obj) {
+
81  LOG(INFO) << "called:" << this;
+
82  auto *obj_dstr = this->get_heap_ptr(sizeof(T));
+
83  auto *ptr_heap = new ((void *)obj_dstr->p_obj) T(std::move(obj));
+
84  if (std::is_class_v<T>) {
+
85  auto destructor = [](const void *x) {
+
86  static_cast<const T *>(x)->~T();
+
87  };
+
88  obj_dstr->destroy = destructor;
+
89  } else {
+
90  obj_dstr->destroy = nullptr;
+
91  }
+
92  data_objects_.push(std::move(obj_dstr));
+
93  }
+
94 
+
101  template <typename T>
+
102  void AppendObject(T *obj) {
+
103  LOG(INFO) << "called:" << this;
+
104  auto *obj_dstr = this->get_heap_ptr(sizeof(T));
+
105  auto *ptr_heap = new ((void *)obj_dstr->p_obj) T(std::move(*obj));
+
106  if (std::is_class_v<T>) {
+
107  auto destructor = [](const void *x) {
+
108  static_cast<const T *>(x)->~T();
+
109  };
+
110  obj_dstr->destroy = destructor;
+
111  } else {
+
112  obj_dstr->destroy = nullptr;
+
113  }
+
114  data_objects_.push(std::move(obj_dstr));
+
115  }
116 
-
117  private:
-
118  std::stack<Destructor *> data_objects_;
-
119 
-
126  Destructor *get_heap_ptr(size_t bytes_size);
-
127 
-
133  void free_heap_ptr(Destructor *);
-
134  };
-
135 
-
140  Task();
-
141 
-
147  Task(TaskCallback callback, DataObjectPtr data_object = nullptr);
-
148 
-
154  Task(
-
155  TaskRunnable runnable,
-
156  TaskCallback callback = [](int, std::shared_ptr<DataObject>) {},
-
157  DataObjectPtr data = nullptr);
-
158 
-
163  virtual ~Task() override;
-
164 
-
169  virtual void Run();
-
170 
-
176  std::string GetUUID() const;
-
177 
-
178  signals:
-
183  void SignalTaskFinished();
-
184 
-
185  protected:
-
191  void SetFinishAfterRun(bool finish_after_run);
-
192 
-
198  void SetRTN(int rtn);
-
199 
-
200  private:
-
201  const std::string uuid_;
-
202  TaskCallback callback_;
-
203  TaskRunnable runnable_;
-
204  bool finish_after_run_ = true;
-
205  int rtn_ = 0;
-
206  QThread *callback_thread_ = nullptr;
-
207  DataObjectPtr data_object_ = nullptr;
+
123  template <typename T>
+
124  T PopObject() {
+
125  LOG(INFO) << "called:" << this;
+
126  if (data_objects_.empty()) throw std::runtime_error("No object to pop");
+
127  auto *obj_dstr = data_objects_.top();
+
128  auto *heap_ptr = (T *)obj_dstr->p_obj;
+
129  auto obj = std::move(*(T *)(heap_ptr));
+
130  this->free_heap_ptr(obj_dstr);
+
131  data_objects_.pop();
+
132  return obj;
+
133  }
+
134 
+
139  ~DataObject();
+
140 
+
141  private:
+
142  std::stack<Destructor *> data_objects_;
+
143 
+
150  Destructor *get_heap_ptr(size_t bytes_size);
+
151 
+
157  void free_heap_ptr(Destructor *);
+
158  };
+
159 
+
164  Task();
+
165 
+
171  Task(TaskCallback callback, DataObjectPtr data_object = nullptr);
+
172 
+
178  Task(
+
179  TaskRunnable runnable,
+
180  TaskCallback callback = [](int, std::shared_ptr<DataObject>) {},
+
181  DataObjectPtr data = nullptr);
+
182 
+
187  virtual ~Task() override;
+
188 
+
193  virtual void Run();
+
194 
+
200  std::string GetUUID() const;
+
201 
+
202  signals:
+
207  void SignalTaskFinished();
208 
-
213  void before_finish_task();
-
214 
-
219  void init();
-
220 
-
225  virtual void run() override;
-
226 
-
232  static std::string generate_uuid();
-
233 };
-
234 } // namespace GpgFrontend::Thread
-
235 
-
236 #endif // GPGFRONTEND_TASK_H
+
209  protected:
+
215  void SetFinishAfterRun(bool finish_after_run);
+
216 
+
222  void SetRTN(int rtn);
+
223 
+
224  private:
+
225  const std::string uuid_;
+
226  TaskCallback callback_;
+
227  TaskRunnable runnable_;
+
228  bool finish_after_run_ = true;
+
229  int rtn_ = 0;
+
230  QThread *callback_thread_ = nullptr;
+
231  DataObjectPtr data_object_ = nullptr;
+
232 
+
237  void before_finish_task();
+
238 
+
243  void init();
+
244 
+
249  virtual void run() override;
+
250 
+
256  static std::string generate_uuid();
+
257 };
+
258 } // namespace GpgFrontend::Thread
+
259 
+
260 #endif // GPGFRONTEND_TASK_H
GpgFrontend::Thread::TaskRunner
Definition: TaskRunner.h:39
@@ -211,18 +227,19 @@ $(document).ready(function(){initNavTree('Task_8h_source.html',''); initResizabl
GpgFrontend::Thread::Task::DataObject::get_heap_ptr
Destructor * get_heap_ptr(size_t bytes_size)
Get the heap ptr object.
Definition: Task.cpp:113
GpgFrontend::Thread::Task::DataObject::~DataObject
~DataObject()
Destroy the Data Object object.
Definition: Task.cpp:119
GpgFrontend::Thread::Task::~Task
virtual ~Task() override
Destroy the Task object.
-
GpgFrontend::Thread::Task::DataObject::PopObject
T PopObject()
Definition: Task.h:100
+
GpgFrontend::Thread::Task::DataObject::PopObject
T PopObject()
Definition: Task.h:124
GpgFrontend::Thread::Task::Task
Task()
Construct a new Task object.
Definition: Task.cpp:39
-
GpgFrontend::Thread::Task::DataObject::AppendObject
void AppendObject(T &&obj)
Definition: Task.h:78
+
GpgFrontend::Thread::Task::DataObject::AppendObject
void AppendObject(T &&obj)
Definition: Task.h:80
GpgFrontend::Thread
Definition: CtxCheckTask.h:33
+
GpgFrontend::Thread::Task::DataObject::AppendObject
void AppendObject(T *obj)
Definition: Task.h:102
GpgFrontend::Thread::Task::Run
virtual void Run()
Run - run the task.
Definition: Task.cpp:102
GpgFrontend::Thread::Task::generate_uuid
static std::string generate_uuid()
Definition: Task.cpp:143
GpgFrontend::Thread::Task::DataObject::GetObjectSize
size_t GetObjectSize()
Get the Objects Size.
Definition: Task.cpp:129
-
GpgFrontend::Thread::Task
Definition: Task.h:43
+
GpgFrontend::Thread::Task
Definition: Task.h:45
GpgFrontend::Thread::Task::SetFinishAfterRun
void SetFinishAfterRun(bool finish_after_run)
Set the Finish After Run object.
Definition: Task.cpp:71
GpgFrontend::Thread::Task::GetUUID
std::string GetUUID() const
Definition: Task.cpp:69
-
GpgFrontend::Thread::Task::DataObject::Destructor
Definition: Task.h:59
-
GpgFrontend::Thread::Task::DataObject
DataObject to be passed to the callback function.
Definition: Task.h:57
+
GpgFrontend::Thread::Task::DataObject::Destructor
Definition: Task.h:61
+
GpgFrontend::Thread::Task::DataObject
DataObject to be passed to the callback function.
Definition: Task.h:59
Collaboration graph
- - - - - - - - + + + + + + + + diff --git a/docs/html/classGpgFrontend_1_1Thread_1_1CtxCheckTask__coll__graph.map b/docs/html/classGpgFrontend_1_1Thread_1_1CtxCheckTask__coll__graph.map index 81983cb1..e294ef65 100644 --- a/docs/html/classGpgFrontend_1_1Thread_1_1CtxCheckTask__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1Thread_1_1CtxCheckTask__coll__graph.map @@ -1,12 +1,12 @@ - - - - - - - - + + + + + + + + diff --git a/docs/html/classGpgFrontend_1_1Thread_1_1CtxCheckTask__coll__graph.md5 b/docs/html/classGpgFrontend_1_1Thread_1_1CtxCheckTask__coll__graph.md5 index 66190970..6940997e 100644 --- a/docs/html/classGpgFrontend_1_1Thread_1_1CtxCheckTask__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1Thread_1_1CtxCheckTask__coll__graph.md5 @@ -1 +1 @@ -cd3597d3a0635c422ef7636c2a70d16e \ No newline at end of file +f32eeab23814943a7ffc67d3fdc21663 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1Thread_1_1CtxCheckTask__coll__graph.png b/docs/html/classGpgFrontend_1_1Thread_1_1CtxCheckTask__coll__graph.png index 86b5510e..5f6ba0e3 100644 Binary files a/docs/html/classGpgFrontend_1_1Thread_1_1CtxCheckTask__coll__graph.png and b/docs/html/classGpgFrontend_1_1Thread_1_1CtxCheckTask__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1Thread_1_1Task.html b/docs/html/classGpgFrontend_1_1Thread_1_1Task.html index 20602179..676663e1 100644 --- a/docs/html/classGpgFrontend_1_1Thread_1_1Task.html +++ b/docs/html/classGpgFrontend_1_1Thread_1_1Task.html @@ -114,13 +114,13 @@ Collaboration diagram for GpgFrontend::Thread::Task:
Collaboration graph
- - - - - - - + + + + + + + diff --git a/docs/html/classGpgFrontend_1_1Thread_1_1TaskRunner.html b/docs/html/classGpgFrontend_1_1Thread_1_1TaskRunner.html index 180216b0..59d37e5d 100644 --- a/docs/html/classGpgFrontend_1_1Thread_1_1TaskRunner.html +++ b/docs/html/classGpgFrontend_1_1Thread_1_1TaskRunner.html @@ -105,17 +105,17 @@ Collaboration diagram for GpgFrontend::Thread::TaskRunner:
Collaboration graph
- - - - - - - - - - - + + + + + + + + + + + diff --git a/docs/html/classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html b/docs/html/classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html index 816654ce..f6b3193a 100644 --- a/docs/html/classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html +++ b/docs/html/classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html @@ -107,22 +107,22 @@ Collaboration diagram for GpgFrontend::Thread::TaskRunnerGetter:
Collaboration graph
- - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + diff --git a/docs/html/classGpgFrontend_1_1Thread_1_1TaskRunnerGetter__coll__graph.map b/docs/html/classGpgFrontend_1_1Thread_1_1TaskRunnerGetter__coll__graph.map index e53c2271..5af28c71 100644 --- a/docs/html/classGpgFrontend_1_1Thread_1_1TaskRunnerGetter__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1Thread_1_1TaskRunnerGetter__coll__graph.map @@ -1,20 +1,20 @@ - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + diff --git a/docs/html/classGpgFrontend_1_1Thread_1_1TaskRunnerGetter__coll__graph.md5 b/docs/html/classGpgFrontend_1_1Thread_1_1TaskRunnerGetter__coll__graph.md5 index 469c6251..856bb211 100644 --- a/docs/html/classGpgFrontend_1_1Thread_1_1TaskRunnerGetter__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1Thread_1_1TaskRunnerGetter__coll__graph.md5 @@ -1 +1 @@ -e6e25e34b06679dbd5c40616bd216e22 \ No newline at end of file +9d578f7a22d60bc8b42d2fabec320aa6 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1Thread_1_1TaskRunnerGetter__coll__graph.png b/docs/html/classGpgFrontend_1_1Thread_1_1TaskRunnerGetter__coll__graph.png index 3db13cfb..aac53963 100644 Binary files a/docs/html/classGpgFrontend_1_1Thread_1_1TaskRunnerGetter__coll__graph.png and b/docs/html/classGpgFrontend_1_1Thread_1_1TaskRunnerGetter__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1Thread_1_1TaskRunner__coll__graph.map b/docs/html/classGpgFrontend_1_1Thread_1_1TaskRunner__coll__graph.map index b6ea5fab..a65cbd23 100644 --- a/docs/html/classGpgFrontend_1_1Thread_1_1TaskRunner__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1Thread_1_1TaskRunner__coll__graph.map @@ -1,15 +1,15 @@ - - - - - - - - - - - + + + + + + + + + + + diff --git a/docs/html/classGpgFrontend_1_1Thread_1_1TaskRunner__coll__graph.md5 b/docs/html/classGpgFrontend_1_1Thread_1_1TaskRunner__coll__graph.md5 index feaa7105..48f3ec7b 100644 --- a/docs/html/classGpgFrontend_1_1Thread_1_1TaskRunner__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1Thread_1_1TaskRunner__coll__graph.md5 @@ -1 +1 @@ -7c48022bb8e6562efd40bc21d89f3085 \ No newline at end of file +caf2caa1a9b3ccc4438013ff2041015b \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1Thread_1_1TaskRunner__coll__graph.png b/docs/html/classGpgFrontend_1_1Thread_1_1TaskRunner__coll__graph.png index b91fba1d..f823c893 100644 Binary files a/docs/html/classGpgFrontend_1_1Thread_1_1TaskRunner__coll__graph.png and b/docs/html/classGpgFrontend_1_1Thread_1_1TaskRunner__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1Thread_1_1Task_1_1DataObject-members.html b/docs/html/classGpgFrontend_1_1Thread_1_1Task_1_1DataObject-members.html index e8454abb..5b4ba371 100644 --- a/docs/html/classGpgFrontend_1_1Thread_1_1Task_1_1DataObject-members.html +++ b/docs/html/classGpgFrontend_1_1Thread_1_1Task_1_1DataObject-members.html @@ -90,12 +90,13 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1Thread_1_1Task_1_1

This is the complete list of members for GpgFrontend::Thread::Task::DataObject, including all inherited members.

- - - - - - + + + + + + +
AppendObject(T &&obj)GpgFrontend::Thread::Task::DataObjectinline
data_objects_ (defined in GpgFrontend::Thread::Task::DataObject)GpgFrontend::Thread::Task::DataObjectprivate
free_heap_ptr(Destructor *)GpgFrontend::Thread::Task::DataObjectprivate
get_heap_ptr(size_t bytes_size)GpgFrontend::Thread::Task::DataObjectprivate
GetObjectSize()GpgFrontend::Thread::Task::DataObject
PopObject()GpgFrontend::Thread::Task::DataObjectinline
~DataObject()GpgFrontend::Thread::Task::DataObject
AppendObject(T *obj)GpgFrontend::Thread::Task::DataObjectinline
data_objects_ (defined in GpgFrontend::Thread::Task::DataObject)GpgFrontend::Thread::Task::DataObjectprivate
free_heap_ptr(Destructor *)GpgFrontend::Thread::Task::DataObjectprivate
get_heap_ptr(size_t bytes_size)GpgFrontend::Thread::Task::DataObjectprivate
GetObjectSize()GpgFrontend::Thread::Task::DataObject
PopObject()GpgFrontend::Thread::Task::DataObjectinline
~DataObject()GpgFrontend::Thread::Task::DataObject
diff --git a/docs/html/classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html b/docs/html/classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html index d0350c41..813f81e1 100644 --- a/docs/html/classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html +++ b/docs/html/classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html @@ -102,7 +102,7 @@ Collaboration diagram for GpgFrontend::Thread::Task::DataObject:
Collaboration graph
- + @@ -123,6 +123,9 @@ Public Member Functions template<typename T > void AppendObject (T &&obj)   +template<typename T > +void AppendObject (T *obj) +  template<typename T > T PopObject ()   @@ -168,7 +171,7 @@ std::stack< Member Function Documentation -

◆ AppendObject()

+

◆ AppendObject() [1/2]

@@ -205,6 +208,46 @@ template<typename T >
+
+
+ +

◆ AppendObject() [2/2]

+ +
+
+
+template<typename T >
+ + + + + +
+ + + + + + + + +
void GpgFrontend::Thread::Task::DataObject::AppendObject (T * obj)
+
+inline
+
+
Template Parameters
+ + +
T
+
+
+
Parameters
+ + +
ptr
+
+
+
diff --git a/docs/html/classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.js b/docs/html/classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.js index f1247fb1..d7e04902 100644 --- a/docs/html/classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.js +++ b/docs/html/classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.js @@ -3,6 +3,7 @@ var classGpgFrontend_1_1Thread_1_1Task_1_1DataObject = [ "Destructor", "structGpgFrontend_1_1Thread_1_1Task_1_1DataObject_1_1Destructor.html", "structGpgFrontend_1_1Thread_1_1Task_1_1DataObject_1_1Destructor" ], [ "~DataObject", "classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a85bb3c482bf6f47edcd6593cca568a22", null ], [ "AppendObject", "classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a521dccfd42e13769b4edc4286318cc4c", null ], + [ "AppendObject", "classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a5812bb84c6241e89f8b8b04d2a2f3b55", null ], [ "free_heap_ptr", "classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a17252d07835dab3772381639ec8473ea", null ], [ "get_heap_ptr", "classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a0e1ab5e5bf5ef647a30a5ee2884ac63a", null ], [ "GetObjectSize", "classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#aa35e6ad1ef3a5733fb338f3333b5c637", null ], diff --git a/docs/html/classGpgFrontend_1_1Thread_1_1Task_1_1DataObject__coll__graph.map b/docs/html/classGpgFrontend_1_1Thread_1_1Task_1_1DataObject__coll__graph.map index 6d259f2b..68ee9482 100644 --- a/docs/html/classGpgFrontend_1_1Thread_1_1Task_1_1DataObject__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1Thread_1_1Task_1_1DataObject__coll__graph.map @@ -1,5 +1,5 @@ - + diff --git a/docs/html/classGpgFrontend_1_1Thread_1_1Task_1_1DataObject__coll__graph.md5 b/docs/html/classGpgFrontend_1_1Thread_1_1Task_1_1DataObject__coll__graph.md5 index 8cbf32f7..daaa9f71 100644 --- a/docs/html/classGpgFrontend_1_1Thread_1_1Task_1_1DataObject__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1Thread_1_1Task_1_1DataObject__coll__graph.md5 @@ -1 +1 @@ -71bab16f426e8edf2f251bdf532a120c \ No newline at end of file +85a2c6449d2534e83dbb39c04c17d450 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1Thread_1_1Task_1_1DataObject__coll__graph.png b/docs/html/classGpgFrontend_1_1Thread_1_1Task_1_1DataObject__coll__graph.png index ffb4e0ae..9c0f44cf 100644 Binary files a/docs/html/classGpgFrontend_1_1Thread_1_1Task_1_1DataObject__coll__graph.png and b/docs/html/classGpgFrontend_1_1Thread_1_1Task_1_1DataObject__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1Thread_1_1Task__coll__graph.map b/docs/html/classGpgFrontend_1_1Thread_1_1Task__coll__graph.map index b73d1b2c..6b7bd147 100644 --- a/docs/html/classGpgFrontend_1_1Thread_1_1Task__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1Thread_1_1Task__coll__graph.map @@ -1,11 +1,11 @@ - - - - - - - + + + + + + + diff --git a/docs/html/classGpgFrontend_1_1Thread_1_1Task__coll__graph.md5 b/docs/html/classGpgFrontend_1_1Thread_1_1Task__coll__graph.md5 index 1ceae8f5..344df226 100644 --- a/docs/html/classGpgFrontend_1_1Thread_1_1Task__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1Thread_1_1Task__coll__graph.md5 @@ -1 +1 @@ -32ecd63b9224e6295c217ad5f0ceba37 \ No newline at end of file +39701d735c96d3bf118f7e07d3064132 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1Thread_1_1Task__coll__graph.png b/docs/html/classGpgFrontend_1_1Thread_1_1Task__coll__graph.png index 3558690d..aaa4fa16 100644 Binary files a/docs/html/classGpgFrontend_1_1Thread_1_1Task__coll__graph.png and b/docs/html/classGpgFrontend_1_1Thread_1_1Task__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1FileReadTask.html b/docs/html/classGpgFrontend_1_1UI_1_1FileReadTask.html index d50996b5..305a7663 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1FileReadTask.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1FileReadTask.html @@ -108,14 +108,14 @@ Collaboration diagram for GpgFrontend::UI::FileReadTask:
Collaboration graph
- - - - - - - - + + + + + + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1FileReadTask__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1FileReadTask__coll__graph.map index e791647e..0fa8a1aa 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1FileReadTask__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1FileReadTask__coll__graph.map @@ -1,12 +1,12 @@ - - - - - - - - + + + + + + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1FileReadTask__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1FileReadTask__coll__graph.md5 index 6931284e..e6c849e3 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1FileReadTask__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1FileReadTask__coll__graph.md5 @@ -1 +1 @@ -3d06ec036fa5b1a6501ca3af092bdae0 \ No newline at end of file +c9f1d25ff75dfaff10c06e6c45b700a8 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1FileReadTask__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1FileReadTask__coll__graph.png index a0ae04b1..773d2dd7 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1FileReadTask__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1FileReadTask__coll__graph.png differ diff --git a/docs/html/functions_a.html b/docs/html/functions_a.html index bdc4d2e5..5a72b1c6 100644 --- a/docs/html/functions_a.html +++ b/docs/html/functions_a.html @@ -148,7 +148,7 @@ $(document).ready(function(){initNavTree('functions_a.html',''); initResizable() : GpgFrontend::UI::MainWindow
  • AppendObject() -: GpgFrontend::Thread::Task::DataObject +: GpgFrontend::Thread::Task::DataObject
  • AppPath : GpgFrontend::GpgInfo diff --git a/docs/html/functions_func.html b/docs/html/functions_func.html index db38512b..fd03310f 100644 --- a/docs/html/functions_func.html +++ b/docs/html/functions_func.html @@ -104,7 +104,7 @@ $(document).ready(function(){initNavTree('functions_func.html',''); initResizabl : GpgFrontend::UI::AppearanceTab
  • AppendObject() -: GpgFrontend::Thread::Task::DataObject +: GpgFrontend::Thread::Task::DataObject
  • AssociateTabWidget() : GpgFrontend::UI::InfoBoardWidget diff --git a/docs/html/namespaceGpgFrontend_1_1Thread.html b/docs/html/namespaceGpgFrontend_1_1Thread.html index 83281628..7e65f288 100644 --- a/docs/html/namespaceGpgFrontend_1_1Thread.html +++ b/docs/html/namespaceGpgFrontend_1_1Thread.html @@ -107,7 +107,15 @@ Classes

    GpgFrontend is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

    You should have received a copy of the GNU General Public License along with GpgFrontend. If not, see https://www.gnu.org/licenses/.

    The initial version of the source code is inherited from the gpg4usb project, which is under GPL-3.0-or-later.

    -

    The source code version of this software was modified and released by Saturnericeric@.nosp@m.bktu.nosp@m.s.comeric@.nosp@m.bktu.nosp@m.s.com starting on May 12, 2021.

    +

    The source code version of this software was modified and released by Saturnericeric@.nosp@m.bktu.nosp@m.s.comeric@.nosp@m.bktu.nosp@m.s.com starting on May 12, 2021.

    +

    Copyright (C) 2021 Saturneric

    +

    This file is part of GpgFrontend.

    +

    GpgFrontend is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

    +

    GpgFrontend is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

    +

    You should have received a copy of the GNU General Public License along with GpgFrontend. If not, see https://www.gnu.org/licenses/.

    +

    The initial version of the source code is inherited from the gpg4usb project, which is under GPL-3.0-or-later.

    +

    All the source code of GpgFrontend was modified and released by Saturnericeric@.nosp@m.bktu.nosp@m.s.com starting on May 12, 2021.

    +

    SPDX-License-Identifier: GPL-3.0-or-later

  • diff --git a/docs/html/navtreedata.js b/docs/html/navtreedata.js index 91d006c0..eb267253 100644 --- a/docs/html/navtreedata.js +++ b/docs/html/navtreedata.js @@ -53,10 +53,10 @@ var NAVTREEINDEX = "AboutDialog_8h_source.html", "classGpgFrontend_1_1GpgContext.html", "classGpgFrontend_1_1GpgTOFUInfo.html#abc53f7ca1b737ed1a913ad2f90a346e4", -"classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a68f984815100f4ce281b9794f193e516", -"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#aa598c2c2a97f5c3dd7e8227cdfe6a51a", -"classGpgFrontend_1_1UI_1_1SettingsDialog.html#a44f48d9578d62b1786cbf10a8f20a518", -"structGpgFrontend_1_1GpgKey_1_1__key__ref__deleter.html" +"classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a6380776ea1bf9a020370589e1e20efd3", +"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#aa0fb2623234f3dea2ef40809c9571360", +"classGpgFrontend_1_1UI_1_1SettingsDialog.html#a204f8e834337aea7df2779a494dc6216", +"structGpgFrontend_1_1GpgData_1_1__data__ref__deleter.html#a1dec67f70f17e45e7f78a92414d05485" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/docs/html/navtreeindex2.js b/docs/html/navtreeindex2.js index ab985a6b..3d5678b1 100644 --- a/docs/html/navtreeindex2.js +++ b/docs/html/navtreeindex2.js @@ -117,13 +117,14 @@ var NAVTREEINDEX2 = "classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html#aa2f427dd9cb0d68187504a7363e2d746aa6137891f9f6f5d09bd29c9194bf65c1":[2,0,0,0,3,0,0], "classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html#aa2f427dd9cb0d68187504a7363e2d746aba946fe7627d4f2d5fcf6baf17ec6fee":[2,0,0,0,3,0,2], "classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html":[2,0,0,0,1,0], -"classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a0e1ab5e5bf5ef647a30a5ee2884ac63a":[2,0,0,0,1,0,4], -"classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a17252d07835dab3772381639ec8473ea":[2,0,0,0,1,0,3], +"classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a0e1ab5e5bf5ef647a30a5ee2884ac63a":[2,0,0,0,1,0,5], +"classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a17252d07835dab3772381639ec8473ea":[2,0,0,0,1,0,4], "classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a521dccfd42e13769b4edc4286318cc4c":[2,0,0,0,1,0,2], -"classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a5ef5ddec0b82017cc4ad7f34b9b13f64":[2,0,0,0,1,0,6], +"classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a5812bb84c6241e89f8b8b04d2a2f3b55":[2,0,0,0,1,0,3], +"classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a5ef5ddec0b82017cc4ad7f34b9b13f64":[2,0,0,0,1,0,7], "classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a85bb3c482bf6f47edcd6593cca568a22":[2,0,0,0,1,0,1], -"classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#aa35e6ad1ef3a5733fb338f3333b5c637":[2,0,0,0,1,0,5], -"classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#add6080349c4774da4f37a62ab68561c7":[2,0,0,0,1,0,7], +"classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#aa35e6ad1ef3a5733fb338f3333b5c637":[2,0,0,0,1,0,6], +"classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#add6080349c4774da4f37a62ab68561c7":[2,0,0,0,1,0,8], "classGpgFrontend_1_1UI_1_1AboutDialog.html":[2,0,0,1,0], "classGpgFrontend_1_1UI_1_1AboutDialog.html#ab04683ab4c4d682af1e259705c60d85a":[2,0,0,1,0,0], "classGpgFrontend_1_1UI_1_1AboutDialog.html#ab799cd5e07b06a8e953d72105c0a1083":[2,0,0,1,0,1], @@ -248,6 +249,5 @@ var NAVTREEINDEX2 = "classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a2c23091fa2fd5b97a045ac6c492caaca":[2,0,0,1,12,8], "classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a456f15315a03107f7757d84362c1af71":[2,0,0,1,12,1], "classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a4d18a72ae1c460a12b8902d426d9d395":[2,0,0,1,12,13], -"classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a4fd6f91eb435feb41ae93e44485646ab":[2,0,0,1,12,3], -"classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a6380776ea1bf9a020370589e1e20efd3":[2,0,0,1,12,12] +"classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a4fd6f91eb435feb41ae93e44485646ab":[2,0,0,1,12,3] }; diff --git a/docs/html/navtreeindex3.js b/docs/html/navtreeindex3.js index 6ddfa097..fe290a6d 100644 --- a/docs/html/navtreeindex3.js +++ b/docs/html/navtreeindex3.js @@ -1,5 +1,6 @@ var NAVTREEINDEX3 = { +"classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a6380776ea1bf9a020370589e1e20efd3":[2,0,0,1,12,12], "classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a68f984815100f4ce281b9794f193e516":[2,0,0,1,12,9], "classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a7d7504339221bd680fb18698dd829b32":[2,0,0,1,12,5], "classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a83a4ec326911b8b112bc471e7ca14925":[2,0,0,1,12,7], @@ -248,6 +249,5 @@ var NAVTREEINDEX3 = "classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a7653654c81149c48e7e4d5f0c00c360f":[2,0,0,1,28,4], "classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a7898b6fa328bfbc55ee2721bca4b2af1":[2,0,0,1,28,8], "classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a7e4ef818bcd2f315159f7043a099302c":[2,0,0,1,28,30], -"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a9fd99282a49e752133fdd5bdb10a62d4":[2,0,0,1,28,18], -"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#aa0fb2623234f3dea2ef40809c9571360":[2,0,0,1,28,13] +"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a9fd99282a49e752133fdd5bdb10a62d4":[2,0,0,1,28,18] }; diff --git a/docs/html/navtreeindex4.js b/docs/html/navtreeindex4.js index b33ab7d5..5a0747c7 100644 --- a/docs/html/navtreeindex4.js +++ b/docs/html/navtreeindex4.js @@ -1,5 +1,6 @@ var NAVTREEINDEX4 = { +"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#aa0fb2623234f3dea2ef40809c9571360":[2,0,0,1,28,13], "classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#aa598c2c2a97f5c3dd7e8227cdfe6a51a":[2,0,0,1,28,21], "classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#aa90d503edf4bab73034f68dc424964dd":[2,0,0,1,28,28], "classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#ad4638897cefc9a3fe111eb386abd25f4":[2,0,0,1,28,26], @@ -248,6 +249,5 @@ var NAVTREEINDEX4 = "classGpgFrontend_1_1UI_1_1QuitDialog.html#aec364c38056b6d92c172f8cdfb5f8e82":[2,0,0,1,40,1], "classGpgFrontend_1_1UI_1_1SettingsDialog.html":[2,0,0,1,41], "classGpgFrontend_1_1UI_1_1SettingsDialog.html#a0e317d53b055887c86e851d1b10aec6b":[2,0,0,1,41,11], -"classGpgFrontend_1_1UI_1_1SettingsDialog.html#a1b7ddc7861d1b4b9dc3810ed98023ffc":[2,0,0,1,41,0], -"classGpgFrontend_1_1UI_1_1SettingsDialog.html#a204f8e834337aea7df2779a494dc6216":[2,0,0,1,41,4] +"classGpgFrontend_1_1UI_1_1SettingsDialog.html#a1b7ddc7861d1b4b9dc3810ed98023ffc":[2,0,0,1,41,0] }; diff --git a/docs/html/navtreeindex5.js b/docs/html/navtreeindex5.js index 5fb0607e..7a8ed48b 100644 --- a/docs/html/navtreeindex5.js +++ b/docs/html/navtreeindex5.js @@ -1,5 +1,6 @@ var NAVTREEINDEX5 = { +"classGpgFrontend_1_1UI_1_1SettingsDialog.html#a204f8e834337aea7df2779a494dc6216":[2,0,0,1,41,4], "classGpgFrontend_1_1UI_1_1SettingsDialog.html#a44f48d9578d62b1786cbf10a8f20a518":[2,0,0,1,41,1], "classGpgFrontend_1_1UI_1_1SettingsDialog.html#a4e2ce62b4f14bb77d577efe208655bcb":[2,0,0,1,41,7], "classGpgFrontend_1_1UI_1_1SettingsDialog.html#a6532bcf29023e2d18209caae9960fd3f":[2,0,0,1,41,8], @@ -175,8 +176,8 @@ var NAVTREEINDEX5 = "functions_d.html":[2,3,0,4], "functions_e.html":[2,3,0,5], "functions_f.html":[2,3,0,6], -"functions_func.html":[2,3,1,0], "functions_func.html":[2,3,1], +"functions_func.html":[2,3,1,0], "functions_func_c.html":[2,3,1,1], "functions_func_d.html":[2,3,1,2], "functions_func_e.html":[2,3,1,3], @@ -218,15 +219,15 @@ var NAVTREEINDEX5 = "functions_z.html":[2,3,0,23], "functions_~.html":[2,3,0,24], "hierarchy.html":[2,2], -"index.html":[0], "index.html":[], +"index.html":[0], "namespaceGpgFrontend.html":[1,0,0], "namespaceGpgFrontend.html":[2,0,0], "namespaceGpgFrontend_1_1RawAPI.html":[1,0,0,0], -"namespaceGpgFrontend_1_1Thread.html":[2,0,0,0], "namespaceGpgFrontend_1_1Thread.html":[1,0,0,1], -"namespaceGpgFrontend_1_1UI.html":[1,0,0,2], +"namespaceGpgFrontend_1_1Thread.html":[2,0,0,0], "namespaceGpgFrontend_1_1UI.html":[2,0,0,1], +"namespaceGpgFrontend_1_1UI.html":[1,0,0,2], "namespacemembers.html":[1,1,0], "namespacemembers_enum.html":[1,1,2], "namespacemembers_func.html":[1,1,1], @@ -248,6 +249,5 @@ var NAVTREEINDEX5 = "structGpgFrontend_1_1GpgContextInitArgs.html#ac2679300c14d3f0ce29625a267054e6b":[2,0,0,16,5], "structGpgFrontend_1_1GpgContext_1_1__ctx__ref__deleter.html":[2,0,0,15,0], "structGpgFrontend_1_1GpgContext_1_1__ctx__ref__deleter.html#a1975ed97838072cf98bd80eef72fd3a8":[2,0,0,15,0,0], -"structGpgFrontend_1_1GpgData_1_1__data__ref__deleter.html":[2,0,0,17,0], -"structGpgFrontend_1_1GpgData_1_1__data__ref__deleter.html#a1dec67f70f17e45e7f78a92414d05485":[2,0,0,17,0,0] +"structGpgFrontend_1_1GpgData_1_1__data__ref__deleter.html":[2,0,0,17,0] }; diff --git a/docs/html/navtreeindex6.js b/docs/html/navtreeindex6.js index 16646c09..758db716 100644 --- a/docs/html/navtreeindex6.js +++ b/docs/html/navtreeindex6.js @@ -1,5 +1,6 @@ var NAVTREEINDEX6 = { +"structGpgFrontend_1_1GpgData_1_1__data__ref__deleter.html#a1dec67f70f17e45e7f78a92414d05485":[2,0,0,17,0,0], "structGpgFrontend_1_1GpgKey_1_1__key__ref__deleter.html":[2,0,0,24,0], "structGpgFrontend_1_1GpgKey_1_1__key__ref__deleter.html#a9427ebabbbae929fe1489a2e8534c752":[2,0,0,24,0,0], "structGpgFrontend_1_1Thread_1_1Task_1_1DataObject_1_1Destructor.html":[2,0,0,0,1,0,0], diff --git a/docs/html/search/all_1.js b/docs/html/search/all_1.js index 0dd2d7ad..12e92a60 100644 --- a/docs/html/search/all_1.js +++ b/docs/html/search/all_1.js @@ -24,7 +24,7 @@ var searchData= ['app_5fsecure_5fpath_5f_27',['app_secure_path_',['../classGpgFrontend_1_1DataObjectOperator.html#a6d38d25c91c33c48d083ec4de051108a',1,'GpgFrontend::DataObjectOperator']]], ['appearancetab_28',['AppearanceTab',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html',1,'GpgFrontend::UI::AppearanceTab'],['../classGpgFrontend_1_1UI_1_1AppearanceTab.html#abfca670540bc0409b9be4459ee6a3b6c',1,'GpgFrontend::UI::AppearanceTab::AppearanceTab()']]], ['append_5fselected_5fkeys_5fact_5f_29',['append_selected_keys_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab67486a71126073e7c39ca12603198f4',1,'GpgFrontend::UI::MainWindow']]], - ['appendobject_30',['AppendObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a521dccfd42e13769b4edc4286318cc4c',1,'GpgFrontend::Thread::Task::DataObject']]], + ['appendobject_30',['AppendObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a521dccfd42e13769b4edc4286318cc4c',1,'GpgFrontend::Thread::Task::DataObject::AppendObject(T &&obj)'],['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a5812bb84c6241e89f8b8b04d2a2f3b55',1,'GpgFrontend::Thread::Task::DataObject::AppendObject(T *obj)']]], ['apppath_31',['AppPath',['../classGpgFrontend_1_1GpgInfo.html#a2416ae0ab9bedc61782d16075750a9c0',1,'GpgFrontend::GpgInfo']]], ['archivefileoperator_32',['ArchiveFileOperator',['../classGpgFrontend_1_1ArchiveFileOperator.html',1,'GpgFrontend']]], ['archivestruct_33',['ArchiveStruct',['../structGpgFrontend_1_1ArchiveStruct.html',1,'GpgFrontend']]], diff --git a/docs/html/search/functions_1.js b/docs/html/search/functions_1.js index 25619c08..a4206649 100644 --- a/docs/html/search/functions_1.js +++ b/docs/html/search/functions_1.js @@ -9,7 +9,7 @@ var searchData= ['aes_5f256_5fcbc_5fencrypt_806',['aes_256_cbc_encrypt',['../namespaceGpgFrontend_1_1RawAPI.html#aa2bc88cf78b8da893f1b5c7e2e8ccf42',1,'GpgFrontend::RawAPI']]], ['aes_5f256_5fcbc_5finit_807',['aes_256_cbc_init',['../namespaceGpgFrontend_1_1RawAPI.html#a1f2f6c82e9c904c3875a123a65564697',1,'GpgFrontend::RawAPI']]], ['appearancetab_808',['AppearanceTab',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html#abfca670540bc0409b9be4459ee6a3b6c',1,'GpgFrontend::UI::AppearanceTab']]], - ['appendobject_809',['AppendObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a521dccfd42e13769b4edc4286318cc4c',1,'GpgFrontend::Thread::Task::DataObject']]], + ['appendobject_809',['AppendObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a521dccfd42e13769b4edc4286318cc4c',1,'GpgFrontend::Thread::Task::DataObject::AppendObject(T &&obj)'],['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a5812bb84c6241e89f8b8b04d2a2f3b55',1,'GpgFrontend::Thread::Task::DataObject::AppendObject(T *obj)']]], ['associatetabwidget_810',['AssociateTabWidget',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#adfa4acd435d2ec29f951f4e7e6a43f38',1,'GpgFrontend::UI::InfoBoardWidget']]], ['associatetextedit_811',['AssociateTextEdit',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a4fd6f91eb435feb41ae93e44485646ab',1,'GpgFrontend::UI::InfoBoardWidget']]] ]; diff --git a/docs/latex/classGpgFrontend_1_1ArchiveFileOperator__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1ArchiveFileOperator__coll__graph.pdf index a131d233..4d1334ef 100644 Binary files a/docs/latex/classGpgFrontend_1_1ArchiveFileOperator__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1ArchiveFileOperator__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1ChannelObject__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1ChannelObject__coll__graph.pdf index 7b357419..d219f519 100644 Binary files a/docs/latex/classGpgFrontend_1_1ChannelObject__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1ChannelObject__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1ChannelObject__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1ChannelObject__inherit__graph.pdf index 8ba79c95..1844fefa 100644 Binary files a/docs/latex/classGpgFrontend_1_1ChannelObject__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1ChannelObject__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1CharsetOperator__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1CharsetOperator__coll__graph.pdf index 515d630c..7940a067 100644 Binary files a/docs/latex/classGpgFrontend_1_1CharsetOperator__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1CharsetOperator__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1CoreCommonUtil__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1CoreCommonUtil__coll__graph.pdf index 9f119745..8d30b225 100644 Binary files a/docs/latex/classGpgFrontend_1_1CoreCommonUtil__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1CoreCommonUtil__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1CoreCommonUtil__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1CoreCommonUtil__inherit__graph.pdf index c11dffb4..490d9620 100644 Binary files a/docs/latex/classGpgFrontend_1_1CoreCommonUtil__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1CoreCommonUtil__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1DataObjectOperator__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1DataObjectOperator__coll__graph.pdf index 198090ed..52a53131 100644 Binary files a/docs/latex/classGpgFrontend_1_1DataObjectOperator__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1DataObjectOperator__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1DataObjectOperator__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1DataObjectOperator__inherit__graph.pdf index 852ea76a..500a7087 100644 Binary files a/docs/latex/classGpgFrontend_1_1DataObjectOperator__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1DataObjectOperator__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1FileOperator__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1FileOperator__coll__graph.pdf index 6655e262..17a84d29 100644 Binary files a/docs/latex/classGpgFrontend_1_1FileOperator__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1FileOperator__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GenKeyInfo__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GenKeyInfo__coll__graph.pdf index f3850f65..20983dd8 100644 Binary files a/docs/latex/classGpgFrontend_1_1GenKeyInfo__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GenKeyInfo__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GlobalSettingStation__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GlobalSettingStation__coll__graph.pdf index a2cf6a29..e14b754e 100644 Binary files a/docs/latex/classGpgFrontend_1_1GlobalSettingStation__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GlobalSettingStation__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GlobalSettingStation__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GlobalSettingStation__inherit__graph.pdf index a2cf6a29..e14b754e 100644 Binary files a/docs/latex/classGpgFrontend_1_1GlobalSettingStation__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GlobalSettingStation__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgBasicOperator__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgBasicOperator__coll__graph.pdf index 45a808ab..1b2727fe 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgBasicOperator__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgBasicOperator__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgBasicOperator__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgBasicOperator__inherit__graph.pdf index 6b335f82..6a82b646 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgBasicOperator__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgBasicOperator__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgCommandExecutor__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgCommandExecutor__coll__graph.pdf index 93802533..306ed510 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgCommandExecutor__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgCommandExecutor__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgCommandExecutor__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgCommandExecutor__inherit__graph.pdf index 039010e2..baf8d8e5 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgCommandExecutor__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgCommandExecutor__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgConstants__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgConstants__coll__graph.pdf index e32bda13..664af3a9 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgConstants__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgConstants__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgContext__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgContext__coll__graph.pdf index 42643ca5..6245323c 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgContext__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgContext__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgContext__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgContext__inherit__graph.pdf index e713d460..23337e61 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgContext__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgContext__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgData__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgData__coll__graph.pdf index 4e51ba70..a7789701 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgData__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgData__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgDecryptResultAnalyse__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgDecryptResultAnalyse__coll__graph.pdf index 0a5053ba..eb187ac6 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgDecryptResultAnalyse__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgDecryptResultAnalyse__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgDecryptResultAnalyse__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgDecryptResultAnalyse__inherit__graph.pdf index 49c8c7be..a9ab88d1 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgDecryptResultAnalyse__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgDecryptResultAnalyse__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgEncryptResultAnalyse__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgEncryptResultAnalyse__coll__graph.pdf index c37b53c1..3ed0e7c8 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgEncryptResultAnalyse__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgEncryptResultAnalyse__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgEncryptResultAnalyse__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgEncryptResultAnalyse__inherit__graph.pdf index ba33d85a..3e4f2f8e 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgEncryptResultAnalyse__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgEncryptResultAnalyse__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgFileOpera__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgFileOpera__coll__graph.pdf index b7fcf946..f6cc9486 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgFileOpera__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgFileOpera__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgFileOpera__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgFileOpera__inherit__graph.pdf index b7fcf946..5d49b930 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgFileOpera__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgFileOpera__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgImportInformation__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgImportInformation__coll__graph.pdf index d5318975..4ba19a3f 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgImportInformation__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgImportInformation__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgImportedKey__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgImportedKey__coll__graph.pdf index 07c3f1e5..db5c2d97 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgImportedKey__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgImportedKey__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgInfo__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgInfo__coll__graph.pdf index 1b2c9a8f..636a745a 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgInfo__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgInfo__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyGetter__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgKeyGetter__coll__graph.pdf index f8055848..9ff5059c 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgKeyGetter__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgKeyGetter__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyGetter__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgKeyGetter__inherit__graph.pdf index e7e67de8..44cdac24 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgKeyGetter__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgKeyGetter__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter__coll__graph.pdf index a76af087..a879b40b 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter__inherit__graph.pdf index 90d6f533..9440c9c1 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyManager__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgKeyManager__coll__graph.pdf index 54cf74fc..e1685a83 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgKeyManager__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgKeyManager__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyManager__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgKeyManager__inherit__graph.pdf index dc410fd0..fef135f9 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgKeyManager__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgKeyManager__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyOpera__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgKeyOpera__coll__graph.pdf index aefdee56..c94e1580 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgKeyOpera__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgKeyOpera__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyOpera__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgKeyOpera__inherit__graph.pdf index d0052a70..0af70379 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgKeyOpera__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgKeyOpera__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgKeySignature__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgKeySignature__coll__graph.pdf index 14e3c4b5..9532bb28 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgKeySignature__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgKeySignature__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgKey__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgKey__coll__graph.pdf index 0b23a766..df2a60e5 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgKey__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgKey__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgResultAnalyse__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgResultAnalyse__coll__graph.pdf index a0854dfd..8b91311e 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgResultAnalyse__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgResultAnalyse__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgResultAnalyse__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgResultAnalyse__inherit__graph.pdf index 1f920ee7..8a35bc0e 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgResultAnalyse__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgResultAnalyse__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgSignResultAnalyse__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgSignResultAnalyse__coll__graph.pdf index 51fbdf27..37acca7f 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgSignResultAnalyse__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgSignResultAnalyse__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgSignResultAnalyse__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgSignResultAnalyse__inherit__graph.pdf index 42963931..a6b62805 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgSignResultAnalyse__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgSignResultAnalyse__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgSignature__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgSignature__coll__graph.pdf index fd63d322..ef7680da 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgSignature__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgSignature__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgSubKey__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgSubKey__coll__graph.pdf index cbb249cd..fefb4a09 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgSubKey__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgSubKey__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgTOFUInfo__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgTOFUInfo__coll__graph.pdf index dc7ae583..5efb7e8d 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgTOFUInfo__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgTOFUInfo__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgUIDOperator__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgUIDOperator__coll__graph.pdf index a2ca0add..92ff6c3a 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgUIDOperator__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgUIDOperator__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgUIDOperator__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgUIDOperator__inherit__graph.pdf index 9517404a..5ea78e31 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgUIDOperator__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgUIDOperator__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgUID__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgUID__coll__graph.pdf index 9c4a4dec..f6d074dc 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgUID__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgUID__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgVerifyResultAnalyse__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgVerifyResultAnalyse__coll__graph.pdf index f497bd7e..9132ff91 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgVerifyResultAnalyse__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgVerifyResultAnalyse__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgVerifyResultAnalyse__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgVerifyResultAnalyse__inherit__graph.pdf index 66d416ec..267736d3 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgVerifyResultAnalyse__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgVerifyResultAnalyse__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1KeyPackageOperator__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1KeyPackageOperator__coll__graph.pdf index e355188d..fe2520e4 100644 Binary files a/docs/latex/classGpgFrontend_1_1KeyPackageOperator__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1KeyPackageOperator__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1PassphraseGenerator__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1PassphraseGenerator__coll__graph.pdf index eeb4d7d1..e67c2e04 100644 Binary files a/docs/latex/classGpgFrontend_1_1PassphraseGenerator__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1PassphraseGenerator__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1PassphraseGenerator__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1PassphraseGenerator__inherit__graph.pdf index 7718f964..58ae4542 100644 Binary files a/docs/latex/classGpgFrontend_1_1PassphraseGenerator__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1PassphraseGenerator__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1SingletonFunctionObject__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1SingletonFunctionObject__coll__graph.pdf index 387b2817..5b0aec3f 100644 Binary files a/docs/latex/classGpgFrontend_1_1SingletonFunctionObject__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1SingletonFunctionObject__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.pdf index c2ca5ce4..a939f1c3 100644 Binary files a/docs/latex/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1SingletonStorageCollection__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1SingletonStorageCollection__coll__graph.pdf index 8ee9c5bc..ffb48e49 100644 Binary files a/docs/latex/classGpgFrontend_1_1SingletonStorageCollection__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1SingletonStorageCollection__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1SingletonStorage__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1SingletonStorage__coll__graph.pdf index 144a0f82..97d9583a 100644 Binary files a/docs/latex/classGpgFrontend_1_1SingletonStorage__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1SingletonStorage__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1Thread_1_1CtxCheckTask__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1Thread_1_1CtxCheckTask__coll__graph.md5 index ef539baa..5bc1d5d2 100644 --- a/docs/latex/classGpgFrontend_1_1Thread_1_1CtxCheckTask__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1Thread_1_1CtxCheckTask__coll__graph.md5 @@ -1 +1 @@ -a846c340be8958d5e4fa88368f74dad2 \ No newline at end of file +7bea13bc931d7193b144fcebb7469635 \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1Thread_1_1CtxCheckTask__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Thread_1_1CtxCheckTask__coll__graph.pdf index fe98cb5c..7b401710 100644 Binary files a/docs/latex/classGpgFrontend_1_1Thread_1_1CtxCheckTask__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1Thread_1_1CtxCheckTask__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1Thread_1_1CtxCheckTask__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1Thread_1_1CtxCheckTask__inherit__graph.pdf index 03702911..00ea7619 100644 Binary files a/docs/latex/classGpgFrontend_1_1Thread_1_1CtxCheckTask__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1Thread_1_1CtxCheckTask__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunnerGetter__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunnerGetter__coll__graph.md5 index bf147c92..5740caff 100644 --- a/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunnerGetter__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunnerGetter__coll__graph.md5 @@ -1 +1 @@ -34c22cfb54b20f93f6042b679457e85c \ No newline at end of file +1c1581d509415a81f55f4a4b3fb5c058 \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunnerGetter__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunnerGetter__coll__graph.pdf index 2d472703..ef070793 100644 Binary files a/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunnerGetter__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunnerGetter__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunnerGetter__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunnerGetter__inherit__graph.pdf index 42d68d7b..5b18a85c 100644 Binary files a/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunnerGetter__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunnerGetter__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner__coll__graph.md5 index 05119359..34861658 100644 --- a/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner__coll__graph.md5 @@ -1 +1 @@ -9d10c0484ff3e307087367b5894e4803 \ No newline at end of file +50f76f0772d32e2fc2c3220c77ecaafc \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner__coll__graph.pdf index 200330a5..6fa854ff 100644 Binary files a/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner__inherit__graph.pdf index 5e321550..73aed5ed 100644 Binary files a/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.tex b/docs/latex/classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.tex index 8d42463a..4749bcd6 100644 --- a/docs/latex/classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.tex +++ b/docs/latex/classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.tex @@ -31,6 +31,8 @@ size\+\_\+t \mbox{\hyperlink{classGpgFrontend_1_1Thread_1_1Task_1_1DataObject_aa \begin{DoxyCompactList}\small\item\em Get the Objects Size. \end{DoxyCompactList}\item {\footnotesize template$<$typename T $>$ }\\void \mbox{\hyperlink{classGpgFrontend_1_1Thread_1_1Task_1_1DataObject_a521dccfd42e13769b4edc4286318cc4c}{Append\+Object}} (T \&\&obj) \item +{\footnotesize template$<$typename T $>$ }\\void \mbox{\hyperlink{classGpgFrontend_1_1Thread_1_1Task_1_1DataObject_a5812bb84c6241e89f8b8b04d2a2f3b55}{Append\+Object}} (T $\ast$obj) +\item {\footnotesize template$<$typename T $>$ }\\T \mbox{\hyperlink{classGpgFrontend_1_1Thread_1_1Task_1_1DataObject_a5ef5ddec0b82017cc4ad7f34b9b13f64}{Pop\+Object}} () \item \mbox{\hyperlink{classGpgFrontend_1_1Thread_1_1Task_1_1DataObject_a85bb3c482bf6f47edcd6593cca568a22}{$\sim$\+Data\+Object}} () @@ -72,11 +74,28 @@ Destroy the Data Object object. \mbox{\Hypertarget{classGpgFrontend_1_1Thread_1_1Task_1_1DataObject_a521dccfd42e13769b4edc4286318cc4c}\label{classGpgFrontend_1_1Thread_1_1Task_1_1DataObject_a521dccfd42e13769b4edc4286318cc4c}} \index{GpgFrontend::Thread::Task::DataObject@{GpgFrontend::Thread::Task::DataObject}!AppendObject@{AppendObject}} \index{AppendObject@{AppendObject}!GpgFrontend::Thread::Task::DataObject@{GpgFrontend::Thread::Task::DataObject}} -\doxysubsubsection{\texorpdfstring{AppendObject()}{AppendObject()}} +\doxysubsubsection{\texorpdfstring{AppendObject()}{AppendObject()}\hspace{0.1cm}{\footnotesize\ttfamily [1/2]}} {\footnotesize\ttfamily template$<$typename T $>$ \\ void Gpg\+Frontend\+::\+Thread\+::\+Task\+::\+Data\+Object\+::\+Append\+Object (\begin{DoxyParamCaption}\item[{T \&\&}]{obj }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [inline]}} +\begin{DoxyTemplParams}{Template Parameters} +{\em T} & \\ +\hline +\end{DoxyTemplParams} + +\begin{DoxyParams}{Parameters} +{\em ptr} & \\ +\hline +\end{DoxyParams} +\mbox{\Hypertarget{classGpgFrontend_1_1Thread_1_1Task_1_1DataObject_a5812bb84c6241e89f8b8b04d2a2f3b55}\label{classGpgFrontend_1_1Thread_1_1Task_1_1DataObject_a5812bb84c6241e89f8b8b04d2a2f3b55}} +\index{GpgFrontend::Thread::Task::DataObject@{GpgFrontend::Thread::Task::DataObject}!AppendObject@{AppendObject}} +\index{AppendObject@{AppendObject}!GpgFrontend::Thread::Task::DataObject@{GpgFrontend::Thread::Task::DataObject}} +\doxysubsubsection{\texorpdfstring{AppendObject()}{AppendObject()}\hspace{0.1cm}{\footnotesize\ttfamily [2/2]}} +{\footnotesize\ttfamily template$<$typename T $>$ \\ +void Gpg\+Frontend\+::\+Thread\+::\+Task\+::\+Data\+Object\+::\+Append\+Object (\begin{DoxyParamCaption}\item[{T $\ast$}]{obj }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [inline]}} + + \begin{DoxyTemplParams}{Template Parameters} {\em T} & \\ \hline diff --git a/docs/latex/classGpgFrontend_1_1Thread_1_1Task_1_1DataObject__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1Thread_1_1Task_1_1DataObject__coll__graph.md5 index 80e17c47..d03b7d8a 100644 --- a/docs/latex/classGpgFrontend_1_1Thread_1_1Task_1_1DataObject__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1Thread_1_1Task_1_1DataObject__coll__graph.md5 @@ -1 +1 @@ -865d8301c63d328732068885ff7aafdd \ No newline at end of file +da43e19b63baf76f180c410ada8ee4ae \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1Thread_1_1Task_1_1DataObject__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Thread_1_1Task_1_1DataObject__coll__graph.pdf index c87263f8..880d73cf 100644 Binary files a/docs/latex/classGpgFrontend_1_1Thread_1_1Task_1_1DataObject__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1Thread_1_1Task_1_1DataObject__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1Thread_1_1Task__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1Thread_1_1Task__coll__graph.md5 index 986bdfde..0ea5c1c8 100644 --- a/docs/latex/classGpgFrontend_1_1Thread_1_1Task__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1Thread_1_1Task__coll__graph.md5 @@ -1 +1 @@ -bf96b835ece95572fd9ba1e9b4e4e7a8 \ No newline at end of file +ba447cfc5a286728e1717dac3195b78f \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1Thread_1_1Task__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Thread_1_1Task__coll__graph.pdf index 275fb971..5b2911eb 100644 Binary files a/docs/latex/classGpgFrontend_1_1Thread_1_1Task__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1Thread_1_1Task__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1Thread_1_1Task__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1Thread_1_1Task__inherit__graph.pdf index aab06784..f35f1373 100644 Binary files a/docs/latex/classGpgFrontend_1_1Thread_1_1Task__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1Thread_1_1Task__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.pdf index 348d6aa1..63985433 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.pdf index db028feb..c362076d 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1AdvancedTab__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1AdvancedTab__coll__graph.pdf index 424229e3..cc46f7bd 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1AdvancedTab__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1AdvancedTab__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1AdvancedTab__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1AdvancedTab__inherit__graph.pdf index 149f61b0..7d4901ab 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1AdvancedTab__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1AdvancedTab__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1AppearanceTab__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1AppearanceTab__coll__graph.pdf index 26a0038c..ec7fb57a 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1AppearanceTab__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1AppearanceTab__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1AppearanceTab__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1AppearanceTab__inherit__graph.pdf index d0668343..2a265863 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1AppearanceTab__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1AppearanceTab__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ChoosePage__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ChoosePage__coll__graph.pdf index ba726eb2..54a8a0d3 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ChoosePage__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ChoosePage__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ChoosePage__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ChoosePage__inherit__graph.pdf index 7e02bf11..f9ecef07 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ChoosePage__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ChoosePage__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__coll__graph.pdf index 5b9a5c4f..0f7e321c 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__inherit__graph.pdf index 914c014a..ffc36ee0 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ConclusionPage__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ConclusionPage__coll__graph.pdf index 70f16281..9a8efb6c 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ConclusionPage__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ConclusionPage__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ConclusionPage__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ConclusionPage__inherit__graph.pdf index e8defa91..06b96cd8 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ConclusionPage__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ConclusionPage__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.pdf index 1d9fa091..1abeebfd 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.pdf index 391ec213..b81d3c32 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1FilePage__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1FilePage__coll__graph.pdf index 9631f884..edfdb7a4 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1FilePage__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1FilePage__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1FilePage__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1FilePage__inherit__graph.pdf index d9b2c0ac..9a17ba88 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1FilePage__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1FilePage__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1FileReadTask__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1FileReadTask__coll__graph.md5 index 7cd12749..68ef63f1 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1FileReadTask__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1FileReadTask__coll__graph.md5 @@ -1 +1 @@ -db00e73d635368b3f1aa724c20491f1d \ No newline at end of file +028015d3aac4d3fa6ccfdda489d1a2b2 \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1FileReadTask__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1FileReadTask__coll__graph.pdf index 36ca42e4..74e37bc8 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1FileReadTask__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1FileReadTask__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1FileReadTask__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1FileReadTask__inherit__graph.pdf index 014a77b7..8c872242 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1FileReadTask__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1FileReadTask__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1FindWidget__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1FindWidget__coll__graph.pdf index 15859c69..6588fbbb 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1FindWidget__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1FindWidget__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1FindWidget__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1FindWidget__inherit__graph.pdf index 473d2384..693d0f4f 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1FindWidget__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1FindWidget__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralTab__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralTab__coll__graph.pdf index 6d8d83b3..58e22bbd 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralTab__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralTab__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralTab__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralTab__inherit__graph.pdf index c19af612..905ea554 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralTab__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralTab__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1HelpPage__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1HelpPage__coll__graph.pdf index e12345d8..8eb54619 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1HelpPage__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1HelpPage__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1HelpPage__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1HelpPage__inherit__graph.pdf index 2f55010d..9df0b733 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1HelpPage__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1HelpPage__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1InfoBoardWidget__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1InfoBoardWidget__coll__graph.pdf index 95ea9791..92e1b1c5 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1InfoBoardWidget__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1InfoBoardWidget__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1InfoBoardWidget__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1InfoBoardWidget__inherit__graph.pdf index 3e463f43..571d3522 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1InfoBoardWidget__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1InfoBoardWidget__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1InfoTab__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1InfoTab__coll__graph.pdf index 76f0bf2c..7c169a0c 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1InfoTab__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1InfoTab__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1InfoTab__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1InfoTab__inherit__graph.pdf index 9be56a9a..87ca156c 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1InfoTab__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1InfoTab__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1IntroPage__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1IntroPage__coll__graph.pdf index a08d2c47..9970e008 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1IntroPage__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1IntroPage__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1IntroPage__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1IntroPage__inherit__graph.pdf index a08d2c47..ddd582ba 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1IntroPage__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1IntroPage__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.pdf index ba8c47d1..eecb4e42 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.pdf index ba8c47d1..1b79a5eb 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.pdf index b082d5de..02f84ed4 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.pdf index 35e66702..53daa3b4 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenPage__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenPage__coll__graph.pdf index 2137e309..583a19d2 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenPage__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenPage__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenPage__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenPage__inherit__graph.pdf index 2137e309..72f4feae 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenPage__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenPage__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.pdf index 198f18df..e558b74a 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.pdf index 2fdcabe2..fa21bbcf 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyList__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyList__coll__graph.pdf index 610d051e..f8a2c6f3 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyList__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyList__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyList__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyList__inherit__graph.pdf index 8261c929..531c57fa 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyList__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyList__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.pdf index 319b3efa..76445383 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt__inherit__graph.pdf index 256e8d40..74df5065 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.pdf index ade95e34..7f643e26 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.pdf index e8b02d19..14273328 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__coll__graph.pdf index 8ab22821..2a61958f 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__inherit__graph.pdf index 2a0c1501..2185479a 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__coll__graph.pdf index 31a7d41e..47c1dc0d 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__inherit__graph.pdf index 81699c5e..f2c5ded5 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__coll__graph.pdf index 7bb79323..6bf26bb4 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__inherit__graph.pdf index df04f4d6..b10fd1c3 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__coll__graph.pdf index 9304241b..2a57417d 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__inherit__graph.pdf index 9d0173d6..f30b21b5 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.pdf index 988baeea..7e11e1cd 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.pdf index c93db34b..3d31cb9e 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.pdf index 97e75ece..1d53b148 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.pdf index e2689937..736607b0 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.pdf index 3a6ca0a5..0f0350ae 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.pdf index def57e9f..8f581e03 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.pdf index 7e15b533..8f656d1c 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.pdf index 36dc1753..7d431e2e 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyserverTab__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyserverTab__coll__graph.pdf index 87a30f20..7a1f7bb9 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyserverTab__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyserverTab__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyserverTab__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyserverTab__inherit__graph.pdf index e8af6b7f..18a6c35b 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyserverTab__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyserverTab__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ListedKeyServerTestThread__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ListedKeyServerTestThread__coll__graph.pdf index c7351976..b588877b 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ListedKeyServerTestThread__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ListedKeyServerTestThread__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ListedKeyServerTestThread__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ListedKeyServerTestThread__inherit__graph.pdf index c7351976..1596ab1a 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ListedKeyServerTestThread__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ListedKeyServerTestThread__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.pdf index dbb80e37..995b2cd8 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__inherit__graph.pdf index d817c885..eab5f6b8 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1NetworkTab__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1NetworkTab__coll__graph.pdf index 0b902340..64c39e38 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1NetworkTab__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1NetworkTab__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1NetworkTab__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1NetworkTab__inherit__graph.pdf index d59b3728..55f59dc8 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1NetworkTab__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1NetworkTab__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1PlainTextEditorPage__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1PlainTextEditorPage__coll__graph.pdf index 60b0a753..55b9007d 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1PlainTextEditorPage__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1PlainTextEditorPage__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1PlainTextEditorPage__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1PlainTextEditorPage__inherit__graph.pdf index 41600c6f..daded3f6 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1PlainTextEditorPage__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1PlainTextEditorPage__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread__coll__graph.pdf index 2d11ca1b..59b3cb76 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread__inherit__graph.pdf index 5f64ea0f..2d56345a 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.pdf index 8caba3b3..6b9f0b8d 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.pdf index 4683c5db..592bd942 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.pdf index d2b259a5..a3595804 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.pdf index 9ff36616..15de38bb 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SettingsObject__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SettingsObject__coll__graph.pdf index 1ea9330f..6a304f0a 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SettingsObject__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SettingsObject__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SettingsObject__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SettingsObject__inherit__graph.pdf index 687484de..b5617f5e 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SettingsObject__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SettingsObject__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SignalStation__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SignalStation__coll__graph.pdf index 096b28a4..c47c1510 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SignalStation__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SignalStation__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SignalStation__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SignalStation__inherit__graph.pdf index a70110c6..bcb6127e 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SignalStation__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SignalStation__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.pdf index f64c1774..0c9f15cf 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.pdf index 26508f92..59634865 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.pdf index 0c02cafa..fe3abbf7 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.pdf index db7c51d2..c9af4032 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1TOFUInfoPage__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1TOFUInfoPage__coll__graph.pdf index 1a0711d9..b99cff38 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1TOFUInfoPage__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1TOFUInfoPage__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1TOFUInfoPage__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1TOFUInfoPage__inherit__graph.pdf index 52fc3597..7a30079b 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1TOFUInfoPage__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1TOFUInfoPage__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__coll__graph.pdf index 2144521c..b262fa39 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__inherit__graph.pdf index 72f65872..59185a97 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1TranslatorsTab__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1TranslatorsTab__coll__graph.pdf index d2b58dff..3cef58ed 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1TranslatorsTab__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1TranslatorsTab__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1TranslatorsTab__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1TranslatorsTab__inherit__graph.pdf index 2cb916f3..cac6b06b 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1TranslatorsTab__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1TranslatorsTab__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1UpdateTab__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1UpdateTab__coll__graph.pdf index 3f523fcc..b769b4f7 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1UpdateTab__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1UpdateTab__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1UpdateTab__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1UpdateTab__inherit__graph.pdf index 3a5418f6..bfd24294 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1UpdateTab__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1UpdateTab__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.pdf index 9dfc80d1..aea9b928 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__inherit__graph.pdf index 84d555e0..e610d987 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox__coll__graph.pdf index 5c7a5d94..c317a3aa 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox__inherit__graph.pdf index 4a890edb..5ce8f9d8 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1VersionCheckThread__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1VersionCheckThread__coll__graph.pdf index 3ac52a15..c7e3dae1 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1VersionCheckThread__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1VersionCheckThread__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1VersionCheckThread__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1VersionCheckThread__inherit__graph.pdf index 8fd5454f..e6c81e9e 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1VersionCheckThread__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1VersionCheckThread__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.pdf index d367f281..421a9ea1 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.pdf index 74722ebf..3ab0de7e 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1Wizard__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1Wizard__coll__graph.pdf index 157505bf..5ed71e23 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1Wizard__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1Wizard__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1Wizard__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1Wizard__inherit__graph.pdf index 157505bf..5ed71e23 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1Wizard__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1Wizard__inherit__graph.pdf differ diff --git a/docs/latex/classProxyConnectionTestThread__coll__graph.pdf b/docs/latex/classProxyConnectionTestThread__coll__graph.pdf index ab3f998b..4a082912 100644 Binary files a/docs/latex/classProxyConnectionTestThread__coll__graph.pdf and b/docs/latex/classProxyConnectionTestThread__coll__graph.pdf differ diff --git a/docs/latex/classSignatureDetailsDialog__coll__graph.pdf b/docs/latex/classSignatureDetailsDialog__coll__graph.pdf index 579ab5d5..e9df40ff 100644 Binary files a/docs/latex/classSignatureDetailsDialog__coll__graph.pdf and b/docs/latex/classSignatureDetailsDialog__coll__graph.pdf differ diff --git a/docs/latex/classSignatureDetailsDialog__inherit__graph.pdf b/docs/latex/classSignatureDetailsDialog__inherit__graph.pdf index 0cb232ef..c62e2a5a 100644 Binary files a/docs/latex/classSignatureDetailsDialog__inherit__graph.pdf and b/docs/latex/classSignatureDetailsDialog__inherit__graph.pdf differ diff --git a/docs/latex/classTestListedKeyServerThread__coll__graph.pdf b/docs/latex/classTestListedKeyServerThread__coll__graph.pdf index ee7337eb..af2f6763 100644 Binary files a/docs/latex/classTestListedKeyServerThread__coll__graph.pdf and b/docs/latex/classTestListedKeyServerThread__coll__graph.pdf differ diff --git a/docs/latex/classclass__coll__graph.pdf b/docs/latex/classclass__coll__graph.pdf index 9fb2c5a1..93b91205 100644 Binary files a/docs/latex/classclass__coll__graph.pdf and b/docs/latex/classclass__coll__graph.pdf differ diff --git a/docs/latex/namespaceGpgFrontend_1_1Thread.tex b/docs/latex/namespaceGpgFrontend_1_1Thread.tex index 457225a6..930b6a15 100644 --- a/docs/latex/namespaceGpgFrontend_1_1Thread.tex +++ b/docs/latex/namespaceGpgFrontend_1_1Thread.tex @@ -26,4 +26,20 @@ You should have received a copy of the G\+NU General Public License along with \ The initial version of the source code is inherited from the gpg4usb project, which is under G\+P\+L-\/3.\+0-\/or-\/later. -The source code version of this software was modified and released by Saturneric\href{mailto:eric@bktus.com}{\texttt{ eric@bktus.\+com}}\href{mailto:eric@bktus.com}{\texttt{ eric@bktus.\+com}} starting on May 12, 2021. \ No newline at end of file +The source code version of this software was modified and released by Saturneric\href{mailto:eric@bktus.com}{\texttt{ eric@bktus.\+com}}\href{mailto:eric@bktus.com}{\texttt{ eric@bktus.\+com}} starting on May 12, 2021. + +Copyright (C) 2021 Saturneric + +This file is part of \mbox{\hyperlink{namespaceGpgFrontend}{Gpg\+Frontend}}. + +\mbox{\hyperlink{namespaceGpgFrontend}{Gpg\+Frontend}} is free software\+: you can redistribute it and/or modify it under the terms of the G\+NU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. + +\mbox{\hyperlink{namespaceGpgFrontend}{Gpg\+Frontend}} is distributed in the hope that it will be useful, but W\+I\+T\+H\+O\+UT A\+NY W\+A\+R\+R\+A\+N\+TY; without even the implied warranty of M\+E\+R\+C\+H\+A\+N\+T\+A\+B\+I\+L\+I\+TY or F\+I\+T\+N\+E\+SS F\+OR A P\+A\+R\+T\+I\+C\+U\+L\+AR P\+U\+R\+P\+O\+SE. See the G\+NU General Public License for more details. + +You should have received a copy of the G\+NU General Public License along with \mbox{\hyperlink{namespaceGpgFrontend}{Gpg\+Frontend}}. If not, see \href{https://www.gnu.org/licenses/}{\texttt{ https\+://www.\+gnu.\+org/licenses/}}. + +The initial version of the source code is inherited from the gpg4usb project, which is under G\+P\+L-\/3.\+0-\/or-\/later. + +All the source code of \mbox{\hyperlink{namespaceGpgFrontend}{Gpg\+Frontend}} was modified and released by Saturneric\href{mailto:eric@bktus.com}{\texttt{ eric@bktus.\+com}} starting on May 12, 2021. + +S\+P\+D\+X-\/\+License-\/\+Identifier\+: G\+P\+L-\/3.\+0-\/or-\/later \ No newline at end of file diff --git a/docs/latex/structGpgFrontend_1_1ArchiveStruct__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1ArchiveStruct__coll__graph.pdf index 942036d1..3695e215 100644 Binary files a/docs/latex/structGpgFrontend_1_1ArchiveStruct__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1ArchiveStruct__coll__graph.pdf differ diff --git a/docs/latex/structGpgFrontend_1_1GpgContextInitArgs__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1GpgContextInitArgs__coll__graph.pdf index 255cc217..20b4783a 100644 Binary files a/docs/latex/structGpgFrontend_1_1GpgContextInitArgs__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1GpgContextInitArgs__coll__graph.pdf differ diff --git a/docs/latex/structGpgFrontend_1_1GpgContext_1_1__ctx__ref__deleter__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1GpgContext_1_1__ctx__ref__deleter__coll__graph.pdf index cce58f20..1b8709a4 100644 Binary files a/docs/latex/structGpgFrontend_1_1GpgContext_1_1__ctx__ref__deleter__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1GpgContext_1_1__ctx__ref__deleter__coll__graph.pdf differ diff --git a/docs/latex/structGpgFrontend_1_1GpgData_1_1__data__ref__deleter__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1GpgData_1_1__data__ref__deleter__coll__graph.pdf index 4228b67e..12378fa5 100644 Binary files a/docs/latex/structGpgFrontend_1_1GpgData_1_1__data__ref__deleter__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1GpgData_1_1__data__ref__deleter__coll__graph.pdf differ diff --git a/docs/latex/structGpgFrontend_1_1GpgKey_1_1__key__ref__deleter__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1GpgKey_1_1__key__ref__deleter__coll__graph.pdf index b96e5f7b..8a3f457b 100644 Binary files a/docs/latex/structGpgFrontend_1_1GpgKey_1_1__key__ref__deleter__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1GpgKey_1_1__key__ref__deleter__coll__graph.pdf differ diff --git a/docs/latex/structGpgFrontend_1_1Thread_1_1Task_1_1DataObject_1_1Destructor__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1Thread_1_1Task_1_1DataObject_1_1Destructor__coll__graph.pdf index fd84c158..e84ba7a3 100644 Binary files a/docs/latex/structGpgFrontend_1_1Thread_1_1Task_1_1DataObject_1_1Destructor__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1Thread_1_1Task_1_1DataObject_1_1Destructor__coll__graph.pdf differ diff --git a/docs/latex/structGpgFrontend_1_1UI_1_1KeyListColumn__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1UI_1_1KeyListColumn__coll__graph.pdf index e78a7fb6..fb84c2e3 100644 Binary files a/docs/latex/structGpgFrontend_1_1UI_1_1KeyListColumn__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1UI_1_1KeyListColumn__coll__graph.pdf differ diff --git a/docs/latex/structGpgFrontend_1_1UI_1_1KeyListRow__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1UI_1_1KeyListRow__coll__graph.pdf index c2a4908e..93c5b74b 100644 Binary files a/docs/latex/structGpgFrontend_1_1UI_1_1KeyListRow__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1UI_1_1KeyListRow__coll__graph.pdf differ diff --git a/docs/latex/structGpgFrontend_1_1UI_1_1KeyMenuAbility__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1UI_1_1KeyMenuAbility__coll__graph.pdf index 09ec8d3a..17f0454d 100644 Binary files a/docs/latex/structGpgFrontend_1_1UI_1_1KeyMenuAbility__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1UI_1_1KeyMenuAbility__coll__graph.pdf differ diff --git a/docs/latex/structGpgFrontend_1_1UI_1_1KeyTable__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1UI_1_1KeyTable__coll__graph.pdf index f165de25..de66fdb9 100644 Binary files a/docs/latex/structGpgFrontend_1_1UI_1_1KeyTable__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1UI_1_1KeyTable__coll__graph.pdf differ diff --git a/docs/latex/structGpgFrontend_1_1UI_1_1MainWindow_1_1CryptoMenu__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1UI_1_1MainWindow_1_1CryptoMenu__coll__graph.pdf index 9034a20d..93a80dc8 100644 Binary files a/docs/latex/structGpgFrontend_1_1UI_1_1MainWindow_1_1CryptoMenu__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1UI_1_1MainWindow_1_1CryptoMenu__coll__graph.pdf differ diff --git a/docs/latex/structGpgFrontend_1_1UI_1_1SoftwareVersion__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1UI_1_1SoftwareVersion__coll__graph.pdf index ce808d25..765daab0 100644 Binary files a/docs/latex/structGpgFrontend_1_1UI_1_1SoftwareVersion__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1UI_1_1SoftwareVersion__coll__graph.pdf differ diff --git a/docs/latex/structGpgFrontend_1_1__result__ref__deletor__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1__result__ref__deletor__coll__graph.pdf index 562d3ba2..a4049999 100644 Binary files a/docs/latex/structGpgFrontend_1_1__result__ref__deletor__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1__result__ref__deletor__coll__graph.pdf differ