diff --git a/docs/html/GeneralDialog_8h_source.html b/docs/html/GeneralDialog_8h_source.html index fcca25f6..adaf690e 100644 --- a/docs/html/GeneralDialog_8h_source.html +++ b/docs/html/GeneralDialog_8h_source.html @@ -126,26 +126,19 @@ $(document).ready(function(){initNavTree('GeneralDialog_8h_source.html',''); ini
42 
46  ~GeneralDialog() override;
47 
-
48  protected:
-
52  void setPosCenterOfScreen();
+
48  private slots:
+
52  void slot_restore_settings() noexcept;
53 
-
58  void movePosition2CenterOfParent();
-
59 
-
60  private slots:
-
64  void slot_restore_settings() noexcept;
+
57  void slot_save_settings() noexcept;
+
58 
+
59  private:
+
60  std::string name_;
+
61  QPoint pos_;
+
62  QSize size_;
+
63 };
+
64 } // namespace GpgFrontend::UI
65 
-
69  void slot_save_settings() noexcept;
-
70 
-
71  private:
-
72  std::string name_;
-
73  QPoint pos_;
-
74  QSize size_;
-
75  QPoint parent_pos_;
-
76  QSize parent_size_;
-
77 };
-
78 } // namespace GpgFrontend::UI
-
79 
-
80 #endif // GPGFRONTEND_GENERALDIALOG_H
+
66 #endif // GPGFRONTEND_GENERALDIALOG_H
GpgFrontend::UI::GeneralDialog
Definition: GeneralDialog.h:35
GpgFrontend::UI::GeneralDialog::GeneralDialog
GeneralDialog(std::string name, QWidget *parent=nullptr)
Definition: GeneralDialog.cpp:32
GpgFrontend::UI
Definition: FileReadTask.cpp:31
diff --git a/docs/html/GeneralMainWindow_8h_source.html b/docs/html/GeneralMainWindow_8h_source.html index e0a0492c..90676dd4 100644 --- a/docs/html/GeneralMainWindow_8h_source.html +++ b/docs/html/GeneralMainWindow_8h_source.html @@ -101,7 +101,7 @@ $(document).ready(function(){initNavTree('GeneralMainWindow_8h_source.html','');
50  ~GeneralMainWindow() override;
51 
52  protected:
-
57  void closeEvent(QCloseEvent* event) override;
+
57  void closeEvent(QCloseEvent* event);
58 
59  QSize icon_size_{};
60  int font_size_{};
@@ -122,7 +122,7 @@ $(document).ready(function(){initNavTree('GeneralMainWindow_8h_source.html','');
81 #endif // GPGFRONTEND_GENERALMAINWINDOW_H
GpgFrontend::UI::GeneralMainWindow
Definition: GeneralMainWindow.h:39
GpgFrontend::UI::GeneralMainWindow::GeneralMainWindow
GeneralMainWindow(std::string name, QWidget *parent=nullptr)
Definition: GeneralMainWindow.cpp:35
-
GpgFrontend::UI::GeneralMainWindow::closeEvent
void closeEvent(QCloseEvent *event) override
Definition: GeneralMainWindow.cpp:43
+
GpgFrontend::UI::GeneralMainWindow::closeEvent
void closeEvent(QCloseEvent *event)
Definition: GeneralMainWindow.cpp:43
GpgFrontend::UI
Definition: FileReadTask.cpp:31
diff --git a/docs/html/GpgGenKeyInfo_8h_source.html b/docs/html/GpgGenKeyInfo_8h_source.html index d0bf60c9..57549af5 100644 --- a/docs/html/GpgGenKeyInfo_8h_source.html +++ b/docs/html/GpgGenKeyInfo_8h_source.html @@ -123,179 +123,177 @@ $(document).ready(function(){initNavTree('GpgGenKeyInfo_8h_source.html',''); ini
62 
63  std::string passphrase_;
64 
-
65  using KeyGenAlgo = std::pair<std::string, std::string>;
-
66 
-
67  public:
-
73  static const std::vector<KeyGenAlgo> &GetSupportedKeyAlgo();
-
74 
-
80  static const std::vector<KeyGenAlgo> &GetSupportedSubkeyAlgo();
-
81 
-
87  static const std::vector<KeyGenAlgo> &GetSupportedKeyAlgoStandalone();
-
88 
-
94  static const std::vector<KeyGenAlgo> &GetSupportedSubkeyAlgoStandalone();
-
95 
-
102  [[nodiscard]] bool IsSubKey() const { return subkey_; }
-
103 
-
109  void SetIsSubKey(bool m_sub_key) { GenKeyInfo::subkey_ = m_sub_key; }
-
110 
-
116  [[nodiscard]] std::string GetUserid() const {
-
117  auto uid_format = boost::format("%1%(%2%)<%3%>") % this->name_ %
-
118  this->comment_ % this->email_;
-
119  return uid_format.str();
-
120  }
-
121 
-
127  void SetName(const std::string &m_name) { this->name_ = m_name; }
-
128 
-
134  void SetEmail(const std::string &m_email) { this->email_ = m_email; }
-
135 
-
141  void SetComment(const std::string &m_comment) { this->comment_ = m_comment; }
-
142 
-
148  [[nodiscard]] std::string GetName() const { return name_; }
-
149 
-
155  [[nodiscard]] std::string GetEmail() const { return email_; }
-
156 
-
162  [[nodiscard]] std::string GetComment() const { return comment_; }
-
163 
-
169  [[nodiscard]] const std::string &GetAlgo() const { return algo_; }
-
170 
-
176  void SetAlgo(const GpgFrontend::GenKeyInfo::KeyGenAlgo &m_algo);
-
177 
-
183  [[nodiscard]] std::string GetKeySizeStr() const;
-
184 
-
190  [[nodiscard]] int GetKeyLength() const { return key_size_; }
-
191 
-
197  void SetKeyLength(int m_key_size);
-
198 
-
204  [[nodiscard]] const boost::posix_time::ptime &GetExpireTime() const {
-
205  return expired_;
-
206  }
-
207 
-
213  void SetExpireTime(const boost::posix_time::ptime &m_expired);
-
214 
-
221  [[nodiscard]] bool IsNonExpired() const { return non_expired_; }
-
222 
-
228  void SetNonExpired(bool m_non_expired);
-
229 
-
236  [[nodiscard]] bool IsNoPassPhrase() const { return this->no_passphrase_; }
-
237 
-
243  void SetNonPassPhrase(bool m_non_pass_phrase) {
-
244  GenKeyInfo::no_passphrase_ = m_non_pass_phrase;
-
245  }
-
246 
-
253  [[nodiscard]] bool IsAllowSigning() const { return allow_signing_; }
-
254 
-
261  [[nodiscard]] bool IsAllowNoPassPhrase() const {
-
262  return allow_no_pass_phrase_;
-
263  }
-
264 
-
270  void SetAllowSigning(bool m_allow_signing) {
-
271  if (allow_change_signing_) GenKeyInfo::allow_signing_ = m_allow_signing;
-
272  }
-
273 
-
280  [[nodiscard]] bool IsAllowEncryption() const { return allow_encryption_; }
-
281 
-
287  void SetAllowEncryption(bool m_allow_encryption);
-
288 
-
295  [[nodiscard]] bool IsAllowCertification() const {
-
296  return allow_certification_;
-
297  }
-
298 
-
304  void SetAllowCertification(bool m_allow_certification);
-
305 
-
312  [[nodiscard]] bool IsAllowAuthentication() const {
-
313  return allow_authentication_;
-
314  }
-
315 
-
321  void SetAllowAuthentication(bool m_allow_authentication) {
-
322  if (allow_change_authentication_)
-
323  GenKeyInfo::allow_authentication_ = m_allow_authentication;
-
324  }
-
325 
-
331  [[nodiscard]] const std::string &GetPassPhrase() const { return passphrase_; }
-
332 
-
338  void SetPassPhrase(const std::string &m_pass_phrase) {
-
339  GenKeyInfo::passphrase_ = m_pass_phrase;
-
340  }
-
341 
-
348  [[nodiscard]] bool IsAllowChangeSigning() const {
-
349  return allow_change_signing_;
-
350  }
-
351 
-
358  [[nodiscard]] bool IsAllowChangeEncryption() const {
-
359  return allow_change_encryption_;
-
360  }
-
361 
-
368  [[nodiscard]] bool IsAllowChangeCertification() const {
-
369  return allow_change_certification_;
-
370  }
-
371 
-
378  [[nodiscard]] bool IsAllowChangeAuthentication() const {
-
379  return allow_change_authentication_;
-
380  }
-
381 
-
387  [[nodiscard]] int GetSuggestMaxKeySize() const {
-
388  return suggest_max_key_size_;
-
389  }
-
390 
-
396  [[nodiscard]] int GetSuggestMinKeySize() const {
-
397  return suggest_min_key_size_;
-
398  }
-
399 
-
405  [[nodiscard]] int GetSizeChangeStep() const {
-
406  return suggest_size_addition_step_;
-
407  }
-
408 
-
409  private:
-
410  bool allow_encryption_ = true;
-
411  bool allow_change_encryption_ = true;
-
412  bool allow_certification_ = true;
-
413  bool allow_change_certification_ = true;
-
414  bool allow_authentication_ = true;
-
415  bool allow_change_authentication_ = true;
-
416  bool allow_signing_ = true;
-
417  bool allow_change_signing_ = true;
-
418 
-
423  void reset_options();
-
424 
-
425  public:
-
432  explicit GenKeyInfo(bool m_is_sub_key = false, bool m_standalone = false);
-
433 };
+
65  public:
+
71  static const std::vector<std::string> &GetSupportedKeyAlgo();
+
72 
+
78  static const std::vector<std::string> &GetSupportedSubkeyAlgo();
+
79 
+
85  static const std::vector<std::string> &GetSupportedKeyAlgoStandalone();
+
86 
+
92  static const std::vector<std::string> &GetSupportedSubkeyAlgoStandalone();
+
93 
+
100  [[nodiscard]] bool IsSubKey() const { return subkey_; }
+
101 
+
107  void SetIsSubKey(bool m_sub_key) { GenKeyInfo::subkey_ = m_sub_key; }
+
108 
+
114  [[nodiscard]] std::string GetUserid() const {
+
115  auto uid_format = boost::format("%1%(%2%)<%3%>") % this->name_ %
+
116  this->comment_ % this->email_;
+
117  return uid_format.str();
+
118  }
+
119 
+
125  void SetName(const std::string &m_name) { this->name_ = m_name; }
+
126 
+
132  void SetEmail(const std::string &m_email) { this->email_ = m_email; }
+
133 
+
139  void SetComment(const std::string &m_comment) { this->comment_ = m_comment; }
+
140 
+
146  [[nodiscard]] std::string GetName() const { return name_; }
+
147 
+
153  [[nodiscard]] std::string GetEmail() const { return email_; }
+
154 
+
160  [[nodiscard]] std::string GetComment() const { return comment_; }
+
161 
+
167  [[nodiscard]] const std::string &GetAlgo() const { return algo_; }
+
168 
+
174  void SetAlgo(const std::string &m_algo);
+
175 
+
181  [[nodiscard]] std::string GetKeySizeStr() const;
+
182 
+
188  [[nodiscard]] int GetKeyLength() const { return key_size_; }
+
189 
+
195  void SetKeyLength(int m_key_size);
+
196 
+
202  [[nodiscard]] const boost::posix_time::ptime &GetExpireTime() const {
+
203  return expired_;
+
204  }
+
205 
+
211  void SetExpireTime(const boost::posix_time::ptime &m_expired);
+
212 
+
219  [[nodiscard]] bool IsNonExpired() const { return non_expired_; }
+
220 
+
226  void SetNonExpired(bool m_non_expired);
+
227 
+
234  [[nodiscard]] bool IsNoPassPhrase() const { return this->no_passphrase_; }
+
235 
+
241  void SetNonPassPhrase(bool m_non_pass_phrase) {
+
242  GenKeyInfo::no_passphrase_ = m_non_pass_phrase;
+
243  }
+
244 
+
251  [[nodiscard]] bool IsAllowSigning() const { return allow_signing_; }
+
252 
+
259  [[nodiscard]] bool IsAllowNoPassPhrase() const {
+
260  return allow_no_pass_phrase_;
+
261  }
+
262 
+
268  void SetAllowSigning(bool m_allow_signing) {
+
269  if (allow_change_signing_) GenKeyInfo::allow_signing_ = m_allow_signing;
+
270  }
+
271 
+
278  [[nodiscard]] bool IsAllowEncryption() const { return allow_encryption_; }
+
279 
+
285  void SetAllowEncryption(bool m_allow_encryption);
+
286 
+
293  [[nodiscard]] bool IsAllowCertification() const {
+
294  return allow_certification_;
+
295  }
+
296 
+
302  void SetAllowCertification(bool m_allow_certification);
+
303 
+
310  [[nodiscard]] bool IsAllowAuthentication() const {
+
311  return allow_authentication_;
+
312  }
+
313 
+
319  void SetAllowAuthentication(bool m_allow_authentication) {
+
320  if (allow_change_authentication_)
+
321  GenKeyInfo::allow_authentication_ = m_allow_authentication;
+
322  }
+
323 
+
329  [[nodiscard]] const std::string &GetPassPhrase() const { return passphrase_; }
+
330 
+
336  void SetPassPhrase(const std::string &m_pass_phrase) {
+
337  GenKeyInfo::passphrase_ = m_pass_phrase;
+
338  }
+
339 
+
346  [[nodiscard]] bool IsAllowChangeSigning() const {
+
347  return allow_change_signing_;
+
348  }
+
349 
+
356  [[nodiscard]] bool IsAllowChangeEncryption() const {
+
357  return allow_change_encryption_;
+
358  }
+
359 
+
366  [[nodiscard]] bool IsAllowChangeCertification() const {
+
367  return allow_change_certification_;
+
368  }
+
369 
+
376  [[nodiscard]] bool IsAllowChangeAuthentication() const {
+
377  return allow_change_authentication_;
+
378  }
+
379 
+
385  [[nodiscard]] int GetSuggestMaxKeySize() const {
+
386  return suggest_max_key_size_;
+
387  }
+
388 
+
394  [[nodiscard]] int GetSuggestMinKeySize() const {
+
395  return suggest_min_key_size_;
+
396  }
+
397 
+
403  [[nodiscard]] int GetSizeChangeStep() const {
+
404  return suggest_size_addition_step_;
+
405  }
+
406 
+
407  private:
+
408  bool allow_encryption_ = true;
+
409  bool allow_change_encryption_ = true;
+
410  bool allow_certification_ = true;
+
411  bool allow_change_certification_ = true;
+
412  bool allow_authentication_ = true;
+
413  bool allow_change_authentication_ = true;
+
414  bool allow_signing_ = true;
+
415  bool allow_change_signing_ = true;
+
416 
+
421  void reset_options();
+
422 
+
423  public:
+
430  explicit GenKeyInfo(bool m_is_sub_key = false, bool m_standalone = false);
+
431 };
+
432 
+
433 } // namespace GpgFrontend
434 
-
435 } // namespace GpgFrontend
-
436 
-
437 #endif // GPGFRONTEND_GPGGENKEYINFO_H
+
435 #endif // GPGFRONTEND_GPGGENKEYINFO_H
GpgFrontend::GenKeyInfo
Definition: GpgGenKeyInfo.h:42
-
GpgFrontend::GenKeyInfo::IsAllowChangeSigning
bool IsAllowChangeSigning() const
Definition: GpgGenKeyInfo.h:348
-
GpgFrontend::GenKeyInfo::GetSuggestMinKeySize
int GetSuggestMinKeySize() const
Get the Suggest Min Key Size object.
Definition: GpgGenKeyInfo.h:396
-
GpgFrontend::GenKeyInfo::SetAllowSigning
void SetAllowSigning(bool m_allow_signing)
Set the Allow Signing object.
Definition: GpgGenKeyInfo.h:270
-
GpgFrontend::GenKeyInfo::IsAllowEncryption
bool IsAllowEncryption() const
Definition: GpgGenKeyInfo.h:280
-
GpgFrontend::GenKeyInfo::IsSubKey
bool IsSubKey() const
Definition: GpgGenKeyInfo.h:102
-
GpgFrontend::GenKeyInfo::GetKeyLength
int GetKeyLength() const
Get the Key Size object.
Definition: GpgGenKeyInfo.h:190
-
GpgFrontend::GenKeyInfo::GetUserid
std::string GetUserid() const
Get the Userid object.
Definition: GpgGenKeyInfo.h:116
-
GpgFrontend::GenKeyInfo::SetEmail
void SetEmail(const std::string &m_email)
Set the Email object.
Definition: GpgGenKeyInfo.h:134
-
GpgFrontend::GenKeyInfo::SetName
void SetName(const std::string &m_name)
Set the Name object.
Definition: GpgGenKeyInfo.h:127
-
GpgFrontend::GenKeyInfo::GetAlgo
const std::string & GetAlgo() const
Get the Algo object.
Definition: GpgGenKeyInfo.h:169
-
GpgFrontend::GenKeyInfo::GetEmail
std::string GetEmail() const
Get the Email object.
Definition: GpgGenKeyInfo.h:155
-
GpgFrontend::GenKeyInfo::IsNoPassPhrase
bool IsNoPassPhrase() const
Definition: GpgGenKeyInfo.h:236
-
GpgFrontend::GenKeyInfo::SetNonPassPhrase
void SetNonPassPhrase(bool m_non_pass_phrase)
Set the Non Pass Phrase object.
Definition: GpgGenKeyInfo.h:243
-
GpgFrontend::GenKeyInfo::GetPassPhrase
const std::string & GetPassPhrase() const
Get the Pass Phrase object.
Definition: GpgGenKeyInfo.h:331
-
GpgFrontend::GenKeyInfo::SetComment
void SetComment(const std::string &m_comment)
Set the Comment object.
Definition: GpgGenKeyInfo.h:141
-
GpgFrontend::GenKeyInfo::IsAllowAuthentication
bool IsAllowAuthentication() const
Definition: GpgGenKeyInfo.h:312
-
GpgFrontend::GenKeyInfo::SetAllowAuthentication
void SetAllowAuthentication(bool m_allow_authentication)
Set the Allow Authentication object.
Definition: GpgGenKeyInfo.h:321
-
GpgFrontend::GenKeyInfo::IsAllowChangeAuthentication
bool IsAllowChangeAuthentication() const
Definition: GpgGenKeyInfo.h:378
-
GpgFrontend::GenKeyInfo::GetComment
std::string GetComment() const
Get the Comment object.
Definition: GpgGenKeyInfo.h:162
-
GpgFrontend::GenKeyInfo::GetName
std::string GetName() const
Get the Name object.
Definition: GpgGenKeyInfo.h:148
-
GpgFrontend::GenKeyInfo::GetSizeChangeStep
int GetSizeChangeStep() const
Get the Size Change Step object.
Definition: GpgGenKeyInfo.h:405
-
GpgFrontend::GenKeyInfo::GetExpireTime
const boost::posix_time::ptime & GetExpireTime() const
Get the Expired object.
Definition: GpgGenKeyInfo.h:204
-
GpgFrontend::GenKeyInfo::SetIsSubKey
void SetIsSubKey(bool m_sub_key)
Set the Is Sub Key object.
Definition: GpgGenKeyInfo.h:109
-
GpgFrontend::GenKeyInfo::IsAllowChangeEncryption
bool IsAllowChangeEncryption() const
Definition: GpgGenKeyInfo.h:358
-
GpgFrontend::GenKeyInfo::IsAllowCertification
bool IsAllowCertification() const
Definition: GpgGenKeyInfo.h:295
-
GpgFrontend::GenKeyInfo::IsAllowSigning
bool IsAllowSigning() const
Definition: GpgGenKeyInfo.h:253
-
GpgFrontend::GenKeyInfo::IsAllowChangeCertification
bool IsAllowChangeCertification() const
Definition: GpgGenKeyInfo.h:368
-
GpgFrontend::GenKeyInfo::GetSuggestMaxKeySize
int GetSuggestMaxKeySize() const
Get the Suggest Max Key Size object.
Definition: GpgGenKeyInfo.h:387
-
GpgFrontend::GenKeyInfo::IsNonExpired
bool IsNonExpired() const
Definition: GpgGenKeyInfo.h:221
-
GpgFrontend::GenKeyInfo::IsAllowNoPassPhrase
bool IsAllowNoPassPhrase() const
Definition: GpgGenKeyInfo.h:261
-
GpgFrontend::GenKeyInfo::SetPassPhrase
void SetPassPhrase(const std::string &m_pass_phrase)
Set the Pass Phrase object.
Definition: GpgGenKeyInfo.h:338
+
GpgFrontend::GenKeyInfo::IsAllowChangeSigning
bool IsAllowChangeSigning() const
Definition: GpgGenKeyInfo.h:346
+
GpgFrontend::GenKeyInfo::GetSuggestMinKeySize
int GetSuggestMinKeySize() const
Get the Suggest Min Key Size object.
Definition: GpgGenKeyInfo.h:394
+
GpgFrontend::GenKeyInfo::SetAllowSigning
void SetAllowSigning(bool m_allow_signing)
Set the Allow Signing object.
Definition: GpgGenKeyInfo.h:268
+
GpgFrontend::GenKeyInfo::IsAllowEncryption
bool IsAllowEncryption() const
Definition: GpgGenKeyInfo.h:278
+
GpgFrontend::GenKeyInfo::IsSubKey
bool IsSubKey() const
Definition: GpgGenKeyInfo.h:100
+
GpgFrontend::GenKeyInfo::GetKeyLength
int GetKeyLength() const
Get the Key Size object.
Definition: GpgGenKeyInfo.h:188
+
GpgFrontend::GenKeyInfo::GetUserid
std::string GetUserid() const
Get the Userid object.
Definition: GpgGenKeyInfo.h:114
+
GpgFrontend::GenKeyInfo::SetEmail
void SetEmail(const std::string &m_email)
Set the Email object.
Definition: GpgGenKeyInfo.h:132
+
GpgFrontend::GenKeyInfo::SetName
void SetName(const std::string &m_name)
Set the Name object.
Definition: GpgGenKeyInfo.h:125
+
GpgFrontend::GenKeyInfo::GetAlgo
const std::string & GetAlgo() const
Get the Algo object.
Definition: GpgGenKeyInfo.h:167
+
GpgFrontend::GenKeyInfo::GetEmail
std::string GetEmail() const
Get the Email object.
Definition: GpgGenKeyInfo.h:153
+
GpgFrontend::GenKeyInfo::IsNoPassPhrase
bool IsNoPassPhrase() const
Definition: GpgGenKeyInfo.h:234
+
GpgFrontend::GenKeyInfo::SetNonPassPhrase
void SetNonPassPhrase(bool m_non_pass_phrase)
Set the Non Pass Phrase object.
Definition: GpgGenKeyInfo.h:241
+
GpgFrontend::GenKeyInfo::GetPassPhrase
const std::string & GetPassPhrase() const
Get the Pass Phrase object.
Definition: GpgGenKeyInfo.h:329
+
GpgFrontend::GenKeyInfo::SetComment
void SetComment(const std::string &m_comment)
Set the Comment object.
Definition: GpgGenKeyInfo.h:139
+
GpgFrontend::GenKeyInfo::IsAllowAuthentication
bool IsAllowAuthentication() const
Definition: GpgGenKeyInfo.h:310
+
GpgFrontend::GenKeyInfo::SetAllowAuthentication
void SetAllowAuthentication(bool m_allow_authentication)
Set the Allow Authentication object.
Definition: GpgGenKeyInfo.h:319
+
GpgFrontend::GenKeyInfo::IsAllowChangeAuthentication
bool IsAllowChangeAuthentication() const
Definition: GpgGenKeyInfo.h:376
+
GpgFrontend::GenKeyInfo::GetComment
std::string GetComment() const
Get the Comment object.
Definition: GpgGenKeyInfo.h:160
+
GpgFrontend::GenKeyInfo::GetName
std::string GetName() const
Get the Name object.
Definition: GpgGenKeyInfo.h:146
+
GpgFrontend::GenKeyInfo::GetSizeChangeStep
int GetSizeChangeStep() const
Get the Size Change Step object.
Definition: GpgGenKeyInfo.h:403
+
GpgFrontend::GenKeyInfo::GetExpireTime
const boost::posix_time::ptime & GetExpireTime() const
Get the Expired object.
Definition: GpgGenKeyInfo.h:202
+
GpgFrontend::GenKeyInfo::SetIsSubKey
void SetIsSubKey(bool m_sub_key)
Set the Is Sub Key object.
Definition: GpgGenKeyInfo.h:107
+
GpgFrontend::GenKeyInfo::IsAllowChangeEncryption
bool IsAllowChangeEncryption() const
Definition: GpgGenKeyInfo.h:356
+
GpgFrontend::GenKeyInfo::IsAllowCertification
bool IsAllowCertification() const
Definition: GpgGenKeyInfo.h:293
+
GpgFrontend::GenKeyInfo::IsAllowSigning
bool IsAllowSigning() const
Definition: GpgGenKeyInfo.h:251
+
GpgFrontend::GenKeyInfo::IsAllowChangeCertification
bool IsAllowChangeCertification() const
Definition: GpgGenKeyInfo.h:366
+
GpgFrontend::GenKeyInfo::GetSuggestMaxKeySize
int GetSuggestMaxKeySize() const
Get the Suggest Max Key Size object.
Definition: GpgGenKeyInfo.h:385
+
GpgFrontend::GenKeyInfo::IsNonExpired
bool IsNonExpired() const
Definition: GpgGenKeyInfo.h:219
+
GpgFrontend::GenKeyInfo::IsAllowNoPassPhrase
bool IsAllowNoPassPhrase() const
Definition: GpgGenKeyInfo.h:259
+
GpgFrontend::GenKeyInfo::SetPassPhrase
void SetPassPhrase(const std::string &m_pass_phrase)
Set the Pass Phrase object.
Definition: GpgGenKeyInfo.h:336
GpgFrontend
Definition: CoreCommonUtil.cpp:29
diff --git a/docs/html/GpgKeyGetter_8h_source.html b/docs/html/GpgKeyGetter_8h_source.html index 6191f509..17691b05 100644 --- a/docs/html/GpgKeyGetter_8h_source.html +++ b/docs/html/GpgKeyGetter_8h_source.html @@ -139,7 +139,7 @@ $(document).ready(function(){initNavTree('GpgKeyGetter_8h_source.html',''); init
GpgFrontend::GpgKeyGetter::ctx_mutex_
std::mutex ctx_mutex_
shared mutex for the keys cache
Definition: GpgKeyGetter.h:121
GpgFrontend::GpgKeyGetter::keys_cache_
std::map< std::string, GpgKey > keys_cache_
cache the keys with key id
Definition: GpgKeyGetter.h:127
GpgFrontend::GpgKeyGetter::keys_cache_mutex_
std::mutex keys_cache_mutex_
shared mutex for the keys cache
Definition: GpgKeyGetter.h:133
-
GpgFrontend::GpgKey
Definition: GpgKey.h:43
+
GpgFrontend::GpgKey
Definition: GpgKey.h:41
GpgFrontend::SingletonFunctionObject
Definition: GpgFunctionObject.h:148
GpgFrontend::SingletonFunctionObject::GetDefaultChannel
static int GetDefaultChannel()
Get the Default Channel object.
Definition: GpgFunctionObject.h:232
GpgFrontend::SingletonFunctionObject< GpgContext >::GetInstance
static GpgContext & GetInstance(int channel=GpgFrontend::GPGFRONTEND_DEFAULT_CHANNEL)
Get the Instance object.
Definition: GpgFunctionObject.h:170
diff --git a/docs/html/GpgKeyImportExporter_8h_source.html b/docs/html/GpgKeyImportExporter_8h_source.html index f62cd0c1..09a67884 100644 --- a/docs/html/GpgKeyImportExporter_8h_source.html +++ b/docs/html/GpgKeyImportExporter_8h_source.html @@ -165,7 +165,7 @@ $(document).ready(function(){initNavTree('GpgKeyImportExporter_8h_source.html','
GpgFrontend::GpgImportInformation
Definition: GpgKeyImportExporter.h:57
GpgFrontend::GpgImportedKey
Definition: GpgKeyImportExporter.h:45
GpgFrontend::GpgKeyImportExporter
Definition: GpgKeyImportExporter.h:90
-
GpgFrontend::GpgKey
Definition: GpgKey.h:43
+
GpgFrontend::GpgKey
Definition: GpgKey.h:41
GpgFrontend::SingletonFunctionObject
Definition: GpgFunctionObject.h:148
GpgFrontend::SingletonFunctionObject::GetDefaultChannel
static int GetDefaultChannel()
Get the Default Channel object.
Definition: GpgFunctionObject.h:232
GpgFrontend::SingletonFunctionObject< GpgContext >::GetInstance
static GpgContext & GetInstance(int channel=GpgFrontend::GPGFRONTEND_DEFAULT_CHANNEL)
Get the Instance object.
Definition: GpgFunctionObject.h:170
diff --git a/docs/html/GpgKeyManager_8h_source.html b/docs/html/GpgKeyManager_8h_source.html index efb4f9f0..b80b2f04 100644 --- a/docs/html/GpgKeyManager_8h_source.html +++ b/docs/html/GpgKeyManager_8h_source.html @@ -121,7 +121,7 @@ $(document).ready(function(){initNavTree('GpgKeyManager_8h_source.html',''); ini
93 #endif // GPGFRONTEND_ZH_CN_TS_GPGKEYMANAGER_H
GpgFrontend::GpgContext
Definition: GpgContext.h:60
GpgFrontend::GpgKeyManager
Definition: GpgKeyManager.h:43
-
GpgFrontend::GpgKey
Definition: GpgKey.h:43
+
GpgFrontend::GpgKey
Definition: GpgKey.h:41
GpgFrontend::SingletonFunctionObject
Definition: GpgFunctionObject.h:148
GpgFrontend::SingletonFunctionObject::GetDefaultChannel
static int GetDefaultChannel()
Get the Default Channel object.
Definition: GpgFunctionObject.h:232
GpgFrontend::SingletonFunctionObject< GpgContext >::GetInstance
static GpgContext & GetInstance(int channel=GpgFrontend::GPGFRONTEND_DEFAULT_CHANNEL)
Get the Instance object.
Definition: GpgFunctionObject.h:170
diff --git a/docs/html/GpgKeyOpera_8h_source.html b/docs/html/GpgKeyOpera_8h_source.html index d44a98c6..7a69da41 100644 --- a/docs/html/GpgKeyOpera_8h_source.html +++ b/docs/html/GpgKeyOpera_8h_source.html @@ -132,7 +132,7 @@ $(document).ready(function(){initNavTree('GpgKeyOpera_8h_source.html',''); initR
135 #endif // _GPGKEYOPERA_H
GpgFrontend::GpgContext
Definition: GpgContext.h:60
GpgFrontend::GpgKeyOpera
Definition: GpgKeyOpera.h:48
-
GpgFrontend::GpgKey
Definition: GpgKey.h:43
+
GpgFrontend::GpgKey
Definition: GpgKey.h:41
GpgFrontend::SingletonFunctionObject
Definition: GpgFunctionObject.h:148
GpgFrontend::SingletonFunctionObject::GetDefaultChannel
static int GetDefaultChannel()
Get the Default Channel object.
Definition: GpgFunctionObject.h:232
GpgFrontend::SingletonFunctionObject< GpgContext >::GetInstance
static GpgContext & GetInstance(int channel=GpgFrontend::GPGFRONTEND_DEFAULT_CHANNEL)
Get the Instance object.
Definition: GpgFunctionObject.h:170
diff --git a/docs/html/GpgKey_8h_source.html b/docs/html/GpgKey_8h_source.html index f9b1915f..eedeee1e 100644 --- a/docs/html/GpgKey_8h_source.html +++ b/docs/html/GpgKey_8h_source.html @@ -90,118 +90,114 @@ $(document).ready(function(){initNavTree('GpgKey_8h_source.html',''); initResiza
29 #ifndef GPGFRONTEND_GPGKEY_H
30 #define GPGFRONTEND_GPGKEY_H
31 
-
32 #include <mutex>
-
33 
-
34 #include "GpgSubKey.h"
-
35 #include "GpgUID.h"
+
32 #include "GpgSubKey.h"
+
33 #include "GpgUID.h"
+
34 
+
35 namespace GpgFrontend {
36 
-
37 namespace GpgFrontend {
-
38 
-
43 class GPGFRONTEND_CORE_EXPORT GpgKey {
-
44  public:
-
51  [[nodiscard]] bool IsGood() const;
-
52 
-
58  [[nodiscard]] std::string GetId() const;
-
59 
-
65  [[nodiscard]] std::string GetName() const;
-
66 
-
72  [[nodiscard]] std::string GetEmail() const;
-
73 
-
79  [[nodiscard]] std::string GetComment() const;
-
80 
-
86  [[nodiscard]] std::string GetFingerprint() const;
-
87 
-
93  [[nodiscard]] std::string GetProtocol() const;
-
94 
-
100  [[nodiscard]] std::string GetOwnerTrust() const;
-
101 
-
107  [[nodiscard]] std::string GetPublicKeyAlgo() const;
-
108 
-
114  [[nodiscard]] boost::posix_time::ptime GetLastUpdateTime() const;
-
115 
-
121  [[nodiscard]] boost::posix_time::ptime GetExpireTime() const;
-
122 
-
128  [[nodiscard]] boost::posix_time::ptime GetCreateTime() const;
-
129 
-
135  [[nodiscard]] unsigned int GetPrimaryKeyLength() const;
-
136 
-
143  [[nodiscard]] bool IsHasEncryptionCapability() const;
-
144 
-
152  [[nodiscard]] bool IsHasActualEncryptionCapability() const;
-
153 
-
160  [[nodiscard]] bool IsHasSigningCapability() const;
-
161 
-
168  [[nodiscard]] bool IsHasActualSigningCapability() const;
-
169 
-
176  [[nodiscard]] bool IsHasCertificationCapability() const;
-
177 
-
184  [[nodiscard]] bool IsHasActualCertificationCapability() const;
-
185 
-
192  [[nodiscard]] bool IsHasAuthenticationCapability() const;
-
193 
-
200  [[nodiscard]] bool IsHasActualAuthenticationCapability() const;
-
201 
-
208  [[nodiscard]] bool IsHasCardKey() const;
-
209 
-
216  [[nodiscard]] bool IsPrivateKey() const;
-
217 
-
224  [[nodiscard]] bool IsExpired() const;
-
225 
-
232  [[nodiscard]] bool IsRevoked() const;
-
233 
-
240  [[nodiscard]] bool IsDisabled() const;
-
241 
-
248  [[nodiscard]] bool IsHasMasterKey() const;
-
249 
-
255  [[nodiscard]] std::unique_ptr<std::vector<GpgSubKey>> GetSubKeys() const;
-
256 
-
262  [[nodiscard]] std::unique_ptr<std::vector<GpgUID>> GetUIDs() const;
-
263 
-
268  GpgKey() = default;
-
269 
-
275  explicit GpgKey(gpgme_key_t&& key);
-
276 
-
281  ~GpgKey() = default;
-
282 
-
288  GpgKey(const gpgme_key_t& key) = delete;
-
289 
-
295  GpgKey(GpgKey&& k) noexcept;
-
296 
-
303  GpgKey& operator=(GpgKey&& k) noexcept;
-
304 
-
311  GpgKey& operator=(const gpgme_key_t& key) = delete;
-
312 
-
320  bool operator==(const GpgKey& o) const;
-
321 
-
329  bool operator<=(const GpgKey& o) const;
-
330 
-
336  explicit operator gpgme_key_t() const;
-
337 
-
343  [[nodiscard]] GpgKey Copy() const;
-
344 
-
345  private:
-
350  struct GPGFRONTEND_CORE_EXPORT _key_ref_deleter {
-
351  void operator()(gpgme_key_t _key);
-
352  };
-
353 
-
354  using KeyRefHandler =
-
355  std::unique_ptr<struct _gpgme_key, _key_ref_deleter>;
-
356 
-
357  KeyRefHandler key_ref_ = nullptr;
-
358 
-
359  mutable std::mutex gpgme_key_opera_mutex; // mutex for gpgme key operations
-
360 };
-
361 
-
362 } // namespace GpgFrontend
-
363 
-
364 #endif // GPGFRONTEND_GPGKEY_H
-
GpgFrontend::GpgKey
Definition: GpgKey.h:43
+
41 class GPGFRONTEND_CORE_EXPORT GpgKey {
+
42  public:
+
49  [[nodiscard]] bool IsGood() const;
+
50 
+
56  [[nodiscard]] std::string GetId() const;
+
57 
+
63  [[nodiscard]] std::string GetName() const;
+
64 
+
70  [[nodiscard]] std::string GetEmail() const;
+
71 
+
77  [[nodiscard]] std::string GetComment() const;
+
78 
+
84  [[nodiscard]] std::string GetFingerprint() const;
+
85 
+
91  [[nodiscard]] std::string GetProtocol() const;
+
92 
+
98  [[nodiscard]] std::string GetOwnerTrust() const;
+
99 
+
105  [[nodiscard]] std::string GetPublicKeyAlgo() const;
+
106 
+
112  [[nodiscard]] boost::posix_time::ptime GetLastUpdateTime() const;
+
113 
+
119  [[nodiscard]] boost::posix_time::ptime GetExpireTime() const;
+
120 
+
126  [[nodiscard]] boost::posix_time::ptime GetCreateTime() const;
+
127 
+
133  [[nodiscard]] unsigned int GetPrimaryKeyLength() const;
+
134 
+
141  [[nodiscard]] bool IsHasEncryptionCapability() const;
+
142 
+
150  [[nodiscard]] bool IsHasActualEncryptionCapability() const;
+
151 
+
158  [[nodiscard]] bool IsHasSigningCapability() const;
+
159 
+
166  [[nodiscard]] bool IsHasActualSigningCapability() const;
+
167 
+
174  [[nodiscard]] bool IsHasCertificationCapability() const;
+
175 
+
182  [[nodiscard]] bool IsHasActualCertificationCapability() const;
+
183 
+
190  [[nodiscard]] bool IsHasAuthenticationCapability() const;
+
191 
+
198  [[nodiscard]] bool IsHasActualAuthenticationCapability() const;
+
199 
+
206  [[nodiscard]] bool IsHasCardKey() const;
+
207 
+
214  [[nodiscard]] bool IsPrivateKey() const;
+
215 
+
222  [[nodiscard]] bool IsExpired() const;
+
223 
+
230  [[nodiscard]] bool IsRevoked() const;
+
231 
+
238  [[nodiscard]] bool IsDisabled() const;
+
239 
+
246  [[nodiscard]] bool IsHasMasterKey() const;
+
247 
+
253  [[nodiscard]] std::unique_ptr<std::vector<GpgSubKey>> GetSubKeys() const;
+
254 
+
260  [[nodiscard]] std::unique_ptr<std::vector<GpgUID>> GetUIDs() const;
+
261 
+
266  GpgKey() = default;
+
267 
+
273  explicit GpgKey(gpgme_key_t&& key);
+
274 
+
279  ~GpgKey() = default;
+
280 
+
286  GpgKey(const gpgme_key_t& key) = delete;
+
287 
+
293  GpgKey(GpgKey&& k) noexcept;
+
294 
+
301  GpgKey& operator=(GpgKey&& k) noexcept;
+
302 
+
309  GpgKey& operator=(const gpgme_key_t& key) = delete;
+
310 
+
318  bool operator==(const GpgKey& o) const;
+
319 
+
327  bool operator<=(const GpgKey& o) const;
+
328 
+
334  explicit operator gpgme_key_t() const;
+
335 
+
341  [[nodiscard]] GpgKey Copy() const;
+
342 
+
343  private:
+
348  struct GPGFRONTEND_CORE_EXPORT _key_ref_deleter {
+
349  void operator()(gpgme_key_t _key);
+
350  };
+
351 
+
352  using KeyRefHandler =
+
353  std::unique_ptr<struct _gpgme_key, _key_ref_deleter>;
+
354 
+
355  KeyRefHandler key_ref_ = nullptr;
+
356 };
+
357 
+
358 } // namespace GpgFrontend
+
359 
+
360 #endif // GPGFRONTEND_GPGKEY_H
+
GpgFrontend::GpgKey
Definition: GpgKey.h:41
GpgFrontend::GpgKey::GpgKey
GpgKey(const gpgme_key_t &key)=delete
Construct a new Gpg Key object.
GpgFrontend::GpgKey::~GpgKey
~GpgKey()=default
Destroy the Gpg Key objects.
GpgFrontend::GpgKey::GpgKey
GpgKey()=default
Construct a new Gpg Key object.
GpgFrontend::GpgKey::operator=
GpgKey & operator=(const gpgme_key_t &key)=delete
GpgFrontend
Definition: CoreCommonUtil.cpp:29
-
GpgFrontend::GpgKey::_key_ref_deleter
Definition: GpgKey.h:350
+
GpgFrontend::GpgKey::_key_ref_deleter
Definition: GpgKey.h:348
diff --git a/docs/html/GpgUIDOperator_8h_source.html b/docs/html/GpgUIDOperator_8h_source.html index f4a14197..463f4905 100644 --- a/docs/html/GpgUIDOperator_8h_source.html +++ b/docs/html/GpgUIDOperator_8h_source.html @@ -118,7 +118,7 @@ $(document).ready(function(){initNavTree('GpgUIDOperator_8h_source.html',''); in
92 
93 #endif // GPGFRONTEND_ZH_CN_TS_UIDOPERATOR_H
GpgFrontend::GpgContext
Definition: GpgContext.h:60
-
GpgFrontend::GpgKey
Definition: GpgKey.h:43
+
GpgFrontend::GpgKey
Definition: GpgKey.h:41
GpgFrontend::GpgUIDOperator
Definition: GpgUIDOperator.h:41
GpgFrontend::SingletonFunctionObject
Definition: GpgFunctionObject.h:148
GpgFrontend::SingletonFunctionObject::GetDefaultChannel
static int GetDefaultChannel()
Get the Default Channel object.
Definition: GpgFunctionObject.h:232
diff --git a/docs/html/InfoBoardWidget_8h_source.html b/docs/html/InfoBoardWidget_8h_source.html index aa498349..90bb4dff 100644 --- a/docs/html/InfoBoardWidget_8h_source.html +++ b/docs/html/InfoBoardWidget_8h_source.html @@ -149,15 +149,15 @@ $(document).ready(function(){initNavTree('InfoBoardWidget_8h_source.html',''); i
147 
148 #endif // __VERIFYNOTIFICATION_H__
GpgFrontend::UI::InfoBoardWidget
Class for handling the verify label shown at bottom of a textedit-page.
Definition: InfoBoardWidget.h:53
-
GpgFrontend::UI::InfoBoardWidget::AddOptionalAction
void AddOptionalAction(const QString &name, const std::function< void()> &action)
Definition: InfoBoardWidget.cpp:115
-
GpgFrontend::UI::InfoBoardWidget::AssociateTextEdit
void AssociateTextEdit(QTextEdit *edit)
Definition: InfoBoardWidget.cpp:97
+
GpgFrontend::UI::InfoBoardWidget::AddOptionalAction
void AddOptionalAction(const QString &name, const std::function< void()> &action)
Definition: InfoBoardWidget.cpp:113
+
GpgFrontend::UI::InfoBoardWidget::AssociateTextEdit
void AssociateTextEdit(QTextEdit *edit)
Definition: InfoBoardWidget.cpp:95
GpgFrontend::UI::InfoBoardWidget::m_text_page_
QTextEdit * m_text_page_
TextEdit associated to the notification.
Definition: InfoBoardWidget.h:133
-
GpgFrontend::UI::InfoBoardWidget::SlotRefresh
void SlotRefresh(const QString &text, GpgFrontend::UI::InfoBoardStatus status)
Definition: InfoBoardWidget.cpp:91
-
GpgFrontend::UI::InfoBoardWidget::ResetOptionActionsMenu
void ResetOptionActionsMenu()
Definition: InfoBoardWidget.cpp:131
-
GpgFrontend::UI::InfoBoardWidget::delete_widgets_in_layout
void delete_widgets_in_layout(QLayout *layout, int start_index=0)
Definition: InfoBoardWidget.cpp:145
+
GpgFrontend::UI::InfoBoardWidget::SlotRefresh
void SlotRefresh(const QString &text, GpgFrontend::UI::InfoBoardStatus status)
Definition: InfoBoardWidget.cpp:89
+
GpgFrontend::UI::InfoBoardWidget::ResetOptionActionsMenu
void ResetOptionActionsMenu()
Definition: InfoBoardWidget.cpp:129
+
GpgFrontend::UI::InfoBoardWidget::delete_widgets_in_layout
void delete_widgets_in_layout(QLayout *layout, int start_index=0)
Definition: InfoBoardWidget.cpp:143
GpgFrontend::UI::InfoBoardWidget::SetInfoBoard
void SetInfoBoard(const QString &text, GpgFrontend::UI::InfoBoardStatus verify_label_status)
Definition: InfoBoardWidget.cpp:58
GpgFrontend::UI::InfoBoardWidget::InfoBoardWidget
InfoBoardWidget(QWidget *parent)
Definition: InfoBoardWidget.cpp:38
-
GpgFrontend::UI::InfoBoardWidget::AssociateTabWidget
void AssociateTabWidget(QTabWidget *tab)
Definition: InfoBoardWidget.cpp:105
+
GpgFrontend::UI::InfoBoardWidget::AssociateTabWidget
void AssociateTabWidget(QTabWidget *tab)
Definition: InfoBoardWidget.cpp:103
GpgFrontend::UI
Definition: FileReadTask.cpp:31
GpgFrontend::UI::InfoBoardStatus
InfoBoardStatus
Definition: InfoBoardWidget.h:43
diff --git a/docs/html/KeyDetailsDialog_8h_source.html b/docs/html/KeyDetailsDialog_8h_source.html index c706ade1..524d567b 100644 --- a/docs/html/KeyDetailsDialog_8h_source.html +++ b/docs/html/KeyDetailsDialog_8h_source.html @@ -108,7 +108,7 @@ $(document).ready(function(){initNavTree('KeyDetailsDialog_8h_source.html','');
47 } // namespace GpgFrontend::UI
48 
49 #endif // __KEYDETAILSDIALOG_H__
-
GpgFrontend::GpgKey
Definition: GpgKey.h:43
+
GpgFrontend::GpgKey
Definition: GpgKey.h:41
GpgFrontend::UI::GeneralDialog
Definition: GeneralDialog.h:35
GpgFrontend::UI::KeyDetailsDialog
Definition: KeyDetailsDialog.h:38
GpgFrontend::UI
Definition: FileReadTask.cpp:31
diff --git a/docs/html/KeyList_8h_source.html b/docs/html/KeyList_8h_source.html index 4e54bd2b..08a68f68 100644 --- a/docs/html/KeyList_8h_source.html +++ b/docs/html/KeyList_8h_source.html @@ -250,7 +250,7 @@ $(document).ready(function(){initNavTree('KeyList_8h_source.html',''); initResiz
386 } // namespace GpgFrontend::UI
387 
388 #endif // __KEYLIST_H__
-
GpgFrontend::GpgKey
Definition: GpgKey.h:43
+
GpgFrontend::GpgKey
Definition: GpgKey.h:41
GpgFrontend::UI::KeyList
Definition: KeyList.h:152
GpgFrontend::UI::KeyList::GetSelected
KeyIdArgsListPtr GetSelected()
Get the Selected object.
Definition: KeyList.cpp:253
GpgFrontend::UI::KeyList::ContainsPrivateKeys
bool ContainsPrivateKeys()
Definition: KeyList.cpp:270
@@ -276,10 +276,10 @@ $(document).ready(function(){initNavTree('KeyList_8h_source.html',''); initResiz
GpgFrontend::UI::KeyListRow
Definition: KeyList.h:45
GpgFrontend::UI::KeyMenuAbility
Definition: KeyList.h:72
GpgFrontend::UI::KeyTable
Definition: KeyList.h:87
-
GpgFrontend::UI::KeyTable::GetChecked
KeyIdArgsListPtr & GetChecked()
Get the Checked object.
Definition: KeyList.cpp:500
+
GpgFrontend::UI::KeyTable::GetChecked
KeyIdArgsListPtr & GetChecked()
Get the Checked object.
Definition: KeyList.cpp:498
GpgFrontend::UI::KeyTable::KeyTable
KeyTable(QTableWidget *_key_list, KeyListRow::KeyType _select_type, KeyListColumn::InfoType _info_type, std::function< bool(const GpgKey &)> _filter=[](const GpgKey &) -> bool { return true;})
Construct a new Key Table object.
Definition: KeyList.h:103
-
GpgFrontend::UI::KeyTable::Refresh
void Refresh(KeyLinkListPtr m_keys=nullptr)
Definition: KeyList.cpp:520
-
GpgFrontend::UI::KeyTable::SetChecked
void SetChecked(KeyIdArgsListPtr key_ids)
Set the Checked object.
Definition: KeyList.cpp:515
+
GpgFrontend::UI::KeyTable::Refresh
void Refresh(KeyLinkListPtr m_keys=nullptr)
Definition: KeyList.cpp:519
+
GpgFrontend::UI::KeyTable::SetChecked
void SetChecked(KeyIdArgsListPtr key_ids)
Set the Checked object.
Definition: KeyList.cpp:514
diff --git a/docs/html/KeyNewUIDDialog_8h_source.html b/docs/html/KeyNewUIDDialog_8h_source.html index 038cce5d..1f7faeb3 100644 --- a/docs/html/KeyNewUIDDialog_8h_source.html +++ b/docs/html/KeyNewUIDDialog_8h_source.html @@ -128,7 +128,7 @@ $(document).ready(function(){initNavTree('KeyNewUIDDialog_8h_source.html',''); i
86 } // namespace GpgFrontend::UI
87 
88 #endif // GPGFRONTEND_KEYNEWUIDDIALOG_H
-
GpgFrontend::GpgKey
Definition: GpgKey.h:43
+
GpgFrontend::GpgKey
Definition: GpgKey.h:41
GpgFrontend::UI::GeneralDialog
Definition: GeneralDialog.h:35
GpgFrontend::UI::KeyNewUIDDialog
Definition: KeyNewUIDDialog.h:35
GpgFrontend::UI::KeyNewUIDDialog::slot_create_new_uid
void slot_create_new_uid()
Definition: KeyNewUIDDialog.cpp:74
diff --git a/docs/html/KeyPairDetailTab_8h_source.html b/docs/html/KeyPairDetailTab_8h_source.html index 431c1d29..fd1561ed 100644 --- a/docs/html/KeyPairDetailTab_8h_source.html +++ b/docs/html/KeyPairDetailTab_8h_source.html @@ -142,13 +142,13 @@ $(document).ready(function(){initNavTree('KeyPairDetailTab_8h_source.html','');
97 } // namespace GpgFrontend::UI
98 
99 #endif // GPGFRONTEND_KEYPAIRDETAILTAB_H
-
GpgFrontend::GpgKey
Definition: GpgKey.h:43
+
GpgFrontend::GpgKey
Definition: GpgKey.h:41
GpgFrontend::UI::KeyPairDetailTab
Definition: KeyPairDetailTab.h:38
GpgFrontend::UI::KeyPairDetailTab::key_size_var_label_
QLabel * key_size_var_label_
Label containing the keys key size.
Definition: KeyPairDetailTab.h:72
GpgFrontend::UI::KeyPairDetailTab::fingerprint_var_label_
QLabel * fingerprint_var_label_
Label containing the keys fingerprint.
Definition: KeyPairDetailTab.h:78
GpgFrontend::UI::KeyPairDetailTab::additional_uid_box_
QGroupBox * additional_uid_box_
Definition: KeyPairDetailTab.h:66
GpgFrontend::UI::KeyPairDetailTab::key_id_var_label
QLabel * key_id_var_label
Label containing the keys keyid.
Definition: KeyPairDetailTab.h:77
-
GpgFrontend::UI::KeyPairDetailTab::KeyPairDetailTab
KeyPairDetailTab(const std::string &key_id, QWidget *parent=nullptr)
Construct a new Key Pair Detail Tab object.
Definition: KeyPairDetailTab.cpp:36
+
GpgFrontend::UI::KeyPairDetailTab::KeyPairDetailTab
KeyPairDetailTab(const std::string &key_id, QWidget *parent=nullptr)
Construct a new Key Pair Detail Tab object.
Definition: KeyPairDetailTab.cpp:35
GpgFrontend::UI::KeyPairDetailTab::comment_var_label_
QLabel * comment_var_label_
Label containing the keys comment.
Definition: KeyPairDetailTab.h:71
GpgFrontend::UI::KeyPairDetailTab::email_var_label_
QLabel * email_var_label_
Label containing the keys email.
Definition: KeyPairDetailTab.h:70
GpgFrontend::UI::KeyPairDetailTab::name_var_label_
QLabel * name_var_label_
Label containing the keys name.
Definition: KeyPairDetailTab.h:69
@@ -158,7 +158,7 @@ $(document).ready(function(){initNavTree('KeyPairDetailTab_8h_source.html','');
GpgFrontend::UI::KeyPairDetailTab::owner_box_
QGroupBox * owner_box_
Groupbox containing owner information.
Definition: KeyPairDetailTab.h:63
GpgFrontend::UI::KeyPairDetailTab::fingerprint_box_
QGroupBox * fingerprint_box_
Groupbox containing fingerprint information.
Definition: KeyPairDetailTab.h:65
GpgFrontend::UI::KeyPairDetailTab::expire_var_label_
QLabel * expire_var_label_
Label containing the keys expiration date.
Definition: KeyPairDetailTab.h:73
-
GpgFrontend::UI::KeyPairDetailTab::slot_copy_fingerprint
void slot_copy_fingerprint()
Definition: KeyPairDetailTab.cpp:165
+
GpgFrontend::UI::KeyPairDetailTab::slot_copy_fingerprint
void slot_copy_fingerprint()
Definition: KeyPairDetailTab.cpp:164
GpgFrontend::UI
Definition: FileReadTask.cpp:31
diff --git a/docs/html/KeyPairOperaTab_8h_source.html b/docs/html/KeyPairOperaTab_8h_source.html index 2633846c..c774f877 100644 --- a/docs/html/KeyPairOperaTab_8h_source.html +++ b/docs/html/KeyPairOperaTab_8h_source.html @@ -129,7 +129,7 @@ $(document).ready(function(){initNavTree('KeyPairOperaTab_8h_source.html',''); i
111 } // namespace GpgFrontend::UI
112 
113 #endif // GPGFRONTEND_KEYPAIROPERATAB_H
-
GpgFrontend::GpgKey
Definition: GpgKey.h:43
+
GpgFrontend::GpgKey
Definition: GpgKey.h:41
GpgFrontend::UI::KeyPairOperaTab
Definition: KeyPairOperaTab.h:34
GpgFrontend::UI::KeyPairOperaTab::slot_export_private_key
void slot_export_private_key()
Definition: KeyPairOperaTab.cpp:217
GpgFrontend::UI::KeyPairOperaTab::CreateOperaMenu
void CreateOperaMenu()
Create a Opera Menu object.
Definition: KeyPairOperaTab.cpp:103
diff --git a/docs/html/KeyPairSubkeyTab_8h_source.html b/docs/html/KeyPairSubkeyTab_8h_source.html index d704041d..3ec8c2f8 100644 --- a/docs/html/KeyPairSubkeyTab_8h_source.html +++ b/docs/html/KeyPairSubkeyTab_8h_source.html @@ -150,20 +150,20 @@ $(document).ready(function(){initNavTree('KeyPairSubkeyTab_8h_source.html','');
137 } // namespace GpgFrontend::UI
138 
139 #endif // GPGFRONTEND_KEYPAIRSUBKEYTAB_H
-
GpgFrontend::GpgKey
Definition: GpgKey.h:43
+
GpgFrontend::GpgKey
Definition: GpgKey.h:41
GpgFrontend::GpgSubKey
Definition: GpgSubKey.h:43
GpgFrontend::UI::KeyPairSubkeyTab
Definition: KeyPairSubkeyTab.h:39
GpgFrontend::UI::KeyPairSubkeyTab::create_subkey_list
void create_subkey_list()
Create a subkey list object.
Definition: KeyPairSubkeyTab.cpp:141
GpgFrontend::UI::KeyPairSubkeyTab::fingerprint_var_label_
QLabel * fingerprint_var_label_
Label containing the keys fingerprint.
Definition: KeyPairSubkeyTab.h:85
GpgFrontend::UI::KeyPairSubkeyTab::algorithm_var_label_
QLabel * algorithm_var_label_
Label containing the keys algorithm.
Definition: KeyPairSubkeyTab.h:83
GpgFrontend::UI::KeyPairSubkeyTab::key_id_var_label_
QLabel * key_id_var_label_
Label containing the keys keyid.
Definition: KeyPairSubkeyTab.h:84
-
GpgFrontend::UI::KeyPairSubkeyTab::create_subkey_opera_menu
void create_subkey_opera_menu()
Create a subkey opera menu object.
Definition: KeyPairSubkeyTab.cpp:311
+
GpgFrontend::UI::KeyPairSubkeyTab::create_subkey_opera_menu
void create_subkey_opera_menu()
Create a subkey opera menu object.
Definition: KeyPairSubkeyTab.cpp:299
GpgFrontend::UI::KeyPairSubkeyTab::key_size_var_label_
QLabel * key_size_var_label_
Label containing the keys key size.
Definition: KeyPairSubkeyTab.h:80
GpgFrontend::UI::KeyPairSubkeyTab::expire_var_label_
QLabel * expire_var_label_
Label containing the keys expiration date.
Definition: KeyPairSubkeyTab.h:81
GpgFrontend::UI::KeyPairSubkeyTab::KeyPairSubkeyTab
KeyPairSubkeyTab(const std::string &key, QWidget *parent)
Construct a new Key Pair Subkey Tab object.
Definition: KeyPairSubkeyTab.cpp:36
GpgFrontend::UI::KeyPairSubkeyTab::created_var_label_
QLabel * created_var_label_
Label containing the keys creation date.
Definition: KeyPairSubkeyTab.h:82
-
GpgFrontend::UI::KeyPairSubkeyTab::contextMenuEvent
void contextMenuEvent(QContextMenuEvent *event) override
Definition: KeyPairSubkeyTab.cpp:330
-
GpgFrontend::UI::KeyPairSubkeyTab::get_selected_subkey
const GpgSubKey & get_selected_subkey()
Get the selected subkey object.
Definition: KeyPairSubkeyTab.cpp:336
+
GpgFrontend::UI::KeyPairSubkeyTab::contextMenuEvent
void contextMenuEvent(QContextMenuEvent *event) override
Definition: KeyPairSubkeyTab.cpp:318
+
GpgFrontend::UI::KeyPairSubkeyTab::get_selected_subkey
const GpgSubKey & get_selected_subkey()
Get the selected subkey object.
Definition: KeyPairSubkeyTab.cpp:324
GpgFrontend::UI
Definition: FileReadTask.cpp:31
diff --git a/docs/html/KeyPairUIDTab_8h_source.html b/docs/html/KeyPairUIDTab_8h_source.html index c57f6c42..aaec2fb9 100644 --- a/docs/html/KeyPairUIDTab_8h_source.html +++ b/docs/html/KeyPairUIDTab_8h_source.html @@ -167,7 +167,7 @@ $(document).ready(function(){initNavTree('KeyPairUIDTab_8h_source.html',''); ini
205 } // namespace GpgFrontend::UI
206 
207 #endif // GPGFRONTEND_KEYPAIRUIDTAB_H
-
GpgFrontend::GpgKey
Definition: GpgKey.h:43
+
GpgFrontend::GpgKey
Definition: GpgKey.h:41
GpgFrontend::UI::KeyPairUIDTab
Definition: KeyPairUIDTab.h:39
GpgFrontend::UI::KeyPairUIDTab::create_uid_list
void create_uid_list()
Create a uid list object.
Definition: KeyPairUIDTab.cpp:118
GpgFrontend::UI::KeyPairUIDTab::get_uid_selected
UIDArgsListPtr get_uid_selected()
Get the uid selected object.
Definition: KeyPairUIDTab.cpp:431
diff --git a/docs/html/KeySetExpireDateDialog_8h_source.html b/docs/html/KeySetExpireDateDialog_8h_source.html index 9e156cb3..6448ee61 100644 --- a/docs/html/KeySetExpireDateDialog_8h_source.html +++ b/docs/html/KeySetExpireDateDialog_8h_source.html @@ -128,7 +128,7 @@ $(document).ready(function(){initNavTree('KeySetExpireDateDialog_8h_source.html'
97 } // namespace GpgFrontend::UI
98 
99 #endif // GPGFRONTEND_KEYSETEXPIREDATEDIALOG_H
-
GpgFrontend::GpgKey
Definition: GpgKey.h:43
+
GpgFrontend::GpgKey
Definition: GpgKey.h:41
GpgFrontend::UI::GeneralDialog
Definition: GeneralDialog.h:35
GpgFrontend::UI::KeySetExpireDateDialog
Definition: KeySetExpireDateDialog.h:42
GpgFrontend::UI::KeySetExpireDateDialog::KeySetExpireDateDialog
KeySetExpireDateDialog(const KeyId &key_id, QWidget *parent=nullptr)
Construct a new Key Set Expire Date Dialog object.
Definition: KeySetExpireDateDialog.cpp:41
diff --git a/docs/html/KeyUIDSignDialog_8h_source.html b/docs/html/KeyUIDSignDialog_8h_source.html index fec0d884..31a6f389 100644 --- a/docs/html/KeyUIDSignDialog_8h_source.html +++ b/docs/html/KeyUIDSignDialog_8h_source.html @@ -123,7 +123,7 @@ $(document).ready(function(){initNavTree('KeyUIDSignDialog_8h_source.html','');
76 } // namespace GpgFrontend::UI
77 
78 #endif // GPGFRONTEND_KEYUIDSIGNDIALOG_H
-
GpgFrontend::GpgKey
Definition: GpgKey.h:43
+
GpgFrontend::GpgKey
Definition: GpgKey.h:41
GpgFrontend::UI::GeneralDialog
Definition: GeneralDialog.h:35
GpgFrontend::UI::KeyList
Definition: KeyList.h:152
GpgFrontend::UI::KeyUIDSignDialog
Definition: KeyUIDSignDialog.h:37
diff --git a/docs/html/KeyUploadDialog_8h_source.html b/docs/html/KeyUploadDialog_8h_source.html index 4f1ee604..31774f1b 100644 --- a/docs/html/KeyUploadDialog_8h_source.html +++ b/docs/html/KeyUploadDialog_8h_source.html @@ -121,8 +121,8 @@ $(document).ready(function(){initNavTree('KeyUploadDialog_8h_source.html',''); i
83 #endif // GPGFRONTEND_KEYUPLOADWIDGET_H
GpgFrontend::UI::GeneralDialog
Definition: GeneralDialog.h:35
GpgFrontend::UI::KeyUploadDialog
Definition: KeyUploadDialog.h:42
-
GpgFrontend::UI::KeyUploadDialog::slot_upload_key_to_server
void slot_upload_key_to_server(const GpgFrontend::ByteArray &keys_data)
Definition: KeyUploadDialog.cpp:72
-
GpgFrontend::UI::KeyUploadDialog::KeyUploadDialog
KeyUploadDialog(const KeyIdArgsListPtr &keys_ids, QWidget *parent)
Construct a new Key Upload Dialog object.
Definition: KeyUploadDialog.cpp:40
+
GpgFrontend::UI::KeyUploadDialog::slot_upload_key_to_server
void slot_upload_key_to_server(const GpgFrontend::ByteArray &keys_data)
Definition: KeyUploadDialog.cpp:65
+
GpgFrontend::UI::KeyUploadDialog::KeyUploadDialog
KeyUploadDialog(const KeyIdArgsListPtr &keys_ids, QWidget *parent)
Construct a new Key Upload Dialog object.
Definition: KeyUploadDialog.cpp:39
GpgFrontend::UI
Definition: FileReadTask.cpp:31
diff --git a/docs/html/KeygenDialog_8h_source.html b/docs/html/KeygenDialog_8h_source.html index 3d028d1b..c6928744 100644 --- a/docs/html/KeygenDialog_8h_source.html +++ b/docs/html/KeygenDialog_8h_source.html @@ -161,7 +161,7 @@ $(document).ready(function(){initNavTree('KeygenDialog_8h_source.html',''); init
184 #endif // __KEYGENDIALOG_H__
GpgFrontend::UI::GeneralDialog
Definition: GeneralDialog.h:35
GpgFrontend::UI::KeyGenDialog
Definition: KeygenDialog.h:41
-
GpgFrontend::UI::KeyGenDialog::create_basic_info_group_box
QGroupBox * create_basic_info_group_box()
Create a basic info group box object.
Definition: KeygenDialog.cpp:352
+
GpgFrontend::UI::KeyGenDialog::create_basic_info_group_box
QGroupBox * create_basic_info_group_box()
Create a basic info group box object.
Definition: KeygenDialog.cpp:351
GpgFrontend::UI::KeyGenDialog::error_messages_
QStringList error_messages_
Definition: KeygenDialog.h:87
GpgFrontend::UI::KeyGenDialog::slot_signing_box_changed
void slot_signing_box_changed(int state)
Definition: KeygenDialog.cpp:230
GpgFrontend::UI::KeyGenDialog::expire_check_box_
QCheckBox * expire_check_box_
Checkbox, if key should expire.
Definition: KeygenDialog.h:99
@@ -171,20 +171,20 @@ $(document).ready(function(){initNavTree('KeygenDialog_8h_source.html',''); init
GpgFrontend::UI::KeyGenDialog::email_edit_
QLineEdit * email_edit_
Line edit for the keys email.
Definition: KeygenDialog.h:94
GpgFrontend::UI::KeyGenDialog::KeyGenDialog
KeyGenDialog(QWidget *parent=nullptr)
Definition: KeygenDialog.cpp:38
GpgFrontend::UI::KeyGenDialog::slot_certification_box_changed
void slot_certification_box_changed(int state)
Definition: KeygenDialog.cpp:238
-
GpgFrontend::UI::KeyGenDialog::refresh_widgets_state
void refresh_widgets_state()
Definition: KeygenDialog.cpp:263
+
GpgFrontend::UI::KeyGenDialog::refresh_widgets_state
void refresh_widgets_state()
Definition: KeygenDialog.cpp:262
GpgFrontend::UI::KeyGenDialog::slot_expire_box_changed
void slot_expire_box_changed()
Definition: KeygenDialog.cpp:181
GpgFrontend::UI::KeyGenDialog::key_usage_group_box_
QGroupBox * key_usage_group_box_
Definition: KeygenDialog.h:101
GpgFrontend::UI::KeyGenDialog::name_edit_
QLineEdit * name_edit_
Line edit for the keys name.
Definition: KeygenDialog.h:93
GpgFrontend::UI::KeyGenDialog::error_label_
QLabel * error_label_
Label containing error message.
Definition: KeygenDialog.h:92
GpgFrontend::UI::KeyGenDialog::create_key_usage_group_box
QGroupBox * create_key_usage_group_box()
Create a key usage group box object.
Definition: KeygenDialog.cpp:189
GpgFrontend::UI::KeyGenDialog::slot_authentication_box_changed
void slot_authentication_box_changed(int state)
Definition: KeygenDialog.cpp:246
-
GpgFrontend::UI::KeyGenDialog::set_signal_slot
void set_signal_slot()
Set the signal slot object.
Definition: KeygenDialog.cpp:317
+
GpgFrontend::UI::KeyGenDialog::set_signal_slot
void set_signal_slot()
Set the signal slot object.
Definition: KeygenDialog.cpp:316
GpgFrontend::UI::KeyGenDialog::button_box_
QDialogButtonBox * button_box_
Box for standard buttons.
Definition: KeygenDialog.h:91
GpgFrontend::UI::KeyGenDialog::key_size_spin_box_
QSpinBox * key_size_spin_box_
Spinbox for the keys size (in bit)
Definition: KeygenDialog.h:96
GpgFrontend::UI::KeyGenDialog::key_usage_check_boxes_
std::vector< QCheckBox * > key_usage_check_boxes_
ENCR, SIGN, CERT, AUTH.
Definition: KeygenDialog.h:104
GpgFrontend::UI::KeyGenDialog::slot_activated_key_type
void slot_activated_key_type(int index)
Definition: KeygenDialog.cpp:254
GpgFrontend::UI::KeyGenDialog::slot_encryption_box_changed
void slot_encryption_box_changed(int state)
Definition: KeygenDialog.cpp:222
-
GpgFrontend::UI::KeyGenDialog::check_email_address
bool check_email_address(const QString &str)
Definition: KeygenDialog.cpp:348
+
GpgFrontend::UI::KeyGenDialog::check_email_address
bool check_email_address(const QString &str)
Definition: KeygenDialog.cpp:347
GpgFrontend::UI::KeyGenDialog::slot_key_gen_accept
void slot_key_gen_accept()
Definition: KeygenDialog.cpp:90
GpgFrontend::UI
Definition: FileReadTask.cpp:31
diff --git a/docs/html/PlainTextEditorPage_8h_source.html b/docs/html/PlainTextEditorPage_8h_source.html index 124cb773..4d5c6971 100644 --- a/docs/html/PlainTextEditorPage_8h_source.html +++ b/docs/html/PlainTextEditorPage_8h_source.html @@ -136,7 +136,7 @@ $(document).ready(function(){initNavTree('PlainTextEditorPage_8h_source.html',''
129  size_t read_bytes_ = 0;
130  std::string charset_name_;
131  std::string language_name_;
-
132  int32_t charset_confidence_{};
+
132  int32_t charset_confidence_;
133  bool is_crlf_ = false;
134 
140  void detect_encoding(const std::string& data);
@@ -154,22 +154,22 @@ $(document).ready(function(){initNavTree('PlainTextEditorPage_8h_source.html',''
165 
166 #endif // __EDITORPAGE_H__
GpgFrontend::UI::PlainTextEditorPage
Class for handling a single tab of the tabwidget.
Definition: PlainTextEditorPage.h:45
-
GpgFrontend::UI::PlainTextEditorPage::detect_encoding
void detect_encoding(const std::string &data)
Definition: PlainTextEditorPage.cpp:266
-
GpgFrontend::UI::PlainTextEditorPage::slot_insert_text
void slot_insert_text(QByteArray bytes_data)
Definition: PlainTextEditorPage.cpp:213
-
GpgFrontend::UI::PlainTextEditorPage::WillCharsetChange
bool WillCharsetChange() const
detect if the charset of the file will change
Definition: PlainTextEditorPage.cpp:90
-
GpgFrontend::UI::PlainTextEditorPage::NotifyFileSaved
void NotifyFileSaved()
notify the user that the file has been saved.
Definition: PlainTextEditorPage.cpp:101
-
GpgFrontend::UI::PlainTextEditorPage::slot_format_gpg_header
void slot_format_gpg_header()
Definition: PlainTextEditorPage.cpp:129
+
GpgFrontend::UI::PlainTextEditorPage::detect_encoding
void detect_encoding(const std::string &data)
Definition: PlainTextEditorPage.cpp:259
+
GpgFrontend::UI::PlainTextEditorPage::slot_insert_text
void slot_insert_text(QByteArray bytes_data)
Definition: PlainTextEditorPage.cpp:206
+
GpgFrontend::UI::PlainTextEditorPage::WillCharsetChange
bool WillCharsetChange() const
detect if the charset of the file will change
Definition: PlainTextEditorPage.cpp:83
+
GpgFrontend::UI::PlainTextEditorPage::NotifyFileSaved
void NotifyFileSaved()
notify the user that the file has been saved.
Definition: PlainTextEditorPage.cpp:94
+
GpgFrontend::UI::PlainTextEditorPage::slot_format_gpg_header
void slot_format_gpg_header()
Definition: PlainTextEditorPage.cpp:122
GpgFrontend::UI::PlainTextEditorPage::sign_marked_
bool sign_marked_
true, if the signed header is marked, false if not
Definition: PlainTextEditorPage.h:126
-
GpgFrontend::UI::PlainTextEditorPage::GetTextPage
QPlainTextEdit * GetTextPage()
Definition: PlainTextEditorPage.cpp:88
-
GpgFrontend::UI::PlainTextEditorPage::PlainTextEditorPage
PlainTextEditorPage(QString file_path={}, QWidget *parent=nullptr)
Definition: PlainTextEditorPage.cpp:42
-
GpgFrontend::UI::PlainTextEditorPage::SetFilePath
void SetFilePath(const QString &filePath)
Definition: PlainTextEditorPage.cpp:110
+
GpgFrontend::UI::PlainTextEditorPage::GetTextPage
QPlainTextEdit * GetTextPage()
Definition: PlainTextEditorPage.cpp:81
+
GpgFrontend::UI::PlainTextEditorPage::PlainTextEditorPage
PlainTextEditorPage(QString file_path={}, QWidget *parent=nullptr)
Definition: PlainTextEditorPage.cpp:41
+
GpgFrontend::UI::PlainTextEditorPage::SetFilePath
void SetFilePath(const QString &filePath)
Definition: PlainTextEditorPage.cpp:103
GpgFrontend::UI::PlainTextEditorPage::ReadDone
bool ReadDone() const
Definition: PlainTextEditorPage.h:101
GpgFrontend::UI::PlainTextEditorPage::full_file_path_
QString full_file_path_
The path to the file handled in the tab.
Definition: PlainTextEditorPage.h:125
-
GpgFrontend::UI::PlainTextEditorPage::CloseNoteByClass
void CloseNoteByClass(const char *className)
Definition: PlainTextEditorPage.cpp:120
-
GpgFrontend::UI::PlainTextEditorPage::detect_cr_lf
void detect_cr_lf(const std::string &data)
Definition: PlainTextEditorPage.cpp:290
-
GpgFrontend::UI::PlainTextEditorPage::ShowNotificationWidget
void ShowNotificationWidget(QWidget *widget, const char *className)
Definition: PlainTextEditorPage.cpp:114
+
GpgFrontend::UI::PlainTextEditorPage::CloseNoteByClass
void CloseNoteByClass(const char *className)
Definition: PlainTextEditorPage.cpp:113
+
GpgFrontend::UI::PlainTextEditorPage::detect_cr_lf
void detect_cr_lf(const std::string &data)
Definition: PlainTextEditorPage.cpp:283
+
GpgFrontend::UI::PlainTextEditorPage::ShowNotificationWidget
void ShowNotificationWidget(QWidget *widget, const char *className)
Definition: PlainTextEditorPage.cpp:107
GpgFrontend::UI::PlainTextEditorPage::SignalUIBytesDisplayed
void SignalUIBytesDisplayed()
this signal is emitted when the bytes has been append in texteditor.
-
GpgFrontend::UI::PlainTextEditorPage::GetFilePath
const QString & GetFilePath() const
Definition: PlainTextEditorPage.cpp:84
+
GpgFrontend::UI::PlainTextEditorPage::GetFilePath
const QString & GetFilePath() const
Definition: PlainTextEditorPage.cpp:77
GpgFrontend::UI
Definition: FileReadTask.cpp:31
diff --git a/docs/html/SettingsAppearance_8h_source.html b/docs/html/SettingsAppearance_8h_source.html index 3ebfc8a1..8439bb4b 100644 --- a/docs/html/SettingsAppearance_8h_source.html +++ b/docs/html/SettingsAppearance_8h_source.html @@ -92,37 +92,41 @@ $(document).ready(function(){initNavTree('SettingsAppearance_8h_source.html','')
31 
32 #include "ui/GpgFrontendUI.h"
33 
-
34 class Ui_AppearanceSettings;
+
34 namespace GpgFrontend::UI {
35 
-
36 namespace GpgFrontend::UI {
-
37 
-
38 class AppearanceTab : public QWidget {
-
39  Q_OBJECT
-
40 
-
41  public:
-
47  explicit AppearanceTab(QWidget* parent = nullptr);
-
48 
-
53  void SetSettings();
-
54 
-
59  void ApplySettings();
-
60 
-
61  private:
-
62  std::shared_ptr<Ui_AppearanceSettings> ui_;
-
63 
-
64  QButtonGroup* icon_style_group_;
-
65  QButtonGroup* icon_size_group_;
-
66 
-
67  signals:
-
68 
-
74  void signalRestartNeeded(bool needed);
-
75 };
-
76 
-
77 } // namespace GpgFrontend::UI
-
78 
-
79 #endif // GPGFRONTEND_SETTINGSAPPEARANCE_H
-
GpgFrontend::UI::AppearanceTab
Definition: SettingsAppearance.h:38
-
GpgFrontend::UI::AppearanceTab::SetSettings
void SetSettings()
Set the Settings object.
Definition: SettingsAppearance.cpp:75
-
GpgFrontend::UI::AppearanceTab::AppearanceTab
AppearanceTab(QWidget *parent=nullptr)
Construct a new Appearance Tab object.
Definition: SettingsAppearance.cpp:37
+
36 class AppearanceTab : public QWidget {
+
37  Q_OBJECT
+
38 
+
39  public:
+
45  explicit AppearanceTab(QWidget* parent = nullptr);
+
46 
+
51  void SetSettings();
+
52 
+
57  void ApplySettings();
+
58 
+
59  private:
+
60  QButtonGroup* icon_style_group_;
+
61  QRadioButton* icon_size_small_;
+
62  QRadioButton* icon_size_medium_;
+
63  QRadioButton* icon_size_large_;
+
64  QButtonGroup* icon_size_group_;
+
65  QRadioButton* icon_text_button_;
+
66  QRadioButton* icon_icons_button_;
+
67  QRadioButton* icon_all_button_;
+
68  QSpinBox* info_board_font_size_spin_;
+
69  QCheckBox* window_size_check_box_;
+
70 
+
71  signals:
+
72 
+
78  void signalRestartNeeded(bool needed);
+
79 };
+
80 
+
81 } // namespace GpgFrontend::UI
+
82 
+
83 #endif // GPGFRONTEND_SETTINGSAPPEARANCE_H
+
GpgFrontend::UI::AppearanceTab
Definition: SettingsAppearance.h:36
+
GpgFrontend::UI::AppearanceTab::SetSettings
void SetSettings()
Set the Settings object.
Definition: SettingsAppearance.cpp:116
+
GpgFrontend::UI::AppearanceTab::AppearanceTab
AppearanceTab(QWidget *parent=nullptr)
Construct a new Appearance Tab object.
Definition: SettingsAppearance.cpp:36
GpgFrontend::UI::AppearanceTab::signalRestartNeeded
void signalRestartNeeded(bool needed)
GpgFrontend::UI
Definition: FileReadTask.cpp:31
diff --git a/docs/html/SettingsDialog_8h_source.html b/docs/html/SettingsDialog_8h_source.html index c213f47d..ae174396 100644 --- a/docs/html/SettingsDialog_8h_source.html +++ b/docs/html/SettingsDialog_8h_source.html @@ -137,7 +137,7 @@ $(document).ready(function(){initNavTree('SettingsDialog_8h_source.html',''); in
110 } // namespace GpgFrontend::UI
111 
112 #endif // __SETTINGSDIALOG_H__
-
GpgFrontend::UI::AppearanceTab
Definition: SettingsAppearance.h:38
+
GpgFrontend::UI::AppearanceTab
Definition: SettingsAppearance.h:36
GpgFrontend::UI::GeneralDialog
Definition: GeneralDialog.h:35
GpgFrontend::UI::GeneralTab
Definition: SettingsGeneral.h:43
GpgFrontend::UI::KeyserverTab
Definition: SettingsKeyServer.h:41
diff --git a/docs/html/SettingsKeyServer_8h_source.html b/docs/html/SettingsKeyServer_8h_source.html index 7750b6e5..eff191a2 100644 --- a/docs/html/SettingsKeyServer_8h_source.html +++ b/docs/html/SettingsKeyServer_8h_source.html @@ -132,9 +132,9 @@ $(document).ready(function(){initNavTree('SettingsKeyServer_8h_source.html','');
110 
111 #endif // GPGFRONTEND_SETTINGSKEYSERVER_H
GpgFrontend::UI::KeyserverTab
Definition: SettingsKeyServer.h:41
-
GpgFrontend::UI::KeyserverTab::SetSettings
void SetSettings()
Set the Settings object.
Definition: SettingsKeyServer.cpp:117
+
GpgFrontend::UI::KeyserverTab::SetSettings
void SetSettings()
Set the Settings object.
Definition: SettingsKeyServer.cpp:122
GpgFrontend::UI::KeyserverTab::SignalRestartNeeded
void SignalRestartNeeded(bool needed)
-
GpgFrontend::UI::KeyserverTab::contextMenuEvent
void contextMenuEvent(QContextMenuEvent *event) override
Definition: SettingsKeyServer.cpp:289
+
GpgFrontend::UI::KeyserverTab::contextMenuEvent
void contextMenuEvent(QContextMenuEvent *event) override
Definition: SettingsKeyServer.cpp:294
GpgFrontend::UI::KeyserverTab::KeyserverTab
KeyserverTab(QWidget *parent=nullptr)
Construct a new Keyserver Tab object.
Definition: SettingsKeyServer.cpp:40
GpgFrontend::UI
Definition: FileReadTask.cpp:31
diff --git a/docs/html/SubkeyGenerateDialog_8h_source.html b/docs/html/SubkeyGenerateDialog_8h_source.html index 48959977..91ef476c 100644 --- a/docs/html/SubkeyGenerateDialog_8h_source.html +++ b/docs/html/SubkeyGenerateDialog_8h_source.html @@ -149,27 +149,27 @@ $(document).ready(function(){initNavTree('SubkeyGenerateDialog_8h_source.html','
150 } // namespace GpgFrontend::UI
151 
152 #endif // GPGFRONTEND_SUBKEYGENERATEDIALOG_H
-
GpgFrontend::GpgKey
Definition: GpgKey.h:43
+
GpgFrontend::GpgKey
Definition: GpgKey.h:41
GpgFrontend::UI::GeneralDialog
Definition: GeneralDialog.h:35
GpgFrontend::UI::SubkeyGenerateDialog
Definition: SubkeyGenerateDialog.h:40
-
GpgFrontend::UI::SubkeyGenerateDialog::create_basic_info_group_box
QGroupBox * create_basic_info_group_box()
Create a basic info group box object.
Definition: SubkeyGenerateDialog.cpp:120
-
GpgFrontend::UI::SubkeyGenerateDialog::slot_authentication_box_changed
void slot_authentication_box_changed(int state)
Definition: SubkeyGenerateDialog.cpp:332
-
GpgFrontend::UI::SubkeyGenerateDialog::slot_encryption_box_changed
void slot_encryption_box_changed(int state)
Definition: SubkeyGenerateDialog.cpp:308
-
GpgFrontend::UI::SubkeyGenerateDialog::slot_expire_box_changed
void slot_expire_box_changed()
Definition: SubkeyGenerateDialog.cpp:184
-
GpgFrontend::UI::SubkeyGenerateDialog::refresh_widgets_state
void refresh_widgets_state()
Definition: SubkeyGenerateDialog.cpp:192
-
GpgFrontend::UI::SubkeyGenerateDialog::slot_activated_key_type
void slot_activated_key_type(int index)
Definition: SubkeyGenerateDialog.cpp:340
+
GpgFrontend::UI::SubkeyGenerateDialog::create_basic_info_group_box
QGroupBox * create_basic_info_group_box()
Create a basic info group box object.
Definition: SubkeyGenerateDialog.cpp:118
+
GpgFrontend::UI::SubkeyGenerateDialog::slot_authentication_box_changed
void slot_authentication_box_changed(int state)
Definition: SubkeyGenerateDialog.cpp:329
+
GpgFrontend::UI::SubkeyGenerateDialog::slot_encryption_box_changed
void slot_encryption_box_changed(int state)
Definition: SubkeyGenerateDialog.cpp:305
+
GpgFrontend::UI::SubkeyGenerateDialog::slot_expire_box_changed
void slot_expire_box_changed()
Definition: SubkeyGenerateDialog.cpp:182
+
GpgFrontend::UI::SubkeyGenerateDialog::refresh_widgets_state
void refresh_widgets_state()
Definition: SubkeyGenerateDialog.cpp:190
+
GpgFrontend::UI::SubkeyGenerateDialog::slot_activated_key_type
void slot_activated_key_type(int index)
Definition: SubkeyGenerateDialog.cpp:337
GpgFrontend::UI::SubkeyGenerateDialog::key_usage_check_boxes_
std::vector< QCheckBox * > key_usage_check_boxes_
ENCR, SIGN, CERT, AUTH.
Definition: SubkeyGenerateDialog.h:73
GpgFrontend::UI::SubkeyGenerateDialog::error_label_
QLabel * error_label_
Label containing error message.
Definition: SubkeyGenerateDialog.h:67
-
GpgFrontend::UI::SubkeyGenerateDialog::slot_certification_box_changed
void slot_certification_box_changed(int state)
Definition: SubkeyGenerateDialog.cpp:324
-
GpgFrontend::UI::SubkeyGenerateDialog::SubkeyGenerateDialog
SubkeyGenerateDialog(const KeyId &key_id, QWidget *parent)
Construct a new Subkey Generate Dialog object.
Definition: SubkeyGenerateDialog.cpp:39
-
GpgFrontend::UI::SubkeyGenerateDialog::set_signal_slot
void set_signal_slot()
Set the signal slot object.
Definition: SubkeyGenerateDialog.cpp:162
-
GpgFrontend::UI::SubkeyGenerateDialog::create_key_usage_group_box
QGroupBox * create_key_usage_group_box()
Create a key usage group box object.
Definition: SubkeyGenerateDialog.cpp:87
+
GpgFrontend::UI::SubkeyGenerateDialog::slot_certification_box_changed
void slot_certification_box_changed(int state)
Definition: SubkeyGenerateDialog.cpp:321
+
GpgFrontend::UI::SubkeyGenerateDialog::SubkeyGenerateDialog
SubkeyGenerateDialog(const KeyId &key_id, QWidget *parent)
Construct a new Subkey Generate Dialog object.
Definition: SubkeyGenerateDialog.cpp:37
+
GpgFrontend::UI::SubkeyGenerateDialog::set_signal_slot
void set_signal_slot()
Set the signal slot object.
Definition: SubkeyGenerateDialog.cpp:160
+
GpgFrontend::UI::SubkeyGenerateDialog::create_key_usage_group_box
QGroupBox * create_key_usage_group_box()
Create a key usage group box object.
Definition: SubkeyGenerateDialog.cpp:85
GpgFrontend::UI::SubkeyGenerateDialog::date_edit_
QDateTimeEdit * date_edit_
Date edit for expiration date.
Definition: SubkeyGenerateDialog.h:70
GpgFrontend::UI::SubkeyGenerateDialog::key_size_spin_box_
QSpinBox * key_size_spin_box_
Spinbox for the keys size (in bit)
Definition: SubkeyGenerateDialog.h:68
-
GpgFrontend::UI::SubkeyGenerateDialog::slot_key_gen_accept
void slot_key_gen_accept()
Definition: SubkeyGenerateDialog.cpp:241
+
GpgFrontend::UI::SubkeyGenerateDialog::slot_key_gen_accept
void slot_key_gen_accept()
Definition: SubkeyGenerateDialog.cpp:239
GpgFrontend::UI::SubkeyGenerateDialog::button_box_
QDialogButtonBox * button_box_
Box for standard buttons.
Definition: SubkeyGenerateDialog.h:66
GpgFrontend::UI::SubkeyGenerateDialog::key_type_combo_box_
QComboBox * key_type_combo_box_
Combobox for Key tpe.
Definition: SubkeyGenerateDialog.h:69
-
GpgFrontend::UI::SubkeyGenerateDialog::slot_signing_box_changed
void slot_signing_box_changed(int state)
Definition: SubkeyGenerateDialog.cpp:316
+
GpgFrontend::UI::SubkeyGenerateDialog::slot_signing_box_changed
void slot_signing_box_changed(int state)
Definition: SubkeyGenerateDialog.cpp:313
GpgFrontend::UI::SubkeyGenerateDialog::expire_check_box_
QCheckBox * expire_check_box_
Checkbox, if key should expire.
Definition: SubkeyGenerateDialog.h:71
GpgFrontend::UI
Definition: FileReadTask.cpp:31
diff --git a/docs/html/UserInterfaceUtils_8h_source.html b/docs/html/UserInterfaceUtils_8h_source.html index 882f8646..ed8b271f 100644 --- a/docs/html/UserInterfaceUtils_8h_source.html +++ b/docs/html/UserInterfaceUtils_8h_source.html @@ -174,15 +174,15 @@ $(document).ready(function(){initNavTree('UserInterfaceUtils_8h_source.html','')
230 
231 #endif // GPGFRONTEND_USER_INTERFACE_UTILS_H
GpgFrontend::UI::CommonUtils
Definition: UserInterfaceUtils.h:124
-
GpgFrontend::UI::CommonUtils::SlotImportKeyFromFile
void SlotImportKeyFromFile(QWidget *parent)
Definition: UserInterfaceUtils.cpp:189
-
GpgFrontend::UI::CommonUtils::SlotImportKeyFromClipboard
void SlotImportKeyFromClipboard(QWidget *parent)
Definition: UserInterfaceUtils.cpp:210
+
GpgFrontend::UI::CommonUtils::SlotImportKeyFromFile
void SlotImportKeyFromFile(QWidget *parent)
Definition: UserInterfaceUtils.cpp:188
+
GpgFrontend::UI::CommonUtils::SlotImportKeyFromClipboard
void SlotImportKeyFromClipboard(QWidget *parent)
Definition: UserInterfaceUtils.cpp:209
GpgFrontend::UI::CommonUtils::SignalKeyDatabaseRefreshDone
void SignalKeyDatabaseRefreshDone()
emit when the key database is refreshed
-
GpgFrontend::UI::CommonUtils::SlotImportKeys
void SlotImportKeys(QWidget *parent, const std::string &in_buffer)
Definition: UserInterfaceUtils.cpp:181
+
GpgFrontend::UI::CommonUtils::SlotImportKeys
void SlotImportKeys(QWidget *parent, const std::string &in_buffer)
Definition: UserInterfaceUtils.cpp:180
GpgFrontend::UI::CommonUtils::CommonUtils
CommonUtils()
Construct a new Common Utils object.
Definition: UserInterfaceUtils.cpp:150
-
GpgFrontend::UI::CommonUtils::slot_update_key_status
void slot_update_key_status()
update the key status when signal is emitted
Definition: UserInterfaceUtils.cpp:362
+
GpgFrontend::UI::CommonUtils::slot_update_key_status
void slot_update_key_status()
update the key status when signal is emitted
Definition: UserInterfaceUtils.cpp:361
GpgFrontend::UI::CommonUtils::GetInstance
static CommonUtils * GetInstance()
Get the Instance object.
Definition: UserInterfaceUtils.cpp:143
-
GpgFrontend::UI::CommonUtils::SlotImportKeyFromKeyServer
void SlotImportKeyFromKeyServer(QWidget *parent)
Definition: UserInterfaceUtils.cpp:205
-
GpgFrontend::UI::CommonUtils::SlotExecuteGpgCommand
void SlotExecuteGpgCommand(const QStringList &arguments, const std::function< void(QProcess *)> &interact_func)
Definition: UserInterfaceUtils.cpp:216
+
GpgFrontend::UI::CommonUtils::SlotImportKeyFromKeyServer
void SlotImportKeyFromKeyServer(QWidget *parent)
Definition: UserInterfaceUtils.cpp:204
+
GpgFrontend::UI::CommonUtils::SlotExecuteGpgCommand
void SlotExecuteGpgCommand(const QStringList &arguments, const std::function< void(QProcess *)> &interact_func)
Definition: UserInterfaceUtils.cpp:215
GpgFrontend::UI
Definition: FileReadTask.cpp:31
GpgFrontend::UI::refresh_info_board
void refresh_info_board(InfoBoardWidget *info_board, int status, const std::string &report_text)
Definition: UserInterfaceUtils.cpp:84
GpgFrontend::UI::process_operation
void process_operation(QWidget *parent, const std::string &waiting_title, const Thread::Task::TaskRunnable func, const Thread::Task::TaskCallback callback, Thread::Task::DataObjectPtr data_object)
Definition: UserInterfaceUtils.cpp:116
diff --git a/docs/html/classGpgFrontend_1_1GenKeyInfo-members.html b/docs/html/classGpgFrontend_1_1GenKeyInfo-members.html index 67bebfb7..92f14a71 100644 --- a/docs/html/classGpgFrontend_1_1GenKeyInfo-members.html +++ b/docs/html/classGpgFrontend_1_1GenKeyInfo-members.html @@ -114,10 +114,10 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1GenKeyInfo.html',' GetSizeChangeStep() constGpgFrontend::GenKeyInfoinline GetSuggestMaxKeySize() constGpgFrontend::GenKeyInfoinline GetSuggestMinKeySize() constGpgFrontend::GenKeyInfoinline - GetSupportedKeyAlgo()GpgFrontend::GenKeyInfostatic - GetSupportedKeyAlgoStandalone()GpgFrontend::GenKeyInfostatic - GetSupportedSubkeyAlgo()GpgFrontend::GenKeyInfostatic - GetSupportedSubkeyAlgoStandalone()GpgFrontend::GenKeyInfostatic + GetSupportedKeyAlgo()GpgFrontend::GenKeyInfostatic + GetSupportedKeyAlgoStandalone()GpgFrontend::GenKeyInfostatic + GetSupportedSubkeyAlgo()GpgFrontend::GenKeyInfostatic + GetSupportedSubkeyAlgoStandalone()GpgFrontend::GenKeyInfostatic GetUserid() constGpgFrontend::GenKeyInfoinline IsAllowAuthentication() constGpgFrontend::GenKeyInfoinline IsAllowCertification() constGpgFrontend::GenKeyInfoinline @@ -132,31 +132,30 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1GenKeyInfo.html',' IsNoPassPhrase() constGpgFrontend::GenKeyInfoinline IsSubKey() constGpgFrontend::GenKeyInfoinline key_size_ (defined in GpgFrontend::GenKeyInfo)GpgFrontend::GenKeyInfoprivate - KeyGenAlgo typedef (defined in GpgFrontend::GenKeyInfo)GpgFrontend::GenKeyInfoprivate - name_ (defined in GpgFrontend::GenKeyInfo)GpgFrontend::GenKeyInfoprivate - no_passphrase_ (defined in GpgFrontend::GenKeyInfo)GpgFrontend::GenKeyInfoprivate - non_expired_ (defined in GpgFrontend::GenKeyInfo)GpgFrontend::GenKeyInfoprivate - passphrase_ (defined in GpgFrontend::GenKeyInfo)GpgFrontend::GenKeyInfoprivate - reset_options() (defined in GpgFrontend::GenKeyInfo)GpgFrontend::GenKeyInfoprivate - SetAlgo(const GpgFrontend::GenKeyInfo::KeyGenAlgo &m_algo)GpgFrontend::GenKeyInfo - SetAllowAuthentication(bool m_allow_authentication)GpgFrontend::GenKeyInfoinline - SetAllowCertification(bool m_allow_certification)GpgFrontend::GenKeyInfo - SetAllowEncryption(bool m_allow_encryption)GpgFrontend::GenKeyInfo - SetAllowSigning(bool m_allow_signing)GpgFrontend::GenKeyInfoinline - SetComment(const std::string &m_comment)GpgFrontend::GenKeyInfoinline - SetEmail(const std::string &m_email)GpgFrontend::GenKeyInfoinline - SetExpireTime(const boost::posix_time::ptime &m_expired)GpgFrontend::GenKeyInfo - SetIsSubKey(bool m_sub_key)GpgFrontend::GenKeyInfoinline - SetKeyLength(int m_key_size)GpgFrontend::GenKeyInfo - SetName(const std::string &m_name)GpgFrontend::GenKeyInfoinline - SetNonExpired(bool m_non_expired)GpgFrontend::GenKeyInfo - SetNonPassPhrase(bool m_non_pass_phrase)GpgFrontend::GenKeyInfoinline - SetPassPhrase(const std::string &m_pass_phrase)GpgFrontend::GenKeyInfoinline - standalone_ (defined in GpgFrontend::GenKeyInfo)GpgFrontend::GenKeyInfoprivate - subkey_ (defined in GpgFrontend::GenKeyInfo)GpgFrontend::GenKeyInfoprivate - suggest_max_key_size_ (defined in GpgFrontend::GenKeyInfo)GpgFrontend::GenKeyInfoprivate - suggest_min_key_size_ (defined in GpgFrontend::GenKeyInfo)GpgFrontend::GenKeyInfoprivate - suggest_size_addition_step_ (defined in GpgFrontend::GenKeyInfo)GpgFrontend::GenKeyInfoprivate + name_ (defined in GpgFrontend::GenKeyInfo)GpgFrontend::GenKeyInfoprivate + no_passphrase_ (defined in GpgFrontend::GenKeyInfo)GpgFrontend::GenKeyInfoprivate + non_expired_ (defined in GpgFrontend::GenKeyInfo)GpgFrontend::GenKeyInfoprivate + passphrase_ (defined in GpgFrontend::GenKeyInfo)GpgFrontend::GenKeyInfoprivate + reset_options() (defined in GpgFrontend::GenKeyInfo)GpgFrontend::GenKeyInfoprivate + SetAlgo(const std::string &m_algo)GpgFrontend::GenKeyInfo + SetAllowAuthentication(bool m_allow_authentication)GpgFrontend::GenKeyInfoinline + SetAllowCertification(bool m_allow_certification)GpgFrontend::GenKeyInfo + SetAllowEncryption(bool m_allow_encryption)GpgFrontend::GenKeyInfo + SetAllowSigning(bool m_allow_signing)GpgFrontend::GenKeyInfoinline + SetComment(const std::string &m_comment)GpgFrontend::GenKeyInfoinline + SetEmail(const std::string &m_email)GpgFrontend::GenKeyInfoinline + SetExpireTime(const boost::posix_time::ptime &m_expired)GpgFrontend::GenKeyInfo + SetIsSubKey(bool m_sub_key)GpgFrontend::GenKeyInfoinline + SetKeyLength(int m_key_size)GpgFrontend::GenKeyInfo + SetName(const std::string &m_name)GpgFrontend::GenKeyInfoinline + SetNonExpired(bool m_non_expired)GpgFrontend::GenKeyInfo + SetNonPassPhrase(bool m_non_pass_phrase)GpgFrontend::GenKeyInfoinline + SetPassPhrase(const std::string &m_pass_phrase)GpgFrontend::GenKeyInfoinline + standalone_ (defined in GpgFrontend::GenKeyInfo)GpgFrontend::GenKeyInfoprivate + subkey_ (defined in GpgFrontend::GenKeyInfo)GpgFrontend::GenKeyInfoprivate + suggest_max_key_size_ (defined in GpgFrontend::GenKeyInfo)GpgFrontend::GenKeyInfoprivate + suggest_min_key_size_ (defined in GpgFrontend::GenKeyInfo)GpgFrontend::GenKeyInfoprivate + suggest_size_addition_step_ (defined in GpgFrontend::GenKeyInfo)GpgFrontend::GenKeyInfoprivate diff --git a/docs/html/classGpgFrontend_1_1GenKeyInfo.html b/docs/html/classGpgFrontend_1_1GenKeyInfo.html index 35cb4b11..395e6e4b 100644 --- a/docs/html/classGpgFrontend_1_1GenKeyInfo.html +++ b/docs/html/classGpgFrontend_1_1GenKeyInfo.html @@ -85,7 +85,6 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1GenKeyInfo.html','
Public Member Functions | Static Public Member Functions | -Private Types | Private Member Functions | Private Attributes | List of all members
@@ -135,9 +134,9 @@ Public Member Functions const std::string & GetAlgo () const  Get the Algo object. More...
  -void SetAlgo (const GpgFrontend::GenKeyInfo::KeyGenAlgo &m_algo) - Set the Algo object. More...
-  +void SetAlgo (const std::string &m_algo) + Set the Algo object. More...
+  std::string GetKeySizeStr () const  Get the Key Size Str object. More...
  @@ -214,24 +213,18 @@ Public Member Functions - - - - - - - - - - - - -

Static Public Member Functions

static const std::vector< KeyGenAlgo > & GetSupportedKeyAlgo ()
 Get the Supported Key Algo object. More...
 
static const std::vector< KeyGenAlgo > & GetSupportedSubkeyAlgo ()
 Get the Supported Subkey Algo object. More...
 
static const std::vector< KeyGenAlgo > & GetSupportedKeyAlgoStandalone ()
 Get the Supported Key Algo Standalone object. More...
 
static const std::vector< KeyGenAlgo > & GetSupportedSubkeyAlgoStandalone ()
 Get the Supported Subkey Algo Standalone object. More...
 
- - - + + + + + + + + + + + +

-Private Types

-using KeyGenAlgo = std::pair< std::string, std::string >
 
static const std::vector< std::string > & GetSupportedKeyAlgo ()
 Get the Supported Key Algo object. More...
 
static const std::vector< std::string > & GetSupportedSubkeyAlgo ()
 Get the Supported Subkey Algo object. More...
 
static const std::vector< std::string > & GetSupportedKeyAlgoStandalone ()
 Get the Supported Key Algo Standalone object. More...
 
static const std::vector< std::string > & GetSupportedSubkeyAlgoStandalone ()
 Get the Supported Subkey Algo Standalone object. More...
 
@@ -354,7 +347,7 @@ bool  - - - - - - + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html index e3a2ae04..ba06c5ec 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html @@ -97,9 +97,9 @@ Inheritance diagram for GpgFrontend::UI::KeyImportDetailDialog:
Inheritance graph
- - - + + +
@@ -107,16 +107,16 @@ Collaboration diagram for GpgFrontend::UI::KeyImportDetailDialog:
Collaboration graph
- - - - - - - - - - + + + + + + + + + +

Private Member Functions

allow_change_signing_ -

References GetSupportedKeyAlgo(), and SetAlgo().

+

References SetAlgo().

@@ -659,8 +652,8 @@ bool 
allow_change_signing_ - -

◆ GetSupportedKeyAlgo()

+ +

◆ GetSupportedKeyAlgo()

@@ -669,7 +662,7 @@ bool 
allow_change_signing_ - + @@ -685,12 +678,12 @@ bool  - - - - - - - - - - - + + + + + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog.html index f5af88a8..35bec6da 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog.html @@ -98,9 +98,9 @@ Inheritance diagram for GpgFrontend::UI::KeyGenDialog:
Inheritance graph
- - - + + +
@@ -108,16 +108,16 @@ Collaboration diagram for GpgFrontend::UI::KeyGenDialog:
Collaboration graph
- - - - - - - - - - + + + + + + + + + +
const std::vector< GpgFrontend::GenKeyInfo::KeyGenAlgo > & GpgFrontend::GenKeyInfo::GetSupportedKeyAlgo const std::vector< std::string > & GpgFrontend::GenKeyInfo::GetSupportedKeyAlgo ( ) allow_change_signing_

Get the Supported Key Algo object.

Returns
const std::vector<std::string>&
-

Referenced by GpgFrontend::UI::KeyGenDialog::create_basic_info_group_box(), GenKeyInfo(), and SetAlgo().

+

Referenced by GpgFrontend::UI::KeyGenDialog::create_basic_info_group_box(), GpgFrontend::UI::SubkeyGenerateDialog::create_basic_info_group_box(), and SetAlgo().

- -

◆ GetSupportedKeyAlgoStandalone()

+ +

◆ GetSupportedKeyAlgoStandalone()

@@ -699,7 +692,7 @@ bool 
allow_change_signing_ - + @@ -715,12 +708,12 @@ bool  +protected
const std::vector< GpgFrontend::GenKeyInfo::KeyGenAlgo > & GpgFrontend::GenKeyInfo::GetSupportedKeyAlgoStandalone const std::vector< std::string > & GpgFrontend::GenKeyInfo::GetSupportedKeyAlgoStandalone ( ) allow_change_signing_

Get the Supported Key Algo Standalone object.

Returns
const std::vector<std::string>&
-

Referenced by SetAlgo().

+

Referenced by SetAlgo().

- -

◆ GetSupportedSubkeyAlgo()

+ +

◆ GetSupportedSubkeyAlgo()

@@ -729,7 +722,7 @@ bool 
allow_change_signing_ - + @@ -745,12 +738,12 @@ bool  - - - - - - - + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html index 6dc47f7c..dfbc7626 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html @@ -95,9 +95,9 @@ Inheritance diagram for GpgFrontend::UI::ExportKeyPackageDialog:
Inheritance graph
- - - + + +
@@ -105,16 +105,16 @@ Collaboration diagram for GpgFrontend::UI::ExportKeyPackageDialog:
Collaboration graph
- - - - - - - - - - + + + + + + + + + +
const std::vector< GpgFrontend::GenKeyInfo::KeyGenAlgo > & GpgFrontend::GenKeyInfo::GetSupportedSubkeyAlgo const std::vector< std::string > & GpgFrontend::GenKeyInfo::GetSupportedSubkeyAlgo ( ) allow_change_signing_

Get the Supported Subkey Algo object.

Returns
const std::vector<std::string>&
-

Referenced by GpgFrontend::UI::SubkeyGenerateDialog::create_basic_info_group_box(), and SetAlgo().

+

Referenced by SetAlgo().

- -

◆ GetSupportedSubkeyAlgoStandalone()

+ +

◆ GetSupportedSubkeyAlgoStandalone()

@@ -759,7 +752,7 @@ bool 
allow_change_signing_ - + @@ -775,7 +768,7 @@ bool  - + @@ -1176,8 +1169,9 @@ false

RSA is the world’s premier asymmetric cryptographic algorithm, and is built on the difficulty of factoring extremely large composites. GnuPG supports RSA with key sizes of between 1024 and 4096 bits.

Algorithm (DSA) as a government standard for digital signatures. Originally, it supported key lengths between 512 and 1024 bits. Recently, NIST has declared 512-bit keys obsolete: now, DSA is available in 1024, 2048 and 3072-bit lengths.

GnuPG supports the Elgamal asymmetric encryption algorithm in key lengths ranging from 1024 to 4096 bits.

+

GnuPG supports the Elgamal asymmetric encryption algorithm in key lengths ranging from 1024 to 4096 bits.

-

References GetSupportedKeyAlgo(), GetSupportedKeyAlgoStandalone(), GetSupportedSubkeyAlgo(), GetSupportedSubkeyAlgoStandalone(), SetAllowAuthentication(), SetAllowCertification(), SetAllowEncryption(), SetAllowSigning(), and SetKeyLength().

+

References GetSupportedKeyAlgo(), GetSupportedKeyAlgoStandalone(), GetSupportedSubkeyAlgo(), GetSupportedSubkeyAlgoStandalone(), SetAllowAuthentication(), SetAllowCertification(), SetAllowEncryption(), SetAllowSigning(), and SetKeyLength().

Referenced by GenKeyInfo().

@@ -1215,7 +1209,7 @@ false -

Referenced by SetAlgo().

+

Referenced by SetAlgo().

@@ -1243,7 +1237,7 @@ false -

Referenced by SetAlgo().

+

Referenced by SetAlgo().

@@ -1271,7 +1265,7 @@ false -

Referenced by SetAlgo().

+

Referenced by SetAlgo().

@@ -1307,7 +1301,7 @@ false -

Referenced by SetAlgo().

+

Referenced by SetAlgo().

@@ -1463,7 +1457,7 @@ false -

Referenced by SetAlgo().

+

Referenced by SetAlgo().

diff --git a/docs/html/classGpgFrontend_1_1GenKeyInfo.js b/docs/html/classGpgFrontend_1_1GenKeyInfo.js index 2b6bf175..b7dc41da 100644 --- a/docs/html/classGpgFrontend_1_1GenKeyInfo.js +++ b/docs/html/classGpgFrontend_1_1GenKeyInfo.js @@ -1,6 +1,5 @@ var classGpgFrontend_1_1GenKeyInfo = [ - [ "KeyGenAlgo", "classGpgFrontend_1_1GenKeyInfo.html#a7eda73ff0625a635f041365c21531c60", null ], [ "GenKeyInfo", "classGpgFrontend_1_1GenKeyInfo.html#a34eca1662ba8d4645751f3ee66582b04", null ], [ "GetAlgo", "classGpgFrontend_1_1GenKeyInfo.html#a6a65ba347156373b6cf98eb8e851d28d", null ], [ "GetComment", "classGpgFrontend_1_1GenKeyInfo.html#ab9f9775fd6363fba372bd0bcc2532892", null ], @@ -13,10 +12,10 @@ var classGpgFrontend_1_1GenKeyInfo = [ "GetSizeChangeStep", "classGpgFrontend_1_1GenKeyInfo.html#ac211a7a615805ae97ff284b46abfeab7", null ], [ "GetSuggestMaxKeySize", "classGpgFrontend_1_1GenKeyInfo.html#ae461a553176ad1ab0c1121ea6de6c8c2", null ], [ "GetSuggestMinKeySize", "classGpgFrontend_1_1GenKeyInfo.html#a0b1612421148b86919b7130ed148ca51", null ], - [ "GetSupportedKeyAlgo", "classGpgFrontend_1_1GenKeyInfo.html#ac0dbb2d89b1e5f9b272679ba3f24314e", null ], - [ "GetSupportedKeyAlgoStandalone", "classGpgFrontend_1_1GenKeyInfo.html#afb8315b6612c64b3921b72df98ebcc74", null ], - [ "GetSupportedSubkeyAlgo", "classGpgFrontend_1_1GenKeyInfo.html#a168d6fe5252812f5984ba6d8046c7741", null ], - [ "GetSupportedSubkeyAlgoStandalone", "classGpgFrontend_1_1GenKeyInfo.html#a6819b0ca3ef7712b85ae320030cde023", null ], + [ "GetSupportedKeyAlgo", "classGpgFrontend_1_1GenKeyInfo.html#a185c7be801854f81879351a6c4dd9071", null ], + [ "GetSupportedKeyAlgoStandalone", "classGpgFrontend_1_1GenKeyInfo.html#a8b054a66cb0678af6c42090eea1518e4", null ], + [ "GetSupportedSubkeyAlgo", "classGpgFrontend_1_1GenKeyInfo.html#a7855d9fe9b6872ff08a60fe21640d07f", null ], + [ "GetSupportedSubkeyAlgoStandalone", "classGpgFrontend_1_1GenKeyInfo.html#a310fd0cdac03d0b0a7fde006105866d6", null ], [ "GetUserid", "classGpgFrontend_1_1GenKeyInfo.html#a4ee4a0659e76376d9bfc527c334392e1", null ], [ "IsAllowAuthentication", "classGpgFrontend_1_1GenKeyInfo.html#aabdf981c65a0efde1e8905441b9b9c87", null ], [ "IsAllowCertification", "classGpgFrontend_1_1GenKeyInfo.html#ad47ceeb1ccfa8862843034e51b4d8be7", null ], @@ -31,7 +30,7 @@ var classGpgFrontend_1_1GenKeyInfo = [ "IsNoPassPhrase", "classGpgFrontend_1_1GenKeyInfo.html#a848181796a99bec8d32dc5eac240ee01", null ], [ "IsSubKey", "classGpgFrontend_1_1GenKeyInfo.html#a40a42ad975499566de124296c19e6c55", null ], [ "reset_options", "classGpgFrontend_1_1GenKeyInfo.html#a2a2128871ff307439be30105d3845be9", null ], - [ "SetAlgo", "classGpgFrontend_1_1GenKeyInfo.html#adcd9c4f3e75f989810988e0bc81d401f", null ], + [ "SetAlgo", "classGpgFrontend_1_1GenKeyInfo.html#a378ea10385ab401bea45a7edb3df122d", null ], [ "SetAllowAuthentication", "classGpgFrontend_1_1GenKeyInfo.html#aac51d251682ed1bc1090416ebfeba4de", null ], [ "SetAllowCertification", "classGpgFrontend_1_1GenKeyInfo.html#ac5f52f74566618c71a29bdc5e70fce2e", null ], [ "SetAllowEncryption", "classGpgFrontend_1_1GenKeyInfo.html#a965014232f6de22c6d33320231ca4454", null ], diff --git a/docs/html/classGpgFrontend_1_1GlobalSettingStation.html b/docs/html/classGpgFrontend_1_1GlobalSettingStation.html index 99b3452d..61ff5fea 100644 --- a/docs/html/classGpgFrontend_1_1GlobalSettingStation.html +++ b/docs/html/classGpgFrontend_1_1GlobalSettingStation.html @@ -494,7 +494,7 @@ virtual  - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + +
const std::vector< GpgFrontend::GenKeyInfo::KeyGenAlgo > & GpgFrontend::GenKeyInfo::GetSupportedSubkeyAlgoStandalone const std::vector< std::string > & GpgFrontend::GenKeyInfo::GetSupportedSubkeyAlgoStandalone ( ) allow_change_signing_

Get the Supported Subkey Algo Standalone object.

Returns
const std::vector<std::string>&
-

Referenced by SetAlgo().

+

Referenced by SetAlgo().

@@ -1143,8 +1136,8 @@ false - -

◆ SetAlgo()

+ +

◆ SetAlgo()

@@ -1152,7 +1145,7 @@ false
void GpgFrontend::GenKeyInfo::SetAlgo (const GpgFrontend::GenKeyInfo::KeyGenAlgo & const std::string &  m_algo)
Returns
libconfig::Setting&
-

Referenced by GpgFrontend::UI::KeyList::dropEvent(), GpgFrontend::UI::init_locale(), GpgFrontend::UI::KeyGenDialog::KeyGenDialog(), GpgFrontend::UI::KeyMgmt::KeyMgmt(), GpgFrontend::UI::GeneralTab::SetSettings(), GpgFrontend::UI::NetworkTab::SetSettings(), GpgFrontend::UI::MainWindow::SlotFileEncrypt(), GpgFrontend::UI::MainWindow::SlotFileEncryptSign(), GpgFrontend::UI::MainWindow::SlotFileSign(), GpgFrontend::UI::MainWindow::SlotFileVerify(), GpgFrontend::UI::CommonUtils::SlotImportKeyFromKeyServer(), GpgFrontend::UI::SubkeyGenerateDialog::SubkeyGenerateDialog(), and GpgFrontend::UI::Wizard::Wizard().

+

Referenced by GpgFrontend::UI::KeyList::dropEvent(), GpgFrontend::UI::init_locale(), GpgFrontend::UI::KeyGenDialog::KeyGenDialog(), GpgFrontend::UI::KeyMgmt::KeyMgmt(), GpgFrontend::UI::GeneralTab::SetSettings(), GpgFrontend::UI::NetworkTab::SetSettings(), GpgFrontend::UI::KeyUploadDialog::slot_upload_key_to_server(), GpgFrontend::UI::MainWindow::SlotFileEncrypt(), GpgFrontend::UI::MainWindow::SlotFileEncryptSign(), GpgFrontend::UI::MainWindow::SlotFileSign(), GpgFrontend::UI::MainWindow::SlotFileVerify(), GpgFrontend::UI::CommonUtils::SlotImportKeyFromKeyServer(), GpgFrontend::UI::SubkeyGenerateDialog::SubkeyGenerateDialog(), and GpgFrontend::UI::Wizard::Wizard().

diff --git a/docs/html/classGpgFrontend_1_1GpgKey-members.html b/docs/html/classGpgFrontend_1_1GpgKey-members.html index c379190f..53a32105 100644 --- a/docs/html/classGpgFrontend_1_1GpgKey-members.html +++ b/docs/html/classGpgFrontend_1_1GpgKey-members.html @@ -108,30 +108,29 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1GpgKey.html','');
GpgKey(gpgme_key_t &&key)GpgFrontend::GpgKeyexplicit
GpgKey(const gpgme_key_t &key)=deleteGpgFrontend::GpgKey
GpgKey(GpgKey &&k) noexceptGpgFrontend::GpgKey
gpgme_key_opera_mutex (defined in GpgFrontend::GpgKey)GpgFrontend::GpgKeymutableprivate
IsDisabled() constGpgFrontend::GpgKey
IsExpired() constGpgFrontend::GpgKey
IsGood() constGpgFrontend::GpgKey
IsHasActualAuthenticationCapability() constGpgFrontend::GpgKey
IsHasActualCertificationCapability() constGpgFrontend::GpgKey
IsHasActualEncryptionCapability() constGpgFrontend::GpgKey
IsHasActualSigningCapability() constGpgFrontend::GpgKey
IsHasAuthenticationCapability() constGpgFrontend::GpgKey
IsHasCardKey() constGpgFrontend::GpgKey
IsHasCertificationCapability() constGpgFrontend::GpgKey
IsHasEncryptionCapability() constGpgFrontend::GpgKey
IsHasMasterKey() constGpgFrontend::GpgKey
IsHasSigningCapability() constGpgFrontend::GpgKey
IsPrivateKey() constGpgFrontend::GpgKey
IsRevoked() constGpgFrontend::GpgKey
key_ref_ (defined in GpgFrontend::GpgKey)GpgFrontend::GpgKeyprivate
KeyRefHandler typedef (defined in GpgFrontend::GpgKey)GpgFrontend::GpgKeyprivate
operator gpgme_key_t() constGpgFrontend::GpgKeyexplicit
operator<=(const GpgKey &o) constGpgFrontend::GpgKey
operator=(GpgKey &&k) noexceptGpgFrontend::GpgKey
operator=(const gpgme_key_t &key)=deleteGpgFrontend::GpgKey
operator==(const GpgKey &o) constGpgFrontend::GpgKey
~GpgKey()=defaultGpgFrontend::GpgKey
IsDisabled() constGpgFrontend::GpgKey
IsExpired() constGpgFrontend::GpgKey
IsGood() constGpgFrontend::GpgKey
IsHasActualAuthenticationCapability() constGpgFrontend::GpgKey
IsHasActualCertificationCapability() constGpgFrontend::GpgKey
IsHasActualEncryptionCapability() constGpgFrontend::GpgKey
IsHasActualSigningCapability() constGpgFrontend::GpgKey
IsHasAuthenticationCapability() constGpgFrontend::GpgKey
IsHasCardKey() constGpgFrontend::GpgKey
IsHasCertificationCapability() constGpgFrontend::GpgKey
IsHasEncryptionCapability() constGpgFrontend::GpgKey
IsHasMasterKey() constGpgFrontend::GpgKey
IsHasSigningCapability() constGpgFrontend::GpgKey
IsPrivateKey() constGpgFrontend::GpgKey
IsRevoked() constGpgFrontend::GpgKey
key_ref_ (defined in GpgFrontend::GpgKey)GpgFrontend::GpgKeyprivate
KeyRefHandler typedef (defined in GpgFrontend::GpgKey)GpgFrontend::GpgKeyprivate
operator gpgme_key_t() constGpgFrontend::GpgKeyexplicit
operator<=(const GpgKey &o) constGpgFrontend::GpgKey
operator=(GpgKey &&k) noexceptGpgFrontend::GpgKey
operator=(const gpgme_key_t &key)=deleteGpgFrontend::GpgKey
operator==(const GpgKey &o) constGpgFrontend::GpgKey
~GpgKey()=defaultGpgFrontend::GpgKey
diff --git a/docs/html/classGpgFrontend_1_1GpgKey.html b/docs/html/classGpgFrontend_1_1GpgKey.html index 88003539..7fa57d35 100644 --- a/docs/html/classGpgFrontend_1_1GpgKey.html +++ b/docs/html/classGpgFrontend_1_1GpgKey.html @@ -97,11 +97,10 @@ Collaboration diagram for GpgFrontend::GpgKey:
Collaboration graph
- - - - - + + + +
@@ -213,9 +212,6 @@ Private Attributes - -
KeyRefHandler key_ref_ = nullptr
 
-std::mutex gpgme_key_opera_mutex
 

Constructor & Destructor Documentation

diff --git a/docs/html/classGpgFrontend_1_1GpgKey.js b/docs/html/classGpgFrontend_1_1GpgKey.js index dadbe0f7..b720a48c 100644 --- a/docs/html/classGpgFrontend_1_1GpgKey.js +++ b/docs/html/classGpgFrontend_1_1GpgKey.js @@ -42,6 +42,5 @@ var classGpgFrontend_1_1GpgKey = [ "operator=", "classGpgFrontend_1_1GpgKey.html#a6b243df2320999ebcdaf9645531b925a", null ], [ "operator=", "classGpgFrontend_1_1GpgKey.html#ae58bc1fdcefaaf646f6b8740cb69eef6", null ], [ "operator==", "classGpgFrontend_1_1GpgKey.html#a4f50b2f13b3a5dc7298ee9665e7a5367", null ], - [ "gpgme_key_opera_mutex", "classGpgFrontend_1_1GpgKey.html#ad1784bcc872f42b87e48bcfa40dab4cd", null ], [ "key_ref_", "classGpgFrontend_1_1GpgKey.html#aec4e7e1845073f23cf55dc660c69c44a", null ] ]; \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1GpgKeyGetter.html b/docs/html/classGpgFrontend_1_1GpgKeyGetter.html index 1e60483c..f76794ef 100644 --- a/docs/html/classGpgFrontend_1_1GpgKeyGetter.html +++ b/docs/html/classGpgFrontend_1_1GpgKeyGetter.html @@ -107,25 +107,25 @@ Collaboration diagram for GpgFrontend::GpgKeyGetter:
Collaboration graph
- + - + - - - + + - - - - + + + + +
diff --git a/docs/html/classGpgFrontend_1_1GpgKeyGetter__coll__graph.map b/docs/html/classGpgFrontend_1_1GpgKeyGetter__coll__graph.map index 11d1429f..3c2cfd58 100644 --- a/docs/html/classGpgFrontend_1_1GpgKeyGetter__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1GpgKeyGetter__coll__graph.map @@ -1,21 +1,21 @@ - + - + - - - + + - - - - + + + + + diff --git a/docs/html/classGpgFrontend_1_1GpgKeyGetter__coll__graph.md5 b/docs/html/classGpgFrontend_1_1GpgKeyGetter__coll__graph.md5 index 84d459e5..850fac84 100644 --- a/docs/html/classGpgFrontend_1_1GpgKeyGetter__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1GpgKeyGetter__coll__graph.md5 @@ -1 +1 @@ -467a510c53c1e67830b7a6a72fb19f94 \ No newline at end of file +f9d34d211fc7072f14e801c68a41a53a \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1GpgKeyGetter__coll__graph.png b/docs/html/classGpgFrontend_1_1GpgKeyGetter__coll__graph.png index bc21d4a4..41c7495f 100644 Binary files a/docs/html/classGpgFrontend_1_1GpgKeyGetter__coll__graph.png and b/docs/html/classGpgFrontend_1_1GpgKeyGetter__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1GpgKey__coll__graph.map b/docs/html/classGpgFrontend_1_1GpgKey__coll__graph.map index 4b19a8e0..0896146e 100644 --- a/docs/html/classGpgFrontend_1_1GpgKey__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1GpgKey__coll__graph.map @@ -1,7 +1,6 @@ - - - - - + + + + diff --git a/docs/html/classGpgFrontend_1_1GpgKey__coll__graph.md5 b/docs/html/classGpgFrontend_1_1GpgKey__coll__graph.md5 index 6fa3970e..eef57be4 100644 --- a/docs/html/classGpgFrontend_1_1GpgKey__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1GpgKey__coll__graph.md5 @@ -1 +1 @@ -491e5b154e6f2eabb0b30bf631c32b2d \ No newline at end of file +d5f9d90c107e071b36ee88fcd04f0f06 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1GpgKey__coll__graph.png b/docs/html/classGpgFrontend_1_1GpgKey__coll__graph.png index 2a1d7731..5d6237f1 100644 Binary files a/docs/html/classGpgFrontend_1_1GpgKey__coll__graph.png and b/docs/html/classGpgFrontend_1_1GpgKey__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog-members.html index 34cbc8f2..ccc8766c 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog-members.html @@ -91,12 +91,8 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1AboutDialog.
- - - - - - + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog.html index ba3e1cf4..51269006 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog.html @@ -101,9 +101,9 @@ Inheritance diagram for GpgFrontend::UI::AboutDialog:
Inheritance graph
- - - + + +
@@ -111,13 +111,13 @@ Collaboration diagram for GpgFrontend::UI::AboutDialog:
Collaboration graph
- - - - - - - + + + + + + +
AboutDialog(int defaultIndex, QWidget *parent)GpgFrontend::UI::AboutDialogexplicit
GeneralDialog(std::string name, QWidget *parent=nullptr)GpgFrontend::UI::GeneralDialogexplicit
movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
parent_pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
parent_size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
showEvent(QShowEvent *ev) overrideGpgFrontend::UI::AboutDialogprotected
size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
slot_restore_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot
@@ -134,13 +134,6 @@ Public Member Functions Protected Member Functions - - - - -
void showEvent (QShowEvent *ev) override
 
- Protected Member Functions inherited from GpgFrontend::UI::GeneralDialog
-void setPosCenterOfScreen ()
 
-void movePosition2CenterOfParent ()
 
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.map index e3fd132e..925e0fc0 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.map @@ -1,9 +1,9 @@ - - - - - - - + + + + + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.md5 index 7b8badb8..2026a877 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.md5 @@ -1 +1 @@ -05bb342e1cd1a1d16b3b3229a1dc47cc \ No newline at end of file +72f173638652eeb6a872942f4c20c68d \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.png index 850225e2..3473e1df 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.map index f6c0bf5d..9459e7eb 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.map @@ -1,5 +1,5 @@ - - - + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.md5 index 21d28608..4aa50b2b 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.md5 @@ -1 +1 @@ -b8646657283c7c31b87de6d35a87a0bb \ No newline at end of file +4a6961633efd792be9d3b1379cca4870 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.png index 64de06b3..e8be76d3 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1AppearanceTab-members.html b/docs/html/classGpgFrontend_1_1UI_1_1AppearanceTab-members.html index db9097dc..6d9f6022 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1AppearanceTab-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1AppearanceTab-members.html @@ -91,11 +91,18 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1AppearanceTa

Private Attributes

+ + - - - - + + + + + + + + +
AppearanceTab(QWidget *parent=nullptr)GpgFrontend::UI::AppearanceTabexplicit
ApplySettings() (defined in GpgFrontend::UI::AppearanceTab)GpgFrontend::UI::AppearanceTab
icon_all_button_ (defined in GpgFrontend::UI::AppearanceTab)GpgFrontend::UI::AppearanceTabprivate
icon_icons_button_ (defined in GpgFrontend::UI::AppearanceTab)GpgFrontend::UI::AppearanceTabprivate
icon_size_group_ (defined in GpgFrontend::UI::AppearanceTab)GpgFrontend::UI::AppearanceTabprivate
icon_style_group_ (defined in GpgFrontend::UI::AppearanceTab)GpgFrontend::UI::AppearanceTabprivate
SetSettings()GpgFrontend::UI::AppearanceTab
signalRestartNeeded(bool needed)GpgFrontend::UI::AppearanceTabsignal
ui_ (defined in GpgFrontend::UI::AppearanceTab)GpgFrontend::UI::AppearanceTabprivate
icon_size_large_ (defined in GpgFrontend::UI::AppearanceTab)GpgFrontend::UI::AppearanceTabprivate
icon_size_medium_ (defined in GpgFrontend::UI::AppearanceTab)GpgFrontend::UI::AppearanceTabprivate
icon_size_small_ (defined in GpgFrontend::UI::AppearanceTab)GpgFrontend::UI::AppearanceTabprivate
icon_style_group_ (defined in GpgFrontend::UI::AppearanceTab)GpgFrontend::UI::AppearanceTabprivate
icon_text_button_ (defined in GpgFrontend::UI::AppearanceTab)GpgFrontend::UI::AppearanceTabprivate
info_board_font_size_spin_ (defined in GpgFrontend::UI::AppearanceTab)GpgFrontend::UI::AppearanceTabprivate
SetSettings()GpgFrontend::UI::AppearanceTab
signalRestartNeeded(bool needed)GpgFrontend::UI::AppearanceTabsignal
window_size_check_box_ (defined in GpgFrontend::UI::AppearanceTab)GpgFrontend::UI::AppearanceTabprivate
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1AppearanceTab.html b/docs/html/classGpgFrontend_1_1UI_1_1AppearanceTab.html index a57e11f4..607af8a4 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1AppearanceTab.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1AppearanceTab.html @@ -96,7 +96,7 @@ Inheritance diagram for GpgFrontend::UI::AppearanceTab:
Inheritance graph
- +
@@ -105,11 +105,8 @@ Collaboration diagram for GpgFrontend::UI::AppearanceTab:
Collaboration graph
- - - - - + +
@@ -133,15 +130,36 @@ void 
ApplySettings ()<
- - + + + + + + + + + + + + + + + +

Private Attributes

-std::shared_ptr< Ui_AppearanceSettings > ui_
 
QButtonGroup * icon_style_group_
 
+QRadioButton * icon_size_small_
 
+QRadioButton * icon_size_medium_
 
+QRadioButton * icon_size_large_
 
QButtonGroup * icon_size_group_
 
+QRadioButton * icon_text_button_
 
+QRadioButton * icon_icons_button_
 
+QRadioButton * icon_all_button_
 
+QSpinBox * info_board_font_size_spin_
 
+QCheckBox * window_size_check_box_
 

Constructor & Destructor Documentation

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1AppearanceTab.js b/docs/html/classGpgFrontend_1_1UI_1_1AppearanceTab.js index b43e19c6..617e4c8e 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1AppearanceTab.js +++ b/docs/html/classGpgFrontend_1_1UI_1_1AppearanceTab.js @@ -4,7 +4,14 @@ var classGpgFrontend_1_1UI_1_1AppearanceTab = [ "ApplySettings", "classGpgFrontend_1_1UI_1_1AppearanceTab.html#aac8f47f96ca866256ea846800f3f8887", null ], [ "SetSettings", "classGpgFrontend_1_1UI_1_1AppearanceTab.html#a2fed39a2657407fcdb37d2431ef28e56", null ], [ "signalRestartNeeded", "classGpgFrontend_1_1UI_1_1AppearanceTab.html#abff49b636449815a9ebff52f5c067712", null ], + [ "icon_all_button_", "classGpgFrontend_1_1UI_1_1AppearanceTab.html#a1b28a54fa3ffc5586132b6f5385f62cc", null ], + [ "icon_icons_button_", "classGpgFrontend_1_1UI_1_1AppearanceTab.html#ac8d285e5f3cceb1e6bb857d0487abc8b", null ], [ "icon_size_group_", "classGpgFrontend_1_1UI_1_1AppearanceTab.html#aaa3ec787dcd8fae1a14c2067deb9dd03", null ], + [ "icon_size_large_", "classGpgFrontend_1_1UI_1_1AppearanceTab.html#a1d3e08ebb4a6c21164f25d74eaabe0eb", null ], + [ "icon_size_medium_", "classGpgFrontend_1_1UI_1_1AppearanceTab.html#aed37292c07ba2ac20d72765b08b9a09b", null ], + [ "icon_size_small_", "classGpgFrontend_1_1UI_1_1AppearanceTab.html#ab9b4572e7e809fbf73435c0c2df7b9ad", null ], [ "icon_style_group_", "classGpgFrontend_1_1UI_1_1AppearanceTab.html#a58b3ece7ff069c33de73e658aa47cacc", null ], - [ "ui_", "classGpgFrontend_1_1UI_1_1AppearanceTab.html#a9f546f16551f48c73ee9031dd0ad8720", null ] + [ "icon_text_button_", "classGpgFrontend_1_1UI_1_1AppearanceTab.html#af5598180d11936e4b5fa2a57dd592093", null ], + [ "info_board_font_size_spin_", "classGpgFrontend_1_1UI_1_1AppearanceTab.html#ac460ceea6d6841d6cf0a3c86be6f7d60", null ], + [ "window_size_check_box_", "classGpgFrontend_1_1UI_1_1AppearanceTab.html#a01dfa2d7811180351d3e0d33667df23e", null ] ]; \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1AppearanceTab__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1AppearanceTab__coll__graph.map index 118ced7e..0cc1e311 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1AppearanceTab__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1AppearanceTab__coll__graph.map @@ -1,7 +1,4 @@ - - - - - + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1AppearanceTab__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1AppearanceTab__coll__graph.md5 index a6008729..90f3e613 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1AppearanceTab__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1AppearanceTab__coll__graph.md5 @@ -1 +1 @@ -9c73c708963b17a280b39cf173e3a53f \ No newline at end of file +c90ca7324d443f5bc996b503137ec9a1 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1AppearanceTab__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1AppearanceTab__coll__graph.png index 3387d41b..4331c94f 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1AppearanceTab__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1AppearanceTab__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1AppearanceTab__inherit__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1AppearanceTab__inherit__graph.map index 6b2d920c..0cc1e311 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1AppearanceTab__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1AppearanceTab__inherit__graph.map @@ -1,4 +1,4 @@ - + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1AppearanceTab__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1AppearanceTab__inherit__graph.md5 index 90038afc..90f3e613 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1AppearanceTab__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1AppearanceTab__inherit__graph.md5 @@ -1 +1 @@ -d2d4848d083e83dd6146adcf14fb8e5d \ No newline at end of file +c90ca7324d443f5bc996b503137ec9a1 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1AppearanceTab__inherit__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1AppearanceTab__inherit__graph.png index dfc4fa2f..4331c94f 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1AppearanceTab__inherit__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1AppearanceTab__inherit__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog-members.html index df4f59de..b386b2e9 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog-members.html @@ -92,13 +92,9 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1ExportKeyPac
ExportKeyPackageDialog(KeyIdArgsListPtr key_ids, QWidget *parent)GpgFrontend::UI::ExportKeyPackageDialogexplicit
GeneralDialog(std::string name, QWidget *parent=nullptr)GpgFrontend::UI::GeneralDialogexplicit
key_ids_ (defined in GpgFrontend::UI::ExportKeyPackageDialog)GpgFrontend::UI::ExportKeyPackageDialogprivate
movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
parent_pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
parent_size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
passphrase_ (defined in GpgFrontend::UI::ExportKeyPackageDialog)GpgFrontend::UI::ExportKeyPackageDialogprivate
pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
passphrase_ (defined in GpgFrontend::UI::ExportKeyPackageDialog)GpgFrontend::UI::ExportKeyPackageDialogprivate
pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
slot_restore_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot
slot_save_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot
@@ -138,16 +138,6 @@ KeyIdArgsListPtr  -
key_ids_<
std::string passphrase_
 
- - - - - -

-Additional Inherited Members

- Protected Member Functions inherited from GpgFrontend::UI::GeneralDialog
-void setPosCenterOfScreen ()
 
-void movePosition2CenterOfParent ()
 

Constructor & Destructor Documentation

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.map index 86d56af8..c9bf0fea 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.map @@ -1,12 +1,12 @@ - - - - - - - - - - + + + + + + + + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.md5 index 231b90fd..56fa1eaa 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.md5 @@ -1 +1 @@ -66c142b62f3c8cb72f33283471cd4d84 \ No newline at end of file +a99abc281069eac7c9ca4990ea942238 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.png index 37badd2b..be07c2fd 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.map index dfe95665..10770217 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.map @@ -1,5 +1,5 @@ - - - + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.md5 index e76135e8..6870f84f 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.md5 @@ -1 +1 @@ -3c683b6affe0924739e8aa3318706e8d \ No newline at end of file +69ac3e392b04999ff042e3041436b7b2 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.png index ed428c54..ef3d16ab 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog-members.html index 9eb457eb..f5e90a79 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog-members.html @@ -90,12 +90,8 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1GeneralDialo

This is the complete list of members for GpgFrontend::UI::GeneralDialog, including all inherited members.

- - - - - - + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog.html index 58037b46..7467b77c 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog.html @@ -84,7 +84,6 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1GeneralDialo
@@ -97,21 +96,21 @@ Inheritance diagram for GpgFrontend::UI::GeneralDialog:
Inheritance graph
- - - - - - - - - - - - - - - + + + + + + + + + + + + + + +
@@ -120,10 +119,10 @@ Collaboration diagram for GpgFrontend::UI::GeneralDialog:
Collaboration graph
- - - - + + + +
GeneralDialog(std::string name, QWidget *parent=nullptr)GpgFrontend::UI::GeneralDialogexplicit
movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
parent_pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
parent_size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
slot_restore_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot
slot_save_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot
@@ -132,15 +131,6 @@ Public Member Functions
 GeneralDialog (std::string name, QWidget *parent=nullptr)
 
- - - - - -

-Protected Member Functions

-void setPosCenterOfScreen ()
 
-void movePosition2CenterOfParent ()
 
- - - -

Private Slots

@@ -161,12 +151,6 @@ QPoint pos_
QSize size_
 
-QPoint parent_pos_
 
-QSize parent_size_
 

Constructor & Destructor Documentation

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog.js b/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog.js index faf519a4..e94c3ed3 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog.js +++ b/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog.js @@ -2,13 +2,9 @@ var classGpgFrontend_1_1UI_1_1GeneralDialog = [ [ "GeneralDialog", "classGpgFrontend_1_1UI_1_1GeneralDialog.html#ac9de4c49668ffaeb6916c64f878a202c", null ], [ "~GeneralDialog", "classGpgFrontend_1_1UI_1_1GeneralDialog.html#a42043895f4b33acd1531c428ae4deaa8", null ], - [ "movePosition2CenterOfParent", "classGpgFrontend_1_1UI_1_1GeneralDialog.html#ad9d5be542aa422450a96dff00232ebe5", null ], - [ "setPosCenterOfScreen", "classGpgFrontend_1_1UI_1_1GeneralDialog.html#abad7cff23d2426820e320ecea47b479c", null ], [ "slot_restore_settings", "classGpgFrontend_1_1UI_1_1GeneralDialog.html#a34d01f247eee92017a2eccf697cda080", null ], [ "slot_save_settings", "classGpgFrontend_1_1UI_1_1GeneralDialog.html#a940a6ea31dff4db83f9f08d38e843a2b", null ], [ "name_", "classGpgFrontend_1_1UI_1_1GeneralDialog.html#ae91392293866dc302132a9fc19209d8c", null ], - [ "parent_pos_", "classGpgFrontend_1_1UI_1_1GeneralDialog.html#a871f204f01f10815e3475c103f1157af", null ], - [ "parent_size_", "classGpgFrontend_1_1UI_1_1GeneralDialog.html#a234a0a4d8c0b1b49a54f65b1aa3f9490", null ], [ "pos_", "classGpgFrontend_1_1UI_1_1GeneralDialog.html#ad9b847aa128dfeb4ecf0064ef948e6ea", null ], [ "size_", "classGpgFrontend_1_1UI_1_1GeneralDialog.html#aeda520454fd38920a027c1a4195a2e6f", null ] ]; \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.map index 6acf3722..4d243a62 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.map @@ -1,6 +1,6 @@ - - - - + + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.md5 index 7ba79f9a..65d60992 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.md5 @@ -1 +1 @@ -dfb384493a858ed51bb7f1b6a02893eb \ No newline at end of file +b9dd63f002d67c887e553ef7eb47dcb9 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.png index e893b8b9..64e67fb6 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.map index 2094e1d1..f8999b53 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.map @@ -1,18 +1,18 @@ - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.md5 index 42b21657..6f0b7bfd 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.md5 @@ -1 +1 @@ -4aaa058f2e4e5adebbb525bb120bf713 \ No newline at end of file +b92011769c33441e27d7630b83fe1a87 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.png index f77624a6..5b2d1198 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow-members.html b/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow-members.html index e73d25e7..5cdc64eb 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow-members.html @@ -89,7 +89,7 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1GeneralMainW

This is the complete list of members for GpgFrontend::UI::GeneralMainWindow, including all inherited members.

- + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow.html b/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow.html index 67d0f23d..c7b0e7fd 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow.html @@ -123,8 +123,8 @@ Public Member Functions
closeEvent(QCloseEvent *event) overrideGpgFrontend::UI::GeneralMainWindowprotected
closeEvent(QCloseEvent *event)GpgFrontend::UI::GeneralMainWindowprotected
font_size_ (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprotected
GeneralMainWindow(std::string name, QWidget *parent=nullptr)GpgFrontend::UI::GeneralMainWindowexplicit
icon_size_ (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprotected
- - + +

Protected Member Functions

void closeEvent (QCloseEvent *event) override
 
void closeEvent (QCloseEvent *event)
 
@@ -210,8 +210,8 @@ QSize 

Member Function Documentation

- -

◆ closeEvent()

+ +

◆ closeEvent()

@@ -229,7 +229,7 @@ QSize 

Protected Attributes

size_
size_
-overrideprotected
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow.js b/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow.js index 6b28bf21..008007b1 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow.js +++ b/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow.js @@ -2,7 +2,7 @@ var classGpgFrontend_1_1UI_1_1GeneralMainWindow = [ [ "GeneralMainWindow", "classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a62b24183ebf9da18852084879bcb1013", null ], [ "~GeneralMainWindow", "classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a60f3fab73cb82114b17b10d6ac2f3b1a", null ], - [ "closeEvent", "classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#acc10569862d1575d9453d1c1aa539242", null ], + [ "closeEvent", "classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#af5c86754836a678c7058e6f633968863", null ], [ "slot_restore_settings", "classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a42d1bc5a70f0e81cb49c88eb23544255", null ], [ "slot_save_settings", "classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a8ddf641e1266d00cb876ddf786e5ccb8", null ], [ "font_size_", "classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#ab0dd85f0fcbbab2f15eee995458d2dfb", null ], diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralTab.html b/docs/html/classGpgFrontend_1_1UI_1_1GeneralTab.html index 6864f61a..257c7e96 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GeneralTab.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1GeneralTab.html @@ -105,26 +105,26 @@ Collaboration diagram for GpgFrontend::UI::GeneralTab:
Collaboration graph
- - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + +
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralTab__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1GeneralTab__coll__graph.map index cd7453fa..e6703321 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GeneralTab__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1GeneralTab__coll__graph.map @@ -1,22 +1,22 @@ - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralTab__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1GeneralTab__coll__graph.md5 index 145a2745..03f11291 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GeneralTab__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1GeneralTab__coll__graph.md5 @@ -1 +1 @@ -b86d1d6d931488f83ced2a64a52798e8 \ No newline at end of file +dddc4819d40c7943fe329482ba258568 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralTab__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1GeneralTab__coll__graph.png index 8660ca82..594ca236 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1GeneralTab__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1GeneralTab__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog-members.html index dbd94668..dc9b370e 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog-members.html @@ -91,12 +91,8 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1KeyDetailsDi
- - - - - - + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog.html index 09650c8a..2ea53d3f 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog.html @@ -95,9 +95,9 @@ Inheritance diagram for GpgFrontend::UI::KeyDetailsDialog:
Inheritance graph
- - - + + +
@@ -105,11 +105,11 @@ Collaboration diagram for GpgFrontend::UI::KeyDetailsDialog:
Collaboration graph
- - - - - + + + + +
GeneralDialog(std::string name, QWidget *parent=nullptr)GpgFrontend::UI::GeneralDialogexplicit
KeyDetailsDialog(const GpgKey &key, QWidget *parent=nullptr) (defined in GpgFrontend::UI::KeyDetailsDialog)GpgFrontend::UI::KeyDetailsDialogexplicit
movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
parent_pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
parent_size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
slot_restore_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot
slot_save_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot
@@ -127,16 +127,6 @@ Private Attributes -
QTabWidget * tab_widget_ {}
 
- - - - - -

-Additional Inherited Members

- Protected Member Functions inherited from GpgFrontend::UI::GeneralDialog
-void setPosCenterOfScreen ()
 
-void movePosition2CenterOfParent ()
 

The documentation for this class was generated from the following files:
  • src/ui/dialog/keypair_details/KeyDetailsDialog.h
  • diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.map index fb6e122f..9a9539df 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.map @@ -1,7 +1,7 @@ - - - - - + + + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.md5 index 6e7096eb..dc30da8c 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.md5 @@ -1 +1 @@ -cbb060ae118d1849c61a1f8a5582f4cb \ No newline at end of file +0118d4e63f09f3129bea89c6534907b1 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.png index 6fdbce55..be0ef460 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.map index 5997db3e..23474f95 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.map @@ -1,5 +1,5 @@ - - - + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.md5 index ec09cdfb..2eda37c4 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.md5 @@ -1 +1 @@ -1c8ccce6af7e9a6449ade2f780b15068 \ No newline at end of file +621551b7368422f47512f365eaf4bc3a \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.png index 62252fd8..6c70b99b 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog-members.html index 092cfb08..a9f08489 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog-members.html @@ -108,17 +108,13 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1KeyGenDialog
key_usage_group_box_GpgFrontend::UI::KeyGenDialogprivate
KeyGenDialog(QWidget *parent=nullptr)GpgFrontend::UI::KeyGenDialogexplicit
max_date_time_ (defined in GpgFrontend::UI::KeyGenDialog)GpgFrontend::UI::KeyGenDialogprivate
movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
name_edit_GpgFrontend::UI::KeyGenDialogprivate
no_pass_phrase_check_box_ (defined in GpgFrontend::UI::KeyGenDialog)GpgFrontend::UI::KeyGenDialogprivate
parent_pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
parent_size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
re_email_ (defined in GpgFrontend::UI::KeyGenDialog)GpgFrontend::UI::KeyGenDialogprivate
refresh_widgets_state()GpgFrontend::UI::KeyGenDialogprivate
set_signal_slot()GpgFrontend::UI::KeyGenDialogprivate
setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
name_edit_GpgFrontend::UI::KeyGenDialogprivate
no_pass_phrase_check_box_ (defined in GpgFrontend::UI::KeyGenDialog)GpgFrontend::UI::KeyGenDialogprivate
pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
re_email_ (defined in GpgFrontend::UI::KeyGenDialog)GpgFrontend::UI::KeyGenDialogprivate
refresh_widgets_state()GpgFrontend::UI::KeyGenDialogprivate
set_signal_slot()GpgFrontend::UI::KeyGenDialogprivate
SignalKeyGenerated() (defined in GpgFrontend::UI::KeyGenDialog)GpgFrontend::UI::KeyGenDialogsignal
size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
slot_activated_key_type(int index)GpgFrontend::UI::KeyGenDialogprivateslot
@@ -228,16 +228,6 @@ QDateTime  -
max_date_time_key_usage_check_boxes_
 ENCR, SIGN, CERT, AUTH.
 
- - - - - -

-Additional Inherited Members

- Protected Member Functions inherited from GpgFrontend::UI::GeneralDialog
-void setPosCenterOfScreen ()
 
-void movePosition2CenterOfParent ()
 

Constructor & Destructor Documentation

@@ -341,7 +331,7 @@ false

Create a basic info group box object.

Returns
QGroupBox*
-

References comment_edit_, date_edit_, email_edit_, error_label_, expire_check_box_, GpgFrontend::GenKeyInfo::GetSupportedKeyAlgo(), key_size_spin_box_, key_type_combo_box_, and name_edit_.

+

References comment_edit_, date_edit_, email_edit_, error_label_, expire_check_box_, GpgFrontend::GenKeyInfo::GetSupportedKeyAlgo(), key_size_spin_box_, key_type_combo_box_, and name_edit_.

@@ -435,7 +425,7 @@ false -

References refresh_widgets_state().

+

References key_type_combo_box_, and refresh_widgets_state().

Referenced by set_signal_slot().

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.map index f5a63ed1..946f24a6 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.map @@ -1,12 +1,12 @@ - - - - - - - - - - + + + + + + + + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.md5 index 564cd762..7883bac7 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.md5 @@ -1 +1 @@ -40b241f4a6837c4a8c05f668bc1c205d \ No newline at end of file +e2be69e4f09b18685143523e2e456b67 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.png index 9af0490a..846801db 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.map index 89422297..c0bb3dca 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.map @@ -1,5 +1,5 @@ - - - + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.md5 index 7c93a86b..c2cb1f31 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.md5 @@ -1 +1 @@ -ddf4fd09c07e152259ff4433ca3c9db6 \ No newline at end of file +a0036a69f82222049931c7262a1f1fa4 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.png index ffe06382..53686b7f 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog-members.html index 929bc35f..6864e5b2 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog-members.html @@ -100,12 +100,8 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1KeyImportDet
KeyImportDetailDialog(GpgImportInformation result, bool automatic, QWidget *parent=nullptr)GpgFrontend::UI::KeyImportDetailDialog
keys_table_ (defined in GpgFrontend::UI::KeyImportDetailDialog)GpgFrontend::UI::KeyImportDetailDialogprivate
m_result_ (defined in GpgFrontend::UI::KeyImportDetailDialog)GpgFrontend::UI::KeyImportDetailDialogprivate
movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
parent_pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
parent_size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
slot_restore_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot
slot_save_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot
@@ -167,16 +167,6 @@ QDialogButtonBox *  -
button_
GpgImportInformation m_result_
 
- - - - - -

-Additional Inherited Members

- Protected Member Functions inherited from GpgFrontend::UI::GeneralDialog
-void setPosCenterOfScreen ()
 
-void movePosition2CenterOfParent ()
 

Constructor & Destructor Documentation

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.map index ab00bf23..00c5ca59 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.map @@ -1,12 +1,12 @@ - - - - - - - - - - + + + + + + + + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.md5 index 6d0f7836..e65f8ab6 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.md5 @@ -1 +1 @@ -55b7362c2a0c2cebfc6d69aae5bcf382 \ No newline at end of file +e611c0a22de5a4a06b9245d5a9cae62d \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.png index 7841c807..df999f68 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.map index c73933b6..045f9285 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.map @@ -1,5 +1,5 @@ - - - + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.md5 index 5bcaf175..4b32eaec 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.md5 @@ -1 +1 @@ -c5256b3b2554792025c908f398fd1ff1 \ No newline at end of file +f30482668842f32cc93d80dd8b8e7ca4 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.png index fc4bfd3e..c1e12865 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyList.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyList.html index 01db2bbd..0e86a6da 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyList.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyList.html @@ -110,21 +110,21 @@ Collaboration diagram for GpgFrontend::UI::KeyList:
Collaboration graph
- + - - - - - - - - - - - - - + + + + + + + + + + + + +
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyList__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeyList__coll__graph.map index 47e50a24..52e8bf73 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyList__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyList__coll__graph.map @@ -1,17 +1,17 @@ - + - - - - - - - - - - - - - + + + + + + + + + + + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyList__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1KeyList__coll__graph.md5 index 86612449..c79d4de3 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyList__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyList__coll__graph.md5 @@ -1 +1 @@ -bbb168b8d5ff81c3dc9ffb169eeb802e \ No newline at end of file +c97770071eb80795f14138e0a6eb8fc8 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyList__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1KeyList__coll__graph.png index 29d8905f..8bbc5c50 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1KeyList__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1KeyList__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt-members.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt-members.html index 59d05c3b..bccf658a 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt-members.html @@ -90,7 +90,7 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1KeyMgmt.html

This is the complete list of members for GpgFrontend::UI::KeyMgmt, including all inherited members.

- + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt.html index b42e8efb..faef7b3c 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt.html @@ -108,29 +108,29 @@ Collaboration diagram for GpgFrontend::UI::KeyMgmt:
Collaboration graph
- - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + +
close_act_ (defined in GpgFrontend::UI::KeyMgmt)GpgFrontend::UI::KeyMgmtprivate
closeEvent(QCloseEvent *event) overrideGpgFrontend::UI::GeneralMainWindowprotected
closeEvent(QCloseEvent *event)GpgFrontend::UI::GeneralMainWindowprotected
create_actions()GpgFrontend::UI::KeyMgmtprivate
create_menus()GpgFrontend::UI::KeyMgmtprivate
create_tool_bars()GpgFrontend::UI::KeyMgmtprivate
@@ -268,8 +268,8 @@ QAction *  - - + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.map index d4160e8e..4519d8bf 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.map @@ -1,25 +1,25 @@ - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.md5 index d700a06a..e052061f 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.md5 @@ -1 +1 @@ -8c3b0094684823f3450255eaadb03a97 \ No newline at end of file +2dd838316f506bb2ff7f1bc9d0e75635 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.png index e379aacd..9ef22eaf 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog-members.html index 5b3a3ae9..6f4bfa7c 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog-members.html @@ -98,13 +98,9 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1KeyNewUIDDia - - - - - - - + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html index 8465ef21..f72ebfe3 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html @@ -98,8 +98,8 @@ Inheritance diagram for GpgFrontend::UI::KeyNewUIDDialog:
Inheritance graph
- - + +
@@ -108,16 +108,15 @@ Collaboration diagram for GpgFrontend::UI::KeyNewUIDDialog:
Collaboration graph
- - - - - - - - - - + + + + + + + + +
show_key_details

Additional Inherited Members

- Protected Member Functions inherited from GpgFrontend::UI::GeneralMainWindow
void closeEvent (QCloseEvent *event) override
 
void closeEvent (QCloseEvent *event)
 
- Protected Attributes inherited from GpgFrontend::UI::GeneralMainWindow
QSize icon_size_ {}
GeneralDialog(std::string name, QWidget *parent=nullptr)GpgFrontend::UI::GeneralDialogexplicit
KeyNewUIDDialog(const KeyId &key, QWidget *parent=nullptr)GpgFrontend::UI::KeyNewUIDDialog
m_key_ (defined in GpgFrontend::UI::KeyNewUIDDialog)GpgFrontend::UI::KeyNewUIDDialogprivate
movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
name_ (defined in GpgFrontend::UI::KeyNewUIDDialog)GpgFrontend::UI::KeyNewUIDDialogprivate
parent_pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
parent_size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
re_email_ (defined in GpgFrontend::UI::KeyNewUIDDialog)GpgFrontend::UI::KeyNewUIDDialogprivate
setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
name_ (defined in GpgFrontend::UI::KeyNewUIDDialog)GpgFrontend::UI::KeyNewUIDDialogprivate
pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
re_email_ (defined in GpgFrontend::UI::KeyNewUIDDialog)GpgFrontend::UI::KeyNewUIDDialogprivate
SignalUIDCreated() (defined in GpgFrontend::UI::KeyNewUIDDialog)GpgFrontend::UI::KeyNewUIDDialogsignal
size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
slot_create_new_uid()GpgFrontend::UI::KeyNewUIDDialogprivateslot
@@ -171,16 +170,6 @@ QLabel *  -
error_label_
 
QRegularExpression re_email_
 
- - - - - -

-Additional Inherited Members

- Protected Member Functions inherited from GpgFrontend::UI::GeneralDialog
-void setPosCenterOfScreen ()
 
-void movePosition2CenterOfParent ()
 

Constructor & Destructor Documentation

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.map index 82cb626b..f11e900a 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.map @@ -1,12 +1,11 @@ - - - - - - - - - - + + + + + + + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.md5 index 2f76c74d..21a04fe9 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.md5 @@ -1 +1 @@ -b44a6d3adf9fb5b3fd953f8f01671094 \ No newline at end of file +c1bc977f150a195fe62a4ee975c63286 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.png index 53345f3a..dd7201fd 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.map index bd91b3af..88876f50 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.map @@ -1,5 +1,5 @@ - - + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.md5 index 6d880f98..d86be291 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.md5 @@ -1 +1 @@ -026bb9a6a7e417f6bbd8d5e5e20e77a4 \ No newline at end of file +888f71a7d244dd0c87f4dde5f343c3c1 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.png index 72718328..68f8ad46 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html index d8a71c75..56d58996 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html @@ -106,12 +106,11 @@ Collaboration diagram for GpgFrontend::UI::KeyPairDetailTab:
Collaboration graph
- - - - - - + + + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__coll__graph.map index cc25ab89..60192947 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__coll__graph.map @@ -1,9 +1,8 @@ - - - - - - + + + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__coll__graph.md5 index dc8ecbdd..ac0de2a4 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__coll__graph.md5 @@ -1 +1 @@ -871c8a16821cbd4b2236e6be7e4203ea \ No newline at end of file +5014f78c0209e3737c09f97251496700 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__coll__graph.png index 5e577e0a..5884ef6c 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html index 551fcc24..2d5ddeb2 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html @@ -106,12 +106,11 @@ Collaboration diagram for GpgFrontend::UI::KeyPairOperaTab:
Collaboration graph
- - - - - - + + + + +
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__coll__graph.map index ee59d89c..9bb14c35 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__coll__graph.map @@ -1,9 +1,8 @@ - - - - - - + + + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__coll__graph.md5 index 450a3bac..78e1fb3a 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__coll__graph.md5 @@ -1 +1 @@ -c305269ce52e014458dd16ffa54e5613 \ No newline at end of file +700cf94a6caefa62c9ee661b056226cd \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__coll__graph.png index b3f79edb..d454c2c1 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html index 99244b06..15e0e4fa 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html @@ -107,17 +107,16 @@ Collaboration diagram for GpgFrontend::UI::KeyPairSubkeyTab:
Collaboration graph
- - - - - - - - - - - + + + + + + + + + +
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__coll__graph.map index 44c62ca6..de8db45e 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__coll__graph.map @@ -1,13 +1,12 @@ - - - - - - - - - - - + + + + + + + + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__coll__graph.md5 index a90788aa..216a3cd9 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__coll__graph.md5 @@ -1 +1 @@ -231e0aa7ef95a4c60bf0baa7cf16212e \ No newline at end of file +76f8b7629027d8bc1699580ff9e8f311 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__coll__graph.png index 0a844a4a..9a9a7a8f 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html index 8faaf8b4..b49ee989 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html @@ -108,20 +108,19 @@ Collaboration diagram for GpgFrontend::UI::KeyPairUIDTab:
Collaboration graph
- - - - - - - - - - - - - - + + + + + + + + + + + + +
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__coll__graph.map index cb93ff73..103cf285 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__coll__graph.map @@ -1,16 +1,15 @@ - - - - - - - - - - - - - - + + + + + + + + + + + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__coll__graph.md5 index 39e6bcea..aad905bc 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__coll__graph.md5 @@ -1 +1 @@ -58e82c65d4b548f3bf23befd9da4da28 \ No newline at end of file +b51e58063731cd0c83fac2e6c7c86f16 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__coll__graph.png index 12cab9d1..bbb0306a 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog-members.html index 60c41440..6f2b1077 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog-members.html @@ -104,17 +104,13 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1KeyServerImp - - - - - - - - - - - + + + + + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html index d4eeea6d..dd8a6067 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html @@ -99,9 +99,9 @@ Inheritance diagram for GpgFrontend::UI::KeyServerImportDialog:
Inheritance graph
- - - + + +
@@ -109,11 +109,11 @@ Collaboration diagram for GpgFrontend::UI::KeyServerImportDialog:
Collaboration graph
- - - - - + + + + +
KeyServerImportDialog(QWidget *parent)GpgFrontend::UI::KeyServerImportDialogexplicit
m_automatic_ (defined in GpgFrontend::UI::KeyServerImportDialog)GpgFrontend::UI::KeyServerImportDialogprivate
message_ (defined in GpgFrontend::UI::KeyServerImportDialog)GpgFrontend::UI::KeyServerImportDialogprivate
movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
parent_pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
parent_size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
search_button_ (defined in GpgFrontend::UI::KeyServerImportDialog)GpgFrontend::UI::KeyServerImportDialogprivate
search_label_ (defined in GpgFrontend::UI::KeyServerImportDialog)GpgFrontend::UI::KeyServerImportDialogprivate
search_line_edit_ (defined in GpgFrontend::UI::KeyServerImportDialog)GpgFrontend::UI::KeyServerImportDialogprivate
set_loading(bool status)GpgFrontend::UI::KeyServerImportDialogprivate
set_message(const QString &text, bool error)GpgFrontend::UI::KeyServerImportDialogprivate
setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
search_button_ (defined in GpgFrontend::UI::KeyServerImportDialog)GpgFrontend::UI::KeyServerImportDialogprivate
search_label_ (defined in GpgFrontend::UI::KeyServerImportDialog)GpgFrontend::UI::KeyServerImportDialogprivate
search_line_edit_ (defined in GpgFrontend::UI::KeyServerImportDialog)GpgFrontend::UI::KeyServerImportDialogprivate
set_loading(bool status)GpgFrontend::UI::KeyServerImportDialogprivate
set_message(const QString &text, bool error)GpgFrontend::UI::KeyServerImportDialogprivate
SignalKeyImported() (defined in GpgFrontend::UI::KeyServerImportDialog)GpgFrontend::UI::KeyServerImportDialogsignal
size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
slot_import()GpgFrontend::UI::KeyServerImportDialogprivateslot
@@ -216,16 +216,6 @@ QPushButton *  -
search_butto
QTableWidget * keys_table_ {}
 
- - - - - -

-Additional Inherited Members

- Protected Member Functions inherited from GpgFrontend::UI::GeneralDialog
-void setPosCenterOfScreen ()
 
-void movePosition2CenterOfParent ()
 

Constructor & Destructor Documentation

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.map index c6d4a28b..25ff8dcd 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.map @@ -1,7 +1,7 @@ - - - - - + + + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.md5 index 3640211d..ed7c0bf7 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.md5 @@ -1 +1 @@ -d65bdd32e60d6c9b155cc1d9efc0341e \ No newline at end of file +378d655200e8781d98a70e1ece1895ee \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.png index c7724c33..749c1e06 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.map index febf62cd..523f23f4 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.map @@ -1,5 +1,5 @@ - - - + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.md5 index f07a3554..c5354600 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.md5 @@ -1 +1 @@ -83b83c5d6364875c4b099e8ff4b7ee60 \ No newline at end of file +5568c0582f837fa7d37d937008ff2f56 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.png index 8f327df6..659bca04 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog-members.html index 79ec20e3..a1ea802e 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog-members.html @@ -95,12 +95,8 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1KeySetExpire KeySetExpireDateDialog(const KeyId &key_id, std::string subkey_fpr, QWidget *parent=nullptr)GpgFrontend::UI::KeySetExpireDateDialogexplicit m_key_ (defined in GpgFrontend::UI::KeySetExpireDateDialog)GpgFrontend::UI::KeySetExpireDateDialogprivate m_subkey_ (defined in GpgFrontend::UI::KeySetExpireDateDialog)GpgFrontend::UI::KeySetExpireDateDialogprivate - movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected - name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - parent_pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - parent_size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected + name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate + pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate SignalKeyExpireDateUpdated() (defined in GpgFrontend::UI::KeySetExpireDateDialog)GpgFrontend::UI::KeySetExpireDateDialogsignal size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate slot_confirm() (defined in GpgFrontend::UI::KeySetExpireDateDialog)GpgFrontend::UI::KeySetExpireDateDialogprivateslot diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html index d7e2f031..44dea635 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html @@ -98,9 +98,9 @@ Inheritance diagram for GpgFrontend::UI::KeySetExpireDateDialog:
Inheritance graph
- - - + + +
@@ -108,18 +108,17 @@ Collaboration diagram for GpgFrontend::UI::KeySetExpireDateDialog:
Collaboration graph
- - - - - - - - - - - - + + + + + + + + + + +
@@ -166,16 +165,6 @@ const GpgKey  -
const SubkeyId m_subkey_
 
- - - - - -

-Additional Inherited Members

- Protected Member Functions inherited from GpgFrontend::UI::GeneralDialog
-void setPosCenterOfScreen ()
 
-void movePosition2CenterOfParent ()
 

Constructor & Destructor Documentation

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.map index a3ba3ff0..3256c933 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.map @@ -1,14 +1,13 @@ - - - - - - - - - - - - + + + + + + + + + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.md5 index 5f3bda18..56b7fbab 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.md5 @@ -1 +1 @@ -b911703313c2e4b87529ce70956609ed \ No newline at end of file +37ecf749b704665a11880e479d904b29 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.png index ab7135d8..869464d0 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.map index a22d84f3..c710447f 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.map @@ -1,5 +1,5 @@ - - - + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.md5 index df0b0da5..a2085774 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.md5 @@ -1 +1 @@ -c17288cb417248d0ae8c2a1d9ad62ae5 \ No newline at end of file +87608c893e026a7ed49055ee65a4fea8 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.png index 05418365..76f12173 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog-members.html index 2f167019..ac513a45 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog-members.html @@ -95,13 +95,9 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1KeyUIDSignDi m_key_ (defined in GpgFrontend::UI::KeyUIDSignDialog)GpgFrontend::UI::KeyUIDSignDialogprivate m_key_list_ (defined in GpgFrontend::UI::KeyUIDSignDialog)GpgFrontend::UI::KeyUIDSignDialogprivate m_uids_ (defined in GpgFrontend::UI::KeyUIDSignDialog)GpgFrontend::UI::KeyUIDSignDialogprivate - movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected - name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - non_expire_check_ (defined in GpgFrontend::UI::KeyUIDSignDialog)GpgFrontend::UI::KeyUIDSignDialogprivate - parent_pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - parent_size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected + name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate + non_expire_check_ (defined in GpgFrontend::UI::KeyUIDSignDialog)GpgFrontend::UI::KeyUIDSignDialogprivate + pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate sign_key_button_ (defined in GpgFrontend::UI::KeyUIDSignDialog)GpgFrontend::UI::KeyUIDSignDialogprivate SignalKeyUIDSignUpdate() (defined in GpgFrontend::UI::KeyUIDSignDialog)GpgFrontend::UI::KeyUIDSignDialogsignal size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html index 7fd675ed..2dda05b2 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html @@ -97,9 +97,9 @@ Inheritance diagram for GpgFrontend::UI::KeyUIDSignDialog:
Inheritance graph
- - - + + +
@@ -107,27 +107,27 @@ Collaboration diagram for GpgFrontend::UI::KeyUIDSignDialog:
Collaboration graph
- - + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + +
@@ -171,16 +171,6 @@ UIDArgsListPtr  -
m_uids_
const GpgKeym_key_
 
- - - - - -

-Additional Inherited Members

- Protected Member Functions inherited from GpgFrontend::UI::GeneralDialog
-void setPosCenterOfScreen ()
 
-void movePosition2CenterOfParent ()
 

Constructor & Destructor Documentation

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.map index afb342fc..c790238c 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.map @@ -1,23 +1,23 @@ - - + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.md5 index 6ecbf4e0..80292b45 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.md5 @@ -1 +1 @@ -c5ce6a70c11fda17a8ef978e19ff6060 \ No newline at end of file +44186b631d7f8afde83bb891ecd6388a \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.png index e2b3d20b..45dc70d2 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.map index ddb4f337..805c4528 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.map @@ -1,5 +1,5 @@ - - - + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.md5 index 92e0c8aa..2f94949a 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.md5 @@ -1 +1 @@ -8e2d1d0e55c227f3badc7f088fa927cb \ No newline at end of file +2d8a67a8221e0eb2eb1384d46ce47a10 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.png index 8cc22b2c..7ae0fb14 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog-members.html index 268c0fb6..84beae9b 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog-members.html @@ -93,12 +93,8 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1KeyUploadDia KeyUploadDialog(const KeyIdArgsListPtr &keys_ids, QWidget *parent)GpgFrontend::UI::KeyUploadDialogexplicit m_key_data_ (defined in GpgFrontend::UI::KeyUploadDialog)GpgFrontend::UI::KeyUploadDialogprivate m_keys_ (defined in GpgFrontend::UI::KeyUploadDialog)GpgFrontend::UI::KeyUploadDialogprivate - movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected - name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - parent_pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - parent_size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected + name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate + pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate slot_restore_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot slot_save_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog.html index 15e919fb..6036ae5d 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog.html @@ -97,9 +97,9 @@ Inheritance diagram for GpgFrontend::UI::KeyUploadDialog:
Inheritance graph
- - - + + +
@@ -107,14 +107,14 @@ Collaboration diagram for GpgFrontend::UI::KeyUploadDialog:
Collaboration graph
- - - - - - - - + + + + + + + +
@@ -149,16 +149,6 @@ KeyListPtr  -
m_keys_ QByteArray m_key_data_
 
- - - - - -

-Additional Inherited Members

- Protected Member Functions inherited from GpgFrontend::UI::GeneralDialog
-void setPosCenterOfScreen ()
 
-void movePosition2CenterOfParent ()
 

Constructor & Destructor Documentation

@@ -237,7 +227,7 @@ void movePosition2CenterOf -

References GpgFrontend::UI::SettingsObject::Check().

+

References GpgFrontend::SingletonFunctionObject< GlobalSettingStation >::GetInstance(), and GpgFrontend::GlobalSettingStation::GetUISettings().

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.map index 265cd32c..74ef0e96 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.map @@ -1,10 +1,10 @@ - - - - - - - - + + + + + + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.md5 index 156a4a97..01f136a6 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.md5 @@ -1 +1 @@ -d65271b0dbfc56b846a5cf651494e3e4 \ No newline at end of file +536919c5e4e874457a13f6a37f29b632 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.png index 6cf055a9..3f860281 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.map index 5d3a29e4..49660a23 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.map @@ -1,5 +1,5 @@ - - - + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.md5 index aa0a0109..be761b16 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.md5 @@ -1 +1 @@ -796bc31420fe54e26b8d2dde87fe0b34 \ No newline at end of file +4254ec6c340a0f7001c19ac2c896a7f3 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.png index a85df638..03327a5f 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1MainWindow.html b/docs/html/classGpgFrontend_1_1UI_1_1MainWindow.html index cc563a62..61653b89 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1MainWindow.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1MainWindow.html @@ -111,29 +111,29 @@ Collaboration diagram for GpgFrontend::UI::MainWindow:
Collaboration graph
- - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + +
@@ -185,8 +185,8 @@ Protected Member Functions - - + +
void closeEvent (QCloseEvent *event) override
 
- Protected Member Functions inherited from GpgFrontend::UI::GeneralMainWindow
void closeEvent (QCloseEvent *event) override
 
void closeEvent (QCloseEvent *event)
 
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.map index 7380c150..0850c019 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.map @@ -1,25 +1,25 @@ - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.md5 index 271a8280..c792ba38 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.md5 @@ -1 +1 @@ -377d29c8572acee31bde4a93d8af5417 \ No newline at end of file +ad1c8910cd2d0cd99ac9a3f7e225394f \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.png index 0a74d667..c1f63d2c 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html b/docs/html/classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html index 8aa6a848..68dec87b 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html @@ -200,7 +200,7 @@ std::string  +int32_t  @@ -251,7 +251,7 @@ bool  - - - - - - - + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog.html index 379c8dc9..b2cabcff 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog.html @@ -96,9 +96,9 @@ Inheritance diagram for GpgFrontend::UI::QuitDialog:
Inheritance graph
- - - + + +
@@ -106,11 +106,11 @@ Collaboration diagram for GpgFrontend::UI::QuitDialog:
Collaboration graph
- - - - - + + + + +

Private Slots

charset_name_< std::string language_name_
 
-int32_t charset_confidence_ {}
charset_confidence_
 
bool is_crlf_ = false
is_crlf_ = false< -

References GpgFrontend::UI::SettingsObject::Check(), and full_file_path_.

+

References full_file_path_.

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog-members.html index 95f2f5bc..f88ee1d1 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog-members.html @@ -94,13 +94,9 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1QuitDialog.h
GetTabIdsToSave()GpgFrontend::UI::QuitDialog
IsDiscarded() constGpgFrontend::UI::QuitDialog
m_fileList_ (defined in GpgFrontend::UI::QuitDialog)GpgFrontend::UI::QuitDialogprivate
movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
parent_pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
parent_size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
QuitDialog(QWidget *parent, const QHash< int, QString > &unsavedDocs)GpgFrontend::UI::QuitDialog
setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
QuitDialog(QWidget *parent, const QHash< int, QString > &unsavedDocs)GpgFrontend::UI::QuitDialog
size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
slot_my_discard() (defined in GpgFrontend::UI::QuitDialog)GpgFrontend::UI::QuitDialogprivateslot
slot_restore_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot
@@ -142,16 +142,6 @@ bool  -
discarded_ QTableWidget * m_fileList_
 
- - - - - -

-Additional Inherited Members

- Protected Member Functions inherited from GpgFrontend::UI::GeneralDialog
-void setPosCenterOfScreen ()
 
-void movePosition2CenterOfParent ()
 

Constructor & Destructor Documentation

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.map index 2cbab8d1..a2adf4d5 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.map @@ -1,7 +1,7 @@ - - - - - + + + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.md5 index ce412043..25b951a6 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.md5 @@ -1 +1 @@ -70bae2d13c2dd62cb47a13069d43d9ac \ No newline at end of file +2970533a01edf9187ce8fcebc52b280b \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.png index e7b35858..cb45cea6 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.map index 5c376d89..1e5b9f10 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.map @@ -1,5 +1,5 @@ - - - + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.md5 index 02cfda70..f546e11a 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.md5 @@ -1 +1 @@ -869911f60ff3cc28cf90e701bab22ea6 \ No newline at end of file +e65eda0cee5f9600190220947077c599 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.png index 90d82790..209af80b 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog-members.html index 7301174c..d77d09d4 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog-members.html @@ -96,14 +96,10 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1SettingsDial get_restart_needed() constGpgFrontend::UI::SettingsDialogprivate key_server_tab_ (defined in GpgFrontend::UI::SettingsDialog)GpgFrontend::UI::SettingsDialog ListLanguages()GpgFrontend::UI::SettingsDialogstatic - movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected - name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - network_tab_ (defined in GpgFrontend::UI::SettingsDialog)GpgFrontend::UI::SettingsDialog - parent_pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - parent_size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - restart_needed_ (defined in GpgFrontend::UI::SettingsDialog)GpgFrontend::UI::SettingsDialogprivate - setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected + name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate + network_tab_ (defined in GpgFrontend::UI::SettingsDialog)GpgFrontend::UI::SettingsDialog + pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate + restart_needed_ (defined in GpgFrontend::UI::SettingsDialog)GpgFrontend::UI::SettingsDialogprivate SettingsDialog(QWidget *parent=nullptr)GpgFrontend::UI::SettingsDialogexplicit SignalRestartNeeded(bool needed)GpgFrontend::UI::SettingsDialogsignal size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog.html index a6f0ec51..02dce97b 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog.html @@ -101,9 +101,9 @@ Inheritance diagram for GpgFrontend::UI::SettingsDialog:
Inheritance graph
- - - + + +
@@ -111,35 +111,34 @@ Collaboration diagram for GpgFrontend::UI::SettingsDialog:
Collaboration graph
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + +
@@ -205,16 +204,6 @@ QDialogButtonBox *  -
button_
bool restart_needed_ {}
 
- - - - - -

-Additional Inherited Members

- Protected Member Functions inherited from GpgFrontend::UI::GeneralDialog
-void setPosCenterOfScreen ()
 
-void movePosition2CenterOfParent ()
 

Constructor & Destructor Documentation

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.map index a5f5a301..30326ae5 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.map @@ -1,31 +1,30 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.md5 index 743211f9..f36685f5 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.md5 @@ -1 +1 @@ -6e07a064ebcdbf25c754bd3433c3a5fa \ No newline at end of file +f5b07123ecce859ce25ed23f6771d107 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.png index d89b0e1e..67cc1f01 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.map index 0e71f192..02ccdaa1 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.map @@ -1,5 +1,5 @@ - - - + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.md5 index 2194d42a..1045bed6 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.md5 @@ -1 +1 @@ -1065b289d536711a5ff4764bfaeffef0 \ No newline at end of file +39f5e6218ae3c7f9f8c5a1b229b15b16 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.png index 2f4ff6dd..00eb74bf 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SettingsObject.html b/docs/html/classGpgFrontend_1_1UI_1_1SettingsObject.html index e45b558d..706201a5 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SettingsObject.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1SettingsObject.html @@ -290,7 +290,7 @@ std::string settings_name_

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

-

Referenced by GpgFrontend::UI::KeyServerImportDialog::create_comboBox(), GpgFrontend::UI::PlainTextEditorPage::PlainTextEditorPage(), GpgFrontend::UI::InfoBoardWidget::SetInfoBoard(), GpgFrontend::UI::AppearanceTab::SetSettings(), GpgFrontend::UI::KeyserverTab::SetSettings(), GpgFrontend::UI::MainWindow::slot_open_settings_dialog(), GpgFrontend::UI::KeyUploadDialog::slot_upload_key_to_server(), GpgFrontend::UI::KeyServerImportDialog::SlotImport(), and GpgFrontend::UI::CommonUtils::SlotImportKeyFromKeyServer().

+

Referenced by GpgFrontend::UI::KeyServerImportDialog::create_comboBox(), GpgFrontend::UI::InfoBoardWidget::SetInfoBoard(), GpgFrontend::UI::AppearanceTab::SetSettings(), GpgFrontend::UI::KeyserverTab::SetSettings(), GpgFrontend::UI::MainWindow::slot_open_settings_dialog(), GpgFrontend::UI::KeyServerImportDialog::SlotImport(), and GpgFrontend::UI::CommonUtils::SlotImportKeyFromKeyServer().

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker-members.html b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker-members.html index 7da6d388..0c4e478d 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker-members.html @@ -94,12 +94,8 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1SignersPicke GetCheckedSigners()GpgFrontend::UI::SignersPicker GetStatus() constGpgFrontend::UI::SignersPicker key_list_ (defined in GpgFrontend::UI::SignersPicker)GpgFrontend::UI::SignersPickerprivate - movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected - name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - parent_pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - parent_size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected + name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate + pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate SignersPicker(QWidget *parent=nullptr)GpgFrontend::UI::SignersPickerexplicit size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate slot_restore_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker.html b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker.html index b80949cf..b314b414 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker.html @@ -95,9 +95,9 @@ Inheritance diagram for GpgFrontend::UI::SignersPicker:
Inheritance graph
- - - + + +
@@ -105,26 +105,26 @@ Collaboration diagram for GpgFrontend::UI::SignersPicker:
Collaboration graph
- - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + +
@@ -150,16 +150,6 @@ Private Attributes -
bool accepted_ = false
 
- - - - - -

-Additional Inherited Members

- Protected Member Functions inherited from GpgFrontend::UI::GeneralDialog
-void setPosCenterOfScreen ()
 
-void movePosition2CenterOfParent ()
 

Constructor & Destructor Documentation

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.map index f6a76c29..227033e4 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.map @@ -1,22 +1,22 @@ - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.md5 index 56f6442e..4ed00e59 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.md5 @@ -1 +1 @@ -76d93a67b61b213310f5c6bd3da1e244 \ No newline at end of file +71d4873e2e8d1cadc35992cb787e029d \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.png index 33a934b4..2f4bcd72 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.map index 09017b32..8a32ece5 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.map @@ -1,5 +1,5 @@ - - - + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.md5 index 2f473d66..77c6040f 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.md5 @@ -1 +1 @@ -a0fd39801f72025c7b91047f1aa3fec1 \ No newline at end of file +86f11a0450caeb0170b4c4c93bd734a1 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.png index 5f39057e..d08a00fc 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog-members.html index 971511d4..ded760cd 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog-members.html @@ -103,14 +103,10 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1SubkeyGenera key_usage_check_boxes_GpgFrontend::UI::SubkeyGenerateDialogprivate key_usage_group_box_ (defined in GpgFrontend::UI::SubkeyGenerateDialog)GpgFrontend::UI::SubkeyGenerateDialogprivate max_date_time_ (defined in GpgFrontend::UI::SubkeyGenerateDialog)GpgFrontend::UI::SubkeyGenerateDialogprivate - movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected - name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - parent_pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - parent_size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - refresh_widgets_state()GpgFrontend::UI::SubkeyGenerateDialogprivate - set_signal_slot()GpgFrontend::UI::SubkeyGenerateDialogprivate - setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected + name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate + pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate + refresh_widgets_state()GpgFrontend::UI::SubkeyGenerateDialogprivate + set_signal_slot()GpgFrontend::UI::SubkeyGenerateDialogprivate SignalSubKeyGenerated() (defined in GpgFrontend::UI::SubkeyGenerateDialog)GpgFrontend::UI::SubkeyGenerateDialogsignal size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate slot_activated_key_type(int index)GpgFrontend::UI::SubkeyGenerateDialogprivateslot diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html index 175a9570..fb7dafd4 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html @@ -98,8 +98,8 @@ Inheritance diagram for GpgFrontend::UI::SubkeyGenerateDialog:
Inheritance graph
- - + +
@@ -108,19 +108,18 @@ Collaboration diagram for GpgFrontend::UI::SubkeyGenerateDialog:
Collaboration graph
- - + + - - - - - - - - + + + + + + +
@@ -212,16 +211,6 @@ std::vector< QCheckBox * >  -
QDateTime max_date_time_
 
- - - - - -

-Additional Inherited Members

- Protected Member Functions inherited from GpgFrontend::UI::GeneralDialog
-void setPosCenterOfScreen ()
 
-void movePosition2CenterOfParent ()
 

Constructor & Destructor Documentation

@@ -298,7 +287,7 @@ void movePosition2CenterOf

Create a basic info group box object.

Returns
QGroupBox*
-

References date_edit_, error_label_, expire_check_box_, GpgFrontend::GenKeyInfo::GetSupportedSubkeyAlgo(), key_size_spin_box_, and key_type_combo_box_.

+

References date_edit_, error_label_, expire_check_box_, GpgFrontend::GenKeyInfo::GetSupportedKeyAlgo(), key_size_spin_box_, and key_type_combo_box_.

Referenced by SubkeyGenerateDialog().

@@ -396,7 +385,7 @@ void movePosition2CenterOf -

References refresh_widgets_state().

+

References key_type_combo_box_, and refresh_widgets_state().

Referenced by set_signal_slot().

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.map index 195d15e3..bd8ab752 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.map @@ -1,15 +1,14 @@ - - + + - - - - - - - - + + + + + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.md5 index 882cd2a0..f70f1c3c 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.md5 @@ -1 +1 @@ -1d14b0c5da2ecc14650d44f233ce49af \ No newline at end of file +e1a77474fedf49c94b376d9ab8a9eaac \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.png index f4e252ff..db9e44d0 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.map index 87e85466..ace98fb9 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.map @@ -1,5 +1,5 @@ - - + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.md5 index f1918935..654a1e88 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.md5 @@ -1 +1 @@ -ff9f4954b360f3489226ed12a5727f4a \ No newline at end of file +be2f55a4e0cda81b6aee3bb6497f1534 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.png index e580dee3..6332d132 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html index 46181919..eed6de21 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html @@ -105,24 +105,24 @@ Collaboration diagram for GpgFrontend::UI::VerifyDetailsDialog:
Collaboration graph
- - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + +
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.map index 1e330c78..e52879c1 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.map @@ -1,20 +1,20 @@ - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.md5 index dd304dec..d2f78a3e 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.md5 @@ -1 +1 @@ -8487150d302572007c32ad7c4dfbea0c \ No newline at end of file +7032c5294abe94b14434475b5e0eba09 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.png index 13e5b4a1..bd8cd5cf 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.png differ diff --git a/docs/html/functions_c.html b/docs/html/functions_c.html index 3cd5dd89..d9c9e536 100644 --- a/docs/html/functions_c.html +++ b/docs/html/functions_c.html @@ -117,7 +117,7 @@ $(document).ready(function(){initNavTree('functions_c.html',''); initResizable() : GpgFrontend::UI::MainWindow
  • closeEvent() -: GpgFrontend::UI::GeneralMainWindow +: GpgFrontend::UI::GeneralMainWindow , GpgFrontend::UI::MainWindow
  • CloseNoteByClass() diff --git a/docs/html/functions_func_c.html b/docs/html/functions_func_c.html index 4ad086ac..72f1cec1 100644 --- a/docs/html/functions_func_c.html +++ b/docs/html/functions_func_c.html @@ -105,7 +105,7 @@ $(document).ready(function(){initNavTree('functions_func_c.html',''); initResiza : GpgFrontend::UI::MainWindow
  • closeEvent() -: GpgFrontend::UI::GeneralMainWindow +: GpgFrontend::UI::GeneralMainWindow , GpgFrontend::UI::MainWindow
  • CloseNoteByClass() diff --git a/docs/html/functions_func_g.html b/docs/html/functions_func_g.html index b18ca022..82a13857 100644 --- a/docs/html/functions_func_g.html +++ b/docs/html/functions_func_g.html @@ -380,16 +380,16 @@ $(document).ready(function(){initNavTree('functions_func_g.html',''); initResiza : GpgFrontend::GpgSignature
  • GetSupportedKeyAlgo() -: GpgFrontend::GenKeyInfo +: GpgFrontend::GenKeyInfo
  • GetSupportedKeyAlgoStandalone() -: GpgFrontend::GenKeyInfo +: GpgFrontend::GenKeyInfo
  • GetSupportedSubkeyAlgo() -: GpgFrontend::GenKeyInfo +: GpgFrontend::GenKeyInfo
  • GetSupportedSubkeyAlgoStandalone() -: GpgFrontend::GenKeyInfo +: GpgFrontend::GenKeyInfo
  • GetTabIdsToSave() : GpgFrontend::UI::QuitDialog diff --git a/docs/html/functions_func_s.html b/docs/html/functions_func_s.html index 2c78ce3a..6c1a5275 100644 --- a/docs/html/functions_func_s.html +++ b/docs/html/functions_func_s.html @@ -108,7 +108,7 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza : GpgFrontend::GpgResultAnalyse
  • SetAlgo() -: GpgFrontend::GenKeyInfo +: GpgFrontend::GenKeyInfo
  • SetAllowAuthentication() : GpgFrontend::GenKeyInfo diff --git a/docs/html/functions_g.html b/docs/html/functions_g.html index 3dcdf79b..06025243 100644 --- a/docs/html/functions_g.html +++ b/docs/html/functions_g.html @@ -380,16 +380,16 @@ $(document).ready(function(){initNavTree('functions_g.html',''); initResizable() : GpgFrontend::GpgSignature
  • GetSupportedKeyAlgo() -: GpgFrontend::GenKeyInfo +: GpgFrontend::GenKeyInfo
  • GetSupportedKeyAlgoStandalone() -: GpgFrontend::GenKeyInfo +: GpgFrontend::GenKeyInfo
  • GetSupportedSubkeyAlgo() -: GpgFrontend::GenKeyInfo +: GpgFrontend::GenKeyInfo
  • GetSupportedSubkeyAlgoStandalone() -: GpgFrontend::GenKeyInfo +: GpgFrontend::GenKeyInfo
  • GetTabIdsToSave() : GpgFrontend::UI::QuitDialog diff --git a/docs/html/functions_s.html b/docs/html/functions_s.html index eecad126..0afa9812 100644 --- a/docs/html/functions_s.html +++ b/docs/html/functions_s.html @@ -117,7 +117,7 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable() : GpgFrontend::GpgResultAnalyse
  • SetAlgo() -: GpgFrontend::GenKeyInfo +: GpgFrontend::GenKeyInfo
  • SetAllowAuthentication() : GpgFrontend::GenKeyInfo diff --git a/docs/html/navtreedata.js b/docs/html/navtreedata.js index 1e1a759e..8f5b2c97 100644 --- a/docs/html/navtreedata.js +++ b/docs/html/navtreedata.js @@ -53,12 +53,12 @@ var NAVTREE = var NAVTREEINDEX = [ "AboutDialog_8h_source.html", -"classGpgFrontend_1_1GpgConstants.html#a36861cbbc85a53f4a42fa07153aa0150", -"classGpgFrontend_1_1GpgTOFUInfo.html#a681046a3916d0d0cdcf0852bfa76fdb0", -"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a5c0bb4c6847846d57ca7524d5f5e4d53", -"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#aab240016c10ecf575965108751fc0ff8", -"classGpgFrontend_1_1UI_1_1MainWindow.html#af77f66b6b869f6ddb3d2caa3bc40bb09", -"functions_func_g.html" +"classGpgFrontend_1_1GpgConstants.html#a53310750d959947f316c793504e6eac1", +"classGpgFrontend_1_1GpgTOFUInfo.html#a7607934f767ac1920e6bf6c363c97402", +"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a42d1bc5a70f0e81cb49c88eb23544255", +"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a93abe5c0467c7c4a29e0c45437a10732", +"classGpgFrontend_1_1UI_1_1MainWindow.html#af763a506aed7d0fb2125d1859583b853", +"functions_func_f.html" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/docs/html/navtreeindex0.js b/docs/html/navtreeindex0.js index 9aa9ffd0..ca432bd4 100644 --- a/docs/html/navtreeindex0.js +++ b/docs/html/navtreeindex0.js @@ -138,74 +138,73 @@ var NAVTREEINDEX0 = "classGpgFrontend_1_1FileOperator.html#a51121c94dc32a83d7073fbe7138b603b":[2,0,0,7,4], "classGpgFrontend_1_1FileOperator.html#ad4424bce4f22ae75a16c542dfb4ddf0a":[2,0,0,7,2], "classGpgFrontend_1_1GenKeyInfo.html":[2,0,0,34], -"classGpgFrontend_1_1GenKeyInfo.html#a01baca0288fe2c4574a8b3d9ae8552d8":[2,0,0,34,62], -"classGpgFrontend_1_1GenKeyInfo.html#a03230bfec48cfdf9d6f615c08a07b717":[2,0,0,34,49], -"classGpgFrontend_1_1GenKeyInfo.html#a06f95a8d26da79bcbe7d51e266879a94":[2,0,0,34,23], -"classGpgFrontend_1_1GenKeyInfo.html#a0b1612421148b86919b7130ed148ca51":[2,0,0,34,12], -"classGpgFrontend_1_1GenKeyInfo.html#a0bda4b4161d805582869ec0e56ade07c":[2,0,0,34,7], -"classGpgFrontend_1_1GenKeyInfo.html#a168d6fe5252812f5984ba6d8046c7741":[2,0,0,34,15], -"classGpgFrontend_1_1GenKeyInfo.html#a1944c0da5cc25ca3c0df404d5b9a07e9":[2,0,0,34,67], -"classGpgFrontend_1_1GenKeyInfo.html#a1a01518b24d40d95e187ef73f4dcd52a":[2,0,0,34,35], -"classGpgFrontend_1_1GenKeyInfo.html#a2226ccb2b0a53b7a8d2d11507efe27d6":[2,0,0,34,46], -"classGpgFrontend_1_1GenKeyInfo.html#a28ed8a65243e5bc69403305752c2cdc9":[2,0,0,34,24], -"classGpgFrontend_1_1GenKeyInfo.html#a2a2128871ff307439be30105d3845be9":[2,0,0,34,30], -"classGpgFrontend_1_1GenKeyInfo.html#a2f156598d0f080ddf219f28f47c5addf":[2,0,0,34,51], -"classGpgFrontend_1_1GenKeyInfo.html#a34392244d8cd477a590d02f02567a665":[2,0,0,34,58], -"classGpgFrontend_1_1GenKeyInfo.html#a34eca1662ba8d4645751f3ee66582b04":[2,0,0,34,1], -"classGpgFrontend_1_1GenKeyInfo.html#a3885a3e81bdae51d324d4265403d664c":[2,0,0,34,55], -"classGpgFrontend_1_1GenKeyInfo.html#a3d8347402309098d8d41e97b38a9336d":[2,0,0,34,50], -"classGpgFrontend_1_1GenKeyInfo.html#a3e8a1d4943b283a6c6042e4e0bba02a8":[2,0,0,34,56], -"classGpgFrontend_1_1GenKeyInfo.html#a3ed156b4414de8696db53e0539627743":[2,0,0,34,48], -"classGpgFrontend_1_1GenKeyInfo.html#a40a42ad975499566de124296c19e6c55":[2,0,0,34,29], -"classGpgFrontend_1_1GenKeyInfo.html#a48c113454bd67cd0d918da0469924727":[2,0,0,34,57], -"classGpgFrontend_1_1GenKeyInfo.html#a4927a9091fa2b2f68f6b60ce78ab2fe9":[2,0,0,34,6], -"classGpgFrontend_1_1GenKeyInfo.html#a4d1962deb33d9848b9b43343bfa55045":[2,0,0,34,65], -"classGpgFrontend_1_1GenKeyInfo.html#a4ee4a0659e76376d9bfc527c334392e1":[2,0,0,34,17], -"classGpgFrontend_1_1GenKeyInfo.html#a4fa1fb60b3e623d3e96d45b8156b4819":[2,0,0,34,53], -"classGpgFrontend_1_1GenKeyInfo.html#a54aa9ef123265ff945af6a4ec091fd90":[2,0,0,34,63], -"classGpgFrontend_1_1GenKeyInfo.html#a6102b91607b07598e1c3f262d66bbcdd":[2,0,0,34,47], -"classGpgFrontend_1_1GenKeyInfo.html#a656c81d56f77350184f9a94db1a3ce05":[2,0,0,34,37], -"classGpgFrontend_1_1GenKeyInfo.html#a65ebc487e0e64c325f65474c812615f7":[2,0,0,34,41], -"classGpgFrontend_1_1GenKeyInfo.html#a6819b0ca3ef7712b85ae320030cde023":[2,0,0,34,16], -"classGpgFrontend_1_1GenKeyInfo.html#a6a65ba347156373b6cf98eb8e851d28d":[2,0,0,34,2], -"classGpgFrontend_1_1GenKeyInfo.html#a6e54dd17a9e16a80e100a1a367f6e41c":[2,0,0,34,54], -"classGpgFrontend_1_1GenKeyInfo.html#a742e5bcc903e8e01b69e568659fe3e20":[2,0,0,34,59], -"classGpgFrontend_1_1GenKeyInfo.html#a76721be08c18907762ba6f6ccc4afc8a":[2,0,0,34,4], -"classGpgFrontend_1_1GenKeyInfo.html#a7b8c6d162f1cb8a74e3ff150908270f5":[2,0,0,34,61], -"classGpgFrontend_1_1GenKeyInfo.html#a7eda73ff0625a635f041365c21531c60":[2,0,0,34,0], -"classGpgFrontend_1_1GenKeyInfo.html#a848181796a99bec8d32dc5eac240ee01":[2,0,0,34,28], -"classGpgFrontend_1_1GenKeyInfo.html#a864407216cbdbef9e7b35e6be694d3ef":[2,0,0,34,43], -"classGpgFrontend_1_1GenKeyInfo.html#a890ee16ef6088570360a073a6b531c89":[2,0,0,34,9], -"classGpgFrontend_1_1GenKeyInfo.html#a947886456f5699241b1c1b9332e4b29e":[2,0,0,34,36], -"classGpgFrontend_1_1GenKeyInfo.html#a965014232f6de22c6d33320231ca4454":[2,0,0,34,34], -"classGpgFrontend_1_1GenKeyInfo.html#a9e3cec33031de7d3d2728bd6883caece":[2,0,0,34,66], -"classGpgFrontend_1_1GenKeyInfo.html#aa3bfeda7fc7c83dc8d48ee2b80780c3a":[2,0,0,34,38], -"classGpgFrontend_1_1GenKeyInfo.html#aa8fdbf7db3cb7e7a013fcf9c18cf069a":[2,0,0,34,45], -"classGpgFrontend_1_1GenKeyInfo.html#aabdf981c65a0efde1e8905441b9b9c87":[2,0,0,34,18], -"classGpgFrontend_1_1GenKeyInfo.html#aac51d251682ed1bc1090416ebfeba4de":[2,0,0,34,32], -"classGpgFrontend_1_1GenKeyInfo.html#aaf8ab7c6564a2836837a537111d6f5b4":[2,0,0,34,20], -"classGpgFrontend_1_1GenKeyInfo.html#ab97cbf3c5d6e30a6c85e8ca82b1ccfe3":[2,0,0,34,64], -"classGpgFrontend_1_1GenKeyInfo.html#ab9f9775fd6363fba372bd0bcc2532892":[2,0,0,34,3], -"classGpgFrontend_1_1GenKeyInfo.html#abb3e1366dca0288bdc42123e55d77335":[2,0,0,34,8], -"classGpgFrontend_1_1GenKeyInfo.html#ac0dbb2d89b1e5f9b272679ba3f24314e":[2,0,0,34,13], -"classGpgFrontend_1_1GenKeyInfo.html#ac211a7a615805ae97ff284b46abfeab7":[2,0,0,34,10], -"classGpgFrontend_1_1GenKeyInfo.html#ac5f52f74566618c71a29bdc5e70fce2e":[2,0,0,34,33], -"classGpgFrontend_1_1GenKeyInfo.html#ac629312630a78e32ee36ba0ff30bc9ff":[2,0,0,34,5], -"classGpgFrontend_1_1GenKeyInfo.html#acd9f7742b739e1db60bd50489690dec1":[2,0,0,34,39], -"classGpgFrontend_1_1GenKeyInfo.html#ad04a906300bea028c6fb6b1b2da1d149":[2,0,0,34,22], -"classGpgFrontend_1_1GenKeyInfo.html#ad47ceeb1ccfa8862843034e51b4d8be7":[2,0,0,34,19], -"classGpgFrontend_1_1GenKeyInfo.html#ad899d9ac85bb4fe39613b3207fd676c6":[2,0,0,34,60], -"classGpgFrontend_1_1GenKeyInfo.html#ad972292c408cb83c08e739327795a5f0":[2,0,0,34,26], -"classGpgFrontend_1_1GenKeyInfo.html#adbcddd0fa0a273f9b77fe1297633dabc":[2,0,0,34,21], -"classGpgFrontend_1_1GenKeyInfo.html#adcd9c4f3e75f989810988e0bc81d401f":[2,0,0,34,31], -"classGpgFrontend_1_1GenKeyInfo.html#ae461a553176ad1ab0c1121ea6de6c8c2":[2,0,0,34,11], -"classGpgFrontend_1_1GenKeyInfo.html#ae744395012e4dcb9734ad5a30aa8ed75":[2,0,0,34,40], -"classGpgFrontend_1_1GenKeyInfo.html#aea247381c21896f5371bb813ca665329":[2,0,0,34,42], -"classGpgFrontend_1_1GenKeyInfo.html#aed17aae3218f74cea7273c9dd853a539":[2,0,0,34,52], -"classGpgFrontend_1_1GenKeyInfo.html#aeef7697c91b5b5998088979e09332380":[2,0,0,34,27], -"classGpgFrontend_1_1GenKeyInfo.html#af6a79124a4571ff7f37c1c5e6c1a9415":[2,0,0,34,25], -"classGpgFrontend_1_1GenKeyInfo.html#afb8315b6612c64b3921b72df98ebcc74":[2,0,0,34,14], -"classGpgFrontend_1_1GenKeyInfo.html#afe1760d4ead397f6096925290a38e1a4":[2,0,0,34,44], +"classGpgFrontend_1_1GenKeyInfo.html#a01baca0288fe2c4574a8b3d9ae8552d8":[2,0,0,34,61], +"classGpgFrontend_1_1GenKeyInfo.html#a03230bfec48cfdf9d6f615c08a07b717":[2,0,0,34,48], +"classGpgFrontend_1_1GenKeyInfo.html#a06f95a8d26da79bcbe7d51e266879a94":[2,0,0,34,22], +"classGpgFrontend_1_1GenKeyInfo.html#a0b1612421148b86919b7130ed148ca51":[2,0,0,34,11], +"classGpgFrontend_1_1GenKeyInfo.html#a0bda4b4161d805582869ec0e56ade07c":[2,0,0,34,6], +"classGpgFrontend_1_1GenKeyInfo.html#a185c7be801854f81879351a6c4dd9071":[2,0,0,34,12], +"classGpgFrontend_1_1GenKeyInfo.html#a1944c0da5cc25ca3c0df404d5b9a07e9":[2,0,0,34,66], +"classGpgFrontend_1_1GenKeyInfo.html#a1a01518b24d40d95e187ef73f4dcd52a":[2,0,0,34,34], +"classGpgFrontend_1_1GenKeyInfo.html#a2226ccb2b0a53b7a8d2d11507efe27d6":[2,0,0,34,45], +"classGpgFrontend_1_1GenKeyInfo.html#a28ed8a65243e5bc69403305752c2cdc9":[2,0,0,34,23], +"classGpgFrontend_1_1GenKeyInfo.html#a2a2128871ff307439be30105d3845be9":[2,0,0,34,29], +"classGpgFrontend_1_1GenKeyInfo.html#a2f156598d0f080ddf219f28f47c5addf":[2,0,0,34,50], +"classGpgFrontend_1_1GenKeyInfo.html#a310fd0cdac03d0b0a7fde006105866d6":[2,0,0,34,15], +"classGpgFrontend_1_1GenKeyInfo.html#a34392244d8cd477a590d02f02567a665":[2,0,0,34,57], +"classGpgFrontend_1_1GenKeyInfo.html#a34eca1662ba8d4645751f3ee66582b04":[2,0,0,34,0], +"classGpgFrontend_1_1GenKeyInfo.html#a378ea10385ab401bea45a7edb3df122d":[2,0,0,34,30], +"classGpgFrontend_1_1GenKeyInfo.html#a3885a3e81bdae51d324d4265403d664c":[2,0,0,34,54], +"classGpgFrontend_1_1GenKeyInfo.html#a3d8347402309098d8d41e97b38a9336d":[2,0,0,34,49], +"classGpgFrontend_1_1GenKeyInfo.html#a3e8a1d4943b283a6c6042e4e0bba02a8":[2,0,0,34,55], +"classGpgFrontend_1_1GenKeyInfo.html#a3ed156b4414de8696db53e0539627743":[2,0,0,34,47], +"classGpgFrontend_1_1GenKeyInfo.html#a40a42ad975499566de124296c19e6c55":[2,0,0,34,28], +"classGpgFrontend_1_1GenKeyInfo.html#a48c113454bd67cd0d918da0469924727":[2,0,0,34,56], +"classGpgFrontend_1_1GenKeyInfo.html#a4927a9091fa2b2f68f6b60ce78ab2fe9":[2,0,0,34,5], +"classGpgFrontend_1_1GenKeyInfo.html#a4d1962deb33d9848b9b43343bfa55045":[2,0,0,34,64], +"classGpgFrontend_1_1GenKeyInfo.html#a4ee4a0659e76376d9bfc527c334392e1":[2,0,0,34,16], +"classGpgFrontend_1_1GenKeyInfo.html#a4fa1fb60b3e623d3e96d45b8156b4819":[2,0,0,34,52], +"classGpgFrontend_1_1GenKeyInfo.html#a54aa9ef123265ff945af6a4ec091fd90":[2,0,0,34,62], +"classGpgFrontend_1_1GenKeyInfo.html#a6102b91607b07598e1c3f262d66bbcdd":[2,0,0,34,46], +"classGpgFrontend_1_1GenKeyInfo.html#a656c81d56f77350184f9a94db1a3ce05":[2,0,0,34,36], +"classGpgFrontend_1_1GenKeyInfo.html#a65ebc487e0e64c325f65474c812615f7":[2,0,0,34,40], +"classGpgFrontend_1_1GenKeyInfo.html#a6a65ba347156373b6cf98eb8e851d28d":[2,0,0,34,1], +"classGpgFrontend_1_1GenKeyInfo.html#a6e54dd17a9e16a80e100a1a367f6e41c":[2,0,0,34,53], +"classGpgFrontend_1_1GenKeyInfo.html#a742e5bcc903e8e01b69e568659fe3e20":[2,0,0,34,58], +"classGpgFrontend_1_1GenKeyInfo.html#a76721be08c18907762ba6f6ccc4afc8a":[2,0,0,34,3], +"classGpgFrontend_1_1GenKeyInfo.html#a7855d9fe9b6872ff08a60fe21640d07f":[2,0,0,34,14], +"classGpgFrontend_1_1GenKeyInfo.html#a7b8c6d162f1cb8a74e3ff150908270f5":[2,0,0,34,60], +"classGpgFrontend_1_1GenKeyInfo.html#a848181796a99bec8d32dc5eac240ee01":[2,0,0,34,27], +"classGpgFrontend_1_1GenKeyInfo.html#a864407216cbdbef9e7b35e6be694d3ef":[2,0,0,34,42], +"classGpgFrontend_1_1GenKeyInfo.html#a890ee16ef6088570360a073a6b531c89":[2,0,0,34,8], +"classGpgFrontend_1_1GenKeyInfo.html#a8b054a66cb0678af6c42090eea1518e4":[2,0,0,34,13], +"classGpgFrontend_1_1GenKeyInfo.html#a947886456f5699241b1c1b9332e4b29e":[2,0,0,34,35], +"classGpgFrontend_1_1GenKeyInfo.html#a965014232f6de22c6d33320231ca4454":[2,0,0,34,33], +"classGpgFrontend_1_1GenKeyInfo.html#a9e3cec33031de7d3d2728bd6883caece":[2,0,0,34,65], +"classGpgFrontend_1_1GenKeyInfo.html#aa3bfeda7fc7c83dc8d48ee2b80780c3a":[2,0,0,34,37], +"classGpgFrontend_1_1GenKeyInfo.html#aa8fdbf7db3cb7e7a013fcf9c18cf069a":[2,0,0,34,44], +"classGpgFrontend_1_1GenKeyInfo.html#aabdf981c65a0efde1e8905441b9b9c87":[2,0,0,34,17], +"classGpgFrontend_1_1GenKeyInfo.html#aac51d251682ed1bc1090416ebfeba4de":[2,0,0,34,31], +"classGpgFrontend_1_1GenKeyInfo.html#aaf8ab7c6564a2836837a537111d6f5b4":[2,0,0,34,19], +"classGpgFrontend_1_1GenKeyInfo.html#ab97cbf3c5d6e30a6c85e8ca82b1ccfe3":[2,0,0,34,63], +"classGpgFrontend_1_1GenKeyInfo.html#ab9f9775fd6363fba372bd0bcc2532892":[2,0,0,34,2], +"classGpgFrontend_1_1GenKeyInfo.html#abb3e1366dca0288bdc42123e55d77335":[2,0,0,34,7], +"classGpgFrontend_1_1GenKeyInfo.html#ac211a7a615805ae97ff284b46abfeab7":[2,0,0,34,9], +"classGpgFrontend_1_1GenKeyInfo.html#ac5f52f74566618c71a29bdc5e70fce2e":[2,0,0,34,32], +"classGpgFrontend_1_1GenKeyInfo.html#ac629312630a78e32ee36ba0ff30bc9ff":[2,0,0,34,4], +"classGpgFrontend_1_1GenKeyInfo.html#acd9f7742b739e1db60bd50489690dec1":[2,0,0,34,38], +"classGpgFrontend_1_1GenKeyInfo.html#ad04a906300bea028c6fb6b1b2da1d149":[2,0,0,34,21], +"classGpgFrontend_1_1GenKeyInfo.html#ad47ceeb1ccfa8862843034e51b4d8be7":[2,0,0,34,18], +"classGpgFrontend_1_1GenKeyInfo.html#ad899d9ac85bb4fe39613b3207fd676c6":[2,0,0,34,59], +"classGpgFrontend_1_1GenKeyInfo.html#ad972292c408cb83c08e739327795a5f0":[2,0,0,34,25], +"classGpgFrontend_1_1GenKeyInfo.html#adbcddd0fa0a273f9b77fe1297633dabc":[2,0,0,34,20], +"classGpgFrontend_1_1GenKeyInfo.html#ae461a553176ad1ab0c1121ea6de6c8c2":[2,0,0,34,10], +"classGpgFrontend_1_1GenKeyInfo.html#ae744395012e4dcb9734ad5a30aa8ed75":[2,0,0,34,39], +"classGpgFrontend_1_1GenKeyInfo.html#aea247381c21896f5371bb813ca665329":[2,0,0,34,41], +"classGpgFrontend_1_1GenKeyInfo.html#aed17aae3218f74cea7273c9dd853a539":[2,0,0,34,51], +"classGpgFrontend_1_1GenKeyInfo.html#aeef7697c91b5b5998088979e09332380":[2,0,0,34,26], +"classGpgFrontend_1_1GenKeyInfo.html#af6a79124a4571ff7f37c1c5e6c1a9415":[2,0,0,34,24], +"classGpgFrontend_1_1GenKeyInfo.html#afe1760d4ead397f6096925290a38e1a4":[2,0,0,34,43], "classGpgFrontend_1_1GlobalSettingStation.html":[2,0,0,8], "classGpgFrontend_1_1GlobalSettingStation.html#a0b3780564305e9b210d66ef377c21565":[2,0,0,8,6], "classGpgFrontend_1_1GlobalSettingStation.html#a14433405831283cd95091d741614d03b":[2,0,0,8,11], @@ -249,5 +248,6 @@ var NAVTREEINDEX0 = "classGpgFrontend_1_1GpgCommandExecutor.html#afca1c4b6a6c3758a834832768f52bbca":[2,0,0,10,1], "classGpgFrontend_1_1GpgConstants.html":[2,0,0,27], "classGpgFrontend_1_1GpgConstants.html#a237006d6db30c7e3f8de171210eb35f2":[2,0,0,27,1], -"classGpgFrontend_1_1GpgConstants.html#a2c92d804e331fea2a57cba3028aa51ae":[2,0,0,27,0] +"classGpgFrontend_1_1GpgConstants.html#a2c92d804e331fea2a57cba3028aa51ae":[2,0,0,27,0], +"classGpgFrontend_1_1GpgConstants.html#a36861cbbc85a53f4a42fa07153aa0150":[2,0,0,27,7] }; diff --git a/docs/html/navtreeindex1.js b/docs/html/navtreeindex1.js index 54aae7f5..e4ee608a 100644 --- a/docs/html/navtreeindex1.js +++ b/docs/html/navtreeindex1.js @@ -1,6 +1,5 @@ var NAVTREEINDEX1 = { -"classGpgFrontend_1_1GpgConstants.html#a36861cbbc85a53f4a42fa07153aa0150":[2,0,0,27,7], "classGpgFrontend_1_1GpgConstants.html#a53310750d959947f316c793504e6eac1":[2,0,0,27,6], "classGpgFrontend_1_1GpgConstants.html#a58558c2335021c7e6217dbd156d07705":[2,0,0,27,2], "classGpgFrontend_1_1GpgConstants.html#a7f8ee639c08d4b477e6ab6ec87500f9b":[2,0,0,27,5], @@ -109,14 +108,13 @@ var NAVTREEINDEX1 = "classGpgFrontend_1_1GpgKey.html#aadac1b776764ee9d0ca4f8bb9f9e0741":[2,0,0,37,33], "classGpgFrontend_1_1GpgKey.html#ac8b13b45e487cdc423b78d3017897f99":[2,0,0,37,21], "classGpgFrontend_1_1GpgKey.html#ac90afba6a5aec0bc2c0f1e01de417ec8":[2,0,0,37,7], -"classGpgFrontend_1_1GpgKey.html#ad1784bcc872f42b87e48bcfa40dab4cd":[2,0,0,37,42], "classGpgFrontend_1_1GpgKey.html#ad2440a2902c81192d5549fe951ddb130":[2,0,0,37,18], "classGpgFrontend_1_1GpgKey.html#adc22a349796af0ff5dd4499624b6d03d":[2,0,0,37,38], "classGpgFrontend_1_1GpgKey.html#ae1957e909d8dcbe48c5931d1cdff7a81":[2,0,0,37,1], "classGpgFrontend_1_1GpgKey.html#ae370e41a7ea7307fbf4d28e0f2a67e0c":[2,0,0,37,26], "classGpgFrontend_1_1GpgKey.html#ae58bc1fdcefaaf646f6b8740cb69eef6":[2,0,0,37,40], "classGpgFrontend_1_1GpgKey.html#aeb316f8728b10e966eed6f0291794eed":[2,0,0,37,6], -"classGpgFrontend_1_1GpgKey.html#aec4e7e1845073f23cf55dc660c69c44a":[2,0,0,37,43], +"classGpgFrontend_1_1GpgKey.html#aec4e7e1845073f23cf55dc660c69c44a":[2,0,0,37,42], "classGpgFrontend_1_1GpgKey.html#aefa0a44adb1b7c49553a85b545fdffe1":[2,0,0,37,28], "classGpgFrontend_1_1GpgKey.html#af72de794e24876b0e22a8d318ec0f8ad":[2,0,0,37,8], "classGpgFrontend_1_1GpgKey.html#afdffba6dfb6009a0b320623df7a26be0":[2,0,0,37,29], @@ -249,5 +247,7 @@ var NAVTREEINDEX1 = "classGpgFrontend_1_1GpgTOFUInfo.html#a34d1073bb25a8958e70016f3cd6b167f":[2,0,0,41,8], "classGpgFrontend_1_1GpgTOFUInfo.html#a471a08bc906d74699f394e34d2581b78":[2,0,0,41,5], "classGpgFrontend_1_1GpgTOFUInfo.html#a4e4ba35a4cb6b33fa0b9890ec374d1b3":[2,0,0,41,15], -"classGpgFrontend_1_1GpgTOFUInfo.html#a4f46d32bc9bf1a1a3bbc32461538a422":[2,0,0,41,4] +"classGpgFrontend_1_1GpgTOFUInfo.html#a4f46d32bc9bf1a1a3bbc32461538a422":[2,0,0,41,4], +"classGpgFrontend_1_1GpgTOFUInfo.html#a681046a3916d0d0cdcf0852bfa76fdb0":[2,0,0,41,9], +"classGpgFrontend_1_1GpgTOFUInfo.html#a746cbcf731af6b19ade42debbf1e2c8f":[2,0,0,41,11] }; diff --git a/docs/html/navtreeindex2.js b/docs/html/navtreeindex2.js index da003b09..ebdd24a9 100644 --- a/docs/html/navtreeindex2.js +++ b/docs/html/navtreeindex2.js @@ -1,7 +1,5 @@ var NAVTREEINDEX2 = { -"classGpgFrontend_1_1GpgTOFUInfo.html#a681046a3916d0d0cdcf0852bfa76fdb0":[2,0,0,41,9], -"classGpgFrontend_1_1GpgTOFUInfo.html#a746cbcf731af6b19ade42debbf1e2c8f":[2,0,0,41,11], "classGpgFrontend_1_1GpgTOFUInfo.html#a7607934f767ac1920e6bf6c363c97402":[2,0,0,41,13], "classGpgFrontend_1_1GpgTOFUInfo.html#a788a439b206882c6317162878e2fe0b8":[2,0,0,41,10], "classGpgFrontend_1_1GpgTOFUInfo.html#a80acb09347a74cc35776d58b9874cf37":[2,0,0,41,1], @@ -149,13 +147,20 @@ var NAVTREEINDEX2 = "classGpgFrontend_1_1UI_1_1AdvancedTab.html#a9e6aa8eb7800d9841101352062821f37":[2,0,0,1,23,2], "classGpgFrontend_1_1UI_1_1AdvancedTab.html#ac602aa3f6226e7325c10dc843764441b":[2,0,0,1,23,0], "classGpgFrontend_1_1UI_1_1AppearanceTab.html":[2,0,0,1,24], +"classGpgFrontend_1_1UI_1_1AppearanceTab.html#a01dfa2d7811180351d3e0d33667df23e":[2,0,0,1,24,13], +"classGpgFrontend_1_1UI_1_1AppearanceTab.html#a1b28a54fa3ffc5586132b6f5385f62cc":[2,0,0,1,24,4], +"classGpgFrontend_1_1UI_1_1AppearanceTab.html#a1d3e08ebb4a6c21164f25d74eaabe0eb":[2,0,0,1,24,7], "classGpgFrontend_1_1UI_1_1AppearanceTab.html#a2fed39a2657407fcdb37d2431ef28e56":[2,0,0,1,24,2], -"classGpgFrontend_1_1UI_1_1AppearanceTab.html#a58b3ece7ff069c33de73e658aa47cacc":[2,0,0,1,24,5], -"classGpgFrontend_1_1UI_1_1AppearanceTab.html#a9f546f16551f48c73ee9031dd0ad8720":[2,0,0,1,24,6], -"classGpgFrontend_1_1UI_1_1AppearanceTab.html#aaa3ec787dcd8fae1a14c2067deb9dd03":[2,0,0,1,24,4], +"classGpgFrontend_1_1UI_1_1AppearanceTab.html#a58b3ece7ff069c33de73e658aa47cacc":[2,0,0,1,24,10], +"classGpgFrontend_1_1UI_1_1AppearanceTab.html#aaa3ec787dcd8fae1a14c2067deb9dd03":[2,0,0,1,24,6], "classGpgFrontend_1_1UI_1_1AppearanceTab.html#aac8f47f96ca866256ea846800f3f8887":[2,0,0,1,24,1], +"classGpgFrontend_1_1UI_1_1AppearanceTab.html#ab9b4572e7e809fbf73435c0c2df7b9ad":[2,0,0,1,24,9], "classGpgFrontend_1_1UI_1_1AppearanceTab.html#abfca670540bc0409b9be4459ee6a3b6c":[2,0,0,1,24,0], "classGpgFrontend_1_1UI_1_1AppearanceTab.html#abff49b636449815a9ebff52f5c067712":[2,0,0,1,24,3], +"classGpgFrontend_1_1UI_1_1AppearanceTab.html#ac460ceea6d6841d6cf0a3c86be6f7d60":[2,0,0,1,24,12], +"classGpgFrontend_1_1UI_1_1AppearanceTab.html#ac8d285e5f3cceb1e6bb857d0487abc8b":[2,0,0,1,24,5], +"classGpgFrontend_1_1UI_1_1AppearanceTab.html#aed37292c07ba2ac20d72765b08b9a09b":[2,0,0,1,24,8], +"classGpgFrontend_1_1UI_1_1AppearanceTab.html#af5598180d11936e4b5fa2a57dd592093":[2,0,0,1,24,11], "classGpgFrontend_1_1UI_1_1ChoosePage.html":[2,0,0,1,33], "classGpgFrontend_1_1UI_1_1ChoosePage.html#a22bb223faa8f94e80b677b78b08e5d67":[2,0,0,1,33,3], "classGpgFrontend_1_1UI_1_1ChoosePage.html#a243a82d13267b7252844fd7691c703f0":[2,0,0,1,33,1], @@ -237,17 +242,12 @@ var NAVTREEINDEX2 = "classGpgFrontend_1_1UI_1_1FindWidget.html#aa019bd8b63ad1e79050e4428cfee62cf":[2,0,0,1,50,4], "classGpgFrontend_1_1UI_1_1FindWidget.html#af420832720942dd1e7cb3f3841c7cbfe":[2,0,0,1,50,7], "classGpgFrontend_1_1UI_1_1GeneralDialog.html":[2,0,0,1,2], -"classGpgFrontend_1_1UI_1_1GeneralDialog.html#a234a0a4d8c0b1b49a54f65b1aa3f9490":[2,0,0,1,2,8], -"classGpgFrontend_1_1UI_1_1GeneralDialog.html#a34d01f247eee92017a2eccf697cda080":[2,0,0,1,2,4], +"classGpgFrontend_1_1UI_1_1GeneralDialog.html#a34d01f247eee92017a2eccf697cda080":[2,0,0,1,2,2], "classGpgFrontend_1_1UI_1_1GeneralDialog.html#a42043895f4b33acd1531c428ae4deaa8":[2,0,0,1,2,1], -"classGpgFrontend_1_1UI_1_1GeneralDialog.html#a871f204f01f10815e3475c103f1157af":[2,0,0,1,2,7], -"classGpgFrontend_1_1UI_1_1GeneralDialog.html#a940a6ea31dff4db83f9f08d38e843a2b":[2,0,0,1,2,5], -"classGpgFrontend_1_1UI_1_1GeneralDialog.html#abad7cff23d2426820e320ecea47b479c":[2,0,0,1,2,3], +"classGpgFrontend_1_1UI_1_1GeneralDialog.html#a940a6ea31dff4db83f9f08d38e843a2b":[2,0,0,1,2,3], "classGpgFrontend_1_1UI_1_1GeneralDialog.html#ac9de4c49668ffaeb6916c64f878a202c":[2,0,0,1,2,0], -"classGpgFrontend_1_1UI_1_1GeneralDialog.html#ad9b847aa128dfeb4ecf0064ef948e6ea":[2,0,0,1,2,9], -"classGpgFrontend_1_1UI_1_1GeneralDialog.html#ad9d5be542aa422450a96dff00232ebe5":[2,0,0,1,2,2], -"classGpgFrontend_1_1UI_1_1GeneralDialog.html#ae91392293866dc302132a9fc19209d8c":[2,0,0,1,2,6], -"classGpgFrontend_1_1UI_1_1GeneralDialog.html#aeda520454fd38920a027c1a4195a2e6f":[2,0,0,1,2,10], -"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html":[2,0,0,1,37], -"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a42d1bc5a70f0e81cb49c88eb23544255":[2,0,0,1,37,3] +"classGpgFrontend_1_1UI_1_1GeneralDialog.html#ad9b847aa128dfeb4ecf0064ef948e6ea":[2,0,0,1,2,5], +"classGpgFrontend_1_1UI_1_1GeneralDialog.html#ae91392293866dc302132a9fc19209d8c":[2,0,0,1,2,4], +"classGpgFrontend_1_1UI_1_1GeneralDialog.html#aeda520454fd38920a027c1a4195a2e6f":[2,0,0,1,2,6], +"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html":[2,0,0,1,37] }; diff --git a/docs/html/navtreeindex3.js b/docs/html/navtreeindex3.js index 7dfa25b3..4600e94d 100644 --- a/docs/html/navtreeindex3.js +++ b/docs/html/navtreeindex3.js @@ -1,5 +1,6 @@ var NAVTREEINDEX3 = { +"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a42d1bc5a70f0e81cb49c88eb23544255":[2,0,0,1,37,3], "classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a5c0bb4c6847846d57ca7524d5f5e4d53":[2,0,0,1,37,10], "classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a60f3fab73cb82114b17b10d6ac2f3b1a":[2,0,0,1,37,1], "classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a62b24183ebf9da18852084879bcb1013":[2,0,0,1,37,0], @@ -8,8 +9,8 @@ var NAVTREEINDEX3 = "classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#ab0dd85f0fcbbab2f15eee995458d2dfb":[2,0,0,1,37,5], "classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#abb5b9f6dd7aed18f42cea885af85c741":[2,0,0,1,37,6], "classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#ac581df0af500c9e8a73b8f988739600b":[2,0,0,1,37,8], -"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#acc10569862d1575d9453d1c1aa539242":[2,0,0,1,37,2], "classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#ad799871eab498f2e535f52f0082f8b8b":[2,0,0,1,37,9], +"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#af5c86754836a678c7058e6f633968863":[2,0,0,1,37,2], "classGpgFrontend_1_1UI_1_1GeneralTab.html":[2,0,0,1,26], "classGpgFrontend_1_1UI_1_1GeneralTab.html#a214079dfbacdc6898146c8468611cf0c":[2,0,0,1,26,0], "classGpgFrontend_1_1UI_1_1GeneralTab.html#a3b97ed699cbc2f34b9e887cd2c83b645":[2,0,0,1,26,6], @@ -248,6 +249,5 @@ var NAVTREEINDEX3 = "classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a6a64f9528cfd743d724947b27eefa0a5":[2,0,0,1,18,21], "classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a72b94f3e8d11c44d1b4e3653ab885927":[2,0,0,1,18,16], "classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a74cab42dc5d138fa2632d027af279957":[2,0,0,1,18,22], -"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a92f3f64ea29f6660358aab0b2d2da4dc":[2,0,0,1,18,10], -"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a93abe5c0467c7c4a29e0c45437a10732":[2,0,0,1,18,0] +"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a92f3f64ea29f6660358aab0b2d2da4dc":[2,0,0,1,18,10] }; diff --git a/docs/html/navtreeindex4.js b/docs/html/navtreeindex4.js index 08286cfe..08190f84 100644 --- a/docs/html/navtreeindex4.js +++ b/docs/html/navtreeindex4.js @@ -1,5 +1,6 @@ var NAVTREEINDEX4 = { +"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a93abe5c0467c7c4a29e0c45437a10732":[2,0,0,1,18,0], "classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#aab240016c10ecf575965108751fc0ff8":[2,0,0,1,18,15], "classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#abbb66d84191a714d24f384125a25b328":[2,0,0,1,18,23], "classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#abf09b9868514921763a9134084b228ee":[2,0,0,1,18,12], @@ -248,6 +249,5 @@ var NAVTREEINDEX4 = "classGpgFrontend_1_1UI_1_1MainWindow.html#ae2d89e2cc6c99ff0e16b396d2381f904":[2,0,0,1,39,22], "classGpgFrontend_1_1UI_1_1MainWindow.html#aea9274389c3b049793fe5aa5a6adf63c":[2,0,0,1,39,19], "classGpgFrontend_1_1UI_1_1MainWindow.html#af08c62c38a750382ee218191c8e13f4f":[2,0,0,1,39,69], -"classGpgFrontend_1_1UI_1_1MainWindow.html#af2b3e3a0e9894633e1839df289f5ffe0":[2,0,0,1,39,102], -"classGpgFrontend_1_1UI_1_1MainWindow.html#af763a506aed7d0fb2125d1859583b853":[2,0,0,1,39,105] +"classGpgFrontend_1_1UI_1_1MainWindow.html#af2b3e3a0e9894633e1839df289f5ffe0":[2,0,0,1,39,102] }; diff --git a/docs/html/navtreeindex5.js b/docs/html/navtreeindex5.js index 8acc0910..f451adb1 100644 --- a/docs/html/navtreeindex5.js +++ b/docs/html/navtreeindex5.js @@ -1,5 +1,6 @@ var NAVTREEINDEX5 = { +"classGpgFrontend_1_1UI_1_1MainWindow.html#af763a506aed7d0fb2125d1859583b853":[2,0,0,1,39,105], "classGpgFrontend_1_1UI_1_1MainWindow.html#af77f66b6b869f6ddb3d2caa3bc40bb09":[2,0,0,1,39,57], "classGpgFrontend_1_1UI_1_1MainWindow.html#af93d72eaf58326f1f9e926752c6b1fc6":[2,0,0,1,39,20], "classGpgFrontend_1_1UI_1_1MainWindow.html#af9640e5732c2595d0c094e7ff7e371ac":[2,0,0,1,39,94], @@ -244,10 +245,9 @@ 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], "functions_func.html":[2,3,1,0], +"functions_func.html":[2,3,1], "functions_func_c.html":[2,3,1,1], "functions_func_d.html":[2,3,1,2], -"functions_func_e.html":[2,3,1,3], -"functions_func_f.html":[2,3,1,4] +"functions_func_e.html":[2,3,1,3] }; diff --git a/docs/html/navtreeindex6.js b/docs/html/navtreeindex6.js index e3d99e7a..8166e98b 100644 --- a/docs/html/navtreeindex6.js +++ b/docs/html/navtreeindex6.js @@ -1,5 +1,6 @@ var NAVTREEINDEX6 = { +"functions_func_f.html":[2,3,1,4], "functions_func_g.html":[2,3,1,5], "functions_func_h.html":[2,3,1,6], "functions_func_i.html":[2,3,1,7], @@ -37,8 +38,8 @@ var NAVTREEINDEX6 = "functions_z.html":[2,3,0,23], "functions_~.html":[2,3,0,24], "hierarchy.html":[2,2], -"index.html":[], "index.html":[0], +"index.html":[], "namespaceGpgFrontend.html":[1,0,0], "namespaceGpgFrontend.html#a02576f9b3647baec8e7f6dacf9411b46":[1,0,0,51], "namespaceGpgFrontend.html#a17ea01393928cb8638564cdd787151e4":[1,0,0,91], diff --git a/docs/html/search/all_12.js b/docs/html/search/all_12.js index 6106daba..29733348 100644 --- a/docs/html/search/all_12.js +++ b/docs/html/search/all_12.js @@ -10,7 +10,7 @@ var searchData= ['set_5fmessage_472',['set_message',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ab93fbf5e0626bffe398f5baa2bc00b1a',1,'GpgFrontend::UI::KeyServerImportDialog']]], ['set_5fsignal_5fslot_473',['set_signal_slot',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#aa36de61cedb98f919f10e35d4e6b5146',1,'GpgFrontend::UI::KeyGenDialog::set_signal_slot()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a90900b67eceb2d16af5de27f9f038f7f',1,'GpgFrontend::UI::SubkeyGenerateDialog::set_signal_slot()']]], ['set_5fstatus_474',['set_status',['../classGpgFrontend_1_1GpgResultAnalyse.html#a7f13592b421c7b0d3853f15cece8d195',1,'GpgFrontend::GpgResultAnalyse']]], - ['setalgo_475',['SetAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#adcd9c4f3e75f989810988e0bc81d401f',1,'GpgFrontend::GenKeyInfo']]], + ['setalgo_475',['SetAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#a378ea10385ab401bea45a7edb3df122d',1,'GpgFrontend::GenKeyInfo']]], ['setallowauthentication_476',['SetAllowAuthentication',['../classGpgFrontend_1_1GenKeyInfo.html#aac51d251682ed1bc1090416ebfeba4de',1,'GpgFrontend::GenKeyInfo']]], ['setallowcertification_477',['SetAllowCertification',['../classGpgFrontend_1_1GenKeyInfo.html#ac5f52f74566618c71a29bdc5e70fce2e',1,'GpgFrontend::GenKeyInfo']]], ['setallowencryption_478',['SetAllowEncryption',['../classGpgFrontend_1_1GenKeyInfo.html#a965014232f6de22c6d33320231ca4454',1,'GpgFrontend::GenKeyInfo']]], @@ -58,8 +58,8 @@ var searchData= ['signalrefreshinfoboard_520',['SignalRefreshInfoBoard',['../classGpgFrontend_1_1UI_1_1SignalStation.html#a94d4c7d79e0deb7026083689bc5dc2ad',1,'GpgFrontend::UI::SignalStation::SignalRefreshInfoBoard()'],['../classGpgFrontend_1_1UI_1_1FilePage.html#a301c5c7747ad251b14c490d58b5d678f',1,'GpgFrontend::UI::FilePage::SignalRefreshInfoBoard()']]], ['signalrefreshstatusbar_521',['SignalRefreshStatusBar',['../classGpgFrontend_1_1UI_1_1SignalStation.html#a7b5fb2e2c0ad238313650a08ea648ce3',1,'GpgFrontend::UI::SignalStation::SignalRefreshStatusBar()'],['../classGpgFrontend_1_1UI_1_1KeyList.html#a947f4ce45285b58bbde94f4ae879ff7a',1,'GpgFrontend::UI::KeyList::SignalRefreshStatusBar()']]], ['signalreplyfromupdateserver_522',['SignalReplyFromUpdateServer',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a5e752e01539ccfdc6bbe41a404ddaa95',1,'GpgFrontend::UI::UpdateTab']]], - ['signalrestartneeded_523',['SignalRestartNeeded',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#a91b25637962923a4bc646e8e1ab5d068',1,'GpgFrontend::UI::SettingsDialog::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1GeneralTab.html#aa88ccbda61728be6de0aa2d9b92e0b69',1,'GpgFrontend::UI::GeneralTab::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#a26449a77844d9db69a543ff88f10e347',1,'GpgFrontend::UI::KeyserverTab::SignalRestartNeeded()']]], - ['signalrestartneeded_524',['signalRestartNeeded',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html#abff49b636449815a9ebff52f5c067712',1,'GpgFrontend::UI::AppearanceTab']]], + ['signalrestartneeded_523',['signalRestartNeeded',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html#abff49b636449815a9ebff52f5c067712',1,'GpgFrontend::UI::AppearanceTab']]], + ['signalrestartneeded_524',['SignalRestartNeeded',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#a91b25637962923a4bc646e8e1ab5d068',1,'GpgFrontend::UI::SettingsDialog::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1GeneralTab.html#aa88ccbda61728be6de0aa2d9b92e0b69',1,'GpgFrontend::UI::GeneralTab::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#a26449a77844d9db69a543ff88f10e347',1,'GpgFrontend::UI::KeyserverTab::SignalRestartNeeded()']]], ['signalstation_525',['SignalStation',['../classGpgFrontend_1_1UI_1_1SignalStation.html',1,'GpgFrontend::UI']]], ['signaluibytesdisplayed_526',['SignalUIBytesDisplayed',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#afd3749488fdd3d1c53446fb8c833f3f4',1,'GpgFrontend::UI::PlainTextEditorPage']]], ['signalupgradeversion_527',['SignalUpgradeVersion',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a36c5597674253348477d78ad6af380ab',1,'GpgFrontend::UI::VersionCheckTask']]], diff --git a/docs/html/search/all_3.js b/docs/html/search/all_3.js index 0e7b7d09..7a21e10b 100644 --- a/docs/html/search/all_3.js +++ b/docs/html/search/all_3.js @@ -14,7 +14,7 @@ var searchData= ['clean_5fdouble_5fline_5fbreaks_5fact_5f_52',['clean_double_line_breaks_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0cb094e0409337cfd7dba1bb510ea96e',1,'GpgFrontend::UI::MainWindow']]], ['close_5fattachment_5fdock_53',['close_attachment_dock',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a473b679fa0dc3cdf4f6f98d6553fa0ec',1,'GpgFrontend::UI::MainWindow']]], ['close_5ftab_5fact_5f_54',['close_tab_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a09671c3aa26a750cfd6be6c092de8715',1,'GpgFrontend::UI::MainWindow']]], - ['closeevent_55',['closeEvent',['../classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#acc10569862d1575d9453d1c1aa539242',1,'GpgFrontend::UI::GeneralMainWindow::closeEvent()'],['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1759412cb7ee71600c4b6e3c6e752d2e',1,'GpgFrontend::UI::MainWindow::closeEvent()']]], + ['closeevent_55',['closeEvent',['../classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#af5c86754836a678c7058e6f633968863',1,'GpgFrontend::UI::GeneralMainWindow::closeEvent()'],['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1759412cb7ee71600c4b6e3c6e752d2e',1,'GpgFrontend::UI::MainWindow::closeEvent()']]], ['closenotebyclass_56',['CloseNoteByClass',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aee4f46e54f29da671838ed232e526700',1,'GpgFrontend::UI::PlainTextEditorPage']]], ['comment_5fedit_5f_57',['comment_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3008e2a9879a8e122e422f67cf0018f8',1,'GpgFrontend::UI::KeyGenDialog']]], ['comment_5fvar_5flabel_5f_58',['comment_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a83b1290251a204def52677ae000a17ec',1,'GpgFrontend::UI::KeyPairDetailTab']]], diff --git a/docs/html/search/all_7.js b/docs/html/search/all_7.js index 69b4f3e1..7b17824e 100644 --- a/docs/html/search/all_7.js +++ b/docs/html/search/all_7.js @@ -43,8 +43,8 @@ var searchData= ['getfilepath_204',['GetFilePath',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aff81f0f98a399fa55b6b0ebf2230d4cf',1,'GpgFrontend::UI::PlainTextEditorPage']]], ['getfingerprint_205',['GetFingerprint',['../classGpgFrontend_1_1GpgSubKey.html#a09b00ac6a3b934b816f9522f78e77d59',1,'GpgFrontend::GpgSubKey::GetFingerprint()'],['../classGpgFrontend_1_1GpgSignature.html#a627b5206311998dd3f45393344b195be',1,'GpgFrontend::GpgSignature::GetFingerprint()'],['../classGpgFrontend_1_1GpgKey.html#a165b3f645e2c6a4bbd024199e1f1cc9b',1,'GpgFrontend::GpgKey::GetFingerprint()']]], ['gethashalgo_206',['GetHashAlgo',['../classGpgFrontend_1_1GpgSignature.html#ace10a3ac7f4dc3888b2ad62157213f1c',1,'GpgFrontend::GpgSignature']]], - ['getid_207',['GetId',['../classGpgFrontend_1_1GpgKey.html#a8930f958f3ca1f5566f63e8c2273837e',1,'GpgFrontend::GpgKey']]], - ['getid_208',['GetID',['../classGpgFrontend_1_1GpgSubKey.html#a48d3dfbd3aae9523ffbdb916aad8ad53',1,'GpgFrontend::GpgSubKey']]], + ['getid_207',['GetID',['../classGpgFrontend_1_1GpgSubKey.html#a48d3dfbd3aae9523ffbdb916aad8ad53',1,'GpgFrontend::GpgSubKey']]], + ['getid_208',['GetId',['../classGpgFrontend_1_1GpgKey.html#a8930f958f3ca1f5566f63e8c2273837e',1,'GpgFrontend::GpgKey']]], ['getinfo_209',['GetInfo',['../classGpgFrontend_1_1GpgContext.html#ad9af3461de36f74ee85be2523f6038e2',1,'GpgFrontend::GpgContext']]], ['getinstance_210',['GetInstance',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#aed529969f54e39e3f9da14ae6dd00d49',1,'GpgFrontend::UI::CommonUtils::GetInstance()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a70484d7cfe9f9dcbcd5f8bb749250f36',1,'GpgFrontend::SingletonFunctionObject::GetInstance()'],['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a9b341a1a903cec0c70a6af4bb230905e',1,'GpgFrontend::UI::GpgFrontendApplication::GetInstance()'],['../classGpgFrontend_1_1UI_1_1SignalStation.html#abe381ce56a7b157a3760b2fd9c3b7419',1,'GpgFrontend::UI::SignalStation::GetInstance()'],['../classGpgFrontend_1_1SingletonStorageCollection.html#a16b4729ca79dcdccc794df70aa2a5aaf',1,'GpgFrontend::SingletonStorageCollection::GetInstance()'],['../classGpgFrontend_1_1CoreCommonUtil.html#a8588dfa6ccb57c055f022b13e2da1e7c',1,'GpgFrontend::CoreCommonUtil::GetInstance()']]], ['getinvalid_211',['GetInvalid',['../classGpgFrontend_1_1GpgUID.html#a388ad367d353edd5eeb6e529977c924c',1,'GpgFrontend::GpgUID']]], @@ -88,10 +88,10 @@ var searchData= ['getsuggestmaxkeysize_249',['GetSuggestMaxKeySize',['../classGpgFrontend_1_1GenKeyInfo.html#ae461a553176ad1ab0c1121ea6de6c8c2',1,'GpgFrontend::GenKeyInfo']]], ['getsuggestminkeysize_250',['GetSuggestMinKeySize',['../classGpgFrontend_1_1GenKeyInfo.html#a0b1612421148b86919b7130ed148ca51',1,'GpgFrontend::GenKeyInfo']]], ['getsummary_251',['GetSummary',['../classGpgFrontend_1_1GpgSignature.html#a3b143f6e13b71663d81fc0f326aad17f',1,'GpgFrontend::GpgSignature']]], - ['getsupportedkeyalgo_252',['GetSupportedKeyAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#ac0dbb2d89b1e5f9b272679ba3f24314e',1,'GpgFrontend::GenKeyInfo']]], - ['getsupportedkeyalgostandalone_253',['GetSupportedKeyAlgoStandalone',['../classGpgFrontend_1_1GenKeyInfo.html#afb8315b6612c64b3921b72df98ebcc74',1,'GpgFrontend::GenKeyInfo']]], - ['getsupportedsubkeyalgo_254',['GetSupportedSubkeyAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#a168d6fe5252812f5984ba6d8046c7741',1,'GpgFrontend::GenKeyInfo']]], - ['getsupportedsubkeyalgostandalone_255',['GetSupportedSubkeyAlgoStandalone',['../classGpgFrontend_1_1GenKeyInfo.html#a6819b0ca3ef7712b85ae320030cde023',1,'GpgFrontend::GenKeyInfo']]], + ['getsupportedkeyalgo_252',['GetSupportedKeyAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#a185c7be801854f81879351a6c4dd9071',1,'GpgFrontend::GenKeyInfo']]], + ['getsupportedkeyalgostandalone_253',['GetSupportedKeyAlgoStandalone',['../classGpgFrontend_1_1GenKeyInfo.html#a8b054a66cb0678af6c42090eea1518e4',1,'GpgFrontend::GenKeyInfo']]], + ['getsupportedsubkeyalgo_254',['GetSupportedSubkeyAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#a7855d9fe9b6872ff08a60fe21640d07f',1,'GpgFrontend::GenKeyInfo']]], + ['getsupportedsubkeyalgostandalone_255',['GetSupportedSubkeyAlgoStandalone',['../classGpgFrontend_1_1GenKeyInfo.html#a310fd0cdac03d0b0a7fde006105866d6',1,'GpgFrontend::GenKeyInfo']]], ['gettabidstosave_256',['GetTabIdsToSave',['../classGpgFrontend_1_1UI_1_1QuitDialog.html#aec364c38056b6d92c172f8cdfb5f8e82',1,'GpgFrontend::UI::QuitDialog']]], ['gettextpage_257',['GetTextPage',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a6218e6e12bdba0228e4ab4276f7fed7a',1,'GpgFrontend::UI::PlainTextEditorPage']]], ['gettofuinfos_258',['GetTofuInfos',['../classGpgFrontend_1_1GpgUID.html#a2a36376484f7c1a4a19377d24e47a0b2',1,'GpgFrontend::GpgUID']]], diff --git a/docs/html/search/enums_0.js b/docs/html/search/enums_0.js index 220e5dd3..c3d29d05 100644 --- a/docs/html/search/enums_0.js +++ b/docs/html/search/enums_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['infoboardstatus_1471',['InfoBoardStatus',['../namespaceGpgFrontend_1_1UI.html#acbaebd342a317b1f067942e5144bb00d',1,'GpgFrontend::UI']]] + ['infoboardstatus_1470',['InfoBoardStatus',['../namespaceGpgFrontend_1_1UI.html#acbaebd342a317b1f067942e5144bb00d',1,'GpgFrontend::UI']]] ]; diff --git a/docs/html/search/functions_12.js b/docs/html/search/functions_12.js index c5fe29d8..b09dded1 100644 --- a/docs/html/search/functions_12.js +++ b/docs/html/search/functions_12.js @@ -7,7 +7,7 @@ var searchData= ['set_5fmessage_1166',['set_message',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ab93fbf5e0626bffe398f5baa2bc00b1a',1,'GpgFrontend::UI::KeyServerImportDialog']]], ['set_5fsignal_5fslot_1167',['set_signal_slot',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#aa36de61cedb98f919f10e35d4e6b5146',1,'GpgFrontend::UI::KeyGenDialog::set_signal_slot()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a90900b67eceb2d16af5de27f9f038f7f',1,'GpgFrontend::UI::SubkeyGenerateDialog::set_signal_slot()']]], ['set_5fstatus_1168',['set_status',['../classGpgFrontend_1_1GpgResultAnalyse.html#a7f13592b421c7b0d3853f15cece8d195',1,'GpgFrontend::GpgResultAnalyse']]], - ['setalgo_1169',['SetAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#adcd9c4f3e75f989810988e0bc81d401f',1,'GpgFrontend::GenKeyInfo']]], + ['setalgo_1169',['SetAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#a378ea10385ab401bea45a7edb3df122d',1,'GpgFrontend::GenKeyInfo']]], ['setallowauthentication_1170',['SetAllowAuthentication',['../classGpgFrontend_1_1GenKeyInfo.html#aac51d251682ed1bc1090416ebfeba4de',1,'GpgFrontend::GenKeyInfo']]], ['setallowcertification_1171',['SetAllowCertification',['../classGpgFrontend_1_1GenKeyInfo.html#ac5f52f74566618c71a29bdc5e70fce2e',1,'GpgFrontend::GenKeyInfo']]], ['setallowencryption_1172',['SetAllowEncryption',['../classGpgFrontend_1_1GenKeyInfo.html#a965014232f6de22c6d33320231ca4454',1,'GpgFrontend::GenKeyInfo']]], @@ -52,103 +52,102 @@ var searchData= ['signalrefreshinfoboard_1211',['SignalRefreshInfoBoard',['../classGpgFrontend_1_1UI_1_1FilePage.html#a301c5c7747ad251b14c490d58b5d678f',1,'GpgFrontend::UI::FilePage::SignalRefreshInfoBoard()'],['../classGpgFrontend_1_1UI_1_1SignalStation.html#a94d4c7d79e0deb7026083689bc5dc2ad',1,'GpgFrontend::UI::SignalStation::SignalRefreshInfoBoard()']]], ['signalrefreshstatusbar_1212',['SignalRefreshStatusBar',['../classGpgFrontend_1_1UI_1_1KeyList.html#a947f4ce45285b58bbde94f4ae879ff7a',1,'GpgFrontend::UI::KeyList::SignalRefreshStatusBar()'],['../classGpgFrontend_1_1UI_1_1SignalStation.html#a7b5fb2e2c0ad238313650a08ea648ce3',1,'GpgFrontend::UI::SignalStation::SignalRefreshStatusBar()']]], ['signalreplyfromupdateserver_1213',['SignalReplyFromUpdateServer',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a5e752e01539ccfdc6bbe41a404ddaa95',1,'GpgFrontend::UI::UpdateTab']]], - ['signalrestartneeded_1214',['SignalRestartNeeded',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#a91b25637962923a4bc646e8e1ab5d068',1,'GpgFrontend::UI::SettingsDialog']]], - ['signalrestartneeded_1215',['signalRestartNeeded',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html#abff49b636449815a9ebff52f5c067712',1,'GpgFrontend::UI::AppearanceTab']]], - ['signalrestartneeded_1216',['SignalRestartNeeded',['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#a26449a77844d9db69a543ff88f10e347',1,'GpgFrontend::UI::KeyserverTab::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1GeneralTab.html#aa88ccbda61728be6de0aa2d9b92e0b69',1,'GpgFrontend::UI::GeneralTab::SignalRestartNeeded()']]], - ['signaluibytesdisplayed_1217',['SignalUIBytesDisplayed',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#afd3749488fdd3d1c53446fb8c833f3f4',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['signalupgradeversion_1218',['SignalUpgradeVersion',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a36c5597674253348477d78ad6af380ab',1,'GpgFrontend::UI::VersionCheckTask']]], - ['signerspicker_1219',['SignersPicker',['../classGpgFrontend_1_1UI_1_1SignersPicker.html#a02c3ba737702894fc6d4ac1a1c543ccb',1,'GpgFrontend::UI::SignersPicker']]], - ['signfile_1220',['SignFile',['../classGpgFrontend_1_1GpgFileOpera.html#a350df1c07c054625c4755a78e6ca5ca8',1,'GpgFrontend::GpgFileOpera']]], - ['signkey_1221',['SignKey',['../classGpgFrontend_1_1GpgKeyManager.html#a12138780c53add7589f78f056019e5e0',1,'GpgFrontend::GpgKeyManager']]], - ['singletonfunctionobject_1222',['SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html#aabc5fe8e5a372ac276a265286457cb9a',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(T &&)=delete'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a4aa7f1eb1d3281bb1fccfcbb1b416251',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(int channel)'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a7090636bed6f4bad5b99f28f6872c645',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(const T &)=delete'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a194e49b07d46345bdad386505d743a61',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(const SingletonFunctionObject< T > &)=delete'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a02e76b42ab51d77588b01c7508bed258',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject()=default']]], - ['slot_5factivated_5fkey_5ftype_1223',['slot_activated_key_type',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a52a0aadc9b1e80bdcaaf1ad9d8997957',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_activated_key_type()'],['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ab8f04b046abb56d53bdbe67838b84fdc',1,'GpgFrontend::UI::KeyGenDialog::slot_activated_key_type()']]], - ['slot_5fadd_5fpgp_5fheader_1224',['slot_add_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a821247d738457c4ee046162aad6728f9',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fadd_5fuid_5fresult_1225',['slot_add_uid_result',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a16f1ae88d6a417b614cfc6ae1852187c',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['slot_5fappend_5fselected_5fkeys_1226',['slot_append_selected_keys',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a76bf3784d751db78ed13bd9962e14472',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fauthentication_5fbox_5fchanged_1227',['slot_authentication_box_changed',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a13229f07ef0ed594357df1918af50d3d',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_authentication_box_changed()'],['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a904d5e72a1946382ddfca80dc57c4db5',1,'GpgFrontend::UI::KeyGenDialog::slot_authentication_box_changed(int state)']]], - ['slot_5fcertification_5fbox_5fchanged_1228',['slot_certification_box_changed',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a48e953cd49efde2315868e8606af7226',1,'GpgFrontend::UI::KeyGenDialog::slot_certification_box_changed()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a8ab50d8f47489c57e382b3fe231ba9a7',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_certification_box_changed()']]], - ['slot_5fclean_5fdouble_5fline_5fbreaks_1229',['slot_clean_double_line_breaks',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aea9274389c3b049793fe5aa5a6adf63c',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fcompress_5ffiles_1230',['slot_compress_files',['../classGpgFrontend_1_1UI_1_1FilePage.html#a250b1950f874c1d11549cd5c0ea9693f',1,'GpgFrontend::UI::FilePage']]], - ['slot_5fcopy_5ffingerprint_1231',['slot_copy_fingerprint',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#af8b600fbd7cd0fbb5b6183403bf870b2',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['slot_5fcopy_5fmail_5faddress_5fto_5fclipboard_1232',['slot_copy_mail_address_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af93d72eaf58326f1f9e926752c6b1fc6',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fcreate_5fnew_5fuid_1233',['slot_create_new_uid',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a4e115ce46a85c2f9e4e0e2427839fc7c',1,'GpgFrontend::UI::KeyNewUIDDialog']]], - ['slot_5fcut_5fpgp_5fheader_1234',['slot_cut_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7f5a88922d06bee977335fb4b5f1d86d',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fdecrypt_1235',['slot_decrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae2d89e2cc6c99ff0e16b396d2381f904',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fdecrypt_5fverify_1236',['slot_decrypt_verify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1d61ea803e6c825bd54f42ba9ae85919',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fdisable_5ftab_5factions_1237',['slot_disable_tab_actions',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a24a0b0d974fc5f8fdda60c128a82d957',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fdouble_5fclicked_1238',['slot_double_clicked',['../classGpgFrontend_1_1UI_1_1KeyList.html#a69e54f06d546d516a0dcdf1055b8028e',1,'GpgFrontend::UI::KeyList']]], - ['slot_5fencrypt_1239',['slot_encrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae11d01211c2914ecc148e13dd7de506e',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fencrypt_5fsign_1240',['slot_encrypt_sign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a304efe91afa31b32725caa00c27475a4',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fencryption_5fbox_5fchanged_1241',['slot_encryption_box_changed',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a1f4dda7500b3de7476e5d1e7bd5b550b',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_encryption_box_changed()'],['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ae611933ccd6fd67e65a2cf1ff09b5e8f',1,'GpgFrontend::UI::KeyGenDialog::slot_encryption_box_changed(int state)']]], - ['slot_5fexpire_5fbox_5fchanged_1242',['slot_expire_box_changed',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a516aa59c71a9ddf06c51e93252e93b76',1,'GpgFrontend::UI::KeyGenDialog::slot_expire_box_changed()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a49d9f3bb2cfb17eb39dcd4dc0385234e',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_expire_box_changed()']]], - ['slot_5fexport_5fprivate_5fkey_1243',['slot_export_private_key',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a384f4250e58110da58c0e6996b42a8ab',1,'GpgFrontend::UI::KeyPairOperaTab']]], - ['slot_5ffile_5ftree_5fview_5fitem_5fclicked_1244',['slot_file_tree_view_item_clicked',['../classGpgFrontend_1_1UI_1_1FilePage.html#a676917817d6f519e043742d1d87f97f1',1,'GpgFrontend::UI::FilePage']]], - ['slot_5ffile_5ftree_5fview_5fitem_5fdouble_5fclicked_1245',['slot_file_tree_view_item_double_clicked',['../classGpgFrontend_1_1UI_1_1FilePage.html#ad3c54320bdafbbb2c06a20d6c7dea9d6',1,'GpgFrontend::UI::FilePage']]], - ['slot_5ffind_1246',['slot_find',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae28089efbd236708601470f30f26faaa',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fformat_5fgpg_5fheader_1247',['slot_format_gpg_header',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a45267bcfc8fc83851894061c0fe2a9c2',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['slot_5fimport_1248',['slot_import',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ac9c14bbc97945c94fd02c8e067ccab06',1,'GpgFrontend::UI::KeyServerImportDialog']]], - ['slot_5fimport_5ffinished_1249',['slot_import_finished',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a6f1c5238da7cd6f117bed8018469b37a',1,'GpgFrontend::UI::KeyServerImportDialog']]], - ['slot_5fimport_5fkey_5ffrom_5fedit_1250',['slot_import_key_from_edit',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a55926649e28a96318b89afba01b966bf',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5finsert_5ftext_1251',['slot_insert_text',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a184985104f23da8fdf2b9aaf7b27405b',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['slot_5fjump_5fpage_1252',['slot_jump_page',['../classGpgFrontend_1_1UI_1_1ChoosePage.html#af0d7890fe65385b7785719b9cff0718b',1,'GpgFrontend::UI::ChoosePage']]], - ['slot_5fkey_5fgen_5faccept_1253',['slot_key_gen_accept',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#af1f7a62dcb024513453766ee8816d514',1,'GpgFrontend::UI::KeyGenDialog::slot_key_gen_accept()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aab426dec4b4655b215b09b490e05ad05',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_key_gen_accept()']]], - ['slot_5fnon_5fexpired_5fchecked_1254',['slot_non_expired_checked',['../classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#adde2b33bd17f521f0630702987b1d274',1,'GpgFrontend::UI::KeySetExpireDateDialog']]], - ['slot_5fopen_5ffile_5ftab_1255',['slot_open_file_tab',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a29a811d4d440c79c1bd2cc2bb40cdf7e',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fopen_5fkey_5fmanagement_1256',['slot_open_key_management',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a16ddebec90a4bd0d13baa9d972c3445f',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fopen_5fsettings_5fdialog_1257',['slot_open_settings_dialog',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a874b505fbc1046f579a736683f5a7f65',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fopen_5furl_1258',['slot_open_url',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a51ff99077a75507365307f5dd783df99',1,'GpgFrontend::UI::HelpPage']]], - ['slot_5fprocess_5fnetwork_5freply_1259',['slot_process_network_reply',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#af9350e0a8d5993e5be0a5478fcb161be',1,'GpgFrontend::UI::ListedKeyServerTestTask']]], - ['slot_5fremove_5ftab_1260',['slot_remove_tab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a12f65fbc4984c266a5df4505ecde7c42',1,'GpgFrontend::UI::TextEdit']]], - ['slot_5fset_5frestart_5fneeded_1261',['slot_set_restart_needed',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#a204f8e834337aea7df2779a494dc6216',1,'GpgFrontend::UI::SettingsDialog']]], - ['slot_5fshow_5fkey_5fdetails_1262',['slot_show_key_details',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a033d448541b44fa48b76dec828a4eb0e',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fshow_5fversion_5fstatus_1263',['slot_show_version_status',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a1003bd969ecbc5deba940e39436968f4',1,'GpgFrontend::UI::UpdateTab']]], - ['slot_5fsign_1264',['slot_sign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3f3d03b0ec22385bee559fbd2aeb881b',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fsign_5fkey_1265',['slot_sign_key',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#a82f6bf641ff3b64341a0bdcf76571c43',1,'GpgFrontend::UI::KeyUIDSignDialog']]], - ['slot_5fsigning_5fbox_5fchanged_1266',['slot_signing_box_changed',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a03b7fe3e34147e404ca3ca6a0aa80cfc',1,'GpgFrontend::UI::KeyGenDialog::slot_signing_box_changed()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aedef4e8784c8a3edb06b0f2821500552',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_signing_box_changed()']]], - ['slot_5fstart_5fwizard_1267',['slot_start_wizard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aabf3ddf6b624790369f164b4889c95be',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fupdate_5fkey_5fstatus_1268',['slot_update_key_status',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#ab4ac26378d6a07757720163eb4b1cb0e',1,'GpgFrontend::UI::CommonUtils']]], - ['slot_5fupload_5fkey_5fto_5fserver_1269',['slot_upload_key_to_server',['../classGpgFrontend_1_1UI_1_1KeyUploadDialog.html#a0f724649ca953b888f07d69c97fe45b6',1,'GpgFrontend::UI::KeyUploadDialog']]], - ['slot_5fverify_1270',['slot_verify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa9c986dd95984811479ea93230c74b5d',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fversion_5fupgrade_1271',['slot_version_upgrade',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a48368c77af7b1f4cb632870b8d914a28',1,'GpgFrontend::UI::MainWindow']]], - ['slotclosetab_1272',['SlotCloseTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa21659aa7acba98dfd6286d69e00ab9b',1,'GpgFrontend::UI::TextEdit']]], - ['slotcopy_1273',['SlotCopy',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3599bd01636a873cf3437ab6b9d38780',1,'GpgFrontend::UI::TextEdit']]], - ['slotcurpagefiletreeview_1274',['SlotCurPageFileTreeView',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a72014409d407c161b048e07c061b4cf9',1,'GpgFrontend::UI::TextEdit']]], - ['slotcurpagetextedit_1275',['SlotCurPageTextEdit',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a48351dc1529da3b8da311f65b735b5f1',1,'GpgFrontend::UI::TextEdit']]], - ['slotcut_1276',['SlotCut',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae1e710c6722910b8d35df97aaabb3162',1,'GpgFrontend::UI::TextEdit']]], - ['slotexecutegpgcommand_1277',['SlotExecuteGpgCommand',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#afc845c1c37487c99f78d8e66f6874f6d',1,'GpgFrontend::UI::CommonUtils']]], - ['slotfiledecrypt_1278',['SlotFileDecrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0a6d0618f2835a6dcae707a4ca770a48',1,'GpgFrontend::UI::MainWindow']]], - ['slotfiledecryptverify_1279',['SlotFileDecryptVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab23c7e67dd1f5295b3c49ad79dfd5919',1,'GpgFrontend::UI::MainWindow']]], - ['slotfileencrypt_1280',['SlotFileEncrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9ec699536a35a37961a8c6da1e231ae3',1,'GpgFrontend::UI::MainWindow']]], - ['slotfileencryptsign_1281',['SlotFileEncryptSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a25a2e4017d77cffc8362bde9606fad30',1,'GpgFrontend::UI::MainWindow']]], - ['slotfilesign_1282',['SlotFileSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8bcdcbe678b8dc0837fffda2ebfe79bf',1,'GpgFrontend::UI::MainWindow']]], - ['slotfileverify_1283',['SlotFileVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9879061cfd321c6757c77f75d46dc7d8',1,'GpgFrontend::UI::MainWindow']]], - ['slotfilltexteditwithtext_1284',['SlotFillTextEditWithText',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af466ec2b8ab3f695d206efc0574bbe20',1,'GpgFrontend::UI::TextEdit']]], - ['slotimport_1285',['SlotImport',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#abb3d99b2c17b0f6ddb0e5b93dd8f8802',1,'GpgFrontend::UI::KeyServerImportDialog::SlotImport(std::vector< std::string > key_ids_list, std::string keyserver_url)'],['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a1e17305d6b470d0f7050eb8e3e6ee3d8',1,'GpgFrontend::UI::KeyServerImportDialog::SlotImport(const KeyIdArgsListPtr &keys)']]], - ['slotimportkeyfromclipboard_1286',['SlotImportKeyFromClipboard',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a0c8bf56fc5371cd2c5e9d2a0f67bf72a',1,'GpgFrontend::UI::CommonUtils']]], - ['slotimportkeyfromfile_1287',['SlotImportKeyFromFile',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a057526790f6b2f6288c3a35322c34d8d',1,'GpgFrontend::UI::CommonUtils']]], - ['slotimportkeyfromkeyserver_1288',['SlotImportKeyFromKeyServer',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#af1b3538d3119c8564e83c7661f73f6ea',1,'GpgFrontend::UI::CommonUtils::SlotImportKeyFromKeyServer(QWidget *parent)'],['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a35a47fc31b81b6c4f5899e8ab5c4c51a',1,'GpgFrontend::UI::CommonUtils::SlotImportKeyFromKeyServer(const GpgFrontend::KeyIdArgsList &key_ids, const GpgFrontend::UI::CommonUtils::ImportCallbackFunctiopn &callback)']]], - ['slotimportkeys_1289',['SlotImportKeys',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a3bc26cc1e0f00f0ce2f95c0b6c8778d8',1,'GpgFrontend::UI::CommonUtils']]], - ['slotnewfiletab_1290',['SlotNewFileTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae22ecadf31648f424eb8ab86bd28ef39',1,'GpgFrontend::UI::TextEdit']]], - ['slotnewhelptab_1291',['slotNewHelpTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3c17fdf3abf9c4fb6ce35cfb8f0f8fc4',1,'GpgFrontend::UI::TextEdit']]], - ['slotnewtab_1292',['SlotNewTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a57a46ab5595622ae0b7bceef7d56bd7c',1,'GpgFrontend::UI::TextEdit']]], - ['slotopen_1293',['SlotOpen',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a15335d38187ddf580b7200d856768cfb',1,'GpgFrontend::UI::TextEdit']]], - ['slotopenfile_1294',['SlotOpenFile',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a05b838ad518857fed24864ecce40c203',1,'GpgFrontend::UI::MainWindow::SlotOpenFile()'],['../classGpgFrontend_1_1UI_1_1TextEdit.html#a72006c9f8f45ac4d154c67f62a29446d',1,'GpgFrontend::UI::TextEdit::SlotOpenFile(QString &path)']]], - ['slotpaste_1295',['SlotPaste',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa2230418dc8f72c400f5a90082a983c9',1,'GpgFrontend::UI::TextEdit']]], - ['slotprint_1296',['SlotPrint',['../classGpgFrontend_1_1UI_1_1TextEdit.html#adca2bbfa746b5598f2a4f74026b84224',1,'GpgFrontend::UI::TextEdit']]], - ['slotquote_1297',['SlotQuote',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6a02fce9dc4039c982d6dd19231517ee',1,'GpgFrontend::UI::TextEdit']]], - ['slotredo_1298',['SlotRedo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae2b3bf422789d56087face98b6a9e929',1,'GpgFrontend::UI::TextEdit']]], - ['slotrefresh_1299',['SlotRefresh',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a68f984815100f4ce281b9794f193e516',1,'GpgFrontend::UI::InfoBoardWidget']]], - ['slotsave_1300',['SlotSave',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ace0b8f4c161db9f4f5db5ecbfd7a91c0',1,'GpgFrontend::UI::TextEdit']]], - ['slotsaveas_1301',['SlotSaveAs',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a02fa44ba0c56f3f6ae125f8490faf254',1,'GpgFrontend::UI::TextEdit']]], - ['slotselectall_1302',['SlotSelectAll',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6c814253dfc061bfdae0fa71c6196c55',1,'GpgFrontend::UI::TextEdit']]], - ['slotsetrestartneeded_1303',['SlotSetRestartNeeded',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab1fb798caf43dd067beca5285444d47d',1,'GpgFrontend::UI::MainWindow']]], - ['slotshowmodified_1304',['SlotShowModified',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a7544182198b729373843635bbfea082a',1,'GpgFrontend::UI::TextEdit']]], - ['slotswitchtabdown_1305',['SlotSwitchTabDown',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a576e06390e65576465297d2ab8d7d474',1,'GpgFrontend::UI::TextEdit']]], - ['slotswitchtabup_1306',['SlotSwitchTabUp',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af1e364b513f566c743a5d36c19098762',1,'GpgFrontend::UI::TextEdit']]], - ['slotundo_1307',['SlotUndo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a4a81e69f6dc74ea649ca9a2358342fd5',1,'GpgFrontend::UI::TextEdit']]], - ['stripped_5fname_1308',['stripped_name',['../classGpgFrontend_1_1UI_1_1TextEdit.html#afb9b7a7d88154d774b3d727d8e640cbb',1,'GpgFrontend::UI::TextEdit']]], - ['subkeygeneratedialog_1309',['SubkeyGenerateDialog',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a8f9d8baa7b576a4aa857818b87c26bcd',1,'GpgFrontend::UI::SubkeyGenerateDialog']]], - ['switch_5fui_5fenabled_1310',['switch_ui_enabled',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#ae3d97948f205e84f0604d4da634a4513',1,'GpgFrontend::UI::NetworkTab']]], - ['switch_5fui_5fproxy_5ftype_1311',['switch_ui_proxy_type',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#a1b0297158f13daec77645c88e5a8adcd',1,'GpgFrontend::UI::NetworkTab']]], - ['syncsettings_1312',['SyncSettings',['../classGpgFrontend_1_1GlobalSettingStation.html#ac061ac8e5308f67ea52b98888bbb2e8d',1,'GpgFrontend::GlobalSettingStation']]] + ['signalrestartneeded_1214',['signalRestartNeeded',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html#abff49b636449815a9ebff52f5c067712',1,'GpgFrontend::UI::AppearanceTab']]], + ['signalrestartneeded_1215',['SignalRestartNeeded',['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#a26449a77844d9db69a543ff88f10e347',1,'GpgFrontend::UI::KeyserverTab::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1GeneralTab.html#aa88ccbda61728be6de0aa2d9b92e0b69',1,'GpgFrontend::UI::GeneralTab::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#a91b25637962923a4bc646e8e1ab5d068',1,'GpgFrontend::UI::SettingsDialog::SignalRestartNeeded()']]], + ['signaluibytesdisplayed_1216',['SignalUIBytesDisplayed',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#afd3749488fdd3d1c53446fb8c833f3f4',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['signalupgradeversion_1217',['SignalUpgradeVersion',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a36c5597674253348477d78ad6af380ab',1,'GpgFrontend::UI::VersionCheckTask']]], + ['signerspicker_1218',['SignersPicker',['../classGpgFrontend_1_1UI_1_1SignersPicker.html#a02c3ba737702894fc6d4ac1a1c543ccb',1,'GpgFrontend::UI::SignersPicker']]], + ['signfile_1219',['SignFile',['../classGpgFrontend_1_1GpgFileOpera.html#a350df1c07c054625c4755a78e6ca5ca8',1,'GpgFrontend::GpgFileOpera']]], + ['signkey_1220',['SignKey',['../classGpgFrontend_1_1GpgKeyManager.html#a12138780c53add7589f78f056019e5e0',1,'GpgFrontend::GpgKeyManager']]], + ['singletonfunctionobject_1221',['SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html#aabc5fe8e5a372ac276a265286457cb9a',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(T &&)=delete'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a4aa7f1eb1d3281bb1fccfcbb1b416251',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(int channel)'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a7090636bed6f4bad5b99f28f6872c645',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(const T &)=delete'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a194e49b07d46345bdad386505d743a61',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(const SingletonFunctionObject< T > &)=delete'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a02e76b42ab51d77588b01c7508bed258',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject()=default']]], + ['slot_5factivated_5fkey_5ftype_1222',['slot_activated_key_type',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a52a0aadc9b1e80bdcaaf1ad9d8997957',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_activated_key_type()'],['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ab8f04b046abb56d53bdbe67838b84fdc',1,'GpgFrontend::UI::KeyGenDialog::slot_activated_key_type()']]], + ['slot_5fadd_5fpgp_5fheader_1223',['slot_add_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a821247d738457c4ee046162aad6728f9',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fadd_5fuid_5fresult_1224',['slot_add_uid_result',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a16f1ae88d6a417b614cfc6ae1852187c',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['slot_5fappend_5fselected_5fkeys_1225',['slot_append_selected_keys',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a76bf3784d751db78ed13bd9962e14472',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fauthentication_5fbox_5fchanged_1226',['slot_authentication_box_changed',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a13229f07ef0ed594357df1918af50d3d',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_authentication_box_changed()'],['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a904d5e72a1946382ddfca80dc57c4db5',1,'GpgFrontend::UI::KeyGenDialog::slot_authentication_box_changed(int state)']]], + ['slot_5fcertification_5fbox_5fchanged_1227',['slot_certification_box_changed',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a48e953cd49efde2315868e8606af7226',1,'GpgFrontend::UI::KeyGenDialog::slot_certification_box_changed()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a8ab50d8f47489c57e382b3fe231ba9a7',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_certification_box_changed()']]], + ['slot_5fclean_5fdouble_5fline_5fbreaks_1228',['slot_clean_double_line_breaks',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aea9274389c3b049793fe5aa5a6adf63c',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fcompress_5ffiles_1229',['slot_compress_files',['../classGpgFrontend_1_1UI_1_1FilePage.html#a250b1950f874c1d11549cd5c0ea9693f',1,'GpgFrontend::UI::FilePage']]], + ['slot_5fcopy_5ffingerprint_1230',['slot_copy_fingerprint',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#af8b600fbd7cd0fbb5b6183403bf870b2',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['slot_5fcopy_5fmail_5faddress_5fto_5fclipboard_1231',['slot_copy_mail_address_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af93d72eaf58326f1f9e926752c6b1fc6',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fcreate_5fnew_5fuid_1232',['slot_create_new_uid',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a4e115ce46a85c2f9e4e0e2427839fc7c',1,'GpgFrontend::UI::KeyNewUIDDialog']]], + ['slot_5fcut_5fpgp_5fheader_1233',['slot_cut_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7f5a88922d06bee977335fb4b5f1d86d',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fdecrypt_1234',['slot_decrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae2d89e2cc6c99ff0e16b396d2381f904',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fdecrypt_5fverify_1235',['slot_decrypt_verify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1d61ea803e6c825bd54f42ba9ae85919',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fdisable_5ftab_5factions_1236',['slot_disable_tab_actions',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a24a0b0d974fc5f8fdda60c128a82d957',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fdouble_5fclicked_1237',['slot_double_clicked',['../classGpgFrontend_1_1UI_1_1KeyList.html#a69e54f06d546d516a0dcdf1055b8028e',1,'GpgFrontend::UI::KeyList']]], + ['slot_5fencrypt_1238',['slot_encrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae11d01211c2914ecc148e13dd7de506e',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fencrypt_5fsign_1239',['slot_encrypt_sign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a304efe91afa31b32725caa00c27475a4',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fencryption_5fbox_5fchanged_1240',['slot_encryption_box_changed',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a1f4dda7500b3de7476e5d1e7bd5b550b',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_encryption_box_changed()'],['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ae611933ccd6fd67e65a2cf1ff09b5e8f',1,'GpgFrontend::UI::KeyGenDialog::slot_encryption_box_changed(int state)']]], + ['slot_5fexpire_5fbox_5fchanged_1241',['slot_expire_box_changed',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a516aa59c71a9ddf06c51e93252e93b76',1,'GpgFrontend::UI::KeyGenDialog::slot_expire_box_changed()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a49d9f3bb2cfb17eb39dcd4dc0385234e',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_expire_box_changed()']]], + ['slot_5fexport_5fprivate_5fkey_1242',['slot_export_private_key',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a384f4250e58110da58c0e6996b42a8ab',1,'GpgFrontend::UI::KeyPairOperaTab']]], + ['slot_5ffile_5ftree_5fview_5fitem_5fclicked_1243',['slot_file_tree_view_item_clicked',['../classGpgFrontend_1_1UI_1_1FilePage.html#a676917817d6f519e043742d1d87f97f1',1,'GpgFrontend::UI::FilePage']]], + ['slot_5ffile_5ftree_5fview_5fitem_5fdouble_5fclicked_1244',['slot_file_tree_view_item_double_clicked',['../classGpgFrontend_1_1UI_1_1FilePage.html#ad3c54320bdafbbb2c06a20d6c7dea9d6',1,'GpgFrontend::UI::FilePage']]], + ['slot_5ffind_1245',['slot_find',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae28089efbd236708601470f30f26faaa',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fformat_5fgpg_5fheader_1246',['slot_format_gpg_header',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a45267bcfc8fc83851894061c0fe2a9c2',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['slot_5fimport_1247',['slot_import',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ac9c14bbc97945c94fd02c8e067ccab06',1,'GpgFrontend::UI::KeyServerImportDialog']]], + ['slot_5fimport_5ffinished_1248',['slot_import_finished',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a6f1c5238da7cd6f117bed8018469b37a',1,'GpgFrontend::UI::KeyServerImportDialog']]], + ['slot_5fimport_5fkey_5ffrom_5fedit_1249',['slot_import_key_from_edit',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a55926649e28a96318b89afba01b966bf',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5finsert_5ftext_1250',['slot_insert_text',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a184985104f23da8fdf2b9aaf7b27405b',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['slot_5fjump_5fpage_1251',['slot_jump_page',['../classGpgFrontend_1_1UI_1_1ChoosePage.html#af0d7890fe65385b7785719b9cff0718b',1,'GpgFrontend::UI::ChoosePage']]], + ['slot_5fkey_5fgen_5faccept_1252',['slot_key_gen_accept',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#af1f7a62dcb024513453766ee8816d514',1,'GpgFrontend::UI::KeyGenDialog::slot_key_gen_accept()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aab426dec4b4655b215b09b490e05ad05',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_key_gen_accept()']]], + ['slot_5fnon_5fexpired_5fchecked_1253',['slot_non_expired_checked',['../classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#adde2b33bd17f521f0630702987b1d274',1,'GpgFrontend::UI::KeySetExpireDateDialog']]], + ['slot_5fopen_5ffile_5ftab_1254',['slot_open_file_tab',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a29a811d4d440c79c1bd2cc2bb40cdf7e',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fopen_5fkey_5fmanagement_1255',['slot_open_key_management',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a16ddebec90a4bd0d13baa9d972c3445f',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fopen_5fsettings_5fdialog_1256',['slot_open_settings_dialog',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a874b505fbc1046f579a736683f5a7f65',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fopen_5furl_1257',['slot_open_url',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a51ff99077a75507365307f5dd783df99',1,'GpgFrontend::UI::HelpPage']]], + ['slot_5fprocess_5fnetwork_5freply_1258',['slot_process_network_reply',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#af9350e0a8d5993e5be0a5478fcb161be',1,'GpgFrontend::UI::ListedKeyServerTestTask']]], + ['slot_5fremove_5ftab_1259',['slot_remove_tab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a12f65fbc4984c266a5df4505ecde7c42',1,'GpgFrontend::UI::TextEdit']]], + ['slot_5fset_5frestart_5fneeded_1260',['slot_set_restart_needed',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#a204f8e834337aea7df2779a494dc6216',1,'GpgFrontend::UI::SettingsDialog']]], + ['slot_5fshow_5fkey_5fdetails_1261',['slot_show_key_details',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a033d448541b44fa48b76dec828a4eb0e',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fshow_5fversion_5fstatus_1262',['slot_show_version_status',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a1003bd969ecbc5deba940e39436968f4',1,'GpgFrontend::UI::UpdateTab']]], + ['slot_5fsign_1263',['slot_sign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3f3d03b0ec22385bee559fbd2aeb881b',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fsign_5fkey_1264',['slot_sign_key',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#a82f6bf641ff3b64341a0bdcf76571c43',1,'GpgFrontend::UI::KeyUIDSignDialog']]], + ['slot_5fsigning_5fbox_5fchanged_1265',['slot_signing_box_changed',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a03b7fe3e34147e404ca3ca6a0aa80cfc',1,'GpgFrontend::UI::KeyGenDialog::slot_signing_box_changed()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aedef4e8784c8a3edb06b0f2821500552',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_signing_box_changed()']]], + ['slot_5fstart_5fwizard_1266',['slot_start_wizard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aabf3ddf6b624790369f164b4889c95be',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fupdate_5fkey_5fstatus_1267',['slot_update_key_status',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#ab4ac26378d6a07757720163eb4b1cb0e',1,'GpgFrontend::UI::CommonUtils']]], + ['slot_5fupload_5fkey_5fto_5fserver_1268',['slot_upload_key_to_server',['../classGpgFrontend_1_1UI_1_1KeyUploadDialog.html#a0f724649ca953b888f07d69c97fe45b6',1,'GpgFrontend::UI::KeyUploadDialog']]], + ['slot_5fverify_1269',['slot_verify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa9c986dd95984811479ea93230c74b5d',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fversion_5fupgrade_1270',['slot_version_upgrade',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a48368c77af7b1f4cb632870b8d914a28',1,'GpgFrontend::UI::MainWindow']]], + ['slotclosetab_1271',['SlotCloseTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa21659aa7acba98dfd6286d69e00ab9b',1,'GpgFrontend::UI::TextEdit']]], + ['slotcopy_1272',['SlotCopy',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3599bd01636a873cf3437ab6b9d38780',1,'GpgFrontend::UI::TextEdit']]], + ['slotcurpagefiletreeview_1273',['SlotCurPageFileTreeView',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a72014409d407c161b048e07c061b4cf9',1,'GpgFrontend::UI::TextEdit']]], + ['slotcurpagetextedit_1274',['SlotCurPageTextEdit',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a48351dc1529da3b8da311f65b735b5f1',1,'GpgFrontend::UI::TextEdit']]], + ['slotcut_1275',['SlotCut',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae1e710c6722910b8d35df97aaabb3162',1,'GpgFrontend::UI::TextEdit']]], + ['slotexecutegpgcommand_1276',['SlotExecuteGpgCommand',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#afc845c1c37487c99f78d8e66f6874f6d',1,'GpgFrontend::UI::CommonUtils']]], + ['slotfiledecrypt_1277',['SlotFileDecrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0a6d0618f2835a6dcae707a4ca770a48',1,'GpgFrontend::UI::MainWindow']]], + ['slotfiledecryptverify_1278',['SlotFileDecryptVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab23c7e67dd1f5295b3c49ad79dfd5919',1,'GpgFrontend::UI::MainWindow']]], + ['slotfileencrypt_1279',['SlotFileEncrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9ec699536a35a37961a8c6da1e231ae3',1,'GpgFrontend::UI::MainWindow']]], + ['slotfileencryptsign_1280',['SlotFileEncryptSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a25a2e4017d77cffc8362bde9606fad30',1,'GpgFrontend::UI::MainWindow']]], + ['slotfilesign_1281',['SlotFileSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8bcdcbe678b8dc0837fffda2ebfe79bf',1,'GpgFrontend::UI::MainWindow']]], + ['slotfileverify_1282',['SlotFileVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9879061cfd321c6757c77f75d46dc7d8',1,'GpgFrontend::UI::MainWindow']]], + ['slotfilltexteditwithtext_1283',['SlotFillTextEditWithText',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af466ec2b8ab3f695d206efc0574bbe20',1,'GpgFrontend::UI::TextEdit']]], + ['slotimport_1284',['SlotImport',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#abb3d99b2c17b0f6ddb0e5b93dd8f8802',1,'GpgFrontend::UI::KeyServerImportDialog::SlotImport(std::vector< std::string > key_ids_list, std::string keyserver_url)'],['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a1e17305d6b470d0f7050eb8e3e6ee3d8',1,'GpgFrontend::UI::KeyServerImportDialog::SlotImport(const KeyIdArgsListPtr &keys)']]], + ['slotimportkeyfromclipboard_1285',['SlotImportKeyFromClipboard',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a0c8bf56fc5371cd2c5e9d2a0f67bf72a',1,'GpgFrontend::UI::CommonUtils']]], + ['slotimportkeyfromfile_1286',['SlotImportKeyFromFile',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a057526790f6b2f6288c3a35322c34d8d',1,'GpgFrontend::UI::CommonUtils']]], + ['slotimportkeyfromkeyserver_1287',['SlotImportKeyFromKeyServer',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#af1b3538d3119c8564e83c7661f73f6ea',1,'GpgFrontend::UI::CommonUtils::SlotImportKeyFromKeyServer(QWidget *parent)'],['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a35a47fc31b81b6c4f5899e8ab5c4c51a',1,'GpgFrontend::UI::CommonUtils::SlotImportKeyFromKeyServer(const GpgFrontend::KeyIdArgsList &key_ids, const GpgFrontend::UI::CommonUtils::ImportCallbackFunctiopn &callback)']]], + ['slotimportkeys_1288',['SlotImportKeys',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a3bc26cc1e0f00f0ce2f95c0b6c8778d8',1,'GpgFrontend::UI::CommonUtils']]], + ['slotnewfiletab_1289',['SlotNewFileTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae22ecadf31648f424eb8ab86bd28ef39',1,'GpgFrontend::UI::TextEdit']]], + ['slotnewhelptab_1290',['slotNewHelpTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3c17fdf3abf9c4fb6ce35cfb8f0f8fc4',1,'GpgFrontend::UI::TextEdit']]], + ['slotnewtab_1291',['SlotNewTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a57a46ab5595622ae0b7bceef7d56bd7c',1,'GpgFrontend::UI::TextEdit']]], + ['slotopen_1292',['SlotOpen',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a15335d38187ddf580b7200d856768cfb',1,'GpgFrontend::UI::TextEdit']]], + ['slotopenfile_1293',['SlotOpenFile',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a05b838ad518857fed24864ecce40c203',1,'GpgFrontend::UI::MainWindow::SlotOpenFile()'],['../classGpgFrontend_1_1UI_1_1TextEdit.html#a72006c9f8f45ac4d154c67f62a29446d',1,'GpgFrontend::UI::TextEdit::SlotOpenFile(QString &path)']]], + ['slotpaste_1294',['SlotPaste',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa2230418dc8f72c400f5a90082a983c9',1,'GpgFrontend::UI::TextEdit']]], + ['slotprint_1295',['SlotPrint',['../classGpgFrontend_1_1UI_1_1TextEdit.html#adca2bbfa746b5598f2a4f74026b84224',1,'GpgFrontend::UI::TextEdit']]], + ['slotquote_1296',['SlotQuote',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6a02fce9dc4039c982d6dd19231517ee',1,'GpgFrontend::UI::TextEdit']]], + ['slotredo_1297',['SlotRedo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae2b3bf422789d56087face98b6a9e929',1,'GpgFrontend::UI::TextEdit']]], + ['slotrefresh_1298',['SlotRefresh',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a68f984815100f4ce281b9794f193e516',1,'GpgFrontend::UI::InfoBoardWidget']]], + ['slotsave_1299',['SlotSave',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ace0b8f4c161db9f4f5db5ecbfd7a91c0',1,'GpgFrontend::UI::TextEdit']]], + ['slotsaveas_1300',['SlotSaveAs',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a02fa44ba0c56f3f6ae125f8490faf254',1,'GpgFrontend::UI::TextEdit']]], + ['slotselectall_1301',['SlotSelectAll',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6c814253dfc061bfdae0fa71c6196c55',1,'GpgFrontend::UI::TextEdit']]], + ['slotsetrestartneeded_1302',['SlotSetRestartNeeded',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab1fb798caf43dd067beca5285444d47d',1,'GpgFrontend::UI::MainWindow']]], + ['slotshowmodified_1303',['SlotShowModified',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a7544182198b729373843635bbfea082a',1,'GpgFrontend::UI::TextEdit']]], + ['slotswitchtabdown_1304',['SlotSwitchTabDown',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a576e06390e65576465297d2ab8d7d474',1,'GpgFrontend::UI::TextEdit']]], + ['slotswitchtabup_1305',['SlotSwitchTabUp',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af1e364b513f566c743a5d36c19098762',1,'GpgFrontend::UI::TextEdit']]], + ['slotundo_1306',['SlotUndo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a4a81e69f6dc74ea649ca9a2358342fd5',1,'GpgFrontend::UI::TextEdit']]], + ['stripped_5fname_1307',['stripped_name',['../classGpgFrontend_1_1UI_1_1TextEdit.html#afb9b7a7d88154d774b3d727d8e640cbb',1,'GpgFrontend::UI::TextEdit']]], + ['subkeygeneratedialog_1308',['SubkeyGenerateDialog',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a8f9d8baa7b576a4aa857818b87c26bcd',1,'GpgFrontend::UI::SubkeyGenerateDialog']]], + ['switch_5fui_5fenabled_1309',['switch_ui_enabled',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#ae3d97948f205e84f0604d4da634a4513',1,'GpgFrontend::UI::NetworkTab']]], + ['switch_5fui_5fproxy_5ftype_1310',['switch_ui_proxy_type',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#a1b0297158f13daec77645c88e5a8adcd',1,'GpgFrontend::UI::NetworkTab']]], + ['syncsettings_1311',['SyncSettings',['../classGpgFrontend_1_1GlobalSettingStation.html#ac061ac8e5308f67ea52b98888bbb2e8d',1,'GpgFrontend::GlobalSettingStation']]] ]; diff --git a/docs/html/search/functions_13.js b/docs/html/search/functions_13.js index 2f192177..4c386d60 100644 --- a/docs/html/search/functions_13.js +++ b/docs/html/search/functions_13.js @@ -1,13 +1,13 @@ var searchData= [ - ['tabcount_1313',['TabCount',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a05c54658597b04c3976c72d3a5f9add9',1,'GpgFrontend::UI::TextEdit']]], - ['takechargeofresult_1314',['TakeChargeOfResult',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#acdb7839a5158f078b38d60f0fefc5155',1,'GpgFrontend::GpgVerifyResultAnalyse']]], - ['task_1315',['Task',['../classGpgFrontend_1_1Thread_1_1Task.html#a1ec53d301fc83e0da39e43055ded5d14',1,'GpgFrontend::Thread::Task::Task()'],['../classGpgFrontend_1_1Thread_1_1Task.html#a35f3065116d2295bb2ddc9f41b1192bb',1,'GpgFrontend::Thread::Task::Task(TaskCallback callback, DataObjectPtr data_object=nullptr)'],['../classGpgFrontend_1_1Thread_1_1Task.html#aa242a8e025c448aacd0704b7d0b3c001',1,'GpgFrontend::Thread::Task::Task(TaskRunnable runnable, TaskCallback callback=[](int, std::shared_ptr< DataObject >) {}, DataObjectPtr data=nullptr)']]], - ['taskrunner_1316',['TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#ad3c8612cbe60112f9b14e616fb0a4acf',1,'GpgFrontend::Thread::TaskRunner']]], - ['taskrunnergetter_1317',['TaskRunnerGetter',['../classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html#a80794d81179f66f4b4ed3122a64f27cf',1,'GpgFrontend::Thread::TaskRunnerGetter']]], - ['test_5fpassphrase_5fcb_1318',['test_passphrase_cb',['../classGpgFrontend_1_1GpgContext.html#acc4234054002065dfbc5d5261a4950d4',1,'GpgFrontend::GpgContext']]], - ['test_5fstatus_5fcb_1319',['test_status_cb',['../classGpgFrontend_1_1GpgContext.html#a3844cd0966134939e5c4be9a725e5271',1,'GpgFrontend::GpgContext']]], - ['text_5fis_5fsigned_1320',['text_is_signed',['../namespaceGpgFrontend.html#a2a0394c8bdd277f5235f9875a1d69a99',1,'GpgFrontend']]], - ['tofuinfopage_1321',['TOFUInfoPage',['../classGpgFrontend_1_1UI_1_1TOFUInfoPage.html#a9adc1666e3f57536594876520019e395',1,'GpgFrontend::UI::TOFUInfoPage']]], - ['translatorstab_1322',['TranslatorsTab',['../classGpgFrontend_1_1UI_1_1TranslatorsTab.html#a89e5c7b9c17fb41b7c7bf461fb8ad99e',1,'GpgFrontend::UI::TranslatorsTab']]] + ['tabcount_1312',['TabCount',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a05c54658597b04c3976c72d3a5f9add9',1,'GpgFrontend::UI::TextEdit']]], + ['takechargeofresult_1313',['TakeChargeOfResult',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#acdb7839a5158f078b38d60f0fefc5155',1,'GpgFrontend::GpgVerifyResultAnalyse']]], + ['task_1314',['Task',['../classGpgFrontend_1_1Thread_1_1Task.html#a1ec53d301fc83e0da39e43055ded5d14',1,'GpgFrontend::Thread::Task::Task()'],['../classGpgFrontend_1_1Thread_1_1Task.html#a35f3065116d2295bb2ddc9f41b1192bb',1,'GpgFrontend::Thread::Task::Task(TaskCallback callback, DataObjectPtr data_object=nullptr)'],['../classGpgFrontend_1_1Thread_1_1Task.html#aa242a8e025c448aacd0704b7d0b3c001',1,'GpgFrontend::Thread::Task::Task(TaskRunnable runnable, TaskCallback callback=[](int, std::shared_ptr< DataObject >) {}, DataObjectPtr data=nullptr)']]], + ['taskrunner_1315',['TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#ad3c8612cbe60112f9b14e616fb0a4acf',1,'GpgFrontend::Thread::TaskRunner']]], + ['taskrunnergetter_1316',['TaskRunnerGetter',['../classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html#a80794d81179f66f4b4ed3122a64f27cf',1,'GpgFrontend::Thread::TaskRunnerGetter']]], + ['test_5fpassphrase_5fcb_1317',['test_passphrase_cb',['../classGpgFrontend_1_1GpgContext.html#acc4234054002065dfbc5d5261a4950d4',1,'GpgFrontend::GpgContext']]], + ['test_5fstatus_5fcb_1318',['test_status_cb',['../classGpgFrontend_1_1GpgContext.html#a3844cd0966134939e5c4be9a725e5271',1,'GpgFrontend::GpgContext']]], + ['text_5fis_5fsigned_1319',['text_is_signed',['../namespaceGpgFrontend.html#a2a0394c8bdd277f5235f9875a1d69a99',1,'GpgFrontend']]], + ['tofuinfopage_1320',['TOFUInfoPage',['../classGpgFrontend_1_1UI_1_1TOFUInfoPage.html#a9adc1666e3f57536594876520019e395',1,'GpgFrontend::UI::TOFUInfoPage']]], + ['translatorstab_1321',['TranslatorsTab',['../classGpgFrontend_1_1UI_1_1TranslatorsTab.html#a89e5c7b9c17fb41b7c7bf461fb8ad99e',1,'GpgFrontend::UI::TranslatorsTab']]] ]; diff --git a/docs/html/search/functions_14.js b/docs/html/search/functions_14.js index 4ff7d608..15416e1c 100644 --- a/docs/html/search/functions_14.js +++ b/docs/html/search/functions_14.js @@ -1,6 +1,6 @@ var searchData= [ - ['unsaveddocuments_1323',['UnsavedDocuments',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a82fe98d45f54909ebea933b540367c39',1,'GpgFrontend::UI::TextEdit']]], - ['updatetab_1324',['UpdateTab',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a833c5f709607032bac530aacf389a117',1,'GpgFrontend::UI::UpdateTab']]], - ['upload_5fkey_5fto_5fserver_1325',['upload_key_to_server',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad27dcf3f534f13d8df71df680c4d177c',1,'GpgFrontend::UI::MainWindow']]] + ['unsaveddocuments_1322',['UnsavedDocuments',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a82fe98d45f54909ebea933b540367c39',1,'GpgFrontend::UI::TextEdit']]], + ['updatetab_1323',['UpdateTab',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a833c5f709607032bac530aacf389a117',1,'GpgFrontend::UI::UpdateTab']]], + ['upload_5fkey_5fto_5fserver_1324',['upload_key_to_server',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad27dcf3f534f13d8df71df680c4d177c',1,'GpgFrontend::UI::MainWindow']]] ]; diff --git a/docs/html/search/functions_15.js b/docs/html/search/functions_15.js index 9df0dabc..f007fec6 100644 --- a/docs/html/search/functions_15.js +++ b/docs/html/search/functions_15.js @@ -1,9 +1,9 @@ var searchData= [ - ['verify_1326',['Verify',['../classGpgFrontend_1_1GpgBasicOperator.html#af0347cb28ff73b2250395ceaa9001509',1,'GpgFrontend::GpgBasicOperator']]], - ['verifydetailsdialog_1327',['VerifyDetailsDialog',['../classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#ac73f0405e249f623ddd0de22b5130fda',1,'GpgFrontend::UI::VerifyDetailsDialog']]], - ['verifyfile_1328',['VerifyFile',['../classGpgFrontend_1_1GpgFileOpera.html#a14cddfe822c9410cd9c301d08963b7e7',1,'GpgFrontend::GpgFileOpera']]], - ['verifykeydetailbox_1329',['VerifyKeyDetailBox',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#afbbe8e87786cca020c9aa8759eb041a0',1,'GpgFrontend::UI::VerifyKeyDetailBox']]], - ['versionchecktask_1330',['VersionCheckTask',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9f7a810ae1aa78c2a61e86e7757da385',1,'GpgFrontend::UI::VersionCheckTask']]], - ['versionwithdrawn_1331',['VersionWithDrawn',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a587a3fdb047a15c3771c2af5eebdbf4b',1,'GpgFrontend::UI::SoftwareVersion']]] + ['verify_1325',['Verify',['../classGpgFrontend_1_1GpgBasicOperator.html#af0347cb28ff73b2250395ceaa9001509',1,'GpgFrontend::GpgBasicOperator']]], + ['verifydetailsdialog_1326',['VerifyDetailsDialog',['../classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#ac73f0405e249f623ddd0de22b5130fda',1,'GpgFrontend::UI::VerifyDetailsDialog']]], + ['verifyfile_1327',['VerifyFile',['../classGpgFrontend_1_1GpgFileOpera.html#a14cddfe822c9410cd9c301d08963b7e7',1,'GpgFrontend::GpgFileOpera']]], + ['verifykeydetailbox_1328',['VerifyKeyDetailBox',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#afbbe8e87786cca020c9aa8759eb041a0',1,'GpgFrontend::UI::VerifyKeyDetailBox']]], + ['versionchecktask_1329',['VersionCheckTask',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9f7a810ae1aa78c2a61e86e7757da385',1,'GpgFrontend::UI::VersionCheckTask']]], + ['versionwithdrawn_1330',['VersionWithDrawn',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a587a3fdb047a15c3771c2af5eebdbf4b',1,'GpgFrontend::UI::SoftwareVersion']]] ]; diff --git a/docs/html/search/functions_16.js b/docs/html/search/functions_16.js index cbb73298..0c8c5495 100644 --- a/docs/html/search/functions_16.js +++ b/docs/html/search/functions_16.js @@ -1,9 +1,9 @@ var searchData= [ - ['waitingdialog_1332',['WaitingDialog',['../classGpgFrontend_1_1UI_1_1WaitingDialog.html#a809d0ffc8208eb2ff5d8da76c8ee10dc',1,'GpgFrontend::UI::WaitingDialog']]], - ['willcharsetchange_1333',['WillCharsetChange',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a1c1c0174ed1ed9c5a90739eafc5c3267',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['wizard_1334',['Wizard',['../classGpgFrontend_1_1UI_1_1Wizard.html#a448db8fe5ace96418ffd1f23b0142b10',1,'GpgFrontend::UI::Wizard']]], - ['write_5fbuffer_5fto_5ffile_1335',['write_buffer_to_file',['../namespaceGpgFrontend.html#a5135069571678eda9c1f07d17ed9ac41',1,'GpgFrontend']]], - ['writefile_1336',['WriteFile',['../classGpgFrontend_1_1FileOperator.html#a2f21ef4a88448b1eddf756302913d338',1,'GpgFrontend::FileOperator']]], - ['writefilestd_1337',['WriteFileStd',['../classGpgFrontend_1_1FileOperator.html#a51121c94dc32a83d7073fbe7138b603b',1,'GpgFrontend::FileOperator']]] + ['waitingdialog_1331',['WaitingDialog',['../classGpgFrontend_1_1UI_1_1WaitingDialog.html#a809d0ffc8208eb2ff5d8da76c8ee10dc',1,'GpgFrontend::UI::WaitingDialog']]], + ['willcharsetchange_1332',['WillCharsetChange',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a1c1c0174ed1ed9c5a90739eafc5c3267',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['wizard_1333',['Wizard',['../classGpgFrontend_1_1UI_1_1Wizard.html#a448db8fe5ace96418ffd1f23b0142b10',1,'GpgFrontend::UI::Wizard']]], + ['write_5fbuffer_5fto_5ffile_1334',['write_buffer_to_file',['../namespaceGpgFrontend.html#a5135069571678eda9c1f07d17ed9ac41',1,'GpgFrontend']]], + ['writefile_1335',['WriteFile',['../classGpgFrontend_1_1FileOperator.html#a2f21ef4a88448b1eddf756302913d338',1,'GpgFrontend::FileOperator']]], + ['writefilestd_1336',['WriteFileStd',['../classGpgFrontend_1_1FileOperator.html#a51121c94dc32a83d7073fbe7138b603b',1,'GpgFrontend::FileOperator']]] ]; diff --git a/docs/html/search/functions_17.js b/docs/html/search/functions_17.js index 9339b351..da5476eb 100644 --- a/docs/html/search/functions_17.js +++ b/docs/html/search/functions_17.js @@ -1,14 +1,14 @@ var searchData= [ - ['_7edataobject_1338',['~DataObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a85bb3c482bf6f47edcd6593cca568a22',1,'GpgFrontend::Thread::Task::DataObject']]], - ['_7eglobalsettingstation_1339',['~GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html#af700161900e623a0ea14261d51616451',1,'GpgFrontend::GlobalSettingStation']]], - ['_7egpgcontext_1340',['~GpgContext',['../classGpgFrontend_1_1GpgContext.html#ae89dee551354c1541337881898832725',1,'GpgFrontend::GpgContext']]], - ['_7egpgfrontendapplication_1341',['~GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a32f0e7dda69f7b1e3cc869340736c590',1,'GpgFrontend::UI::GpgFrontendApplication']]], - ['_7egpgkey_1342',['~GpgKey',['../classGpgFrontend_1_1GpgKey.html#a1e9223bb1ad8fbb4e769680de39b3697',1,'GpgFrontend::GpgKey']]], - ['_7egpgkeysignature_1343',['~GpgKeySignature',['../classGpgFrontend_1_1GpgKeySignature.html#ab4d7044f4e1ddcf0ae0d28be43f0fcb3',1,'GpgFrontend::GpgKeySignature']]], - ['_7egpgsignature_1344',['~GpgSignature',['../classGpgFrontend_1_1GpgSignature.html#a44f137a457ac109d145a1cdd8e544e3a',1,'GpgFrontend::GpgSignature']]], - ['_7esettingsobject_1345',['~SettingsObject',['../classGpgFrontend_1_1UI_1_1SettingsObject.html#ae71336d240ace35756d1852a46271f6c',1,'GpgFrontend::UI::SettingsObject']]], - ['_7esingletonfunctionobject_1346',['~SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html#a8296be8c449f88175285186831b995bc',1,'GpgFrontend::SingletonFunctionObject']]], - ['_7etask_1347',['~Task',['../classGpgFrontend_1_1Thread_1_1Task.html#a37766a505662b33ad14672c29e209ea8',1,'GpgFrontend::Thread::Task']]], - ['_7etaskrunner_1348',['~TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#ac3e57b59d537e2a75e741d4a5418ae6d',1,'GpgFrontend::Thread::TaskRunner']]] + ['_7edataobject_1337',['~DataObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a85bb3c482bf6f47edcd6593cca568a22',1,'GpgFrontend::Thread::Task::DataObject']]], + ['_7eglobalsettingstation_1338',['~GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html#af700161900e623a0ea14261d51616451',1,'GpgFrontend::GlobalSettingStation']]], + ['_7egpgcontext_1339',['~GpgContext',['../classGpgFrontend_1_1GpgContext.html#ae89dee551354c1541337881898832725',1,'GpgFrontend::GpgContext']]], + ['_7egpgfrontendapplication_1340',['~GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a32f0e7dda69f7b1e3cc869340736c590',1,'GpgFrontend::UI::GpgFrontendApplication']]], + ['_7egpgkey_1341',['~GpgKey',['../classGpgFrontend_1_1GpgKey.html#a1e9223bb1ad8fbb4e769680de39b3697',1,'GpgFrontend::GpgKey']]], + ['_7egpgkeysignature_1342',['~GpgKeySignature',['../classGpgFrontend_1_1GpgKeySignature.html#ab4d7044f4e1ddcf0ae0d28be43f0fcb3',1,'GpgFrontend::GpgKeySignature']]], + ['_7egpgsignature_1343',['~GpgSignature',['../classGpgFrontend_1_1GpgSignature.html#a44f137a457ac109d145a1cdd8e544e3a',1,'GpgFrontend::GpgSignature']]], + ['_7esettingsobject_1344',['~SettingsObject',['../classGpgFrontend_1_1UI_1_1SettingsObject.html#ae71336d240ace35756d1852a46271f6c',1,'GpgFrontend::UI::SettingsObject']]], + ['_7esingletonfunctionobject_1345',['~SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html#a8296be8c449f88175285186831b995bc',1,'GpgFrontend::SingletonFunctionObject']]], + ['_7etask_1346',['~Task',['../classGpgFrontend_1_1Thread_1_1Task.html#a37766a505662b33ad14672c29e209ea8',1,'GpgFrontend::Thread::Task']]], + ['_7etaskrunner_1347',['~TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#ac3e57b59d537e2a75e741d4a5418ae6d',1,'GpgFrontend::Thread::TaskRunner']]] ]; diff --git a/docs/html/search/functions_3.js b/docs/html/search/functions_3.js index 49a8973e..dffe43db 100644 --- a/docs/html/search/functions_3.js +++ b/docs/html/search/functions_3.js @@ -8,7 +8,7 @@ var searchData= ['check_5fgpg_5ferror_5f2_5ferr_5fcode_846',['check_gpg_error_2_err_code',['../namespaceGpgFrontend.html#a4edac6df92596ba8eea3a8cdc1173684',1,'GpgFrontend']]], ['choosepage_847',['ChoosePage',['../classGpgFrontend_1_1UI_1_1ChoosePage.html#ae370e789009be3926410cb749c86907b',1,'GpgFrontend::UI::ChoosePage']]], ['close_5fattachment_5fdock_848',['close_attachment_dock',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a473b679fa0dc3cdf4f6f98d6553fa0ec',1,'GpgFrontend::UI::MainWindow']]], - ['closeevent_849',['closeEvent',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1759412cb7ee71600c4b6e3c6e752d2e',1,'GpgFrontend::UI::MainWindow::closeEvent()'],['../classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#acc10569862d1575d9453d1c1aa539242',1,'GpgFrontend::UI::GeneralMainWindow::closeEvent()']]], + ['closeevent_849',['closeEvent',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1759412cb7ee71600c4b6e3c6e752d2e',1,'GpgFrontend::UI::MainWindow::closeEvent()'],['../classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#af5c86754836a678c7058e6f633968863',1,'GpgFrontend::UI::GeneralMainWindow::closeEvent()']]], ['closenotebyclass_850',['CloseNoteByClass',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aee4f46e54f29da671838ed232e526700',1,'GpgFrontend::UI::PlainTextEditorPage']]], ['commonutils_851',['CommonUtils',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a78f5c2696152e9326e845c76c94be965',1,'GpgFrontend::UI::CommonUtils']]], ['conclusionpage_852',['ConclusionPage',['../classGpgFrontend_1_1UI_1_1ConclusionPage.html#afcd98b4735047807d384e6b3d3aea3a7',1,'GpgFrontend::UI::ConclusionPage']]], diff --git a/docs/html/search/functions_7.js b/docs/html/search/functions_7.js index 28b40371..ea55741d 100644 --- a/docs/html/search/functions_7.js +++ b/docs/html/search/functions_7.js @@ -43,8 +43,8 @@ var searchData= ['getfilepath_957',['GetFilePath',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aff81f0f98a399fa55b6b0ebf2230d4cf',1,'GpgFrontend::UI::PlainTextEditorPage']]], ['getfingerprint_958',['GetFingerprint',['../classGpgFrontend_1_1GpgSubKey.html#a09b00ac6a3b934b816f9522f78e77d59',1,'GpgFrontend::GpgSubKey::GetFingerprint()'],['../classGpgFrontend_1_1GpgKey.html#a165b3f645e2c6a4bbd024199e1f1cc9b',1,'GpgFrontend::GpgKey::GetFingerprint()'],['../classGpgFrontend_1_1GpgSignature.html#a627b5206311998dd3f45393344b195be',1,'GpgFrontend::GpgSignature::GetFingerprint() const']]], ['gethashalgo_959',['GetHashAlgo',['../classGpgFrontend_1_1GpgSignature.html#ace10a3ac7f4dc3888b2ad62157213f1c',1,'GpgFrontend::GpgSignature']]], - ['getid_960',['GetID',['../classGpgFrontend_1_1GpgSubKey.html#a48d3dfbd3aae9523ffbdb916aad8ad53',1,'GpgFrontend::GpgSubKey']]], - ['getid_961',['GetId',['../classGpgFrontend_1_1GpgKey.html#a8930f958f3ca1f5566f63e8c2273837e',1,'GpgFrontend::GpgKey']]], + ['getid_960',['GetId',['../classGpgFrontend_1_1GpgKey.html#a8930f958f3ca1f5566f63e8c2273837e',1,'GpgFrontend::GpgKey']]], + ['getid_961',['GetID',['../classGpgFrontend_1_1GpgSubKey.html#a48d3dfbd3aae9523ffbdb916aad8ad53',1,'GpgFrontend::GpgSubKey']]], ['getinfo_962',['GetInfo',['../classGpgFrontend_1_1GpgContext.html#ad9af3461de36f74ee85be2523f6038e2',1,'GpgFrontend::GpgContext']]], ['getinstance_963',['GetInstance',['../classGpgFrontend_1_1CoreCommonUtil.html#a8588dfa6ccb57c055f022b13e2da1e7c',1,'GpgFrontend::CoreCommonUtil::GetInstance()'],['../classGpgFrontend_1_1UI_1_1SignalStation.html#abe381ce56a7b157a3760b2fd9c3b7419',1,'GpgFrontend::UI::SignalStation::GetInstance()'],['../classGpgFrontend_1_1UI_1_1CommonUtils.html#aed529969f54e39e3f9da14ae6dd00d49',1,'GpgFrontend::UI::CommonUtils::GetInstance()'],['../classGpgFrontend_1_1SingletonStorageCollection.html#a16b4729ca79dcdccc794df70aa2a5aaf',1,'GpgFrontend::SingletonStorageCollection::GetInstance()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a70484d7cfe9f9dcbcd5f8bb749250f36',1,'GpgFrontend::SingletonFunctionObject::GetInstance()'],['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a9b341a1a903cec0c70a6af4bb230905e',1,'GpgFrontend::UI::GpgFrontendApplication::GetInstance()']]], ['getinvalid_964',['GetInvalid',['../classGpgFrontend_1_1GpgUID.html#a388ad367d353edd5eeb6e529977c924c',1,'GpgFrontend::GpgUID']]], @@ -88,10 +88,10 @@ var searchData= ['getsuggestmaxkeysize_1002',['GetSuggestMaxKeySize',['../classGpgFrontend_1_1GenKeyInfo.html#ae461a553176ad1ab0c1121ea6de6c8c2',1,'GpgFrontend::GenKeyInfo']]], ['getsuggestminkeysize_1003',['GetSuggestMinKeySize',['../classGpgFrontend_1_1GenKeyInfo.html#a0b1612421148b86919b7130ed148ca51',1,'GpgFrontend::GenKeyInfo']]], ['getsummary_1004',['GetSummary',['../classGpgFrontend_1_1GpgSignature.html#a3b143f6e13b71663d81fc0f326aad17f',1,'GpgFrontend::GpgSignature']]], - ['getsupportedkeyalgo_1005',['GetSupportedKeyAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#ac0dbb2d89b1e5f9b272679ba3f24314e',1,'GpgFrontend::GenKeyInfo']]], - ['getsupportedkeyalgostandalone_1006',['GetSupportedKeyAlgoStandalone',['../classGpgFrontend_1_1GenKeyInfo.html#afb8315b6612c64b3921b72df98ebcc74',1,'GpgFrontend::GenKeyInfo']]], - ['getsupportedsubkeyalgo_1007',['GetSupportedSubkeyAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#a168d6fe5252812f5984ba6d8046c7741',1,'GpgFrontend::GenKeyInfo']]], - ['getsupportedsubkeyalgostandalone_1008',['GetSupportedSubkeyAlgoStandalone',['../classGpgFrontend_1_1GenKeyInfo.html#a6819b0ca3ef7712b85ae320030cde023',1,'GpgFrontend::GenKeyInfo']]], + ['getsupportedkeyalgo_1005',['GetSupportedKeyAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#a185c7be801854f81879351a6c4dd9071',1,'GpgFrontend::GenKeyInfo']]], + ['getsupportedkeyalgostandalone_1006',['GetSupportedKeyAlgoStandalone',['../classGpgFrontend_1_1GenKeyInfo.html#a8b054a66cb0678af6c42090eea1518e4',1,'GpgFrontend::GenKeyInfo']]], + ['getsupportedsubkeyalgo_1007',['GetSupportedSubkeyAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#a7855d9fe9b6872ff08a60fe21640d07f',1,'GpgFrontend::GenKeyInfo']]], + ['getsupportedsubkeyalgostandalone_1008',['GetSupportedSubkeyAlgoStandalone',['../classGpgFrontend_1_1GenKeyInfo.html#a310fd0cdac03d0b0a7fde006105866d6',1,'GpgFrontend::GenKeyInfo']]], ['gettabidstosave_1009',['GetTabIdsToSave',['../classGpgFrontend_1_1UI_1_1QuitDialog.html#aec364c38056b6d92c172f8cdfb5f8e82',1,'GpgFrontend::UI::QuitDialog']]], ['gettextpage_1010',['GetTextPage',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a6218e6e12bdba0228e4ab4276f7fed7a',1,'GpgFrontend::UI::PlainTextEditorPage']]], ['gettofuinfos_1011',['GetTofuInfos',['../classGpgFrontend_1_1GpgUID.html#a2a36376484f7c1a4a19377d24e47a0b2',1,'GpgFrontend::GpgUID']]], diff --git a/docs/html/search/pages_0.js b/docs/html/search/pages_0.js index 79f7fd6c..123eb509 100644 --- a/docs/html/search/pages_0.js +++ b/docs/html/search/pages_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['gpgfrontend_20develop_20document_20main_20page_1472',['GpgFrontend Develop Document Main Page',['../index.html',1,'']]] + ['gpgfrontend_20develop_20document_20main_20page_1471',['GpgFrontend Develop Document Main Page',['../index.html',1,'']]] ]; diff --git a/docs/html/search/variables_0.js b/docs/html/search/variables_0.js index e7a04e72..e1013b7d 100644 --- a/docs/html/search/variables_0.js +++ b/docs/html/search/variables_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['_5fdefault_5fchannel_1349',['_default_channel',['../classGpgFrontend_1_1ChannelObject.html#a66295bb572e98fc2fad3afce763ac311',1,'GpgFrontend::ChannelObject']]] + ['_5fdefault_5fchannel_1348',['_default_channel',['../classGpgFrontend_1_1ChannelObject.html#a66295bb572e98fc2fad3afce763ac311',1,'GpgFrontend::ChannelObject']]] ]; diff --git a/docs/html/search/variables_1.js b/docs/html/search/variables_1.js index b48d420f..af01a458 100644 --- a/docs/html/search/variables_1.js +++ b/docs/html/search/variables_1.js @@ -1,19 +1,19 @@ var searchData= [ - ['about_5fact_5f_1350',['about_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9dd292f55fba1fe62c83508fef7e43a1',1,'GpgFrontend::UI::MainWindow']]], - ['add_5fpgp_5fheader_5fact_5f_1351',['add_pgp_header_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a95b2c86afbefe47e79af87e56032e306',1,'GpgFrontend::UI::MainWindow']]], - ['additional_5fuid_5fbox_5f_1352',['additional_uid_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a265ef140feec330e7341c1369c0aefab',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['algorithm_5fvar_5flabel_5f_1353',['algorithm_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aadcb3bbb4233fdc2deca5b509c46b2e1',1,'GpgFrontend::UI::KeyPairDetailTab::algorithm_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a1790a8b163b94f33a3bb968f9a19f00c',1,'GpgFrontend::UI::KeyPairSubkeyTab::algorithm_var_label_()']]], - ['app_5fconfigure_5fpath_5f_1354',['app_configure_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a4d04bb665571921421b853f18b8b300a',1,'GpgFrontend::GlobalSettingStation']]], - ['app_5fdata_5fobjs_5fpath_5f_1355',['app_data_objs_path_',['../classGpgFrontend_1_1DataObjectOperator.html#ae6762d4f0f5ca2e83f7c1508cd25cc21',1,'GpgFrontend::DataObjectOperator::app_data_objs_path_()'],['../classGpgFrontend_1_1GlobalSettingStation.html#ad0600d475f6758503b1347722e2a933a',1,'GpgFrontend::GlobalSettingStation::app_data_objs_path_()']]], - ['app_5fdata_5fpath_5f_1356',['app_data_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a58fff8a42f98ad7989bffb8322344cd6',1,'GpgFrontend::GlobalSettingStation']]], - ['app_5flocale_5fpath_5f_1357',['app_locale_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a25c1b45a2ccdc21dd2dcba58866169fb',1,'GpgFrontend::GlobalSettingStation']]], - ['app_5flog_5fpath_5f_1358',['app_log_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a6459653a71cc8285fa554943c7fb3ca7',1,'GpgFrontend::GlobalSettingStation']]], - ['app_5fpath_5f_1359',['app_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a678f8ba120f9ad050d0adfec4476d7ac',1,'GpgFrontend::GlobalSettingStation']]], - ['app_5fresource_5fpath_5f_1360',['app_resource_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a1d94a126c78ac01ec01f10d2ce575388',1,'GpgFrontend::GlobalSettingStation']]], - ['app_5fsecure_5fkey_5fpath_5f_1361',['app_secure_key_path_',['../classGpgFrontend_1_1DataObjectOperator.html#a56c0c031cd327207260c73d1885dbdca',1,'GpgFrontend::DataObjectOperator']]], - ['app_5fsecure_5fpath_5f_1362',['app_secure_path_',['../classGpgFrontend_1_1DataObjectOperator.html#a6d38d25c91c33c48d083ec4de051108a',1,'GpgFrontend::DataObjectOperator']]], - ['append_5fselected_5fkeys_5fact_5f_1363',['append_selected_keys_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab67486a71126073e7c39ca12603198f4',1,'GpgFrontend::UI::MainWindow']]], - ['apppath_1364',['AppPath',['../classGpgFrontend_1_1GpgInfo.html#a2416ae0ab9bedc61782d16075750a9c0',1,'GpgFrontend::GpgInfo']]], - ['attachment_5fdock_5f_1365',['attachment_dock_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#afd243a5f00f86d65431081ead2cae153',1,'GpgFrontend::UI::MainWindow']]] + ['about_5fact_5f_1349',['about_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9dd292f55fba1fe62c83508fef7e43a1',1,'GpgFrontend::UI::MainWindow']]], + ['add_5fpgp_5fheader_5fact_5f_1350',['add_pgp_header_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a95b2c86afbefe47e79af87e56032e306',1,'GpgFrontend::UI::MainWindow']]], + ['additional_5fuid_5fbox_5f_1351',['additional_uid_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a265ef140feec330e7341c1369c0aefab',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['algorithm_5fvar_5flabel_5f_1352',['algorithm_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aadcb3bbb4233fdc2deca5b509c46b2e1',1,'GpgFrontend::UI::KeyPairDetailTab::algorithm_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a1790a8b163b94f33a3bb968f9a19f00c',1,'GpgFrontend::UI::KeyPairSubkeyTab::algorithm_var_label_()']]], + ['app_5fconfigure_5fpath_5f_1353',['app_configure_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a4d04bb665571921421b853f18b8b300a',1,'GpgFrontend::GlobalSettingStation']]], + ['app_5fdata_5fobjs_5fpath_5f_1354',['app_data_objs_path_',['../classGpgFrontend_1_1DataObjectOperator.html#ae6762d4f0f5ca2e83f7c1508cd25cc21',1,'GpgFrontend::DataObjectOperator::app_data_objs_path_()'],['../classGpgFrontend_1_1GlobalSettingStation.html#ad0600d475f6758503b1347722e2a933a',1,'GpgFrontend::GlobalSettingStation::app_data_objs_path_()']]], + ['app_5fdata_5fpath_5f_1355',['app_data_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a58fff8a42f98ad7989bffb8322344cd6',1,'GpgFrontend::GlobalSettingStation']]], + ['app_5flocale_5fpath_5f_1356',['app_locale_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a25c1b45a2ccdc21dd2dcba58866169fb',1,'GpgFrontend::GlobalSettingStation']]], + ['app_5flog_5fpath_5f_1357',['app_log_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a6459653a71cc8285fa554943c7fb3ca7',1,'GpgFrontend::GlobalSettingStation']]], + ['app_5fpath_5f_1358',['app_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a678f8ba120f9ad050d0adfec4476d7ac',1,'GpgFrontend::GlobalSettingStation']]], + ['app_5fresource_5fpath_5f_1359',['app_resource_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a1d94a126c78ac01ec01f10d2ce575388',1,'GpgFrontend::GlobalSettingStation']]], + ['app_5fsecure_5fkey_5fpath_5f_1360',['app_secure_key_path_',['../classGpgFrontend_1_1DataObjectOperator.html#a56c0c031cd327207260c73d1885dbdca',1,'GpgFrontend::DataObjectOperator']]], + ['app_5fsecure_5fpath_5f_1361',['app_secure_path_',['../classGpgFrontend_1_1DataObjectOperator.html#a6d38d25c91c33c48d083ec4de051108a',1,'GpgFrontend::DataObjectOperator']]], + ['append_5fselected_5fkeys_5fact_5f_1362',['append_selected_keys_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab67486a71126073e7c39ca12603198f4',1,'GpgFrontend::UI::MainWindow']]], + ['apppath_1363',['AppPath',['../classGpgFrontend_1_1GpgInfo.html#a2416ae0ab9bedc61782d16075750a9c0',1,'GpgFrontend::GpgInfo']]], + ['attachment_5fdock_5f_1364',['attachment_dock_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#afd243a5f00f86d65431081ead2cae153',1,'GpgFrontend::UI::MainWindow']]] ]; diff --git a/docs/html/search/variables_10.js b/docs/html/search/variables_10.js index 0eea3fd3..7fd65f84 100644 --- a/docs/html/search/variables_10.js +++ b/docs/html/search/variables_10.js @@ -1,5 +1,5 @@ var searchData= [ - ['quit_5fact_5f_1444',['quit_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#abe0683e48485f9fcff622d9519c37ed9',1,'GpgFrontend::UI::MainWindow']]], - ['quote_5fact_5f_1445',['quote_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af9640e5732c2595d0c094e7ff7e371ac',1,'GpgFrontend::UI::MainWindow']]] + ['quit_5fact_5f_1443',['quit_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#abe0683e48485f9fcff622d9519c37ed9',1,'GpgFrontend::UI::MainWindow']]], + ['quote_5fact_5f_1444',['quote_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af9640e5732c2595d0c094e7ff7e371ac',1,'GpgFrontend::UI::MainWindow']]] ]; diff --git a/docs/html/search/variables_11.js b/docs/html/search/variables_11.js index 7d103913..ea7325de 100644 --- a/docs/html/search/variables_11.js +++ b/docs/html/search/variables_11.js @@ -1,5 +1,5 @@ var searchData= [ - ['rd_5f_1446',['rd_',['../classGpgFrontend_1_1DataObjectOperator.html#a24c9cdbe9256e332ac93d6dc28c76b90',1,'GpgFrontend::DataObjectOperator::rd_()'],['../classGpgFrontend_1_1PassphraseGenerator.html#a12ee6f9b7fff4883074321c7e0de3dfa',1,'GpgFrontend::PassphraseGenerator::rd_()']]], - ['redo_5fact_5f_1447',['redo_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#abe38474d4e81726147f9df8a9721ce6e',1,'GpgFrontend::UI::MainWindow']]] + ['rd_5f_1445',['rd_',['../classGpgFrontend_1_1DataObjectOperator.html#a24c9cdbe9256e332ac93d6dc28c76b90',1,'GpgFrontend::DataObjectOperator::rd_()'],['../classGpgFrontend_1_1PassphraseGenerator.html#a12ee6f9b7fff4883074321c7e0de3dfa',1,'GpgFrontend::PassphraseGenerator::rd_()']]], + ['redo_5fact_5f_1446',['redo_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#abe38474d4e81726147f9df8a9721ce6e',1,'GpgFrontend::UI::MainWindow']]] ]; diff --git a/docs/html/search/variables_12.js b/docs/html/search/variables_12.js index 72c2503a..50249b11 100644 --- a/docs/html/search/variables_12.js +++ b/docs/html/search/variables_12.js @@ -1,15 +1,15 @@ var searchData= [ - ['save_5fact_5f_1448',['save_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab0f148559d830fcf10b5a1937b0a47dc',1,'GpgFrontend::UI::MainWindow']]], - ['save_5fas_5fact_5f_1449',['save_as_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a22256763ef83ed35a81e446b553d8112',1,'GpgFrontend::UI::MainWindow']]], - ['select_5fall_5fact_5f_1450',['select_all_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ac6a42e6e3af7e76f0bd2ecc62c9520cc',1,'GpgFrontend::UI::MainWindow']]], - ['show_5fkey_5fdetails_5fact_5f_1451',['show_key_details_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#acd41722ceedd20973b7d83852fab407b',1,'GpgFrontend::UI::MainWindow']]], - ['sign_5fact_5f_1452',['sign_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0cded37ef6e07856bbe439b0e90db839',1,'GpgFrontend::UI::MainWindow']]], - ['sign_5fmarked_5f_1453',['sign_marked_',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a4f94e9ef7889a169bda5a47b7f657358',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['special_5fedit_5ftool_5fbar_5f_1454',['special_edit_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af2b3e3a0e9894633e1839df289f5ffe0',1,'GpgFrontend::UI::MainWindow']]], - ['start_5fwizard_5fact_5f_1455',['start_wizard_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab0019ca316b971c594c2f20f418256a6',1,'GpgFrontend::UI::MainWindow']]], - ['steganography_5fmenu_5f_1456',['steganography_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af763a506aed7d0fb2125d1859583b853',1,'GpgFrontend::UI::MainWindow']]], - ['storages_5fmutex_5f_1457',['storages_mutex_',['../classGpgFrontend_1_1SingletonStorageCollection.html#ab648cb257beb2475eb5fca6453c331f9',1,'GpgFrontend::SingletonStorageCollection']]], - ['switch_5ftab_5fdown_5fact_5f_1458',['switch_tab_down_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a88af746cd550792ab6095d2ebbd29b41',1,'GpgFrontend::UI::MainWindow']]], - ['switch_5ftab_5fup_5fact_5f_1459',['switch_tab_up_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8d5ce6514ef3fa8ac3223176f5fa2701',1,'GpgFrontend::UI::MainWindow']]] + ['save_5fact_5f_1447',['save_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab0f148559d830fcf10b5a1937b0a47dc',1,'GpgFrontend::UI::MainWindow']]], + ['save_5fas_5fact_5f_1448',['save_as_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a22256763ef83ed35a81e446b553d8112',1,'GpgFrontend::UI::MainWindow']]], + ['select_5fall_5fact_5f_1449',['select_all_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ac6a42e6e3af7e76f0bd2ecc62c9520cc',1,'GpgFrontend::UI::MainWindow']]], + ['show_5fkey_5fdetails_5fact_5f_1450',['show_key_details_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#acd41722ceedd20973b7d83852fab407b',1,'GpgFrontend::UI::MainWindow']]], + ['sign_5fact_5f_1451',['sign_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0cded37ef6e07856bbe439b0e90db839',1,'GpgFrontend::UI::MainWindow']]], + ['sign_5fmarked_5f_1452',['sign_marked_',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a4f94e9ef7889a169bda5a47b7f657358',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['special_5fedit_5ftool_5fbar_5f_1453',['special_edit_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af2b3e3a0e9894633e1839df289f5ffe0',1,'GpgFrontend::UI::MainWindow']]], + ['start_5fwizard_5fact_5f_1454',['start_wizard_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab0019ca316b971c594c2f20f418256a6',1,'GpgFrontend::UI::MainWindow']]], + ['steganography_5fmenu_5f_1455',['steganography_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af763a506aed7d0fb2125d1859583b853',1,'GpgFrontend::UI::MainWindow']]], + ['storages_5fmutex_5f_1456',['storages_mutex_',['../classGpgFrontend_1_1SingletonStorageCollection.html#ab648cb257beb2475eb5fca6453c331f9',1,'GpgFrontend::SingletonStorageCollection']]], + ['switch_5ftab_5fdown_5fact_5f_1457',['switch_tab_down_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a88af746cd550792ab6095d2ebbd29b41',1,'GpgFrontend::UI::MainWindow']]], + ['switch_5ftab_5fup_5fact_5f_1458',['switch_tab_up_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8d5ce6514ef3fa8ac3223176f5fa2701',1,'GpgFrontend::UI::MainWindow']]] ]; diff --git a/docs/html/search/variables_13.js b/docs/html/search/variables_13.js index 50e19302..1ebf28d7 100644 --- a/docs/html/search/variables_13.js +++ b/docs/html/search/variables_13.js @@ -1,6 +1,6 @@ var searchData= [ - ['tasks_1460',['tasks',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a774775e9a91d33072b27dcf78cead6e2',1,'GpgFrontend::Thread::TaskRunner']]], - ['tasks_5fmutex_5f_1461',['tasks_mutex_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a5e72f1ce00d41c225a4304f1ed20b3f1',1,'GpgFrontend::Thread::TaskRunner']]], - ['translate_5fact_5f_1462',['translate_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adbac799672c43c90810366825d837e4e',1,'GpgFrontend::UI::MainWindow']]] + ['tasks_1459',['tasks',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a774775e9a91d33072b27dcf78cead6e2',1,'GpgFrontend::Thread::TaskRunner']]], + ['tasks_5fmutex_5f_1460',['tasks_mutex_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a5e72f1ce00d41c225a4304f1ed20b3f1',1,'GpgFrontend::Thread::TaskRunner']]], + ['translate_5fact_5f_1461',['translate_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adbac799672c43c90810366825d837e4e',1,'GpgFrontend::UI::MainWindow']]] ]; diff --git a/docs/html/search/variables_14.js b/docs/html/search/variables_14.js index 80a8df1a..46aed575 100644 --- a/docs/html/search/variables_14.js +++ b/docs/html/search/variables_14.js @@ -1,7 +1,7 @@ var searchData= [ - ['ui_5fcfg_5f_1463',['ui_cfg_',['../classGpgFrontend_1_1GlobalSettingStation.html#a1818e08063d6a886975f77354fc5d85c',1,'GpgFrontend::GlobalSettingStation']]], - ['ui_5fconfig_5fdir_5fpath_5f_1464',['ui_config_dir_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#ab618fef68cfd4ff6e42d4a4aa8ea94bb',1,'GpgFrontend::GlobalSettingStation']]], - ['ui_5fconfig_5fpath_5f_1465',['ui_config_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#afa99ddc25c0d5fd59a4c5f0e61d13830',1,'GpgFrontend::GlobalSettingStation']]], - ['undo_5fact_5f_1466',['undo_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa498dfecac36590e4b60d50824dff58c',1,'GpgFrontend::UI::MainWindow']]] + ['ui_5fcfg_5f_1462',['ui_cfg_',['../classGpgFrontend_1_1GlobalSettingStation.html#a1818e08063d6a886975f77354fc5d85c',1,'GpgFrontend::GlobalSettingStation']]], + ['ui_5fconfig_5fdir_5fpath_5f_1463',['ui_config_dir_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#ab618fef68cfd4ff6e42d4a4aa8ea94bb',1,'GpgFrontend::GlobalSettingStation']]], + ['ui_5fconfig_5fpath_5f_1464',['ui_config_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#afa99ddc25c0d5fd59a4c5f0e61d13830',1,'GpgFrontend::GlobalSettingStation']]], + ['undo_5fact_5f_1465',['undo_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa498dfecac36590e4b60d50824dff58c',1,'GpgFrontend::UI::MainWindow']]] ]; diff --git a/docs/html/search/variables_15.js b/docs/html/search/variables_15.js index 1e0c50e8..6d44a141 100644 --- a/docs/html/search/variables_15.js +++ b/docs/html/search/variables_15.js @@ -1,5 +1,5 @@ var searchData= [ - ['verify_5fact_5f_1467',['verify_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a14bb12fa25620e1a93bd23c9f7c84081',1,'GpgFrontend::UI::MainWindow']]], - ['view_5fmenu_5f_1468',['view_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0e9920cf0fc974ac2f70d3f039f009f2',1,'GpgFrontend::UI::MainWindow']]] + ['verify_5fact_5f_1466',['verify_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a14bb12fa25620e1a93bd23c9f7c84081',1,'GpgFrontend::UI::MainWindow']]], + ['view_5fmenu_5f_1467',['view_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0e9920cf0fc974ac2f70d3f039f009f2',1,'GpgFrontend::UI::MainWindow']]] ]; diff --git a/docs/html/search/variables_16.js b/docs/html/search/variables_16.js index 27b1c93c..bcf3d943 100644 --- a/docs/html/search/variables_16.js +++ b/docs/html/search/variables_16.js @@ -1,5 +1,5 @@ var searchData= [ - ['zoom_5fin_5fact_5f_1469',['zoom_in_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3cb7daedbef61c1be27635c9ebc9e689',1,'GpgFrontend::UI::MainWindow']]], - ['zoom_5fout_5fact_5f_1470',['zoom_out_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a70397629ae3ffe039051b80a099c7979',1,'GpgFrontend::UI::MainWindow']]] + ['zoom_5fin_5fact_5f_1468',['zoom_in_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3cb7daedbef61c1be27635c9ebc9e689',1,'GpgFrontend::UI::MainWindow']]], + ['zoom_5fout_5fact_5f_1469',['zoom_out_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a70397629ae3ffe039051b80a099c7979',1,'GpgFrontend::UI::MainWindow']]] ]; diff --git a/docs/html/search/variables_2.js b/docs/html/search/variables_2.js index 3d891724..a879c957 100644 --- a/docs/html/search/variables_2.js +++ b/docs/html/search/variables_2.js @@ -1,6 +1,6 @@ var searchData= [ - ['browser_5f_1366',['browser_',['../classGpgFrontend_1_1UI_1_1HelpPage.html#af4f61342fae06a49c95d8d20ca51ca2c',1,'GpgFrontend::UI::HelpPage']]], - ['browser_5fact_5f_1367',['browser_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3c0a5305cf55fe5bee2f18298f983cad',1,'GpgFrontend::UI::MainWindow']]], - ['button_5fbox_5f_1368',['button_box_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#aa765259f9aa65b81d59b982ee0595e52',1,'GpgFrontend::UI::KeyGenDialog::button_box_()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#ab06b11f407fbb407139235fc84325de2',1,'GpgFrontend::UI::SubkeyGenerateDialog::button_box_()']]] + ['browser_5f_1365',['browser_',['../classGpgFrontend_1_1UI_1_1HelpPage.html#af4f61342fae06a49c95d8d20ca51ca2c',1,'GpgFrontend::UI::HelpPage']]], + ['browser_5fact_5f_1366',['browser_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3c0a5305cf55fe5bee2f18298f983cad',1,'GpgFrontend::UI::MainWindow']]], + ['button_5fbox_5f_1367',['button_box_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#aa765259f9aa65b81d59b982ee0595e52',1,'GpgFrontend::UI::KeyGenDialog::button_box_()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#ab06b11f407fbb407139235fc84325de2',1,'GpgFrontend::UI::SubkeyGenerateDialog::button_box_()']]] ]; diff --git a/docs/html/search/variables_3.js b/docs/html/search/variables_3.js index d9cc827e..2e28491e 100644 --- a/docs/html/search/variables_3.js +++ b/docs/html/search/variables_3.js @@ -1,20 +1,20 @@ var searchData= [ - ['channel_5f_1369',['channel_',['../classGpgFrontend_1_1ChannelObject.html#aee5f8a5575adbdf522da4dd195c091ee',1,'GpgFrontend::ChannelObject']]], - ['check_5fupdate_5fact_5f_1370',['check_update_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a672f4ef07be6ad645613ecd49399700d',1,'GpgFrontend::UI::MainWindow']]], - ['clean_5fdouble_5fline_5fbreaks_5fact_5f_1371',['clean_double_line_breaks_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0cb094e0409337cfd7dba1bb510ea96e',1,'GpgFrontend::UI::MainWindow']]], - ['close_5ftab_5fact_5f_1372',['close_tab_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a09671c3aa26a750cfd6be6c092de8715',1,'GpgFrontend::UI::MainWindow']]], - ['comment_5fedit_5f_1373',['comment_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3008e2a9879a8e122e422f67cf0018f8',1,'GpgFrontend::UI::KeyGenDialog']]], - ['comment_5fvar_5flabel_5f_1374',['comment_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a83b1290251a204def52677ae000a17ec',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['copy_5fact_5f_1375',['copy_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a71402943f4ed19e3aba0556b23eaa8f8',1,'GpgFrontend::UI::MainWindow']]], - ['copy_5fmail_5faddress_5fto_5fclipboard_5fact_5f_1376',['copy_mail_address_to_clipboard_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af77f66b6b869f6ddb3d2caa3bc40bb09',1,'GpgFrontend::UI::MainWindow']]], - ['count_5fpage_5f_1377',['count_page_',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a747d3740a88295e6c9565788d4cf56ec',1,'GpgFrontend::UI::TextEdit']]], - ['created_5fvar_5flabel_5f_1378',['created_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#ac827e8474ace52814f8de70709987d36',1,'GpgFrontend::UI::KeyPairSubkeyTab::created_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aa45a2433ce82a88eeb2c9c282ab7b975',1,'GpgFrontend::UI::KeyPairDetailTab::created_var_label_()']]], - ['crypt_5fmenu_5f_1379',['crypt_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1ef17c566a764f707f43593a1f6b3c60',1,'GpgFrontend::UI::MainWindow']]], - ['crypt_5ftool_5fbar_5f_1380',['crypt_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aac320aef3b49cd068544aac54b927f7a',1,'GpgFrontend::UI::MainWindow']]], - ['ctx_5f_1381',['ctx_',['../classGpgFrontend_1_1GpgBasicOperator.html#afad990a43ab06a060a93db9948ebb740',1,'GpgFrontend::GpgBasicOperator::ctx_()'],['../classGpgFrontend_1_1GpgCommandExecutor.html#aefc4f18ec852b98c539d97da1c712a02',1,'GpgFrontend::GpgCommandExecutor::ctx_()'],['../classGpgFrontend_1_1GpgKeyGetter.html#aa4aef315d82123726be879097d3df147',1,'GpgFrontend::GpgKeyGetter::ctx_()']]], - ['ctx_5fmutex_5f_1382',['ctx_mutex_',['../classGpgFrontend_1_1GpgKeyGetter.html#a81941e1f562dc22977a71d00dd10956a',1,'GpgFrontend::GpgKeyGetter']]], - ['current_5freply_5f_1383',['current_reply_',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9679bc6bcdf2e64ec82f6119620b6f2e',1,'GpgFrontend::UI::VersionCheckTask']]], - ['cut_5fact_5f_1384',['cut_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2c2f6c021219564846f1624f6bb5b9a2',1,'GpgFrontend::UI::MainWindow']]], - ['cut_5fpgp_5fheader_5fact_5f_1385',['cut_pgp_header_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a313a5d7d0847114a6f11e4d7870edd86',1,'GpgFrontend::UI::MainWindow']]] + ['channel_5f_1368',['channel_',['../classGpgFrontend_1_1ChannelObject.html#aee5f8a5575adbdf522da4dd195c091ee',1,'GpgFrontend::ChannelObject']]], + ['check_5fupdate_5fact_5f_1369',['check_update_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a672f4ef07be6ad645613ecd49399700d',1,'GpgFrontend::UI::MainWindow']]], + ['clean_5fdouble_5fline_5fbreaks_5fact_5f_1370',['clean_double_line_breaks_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0cb094e0409337cfd7dba1bb510ea96e',1,'GpgFrontend::UI::MainWindow']]], + ['close_5ftab_5fact_5f_1371',['close_tab_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a09671c3aa26a750cfd6be6c092de8715',1,'GpgFrontend::UI::MainWindow']]], + ['comment_5fedit_5f_1372',['comment_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3008e2a9879a8e122e422f67cf0018f8',1,'GpgFrontend::UI::KeyGenDialog']]], + ['comment_5fvar_5flabel_5f_1373',['comment_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a83b1290251a204def52677ae000a17ec',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['copy_5fact_5f_1374',['copy_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a71402943f4ed19e3aba0556b23eaa8f8',1,'GpgFrontend::UI::MainWindow']]], + ['copy_5fmail_5faddress_5fto_5fclipboard_5fact_5f_1375',['copy_mail_address_to_clipboard_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af77f66b6b869f6ddb3d2caa3bc40bb09',1,'GpgFrontend::UI::MainWindow']]], + ['count_5fpage_5f_1376',['count_page_',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a747d3740a88295e6c9565788d4cf56ec',1,'GpgFrontend::UI::TextEdit']]], + ['created_5fvar_5flabel_5f_1377',['created_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#ac827e8474ace52814f8de70709987d36',1,'GpgFrontend::UI::KeyPairSubkeyTab::created_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aa45a2433ce82a88eeb2c9c282ab7b975',1,'GpgFrontend::UI::KeyPairDetailTab::created_var_label_()']]], + ['crypt_5fmenu_5f_1378',['crypt_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1ef17c566a764f707f43593a1f6b3c60',1,'GpgFrontend::UI::MainWindow']]], + ['crypt_5ftool_5fbar_5f_1379',['crypt_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aac320aef3b49cd068544aac54b927f7a',1,'GpgFrontend::UI::MainWindow']]], + ['ctx_5f_1380',['ctx_',['../classGpgFrontend_1_1GpgBasicOperator.html#afad990a43ab06a060a93db9948ebb740',1,'GpgFrontend::GpgBasicOperator::ctx_()'],['../classGpgFrontend_1_1GpgCommandExecutor.html#aefc4f18ec852b98c539d97da1c712a02',1,'GpgFrontend::GpgCommandExecutor::ctx_()'],['../classGpgFrontend_1_1GpgKeyGetter.html#aa4aef315d82123726be879097d3df147',1,'GpgFrontend::GpgKeyGetter::ctx_()']]], + ['ctx_5fmutex_5f_1381',['ctx_mutex_',['../classGpgFrontend_1_1GpgKeyGetter.html#a81941e1f562dc22977a71d00dd10956a',1,'GpgFrontend::GpgKeyGetter']]], + ['current_5freply_5f_1382',['current_reply_',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9679bc6bcdf2e64ec82f6119620b6f2e',1,'GpgFrontend::UI::VersionCheckTask']]], + ['cut_5fact_5f_1383',['cut_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2c2f6c021219564846f1624f6bb5b9a2',1,'GpgFrontend::UI::MainWindow']]], + ['cut_5fpgp_5fheader_5fact_5f_1384',['cut_pgp_header_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a313a5d7d0847114a6f11e4d7870edd86',1,'GpgFrontend::UI::MainWindow']]] ]; diff --git a/docs/html/search/variables_4.js b/docs/html/search/variables_4.js index 4d372ed8..e4bdfa18 100644 --- a/docs/html/search/variables_4.js +++ b/docs/html/search/variables_4.js @@ -1,6 +1,6 @@ var searchData= [ - ['date_5fedit_5f_1386',['date_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a242a3245de709ede086087d7a096e6cd',1,'GpgFrontend::UI::KeyGenDialog::date_edit_()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aa8bf228ba2a773c0d38f9e5c2f20539d',1,'GpgFrontend::UI::SubkeyGenerateDialog::date_edit_()']]], - ['decrypt_5fact_5f_1387',['decrypt_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa92246123272e3e1085f22612aedf48f',1,'GpgFrontend::UI::MainWindow']]], - ['decrypt_5fverify_5fact_5f_1388',['decrypt_verify_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a70d2b2311708ab023466d343f2e914b1',1,'GpgFrontend::UI::MainWindow']]] + ['date_5fedit_5f_1385',['date_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a242a3245de709ede086087d7a096e6cd',1,'GpgFrontend::UI::KeyGenDialog::date_edit_()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aa8bf228ba2a773c0d38f9e5c2f20539d',1,'GpgFrontend::UI::SubkeyGenerateDialog::date_edit_()']]], + ['decrypt_5fact_5f_1386',['decrypt_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa92246123272e3e1085f22612aedf48f',1,'GpgFrontend::UI::MainWindow']]], + ['decrypt_5fverify_5fact_5f_1387',['decrypt_verify_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a70d2b2311708ab023466d343f2e914b1',1,'GpgFrontend::UI::MainWindow']]] ]; diff --git a/docs/html/search/variables_5.js b/docs/html/search/variables_5.js index 2f4ecc43..6ee6c59f 100644 --- a/docs/html/search/variables_5.js +++ b/docs/html/search/variables_5.js @@ -1,14 +1,14 @@ var searchData= [ - ['edit_5f_1389',['edit_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7aa41c90105fd4c2931895d8dfb5ec45',1,'GpgFrontend::UI::MainWindow']]], - ['edit_5fmenu_5f_1390',['edit_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a6d681a306c137dc107088d60b09a925f',1,'GpgFrontend::UI::MainWindow']]], - ['edit_5ftool_5fbar_5f_1391',['edit_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab531823acdbfb117c82a9906ce2107b9',1,'GpgFrontend::UI::MainWindow']]], - ['email_5fedit_5f_1392',['email_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3453d1a8a4c0411472b2779d018abdc3',1,'GpgFrontend::UI::KeyGenDialog']]], - ['email_5fvar_5flabel_5f_1393',['email_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a8c71b37aa040da50cb0105489a42e60d',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['encrypt_5fact_5f_1394',['encrypt_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad6a2cecb2846b324604c4abd1fb7d11a',1,'GpgFrontend::UI::MainWindow']]], - ['encrypt_5fsign_5fact_5f_1395',['encrypt_sign_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2417c807356e3b876ecb2f572568670b',1,'GpgFrontend::UI::MainWindow']]], - ['error_5flabel_5f_1396',['error_label_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a8e500e3153558364fe5ba5b8bab6f219',1,'GpgFrontend::UI::KeyGenDialog::error_label_()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a75f325b4a5aa8bcfcc411bdaf9279683',1,'GpgFrontend::UI::SubkeyGenerateDialog::error_label_()']]], - ['error_5fmessages_5f_1397',['error_messages_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a03a8e1c8f2c1887732d36a346185bb40',1,'GpgFrontend::UI::KeyGenDialog']]], - ['expire_5fcheck_5fbox_5f_1398',['expire_check_box_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a196ef707a7a2cfd717f69c8a5bc3278d',1,'GpgFrontend::UI::KeyGenDialog::expire_check_box_()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#afa21ac4d45a6474afc1bc594486ed8e2',1,'GpgFrontend::UI::SubkeyGenerateDialog::expire_check_box_()']]], - ['expire_5fvar_5flabel_5f_1399',['expire_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aedc0e13ba1b64782e40f7c14af77f8f0',1,'GpgFrontend::UI::KeyPairDetailTab::expire_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a72b94f3e8d11c44d1b4e3653ab885927',1,'GpgFrontend::UI::KeyPairSubkeyTab::expire_var_label_()']]] + ['edit_5f_1388',['edit_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7aa41c90105fd4c2931895d8dfb5ec45',1,'GpgFrontend::UI::MainWindow']]], + ['edit_5fmenu_5f_1389',['edit_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a6d681a306c137dc107088d60b09a925f',1,'GpgFrontend::UI::MainWindow']]], + ['edit_5ftool_5fbar_5f_1390',['edit_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab531823acdbfb117c82a9906ce2107b9',1,'GpgFrontend::UI::MainWindow']]], + ['email_5fedit_5f_1391',['email_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3453d1a8a4c0411472b2779d018abdc3',1,'GpgFrontend::UI::KeyGenDialog']]], + ['email_5fvar_5flabel_5f_1392',['email_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a8c71b37aa040da50cb0105489a42e60d',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['encrypt_5fact_5f_1393',['encrypt_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad6a2cecb2846b324604c4abd1fb7d11a',1,'GpgFrontend::UI::MainWindow']]], + ['encrypt_5fsign_5fact_5f_1394',['encrypt_sign_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2417c807356e3b876ecb2f572568670b',1,'GpgFrontend::UI::MainWindow']]], + ['error_5flabel_5f_1395',['error_label_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a8e500e3153558364fe5ba5b8bab6f219',1,'GpgFrontend::UI::KeyGenDialog::error_label_()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a75f325b4a5aa8bcfcc411bdaf9279683',1,'GpgFrontend::UI::SubkeyGenerateDialog::error_label_()']]], + ['error_5fmessages_5f_1396',['error_messages_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a03a8e1c8f2c1887732d36a346185bb40',1,'GpgFrontend::UI::KeyGenDialog']]], + ['expire_5fcheck_5fbox_5f_1397',['expire_check_box_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a196ef707a7a2cfd717f69c8a5bc3278d',1,'GpgFrontend::UI::KeyGenDialog::expire_check_box_()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#afa21ac4d45a6474afc1bc594486ed8e2',1,'GpgFrontend::UI::SubkeyGenerateDialog::expire_check_box_()']]], + ['expire_5fvar_5flabel_5f_1398',['expire_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aedc0e13ba1b64782e40f7c14af77f8f0',1,'GpgFrontend::UI::KeyPairDetailTab::expire_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a72b94f3e8d11c44d1b4e3653ab885927',1,'GpgFrontend::UI::KeyPairSubkeyTab::expire_var_label_()']]] ]; diff --git a/docs/html/search/variables_6.js b/docs/html/search/variables_6.js index 806d9dc0..fabd77e1 100644 --- a/docs/html/search/variables_6.js +++ b/docs/html/search/variables_6.js @@ -1,11 +1,11 @@ var searchData= [ - ['file_5fmenu_5f_1400',['file_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af08c62c38a750382ee218191c8e13f4f',1,'GpgFrontend::UI::MainWindow']]], - ['file_5ftool_5fbar_5f_1401',['file_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1e0d23d361b8e339ca85410db2bdfb64',1,'GpgFrontend::UI::MainWindow']]], - ['find_5fact_5f_1402',['find_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a6154f5dbdc9cebc0644e5d1e25895df8',1,'GpgFrontend::UI::MainWindow']]], - ['find_5fedit_5f_1403',['find_edit_',['../classGpgFrontend_1_1UI_1_1FindWidget.html#af420832720942dd1e7cb3f3841c7cbfe',1,'GpgFrontend::UI::FindWidget']]], - ['fingerprint_5fbox_5f_1404',['fingerprint_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#ada1c21cf59f1f19dfd4ffe0391bc1594',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['fingerprint_5fvar_5flabel_5f_1405',['fingerprint_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a1bb1519e5cce51ad5796065232f66ad6',1,'GpgFrontend::UI::KeyPairDetailTab::fingerprint_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a11a6e8aca1754d513ea91192ee0315bf',1,'GpgFrontend::UI::KeyPairSubkeyTab::fingerprint_var_label_()']]], - ['fpr_5f_1406',['fpr_',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#a36bf3306b8564b49da04eee1dc653675',1,'GpgFrontend::UI::VerifyKeyDetailBox']]], - ['full_5ffile_5fpath_5f_1407',['full_file_path_',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#ae867b6329fcb1978479a9d70f7b017db',1,'GpgFrontend::UI::PlainTextEditorPage']]] + ['file_5fmenu_5f_1399',['file_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af08c62c38a750382ee218191c8e13f4f',1,'GpgFrontend::UI::MainWindow']]], + ['file_5ftool_5fbar_5f_1400',['file_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1e0d23d361b8e339ca85410db2bdfb64',1,'GpgFrontend::UI::MainWindow']]], + ['find_5fact_5f_1401',['find_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a6154f5dbdc9cebc0644e5d1e25895df8',1,'GpgFrontend::UI::MainWindow']]], + ['find_5fedit_5f_1402',['find_edit_',['../classGpgFrontend_1_1UI_1_1FindWidget.html#af420832720942dd1e7cb3f3841c7cbfe',1,'GpgFrontend::UI::FindWidget']]], + ['fingerprint_5fbox_5f_1403',['fingerprint_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#ada1c21cf59f1f19dfd4ffe0391bc1594',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['fingerprint_5fvar_5flabel_5f_1404',['fingerprint_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a1bb1519e5cce51ad5796065232f66ad6',1,'GpgFrontend::UI::KeyPairDetailTab::fingerprint_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a11a6e8aca1754d513ea91192ee0315bf',1,'GpgFrontend::UI::KeyPairSubkeyTab::fingerprint_var_label_()']]], + ['fpr_5f_1405',['fpr_',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#a36bf3306b8564b49da04eee1dc653675',1,'GpgFrontend::UI::VerifyKeyDetailBox']]], + ['full_5ffile_5fpath_5f_1406',['full_file_path_',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#ae867b6329fcb1978479a9d70f7b017db',1,'GpgFrontend::UI::PlainTextEditorPage']]] ]; diff --git a/docs/html/search/variables_7.js b/docs/html/search/variables_7.js index 2157cebc..316b39c7 100644 --- a/docs/html/search/variables_7.js +++ b/docs/html/search/variables_7.js @@ -1,5 +1,5 @@ var searchData= [ - ['global_5fsetting_5fstation_5f_1408',['global_setting_station_',['../classGpgFrontend_1_1DataObjectOperator.html#a3c195f8e4c30d95be14a6d43e9282601',1,'GpgFrontend::DataObjectOperator']]], - ['gnupg_5fact_5f_1409',['gnupg_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a79b83f536a7c4299eaa3d22e4e875227',1,'GpgFrontend::UI::MainWindow']]] + ['global_5fsetting_5fstation_5f_1407',['global_setting_station_',['../classGpgFrontend_1_1DataObjectOperator.html#a3c195f8e4c30d95be14a6d43e9282601',1,'GpgFrontend::DataObjectOperator']]], + ['gnupg_5fact_5f_1408',['gnupg_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a79b83f536a7c4299eaa3d22e4e875227',1,'GpgFrontend::UI::MainWindow']]] ]; diff --git a/docs/html/search/variables_8.js b/docs/html/search/variables_8.js index d3001acd..52ebf4bc 100644 --- a/docs/html/search/variables_8.js +++ b/docs/html/search/variables_8.js @@ -1,5 +1,5 @@ var searchData= [ - ['hash_5fkey_5f_1410',['hash_key_',['../classGpgFrontend_1_1DataObjectOperator.html#ae409c3562c3e08931daa17f5790c508b',1,'GpgFrontend::DataObjectOperator']]], - ['help_5fmenu_5f_1411',['help_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a89fa105ed54d2189d762668262d74c63',1,'GpgFrontend::UI::MainWindow']]] + ['hash_5fkey_5f_1409',['hash_key_',['../classGpgFrontend_1_1DataObjectOperator.html#ae409c3562c3e08931daa17f5790c508b',1,'GpgFrontend::DataObjectOperator']]], + ['help_5fmenu_5f_1410',['help_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a89fa105ed54d2189d762668262d74c63',1,'GpgFrontend::UI::MainWindow']]] ]; diff --git a/docs/html/search/variables_9.js b/docs/html/search/variables_9.js index f9d84d90..2137d989 100644 --- a/docs/html/search/variables_9.js +++ b/docs/html/search/variables_9.js @@ -1,8 +1,8 @@ var searchData= [ - ['import_5fbutton_5f_1412',['import_button_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8538940a9a5dea7ddf53c89acdeb83be',1,'GpgFrontend::UI::MainWindow']]], - ['import_5fkey_5ffrom_5fedit_5fact_5f_1413',['import_key_from_edit_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a01b85fb17c373d8f97ce439027c6d04e',1,'GpgFrontend::UI::MainWindow']]], - ['import_5fkey_5fmenu_5f_1414',['import_key_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8d6fe32ab64797459443ed285d769745',1,'GpgFrontend::UI::MainWindow']]], - ['instances_5fmap_5f_1415',['instances_map_',['../classGpgFrontend_1_1SingletonStorage.html#a6181f2b5af39c6b86de89e1ba9eeff1c',1,'GpgFrontend::SingletonStorage']]], - ['instances_5fmutex_5f_1416',['instances_mutex_',['../classGpgFrontend_1_1SingletonStorage.html#a15161d0afafec602018a89266dab5641',1,'GpgFrontend::SingletonStorage']]] + ['import_5fbutton_5f_1411',['import_button_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8538940a9a5dea7ddf53c89acdeb83be',1,'GpgFrontend::UI::MainWindow']]], + ['import_5fkey_5ffrom_5fedit_5fact_5f_1412',['import_key_from_edit_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a01b85fb17c373d8f97ce439027c6d04e',1,'GpgFrontend::UI::MainWindow']]], + ['import_5fkey_5fmenu_5f_1413',['import_key_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8d6fe32ab64797459443ed285d769745',1,'GpgFrontend::UI::MainWindow']]], + ['instances_5fmap_5f_1414',['instances_map_',['../classGpgFrontend_1_1SingletonStorage.html#a6181f2b5af39c6b86de89e1ba9eeff1c',1,'GpgFrontend::SingletonStorage']]], + ['instances_5fmutex_5f_1415',['instances_mutex_',['../classGpgFrontend_1_1SingletonStorage.html#a15161d0afafec602018a89266dab5641',1,'GpgFrontend::SingletonStorage']]] ]; diff --git a/docs/html/search/variables_a.js b/docs/html/search/variables_a.js index c4fd386d..70b16533 100644 --- a/docs/html/search/variables_a.js +++ b/docs/html/search/variables_a.js @@ -1,16 +1,16 @@ var searchData= [ - ['key_5fbox_5f_1417',['key_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aae9905764b5551208574a932fdfba29c',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['key_5fid_5fvar_5flabel_1418',['key_id_var_label',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a65176245d280ae0734ef7b5b3f1c4cc4',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['key_5fid_5fvar_5flabel_5f_1419',['key_id_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a2f634f4c83ab5dd2d088eb07e0d3b862',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], - ['key_5flist_5fdock_5f_1420',['key_list_dock_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adaa66d9cdc51c946efc99bb94deda31c',1,'GpgFrontend::UI::MainWindow']]], - ['key_5fmenu_5f_1421',['key_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a16bbfd12cd3a6f0df9e2c32cf7999e57',1,'GpgFrontend::UI::MainWindow']]], - ['key_5fsize_5fspin_5fbox_5f_1422',['key_size_spin_box_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#aaa9b55830c39ce854e4ede26d916a844',1,'GpgFrontend::UI::KeyGenDialog::key_size_spin_box_()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aa91db742b41d352ba9f88620d649afb3',1,'GpgFrontend::UI::SubkeyGenerateDialog::key_size_spin_box_()']]], - ['key_5fsize_5fvar_5flabel_5f_1423',['key_size_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a63e054f4a2d8e12c70d25d39bb55f876',1,'GpgFrontend::UI::KeyPairSubkeyTab::key_size_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a1485e603de56152f45d96e0ce5c50d9b',1,'GpgFrontend::UI::KeyPairDetailTab::key_size_var_label_()']]], - ['key_5ftool_5fbar_5f_1424',['key_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a38f243880cfb9276545b08f0730811e7',1,'GpgFrontend::UI::MainWindow']]], - ['key_5ftype_5fcombo_5fbox_5f_1425',['key_type_combo_box_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a281bfffd99fcb600d07c4604bf2a8841',1,'GpgFrontend::UI::KeyGenDialog::key_type_combo_box_()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#ac515dabcf6c094c5eeb2bf88aa3aa9d3',1,'GpgFrontend::UI::SubkeyGenerateDialog::key_type_combo_box_()']]], - ['key_5fusage_5fcheck_5fboxes_5f_1426',['key_usage_check_boxes_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ab0ccac068670a3e28ce78ff87a40b2fc',1,'GpgFrontend::UI::KeyGenDialog::key_usage_check_boxes_()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a5d67b8ed68062ef127ad92986a98e95a',1,'GpgFrontend::UI::SubkeyGenerateDialog::key_usage_check_boxes_()']]], - ['key_5fusage_5fgroup_5fbox_5f_1427',['key_usage_group_box_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7b1b9cb46c0547c1e561e56d55616cf1',1,'GpgFrontend::UI::KeyGenDialog']]], - ['keys_5fcache_5f_1428',['keys_cache_',['../classGpgFrontend_1_1GpgKeyGetter.html#a9567d5e08ae73c5bafcd1dc378fed066',1,'GpgFrontend::GpgKeyGetter']]], - ['keys_5fcache_5fmutex_5f_1429',['keys_cache_mutex_',['../classGpgFrontend_1_1GpgKeyGetter.html#ae1d7846ad2fa17ab90c72b3186ba5335',1,'GpgFrontend::GpgKeyGetter']]] + ['key_5fbox_5f_1416',['key_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aae9905764b5551208574a932fdfba29c',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['key_5fid_5fvar_5flabel_1417',['key_id_var_label',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a65176245d280ae0734ef7b5b3f1c4cc4',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['key_5fid_5fvar_5flabel_5f_1418',['key_id_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a2f634f4c83ab5dd2d088eb07e0d3b862',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], + ['key_5flist_5fdock_5f_1419',['key_list_dock_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adaa66d9cdc51c946efc99bb94deda31c',1,'GpgFrontend::UI::MainWindow']]], + ['key_5fmenu_5f_1420',['key_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a16bbfd12cd3a6f0df9e2c32cf7999e57',1,'GpgFrontend::UI::MainWindow']]], + ['key_5fsize_5fspin_5fbox_5f_1421',['key_size_spin_box_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#aaa9b55830c39ce854e4ede26d916a844',1,'GpgFrontend::UI::KeyGenDialog::key_size_spin_box_()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aa91db742b41d352ba9f88620d649afb3',1,'GpgFrontend::UI::SubkeyGenerateDialog::key_size_spin_box_()']]], + ['key_5fsize_5fvar_5flabel_5f_1422',['key_size_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a63e054f4a2d8e12c70d25d39bb55f876',1,'GpgFrontend::UI::KeyPairSubkeyTab::key_size_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a1485e603de56152f45d96e0ce5c50d9b',1,'GpgFrontend::UI::KeyPairDetailTab::key_size_var_label_()']]], + ['key_5ftool_5fbar_5f_1423',['key_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a38f243880cfb9276545b08f0730811e7',1,'GpgFrontend::UI::MainWindow']]], + ['key_5ftype_5fcombo_5fbox_5f_1424',['key_type_combo_box_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a281bfffd99fcb600d07c4604bf2a8841',1,'GpgFrontend::UI::KeyGenDialog::key_type_combo_box_()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#ac515dabcf6c094c5eeb2bf88aa3aa9d3',1,'GpgFrontend::UI::SubkeyGenerateDialog::key_type_combo_box_()']]], + ['key_5fusage_5fcheck_5fboxes_5f_1425',['key_usage_check_boxes_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ab0ccac068670a3e28ce78ff87a40b2fc',1,'GpgFrontend::UI::KeyGenDialog::key_usage_check_boxes_()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a5d67b8ed68062ef127ad92986a98e95a',1,'GpgFrontend::UI::SubkeyGenerateDialog::key_usage_check_boxes_()']]], + ['key_5fusage_5fgroup_5fbox_5f_1426',['key_usage_group_box_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7b1b9cb46c0547c1e561e56d55616cf1',1,'GpgFrontend::UI::KeyGenDialog']]], + ['keys_5fcache_5f_1427',['keys_cache_',['../classGpgFrontend_1_1GpgKeyGetter.html#a9567d5e08ae73c5bafcd1dc378fed066',1,'GpgFrontend::GpgKeyGetter']]], + ['keys_5fcache_5fmutex_5f_1428',['keys_cache_mutex_',['../classGpgFrontend_1_1GpgKeyGetter.html#ae1d7846ad2fa17ab90c72b3186ba5335',1,'GpgFrontend::GpgKeyGetter']]] ]; diff --git a/docs/html/search/variables_b.js b/docs/html/search/variables_b.js index ee448e93..e80bc576 100644 --- a/docs/html/search/variables_b.js +++ b/docs/html/search/variables_b.js @@ -1,4 +1,4 @@ var searchData= [ - ['latest_5freply_5f_1430',['latest_reply_',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#aed545ffa8128acb16bb28c067e032ec9',1,'GpgFrontend::UI::VersionCheckTask']]] + ['latest_5freply_5f_1429',['latest_reply_',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#aed545ffa8128acb16bb28c067e032ec9',1,'GpgFrontend::UI::VersionCheckTask']]] ]; diff --git a/docs/html/search/variables_c.js b/docs/html/search/variables_c.js index 56608406..ce65a246 100644 --- a/docs/html/search/variables_c.js +++ b/docs/html/search/variables_c.js @@ -1,5 +1,5 @@ var searchData= [ - ['m_5ftext_5fpage_5f_1431',['m_text_page_',['../classGpgFrontend_1_1UI_1_1FindWidget.html#a11f9d0f07b704539ad1df15a5c15dca9',1,'GpgFrontend::UI::FindWidget::m_text_page_()'],['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a6380776ea1bf9a020370589e1e20efd3',1,'GpgFrontend::UI::InfoBoardWidget::m_text_page_()']]], - ['mt_5f_1432',['mt_',['../classGpgFrontend_1_1DataObjectOperator.html#a9fc92c7d497f2a2057776adfca40e8ca',1,'GpgFrontend::DataObjectOperator::mt_()'],['../classGpgFrontend_1_1PassphraseGenerator.html#a19ac4999bbd5fb7e6c42a4aef9606892',1,'GpgFrontend::PassphraseGenerator::mt_()']]] + ['m_5ftext_5fpage_5f_1430',['m_text_page_',['../classGpgFrontend_1_1UI_1_1FindWidget.html#a11f9d0f07b704539ad1df15a5c15dca9',1,'GpgFrontend::UI::FindWidget::m_text_page_()'],['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a6380776ea1bf9a020370589e1e20efd3',1,'GpgFrontend::UI::InfoBoardWidget::m_text_page_()']]], + ['mt_5f_1431',['mt_',['../classGpgFrontend_1_1DataObjectOperator.html#a9fc92c7d497f2a2057776adfca40e8ca',1,'GpgFrontend::DataObjectOperator::mt_()'],['../classGpgFrontend_1_1PassphraseGenerator.html#a19ac4999bbd5fb7e6c42a4aef9606892',1,'GpgFrontend::PassphraseGenerator::mt_()']]] ]; diff --git a/docs/html/search/variables_d.js b/docs/html/search/variables_d.js index d4e141a9..d4331577 100644 --- a/docs/html/search/variables_d.js +++ b/docs/html/search/variables_d.js @@ -1,6 +1,6 @@ var searchData= [ - ['name_5fedit_5f_1433',['name_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7ed095cce29c658741ae0520049010c0',1,'GpgFrontend::UI::KeyGenDialog']]], - ['name_5fvar_5flabel_5f_1434',['name_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a9d57be18c2091827c04ec8809f4154be',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['new_5ftab_5fact_5f_1435',['new_tab_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a472500fec64442b114e9ce9faf4b6a73',1,'GpgFrontend::UI::MainWindow']]] + ['name_5fedit_5f_1432',['name_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7ed095cce29c658741ae0520049010c0',1,'GpgFrontend::UI::KeyGenDialog']]], + ['name_5fvar_5flabel_5f_1433',['name_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a9d57be18c2091827c04ec8809f4154be',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['new_5ftab_5fact_5f_1434',['new_tab_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a472500fec64442b114e9ce9faf4b6a73',1,'GpgFrontend::UI::MainWindow']]] ]; diff --git a/docs/html/search/variables_e.js b/docs/html/search/variables_e.js index b1ecf7ae..1d6d4457 100644 --- a/docs/html/search/variables_e.js +++ b/docs/html/search/variables_e.js @@ -1,7 +1,7 @@ var searchData= [ - ['open_5fact_5f_1436',['open_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a4a1edafb8c67b181ff3c29394147571d',1,'GpgFrontend::UI::MainWindow']]], - ['open_5fkey_5fmanagement_5fact_5f_1437',['open_key_management_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad7b22560df7e3bb38b660d3ffc84dc83',1,'GpgFrontend::UI::MainWindow']]], - ['open_5fsettings_5fact_5f_1438',['open_settings_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#afab1e0363a4b97ff68228cd4bd7cbc62',1,'GpgFrontend::UI::MainWindow']]], - ['owner_5fbox_5f_1439',['owner_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#ad8c25061351d8e739b70d5466b87410e',1,'GpgFrontend::UI::KeyPairDetailTab']]] + ['open_5fact_5f_1435',['open_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a4a1edafb8c67b181ff3c29394147571d',1,'GpgFrontend::UI::MainWindow']]], + ['open_5fkey_5fmanagement_5fact_5f_1436',['open_key_management_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad7b22560df7e3bb38b660d3ffc84dc83',1,'GpgFrontend::UI::MainWindow']]], + ['open_5fsettings_5fact_5f_1437',['open_settings_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#afab1e0363a4b97ff68228cd4bd7cbc62',1,'GpgFrontend::UI::MainWindow']]], + ['owner_5fbox_5f_1438',['owner_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#ad8c25061351d8e739b70d5466b87410e',1,'GpgFrontend::UI::KeyPairDetailTab']]] ]; diff --git a/docs/html/search/variables_f.js b/docs/html/search/variables_f.js index 322273d8..20aa4847 100644 --- a/docs/html/search/variables_f.js +++ b/docs/html/search/variables_f.js @@ -1,7 +1,7 @@ var searchData= [ - ['paste_5fact_5f_1440',['paste_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a62ea61c38e758022ba655c6faf54322b',1,'GpgFrontend::UI::MainWindow']]], - ['pending_5ftasks_5f_1441',['pending_tasks_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a6d92421bbbfcf3136335a5173d1b2a22',1,'GpgFrontend::Thread::TaskRunner']]], - ['pgp_5fcrypt_5fbegin_1442',['PGP_CRYPT_BEGIN',['../classGpgFrontend_1_1GpgConstants.html#a237006d6db30c7e3f8de171210eb35f2',1,'GpgFrontend::GpgConstants']]], - ['print_5fact_5f_1443',['print_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8f9dd7edba23321a13ed630cdef7fdcc',1,'GpgFrontend::UI::MainWindow']]] + ['paste_5fact_5f_1439',['paste_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a62ea61c38e758022ba655c6faf54322b',1,'GpgFrontend::UI::MainWindow']]], + ['pending_5ftasks_5f_1440',['pending_tasks_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a6d92421bbbfcf3136335a5173d1b2a22',1,'GpgFrontend::Thread::TaskRunner']]], + ['pgp_5fcrypt_5fbegin_1441',['PGP_CRYPT_BEGIN',['../classGpgFrontend_1_1GpgConstants.html#a237006d6db30c7e3f8de171210eb35f2',1,'GpgFrontend::GpgConstants']]], + ['print_5fact_5f_1442',['print_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8f9dd7edba23321a13ed630cdef7fdcc',1,'GpgFrontend::UI::MainWindow']]] ]; diff --git a/docs/html/structGpgFrontend_1_1UI_1_1KeyTable.html b/docs/html/structGpgFrontend_1_1UI_1_1KeyTable.html index 96d1481e..6bf51450 100644 --- a/docs/html/structGpgFrontend_1_1UI_1_1KeyTable.html +++ b/docs/html/structGpgFrontend_1_1UI_1_1KeyTable.html @@ -95,15 +95,14 @@ Collaboration diagram for GpgFrontend::UI::KeyTable:
    Collaboration graph
    - + - - - - - - - + + + + + +
  • diff --git a/docs/html/structGpgFrontend_1_1UI_1_1KeyTable__coll__graph.map b/docs/html/structGpgFrontend_1_1UI_1_1KeyTable__coll__graph.map index b4a66dfc..bfd2ee86 100644 --- a/docs/html/structGpgFrontend_1_1UI_1_1KeyTable__coll__graph.map +++ b/docs/html/structGpgFrontend_1_1UI_1_1KeyTable__coll__graph.map @@ -1,11 +1,10 @@ - + - - - - - - - + + + + + + diff --git a/docs/html/structGpgFrontend_1_1UI_1_1KeyTable__coll__graph.md5 b/docs/html/structGpgFrontend_1_1UI_1_1KeyTable__coll__graph.md5 index e3ae2930..a1d34437 100644 --- a/docs/html/structGpgFrontend_1_1UI_1_1KeyTable__coll__graph.md5 +++ b/docs/html/structGpgFrontend_1_1UI_1_1KeyTable__coll__graph.md5 @@ -1 +1 @@ -976517defa87e72e9ba0252f58801e4a \ No newline at end of file +05c74210e4e8f3f71411695bbbf18258 \ No newline at end of file diff --git a/docs/html/structGpgFrontend_1_1UI_1_1KeyTable__coll__graph.png b/docs/html/structGpgFrontend_1_1UI_1_1KeyTable__coll__graph.png index 959c9efb..7fb512d9 100644 Binary files a/docs/html/structGpgFrontend_1_1UI_1_1KeyTable__coll__graph.png and b/docs/html/structGpgFrontend_1_1UI_1_1KeyTable__coll__graph.png differ diff --git a/docs/latex/classGpgFrontend_1_1ArchiveFileOperator__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1ArchiveFileOperator__coll__graph.pdf index 4f962e43..616e3139 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 aff80220..cfb45a5b 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 afa8e83a..373a232f 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 dee8e3df..4e0254e6 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 1c34aa43..97e77fef 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 59ad8c89..eaa7cda5 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 0d46a2c6..70315b55 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 1ded5fb6..27b8a3b5 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 531e2749..f6ae2808 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.tex b/docs/latex/classGpgFrontend_1_1GenKeyInfo.tex index aaeb84dd..23d6bceb 100644 --- a/docs/latex/classGpgFrontend_1_1GenKeyInfo.tex +++ b/docs/latex/classGpgFrontend_1_1GenKeyInfo.tex @@ -33,7 +33,7 @@ std\+::string \mbox{\hyperlink{classGpgFrontend_1_1GenKeyInfo_ab9f9775fd6363fba3 \begin{DoxyCompactList}\small\item\em Get the Comment object. \end{DoxyCompactList}\item const std\+::string \& \mbox{\hyperlink{classGpgFrontend_1_1GenKeyInfo_a6a65ba347156373b6cf98eb8e851d28d}{Get\+Algo}} () const \begin{DoxyCompactList}\small\item\em Get the Algo object. \end{DoxyCompactList}\item -void \mbox{\hyperlink{classGpgFrontend_1_1GenKeyInfo_adcd9c4f3e75f989810988e0bc81d401f}{Set\+Algo}} (const Gpg\+Frontend\+::\+Gen\+Key\+Info\+::\+Key\+Gen\+Algo \&m\+\_\+algo) +void \mbox{\hyperlink{classGpgFrontend_1_1GenKeyInfo_a378ea10385ab401bea45a7edb3df122d}{Set\+Algo}} (const std\+::string \&m\+\_\+algo) \begin{DoxyCompactList}\small\item\em Set the Algo object. \end{DoxyCompactList}\item std\+::string \mbox{\hyperlink{classGpgFrontend_1_1GenKeyInfo_a0bda4b4161d805582869ec0e56ade07c}{Get\+Key\+Size\+Str}} () const \begin{DoxyCompactList}\small\item\em Get the Key Size Str object. \end{DoxyCompactList}\item @@ -94,20 +94,14 @@ int \mbox{\hyperlink{classGpgFrontend_1_1GenKeyInfo_ac211a7a615805ae97ff284b46ab \doxysubsection*{Static Public Member Functions} \begin{DoxyCompactItemize} \item -static const std\+::vector$<$ Key\+Gen\+Algo $>$ \& \mbox{\hyperlink{classGpgFrontend_1_1GenKeyInfo_ac0dbb2d89b1e5f9b272679ba3f24314e}{Get\+Supported\+Key\+Algo}} () +static const std\+::vector$<$ std\+::string $>$ \& \mbox{\hyperlink{classGpgFrontend_1_1GenKeyInfo_a185c7be801854f81879351a6c4dd9071}{Get\+Supported\+Key\+Algo}} () \begin{DoxyCompactList}\small\item\em Get the Supported Key Algo object. \end{DoxyCompactList}\item -static const std\+::vector$<$ Key\+Gen\+Algo $>$ \& \mbox{\hyperlink{classGpgFrontend_1_1GenKeyInfo_a168d6fe5252812f5984ba6d8046c7741}{Get\+Supported\+Subkey\+Algo}} () +static const std\+::vector$<$ std\+::string $>$ \& \mbox{\hyperlink{classGpgFrontend_1_1GenKeyInfo_a7855d9fe9b6872ff08a60fe21640d07f}{Get\+Supported\+Subkey\+Algo}} () \begin{DoxyCompactList}\small\item\em Get the Supported Subkey Algo object. \end{DoxyCompactList}\item -static const std\+::vector$<$ Key\+Gen\+Algo $>$ \& \mbox{\hyperlink{classGpgFrontend_1_1GenKeyInfo_afb8315b6612c64b3921b72df98ebcc74}{Get\+Supported\+Key\+Algo\+Standalone}} () +static const std\+::vector$<$ std\+::string $>$ \& \mbox{\hyperlink{classGpgFrontend_1_1GenKeyInfo_a8b054a66cb0678af6c42090eea1518e4}{Get\+Supported\+Key\+Algo\+Standalone}} () \begin{DoxyCompactList}\small\item\em Get the Supported Key Algo Standalone object. \end{DoxyCompactList}\item -static const std\+::vector$<$ Key\+Gen\+Algo $>$ \& \mbox{\hyperlink{classGpgFrontend_1_1GenKeyInfo_a6819b0ca3ef7712b85ae320030cde023}{Get\+Supported\+Subkey\+Algo\+Standalone}} () +static const std\+::vector$<$ std\+::string $>$ \& \mbox{\hyperlink{classGpgFrontend_1_1GenKeyInfo_a310fd0cdac03d0b0a7fde006105866d6}{Get\+Supported\+Subkey\+Algo\+Standalone}} () \begin{DoxyCompactList}\small\item\em Get the Supported Subkey Algo Standalone object. \end{DoxyCompactList}\end{DoxyCompactItemize} -\doxysubsection*{Private Types} -\begin{DoxyCompactItemize} -\item -\mbox{\Hypertarget{classGpgFrontend_1_1GenKeyInfo_a7eda73ff0625a635f041365c21531c60}\label{classGpgFrontend_1_1GenKeyInfo_a7eda73ff0625a635f041365c21531c60}} -using {\bfseries Key\+Gen\+Algo} = std\+::pair$<$ std\+::string, std\+::string $>$ -\end{DoxyCompactItemize} \doxysubsection*{Private Member Functions} \begin{DoxyCompactItemize} \item @@ -207,7 +201,7 @@ Construct a new Gen Key Info object. \end{DoxyParams} -References Get\+Supported\+Key\+Algo(), and Set\+Algo(). +References Set\+Algo(). @@ -355,11 +349,11 @@ Get the Suggest Min Key Size object. \begin{DoxyReturn}{Returns} int \end{DoxyReturn} -\mbox{\Hypertarget{classGpgFrontend_1_1GenKeyInfo_ac0dbb2d89b1e5f9b272679ba3f24314e}\label{classGpgFrontend_1_1GenKeyInfo_ac0dbb2d89b1e5f9b272679ba3f24314e}} +\mbox{\Hypertarget{classGpgFrontend_1_1GenKeyInfo_a185c7be801854f81879351a6c4dd9071}\label{classGpgFrontend_1_1GenKeyInfo_a185c7be801854f81879351a6c4dd9071}} \index{GpgFrontend::GenKeyInfo@{GpgFrontend::GenKeyInfo}!GetSupportedKeyAlgo@{GetSupportedKeyAlgo}} \index{GetSupportedKeyAlgo@{GetSupportedKeyAlgo}!GpgFrontend::GenKeyInfo@{GpgFrontend::GenKeyInfo}} \doxysubsubsection{\texorpdfstring{GetSupportedKeyAlgo()}{GetSupportedKeyAlgo()}} -{\footnotesize\ttfamily const std\+::vector$<$ Gpg\+Frontend\+::\+Gen\+Key\+Info\+::\+Key\+Gen\+Algo $>$ \& Gpg\+Frontend\+::\+Gen\+Key\+Info\+::\+Get\+Supported\+Key\+Algo (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} +{\footnotesize\ttfamily const std\+::vector$<$ std\+::string $>$ \& Gpg\+Frontend\+::\+Gen\+Key\+Info\+::\+Get\+Supported\+Key\+Algo (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} @@ -370,13 +364,13 @@ const std\+::vector$<$std\+::string$>$\& \end{DoxyReturn} -Referenced by Gpg\+Frontend\+::\+UI\+::\+Key\+Gen\+Dialog\+::create\+\_\+basic\+\_\+info\+\_\+group\+\_\+box(), Gen\+Key\+Info(), and Set\+Algo(). +Referenced by Gpg\+Frontend\+::\+UI\+::\+Key\+Gen\+Dialog\+::create\+\_\+basic\+\_\+info\+\_\+group\+\_\+box(), Gpg\+Frontend\+::\+UI\+::\+Subkey\+Generate\+Dialog\+::create\+\_\+basic\+\_\+info\+\_\+group\+\_\+box(), and Set\+Algo(). -\mbox{\Hypertarget{classGpgFrontend_1_1GenKeyInfo_afb8315b6612c64b3921b72df98ebcc74}\label{classGpgFrontend_1_1GenKeyInfo_afb8315b6612c64b3921b72df98ebcc74}} +\mbox{\Hypertarget{classGpgFrontend_1_1GenKeyInfo_a8b054a66cb0678af6c42090eea1518e4}\label{classGpgFrontend_1_1GenKeyInfo_a8b054a66cb0678af6c42090eea1518e4}} \index{GpgFrontend::GenKeyInfo@{GpgFrontend::GenKeyInfo}!GetSupportedKeyAlgoStandalone@{GetSupportedKeyAlgoStandalone}} \index{GetSupportedKeyAlgoStandalone@{GetSupportedKeyAlgoStandalone}!GpgFrontend::GenKeyInfo@{GpgFrontend::GenKeyInfo}} \doxysubsubsection{\texorpdfstring{GetSupportedKeyAlgoStandalone()}{GetSupportedKeyAlgoStandalone()}} -{\footnotesize\ttfamily const std\+::vector$<$ Gpg\+Frontend\+::\+Gen\+Key\+Info\+::\+Key\+Gen\+Algo $>$ \& Gpg\+Frontend\+::\+Gen\+Key\+Info\+::\+Get\+Supported\+Key\+Algo\+Standalone (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} +{\footnotesize\ttfamily const std\+::vector$<$ std\+::string $>$ \& Gpg\+Frontend\+::\+Gen\+Key\+Info\+::\+Get\+Supported\+Key\+Algo\+Standalone (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} @@ -389,11 +383,11 @@ const std\+::vector$<$std\+::string$>$\& Referenced by Set\+Algo(). -\mbox{\Hypertarget{classGpgFrontend_1_1GenKeyInfo_a168d6fe5252812f5984ba6d8046c7741}\label{classGpgFrontend_1_1GenKeyInfo_a168d6fe5252812f5984ba6d8046c7741}} +\mbox{\Hypertarget{classGpgFrontend_1_1GenKeyInfo_a7855d9fe9b6872ff08a60fe21640d07f}\label{classGpgFrontend_1_1GenKeyInfo_a7855d9fe9b6872ff08a60fe21640d07f}} \index{GpgFrontend::GenKeyInfo@{GpgFrontend::GenKeyInfo}!GetSupportedSubkeyAlgo@{GetSupportedSubkeyAlgo}} \index{GetSupportedSubkeyAlgo@{GetSupportedSubkeyAlgo}!GpgFrontend::GenKeyInfo@{GpgFrontend::GenKeyInfo}} \doxysubsubsection{\texorpdfstring{GetSupportedSubkeyAlgo()}{GetSupportedSubkeyAlgo()}} -{\footnotesize\ttfamily const std\+::vector$<$ Gpg\+Frontend\+::\+Gen\+Key\+Info\+::\+Key\+Gen\+Algo $>$ \& Gpg\+Frontend\+::\+Gen\+Key\+Info\+::\+Get\+Supported\+Subkey\+Algo (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} +{\footnotesize\ttfamily const std\+::vector$<$ std\+::string $>$ \& Gpg\+Frontend\+::\+Gen\+Key\+Info\+::\+Get\+Supported\+Subkey\+Algo (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} @@ -404,13 +398,13 @@ const std\+::vector$<$std\+::string$>$\& \end{DoxyReturn} -Referenced by Gpg\+Frontend\+::\+UI\+::\+Subkey\+Generate\+Dialog\+::create\+\_\+basic\+\_\+info\+\_\+group\+\_\+box(), and Set\+Algo(). +Referenced by Set\+Algo(). -\mbox{\Hypertarget{classGpgFrontend_1_1GenKeyInfo_a6819b0ca3ef7712b85ae320030cde023}\label{classGpgFrontend_1_1GenKeyInfo_a6819b0ca3ef7712b85ae320030cde023}} +\mbox{\Hypertarget{classGpgFrontend_1_1GenKeyInfo_a310fd0cdac03d0b0a7fde006105866d6}\label{classGpgFrontend_1_1GenKeyInfo_a310fd0cdac03d0b0a7fde006105866d6}} \index{GpgFrontend::GenKeyInfo@{GpgFrontend::GenKeyInfo}!GetSupportedSubkeyAlgoStandalone@{GetSupportedSubkeyAlgoStandalone}} \index{GetSupportedSubkeyAlgoStandalone@{GetSupportedSubkeyAlgoStandalone}!GpgFrontend::GenKeyInfo@{GpgFrontend::GenKeyInfo}} \doxysubsubsection{\texorpdfstring{GetSupportedSubkeyAlgoStandalone()}{GetSupportedSubkeyAlgoStandalone()}} -{\footnotesize\ttfamily const std\+::vector$<$ Gpg\+Frontend\+::\+Gen\+Key\+Info\+::\+Key\+Gen\+Algo $>$ \& Gpg\+Frontend\+::\+Gen\+Key\+Info\+::\+Get\+Supported\+Subkey\+Algo\+Standalone (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} +{\footnotesize\ttfamily const std\+::vector$<$ std\+::string $>$ \& Gpg\+Frontend\+::\+Gen\+Key\+Info\+::\+Get\+Supported\+Subkey\+Algo\+Standalone (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} @@ -568,11 +562,11 @@ true false \end{DoxyReturn} -\mbox{\Hypertarget{classGpgFrontend_1_1GenKeyInfo_adcd9c4f3e75f989810988e0bc81d401f}\label{classGpgFrontend_1_1GenKeyInfo_adcd9c4f3e75f989810988e0bc81d401f}} +\mbox{\Hypertarget{classGpgFrontend_1_1GenKeyInfo_a378ea10385ab401bea45a7edb3df122d}\label{classGpgFrontend_1_1GenKeyInfo_a378ea10385ab401bea45a7edb3df122d}} \index{GpgFrontend::GenKeyInfo@{GpgFrontend::GenKeyInfo}!SetAlgo@{SetAlgo}} \index{SetAlgo@{SetAlgo}!GpgFrontend::GenKeyInfo@{GpgFrontend::GenKeyInfo}} \doxysubsubsection{\texorpdfstring{SetAlgo()}{SetAlgo()}} -{\footnotesize\ttfamily void Gpg\+Frontend\+::\+Gen\+Key\+Info\+::\+Set\+Algo (\begin{DoxyParamCaption}\item[{const Gpg\+Frontend\+::\+Gen\+Key\+Info\+::\+Key\+Gen\+Algo \&}]{m\+\_\+algo }\end{DoxyParamCaption})} +{\footnotesize\ttfamily void Gpg\+Frontend\+::\+Gen\+Key\+Info\+::\+Set\+Algo (\begin{DoxyParamCaption}\item[{const std\+::string \&}]{m\+\_\+algo }\end{DoxyParamCaption})} @@ -601,6 +595,8 @@ Algorithm (DSA) as a government standard for digital signatures. Originally, it Gnu\+PG supports the Elgamal asymmetric encryption algorithm in key lengths ranging from 1024 to 4096 bits. +Gnu\+PG supports the Elgamal asymmetric encryption algorithm in key lengths ranging from 1024 to 4096 bits. + References Get\+Supported\+Key\+Algo(), Get\+Supported\+Key\+Algo\+Standalone(), Get\+Supported\+Subkey\+Algo(), Get\+Supported\+Subkey\+Algo\+Standalone(), Set\+Allow\+Authentication(), Set\+Allow\+Certification(), Set\+Allow\+Encryption(), Set\+Allow\+Signing(), and Set\+Key\+Length(). diff --git a/docs/latex/classGpgFrontend_1_1GenKeyInfo__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GenKeyInfo__coll__graph.pdf index 063f16af..a81464a0 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.tex b/docs/latex/classGpgFrontend_1_1GlobalSettingStation.tex index a80e3d27..595e4ecb 100644 --- a/docs/latex/classGpgFrontend_1_1GlobalSettingStation.tex +++ b/docs/latex/classGpgFrontend_1_1GlobalSettingStation.tex @@ -201,7 +201,7 @@ libconfig\+::\+Setting\& \end{DoxyReturn} -Referenced by Gpg\+Frontend\+::\+UI\+::\+Key\+List\+::drop\+Event(), Gpg\+Frontend\+::\+UI\+::init\+\_\+locale(), Gpg\+Frontend\+::\+UI\+::\+Key\+Gen\+Dialog\+::\+Key\+Gen\+Dialog(), Gpg\+Frontend\+::\+UI\+::\+Key\+Mgmt\+::\+Key\+Mgmt(), Gpg\+Frontend\+::\+UI\+::\+General\+Tab\+::\+Set\+Settings(), Gpg\+Frontend\+::\+UI\+::\+Network\+Tab\+::\+Set\+Settings(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::\+Slot\+File\+Encrypt(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::\+Slot\+File\+Encrypt\+Sign(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::\+Slot\+File\+Sign(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::\+Slot\+File\+Verify(), Gpg\+Frontend\+::\+UI\+::\+Common\+Utils\+::\+Slot\+Import\+Key\+From\+Key\+Server(), Gpg\+Frontend\+::\+UI\+::\+Subkey\+Generate\+Dialog\+::\+Subkey\+Generate\+Dialog(), and Gpg\+Frontend\+::\+UI\+::\+Wizard\+::\+Wizard(). +Referenced by Gpg\+Frontend\+::\+UI\+::\+Key\+List\+::drop\+Event(), Gpg\+Frontend\+::\+UI\+::init\+\_\+locale(), Gpg\+Frontend\+::\+UI\+::\+Key\+Gen\+Dialog\+::\+Key\+Gen\+Dialog(), Gpg\+Frontend\+::\+UI\+::\+Key\+Mgmt\+::\+Key\+Mgmt(), Gpg\+Frontend\+::\+UI\+::\+General\+Tab\+::\+Set\+Settings(), Gpg\+Frontend\+::\+UI\+::\+Network\+Tab\+::\+Set\+Settings(), Gpg\+Frontend\+::\+UI\+::\+Key\+Upload\+Dialog\+::slot\+\_\+upload\+\_\+key\+\_\+to\+\_\+server(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::\+Slot\+File\+Encrypt(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::\+Slot\+File\+Encrypt\+Sign(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::\+Slot\+File\+Sign(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::\+Slot\+File\+Verify(), Gpg\+Frontend\+::\+UI\+::\+Common\+Utils\+::\+Slot\+Import\+Key\+From\+Key\+Server(), Gpg\+Frontend\+::\+UI\+::\+Subkey\+Generate\+Dialog\+::\+Subkey\+Generate\+Dialog(), and Gpg\+Frontend\+::\+UI\+::\+Wizard\+::\+Wizard(). \mbox{\Hypertarget{classGpgFrontend_1_1GlobalSettingStation_ac061ac8e5308f67ea52b98888bbb2e8d}\label{classGpgFrontend_1_1GlobalSettingStation_ac061ac8e5308f67ea52b98888bbb2e8d}} \index{GpgFrontend::GlobalSettingStation@{GpgFrontend::GlobalSettingStation}!SyncSettings@{SyncSettings}} diff --git a/docs/latex/classGpgFrontend_1_1GlobalSettingStation__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GlobalSettingStation__coll__graph.pdf index ea6a57de..f39b82d8 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 ea6a57de..f39b82d8 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 31a36694..be70f9d7 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 ba1b9044..8c82eafa 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 aab0b4c5..bbde59df 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 fb2da9de..21d6014b 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 6cf0ed27..10d38587 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 ce955062..2e4841ad 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 3daad60c..4d402a04 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 78d3bc68..be94d05a 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 734478ca..684e60f1 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 904c39bb..520b02cf 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 ab7dcbc5..d3c34216 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 0c050965..c86ad173 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 9d7f6ab9..66a8cb74 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 9d7f6ab9..66a8cb74 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 5867699a..d0bec12a 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 9854336f..6d67a6dd 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 1688b0e0..6d8417f0 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_1GpgKey.tex b/docs/latex/classGpgFrontend_1_1GpgKey.tex index 68251c28..694c8126 100644 --- a/docs/latex/classGpgFrontend_1_1GpgKey.tex +++ b/docs/latex/classGpgFrontend_1_1GpgKey.tex @@ -7,7 +7,7 @@ Collaboration diagram for Gpg\+Frontend\+::Gpg\+Key\+: \begin{figure}[H] \begin{center} \leavevmode -\includegraphics[width=350pt]{classGpgFrontend_1_1GpgKey__coll__graph} +\includegraphics[height=550pt]{classGpgFrontend_1_1GpgKey__coll__graph} \end{center} \end{figure} \doxysubsection*{Classes} @@ -111,9 +111,6 @@ using {\bfseries Key\+Ref\+Handler} = std\+::unique\+\_\+ptr$<$ struct \+\_\+gpg \item \mbox{\Hypertarget{classGpgFrontend_1_1GpgKey_aec4e7e1845073f23cf55dc660c69c44a}\label{classGpgFrontend_1_1GpgKey_aec4e7e1845073f23cf55dc660c69c44a}} Key\+Ref\+Handler {\bfseries key\+\_\+ref\+\_\+} = nullptr -\item -\mbox{\Hypertarget{classGpgFrontend_1_1GpgKey_ad1784bcc872f42b87e48bcfa40dab4cd}\label{classGpgFrontend_1_1GpgKey_ad1784bcc872f42b87e48bcfa40dab4cd}} -std\+::mutex {\bfseries gpgme\+\_\+key\+\_\+opera\+\_\+mutex} \end{DoxyCompactItemize} diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyGetter__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1GpgKeyGetter__coll__graph.md5 index 81940dbe..03298c1d 100644 --- a/docs/latex/classGpgFrontend_1_1GpgKeyGetter__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1GpgKeyGetter__coll__graph.md5 @@ -1 +1 @@ -4d981e03577eaa006abf79e1129a9ca5 \ No newline at end of file +01a1213479fa361096a7f9a134bac7e8 \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyGetter__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgKeyGetter__coll__graph.pdf index ba8c5309..ad216457 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 87c09baf..db505678 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 28319a60..f1f41b15 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 702cc2ac..99d3b6ea 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 b100a304..f243b014 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 bb636d2f..893b58bf 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 d9257730..2bbd321a 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 4661025d..cb2d75f6 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 efb9be14..f362c90c 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.md5 b/docs/latex/classGpgFrontend_1_1GpgKey__coll__graph.md5 index 841c005c..9f17d1fb 100644 --- a/docs/latex/classGpgFrontend_1_1GpgKey__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1GpgKey__coll__graph.md5 @@ -1 +1 @@ -ce0b43b170e5c2d599a0f554a50af15c \ No newline at end of file +7c3613e767a2ab37bafe4ededd401b8e \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1GpgKey__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgKey__coll__graph.pdf index c2482f4c..d15622c2 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 db102b7a..4a35da86 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 e7dfa3f2..257d09bc 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 37bf704c..1ec79ceb 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 e4e58795..00f0f794 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 7a96788f..570d3a46 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 b26a2657..94e06d7c 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 5e11bcf2..0cfb13f7 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 db1f95a0..07e1d14d 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 5bab3073..5111184c 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 f0064a1d..3c3732f5 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 054b2d31..46b2653d 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 66816f2d..4209cd59 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 7bc26e10..b70321ac 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 b951c163..95358b9b 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 b951c163..95358b9b 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 969eb51e..decee3e1 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 077a645e..d4c5dab4 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 b63ce42f..03d19622 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 257347e4..0c9417c2 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.pdf b/docs/latex/classGpgFrontend_1_1Thread_1_1CtxCheckTask__coll__graph.pdf index b0505932..610689d2 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 80bc8da1..a9958350 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.pdf b/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunnerGetter__coll__graph.pdf index eda16e1f..160ca8a0 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 df648cf0..c62bc362 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.pdf b/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner__coll__graph.pdf index 110a8c6d..7d1d2ff2 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 85d1c5eb..c20a79c4 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__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Thread_1_1Task_1_1DataObject__coll__graph.pdf index 64efba54..0a77dc29 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.pdf b/docs/latex/classGpgFrontend_1_1Thread_1_1Task__coll__graph.pdf index 51acd7c9..17660465 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 660ec4b2..4e76a29e 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.tex b/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog.tex index 36172fcd..668d5747 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog.tex @@ -16,7 +16,7 @@ Inheritance diagram for Gpg\+Frontend\+::UI\+::About\+Dialog\+: \begin{figure}[H] \begin{center} \leavevmode -\includegraphics[width=262pt]{classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph} +\includegraphics[width=241pt]{classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph} \end{center} \end{figure} diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.md5 index b85a7229..38ba8b58 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.md5 @@ -1 +1 @@ -328c85db8f9e9f7d0660ee00adaaa622 \ No newline at end of file +58c546a6c69eb8174355a30649e4e83c \ No newline at end of file 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 012ae2d9..2eb0a64f 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.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.md5 index 82ad4cec..d3dd4b3c 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.md5 @@ -1 +1 @@ -63aa24fd12f931982b3183a3ce899bb6 \ No newline at end of file +1d4a529589aa8bb8548337db6638a6cc \ No newline at end of file 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 4e4c0879..f24eff08 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 3839f795..e5c8e5a5 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 3839f795..e5c8e5a5 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.tex b/docs/latex/classGpgFrontend_1_1UI_1_1AppearanceTab.tex index f9e78732..7cadc21a 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1AppearanceTab.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1AppearanceTab.tex @@ -17,7 +17,7 @@ Collaboration diagram for Gpg\+Frontend\+::UI\+::Appearance\+Tab\+: \begin{figure}[H] \begin{center} \leavevmode -\includegraphics[width=350pt]{classGpgFrontend_1_1UI_1_1AppearanceTab__coll__graph} +\includegraphics[width=256pt]{classGpgFrontend_1_1UI_1_1AppearanceTab__coll__graph} \end{center} \end{figure} \doxysubsection*{Signals} @@ -39,14 +39,35 @@ void {\bfseries Apply\+Settings} () \doxysubsection*{Private Attributes} \begin{DoxyCompactItemize} \item -\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1AppearanceTab_a9f546f16551f48c73ee9031dd0ad8720}\label{classGpgFrontend_1_1UI_1_1AppearanceTab_a9f546f16551f48c73ee9031dd0ad8720}} -std\+::shared\+\_\+ptr$<$ Ui\+\_\+\+Appearance\+Settings $>$ {\bfseries ui\+\_\+} -\item \mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1AppearanceTab_a58b3ece7ff069c33de73e658aa47cacc}\label{classGpgFrontend_1_1UI_1_1AppearanceTab_a58b3ece7ff069c33de73e658aa47cacc}} QButton\+Group $\ast$ {\bfseries icon\+\_\+style\+\_\+group\+\_\+} \item +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1AppearanceTab_ab9b4572e7e809fbf73435c0c2df7b9ad}\label{classGpgFrontend_1_1UI_1_1AppearanceTab_ab9b4572e7e809fbf73435c0c2df7b9ad}} +QRadio\+Button $\ast$ {\bfseries icon\+\_\+size\+\_\+small\+\_\+} +\item +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1AppearanceTab_aed37292c07ba2ac20d72765b08b9a09b}\label{classGpgFrontend_1_1UI_1_1AppearanceTab_aed37292c07ba2ac20d72765b08b9a09b}} +QRadio\+Button $\ast$ {\bfseries icon\+\_\+size\+\_\+medium\+\_\+} +\item +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1AppearanceTab_a1d3e08ebb4a6c21164f25d74eaabe0eb}\label{classGpgFrontend_1_1UI_1_1AppearanceTab_a1d3e08ebb4a6c21164f25d74eaabe0eb}} +QRadio\+Button $\ast$ {\bfseries icon\+\_\+size\+\_\+large\+\_\+} +\item \mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1AppearanceTab_aaa3ec787dcd8fae1a14c2067deb9dd03}\label{classGpgFrontend_1_1UI_1_1AppearanceTab_aaa3ec787dcd8fae1a14c2067deb9dd03}} QButton\+Group $\ast$ {\bfseries icon\+\_\+size\+\_\+group\+\_\+} +\item +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1AppearanceTab_af5598180d11936e4b5fa2a57dd592093}\label{classGpgFrontend_1_1UI_1_1AppearanceTab_af5598180d11936e4b5fa2a57dd592093}} +QRadio\+Button $\ast$ {\bfseries icon\+\_\+text\+\_\+button\+\_\+} +\item +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1AppearanceTab_ac8d285e5f3cceb1e6bb857d0487abc8b}\label{classGpgFrontend_1_1UI_1_1AppearanceTab_ac8d285e5f3cceb1e6bb857d0487abc8b}} +QRadio\+Button $\ast$ {\bfseries icon\+\_\+icons\+\_\+button\+\_\+} +\item +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1AppearanceTab_a1b28a54fa3ffc5586132b6f5385f62cc}\label{classGpgFrontend_1_1UI_1_1AppearanceTab_a1b28a54fa3ffc5586132b6f5385f62cc}} +QRadio\+Button $\ast$ {\bfseries icon\+\_\+all\+\_\+button\+\_\+} +\item +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1AppearanceTab_ac460ceea6d6841d6cf0a3c86be6f7d60}\label{classGpgFrontend_1_1UI_1_1AppearanceTab_ac460ceea6d6841d6cf0a3c86be6f7d60}} +QSpin\+Box $\ast$ {\bfseries info\+\_\+board\+\_\+font\+\_\+size\+\_\+spin\+\_\+} +\item +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1AppearanceTab_a01dfa2d7811180351d3e0d33667df23e}\label{classGpgFrontend_1_1UI_1_1AppearanceTab_a01dfa2d7811180351d3e0d33667df23e}} +QCheck\+Box $\ast$ {\bfseries window\+\_\+size\+\_\+check\+\_\+box\+\_\+} \end{DoxyCompactItemize} diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1AppearanceTab__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1AppearanceTab__coll__graph.md5 index 679c9ef4..1261784d 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1AppearanceTab__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1AppearanceTab__coll__graph.md5 @@ -1 +1 @@ -7cb1bca0342b6a28f4ebabae10699a60 \ No newline at end of file +19d0b2fa27d3e10d78b209ca9db80cee \ No newline at end of file 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 d8a84cef..e04abb83 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.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1AppearanceTab__inherit__graph.md5 index 32f8d3b2..1261784d 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1AppearanceTab__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1AppearanceTab__inherit__graph.md5 @@ -1 +1 @@ -5de7e330ffb1de37474d7c1f15a7ec07 \ No newline at end of file +19d0b2fa27d3e10d78b209ca9db80cee \ No newline at end of file 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 0e6eded3..e04abb83 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 49582f5e..21cc4429 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 49582f5e..21cc4429 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 44580006..e17be94c 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 68928302..68eea3e7 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 93c1ba90..00f76e0f 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 93c1ba90..00f76e0f 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.tex b/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.tex index ce448790..2961203a 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.tex @@ -7,7 +7,7 @@ Inheritance diagram for Gpg\+Frontend\+::UI\+::Export\+Key\+Package\+Dialog\+: \begin{figure}[H] \begin{center} \leavevmode -\includegraphics[width=262pt]{classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph} +\includegraphics[width=236pt]{classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph} \end{center} \end{figure} @@ -37,7 +37,6 @@ Key\+Id\+Args\+List\+Ptr {\bfseries key\+\_\+ids\+\_\+} \mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog_a7f9160202394557df01edf3f82f50a55}\label{classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog_a7f9160202394557df01edf3f82f50a55}} std\+::string {\bfseries passphrase\+\_\+} \end{DoxyCompactItemize} -\doxysubsection*{Additional Inherited Members} \doxysubsection{Constructor \& Destructor Documentation} diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.md5 index bdd6a1a9..2629f67b 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.md5 @@ -1 +1 @@ -2cbc410ecde206f138950b8776b8755d \ No newline at end of file +bb877fecb3d56262d8b08c577ae5c794 \ No newline at end of file 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 af8bb8e2..9d8a25b7 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.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.md5 index 455d9058..463474e7 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.md5 @@ -1 +1 @@ -694ddea368a258ff713c2c3c16faaa83 \ No newline at end of file +69eb903e75056b558c2e0f31a7b2308d \ No newline at end of file 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 2bbccc48..3d20a576 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 4da61414..f60a04e6 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 d84382e1..ef99cda5 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1FilePage__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1FilePage__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1FileReadTask__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1FileReadTask__coll__graph.pdf index a2df346d..8dab9c7e 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 4b99fa43..3f6fd835 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 dff1ac33..8a251a72 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 df05a884..d81aef30 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_1GeneralDialog.tex b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog.tex index 55315c02..73beb0ca 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog.tex @@ -17,7 +17,7 @@ Collaboration diagram for Gpg\+Frontend\+::UI\+::General\+Dialog\+: \begin{figure}[H] \begin{center} \leavevmode -\includegraphics[width=286pt]{classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph} +\includegraphics[width=265pt]{classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph} \end{center} \end{figure} \doxysubsection*{Public Member Functions} @@ -25,15 +25,6 @@ Collaboration diagram for Gpg\+Frontend\+::UI\+::General\+Dialog\+: \item \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1GeneralDialog_ac9de4c49668ffaeb6916c64f878a202c}{General\+Dialog}} (std\+::string name, QWidget $\ast$parent=nullptr) \end{DoxyCompactItemize} -\doxysubsection*{Protected Member Functions} -\begin{DoxyCompactItemize} -\item -\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralDialog_abad7cff23d2426820e320ecea47b479c}\label{classGpgFrontend_1_1UI_1_1GeneralDialog_abad7cff23d2426820e320ecea47b479c}} -void {\bfseries set\+Pos\+Center\+Of\+Screen} () -\item -\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralDialog_ad9d5be542aa422450a96dff00232ebe5}\label{classGpgFrontend_1_1UI_1_1GeneralDialog_ad9d5be542aa422450a96dff00232ebe5}} -void {\bfseries move\+Position2\+Center\+Of\+Parent} () -\end{DoxyCompactItemize} \doxysubsection*{Private Slots} \begin{DoxyCompactItemize} \item @@ -54,12 +45,6 @@ QPoint {\bfseries pos\+\_\+} \item \mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralDialog_aeda520454fd38920a027c1a4195a2e6f}\label{classGpgFrontend_1_1UI_1_1GeneralDialog_aeda520454fd38920a027c1a4195a2e6f}} QSize {\bfseries size\+\_\+} -\item -\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralDialog_a871f204f01f10815e3475c103f1157af}\label{classGpgFrontend_1_1UI_1_1GeneralDialog_a871f204f01f10815e3475c103f1157af}} -QPoint {\bfseries parent\+\_\+pos\+\_\+} -\item -\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralDialog_a234a0a4d8c0b1b49a54f65b1aa3f9490}\label{classGpgFrontend_1_1UI_1_1GeneralDialog_a234a0a4d8c0b1b49a54f65b1aa3f9490}} -QSize {\bfseries parent\+\_\+size\+\_\+} \end{DoxyCompactItemize} diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.md5 index 46b177ed..4b5dcf2b 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.md5 @@ -1 +1 @@ -1ad0f86474effc5f3a42f82bfbd85399 \ No newline at end of file +93e045a74c4e7bfaf5f413ce44683f40 \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.pdf index 3ae86d82..b0671b7c 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.md5 index a5bfdf5b..c2048939 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.md5 @@ -1 +1 @@ -5e082dc6edfc6949de8d0d993131cd09 \ No newline at end of file +16d5e7fa5838e7507c9a30fbe266bd13 \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.pdf index 43cff489..f1aa4984 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralMainWindow.tex b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralMainWindow.tex index 7aebe77c..711cdaba 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralMainWindow.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralMainWindow.tex @@ -28,7 +28,7 @@ Collaboration diagram for Gpg\+Frontend\+::UI\+::General\+Main\+Window\+: \doxysubsection*{Protected Member Functions} \begin{DoxyCompactItemize} \item -void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1GeneralMainWindow_acc10569862d1575d9453d1c1aa539242}{close\+Event}} (QClose\+Event $\ast$event) override +void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1GeneralMainWindow_af5c86754836a678c7058e6f633968863}{close\+Event}} (QClose\+Event $\ast$event) \end{DoxyCompactItemize} \doxysubsection*{Protected Attributes} \begin{DoxyCompactItemize} @@ -92,11 +92,11 @@ All the source code of \mbox{\hyperlink{namespaceGpgFrontend}{Gpg\+Frontend}} wa SPDX-\/\+License-\/\+Identifier\+: GPL-\/3.\+0-\/or-\/later \doxysubsection{Member Function Documentation} -\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralMainWindow_acc10569862d1575d9453d1c1aa539242}\label{classGpgFrontend_1_1UI_1_1GeneralMainWindow_acc10569862d1575d9453d1c1aa539242}} +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralMainWindow_af5c86754836a678c7058e6f633968863}\label{classGpgFrontend_1_1UI_1_1GeneralMainWindow_af5c86754836a678c7058e6f633968863}} \index{GpgFrontend::UI::GeneralMainWindow@{GpgFrontend::UI::GeneralMainWindow}!closeEvent@{closeEvent}} \index{closeEvent@{closeEvent}!GpgFrontend::UI::GeneralMainWindow@{GpgFrontend::UI::GeneralMainWindow}} \doxysubsubsection{\texorpdfstring{closeEvent()}{closeEvent()}} -{\footnotesize\ttfamily void Gpg\+Frontend\+::\+UI\+::\+General\+Main\+Window\+::close\+Event (\begin{DoxyParamCaption}\item[{QClose\+Event $\ast$}]{event }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [override]}, {\ttfamily [protected]}} +{\footnotesize\ttfamily void Gpg\+Frontend\+::\+UI\+::\+General\+Main\+Window\+::close\+Event (\begin{DoxyParamCaption}\item[{QClose\+Event $\ast$}]{event }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [protected]}} \begin{DoxyParams}{Parameters} diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralMainWindow__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralMainWindow__coll__graph.pdf index ee5f56cf..371f6fa7 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralMainWindow__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralMainWindow__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralMainWindow__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralMainWindow__inherit__graph.pdf index 998d543e..cae3331e 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralMainWindow__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralMainWindow__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralTab__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralTab__coll__graph.md5 index 2c2eabb8..0302d7ed 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralTab__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralTab__coll__graph.md5 @@ -1 +1 @@ -a6364f24d2dd3f6147e4df04092fdf08 \ No newline at end of file +926f7c6580a27fb0d13d6824ded3c5ab \ No newline at end of file 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 428ccc43..612bbcfe 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 66ec57ab..b544431a 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_1GnupgTab__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GnupgTab__coll__graph.pdf index 11b409fa..3506118b 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GnupgTab__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GnupgTab__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GnupgTab__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GnupgTab__inherit__graph.pdf index 11b409fa..3506118b 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GnupgTab__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GnupgTab__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GpgFrontendApplication__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GpgFrontendApplication__coll__graph.pdf index 5b05b432..26555d3c 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GpgFrontendApplication__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GpgFrontendApplication__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GpgFrontendApplication__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GpgFrontendApplication__inherit__graph.pdf index 5b05b432..26555d3c 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GpgFrontendApplication__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GpgFrontendApplication__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1HelpPage__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1HelpPage__coll__graph.pdf index c4eb2955..17b6acbd 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 c4eb2955..17b6acbd 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 6016ccb4..b6b89986 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 c4fc2505..224644f5 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 d77020cb..7437fc6c 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 d77020cb..7437fc6c 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 db37ea5b..730b51b2 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 db37ea5b..730b51b2 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.tex b/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog.tex index f27478af..7ed56be1 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog.tex @@ -7,7 +7,7 @@ Inheritance diagram for Gpg\+Frontend\+::UI\+::Key\+Details\+Dialog\+: \begin{figure}[H] \begin{center} \leavevmode -\includegraphics[width=262pt]{classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph} +\includegraphics[width=234pt]{classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph} \end{center} \end{figure} @@ -17,7 +17,7 @@ Collaboration diagram for Gpg\+Frontend\+::UI\+::Key\+Details\+Dialog\+: \begin{figure}[H] \begin{center} \leavevmode -\includegraphics[height=550pt]{classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph} +\includegraphics[width=272pt]{classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph} \end{center} \end{figure} \doxysubsection*{Public Member Functions} @@ -32,7 +32,6 @@ Collaboration diagram for Gpg\+Frontend\+::UI\+::Key\+Details\+Dialog\+: \mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1KeyDetailsDialog_a701ed5c70a8a0965b0d887b6d187e996}\label{classGpgFrontend_1_1UI_1_1KeyDetailsDialog_a701ed5c70a8a0965b0d887b6d187e996}} QTab\+Widget $\ast$ {\bfseries tab\+\_\+widget\+\_\+} \{\} \end{DoxyCompactItemize} -\doxysubsection*{Additional Inherited Members} The documentation for this class was generated from the following files\+:\begin{DoxyCompactItemize} diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.md5 index 3aa29ca6..664e165d 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.md5 @@ -1 +1 @@ -e150d9ff2dc1d02a44ea535f4df881a0 \ No newline at end of file +02cc60dabd7ba8393428fe250816ded5 \ No newline at end of file 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 d562cbb0..b0b153b9 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.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.md5 index 316656a8..c28e3f5f 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.md5 @@ -1 +1 @@ -ef280f4118fcedbc592fad35168d0535 \ No newline at end of file +edce17602f9f7723f8fb025a1be644d8 \ No newline at end of file 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 c46b07bf..6d9fd045 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.tex b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog.tex index 9688bfa5..3371515a 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog.tex @@ -112,7 +112,6 @@ QDate\+Time {\bfseries max\+\_\+date\+\_\+time\+\_\+} \mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1KeyGenDialog_ab0ccac068670a3e28ce78ff87a40b2fc}\label{classGpgFrontend_1_1UI_1_1KeyGenDialog_ab0ccac068670a3e28ce78ff87a40b2fc}} std\+::vector$<$ QCheck\+Box $\ast$ $>$ \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1KeyGenDialog_ab0ccac068670a3e28ce78ff87a40b2fc}{key\+\_\+usage\+\_\+check\+\_\+boxes\+\_\+}} \begin{DoxyCompactList}\small\item\em ENCR, SIGN, CERT, AUTH. \end{DoxyCompactList}\end{DoxyCompactItemize} -\doxysubsection*{Additional Inherited Members} \doxysubsection{Constructor \& Destructor Documentation} @@ -221,7 +220,7 @@ Referenced by slot\+\_\+activated\+\_\+key\+\_\+type(). \end{DoxyParams} -References refresh\+\_\+widgets\+\_\+state(). +References key\+\_\+type\+\_\+combo\+\_\+box\+\_\+, and refresh\+\_\+widgets\+\_\+state(). diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.md5 index 520d918e..c59bfd74 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.md5 @@ -1 +1 @@ -c6e7428a5adf75594575c40fb2e54c81 \ No newline at end of file +926ed0ef6b2bd9e9bd4a55c475b2c315 \ No newline at end of file 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 76290b46..b493c531 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.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.md5 index 87742b5d..5cfd9cf4 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.md5 @@ -1 +1 @@ -2baa4f9d48dc1be536d5e62edad511df \ No newline at end of file +a57e50ab37498b6071e10ba508214987 \ No newline at end of file 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 a0dd88c4..37e860bc 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 8032964e..70743e66 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 8032964e..70743e66 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.tex b/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.tex index b6d179f0..b4998f86 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.tex @@ -7,7 +7,7 @@ Inheritance diagram for Gpg\+Frontend\+::UI\+::Key\+Import\+Detail\+Dialog\+: \begin{figure}[H] \begin{center} \leavevmode -\includegraphics[width=262pt]{classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph} +\includegraphics[width=232pt]{classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph} \end{center} \end{figure} @@ -60,7 +60,6 @@ QDialog\+Button\+Box $\ast$ {\bfseries button\+\_\+box\+\_\+} \{\} \mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1KeyImportDetailDialog_a238e3af4b4980dd563e1fe6ea12f4474}\label{classGpgFrontend_1_1UI_1_1KeyImportDetailDialog_a238e3af4b4980dd563e1fe6ea12f4474}} \mbox{\hyperlink{classGpgFrontend_1_1GpgImportInformation}{Gpg\+Import\+Information}} {\bfseries m\+\_\+result\+\_\+} \end{DoxyCompactItemize} -\doxysubsection*{Additional Inherited Members} \doxysubsection{Constructor \& Destructor Documentation} diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.md5 index 46dc6b5a..24c760c8 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.md5 @@ -1 +1 @@ -c3ff390cfb71d2f377d9372948217916 \ No newline at end of file +b5fb81b976446ae2c005ddba581a3ab8 \ No newline at end of file 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 1a87cd60..94fe4bab 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.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.md5 index a5609a8f..c6488c4f 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.md5 @@ -1 +1 @@ -81bc9706182dea09cf2179ff57fd8398 \ No newline at end of file +92017ae4d4447242980bfe445e79ad6c \ No newline at end of file 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 d87295a0..115ff421 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.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyList__coll__graph.md5 index 15c04056..0dda5839 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyList__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyList__coll__graph.md5 @@ -1 +1 @@ -f5e0e59a7bda94c8916a18075b6b541d \ No newline at end of file +db39dced680c6b2d7b0e69950270bb55 \ No newline at end of file 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 7a37ff98..8235f715 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 8b21be0d..07ef7f5f 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.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.md5 index 6e6bd7c4..ac7e7ad4 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.md5 @@ -1 +1 @@ -d52c9f5d9255360ec3471ad049351e7e \ No newline at end of file +d35c971759ab226eb049c0dde7aeb690 \ No newline at end of file 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 7083c6e6..47afc4c2 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 c645bef6..bf2b09da 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.tex b/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.tex index 637c2e60..8d6decff 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.tex @@ -17,7 +17,7 @@ Collaboration diagram for Gpg\+Frontend\+::UI\+::Key\+New\+UIDDialog\+: \begin{figure}[H] \begin{center} \leavevmode -\includegraphics[width=350pt]{classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph} +\includegraphics[height=550pt]{classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph} \end{center} \end{figure} \doxysubsection*{Signals} @@ -67,7 +67,6 @@ QLabel $\ast$ {\bfseries error\+\_\+label\+\_\+} \{\} \item QRegular\+Expression {\bfseries re\+\_\+email\+\_\+} \end{DoxyCompactItemize} -\doxysubsection*{Additional Inherited Members} \doxysubsection{Constructor \& Destructor Documentation} diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.md5 index b2720eb6..8394f3f6 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.md5 @@ -1 +1 @@ -a1a2ca849121ab1b088526f5ec1680c6 \ No newline at end of file +00d4bc0144ca649a58b25e7dec4da413 \ No newline at end of file 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 42c316bb..5270899e 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.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.md5 index 1e30aad3..ceb603ae 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.md5 @@ -1 +1 @@ -71d7569cffde208b5559a82e16a3db46 \ No newline at end of file +3e704c46454cd866271f7e8f97121403 \ No newline at end of file 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 39585b82..638a0f28 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.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__coll__graph.md5 index 7ddc470c..a805e36d 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__coll__graph.md5 @@ -1 +1 @@ -32192cca5a7cc86074012e24daaf71d7 \ No newline at end of file +0b946d283e9eead44b6c35d25b79cbcd \ No newline at end of file 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 8871807c..74ecd73a 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 119b2837..311524f5 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.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__coll__graph.md5 index 5a9264ef..ab58ae9b 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__coll__graph.md5 @@ -1 +1 @@ -5bdcf83117c9c95d76194a9983e1e38b \ No newline at end of file +44efddd946a18e8cbdbc0f950bc2dbe7 \ No newline at end of file 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 3fabfcea..3d034967 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 75f4d2d9..14ca6b76 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.tex b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.tex index d21b1fd1..aeb6cbba 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.tex @@ -17,7 +17,7 @@ Collaboration diagram for Gpg\+Frontend\+::UI\+::Key\+Pair\+Subkey\+Tab\+: \begin{figure}[H] \begin{center} \leavevmode -\includegraphics[width=350pt]{classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__coll__graph} +\includegraphics[height=550pt]{classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__coll__graph} \end{center} \end{figure} \doxysubsection*{Public Member Functions} diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__coll__graph.md5 index e5e455ce..d79cade3 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__coll__graph.md5 @@ -1 +1 @@ -7368f83b6e0a1866e781471480569b80 \ No newline at end of file +19cf58359131f0d2eb6a844e642a56bd \ No newline at end of file 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 a0357199..f8dcb274 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 8fd74164..087e45df 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.tex b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairUIDTab.tex index fa7a60a8..f84943a7 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairUIDTab.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairUIDTab.tex @@ -17,7 +17,7 @@ Collaboration diagram for Gpg\+Frontend\+::UI\+::Key\+Pair\+UIDTab\+: \begin{figure}[H] \begin{center} \leavevmode -\includegraphics[width=350pt]{classGpgFrontend_1_1UI_1_1KeyPairUIDTab__coll__graph} +\includegraphics[height=550pt]{classGpgFrontend_1_1UI_1_1KeyPairUIDTab__coll__graph} \end{center} \end{figure} \doxysubsection*{Signals} diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__coll__graph.md5 index 03939e0f..e828dbc7 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__coll__graph.md5 @@ -1 +1 @@ -17df790941200c9381d490957ba4dd23 \ No newline at end of file +714a4da2119c84c948c1acd6827b4ef1 \ No newline at end of file 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 1ffdfe43..df4fb879 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 68f2e0ec..5dc1f4df 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.tex b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog.tex index 0d2abdda..df98a2ed 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog.tex @@ -109,7 +109,6 @@ QPush\+Button $\ast$ {\bfseries search\+\_\+button\+\_\+} \{\} \mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1KeyServerImportDialog_af48f4a6d2744bad2759e691f9c59f209}\label{classGpgFrontend_1_1UI_1_1KeyServerImportDialog_af48f4a6d2744bad2759e691f9c59f209}} QTable\+Widget $\ast$ {\bfseries keys\+\_\+table\+\_\+} \{\} \end{DoxyCompactItemize} -\doxysubsection*{Additional Inherited Members} \doxysubsection{Constructor \& Destructor Documentation} diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.md5 index 2431ac4f..2df13c08 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.md5 @@ -1 +1 @@ -55122de7dd19865f8c0ea095729297e0 \ No newline at end of file +f7eec5c7abe96270191ecf399e4becf1 \ No newline at end of file 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 498076c7..59596afc 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.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.md5 index f8ccca0a..a38b249d 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.md5 @@ -1 +1 @@ -a679016b7c01a2560e93d1705087147e \ No newline at end of file +cf9885d44b50ac4527c2a646aca3e3b1 \ No newline at end of file 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 ee539322..30eb95a6 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportTask__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportTask__coll__graph.pdf index 7c4abcc4..554d2bfb 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportTask__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportTask__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportTask__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportTask__inherit__graph.pdf index b7fa1132..2b3150ab 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportTask__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportTask__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerSearchTask__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerSearchTask__coll__graph.pdf index b16ebdf1..fb0e7f84 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerSearchTask__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerSearchTask__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerSearchTask__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerSearchTask__inherit__graph.pdf index b80f4c72..610f5e37 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerSearchTask__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerSearchTask__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.tex b/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.tex index 7c296e1d..ee1f0c12 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.tex @@ -7,7 +7,7 @@ Inheritance diagram for Gpg\+Frontend\+::UI\+::Key\+Set\+Expire\+Date\+Dialog\+: \begin{figure}[H] \begin{center} \leavevmode -\includegraphics[width=262pt]{classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph} +\includegraphics[width=246pt]{classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph} \end{center} \end{figure} @@ -59,7 +59,6 @@ const \mbox{\hyperlink{classGpgFrontend_1_1GpgKey}{Gpg\+Key}} {\bfseries m\+\_\+ \mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog_a547fe4ca02de93cefd0a9954a7a6d5e4}\label{classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog_a547fe4ca02de93cefd0a9954a7a6d5e4}} const Subkey\+Id {\bfseries m\+\_\+subkey\+\_\+} \end{DoxyCompactItemize} -\doxysubsection*{Additional Inherited Members} \doxysubsection{Constructor \& Destructor Documentation} diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.md5 index 91030695..8e40e51c 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.md5 @@ -1 +1 @@ -68cde4720d1c494cd970f97841832320 \ No newline at end of file +80cb7d961f07a75c0e2f1a9d40e11d49 \ No newline at end of file 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 f3b719bb..bb3af492 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.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.md5 index f4b68c79..6ca593b4 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.md5 @@ -1 +1 @@ -e48cb9f4f473b85fa93e831a7a410a91 \ No newline at end of file +c5f840f23387da01b55dcc2626c7d4f4 \ No newline at end of file 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 52ea1f86..db94be96 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.tex b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.tex index cc67fe03..fe98ec52 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.tex @@ -7,7 +7,7 @@ Inheritance diagram for Gpg\+Frontend\+::UI\+::Key\+UIDSign\+Dialog\+: \begin{figure}[H] \begin{center} \leavevmode -\includegraphics[width=262pt]{classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph} +\includegraphics[width=238pt]{classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph} \end{center} \end{figure} @@ -57,7 +57,6 @@ UIDArgs\+List\+Ptr {\bfseries m\+\_\+uids\+\_\+} \mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1KeyUIDSignDialog_ad9ae0e31f60685d600a695d1d4b0c025}\label{classGpgFrontend_1_1UI_1_1KeyUIDSignDialog_ad9ae0e31f60685d600a695d1d4b0c025}} const \mbox{\hyperlink{classGpgFrontend_1_1GpgKey}{Gpg\+Key}} \& {\bfseries m\+\_\+key\+\_\+} \end{DoxyCompactItemize} -\doxysubsection*{Additional Inherited Members} \doxysubsection{Constructor \& Destructor Documentation} diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.md5 index c218718a..3f73ed12 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.md5 @@ -1 +1 @@ -cce49195bbd430ce164d2a71dbf6bd85 \ No newline at end of file +d0cf6e1aa2630d58da0eb6ae7d2b89b1 \ No newline at end of file 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 d579f2dc..084a17dd 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.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.md5 index 4ef1d478..729b4882 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.md5 @@ -1 +1 @@ -9b9713f0cce0476f20f2906f1144f47c \ No newline at end of file +de1f55e951ad47d76d8d6eb35e704125 \ No newline at end of file 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 1ef8d72e..d03ccca9 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.tex b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog.tex index 639ce4e8..98281891 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog.tex @@ -7,7 +7,7 @@ Inheritance diagram for Gpg\+Frontend\+::UI\+::Key\+Upload\+Dialog\+: \begin{figure}[H] \begin{center} \leavevmode -\includegraphics[width=262pt]{classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph} +\includegraphics[width=234pt]{classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph} \end{center} \end{figure} @@ -48,7 +48,6 @@ Key\+List\+Ptr {\bfseries m\+\_\+keys\+\_\+} \mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1KeyUploadDialog_a8c50ef3699448352d6272bb2faab5493}\label{classGpgFrontend_1_1UI_1_1KeyUploadDialog_a8c50ef3699448352d6272bb2faab5493}} QByte\+Array {\bfseries m\+\_\+key\+\_\+data\+\_\+} \end{DoxyCompactItemize} -\doxysubsection*{Additional Inherited Members} \doxysubsection{Constructor \& Destructor Documentation} @@ -85,7 +84,7 @@ Construct a new Key Upload Dialog object. \end{DoxyParams} -References Gpg\+Frontend\+::\+UI\+::\+Settings\+Object\+::\+Check(). +References Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Global\+Setting\+Station $>$\+::\+Get\+Instance(), and Gpg\+Frontend\+::\+Global\+Setting\+Station\+::\+Get\+UISettings(). diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.md5 index b2e21d0b..d1dab0b0 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.md5 @@ -1 +1 @@ -99a928f62f8da32ad2928c0e5ebe03fa \ No newline at end of file +df85bb638a1ca83615b7190f6a15aaa5 \ No newline at end of file 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 12ad6947..e8682dd7 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.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.md5 index 55022f23..6cf418f0 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.md5 @@ -1 +1 @@ -b4cd49f7f3e58f21d2e7c4fef0e09740 \ No newline at end of file +33f3748d3a6f6a75eca1c580301561d2 \ No newline at end of file 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 c2436af0..ccfe6cfb 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 44a15346..aead473a 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 d70a88bc..40cdeeed 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyserverTab__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyserverTab__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask__coll__graph.pdf index dc035c75..2a2cb9fa 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask__inherit__graph.pdf index b3e9ffaa..068ee028 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.md5 index bcaecb5d..e4cc85b8 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.md5 @@ -1 +1 @@ -04ccc31d52f4d09b03dc197935e2afc1 \ No newline at end of file +71c78553a70a7bc2c254ca00e59438ba \ No newline at end of file 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 fcd516b0..702e2082 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 b6e2dd70..fc38526e 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 270ed038..e03c7fd1 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 c9956cd2..986f8667 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.tex b/docs/latex/classGpgFrontend_1_1UI_1_1PlainTextEditorPage.tex index fbf29cda..c92dbd44 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1PlainTextEditorPage.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1PlainTextEditorPage.tex @@ -103,7 +103,7 @@ std\+::string {\bfseries charset\+\_\+name\+\_\+} std\+::string {\bfseries language\+\_\+name\+\_\+} \item \mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1PlainTextEditorPage_ae756fc49724212d8d9937601a48b436b}\label{classGpgFrontend_1_1UI_1_1PlainTextEditorPage_ae756fc49724212d8d9937601a48b436b}} -int32\+\_\+t {\bfseries charset\+\_\+confidence\+\_\+} \{\} +int32\+\_\+t {\bfseries charset\+\_\+confidence\+\_\+} \item \mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1PlainTextEditorPage_a0e64bcd36cf90b0eec2f05361c6c6fb3}\label{classGpgFrontend_1_1UI_1_1PlainTextEditorPage_a0e64bcd36cf90b0eec2f05361c6c6fb3}} bool {\bfseries is\+\_\+crlf\+\_\+} = false @@ -131,7 +131,7 @@ Add layout and add plaintextedit \end{DoxyParams} -References Gpg\+Frontend\+::\+UI\+::\+Settings\+Object\+::\+Check(), and full\+\_\+file\+\_\+path\+\_\+. +References full\+\_\+file\+\_\+path\+\_\+. 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 9f9760f7..93a9487e 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 4e1f99f4..bdcf8530 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 449773df..9d413ee1 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 449773df..9d413ee1 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.tex b/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog.tex index e2594438..06b51a46 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog.tex @@ -7,7 +7,7 @@ Inheritance diagram for Gpg\+Frontend\+::UI\+::Quit\+Dialog\+: \begin{figure}[H] \begin{center} \leavevmode -\includegraphics[width=262pt]{classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph} +\includegraphics[width=233pt]{classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph} \end{center} \end{figure} @@ -17,7 +17,7 @@ Collaboration diagram for Gpg\+Frontend\+::UI\+::Quit\+Dialog\+: \begin{figure}[H] \begin{center} \leavevmode -\includegraphics[height=550pt]{classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph} +\includegraphics[width=272pt]{classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph} \end{center} \end{figure} \doxysubsection*{Public Member Functions} @@ -44,7 +44,6 @@ bool {\bfseries discarded\+\_\+} \mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1QuitDialog_ac491016e0d93183346b79421528ba5c8}\label{classGpgFrontend_1_1UI_1_1QuitDialog_ac491016e0d93183346b79421528ba5c8}} QTable\+Widget $\ast$ {\bfseries m\+\_\+file\+List\+\_\+} \end{DoxyCompactItemize} -\doxysubsection*{Additional Inherited Members} \doxysubsection{Constructor \& Destructor Documentation} diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.md5 index ad437634..d3fbb649 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.md5 @@ -1 +1 @@ -1ed26d080c8e22a9fafe7ab03f52f990 \ No newline at end of file +3e3113c545aa96846077123c65ac6a92 \ No newline at end of file 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 7e384b8a..9ec4646f 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.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.md5 index b098b5d4..f15e30f1 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.md5 @@ -1 +1 @@ -bc113a5764db8fa96bbc767845d76057 \ No newline at end of file +8f10df66561459dd61399de5f43d7e23 \ No newline at end of file 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 6347b537..51fd6fcc 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.tex b/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog.tex index afed31c0..42481b37 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog.tex @@ -7,7 +7,7 @@ Inheritance diagram for Gpg\+Frontend\+::UI\+::Settings\+Dialog\+: \begin{figure}[H] \begin{center} \leavevmode -\includegraphics[height=550pt]{classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph} +\includegraphics[width=228pt]{classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph} \end{center} \end{figure} @@ -17,7 +17,7 @@ Collaboration diagram for Gpg\+Frontend\+::UI\+::Settings\+Dialog\+: \begin{figure}[H] \begin{center} \leavevmode -\includegraphics[width=350pt]{classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph} +\includegraphics[height=550pt]{classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph} \end{center} \end{figure} \doxysubsection*{Public Slots} @@ -78,7 +78,6 @@ QDialog\+Button\+Box $\ast$ {\bfseries button\+\_\+box\+\_\+} \mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1SettingsDialog_a0e317d53b055887c86e851d1b10aec6b}\label{classGpgFrontend_1_1UI_1_1SettingsDialog_a0e317d53b055887c86e851d1b10aec6b}} bool {\bfseries restart\+\_\+needed\+\_\+} \{\} \end{DoxyCompactItemize} -\doxysubsection*{Additional Inherited Members} \doxysubsection{Constructor \& Destructor Documentation} diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.md5 index 626314ba..f3c3afff 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.md5 @@ -1 +1 @@ -f538dd7dfeca616062987da0c9c86f2e \ No newline at end of file +4707177711eedd11fe665b7e8ffbffcb \ No newline at end of file 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 4827f473..ba321eb1 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.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.md5 index ccf7aa09..906c7d4e 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.md5 @@ -1 +1 @@ -c67352bba9c2cb6764ded9312fa547a3 \ No newline at end of file +9108f9a99bf9d0d00e2976760d04ddb5 \ No newline at end of file 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 23be54b1..065a8403 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.tex b/docs/latex/classGpgFrontend_1_1UI_1_1SettingsObject.tex index 626fe5aa..a545994f 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1SettingsObject.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1SettingsObject.tex @@ -138,7 +138,7 @@ All the source code of \mbox{\hyperlink{namespaceGpgFrontend}{Gpg\+Frontend}} wa SPDX-\/\+License-\/\+Identifier\+: GPL-\/3.\+0-\/or-\/later -Referenced by Gpg\+Frontend\+::\+UI\+::\+Key\+Server\+Import\+Dialog\+::create\+\_\+combo\+Box(), Gpg\+Frontend\+::\+UI\+::\+Plain\+Text\+Editor\+Page\+::\+Plain\+Text\+Editor\+Page(), Gpg\+Frontend\+::\+UI\+::\+Info\+Board\+Widget\+::\+Set\+Info\+Board(), Gpg\+Frontend\+::\+UI\+::\+Appearance\+Tab\+::\+Set\+Settings(), Gpg\+Frontend\+::\+UI\+::\+Keyserver\+Tab\+::\+Set\+Settings(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::slot\+\_\+open\+\_\+settings\+\_\+dialog(), Gpg\+Frontend\+::\+UI\+::\+Key\+Upload\+Dialog\+::slot\+\_\+upload\+\_\+key\+\_\+to\+\_\+server(), Gpg\+Frontend\+::\+UI\+::\+Key\+Server\+Import\+Dialog\+::\+Slot\+Import(), and Gpg\+Frontend\+::\+UI\+::\+Common\+Utils\+::\+Slot\+Import\+Key\+From\+Key\+Server(). +Referenced by Gpg\+Frontend\+::\+UI\+::\+Key\+Server\+Import\+Dialog\+::create\+\_\+combo\+Box(), Gpg\+Frontend\+::\+UI\+::\+Info\+Board\+Widget\+::\+Set\+Info\+Board(), Gpg\+Frontend\+::\+UI\+::\+Appearance\+Tab\+::\+Set\+Settings(), Gpg\+Frontend\+::\+UI\+::\+Keyserver\+Tab\+::\+Set\+Settings(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::slot\+\_\+open\+\_\+settings\+\_\+dialog(), Gpg\+Frontend\+::\+UI\+::\+Key\+Server\+Import\+Dialog\+::\+Slot\+Import(), and Gpg\+Frontend\+::\+UI\+::\+Common\+Utils\+::\+Slot\+Import\+Key\+From\+Key\+Server(). 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 e9720ad5..06e519f1 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 2de783e9..55b47e1b 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 94bc439c..94a26585 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 693249bd..32796af4 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.tex b/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker.tex index 226a24f0..53432113 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker.tex @@ -7,7 +7,7 @@ Inheritance diagram for Gpg\+Frontend\+::UI\+::Signers\+Picker\+: \begin{figure}[H] \begin{center} \leavevmode -\includegraphics[width=262pt]{classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph} +\includegraphics[width=220pt]{classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph} \end{center} \end{figure} @@ -38,7 +38,6 @@ bool \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1SignersPicker_aba7633983da57c7a7 \mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1SignersPicker_a524ee72ddb4fe397d71c0d4b5eb69171}\label{classGpgFrontend_1_1UI_1_1SignersPicker_a524ee72ddb4fe397d71c0d4b5eb69171}} bool {\bfseries accepted\+\_\+} = false \end{DoxyCompactItemize} -\doxysubsection*{Additional Inherited Members} \doxysubsection{Constructor \& Destructor Documentation} diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.md5 index 2e79bbc1..50215350 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.md5 @@ -1 +1 @@ -636e788814ad3bde009946e8e8c61073 \ No newline at end of file +8e5eee502f1afc4c1b38f16ede5c1fbb \ No newline at end of file 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 7b5a7460..8a7e4eca 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.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.md5 index 4fce405f..9da28f30 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.md5 @@ -1 +1 @@ -b32cf09c4698c5b5da151cf95ddac55e \ No newline at end of file +8d9fc180702d9b949937d49d3f580bd8 \ No newline at end of file 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 e4eea467..e1b5f664 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.tex b/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.tex index fdd94842..1159f3b0 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.tex @@ -95,7 +95,6 @@ std\+::vector$<$ QCheck\+Box $\ast$ $>$ \mbox{\hyperlink{classGpgFrontend_1_1UI_ \mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog_a06ae254026e0be902d28bb005a91fe0c}\label{classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog_a06ae254026e0be902d28bb005a91fe0c}} QDate\+Time {\bfseries max\+\_\+date\+\_\+time\+\_\+} \end{DoxyCompactItemize} -\doxysubsection*{Additional Inherited Members} \doxysubsection{Constructor \& Destructor Documentation} @@ -138,7 +137,7 @@ QGroup\+Box$\ast$ \end{DoxyReturn} -References date\+\_\+edit\+\_\+, error\+\_\+label\+\_\+, expire\+\_\+check\+\_\+box\+\_\+, Gpg\+Frontend\+::\+Gen\+Key\+Info\+::\+Get\+Supported\+Subkey\+Algo(), key\+\_\+size\+\_\+spin\+\_\+box\+\_\+, and key\+\_\+type\+\_\+combo\+\_\+box\+\_\+. +References date\+\_\+edit\+\_\+, error\+\_\+label\+\_\+, expire\+\_\+check\+\_\+box\+\_\+, Gpg\+Frontend\+::\+Gen\+Key\+Info\+::\+Get\+Supported\+Key\+Algo(), key\+\_\+size\+\_\+spin\+\_\+box\+\_\+, and key\+\_\+type\+\_\+combo\+\_\+box\+\_\+. @@ -192,7 +191,7 @@ Referenced by slot\+\_\+activated\+\_\+key\+\_\+type(), and Subkey\+Generate\+Di \end{DoxyParams} -References refresh\+\_\+widgets\+\_\+state(). +References key\+\_\+type\+\_\+combo\+\_\+box\+\_\+, and refresh\+\_\+widgets\+\_\+state(). diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.md5 index 97d3dbbc..07b98492 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.md5 @@ -1 +1 @@ -6e9b0a68e1c61813348ffd37db4f04c7 \ No newline at end of file +f2899c167cb209f5e43c9f3bbcfb2cbf \ No newline at end of file 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 6a8a88c3..4b1273dd 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.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.md5 index 8c1a5be1..785c5ddd 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.md5 @@ -1 +1 @@ -6adca92aaa9479e18c6e7d0b317d188f \ No newline at end of file +cd2fb2a755b825fcfdc5f4df6f3fc1b4 \ No newline at end of file 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 5d4755cf..bc974f80 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 0deccabb..ccd2bb58 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 0deccabb..ccd2bb58 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 b36c41c0..d2174bf6 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 b36c41c0..d2174bf6 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 ae9579e2..aa41cb2d 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 ae9579e2..aa41cb2d 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 1cb653a1..aae40729 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 1cb653a1..aae40729 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.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.md5 index bf4e81a8..f8f354f2 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.md5 @@ -1 +1 @@ -77d7413bbcf6cee704b7cfc0042e1f72 \ No newline at end of file +cb8c880ae548abdd96f832af9ef5c87c \ No newline at end of file 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 72f15d05..9565f504 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 c33489d5..a0c1c396 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 266ec323..18e77a02 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 2daa5b76..e231e750 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_1VersionCheckTask__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1VersionCheckTask__coll__graph.pdf index 8be83fda..58f96997 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1VersionCheckTask__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1VersionCheckTask__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1VersionCheckTask__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1VersionCheckTask__inherit__graph.pdf index cf39b88a..7a1bbd99 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1VersionCheckTask__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1VersionCheckTask__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 3b732489..e26facbb 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 3b732489..e26facbb 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 0546f7b9..7a271338 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 0546f7b9..7a271338 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 deaca112..ab86828a 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 e1d680a2..400bce3f 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 e1d680a2..400bce3f 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 5ac33589..7179c317 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 b817e496..ff8a0209 100644 Binary files a/docs/latex/classclass__coll__graph.pdf and b/docs/latex/classclass__coll__graph.pdf differ diff --git a/docs/latex/structGpgFrontend_1_1ArchiveStruct__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1ArchiveStruct__coll__graph.pdf index 57d10525..c15bbb01 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 0f260c72..41aa9d9a 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 e61cdda7..5d1b2e5b 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 14165990..d0f2c64f 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 ae319519..b5c29faf 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 542f4710..e21eba5b 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 385491a7..b06fec4e 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 938f5ed6..b1130126 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 8715d292..1d852ff1 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.md5 b/docs/latex/structGpgFrontend_1_1UI_1_1KeyTable__coll__graph.md5 index 62c66fa8..4bd4c67b 100644 --- a/docs/latex/structGpgFrontend_1_1UI_1_1KeyTable__coll__graph.md5 +++ b/docs/latex/structGpgFrontend_1_1UI_1_1KeyTable__coll__graph.md5 @@ -1 +1 @@ -2b913c19bdd6e87d915367fe81b9e538 \ No newline at end of file +fa094d7b79db3952efb5b4fa479451da \ No newline at end of file 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 9bd9c503..a26cde94 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 277e81aa..d9e88389 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 0fdbfff6..9457a725 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 e9d1ca0a..4975fae6 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