diff --git a/docs/html/GeneralDialog_8h_source.html b/docs/html/GeneralDialog_8h_source.html index adaf690e..fcca25f6 100644 --- a/docs/html/GeneralDialog_8h_source.html +++ b/docs/html/GeneralDialog_8h_source.html @@ -126,19 +126,26 @@ $(document).ready(function(){initNavTree('GeneralDialog_8h_source.html',''); ini
42 
46  ~GeneralDialog() override;
47 
-
48  private slots:
-
52  void slot_restore_settings() noexcept;
+
48  protected:
+
52  void setPosCenterOfScreen();
53 
-
57  void slot_save_settings() noexcept;
-
58 
-
59  private:
-
60  std::string name_;
-
61  QPoint pos_;
-
62  QSize size_;
-
63 };
-
64 } // namespace GpgFrontend::UI
+
58  void movePosition2CenterOfParent();
+
59 
+
60  private slots:
+
64  void slot_restore_settings() noexcept;
65 
-
66 #endif // GPGFRONTEND_GENERALDIALOG_H
+
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
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 90676dd4..e0a0492c 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);
+
57  void closeEvent(QCloseEvent* event) override;
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)
Definition: GeneralMainWindow.cpp:43
+
GpgFrontend::UI::GeneralMainWindow::closeEvent
void closeEvent(QCloseEvent *event) override
Definition: GeneralMainWindow.cpp:43
GpgFrontend::UI
Definition: FileReadTask.cpp:31
diff --git a/docs/html/GlobalSettingStation_8h_source.html b/docs/html/GlobalSettingStation_8h_source.html index d21bb687..72505419 100644 --- a/docs/html/GlobalSettingStation_8h_source.html +++ b/docs/html/GlobalSettingStation_8h_source.html @@ -178,21 +178,20 @@ $(document).ready(function(){initNavTree('GlobalSettingStation_8h_source.html','
173  QStandardPaths::writableLocation(QStandardPaths::AppConfigLocation)
174  .toStdString();
175  std::filesystem::path ui_config_dir_path_ =
-
176  app_configure_path_ /
-
177  "UserInterface";
-
178  std::filesystem::path ui_config_path_ =
-
179  ui_config_dir_path_ / "ui.cfg";
-
180 
-
181  libconfig::Config ui_cfg_;
-
182 
-
187  void init_app_secure_key();
-
188 };
-
189 } // namespace GpgFrontend
-
190 
-
191 #endif // GPGFRONTEND_GLOBALSETTINGSTATION_H
+
176  app_configure_path_ / "conf";
+
177  std::filesystem::path ui_config_path_ =
+
178  ui_config_dir_path_ / "main.cfg";
+
179 
+
180  libconfig::Config ui_cfg_;
+
181 
+
186  void init_app_secure_key();
+
187 };
+
188 } // namespace GpgFrontend
+
189 
+
190 #endif // GPGFRONTEND_GLOBALSETTINGSTATION_H
GpgFrontend::GlobalSettingStation
Definition: GlobalSettingStation.h:43
GpgFrontend::GlobalSettingStation::GetLocaleDir
std::filesystem::path GetLocaleDir() const
Get the Locale Dir object.
Definition: GlobalSettingStation.h:116
-
GpgFrontend::GlobalSettingStation::ui_cfg_
libconfig::Config ui_cfg_
UI Configure File.
Definition: GlobalSettingStation.h:181
+
GpgFrontend::GlobalSettingStation::ui_cfg_
libconfig::Config ui_cfg_
UI Configure File.
Definition: GlobalSettingStation.h:180
GpgFrontend::GlobalSettingStation::GetCertsDir
std::filesystem::path GetCertsDir() const
Get the Certs Dir object.
Definition: GlobalSettingStation.h:134
GpgFrontend::GlobalSettingStation::GetLogDir
std::filesystem::path GetLogDir() const
Get the Log Dir object.
Definition: GlobalSettingStation.h:81
GpgFrontend::GlobalSettingStation::GetStandaloneGpgBinDir
std::filesystem::path GetStandaloneGpgBinDir() const
Get the Standalone Gpg Bin Dir object.
Definition: GlobalSettingStation.h:107
diff --git a/docs/html/GnupgTab_8h_source.html b/docs/html/GnupgTab_8h_source.html index f9b32e96..9b181e2f 100644 --- a/docs/html/GnupgTab_8h_source.html +++ b/docs/html/GnupgTab_8h_source.html @@ -123,19 +123,25 @@ $(document).ready(function(){initNavTree('GnupgTab_8h_source.html',''); initResi
35 #include "core/GpgContext.h"
36 #include "ui/GpgFrontendUI.h"
37 
-
38 namespace GpgFrontend::UI{
-
39 class GnupgTab: public QWidget {
-
40  Q_OBJECT
-
41  public:
-
47  explicit GnupgTab(QWidget* parent = nullptr);
-
48 };
-
49 }
-
50 
-
51 
-
52 
-
53 #endif // GPGFRONTEND_GNUPGTAB_H
-
GpgFrontend::UI::GnupgTab
Definition: GnupgTab.h:39
-
GpgFrontend::UI::GnupgTab::GnupgTab
GnupgTab(QWidget *parent=nullptr)
Construct a new Info Tab object.
Definition: GnupgTab.cpp:34
+
38 class Ui_GnuPGInfo;
+
39 namespace GpgFrontend::UI {
+
40 class GnupgTab : public QWidget {
+
41  Q_OBJECT
+
42  public:
+
48  explicit GnupgTab(QWidget* parent = nullptr);
+
49 
+
50  private:
+
51  std::shared_ptr<Ui_GnuPGInfo> ui_;
+
52  QProcess* gpgconf_process_;
+
53 
+
54  private slots:
+
55  void process_components_info(int, QProcess::ExitStatus);
+
56 };
+
57 } // namespace GpgFrontend::UI
+
58 
+
59 #endif // GPGFRONTEND_GNUPGTAB_H
+
GpgFrontend::UI::GnupgTab
Definition: GnupgTab.h:40
+
GpgFrontend::UI::GnupgTab::GnupgTab
GnupgTab(QWidget *parent=nullptr)
Construct a new Info Tab object.
Definition: GnupgTab.cpp:37
GpgFrontend::UI
Definition: FileReadTask.cpp:31
diff --git a/docs/html/GpgConstants_8h_source.html b/docs/html/GpgConstants_8h_source.html index e0d5a7b1..0b30118d 100644 --- a/docs/html/GpgConstants_8h_source.html +++ b/docs/html/GpgConstants_8h_source.html @@ -92,10 +92,10 @@ $(document).ready(function(){initNavTree('GpgConstants_8h_source.html',''); init
31 
32 #include "GpgFrontendCore.h"
33 
-
34 const int RESTART_CODE = 1000;
-
35 
-
36 namespace GpgFrontend {
-
37 
+
34 const int RESTART_CODE = 1000;
+
35 const int DEEP_RESTART_CODE = 1001; // refresh core and ui
+
36 
+
37 namespace GpgFrontend {
38 using ByteArray = std::string;
39 using ByteArrayPtr = std::unique_ptr<ByteArray>;
40 using StdBypeArrayPtr = std::unique_ptr<ByteArray>;
diff --git a/docs/html/GpgCoreInit_8h_source.html b/docs/html/GpgCoreInit_8h_source.html index c40569db..be0f2dab 100644 --- a/docs/html/GpgCoreInit_8h_source.html +++ b/docs/html/GpgCoreInit_8h_source.html @@ -96,16 +96,20 @@ $(document).ready(function(){initNavTree('GpgCoreInit_8h_source.html',''); initR
35 
40 void GPGFRONTEND_CORE_EXPORT InitLoggingSystem();
41 
-
46 void init_gpgfrontend_core();
+
46 void GPGFRONTEND_CORE_EXPORT ResetGpgFrontendCore();
47 
-
53 void new_default_settings_channel(
-
54  int channel = GpgFrontend::GPGFRONTEND_DEFAULT_CHANNEL);
-
55 
-
56 } // namespace GpgFrontend
-
57 
-
58 #endif // GPGFRONTEND_GPGCOREINIT_H
+
52 void init_gpgfrontend_core();
+
53 
+
58 void reset_gpgfrontend_core();
+
59 
+
65 void new_default_settings_channel(
+
66  int channel = GpgFrontend::GPGFRONTEND_DEFAULT_CHANNEL);
+
67 
+
68 } // namespace GpgFrontend
+
69 
+
70 #endif // GPGFRONTEND_GPGCOREINIT_H
GpgFrontend
Definition: CoreCommonUtil.cpp:29
-
GpgFrontend::new_default_settings_channel
void new_default_settings_channel(int channel)
Definition: GpgCoreInit.cpp:97
+
GpgFrontend::new_default_settings_channel
void new_default_settings_channel(int channel)
Definition: GpgCoreInit.cpp:143
GpgFrontend::InitLoggingSystem
void InitLoggingSystem()
setup logging system and do proper initialization
Definition: GpgCoreInit.cpp:44
diff --git a/docs/html/GpgFunctionObject_8h_source.html b/docs/html/GpgFunctionObject_8h_source.html index 040ff852..11ba76f3 100644 --- a/docs/html/GpgFunctionObject_8h_source.html +++ b/docs/html/GpgFunctionObject_8h_source.html @@ -130,7 +130,7 @@ $(document).ready(function(){initNavTree('GpgFunctionObject_8h_source.html','');
120 
121 class GPGFRONTEND_CORE_EXPORT SingletonStorageCollection {
122  public:
-
128  static SingletonStorageCollection* GetInstance();
+
128  static SingletonStorageCollection* GetInstance(bool force_refresh);
129 
136  SingletonStorage* GetSingletonStorage(const std::type_info&);
137 
@@ -152,7 +152,7 @@ $(document).ready(function(){initNavTree('GpgFunctionObject_8h_source.html','');
173  "T not derived from SingletonFunctionObject<T>");
174 
175  auto p_storage =
-
176  SingletonStorageCollection::GetInstance()->GetSingletonStorage(
+
176  SingletonStorageCollection::GetInstance(false)->GetSingletonStorage(
177  typeid(T));
178 
179  auto* _p_pbj = (T*)(p_storage->FindObjectInChannel(channel));
@@ -172,7 +172,7 @@ $(document).ready(function(){initNavTree('GpgFunctionObject_8h_source.html','');
200  "T not derived from SingletonFunctionObject<T>");
201 
202  auto p_storage =
-
203  SingletonStorageCollection::GetInstance()->GetSingletonStorage(
+
203  SingletonStorageCollection::GetInstance(false)->GetSingletonStorage(
204  typeid(T));
205 
206  auto _p_pbj = (T*)(p_storage->FindObjectInChannel(channel));
@@ -185,7 +185,7 @@ $(document).ready(function(){initNavTree('GpgFunctionObject_8h_source.html','');
213  }
214 
221  static void ReleaseChannel(int channel) {
-
222  SingletonStorageCollection::GetInstance()
+
222  SingletonStorageCollection::GetInstance(false)
223  ->GetSingletonStorage(typeid(T))
224  ->ReleaseChannel(channel);
225  }
@@ -195,7 +195,7 @@ $(document).ready(function(){initNavTree('GpgFunctionObject_8h_source.html','');
239  [[nodiscard]] int GetChannel() const { return ChannelObject::GetChannel(); }
240 
246  static std::vector<int> GetAllChannelId() {
-
247  return SingletonStorageCollection::GetInstance()
+
247  return SingletonStorageCollection::GetInstance(false)
248  ->GetSingletonStorage(typeid(T))
249  ->GetAllChannelId();
250  }
@@ -235,9 +235,9 @@ $(document).ready(function(){initNavTree('GpgFunctionObject_8h_source.html','');
GpgFrontend::SingletonFunctionObject::SingletonFunctionObject
SingletonFunctionObject(T &&)=delete
Construct a new Singleton Function Object object.
GpgFrontend::SingletonFunctionObject::ReleaseChannel
static void ReleaseChannel(int channel)
Definition: GpgFunctionObject.h:221
GpgFrontend::SingletonStorageCollection
Definition: GpgFunctionObject.h:121
-
GpgFrontend::SingletonStorageCollection::GetInstance
static SingletonStorageCollection * GetInstance()
Get the Instance object.
Definition: GpgFunctionObject.cpp:125
GpgFrontend::SingletonStorageCollection::GetSingletonStorage
SingletonStorage * GetSingletonStorage(const std::type_info &)
Get the Singleton Storage object.
Definition: GpgFunctionObject.cpp:99
GpgFrontend::SingletonStorageCollection::storages_mutex_
std::shared_mutex storages_mutex_
mutex for storages_map_
Definition: GpgFunctionObject.h:139
+
GpgFrontend::SingletonStorageCollection::GetInstance
static SingletonStorageCollection * GetInstance(bool force_refresh)
Get the Instance object.
Definition: GpgFunctionObject.cpp:125
GpgFrontend::SingletonStorage
Definition: GpgFunctionObject.h:81
GpgFrontend::SingletonStorage::instances_mutex_
std::shared_mutex instances_mutex_
mutex for _instances_map
Definition: GpgFunctionObject.h:116
GpgFrontend::SingletonStorage::GetAllChannelId
std::vector< int > GetAllChannelId()
Get all the channel ids.
Definition: GpgFunctionObject.cpp:71
diff --git a/docs/html/GpgGenKeyInfo_8h_source.html b/docs/html/GpgGenKeyInfo_8h_source.html index 57549af5..d0bf60c9 100644 --- a/docs/html/GpgGenKeyInfo_8h_source.html +++ b/docs/html/GpgGenKeyInfo_8h_source.html @@ -123,177 +123,179 @@ $(document).ready(function(){initNavTree('GpgGenKeyInfo_8h_source.html',''); ini
62 
63  std::string passphrase_;
64 
-
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
+
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 };
434 
-
435 #endif // GPGFRONTEND_GPGGENKEYINFO_H
+
435 } // namespace GpgFrontend
+
436 
+
437 #endif // GPGFRONTEND_GPGGENKEYINFO_H
GpgFrontend::GenKeyInfo
Definition: GpgGenKeyInfo.h:42
-
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::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
Definition: CoreCommonUtil.cpp:29
diff --git a/docs/html/GpgKeyGetter_8h_source.html b/docs/html/GpgKeyGetter_8h_source.html index 17691b05..6191f509 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:41
+
GpgFrontend::GpgKey
Definition: GpgKey.h:43
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 09a67884..f62cd0c1 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:41
+
GpgFrontend::GpgKey
Definition: GpgKey.h:43
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 b80b2f04..efb4f9f0 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:41
+
GpgFrontend::GpgKey
Definition: GpgKey.h:43
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 7a69da41..d44a98c6 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:41
+
GpgFrontend::GpgKey
Definition: GpgKey.h:43
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 eedeee1e..f9b1915f 100644 --- a/docs/html/GpgKey_8h_source.html +++ b/docs/html/GpgKey_8h_source.html @@ -90,114 +90,118 @@ $(document).ready(function(){initNavTree('GpgKey_8h_source.html',''); initResiza
29 #ifndef GPGFRONTEND_GPGKEY_H
30 #define GPGFRONTEND_GPGKEY_H
31 
-
32 #include "GpgSubKey.h"
-
33 #include "GpgUID.h"
-
34 
-
35 namespace GpgFrontend {
+
32 #include <mutex>
+
33 
+
34 #include "GpgSubKey.h"
+
35 #include "GpgUID.h"
36 
-
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
+
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
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:348
+
GpgFrontend::GpgKey::_key_ref_deleter
Definition: GpgKey.h:350
diff --git a/docs/html/GpgUIDOperator_8h_source.html b/docs/html/GpgUIDOperator_8h_source.html index 463f4905..f4a14197 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:41
+
GpgFrontend::GpgKey
Definition: GpgKey.h:43
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 90bb4dff..aa498349 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:113
-
GpgFrontend::UI::InfoBoardWidget::AssociateTextEdit
void AssociateTextEdit(QTextEdit *edit)
Definition: InfoBoardWidget.cpp:95
+
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::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: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::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::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:103
+
GpgFrontend::UI::InfoBoardWidget::AssociateTabWidget
void AssociateTabWidget(QTabWidget *tab)
Definition: InfoBoardWidget.cpp:105
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 524d567b..c706ade1 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:41
+
GpgFrontend::GpgKey
Definition: GpgKey.h:43
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 08a68f68..4e54bd2b 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:41
+
GpgFrontend::GpgKey
Definition: GpgKey.h:43
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:498
+
GpgFrontend::UI::KeyTable::GetChecked
KeyIdArgsListPtr & GetChecked()
Get the Checked object.
Definition: KeyList.cpp:500
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:519
-
GpgFrontend::UI::KeyTable::SetChecked
void SetChecked(KeyIdArgsListPtr key_ids)
Set the Checked object.
Definition: KeyList.cpp:514
+
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
diff --git a/docs/html/KeyMgmt_8h_source.html b/docs/html/KeyMgmt_8h_source.html index 772c06d1..60674335 100644 --- a/docs/html/KeyMgmt_8h_source.html +++ b/docs/html/KeyMgmt_8h_source.html @@ -170,10 +170,10 @@ $(document).ready(function(){initNavTree('KeyMgmt_8h_source.html',''); initResiz
GpgFrontend::UI::GeneralMainWindow
Definition: GeneralMainWindow.h:39
GpgFrontend::UI::KeyList
Definition: KeyList.h:152
GpgFrontend::UI::KeyMgmt
Definition: KeyMgmt.h:46
-
GpgFrontend::UI::KeyMgmt::delete_keys_with_warning
void delete_keys_with_warning(GpgFrontend::KeyIdArgsListPtr uidList)
Definition: KeyMgmt.cpp:282
-
GpgFrontend::UI::KeyMgmt::create_actions
void create_actions()
Create a actions object.
Definition: KeyMgmt.cpp:123
-
GpgFrontend::UI::KeyMgmt::create_tool_bars
void create_tool_bars()
Create a tool bars object.
Definition: KeyMgmt.cpp:242
-
GpgFrontend::UI::KeyMgmt::create_menus
void create_menus()
Create a menus object.
Definition: KeyMgmt.cpp:219
+
GpgFrontend::UI::KeyMgmt::delete_keys_with_warning
void delete_keys_with_warning(GpgFrontend::KeyIdArgsListPtr uidList)
Definition: KeyMgmt.cpp:283
+
GpgFrontend::UI::KeyMgmt::create_actions
void create_actions()
Create a actions object.
Definition: KeyMgmt.cpp:124
+
GpgFrontend::UI::KeyMgmt::create_tool_bars
void create_tool_bars()
Create a tool bars object.
Definition: KeyMgmt.cpp:243
+
GpgFrontend::UI::KeyMgmt::create_menus
void create_menus()
Create a menus object.
Definition: KeyMgmt.cpp:220
GpgFrontend::UI::KeyMgmt::KeyMgmt
KeyMgmt(QWidget *parent=nullptr)
Construct a new Key Mgmt object.
Definition: KeyMgmt.cpp:46
GpgFrontend::UI::KeyServerImportDialog
Definition: KeyServerImportDialog.h:46
GpgFrontend::UI
Definition: FileReadTask.cpp:31
diff --git a/docs/html/KeyNewUIDDialog_8h_source.html b/docs/html/KeyNewUIDDialog_8h_source.html index 1f7faeb3..038cce5d 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:41
+
GpgFrontend::GpgKey
Definition: GpgKey.h:43
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 fd1561ed..431c1d29 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:41
+
GpgFrontend::GpgKey
Definition: GpgKey.h:43
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:35
+
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::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:164
+
GpgFrontend::UI::KeyPairDetailTab::slot_copy_fingerprint
void slot_copy_fingerprint()
Definition: KeyPairDetailTab.cpp:165
GpgFrontend::UI
Definition: FileReadTask.cpp:31
diff --git a/docs/html/KeyPairOperaTab_8h_source.html b/docs/html/KeyPairOperaTab_8h_source.html index c774f877..2633846c 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:41
+
GpgFrontend::GpgKey
Definition: GpgKey.h:43
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 3ec8c2f8..d704041d 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:41
+
GpgFrontend::GpgKey
Definition: GpgKey.h:43
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:299
+
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::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:318
-
GpgFrontend::UI::KeyPairSubkeyTab::get_selected_subkey
const GpgSubKey & get_selected_subkey()
Get the selected subkey object.
Definition: KeyPairSubkeyTab.cpp:324
+
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
Definition: FileReadTask.cpp:31
diff --git a/docs/html/KeyPairUIDTab_8h_source.html b/docs/html/KeyPairUIDTab_8h_source.html index aaec2fb9..c57f6c42 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:41
+
GpgFrontend::GpgKey
Definition: GpgKey.h:43
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 6448ee61..9e156cb3 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:41
+
GpgFrontend::GpgKey
Definition: GpgKey.h:43
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 31a6f389..fec0d884 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:41
+
GpgFrontend::GpgKey
Definition: GpgKey.h:43
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 31774f1b..4f1ee604 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: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::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
Definition: FileReadTask.cpp:31
diff --git a/docs/html/KeygenDialog_8h_source.html b/docs/html/KeygenDialog_8h_source.html index c6928744..3d028d1b 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:351
+
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::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:262
+
GpgFrontend::UI::KeyGenDialog::refresh_widgets_state
void refresh_widgets_state()
Definition: KeygenDialog.cpp:263
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:316
+
GpgFrontend::UI::KeyGenDialog::set_signal_slot
void set_signal_slot()
Set the signal slot object.
Definition: KeygenDialog.cpp:317
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:347
+
GpgFrontend::UI::KeyGenDialog::check_email_address
bool check_email_address(const QString &str)
Definition: KeygenDialog.cpp:348
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/MainWindow_8h_source.html b/docs/html/MainWindow_8h_source.html index c957290e..04f641ad 100644 --- a/docs/html/MainWindow_8h_source.html +++ b/docs/html/MainWindow_8h_source.html @@ -156,7 +156,7 @@ $(document).ready(function(){initNavTree('MainWindow_8h_source.html',''); initRe
141 
145  void SlotFileDecryptVerify();
146 
-
151  void SlotSetRestartNeeded(bool needed);
+
151  void SlotSetRestartNeeded(int);
152 
153  private slots:
154 
@@ -223,7 +223,7 @@ $(document).ready(function(){initNavTree('MainWindow_8h_source.html',''); initRe
316 
320  void save_settings();
321 
-
325  [[nodiscard]] bool get_restart_needed() const;
+
325  [[nodiscard]] int get_restart_needed() const;
326 
327  TextEdit* edit_{};
328  QMenu* file_menu_{};
@@ -286,7 +286,7 @@ $(document).ready(function(){initNavTree('MainWindow_8h_source.html',''); initRe
387  QAction* about_act_{};
388  QAction* check_update_act_{};
389  QAction* translate_act_{};
-
390  QAction* gnupg_act_{};
+
390  QAction* gnupg_act_{};
391  QAction* open_settings_act_{};
392  QAction* show_key_details_act_{};
393  QAction* start_wizard_act_{};
@@ -302,7 +302,7 @@ $(document).ready(function(){initNavTree('MainWindow_8h_source.html',''); initRe
403  InfoBoardWidget* info_board_{};
404 
405  bool attachment_dock_created_{};
-
406  bool restart_needed_{};
+
406  int restart_needed_{0};
407  bool prohibit_update_checking_ = false;
408 };
409 
@@ -324,18 +324,19 @@ $(document).ready(function(){initNavTree('MainWindow_8h_source.html',''); initRe
GpgFrontend::UI::MainWindow::view_menu_
QMenu * view_menu_
Submenu for view operations.
Definition: MainWindow.h:333
GpgFrontend::UI::MainWindow::verify_act_
QAction * verify_act_
Action to verify text.
Definition: MainWindow.h:367
GpgFrontend::UI::MainWindow::key_menu_
QMenu * key_menu_
Submenu for key-operations.
Definition: MainWindow.h:332
-
GpgFrontend::UI::MainWindow::slot_open_key_management
void slot_open_key_management()
Definition: MainWindowSlotUI.cpp:52
-
GpgFrontend::UI::MainWindow::closeEvent
void closeEvent(QCloseEvent *event) override
Definition: MainWindow.cpp:242
+
GpgFrontend::UI::MainWindow::slot_open_key_management
void slot_open_key_management()
Definition: MainWindowSlotUI.cpp:53
+
GpgFrontend::UI::MainWindow::closeEvent
void closeEvent(QCloseEvent *event) override
Definition: MainWindow.cpp:248
GpgFrontend::UI::MainWindow::create_status_bar
void create_status_bar()
Definition: MainWindowUI.cpp:439
GpgFrontend::UI::MainWindow::slot_decrypt_verify
void slot_decrypt_verify()
Definition: MainWindowSlotFunction.cpp:513
GpgFrontend::UI::MainWindow::file_tool_bar_
QToolBar * file_tool_bar_
Toolbar holding file actions.
Definition: MainWindow.h:341
GpgFrontend::UI::MainWindow::crypt_menu_
QMenu * crypt_menu_
Submenu for crypt-operations.
Definition: MainWindow.h:330
-
GpgFrontend::UI::MainWindow::restore_settings
void restore_settings()
Definition: MainWindow.cpp:134
+
GpgFrontend::UI::MainWindow::restore_settings
void restore_settings()
Definition: MainWindow.cpp:140
GpgFrontend::UI::MainWindow::save_as_act_
QAction * save_as_act_
Action to save file as.
Definition: MainWindow.h:358
GpgFrontend::UI::MainWindow::encrypt_sign_act_
QAction * encrypt_sign_act_
Action to encrypt and sign text.
Definition: MainWindow.h:363
-
GpgFrontend::UI::MainWindow::slot_disable_tab_actions
void slot_disable_tab_actions(int number)
Definition: MainWindowSlotUI.cpp:60
+
GpgFrontend::UI::MainWindow::slot_disable_tab_actions
void slot_disable_tab_actions(int number)
Definition: MainWindowSlotUI.cpp:61
GpgFrontend::UI::MainWindow::SlotFileEncryptSign
void SlotFileEncryptSign()
Definition: MainWindowFileSlotFunction.cpp:551
-
GpgFrontend::UI::MainWindow::slot_open_file_tab
void slot_open_file_tab()
Definition: MainWindowSlotUI.cpp:58
+
GpgFrontend::UI::MainWindow::SlotSetRestartNeeded
void SlotSetRestartNeeded(int)
Definition: MainWindowSlotUI.cpp:186
+
GpgFrontend::UI::MainWindow::slot_open_file_tab
void slot_open_file_tab()
Definition: MainWindowSlotUI.cpp:59
GpgFrontend::UI::MainWindow::cut_act_
QAction * cut_act_
Action to cut text.
Definition: MainWindow.h:379
GpgFrontend::UI::MainWindow::slot_encrypt_sign
void slot_encrypt_sign()
Definition: MainWindowSlotFunction.cpp:390
GpgFrontend::UI::MainWindow::cut_pgp_header_act_
QAction * cut_pgp_header_act_
Action for cutting the PGP header.
Definition: MainWindow.h:394
@@ -344,10 +345,11 @@ $(document).ready(function(){initNavTree('MainWindow_8h_source.html',''); initRe
GpgFrontend::UI::MainWindow::zoom_in_act_
QAction * zoom_in_act_
Action to zoom in.
Definition: MainWindow.h:385
GpgFrontend::UI::MainWindow::slot_sign
void slot_sign()
Definition: MainWindowSlotFunction.cpp:169
GpgFrontend::UI::MainWindow::new_tab_act_
QAction * new_tab_act_
Action to create new tab.
Definition: MainWindow.h:352
-
GpgFrontend::UI::MainWindow::close_attachment_dock
void close_attachment_dock()
Definition: MainWindow.cpp:233
+
GpgFrontend::UI::MainWindow::close_attachment_dock
void close_attachment_dock()
Definition: MainWindow.cpp:239
GpgFrontend::UI::MainWindow::slot_version_upgrade
void slot_version_upgrade(const SoftwareVersion &version)
Definition: MainWindowSlotFunction.cpp:662
GpgFrontend::UI::MainWindow::open_act_
QAction * open_act_
Action to open file.
Definition: MainWindow.h:355
-
GpgFrontend::UI::MainWindow::slot_import_key_from_edit
void slot_import_key_from_edit()
Definition: MainWindowSlotUI.cpp:46
+
GpgFrontend::UI::MainWindow::slot_import_key_from_edit
void slot_import_key_from_edit()
Definition: MainWindowSlotUI.cpp:47
+
GpgFrontend::UI::MainWindow::get_restart_needed
int get_restart_needed() const
return true, if restart is needed
Definition: MainWindowSlotUI.cpp:191
GpgFrontend::UI::MainWindow::find_act_
QAction * find_act_
Action to find text.
Definition: MainWindow.h:382
GpgFrontend::UI::MainWindow::paste_act_
QAction * paste_act_
Action to paste text.
Definition: MainWindow.h:380
GpgFrontend::UI::MainWindow::check_update_act_
QAction * check_update_act_
Action to open about dialog.
Definition: MainWindow.h:388
@@ -357,14 +359,13 @@ $(document).ready(function(){initNavTree('MainWindow_8h_source.html',''); initRe
GpgFrontend::UI::MainWindow::copy_act_
QAction * copy_act_
Action to copy text.
Definition: MainWindow.h:377
GpgFrontend::UI::MainWindow::slot_append_selected_keys
void slot_append_selected_keys()
Definition: MainWindowSlotFunction.cpp:606
GpgFrontend::UI::MainWindow::gnupg_act_
QAction * gnupg_act_
Action to open about dialog.
Definition: MainWindow.h:390
-
GpgFrontend::UI::MainWindow::save_settings
void save_settings()
Definition: MainWindow.cpp:208
+
GpgFrontend::UI::MainWindow::save_settings
void save_settings()
Definition: MainWindow.cpp:214
GpgFrontend::UI::MainWindow::edit_
TextEdit * edit_
Tabwidget holding the edit-windows.
Definition: MainWindow.h:327
-
GpgFrontend::UI::MainWindow::slot_cut_pgp_header
void slot_cut_pgp_header()
Definition: MainWindowSlotUI.cpp:161
-
GpgFrontend::UI::MainWindow::get_restart_needed
bool get_restart_needed() const
return true, if restart is needed
Definition: MainWindowSlotUI.cpp:189
-
GpgFrontend::UI::MainWindow::slot_add_pgp_header
void slot_add_pgp_header()
Definition: MainWindowSlotUI.cpp:147
+
GpgFrontend::UI::MainWindow::slot_cut_pgp_header
void slot_cut_pgp_header()
Definition: MainWindowSlotUI.cpp:162
+
GpgFrontend::UI::MainWindow::slot_add_pgp_header
void slot_add_pgp_header()
Definition: MainWindowSlotUI.cpp:148
GpgFrontend::UI::MainWindow::import_button_
QToolButton * import_button_
Tool button for import dropdown menu in toolbar.
Definition: MainWindow.h:347
-
GpgFrontend::UI::MainWindow::SetCryptoMenuStatus
void SetCryptoMenuStatus(CryptoMenu::OperationType type)
Definition: MainWindowSlotUI.cpp:191
-
GpgFrontend::UI::MainWindow::slot_open_settings_dialog
void slot_open_settings_dialog()
Definition: MainWindowSlotUI.cpp:102
+
GpgFrontend::UI::MainWindow::SetCryptoMenuStatus
void SetCryptoMenuStatus(CryptoMenu::OperationType type)
Definition: MainWindowSlotUI.cpp:193
+
GpgFrontend::UI::MainWindow::slot_open_settings_dialog
void slot_open_settings_dialog()
Definition: MainWindowSlotUI.cpp:103
GpgFrontend::UI::MainWindow::switch_tab_down_act_
QAction * switch_tab_down_act_
Action to switch tab down.
Definition: MainWindow.h:354
GpgFrontend::UI::MainWindow::help_menu_
QMenu * help_menu_
Submenu for help-operations.
Definition: MainWindow.h:331
GpgFrontend::UI::MainWindow::SlotFileSign
void SlotFileSign()
Definition: MainWindowFileSlotFunction.cpp:364
@@ -381,11 +382,10 @@ $(document).ready(function(){initNavTree('MainWindow_8h_source.html',''); initRe
GpgFrontend::UI::MainWindow::decrypt_act_
QAction * decrypt_act_
Action to decrypt text.
Definition: MainWindow.h:365
GpgFrontend::UI::MainWindow::slot_verify
void slot_verify()
Definition: MainWindowSlotFunction.cpp:323
GpgFrontend::UI::MainWindow::create_tool_bars
void create_tool_bars()
Definition: MainWindowUI.cpp:390
-
GpgFrontend::UI::MainWindow::slot_start_wizard
void slot_start_wizard()
Definition: MainWindowSlotUI.cpp:40
+
GpgFrontend::UI::MainWindow::slot_start_wizard
void slot_start_wizard()
Definition: MainWindowSlotUI.cpp:41
GpgFrontend::UI::MainWindow::crypt_tool_bar_
QToolBar * crypt_tool_bar_
Toolbar holding crypt actions.
Definition: MainWindow.h:340
GpgFrontend::UI::MainWindow::start_wizard_act_
QAction * start_wizard_act_
Action to open the wizard.
Definition: MainWindow.h:393
GpgFrontend::UI::MainWindow::save_act_
QAction * save_act_
Action to save file.
Definition: MainWindow.h:357
-
GpgFrontend::UI::MainWindow::SlotSetRestartNeeded
void SlotSetRestartNeeded(bool needed)
Definition: MainWindowSlotUI.cpp:185
GpgFrontend::UI::MainWindow::SlotFileDecryptVerify
void SlotFileDecryptVerify()
Definition: MainWindowFileSlotFunction.cpp:682
GpgFrontend::UI::MainWindow::edit_tool_bar_
QToolBar * edit_tool_bar_
Toolbar holding edit actions.
Definition: MainWindow.h:342
GpgFrontend::UI::MainWindow::append_selected_keys_act_
QAction * append_selected_keys_act_
Action to append selected keys to edit.
Definition: MainWindow.h:373
@@ -402,7 +402,7 @@ $(document).ready(function(){initNavTree('MainWindow_8h_source.html',''); initRe
GpgFrontend::UI::MainWindow::slot_encrypt
void slot_encrypt()
Definition: MainWindowSlotFunction.cpp:47
GpgFrontend::UI::MainWindow::slot_find
void slot_find()
Definition: MainWindowSlotFunction.cpp:591
GpgFrontend::UI::MainWindow::slot_decrypt
void slot_decrypt()
Definition: MainWindowSlotFunction.cpp:255
-
GpgFrontend::UI::MainWindow::slot_clean_double_line_breaks
void slot_clean_double_line_breaks()
Definition: MainWindowSlotUI.cpp:137
+
GpgFrontend::UI::MainWindow::slot_clean_double_line_breaks
void slot_clean_double_line_breaks()
Definition: MainWindowSlotUI.cpp:138
GpgFrontend::UI::MainWindow::file_menu_
QMenu * file_menu_
Submenu for file-operations.
Definition: MainWindow.h:328
GpgFrontend::UI::MainWindow::special_edit_tool_bar_
QToolBar * special_edit_tool_bar_
Toolbar holding special edit actions.
Definition: MainWindow.h:344
GpgFrontend::UI::MainWindow::steganography_menu_
QMenu * steganography_menu_
Submenu for steganography operations.
Definition: MainWindow.h:339
diff --git a/docs/html/PlainTextEditorPage_8h_source.html b/docs/html/PlainTextEditorPage_8h_source.html index 4d5c6971..124cb773 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: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::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::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: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::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::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: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::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::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:77
+
GpgFrontend::UI::PlainTextEditorPage::GetFilePath
const QString & GetFilePath() const
Definition: PlainTextEditorPage.cpp:84
GpgFrontend::UI
Definition: FileReadTask.cpp:31
diff --git a/docs/html/SettingsAppearance_8h_source.html b/docs/html/SettingsAppearance_8h_source.html index 8439bb4b..3ebfc8a1 100644 --- a/docs/html/SettingsAppearance_8h_source.html +++ b/docs/html/SettingsAppearance_8h_source.html @@ -92,41 +92,37 @@ $(document).ready(function(){initNavTree('SettingsAppearance_8h_source.html','')
31 
32 #include "ui/GpgFrontendUI.h"
33 
-
34 namespace GpgFrontend::UI {
+
34 class Ui_AppearanceSettings;
35 
-
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
+
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
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 ae174396..efbd0226 100644 --- a/docs/html/SettingsDialog_8h_source.html +++ b/docs/html/SettingsDialog_8h_source.html @@ -120,34 +120,34 @@ $(document).ready(function(){initNavTree('SettingsDialog_8h_source.html',''); in
77 
78  signals:
79 
-
85  void SignalRestartNeeded(bool needed);
+
85  void SignalRestartNeeded(int);
86 
87  private:
88  QTabWidget* tab_widget_;
89  QDialogButtonBox* button_box_;
-
90  bool restart_needed_{};
+
90  int restart_needed_{0};
91 
-
98  bool get_restart_needed() const;
+
98  int get_restart_needed() const;
99 
100  private slots:
101 
-
107  void slot_set_restart_needed(bool needed);
+
107  void slot_set_restart_needed(int);
108 };
109 
110 } // namespace GpgFrontend::UI
111 
112 #endif // __SETTINGSDIALOG_H__
-
GpgFrontend::UI::AppearanceTab
Definition: SettingsAppearance.h:36
+
GpgFrontend::UI::AppearanceTab
Definition: SettingsAppearance.h:38
GpgFrontend::UI::GeneralDialog
Definition: GeneralDialog.h:35
GpgFrontend::UI::GeneralTab
Definition: SettingsGeneral.h:43
GpgFrontend::UI::KeyserverTab
Definition: SettingsKeyServer.h:41
GpgFrontend::UI::NetworkTab
Definition: SettingsNetwork.h:37
GpgFrontend::UI::SettingsDialog
Definition: SettingsDialog.h:47
-
GpgFrontend::UI::SettingsDialog::SettingsDialog
SettingsDialog(QWidget *parent=nullptr)
Construct a new Settings Dialog object.
Definition: SettingsDialog.cpp:41
-
GpgFrontend::UI::SettingsDialog::slot_set_restart_needed
void slot_set_restart_needed(bool needed)
Definition: SettingsDialog.cpp:92
-
GpgFrontend::UI::SettingsDialog::get_restart_needed
bool get_restart_needed() const
Get the Restart Needed object.
Definition: SettingsDialog.cpp:88
-
GpgFrontend::UI::SettingsDialog::SignalRestartNeeded
void SignalRestartNeeded(bool needed)
-
GpgFrontend::UI::SettingsDialog::ListLanguages
static QHash< QString, QString > ListLanguages()
Definition: SettingsDialog.cpp:116
+
GpgFrontend::UI::SettingsDialog::get_restart_needed
int get_restart_needed() const
Get the Restart Needed object.
Definition: SettingsDialog.cpp:104
+
GpgFrontend::UI::SettingsDialog::SettingsDialog
SettingsDialog(QWidget *parent=nullptr)
Construct a new Settings Dialog object.
Definition: SettingsDialog.cpp:42
+
GpgFrontend::UI::SettingsDialog::slot_set_restart_needed
void slot_set_restart_needed(int)
Definition: SettingsDialog.cpp:106
+
GpgFrontend::UI::SettingsDialog::ListLanguages
static QHash< QString, QString > ListLanguages()
Definition: SettingsDialog.cpp:130
+
GpgFrontend::UI::SettingsDialog::SignalRestartNeeded
void SignalRestartNeeded(int)
GpgFrontend::UI
Definition: FileReadTask.cpp:31
diff --git a/docs/html/SettingsGeneral_8h_source.html b/docs/html/SettingsGeneral_8h_source.html index 72aa9833..08aef2b5 100644 --- a/docs/html/SettingsGeneral_8h_source.html +++ b/docs/html/SettingsGeneral_8h_source.html @@ -111,31 +111,38 @@ $(document).ready(function(){initNavTree('SettingsGeneral_8h_source.html',''); i
67 
73  void SignalRestartNeeded(bool needed);
74 
-
75  private:
-
76  std::shared_ptr<Ui_GeneralSettings> ui_;
-
77 
-
78 #ifdef MULTI_LANG_SUPPORT
-
79  QHash<QString, QString> lang_;
-
80 #endif
+
80  void SignalDeepRestartNeeded(bool needed);
81 
-
82  std::vector<std::string> key_ids_list_;
-
83 
-
84  KeyList* m_key_list_{};
-
85 
-
86  private slots:
-
87 
-
88 #ifdef MULTI_LANG_SUPPORT
-
93  void slot_language_changed();
+
82  private:
+
83  std::shared_ptr<Ui_GeneralSettings> ui_;
+
84 
+
85 #ifdef MULTI_LANG_SUPPORT
+
86  QHash<QString, QString> lang_;
+
87 #endif
+
88 
+
89  std::vector<std::string> key_ids_list_;
+
90 
+
91  KeyList* m_key_list_{};
+
92 
+
93  private slots:
94 
-
95 #endif
-
96 };
-
97 } // namespace GpgFrontend::UI
-
98 
-
99 #endif // GPGFRONTEND_SETTINGSGENERAL_H
+
95 #ifdef MULTI_LANG_SUPPORT
+
100  void slot_language_changed();
+
101 
+
106  void slot_update_custom_key_database_path_label(int state);
+
107 
+
112  void slot_key_databse_path_changed();
+
113 
+
114 #endif
+
115 };
+
116 } // namespace GpgFrontend::UI
+
117 
+
118 #endif // GPGFRONTEND_SETTINGSGENERAL_H
GpgFrontend::UI::GeneralTab
Definition: SettingsGeneral.h:43
-
GpgFrontend::UI::GeneralTab::GeneralTab
GeneralTab(QWidget *parent=nullptr)
Construct a new General Tab object.
Definition: SettingsGeneral.cpp:40
-
GpgFrontend::UI::GeneralTab::SetSettings
void SetSettings()
Set the Settings object.
Definition: SettingsGeneral.cpp:81
+
GpgFrontend::UI::GeneralTab::GeneralTab
GeneralTab(QWidget *parent=nullptr)
Construct a new General Tab object.
Definition: SettingsGeneral.cpp:42
+
GpgFrontend::UI::GeneralTab::SetSettings
void SetSettings()
Set the Settings object.
Definition: SettingsGeneral.cpp:128
GpgFrontend::UI::GeneralTab::SignalRestartNeeded
void SignalRestartNeeded(bool needed)
+
GpgFrontend::UI::GeneralTab::SignalDeepRestartNeeded
void SignalDeepRestartNeeded(bool needed)
GpgFrontend::UI::KeyList
Definition: KeyList.h:152
GpgFrontend::UI
Definition: FileReadTask.cpp:31
diff --git a/docs/html/SettingsKeyServer_8h_source.html b/docs/html/SettingsKeyServer_8h_source.html index eff191a2..7750b6e5 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:122
+
GpgFrontend::UI::KeyserverTab::SetSettings
void SetSettings()
Set the Settings object.
Definition: SettingsKeyServer.cpp:117
GpgFrontend::UI::KeyserverTab::SignalRestartNeeded
void SignalRestartNeeded(bool needed)
-
GpgFrontend::UI::KeyserverTab::contextMenuEvent
void contextMenuEvent(QContextMenuEvent *event) override
Definition: SettingsKeyServer.cpp:294
+
GpgFrontend::UI::KeyserverTab::contextMenuEvent
void contextMenuEvent(QContextMenuEvent *event) override
Definition: SettingsKeyServer.cpp:289
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 91ef476c..48959977 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:41
+
GpgFrontend::GpgKey
Definition: GpgKey.h:43
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: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::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::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: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::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::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:239
+
GpgFrontend::UI::SubkeyGenerateDialog::slot_key_gen_accept
void slot_key_gen_accept()
Definition: SubkeyGenerateDialog.cpp:241
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:313
+
GpgFrontend::UI::SubkeyGenerateDialog::slot_signing_box_changed
void slot_signing_box_changed(int state)
Definition: SubkeyGenerateDialog.cpp:316
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 ed8b271f..882f8646 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:188
-
GpgFrontend::UI::CommonUtils::SlotImportKeyFromClipboard
void SlotImportKeyFromClipboard(QWidget *parent)
Definition: UserInterfaceUtils.cpp:209
+
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::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:180
+
GpgFrontend::UI::CommonUtils::SlotImportKeys
void SlotImportKeys(QWidget *parent, const std::string &in_buffer)
Definition: UserInterfaceUtils.cpp:181
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:361
+
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::GetInstance
static CommonUtils * GetInstance()
Get the Instance object.
Definition: UserInterfaceUtils.cpp:143
-
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::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
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 92f14a71..67bebfb7 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,30 +132,31 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1GenKeyInfo.html',' IsNoPassPhrase() constGpgFrontend::GenKeyInfoinline IsSubKey() constGpgFrontend::GenKeyInfoinline key_size_ (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 + 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 diff --git a/docs/html/classGpgFrontend_1_1GenKeyInfo.html b/docs/html/classGpgFrontend_1_1GenKeyInfo.html index 395e6e4b..35cb4b11 100644 --- a/docs/html/classGpgFrontend_1_1GenKeyInfo.html +++ b/docs/html/classGpgFrontend_1_1GenKeyInfo.html @@ -85,6 +85,7 @@ $(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
@@ -134,9 +135,9 @@ Public Member Functions const std::string & GetAlgo () const  Get the Algo object. More...
  -void SetAlgo (const std::string &m_algo) - Set the Algo object. More...
-  +void SetAlgo (const GpgFrontend::GenKeyInfo::KeyGenAlgo &m_algo) + Set the Algo object. More...
+  std::string GetKeySizeStr () const  Get the Key Size Str object. More...
  @@ -213,18 +214,24 @@ Public Member Functions - - - - - - - - - - - - + + + + + + + + + + + + +

Static Public Member Functions

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...
 
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 >
 
@@ -347,7 +354,7 @@ bool  - - + + +

Private Member Functions

allow_change_signing_ -

References SetAlgo().

+

References GetSupportedKeyAlgo(), and SetAlgo().

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

◆ GetSupportedKeyAlgo()

+ +

◆ GetSupportedKeyAlgo()

@@ -662,7 +669,7 @@ bool 
allow_change_signing_ - + @@ -678,12 +685,12 @@ bool  +overrideprotected
const std::vector< std::string > & GpgFrontend::GenKeyInfo::GetSupportedKeyAlgo const std::vector< GpgFrontend::GenKeyInfo::KeyGenAlgo > & 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(), GpgFrontend::UI::SubkeyGenerateDialog::create_basic_info_group_box(), and SetAlgo().

+

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

- -

◆ GetSupportedKeyAlgoStandalone()

+ +

◆ GetSupportedKeyAlgoStandalone()

@@ -692,7 +699,7 @@ bool 
allow_change_signing_ - + @@ -708,12 +715,12 @@ bool  - - - + + + + + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html index dfbc7626..6dc47f7c 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< std::string > & GpgFrontend::GenKeyInfo::GetSupportedKeyAlgoStandalone const std::vector< GpgFrontend::GenKeyInfo::KeyGenAlgo > & 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()

@@ -722,7 +729,7 @@ bool 
allow_change_signing_ - + @@ -738,12 +745,12 @@ bool  - + +
const std::vector< std::string > & GpgFrontend::GenKeyInfo::GetSupportedSubkeyAlgo const std::vector< GpgFrontend::GenKeyInfo::KeyGenAlgo > & GpgFrontend::GenKeyInfo::GetSupportedSubkeyAlgo ( ) allow_change_signing_

Get the Supported Subkey Algo object.

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

Referenced by SetAlgo().

+

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

- -

◆ GetSupportedSubkeyAlgoStandalone()

+ +

◆ GetSupportedSubkeyAlgoStandalone()

@@ -752,7 +759,7 @@ bool 
allow_change_signing_ - + @@ -768,7 +775,7 @@ bool  - + @@ -1169,9 +1176,8 @@ 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().

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

Referenced by SetAlgo().

+

Referenced by SetAlgo().

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

Referenced by SetAlgo().

+

Referenced by SetAlgo().

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

Referenced by SetAlgo().

+

Referenced by SetAlgo().

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

Referenced by SetAlgo().

+

Referenced by SetAlgo().

@@ -1457,7 +1463,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 b7dc41da..2b6bf175 100644 --- a/docs/html/classGpgFrontend_1_1GenKeyInfo.js +++ b/docs/html/classGpgFrontend_1_1GenKeyInfo.js @@ -1,5 +1,6 @@ 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 ], @@ -12,10 +13,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#a185c7be801854f81879351a6c4dd9071", null ], - [ "GetSupportedKeyAlgoStandalone", "classGpgFrontend_1_1GenKeyInfo.html#a8b054a66cb0678af6c42090eea1518e4", null ], - [ "GetSupportedSubkeyAlgo", "classGpgFrontend_1_1GenKeyInfo.html#a7855d9fe9b6872ff08a60fe21640d07f", null ], - [ "GetSupportedSubkeyAlgoStandalone", "classGpgFrontend_1_1GenKeyInfo.html#a310fd0cdac03d0b0a7fde006105866d6", 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 ], [ "GetUserid", "classGpgFrontend_1_1GenKeyInfo.html#a4ee4a0659e76376d9bfc527c334392e1", null ], [ "IsAllowAuthentication", "classGpgFrontend_1_1GenKeyInfo.html#aabdf981c65a0efde1e8905441b9b9c87", null ], [ "IsAllowCertification", "classGpgFrontend_1_1GenKeyInfo.html#ad47ceeb1ccfa8862843034e51b4d8be7", null ], @@ -30,7 +31,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#a378ea10385ab401bea45a7edb3df122d", null ], + [ "SetAlgo", "classGpgFrontend_1_1GenKeyInfo.html#adcd9c4f3e75f989810988e0bc81d401f", 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 61ff5fea..87e83e40 100644 --- a/docs/html/classGpgFrontend_1_1GlobalSettingStation.html +++ b/docs/html/classGpgFrontend_1_1GlobalSettingStation.html @@ -226,7 +226,7 @@ Private Attributes - + @@ -494,7 +494,7 @@ virtual  - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + +
const std::vector< std::string > & GpgFrontend::GenKeyInfo::GetSupportedSubkeyAlgoStandalone const std::vector< GpgFrontend::GenKeyInfo::KeyGenAlgo > & 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().

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

◆ SetAlgo()

+ +

◆ SetAlgo()

@@ -1145,7 +1152,7 @@ false
void GpgFrontend::GenKeyInfo::SetAlgo (const std::string & const GpgFrontend::GenKeyInfo::KeyGenAlgo &  m_algo)
 Configure File Directory Location. More...
 
std::filesystem::path ui_config_path_
 UI Configure File Location. More...
 Main Configure File Location. More...
 
libconfig::Config ui_cfg_
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::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().

+

Referenced by GpgFrontend::UI::KeyList::dropEvent(), GpgFrontend::UI::GeneralTab::GeneralTab(), 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().

@@ -755,8 +755,7 @@ virtual 
Initial value:
=
-
-
"UserInterface"
+
std::filesystem::path app_configure_path_
Program Configure Location.
Definition: GlobalSettingStation.h:172

Configure File Directory Location.

@@ -785,10 +784,10 @@ virtual 
Initial value:
=
-
+
ui_config_dir_path_ / "main.cfg"
std::filesystem::path ui_config_dir_path_
Configure File Directory Location.
Definition: GlobalSettingStation.h:175
-

UI Configure File Location.

+

Main Configure File Location.

Referenced by GlobalSettingStation(), and SyncSettings().

diff --git a/docs/html/classGpgFrontend_1_1GpgKey-members.html b/docs/html/classGpgFrontend_1_1GpgKey-members.html index 53a32105..c379190f 100644 --- a/docs/html/classGpgFrontend_1_1GpgKey-members.html +++ b/docs/html/classGpgFrontend_1_1GpgKey-members.html @@ -108,29 +108,30 @@ $(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
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
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
diff --git a/docs/html/classGpgFrontend_1_1GpgKey.html b/docs/html/classGpgFrontend_1_1GpgKey.html index 7fa57d35..88003539 100644 --- a/docs/html/classGpgFrontend_1_1GpgKey.html +++ b/docs/html/classGpgFrontend_1_1GpgKey.html @@ -97,10 +97,11 @@ Collaboration diagram for GpgFrontend::GpgKey:
Collaboration graph
- - - - + + + + +
@@ -212,6 +213,9 @@ 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 b720a48c..dadbe0f7 100644 --- a/docs/html/classGpgFrontend_1_1GpgKey.js +++ b/docs/html/classGpgFrontend_1_1GpgKey.js @@ -42,5 +42,6 @@ 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 f76794ef..1e60483c 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 3c2cfd58..11d1429f 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 850fac84..84d459e5 100644 --- a/docs/html/classGpgFrontend_1_1GpgKeyGetter__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1GpgKeyGetter__coll__graph.md5 @@ -1 +1 @@ -f9d34d211fc7072f14e801c68a41a53a \ No newline at end of file +467a510c53c1e67830b7a6a72fb19f94 \ 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 41c7495f..bc21d4a4 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 0896146e..4b19a8e0 100644 --- a/docs/html/classGpgFrontend_1_1GpgKey__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1GpgKey__coll__graph.map @@ -1,6 +1,7 @@ - - - - + + + + + diff --git a/docs/html/classGpgFrontend_1_1GpgKey__coll__graph.md5 b/docs/html/classGpgFrontend_1_1GpgKey__coll__graph.md5 index eef57be4..6fa3970e 100644 --- a/docs/html/classGpgFrontend_1_1GpgKey__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1GpgKey__coll__graph.md5 @@ -1 +1 @@ -d5f9d90c107e071b36ee88fcd04f0f06 \ No newline at end of file +491e5b154e6f2eabb0b30bf631c32b2d \ 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 5d6237f1..2a1d7731 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_1SingletonFunctionObject.html b/docs/html/classGpgFrontend_1_1SingletonFunctionObject.html index 8d2e13e1..1d85b025 100644 --- a/docs/html/classGpgFrontend_1_1SingletonFunctionObject.html +++ b/docs/html/classGpgFrontend_1_1SingletonFunctionObject.html @@ -305,7 +305,7 @@ template<typename T >
Returns
T&
-

References GpgFrontend::SingletonStorageCollection::GetInstance(), and GpgFrontend::SingletonStorageCollection::GetSingletonStorage().

+

References GpgFrontend::SingletonStorageCollection::GetInstance(), and GpgFrontend::SingletonStorageCollection::GetSingletonStorage().

@@ -337,7 +337,7 @@ template<typename T >

Get all the channel ids.

Returns
std::vector<int>
-

References GpgFrontend::SingletonStorage::GetAllChannelId(), GpgFrontend::SingletonStorageCollection::GetInstance(), and GpgFrontend::SingletonStorageCollection::GetSingletonStorage().

+

References GpgFrontend::SingletonStorage::GetAllChannelId(), GpgFrontend::SingletonStorageCollection::GetInstance(), and GpgFrontend::SingletonStorageCollection::GetSingletonStorage().

@@ -440,7 +440,7 @@ template<typename T >
Returns
T&
-

References GpgFrontend::SingletonStorageCollection::GetInstance(), and GpgFrontend::SingletonStorageCollection::GetSingletonStorage().

+

References GpgFrontend::SingletonStorageCollection::GetInstance(), and GpgFrontend::SingletonStorageCollection::GetSingletonStorage().

@@ -508,7 +508,7 @@ template<typename T >
Returns
T&
-

References GpgFrontend::SingletonStorageCollection::GetInstance(), GpgFrontend::SingletonStorageCollection::GetSingletonStorage(), and GpgFrontend::SingletonStorage::ReleaseChannel().

+

References GpgFrontend::SingletonStorageCollection::GetInstance(), GpgFrontend::SingletonStorageCollection::GetSingletonStorage(), and GpgFrontend::SingletonStorage::ReleaseChannel().

diff --git a/docs/html/classGpgFrontend_1_1SingletonStorageCollection-members.html b/docs/html/classGpgFrontend_1_1SingletonStorageCollection-members.html index 133b9a17..179b8526 100644 --- a/docs/html/classGpgFrontend_1_1SingletonStorageCollection-members.html +++ b/docs/html/classGpgFrontend_1_1SingletonStorageCollection-members.html @@ -89,7 +89,7 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1SingletonStorageCo

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

- + diff --git a/docs/html/classGpgFrontend_1_1SingletonStorageCollection.html b/docs/html/classGpgFrontend_1_1SingletonStorageCollection.html index f74273d5..008f5da5 100644 --- a/docs/html/classGpgFrontend_1_1SingletonStorageCollection.html +++ b/docs/html/classGpgFrontend_1_1SingletonStorageCollection.html @@ -115,9 +115,9 @@ Public Member Functions
GetInstance()GpgFrontend::SingletonStorageCollectionstatic
GetInstance(bool force_refresh)GpgFrontend::SingletonStorageCollectionstatic
GetSingletonStorage(const std::type_info &)GpgFrontend::SingletonStorageCollection
storages_map_ (defined in GpgFrontend::SingletonStorageCollection)GpgFrontend::SingletonStorageCollectionprivate
storages_mutex_GpgFrontend::SingletonStorageCollectionprivate
- - - + + +

Static Public Member Functions

static SingletonStorageCollectionGetInstance ()
 Get the Instance object. More...
 
static SingletonStorageCollectionGetInstance (bool force_refresh)
 Get the Instance object. More...
 
@@ -130,8 +130,8 @@ std::map< size_t, std::unique_ptr<

Private Attributes

 

Member Function Documentation

-
-

◆ GetInstance()

+ +

◆ GetInstance()

@@ -142,7 +142,8 @@ std::map< size_t, std::unique_ptr< GpgFrontend::SingletonStorageCollection * GpgFrontend::SingletonStorageCollection::GetInstance
()bool force_refresh = false)
diff --git a/docs/html/classGpgFrontend_1_1SingletonStorageCollection.js b/docs/html/classGpgFrontend_1_1SingletonStorageCollection.js index 3a782c6d..b728a759 100644 --- a/docs/html/classGpgFrontend_1_1SingletonStorageCollection.js +++ b/docs/html/classGpgFrontend_1_1SingletonStorageCollection.js @@ -1,6 +1,6 @@ var classGpgFrontend_1_1SingletonStorageCollection = [ - [ "GetInstance", "classGpgFrontend_1_1SingletonStorageCollection.html#a16b4729ca79dcdccc794df70aa2a5aaf", null ], + [ "GetInstance", "classGpgFrontend_1_1SingletonStorageCollection.html#ac56d19e0d4b99e7b8a86a017721f3db1", null ], [ "GetSingletonStorage", "classGpgFrontend_1_1SingletonStorageCollection.html#a6f933390c54b7f55d5ffb4624074725f", null ], [ "storages_map_", "classGpgFrontend_1_1SingletonStorageCollection.html#ae28930630a2dce804cff5589155aadfc", null ], [ "storages_mutex_", "classGpgFrontend_1_1SingletonStorageCollection.html#ab648cb257beb2475eb5fca6453c331f9", null ] diff --git a/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog-members.html index ccc8766c..34cbc8f2 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog-members.html @@ -91,8 +91,12 @@ $(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 51269006..ba3e1cf4 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
name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
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
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,6 +134,13 @@ 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 925e0fc0..e3fd132e 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 2026a877..7b8badb8 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 @@ -72f173638652eeb6a872942f4c20c68d \ No newline at end of file +05bb342e1cd1a1d16b3b3229a1dc47cc \ 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 3473e1df..850225e2 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 9459e7eb..f6c0bf5d 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 4aa50b2b..21d28608 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 @@ -4a6961633efd792be9d3b1379cca4870 \ No newline at end of file +b8646657283c7c31b87de6d35a87a0bb \ 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 e8be76d3..64de06b3 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 6d9f6022..db9097dc 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1AppearanceTab-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1AppearanceTab-members.html @@ -91,18 +91,11 @@ $(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_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
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
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1AppearanceTab.html b/docs/html/classGpgFrontend_1_1UI_1_1AppearanceTab.html index 607af8a4..a57e11f4 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,8 +105,11 @@ Collaboration diagram for GpgFrontend::UI::AppearanceTab:
Collaboration graph
- - + + + + +
@@ -130,36 +133,15 @@ 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 617e4c8e..b43e19c6 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1AppearanceTab.js +++ b/docs/html/classGpgFrontend_1_1UI_1_1AppearanceTab.js @@ -4,14 +4,7 @@ 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 ], - [ "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 ] + [ "ui_", "classGpgFrontend_1_1UI_1_1AppearanceTab.html#a9f546f16551f48c73ee9031dd0ad8720", 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 0cc1e311..118ced7e 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1AppearanceTab__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1AppearanceTab__coll__graph.map @@ -1,4 +1,7 @@ - - + + + + + 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 90f3e613..a6008729 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 @@ -c90ca7324d443f5bc996b503137ec9a1 \ No newline at end of file +9c73c708963b17a280b39cf173e3a53f \ 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 4331c94f..3387d41b 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 0cc1e311..6b2d920c 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 90f3e613..90038afc 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 @@ -c90ca7324d443f5bc996b503137ec9a1 \ No newline at end of file +d2d4848d083e83dd6146adcf14fb8e5d \ 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 4331c94f..dfc4fa2f 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 b386b2e9..df4f59de 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog-members.html @@ -92,9 +92,13 @@ $(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
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
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
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,6 +138,16 @@ 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 c9bf0fea..86d56af8 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 56fa1eaa..231b90fd 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 @@ -a99abc281069eac7c9ca4990ea942238 \ No newline at end of file +66c142b62f3c8cb72f33283471cd4d84 \ 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 be07c2fd..37badd2b 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 10770217..dfe95665 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 6870f84f..e76135e8 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 @@ -69ac3e392b04999ff042e3041436b7b2 \ No newline at end of file +3c683b6affe0924739e8aa3318706e8d \ 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 ef3d16ab..ed428c54 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 f5e90a79..9eb457eb 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog-members.html @@ -90,8 +90,12 @@ $(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 7467b77c..58037b46 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog.html @@ -84,6 +84,7 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1GeneralDialo
@@ -96,21 +97,21 @@ Inheritance diagram for GpgFrontend::UI::GeneralDialog:
Inheritance graph
- - - - - - - - - - - - - - - + + + + + + + + + + + + + + +
@@ -119,10 +120,10 @@ Collaboration diagram for GpgFrontend::UI::GeneralDialog:
Collaboration graph
- - - - + + + +
GeneralDialog(std::string name, QWidget *parent=nullptr)GpgFrontend::UI::GeneralDialogexplicit
name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
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
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
@@ -131,6 +132,15 @@ Public Member Functions
 GeneralDialog (std::string name, QWidget *parent=nullptr)
 
+ + + + + +

+Protected Member Functions

+void setPosCenterOfScreen ()
 
+void movePosition2CenterOfParent ()
 
+ + + +

Private Slots

@@ -151,6 +161,12 @@ 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 e94c3ed3..faf519a4 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog.js +++ b/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog.js @@ -2,9 +2,13 @@ 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 4d243a62..6acf3722 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 65d60992..7ba79f9a 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 @@ -b9dd63f002d67c887e553ef7eb47dcb9 \ No newline at end of file +dfb384493a858ed51bb7f1b6a02893eb \ 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 64e67fb6..e893b8b9 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 f8999b53..2094e1d1 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 6f0b7bfd..42b21657 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 @@ -b92011769c33441e27d7630b83fe1a87 \ No newline at end of file +4aaa058f2e4e5adebbb525bb120bf713 \ 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 5b2d1198..f77624a6 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 5cdc64eb..e73d25e7 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 c7b0e7fd..67d0f23d 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)GpgFrontend::UI::GeneralMainWindowprotected
closeEvent(QCloseEvent *event) overrideGpgFrontend::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)
 
void closeEvent (QCloseEvent *event) override
 
@@ -210,8 +210,8 @@ QSize 

Member Function Documentation

- -

◆ closeEvent()

+ +

◆ closeEvent()

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

Protected Attributes

size_
size_
-protected
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow.js b/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow.js index 008007b1..6b28bf21 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#af5c86754836a678c7058e6f633968863", null ], + [ "closeEvent", "classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#acc10569862d1575d9453d1c1aa539242", 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-members.html b/docs/html/classGpgFrontend_1_1UI_1_1GeneralTab-members.html index 79e465e1..2c1f280b 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GeneralTab-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1GeneralTab-members.html @@ -94,8 +94,9 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1GeneralTab.h
key_ids_list_ (defined in GpgFrontend::UI::GeneralTab)GpgFrontend::UI::GeneralTabprivate
m_key_list_ (defined in GpgFrontend::UI::GeneralTab)GpgFrontend::UI::GeneralTabprivate
SetSettings()GpgFrontend::UI::GeneralTab
SignalRestartNeeded(bool needed)GpgFrontend::UI::GeneralTabsignal
ui_ (defined in GpgFrontend::UI::GeneralTab)GpgFrontend::UI::GeneralTabprivate
SignalDeepRestartNeeded(bool needed)GpgFrontend::UI::GeneralTabsignal
SignalRestartNeeded(bool needed)GpgFrontend::UI::GeneralTabsignal
ui_ (defined in GpgFrontend::UI::GeneralTab)GpgFrontend::UI::GeneralTabprivate
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralTab.html b/docs/html/classGpgFrontend_1_1UI_1_1GeneralTab.html index 257c7e96..aff4fce8 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
- - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + +
@@ -132,6 +132,8 @@ Collaboration diagram for GpgFrontend::UI::GeneralTab: Signals + +
void SignalRestartNeeded (bool needed)
 
void SignalDeepRestartNeeded (bool needed)
 
@@ -191,11 +193,45 @@ std::vector< std::string >  - - - - - - - + + + + + + + + + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog.html index 35bec6da..f5af88a8 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
- - - - - - - - - - + + + + + + + + + +

Public Member Functions

References GpgFrontend::UI::SettingsDialog::ListLanguages(), and SetSettings().

+

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

Member Function Documentation

+ +

◆ SignalDeepRestartNeeded

+ +
+
+ + + + + +
+ + + + + + + + +
void GpgFrontend::UI::GeneralTab::SignalDeepRestartNeeded (bool needed)
+
+signal
+
+
Parameters
+ + +
needed
+
+
+ +

Referenced by GpgFrontend::UI::SettingsDialog::SettingsDialog().

+ +
+

◆ SignalRestartNeeded

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralTab.js b/docs/html/classGpgFrontend_1_1UI_1_1GeneralTab.js index 552eeb79..f2bca46a 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GeneralTab.js +++ b/docs/html/classGpgFrontend_1_1UI_1_1GeneralTab.js @@ -3,6 +3,7 @@ var classGpgFrontend_1_1UI_1_1GeneralTab = [ "GeneralTab", "classGpgFrontend_1_1UI_1_1GeneralTab.html#a214079dfbacdc6898146c8468611cf0c", null ], [ "ApplySettings", "classGpgFrontend_1_1UI_1_1GeneralTab.html#a4523f55e98cee600b2fd47b1750b4d24", null ], [ "SetSettings", "classGpgFrontend_1_1UI_1_1GeneralTab.html#a7b26d8a088ce8f50b1fd0e719e38534b", null ], + [ "SignalDeepRestartNeeded", "classGpgFrontend_1_1UI_1_1GeneralTab.html#afc107d56f13000aa28436a5e26a0876b", null ], [ "SignalRestartNeeded", "classGpgFrontend_1_1UI_1_1GeneralTab.html#aa88ccbda61728be6de0aa2d9b92e0b69", null ], [ "key_ids_list_", "classGpgFrontend_1_1UI_1_1GeneralTab.html#aa183fdff30ef4581a05ff5c0fde44d8c", null ], [ "m_key_list_", "classGpgFrontend_1_1UI_1_1GeneralTab.html#abaf12014356a2fa20f66945004abb7c2", null ], 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 e6703321..cd7453fa 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 03f11291..145a2745 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 @@ -dddc4819d40c7943fe329482ba258568 \ No newline at end of file +b86d1d6d931488f83ced2a64a52798e8 \ 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 594ca236..8660ca82 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_1GnupgTab-members.html b/docs/html/classGpgFrontend_1_1UI_1_1GnupgTab-members.html index b88c243e..93d3f962 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GnupgTab-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1GnupgTab-members.html @@ -90,6 +90,9 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1GnupgTab.htm

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

+ + +
GnupgTab(QWidget *parent=nullptr)GpgFrontend::UI::GnupgTabexplicit
gpgconf_process_ (defined in GpgFrontend::UI::GnupgTab)GpgFrontend::UI::GnupgTabprivate
process_components_info(int, QProcess::ExitStatus) (defined in GpgFrontend::UI::GnupgTab)GpgFrontend::UI::GnupgTabprivateslot
ui_ (defined in GpgFrontend::UI::GnupgTab)GpgFrontend::UI::GnupgTabprivate
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GnupgTab.html b/docs/html/classGpgFrontend_1_1UI_1_1GnupgTab.html index 19ffd41d..8a55614a 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GnupgTab.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1GnupgTab.html @@ -84,6 +84,8 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1GnupgTab.htm
GpgFrontend::UI::GnupgTab Class Reference
@@ -94,7 +96,7 @@ Inheritance diagram for GpgFrontend::UI::GnupgTab:
Inheritance graph
- +
@@ -103,8 +105,11 @@ Collaboration diagram for GpgFrontend::UI::GnupgTab:
Collaboration graph
- - + + + + +
@@ -113,6 +118,21 @@ Public Member Functions +
 GnupgTab (QWidget *parent=nullptr)
 Construct a new Info Tab object. More...
 
+ + + +

+Private Slots

+void process_components_info (int, QProcess::ExitStatus)
 
+ + + + +

+Private Attributes

+std::shared_ptr< Ui_GnuPGInfo > ui_
 
+QProcess * gpgconf_process_
 

Constructor & Destructor Documentation

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GnupgTab.js b/docs/html/classGpgFrontend_1_1UI_1_1GnupgTab.js index 37a2c26e..eb892c01 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GnupgTab.js +++ b/docs/html/classGpgFrontend_1_1UI_1_1GnupgTab.js @@ -1,4 +1,7 @@ var classGpgFrontend_1_1UI_1_1GnupgTab = [ - [ "GnupgTab", "classGpgFrontend_1_1UI_1_1GnupgTab.html#ab9d9e8af4494659f13b87804e7318a79", null ] + [ "GnupgTab", "classGpgFrontend_1_1UI_1_1GnupgTab.html#ab9d9e8af4494659f13b87804e7318a79", null ], + [ "process_components_info", "classGpgFrontend_1_1UI_1_1GnupgTab.html#aa721fabc3ca35bb6b41e351732fe1081", null ], + [ "gpgconf_process_", "classGpgFrontend_1_1UI_1_1GnupgTab.html#a31c103293e8cb053a829466cc77a0840", null ], + [ "ui_", "classGpgFrontend_1_1UI_1_1GnupgTab.html#afd915ad09684b960ec63e28753f833e9", null ] ]; \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GnupgTab__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1GnupgTab__coll__graph.map index 75c1c739..dbf7b1be 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GnupgTab__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1GnupgTab__coll__graph.map @@ -1,4 +1,7 @@ - - + + + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GnupgTab__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1GnupgTab__coll__graph.md5 index 421fa4ee..854df383 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GnupgTab__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1GnupgTab__coll__graph.md5 @@ -1 +1 @@ -c18e6cd4ae94931e097255ddca4dbed2 \ No newline at end of file +aa978b6b91196dfcc4d8182b5ddbf1f8 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GnupgTab__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1GnupgTab__coll__graph.png index cafab698..5a815138 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1GnupgTab__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1GnupgTab__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GnupgTab__inherit__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1GnupgTab__inherit__graph.map index 75c1c739..d1b578a1 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GnupgTab__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1GnupgTab__inherit__graph.map @@ -1,4 +1,4 @@ - + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GnupgTab__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1GnupgTab__inherit__graph.md5 index 421fa4ee..fa630d78 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GnupgTab__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1GnupgTab__inherit__graph.md5 @@ -1 +1 @@ -c18e6cd4ae94931e097255ddca4dbed2 \ No newline at end of file +e096998630dcb275c5f61f5f40139968 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GnupgTab__inherit__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1GnupgTab__inherit__graph.png index cafab698..63cef356 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1GnupgTab__inherit__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1GnupgTab__inherit__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 dc9b370e..dbd94668 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog-members.html @@ -91,8 +91,12 @@ $(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 2ea53d3f..09650c8a 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
name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
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
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,6 +127,16 @@ 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 9a9539df..fb6e122f 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 dc30da8c..6e7096eb 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 @@ -0118d4e63f09f3129bea89c6534907b1 \ No newline at end of file +cbb060ae118d1849c61a1f8a5582f4cb \ 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 be0ef460..6fdbce55 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 23474f95..5997db3e 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 2eda37c4..ec09cdfb 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 @@ -621551b7368422f47512f365eaf4bc3a \ No newline at end of file +1c8ccce6af7e9a6449ade2f780b15068 \ 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 6c70b99b..62252fd8 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 a9f08489..092cfb08 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog-members.html @@ -108,13 +108,17 @@ $(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
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
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
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,6 +228,16 @@ 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

@@ -331,7 +341,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_.

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

References key_type_combo_box_, and refresh_widgets_state().

+

References 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 946f24a6..f5a63ed1 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 7883bac7..564cd762 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 @@ -e2be69e4f09b18685143523e2e456b67 \ No newline at end of file +40b241f4a6837c4a8c05f668bc1c205d \ 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 846801db..9af0490a 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 c0bb3dca..89422297 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 c2cb1f31..7c93a86b 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 @@ -a0036a69f82222049931c7262a1f1fa4 \ No newline at end of file +ddf4fd09c07e152259ff4433ca3c9db6 \ 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 53686b7f..ffe06382 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 6864e5b2..929bc35f 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog-members.html @@ -100,8 +100,12 @@ $(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 - name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate + 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 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_1KeyImportDetailDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html index ba06c5ec..e3a2ae04 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
- - - - - - - - - - + + + + + + + + + +
@@ -167,6 +167,16 @@ 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 00c5ca59..ab00bf23 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 e65f8ab6..6d0f7836 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 @@ -e611c0a22de5a4a06b9245d5a9cae62d \ No newline at end of file +55b7362c2a0c2cebfc6d69aae5bcf382 \ 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 df999f68..7841c807 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 045f9285..c73933b6 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 4b32eaec..5bcaf175 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 @@ -f30482668842f32cc93d80dd8b8e7ca4 \ No newline at end of file +c5256b3b2554792025c908f398fd1ff1 \ 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 c1e12865..fc4bfd3e 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 0e86a6da..01db2bbd 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 52e8bf73..47e50a24 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 c79d4de3..86612449 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 @@ -c97770071eb80795f14138e0a6eb8fc8 \ No newline at end of file +bbb168b8d5ff81c3dc9ffb169eeb802e \ 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 8bbc5c50..29d8905f 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 bccf658a..59d05c3b 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 faef7b3c..b42e8efb 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)GpgFrontend::UI::GeneralMainWindowprotected
closeEvent(QCloseEvent *event) overrideGpgFrontend::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 4519d8bf..d4160e8e 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 e052061f..d700a06a 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 @@ -2dd838316f506bb2ff7f1bc9d0e75635 \ No newline at end of file +8c3b0094684823f3450255eaadb03a97 \ 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 9ef22eaf..e379aacd 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 6f4bfa7c..5b3a3ae9 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog-members.html @@ -98,9 +98,13 @@ $(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 f72ebfe3..8465ef21 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,15 +108,16 @@ 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)
 
void closeEvent (QCloseEvent *event) override
 
- 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
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
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
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
@@ -170,6 +171,16 @@ 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 f11e900a..82cb626b 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.map @@ -1,11 +1,12 @@ - - - - - - - - - + + + + + + + + + + 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 21a04fe9..2f76c74d 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 @@ -c1bc977f150a195fe62a4ee975c63286 \ No newline at end of file +b44a6d3adf9fb5b3fd953f8f01671094 \ 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 dd7201fd..53345f3a 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 88876f50..bd91b3af 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 d86be291..6d880f98 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 @@ -888f71a7d244dd0c87f4dde5f343c3c1 \ No newline at end of file +026bb9a6a7e417f6bbd8d5e5e20e77a4 \ 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 68f8ad46..72718328 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 56d58996..d8a71c75 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html @@ -106,11 +106,12 @@ 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 60192947..cc25ab89 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__coll__graph.map @@ -1,8 +1,9 @@ - - - - - + + + + + + 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 ac0de2a4..dc8ecbdd 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 @@ -5014f78c0209e3737c09f97251496700 \ No newline at end of file +871c8a16821cbd4b2236e6be7e4203ea \ 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 5884ef6c..5e577e0a 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 2d5ddeb2..551fcc24 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html @@ -106,11 +106,12 @@ 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 9bb14c35..ee59d89c 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__coll__graph.map @@ -1,8 +1,9 @@ - - - - - + + + + + + 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 78e1fb3a..450a3bac 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 @@ -700cf94a6caefa62c9ee661b056226cd \ No newline at end of file +c305269ce52e014458dd16ffa54e5613 \ 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 d454c2c1..b3f79edb 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 15e0e4fa..99244b06 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html @@ -107,16 +107,17 @@ 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 de8db45e..44c62ca6 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__coll__graph.map @@ -1,12 +1,13 @@ - - - - - - - - - - + + + + + + + + + + + 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 216a3cd9..a90788aa 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 @@ -76f8b7629027d8bc1699580ff9e8f311 \ No newline at end of file +231e0aa7ef95a4c60bf0baa7cf16212e \ 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 9a9a7a8f..0a844a4a 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 b49ee989..8faaf8b4 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html @@ -108,19 +108,20 @@ 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 103cf285..cb93ff73 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__coll__graph.map @@ -1,15 +1,16 @@ - - - - - - - - - - - - - + + + + + + + + + + + + + + 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 aad905bc..39e6bcea 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 @@ -b51e58063731cd0c83fac2e6c7c86f16 \ No newline at end of file +58e82c65d4b548f3bf23befd9da4da28 \ 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 bbb0306a..12cab9d1 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 6f2b1077..60c41440 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog-members.html @@ -104,13 +104,17 @@ $(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 dd8a6067..d4eeea6d 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
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
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
SignalKeyImported() (defined in GpgFrontend::UI::KeyServerImportDialog)GpgFrontend::UI::KeyServerImportDialogsignal
size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
slot_import()GpgFrontend::UI::KeyServerImportDialogprivateslot
@@ -216,6 +216,16 @@ 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 25ff8dcd..c6d4a28b 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 ed7c0bf7..3640211d 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 @@ -378d655200e8781d98a70e1ece1895ee \ No newline at end of file +d65bdd32e60d6c9b155cc1d9efc0341e \ 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 749c1e06..c7724c33 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 523f23f4..febf62cd 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 c5354600..f07a3554 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 @@ -5568c0582f837fa7d37d937008ff2f56 \ No newline at end of file +83b83c5d6364875c4b099e8ff4b7ee60 \ 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 659bca04..8f327df6 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 a1ea802e..79ec20e3 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog-members.html @@ -95,8 +95,12 @@ $(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 - name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate + 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 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 44dea635..d7e2f031 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,17 +108,18 @@ Collaboration diagram for GpgFrontend::UI::KeySetExpireDateDialog:
Collaboration graph
- - - - - - - - - - - + + + + + + + + + + + +
@@ -165,6 +166,16 @@ 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 3256c933..a3ba3ff0 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.map @@ -1,13 +1,14 @@ - - - - - - - - - - - + + + + + + + + + + + + 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 56b7fbab..5f3bda18 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 @@ -37ecf749b704665a11880e479d904b29 \ No newline at end of file +b911703313c2e4b87529ce70956609ed \ 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 869464d0..ab7135d8 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 c710447f..a22d84f3 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 a2085774..df0b0da5 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 @@ -87608c893e026a7ed49055ee65a4fea8 \ No newline at end of file +c17288cb417248d0ae8c2a1d9ad62ae5 \ 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 76f12173..05418365 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 ac513a45..2f167019 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog-members.html @@ -95,9 +95,13 @@ $(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 - 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 + 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 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 2dda05b2..7fd675ed 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,6 +171,16 @@ 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 c790238c..afb342fc 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 80292b45..6ecbf4e0 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 @@ -44186b631d7f8afde83bb891ecd6388a \ No newline at end of file +c5ce6a70c11fda17a8ef978e19ff6060 \ 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 45dc70d2..e2b3d20b 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 805c4528..ddb4f337 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 2f94949a..92e0c8aa 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 @@ -2d8a67a8221e0eb2eb1384d46ce47a10 \ No newline at end of file +8e2d1d0e55c227f3badc7f088fa927cb \ 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 7ae0fb14..8cc22b2c 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 84beae9b..268c0fb6 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog-members.html @@ -93,8 +93,12 @@ $(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 - name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate + 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 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 6036ae5d..15e919fb 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,6 +149,16 @@ 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

@@ -227,7 +237,7 @@ QByteArray m_key_data_ -

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

+

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

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 74ef0e96..265cd32c 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 01f136a6..156a4a97 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 @@ -536919c5e4e874457a13f6a37f29b632 \ No newline at end of file +d65271b0dbfc56b846a5cf651494e3e4 \ 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 3f860281..6cf055a9 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 49660a23..5d3a29e4 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 be761b16..aa0a0109 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 @@ -4254ec6c340a0f7001c19ac2c896a7f3 \ No newline at end of file +796bc31420fe54e26b8d2dde87fe0b34 \ 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 03327a5f..a85df638 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-members.html b/docs/html/classGpgFrontend_1_1UI_1_1MainWindow-members.html index a7dbb31b..7ba9f2f8 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1MainWindow-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1MainWindow-members.html @@ -124,7 +124,7 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1MainWindow.h find_act_GpgFrontend::UI::MainWindowprivate font_size_ (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprotected GeneralMainWindow(std::string name, QWidget *parent=nullptr)GpgFrontend::UI::GeneralMainWindowexplicit - get_restart_needed() constGpgFrontend::UI::MainWindowprivate + get_restart_needed() constGpgFrontend::UI::MainWindowprivate gnupg_act_GpgFrontend::UI::MainWindowprivate help_menu_GpgFrontend::UI::MainWindowprivate icon_size_ (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprotected @@ -196,7 +196,7 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1MainWindow.h SlotFileSign()GpgFrontend::UI::MainWindowslot SlotFileVerify()GpgFrontend::UI::MainWindowslot SlotOpenFile(QString &path)GpgFrontend::UI::MainWindowslot - SlotSetRestartNeeded(bool needed)GpgFrontend::UI::MainWindowslot + SlotSetRestartNeeded(int)GpgFrontend::UI::MainWindowslot SlotSetStatusBarText(const QString &text) (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowslot special_edit_tool_bar_GpgFrontend::UI::MainWindowprivate start_wizard_act_GpgFrontend::UI::MainWindowprivate diff --git a/docs/html/classGpgFrontend_1_1UI_1_1MainWindow.html b/docs/html/classGpgFrontend_1_1UI_1_1MainWindow.html index 61653b89..ee39d89f 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
- - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + +
@@ -161,8 +161,8 @@ void  - - + +
SlotSetStatusBarText<
 
void SlotFileDecryptVerify ()
 
void SlotSetRestartNeeded (bool needed)
 
void SlotSetRestartNeeded (int)
 
@@ -185,8 +185,8 @@ Protected Member Functions - - + +

Signals

void closeEvent (QCloseEvent *event) override
 
- Protected Member Functions inherited from GpgFrontend::UI::GeneralMainWindow
void closeEvent (QCloseEvent *event)
 
void closeEvent (QCloseEvent *event) override
 
@@ -255,10 +255,10 @@ Private Member Functions - - - + + +

Private Slots

 
void save_settings ()
 
-bool get_restart_needed () const
 return true, if restart is needed
 
+int get_restart_needed () const
 return true, if restart is needed
 
@@ -510,9 +510,9 @@ QLabel *  - - + + @@ -1329,7 +1329,7 @@ Qt::ToolButtonStyle  - - + +

Private Attributes

status_bar_icon_<
bool attachment_dock_created_ {}
 
-bool restart_needed_ {}
 
+int restart_needed_ {0}
 
bool prohibit_update_checking_ = false
 
icon_s icon_s - -

◆ SlotSetRestartNeeded

+ +

◆ SlotSetRestartNeeded

@@ -1703,8 +1703,8 @@ Qt::ToolButtonStyle 
icon_s
void GpgFrontend::UI::MainWindow::SlotSetRestartNeeded (bool needed)int mode)
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1MainWindow.js b/docs/html/classGpgFrontend_1_1UI_1_1MainWindow.js index af8962b5..eb128bf5 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1MainWindow.js +++ b/docs/html/classGpgFrontend_1_1UI_1_1MainWindow.js @@ -10,7 +10,7 @@ var classGpgFrontend_1_1UI_1_1MainWindow = [ "create_menus", "classGpgFrontend_1_1UI_1_1MainWindow.html#a9fbd8a2f5b2b5869276db83a4ad20216", null ], [ "create_status_bar", "classGpgFrontend_1_1UI_1_1MainWindow.html#a1ab1f3f57f9969447491e63f54420585", null ], [ "create_tool_bars", "classGpgFrontend_1_1UI_1_1MainWindow.html#aaa1de043b71dbcf0e8d8c265b2a67bd3", null ], - [ "get_restart_needed", "classGpgFrontend_1_1UI_1_1MainWindow.html#a7fdaae01c50d540ecd8672091cdfbcc0", null ], + [ "get_restart_needed", "classGpgFrontend_1_1UI_1_1MainWindow.html#a5e95f62dac9fba1ead6ec69c145923db", null ], [ "Init", "classGpgFrontend_1_1UI_1_1MainWindow.html#a08ba4521f68c488b23b651e201011759", null ], [ "refresh_keys_from_key_server", "classGpgFrontend_1_1UI_1_1MainWindow.html#adfa3b3ae1de1fd04c5ea09e3c97c3e98", null ], [ "restore_settings", "classGpgFrontend_1_1UI_1_1MainWindow.html#a210ab31f4d949a50507d0690c0d1598a", null ], @@ -44,7 +44,7 @@ var classGpgFrontend_1_1UI_1_1MainWindow = [ "SlotFileSign", "classGpgFrontend_1_1UI_1_1MainWindow.html#a8bcdcbe678b8dc0837fffda2ebfe79bf", null ], [ "SlotFileVerify", "classGpgFrontend_1_1UI_1_1MainWindow.html#a9879061cfd321c6757c77f75d46dc7d8", null ], [ "SlotOpenFile", "classGpgFrontend_1_1UI_1_1MainWindow.html#a05b838ad518857fed24864ecce40c203", null ], - [ "SlotSetRestartNeeded", "classGpgFrontend_1_1UI_1_1MainWindow.html#ab1fb798caf43dd067beca5285444d47d", null ], + [ "SlotSetRestartNeeded", "classGpgFrontend_1_1UI_1_1MainWindow.html#a276e843e2f5eda8934fb350fb6f89327", null ], [ "SlotSetStatusBarText", "classGpgFrontend_1_1UI_1_1MainWindow.html#a2518a8a17ebcc217c7cc34c9c3a411f8", null ], [ "upload_key_to_server", "classGpgFrontend_1_1UI_1_1MainWindow.html#ad27dcf3f534f13d8df71df680c4d177c", null ], [ "about_act_", "classGpgFrontend_1_1UI_1_1MainWindow.html#a9dd292f55fba1fe62c83508fef7e43a1", null ], @@ -96,7 +96,7 @@ var classGpgFrontend_1_1UI_1_1MainWindow = [ "quit_act_", "classGpgFrontend_1_1UI_1_1MainWindow.html#abe0683e48485f9fcff622d9519c37ed9", null ], [ "quote_act_", "classGpgFrontend_1_1UI_1_1MainWindow.html#af9640e5732c2595d0c094e7ff7e371ac", null ], [ "redo_act_", "classGpgFrontend_1_1UI_1_1MainWindow.html#abe38474d4e81726147f9df8a9721ce6e", null ], - [ "restart_needed_", "classGpgFrontend_1_1UI_1_1MainWindow.html#a68ab283b12d2a5400dc90555772c44ab", null ], + [ "restart_needed_", "classGpgFrontend_1_1UI_1_1MainWindow.html#a5806e6f5e740e6aa311e0fa5f064302a", null ], [ "save_act_", "classGpgFrontend_1_1UI_1_1MainWindow.html#ab0f148559d830fcf10b5a1937b0a47dc", null ], [ "save_as_act_", "classGpgFrontend_1_1UI_1_1MainWindow.html#a22256763ef83ed35a81e446b553d8112", null ], [ "select_all_act_", "classGpgFrontend_1_1UI_1_1MainWindow.html#ac6a42e6e3af7e76f0bd2ecc62c9520cc", null ], 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 0850c019..7380c150 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 c792ba38..271a8280 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 @@ -ad1c8910cd2d0cd99ac9a3f7e225394f \ No newline at end of file +377d29c8572acee31bde4a93d8af5417 \ 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 c1f63d2c..0a74d667 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 68dec87b..8aa6a848 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 charset_name_< std::string language_name_   -int32_t charset_confidence_ +int32_t charset_confidence_ {}   bool is_crlf_ = false @@ -251,7 +251,7 @@ bool is_crlf_ = false< -

References full_file_path_.

+

References GpgFrontend::UI::SettingsObject::Check(), and 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 f88ee1d1..95f2f5bc 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog-members.html @@ -94,9 +94,13 @@ $(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 - 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 + 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 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 diff --git a/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog.html index b2cabcff..379c8dc9 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
- - - - - + + + + +
@@ -142,6 +142,16 @@ 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 a2adf4d5..2cbab8d1 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 25b951a6..ce412043 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 @@ -2970533a01edf9187ce8fcebc52b280b \ No newline at end of file +70bae2d13c2dd62cb47a13069d43d9ac \ 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 cb45cea6..e7b35858 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 1e5b9f10..5c376d89 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 f546e11a..02cfda70 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 @@ -e65eda0cee5f9600190220947077c599 \ No newline at end of file +869911f60ff3cc28cf90e701bab22ea6 \ 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 209af80b..90d82790 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 d77d09d4..2b9108bd 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog-members.html @@ -93,19 +93,23 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1SettingsDial button_box_ (defined in GpgFrontend::UI::SettingsDialog)GpgFrontend::UI::SettingsDialogprivate general_tab_ (defined in GpgFrontend::UI::SettingsDialog)GpgFrontend::UI::SettingsDialog GeneralDialog(std::string name, QWidget *parent=nullptr)GpgFrontend::UI::GeneralDialogexplicit - get_restart_needed() constGpgFrontend::UI::SettingsDialogprivate + get_restart_needed() constGpgFrontend::UI::SettingsDialogprivate key_server_tab_ (defined in GpgFrontend::UI::SettingsDialog)GpgFrontend::UI::SettingsDialog ListLanguages()GpgFrontend::UI::SettingsDialogstatic - 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 + 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 SettingsDialog(QWidget *parent=nullptr)GpgFrontend::UI::SettingsDialogexplicit - SignalRestartNeeded(bool needed)GpgFrontend::UI::SettingsDialogsignal + SignalRestartNeeded(int)GpgFrontend::UI::SettingsDialogsignal 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 - slot_set_restart_needed(bool needed)GpgFrontend::UI::SettingsDialogprivateslot + slot_set_restart_needed(int)GpgFrontend::UI::SettingsDialogprivateslot SlotAccept() (defined in GpgFrontend::UI::SettingsDialog)GpgFrontend::UI::SettingsDialogslot tab_widget_ (defined in GpgFrontend::UI::SettingsDialog)GpgFrontend::UI::SettingsDialogprivate ~GeneralDialog() override (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialog diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog.html index 02dce97b..cbe88f00 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,34 +111,35 @@ Collaboration diagram for GpgFrontend::UI::SettingsDialog:
Collaboration graph
- - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
@@ -150,8 +151,8 @@ void 
SlotAccept ()
- - + +

Signals

void SignalRestartNeeded (bool needed)
 
void SignalRestartNeeded (int)
 
@@ -184,14 +185,14 @@ Public Attributes

Public Member Functions

- - + +

Private Slots

void slot_set_restart_needed (bool needed)
 
void slot_set_restart_needed (int)
 
- - - + + +

Private Member Functions

bool get_restart_needed () const
 Get the Restart Needed object. More...
 
int get_restart_needed () const
 Get the Restart Needed object. More...
 
@@ -201,9 +202,19 @@ QTabWidget *  - - + + +

Private Attributes

tab_widget_ QDialogButtonBox * button_box_
 
-bool restart_needed_ {}
 
+int restart_needed_ {0}
 
+ + + + + +

+Additional Inherited Members

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

Constructor & Destructor Documentation

@@ -238,13 +249,13 @@ bool restart_needed_ { -

References SignalRestartNeeded(), GpgFrontend::UI::GeneralTab::SignalRestartNeeded(), slot_set_restart_needed(), and GpgFrontend::UI::MainWindow::SlotSetRestartNeeded().

+

References GpgFrontend::UI::GeneralTab::SignalDeepRestartNeeded(), GpgFrontend::UI::GeneralTab::SignalRestartNeeded(), SignalRestartNeeded(), slot_set_restart_needed(), and GpgFrontend::UI::MainWindow::SlotSetRestartNeeded().

Member Function Documentation

- -

◆ get_restart_needed()

+ +

◆ get_restart_needed()

@@ -253,7 +264,7 @@ bool restart_needed_ { - + @@ -303,8 +314,8 @@ false - -

◆ SignalRestartNeeded

+ +

◆ SignalRestartNeeded

@@ -315,8 +326,8 @@ false
- - + +
bool GpgFrontend::UI::SettingsDialog::get_restart_needed int GpgFrontend::UI::SettingsDialog::get_restart_needed ( ) const
void GpgFrontend::UI::SettingsDialog::SignalRestartNeeded (bool needed)int )
@@ -337,8 +348,8 @@ false
- -

◆ slot_set_restart_needed

+ +

◆ slot_set_restart_needed

@@ -349,8 +360,8 @@ false void GpgFrontend::UI::SettingsDialog::slot_set_restart_needed ( - bool  - needed) + int  + mode) diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog.js b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog.js index 703eef32..14b8f59f 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog.js +++ b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog.js @@ -1,16 +1,16 @@ var classGpgFrontend_1_1UI_1_1SettingsDialog = [ [ "SettingsDialog", "classGpgFrontend_1_1UI_1_1SettingsDialog.html#a1b7ddc7861d1b4b9dc3810ed98023ffc", null ], - [ "get_restart_needed", "classGpgFrontend_1_1UI_1_1SettingsDialog.html#a44f48d9578d62b1786cbf10a8f20a518", null ], + [ "get_restart_needed", "classGpgFrontend_1_1UI_1_1SettingsDialog.html#a0d66e360dfbcf79403351459721c3981", null ], [ "ListLanguages", "classGpgFrontend_1_1UI_1_1SettingsDialog.html#acd22ac2fd91704551e5317e2c549ae26", null ], - [ "SignalRestartNeeded", "classGpgFrontend_1_1UI_1_1SettingsDialog.html#a91b25637962923a4bc646e8e1ab5d068", null ], - [ "slot_set_restart_needed", "classGpgFrontend_1_1UI_1_1SettingsDialog.html#a204f8e834337aea7df2779a494dc6216", null ], + [ "SignalRestartNeeded", "classGpgFrontend_1_1UI_1_1SettingsDialog.html#af5ba6646af45d0d1d794bc52ee54b1b9", null ], + [ "slot_set_restart_needed", "classGpgFrontend_1_1UI_1_1SettingsDialog.html#acc6b4386de554fce6fbb60ac6d201952", null ], [ "SlotAccept", "classGpgFrontend_1_1UI_1_1SettingsDialog.html#aa1a54f43f17388a07befb5f15e4906ea", null ], [ "appearance_tab_", "classGpgFrontend_1_1UI_1_1SettingsDialog.html#ac32111f86366175b943f8d96eee975ed", null ], [ "button_box_", "classGpgFrontend_1_1UI_1_1SettingsDialog.html#a4e2ce62b4f14bb77d577efe208655bcb", null ], [ "general_tab_", "classGpgFrontend_1_1UI_1_1SettingsDialog.html#a6532bcf29023e2d18209caae9960fd3f", null ], [ "key_server_tab_", "classGpgFrontend_1_1UI_1_1SettingsDialog.html#aac6feb4c12abb882446756c889d5fa78", null ], [ "network_tab_", "classGpgFrontend_1_1UI_1_1SettingsDialog.html#acfd6e61f789f022790e9a83ce6359fbe", null ], - [ "restart_needed_", "classGpgFrontend_1_1UI_1_1SettingsDialog.html#a0e317d53b055887c86e851d1b10aec6b", null ], + [ "restart_needed_", "classGpgFrontend_1_1UI_1_1SettingsDialog.html#a557219d1b82dd00e8d9f027a7cd561fa", null ], [ "tab_widget_", "classGpgFrontend_1_1UI_1_1SettingsDialog.html#ac43d73ffaadf316118ab0d7b46da4e41", null ] ]; \ No newline at end of file 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 30326ae5..a5f5a301 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.map @@ -1,30 +1,31 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 f36685f5..743211f9 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 @@ -f5b07123ecce859ce25ed23f6771d107 \ No newline at end of file +6e07a064ebcdbf25c754bd3433c3a5fa \ 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 67cc1f01..d89b0e1e 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 02ccdaa1..0e71f192 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 1045bed6..2194d42a 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 @@ -39f5e6218ae3c7f9f8c5a1b229b15b16 \ No newline at end of file +1065b289d536711a5ff4764bfaeffef0 \ 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 00eb74bf..2f4ff6dd 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 706201a5..e45b558d 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::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().

+

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().

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker-members.html b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker-members.html index 0c4e478d..7da6d388 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker-members.html @@ -94,8 +94,12 @@ $(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 - name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate + 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 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 b314b414..b80949cf 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,6 +150,16 @@ 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 227033e4..f6a76c29 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 4ed00e59..56f6442e 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 @@ -71d4873e2e8d1cadc35992cb787e029d \ No newline at end of file +76d93a67b61b213310f5c6bd3da1e244 \ 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 2f4bcd72..33a934b4 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 8a32ece5..09017b32 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 77c6040f..2f473d66 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 @@ -86f11a0450caeb0170b4c4c93bd734a1 \ No newline at end of file +a0fd39801f72025c7b91047f1aa3fec1 \ 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 d08a00fc..5f39057e 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 ded760cd..971511d4 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog-members.html @@ -103,10 +103,14 @@ $(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 - 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 + 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 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 fb7dafd4..175a9570 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,18 +108,19 @@ Collaboration diagram for GpgFrontend::UI::SubkeyGenerateDialog:
Collaboration graph
- - + + - - - - - - - + + + + + + + +
@@ -211,6 +212,16 @@ 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

@@ -287,7 +298,7 @@ QDateTime max_date_time_Create a basic info group box object.

Returns
QGroupBox*
-

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

+

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

Referenced by SubkeyGenerateDialog().

@@ -385,7 +396,7 @@ QDateTime max_date_time_ -

References key_type_combo_box_, and refresh_widgets_state().

+

References 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 bd8ab752..195d15e3 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.map @@ -1,14 +1,15 @@ - - + + - - - - - - - + + + + + + + + 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 f70f1c3c..882cd2a0 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 @@ -e1a77474fedf49c94b376d9ab8a9eaac \ No newline at end of file +1d14b0c5da2ecc14650d44f233ce49af \ 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 db9e44d0..f4e252ff 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 ace98fb9..87e85466 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 654a1e88..f1918935 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 @@ -be2f55a4e0cda81b6aee3bb6497f1534 \ No newline at end of file +ff9f4954b360f3489226ed12a5727f4a \ 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 6332d132..e580dee3 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 eed6de21..46181919 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 e52879c1..1e330c78 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 d2f78a3e..dd304dec 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 @@ -7032c5294abe94b14434475b5e0eba09 \ No newline at end of file +8487150d302572007c32ad7c4dfbea0c \ 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 bd8cd5cf..13e5b4a1 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 d9c9e536..3cd5dd89 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 72f1cec1..4ad086ac 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 82a13857..77d95aee 100644 --- a/docs/html/functions_func_g.html +++ b/docs/html/functions_func_g.html @@ -131,8 +131,8 @@ $(document).ready(function(){initNavTree('functions_func_g.html',''); initResiza : GpgFrontend::GpgKeyGetter
  • get_restart_needed() -: GpgFrontend::UI::MainWindow -, GpgFrontend::UI::SettingsDialog +: GpgFrontend::UI::MainWindow +, GpgFrontend::UI::SettingsDialog
  • get_selected_subkey() : GpgFrontend::UI::KeyPairSubkeyTab @@ -240,7 +240,7 @@ $(document).ready(function(){initNavTree('functions_func_g.html',''); initResiza
  • GetInstance() : GpgFrontend::CoreCommonUtil , GpgFrontend::SingletonFunctionObject< T > -, GpgFrontend::SingletonStorageCollection +, GpgFrontend::SingletonStorageCollection , GpgFrontend::UI::CommonUtils , GpgFrontend::UI::GpgFrontendApplication , GpgFrontend::UI::SignalStation @@ -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 6c1a5275..89a5b459 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 @@ -214,6 +214,9 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza
  • Sign() : GpgFrontend::GpgBasicOperator
  • +
  • SignalDeepRestartNeeded() +: GpgFrontend::UI::GeneralTab +
  • SignalKeyDatabaseRefreshDone() : GpgFrontend::UI::CommonUtils
  • @@ -252,7 +255,7 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza
  • SignalRestartNeeded() : GpgFrontend::UI::GeneralTab , GpgFrontend::UI::KeyserverTab -, GpgFrontend::UI::SettingsDialog +, GpgFrontend::UI::SettingsDialog
  • SignalUIBytesDisplayed() : GpgFrontend::UI::PlainTextEditorPage @@ -393,7 +396,7 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza : GpgFrontend::UI::TextEdit
  • slot_set_restart_needed() -: GpgFrontend::UI::SettingsDialog +: GpgFrontend::UI::SettingsDialog
  • slot_show_key_details() : GpgFrontend::UI::MainWindow @@ -521,7 +524,7 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza : GpgFrontend::UI::TextEdit
  • SlotSetRestartNeeded() -: GpgFrontend::UI::MainWindow +: GpgFrontend::UI::MainWindow
  • SlotShowModified() : GpgFrontend::UI::TextEdit diff --git a/docs/html/functions_g.html b/docs/html/functions_g.html index 06025243..bc2fda4f 100644 --- a/docs/html/functions_g.html +++ b/docs/html/functions_g.html @@ -131,8 +131,8 @@ $(document).ready(function(){initNavTree('functions_g.html',''); initResizable() : GpgFrontend::GpgKeyGetter
  • get_restart_needed() -: GpgFrontend::UI::MainWindow -, GpgFrontend::UI::SettingsDialog +: GpgFrontend::UI::MainWindow +, GpgFrontend::UI::SettingsDialog
  • get_selected_subkey() : GpgFrontend::UI::KeyPairSubkeyTab @@ -240,7 +240,7 @@ $(document).ready(function(){initNavTree('functions_g.html',''); initResizable()
  • GetInstance() : GpgFrontend::CoreCommonUtil , GpgFrontend::SingletonFunctionObject< T > -, GpgFrontend::SingletonStorageCollection +, GpgFrontend::SingletonStorageCollection , GpgFrontend::UI::CommonUtils , GpgFrontend::UI::GpgFrontendApplication , GpgFrontend::UI::SignalStation @@ -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 0afa9812..e9e82029 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 @@ -232,6 +232,9 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable()
  • sign_marked_ : GpgFrontend::UI::PlainTextEditorPage
  • +
  • SignalDeepRestartNeeded() +: GpgFrontend::UI::GeneralTab +
  • SignalKeyDatabaseRefreshDone() : GpgFrontend::UI::CommonUtils
  • @@ -270,7 +273,7 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable()
  • SignalRestartNeeded() : GpgFrontend::UI::GeneralTab , GpgFrontend::UI::KeyserverTab -, GpgFrontend::UI::SettingsDialog +, GpgFrontend::UI::SettingsDialog
  • SignalUIBytesDisplayed() : GpgFrontend::UI::PlainTextEditorPage @@ -411,7 +414,7 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable() : GpgFrontend::UI::TextEdit
  • slot_set_restart_needed() -: GpgFrontend::UI::SettingsDialog +: GpgFrontend::UI::SettingsDialog
  • slot_show_key_details() : GpgFrontend::UI::MainWindow @@ -539,7 +542,7 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable() : GpgFrontend::UI::TextEdit
  • SlotSetRestartNeeded() -: GpgFrontend::UI::MainWindow +: GpgFrontend::UI::MainWindow
  • SlotShowModified() : GpgFrontend::UI::TextEdit diff --git a/docs/html/namespaceGpgFrontend.html b/docs/html/namespaceGpgFrontend.html index e022e178..958e6191 100644 --- a/docs/html/namespaceGpgFrontend.html +++ b/docs/html/namespaceGpgFrontend.html @@ -321,9 +321,15 @@ Functions void 
  • + + + +
    InitLoggingSystem ()
     setup logging system and do proper initialization
     
    +void ResetGpgFrontendCore ()
     
    void init_gpgfrontend_core ()
     
    +void reset_gpgfrontend_core ()
     
    void new_default_settings_channel (int channel)
     
    diff --git a/docs/html/namespaceGpgFrontend.js b/docs/html/namespaceGpgFrontend.js index 80ea6f19..558638ab 100644 --- a/docs/html/namespaceGpgFrontend.js +++ b/docs/html/namespaceGpgFrontend.js @@ -92,6 +92,8 @@ var namespaceGpgFrontend = [ "InitLoggingSystem", "namespaceGpgFrontend.html#aff3e12940da2d43ce7aedeb795643434", null ], [ "new_default_settings_channel", "namespaceGpgFrontend.html#aafb9aa0ba1d03afa09085b1b8136c55f", null ], [ "read_all_data_in_file", "namespaceGpgFrontend.html#a73f3e2217fb1d72dc75f266e11875f6d", null ], + [ "reset_gpgfrontend_core", "namespaceGpgFrontend.html#a3aa61e484a9f2e198119af82662fe68f", null ], + [ "ResetGpgFrontendCore", "namespaceGpgFrontend.html#a1194ef197102807cf31a6e27fdd47e07", null ], [ "text_is_signed", "namespaceGpgFrontend.html#a2a0394c8bdd277f5235f9875a1d69a99", null ], [ "write_buffer_to_file", "namespaceGpgFrontend.html#a5135069571678eda9c1f07d17ed9ac41", null ], [ "GPGFRONTEND_DEFAULT_CHANNEL", "namespaceGpgFrontend.html#a9e0e33d7737ab41ab80422134e659bb3", null ], diff --git a/docs/html/navtreedata.js b/docs/html/navtreedata.js index 8f5b2c97..c7b86971 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#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" +"classGpgFrontend_1_1GpgConstants.html#a36861cbbc85a53f4a42fa07153aa0150", +"classGpgFrontend_1_1GpgTOFUInfo.html#a681046a3916d0d0cdcf0852bfa76fdb0", +"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a5c0bb4c6847846d57ca7524d5f5e4d53", +"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a72b94f3e8d11c44d1b4e3653ab885927", +"classGpgFrontend_1_1UI_1_1MainWindow.html#aea9274389c3b049793fe5aa5a6adf63c", +"functions_func_c.html" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/docs/html/navtreeindex0.js b/docs/html/navtreeindex0.js index ca432bd4..9aa9ffd0 100644 --- a/docs/html/navtreeindex0.js +++ b/docs/html/navtreeindex0.js @@ -138,73 +138,74 @@ 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,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_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_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], @@ -248,6 +249,5 @@ 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#a36861cbbc85a53f4a42fa07153aa0150":[2,0,0,27,7] +"classGpgFrontend_1_1GpgConstants.html#a2c92d804e331fea2a57cba3028aa51ae":[2,0,0,27,0] }; diff --git a/docs/html/navtreeindex1.js b/docs/html/navtreeindex1.js index e4ee608a..54aae7f5 100644 --- a/docs/html/navtreeindex1.js +++ b/docs/html/navtreeindex1.js @@ -1,5 +1,6 @@ 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], @@ -108,13 +109,14 @@ 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,42], +"classGpgFrontend_1_1GpgKey.html#aec4e7e1845073f23cf55dc660c69c44a":[2,0,0,37,43], "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], @@ -247,7 +249,5 @@ 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#a681046a3916d0d0cdcf0852bfa76fdb0":[2,0,0,41,9], -"classGpgFrontend_1_1GpgTOFUInfo.html#a746cbcf731af6b19ade42debbf1e2c8f":[2,0,0,41,11] +"classGpgFrontend_1_1GpgTOFUInfo.html#a4f46d32bc9bf1a1a3bbc32461538a422":[2,0,0,41,4] }; diff --git a/docs/html/navtreeindex2.js b/docs/html/navtreeindex2.js index ebdd24a9..357f2136 100644 --- a/docs/html/navtreeindex2.js +++ b/docs/html/navtreeindex2.js @@ -1,5 +1,7 @@ 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], @@ -75,9 +77,9 @@ var NAVTREEINDEX2 = "classGpgFrontend_1_1SingletonStorage.html#ab0097bb648b2303d68a975c7cbea5a52":[2,0,0,31,3], "classGpgFrontend_1_1SingletonStorage.html#adb22cc80a1ab040b6e4bce962625edfd":[2,0,0,31,2], "classGpgFrontend_1_1SingletonStorageCollection.html":[2,0,0,32], -"classGpgFrontend_1_1SingletonStorageCollection.html#a16b4729ca79dcdccc794df70aa2a5aaf":[2,0,0,32,0], "classGpgFrontend_1_1SingletonStorageCollection.html#a6f933390c54b7f55d5ffb4624074725f":[2,0,0,32,1], "classGpgFrontend_1_1SingletonStorageCollection.html#ab648cb257beb2475eb5fca6453c331f9":[2,0,0,32,3], +"classGpgFrontend_1_1SingletonStorageCollection.html#ac56d19e0d4b99e7b8a86a017721f3db1":[2,0,0,32,0], "classGpgFrontend_1_1SingletonStorageCollection.html#ae28930630a2dce804cff5589155aadfc":[2,0,0,32,2], "classGpgFrontend_1_1Thread_1_1CtxCheckTask.html":[2,0,0,0,0], "classGpgFrontend_1_1Thread_1_1CtxCheckTask.html#a1c94cb1290df40a9043fe2d1a9a231f2":[2,0,0,0,0,1], @@ -147,20 +149,13 @@ 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,10], -"classGpgFrontend_1_1UI_1_1AppearanceTab.html#aaa3ec787dcd8fae1a14c2067deb9dd03":[2,0,0,1,24,6], +"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#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], @@ -242,12 +237,17 @@ 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#a34d01f247eee92017a2eccf697cda080":[2,0,0,1,2,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#a42043895f4b33acd1531c428ae4deaa8":[2,0,0,1,2,1], -"classGpgFrontend_1_1UI_1_1GeneralDialog.html#a940a6ea31dff4db83f9f08d38e843a2b":[2,0,0,1,2,3], +"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#ac9de4c49668ffaeb6916c64f878a202c":[2,0,0,1,2,0], -"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] +"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] }; diff --git a/docs/html/navtreeindex3.js b/docs/html/navtreeindex3.js index 4600e94d..38b6fb71 100644 --- a/docs/html/navtreeindex3.js +++ b/docs/html/navtreeindex3.js @@ -1,6 +1,5 @@ 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], @@ -9,18 +8,22 @@ 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], +"classGpgFrontend_1_1UI_1_1GeneralTab.html#a3b97ed699cbc2f34b9e887cd2c83b645":[2,0,0,1,26,7], "classGpgFrontend_1_1UI_1_1GeneralTab.html#a4523f55e98cee600b2fd47b1750b4d24":[2,0,0,1,26,1], "classGpgFrontend_1_1UI_1_1GeneralTab.html#a7b26d8a088ce8f50b1fd0e719e38534b":[2,0,0,1,26,2], -"classGpgFrontend_1_1UI_1_1GeneralTab.html#aa183fdff30ef4581a05ff5c0fde44d8c":[2,0,0,1,26,4], -"classGpgFrontend_1_1UI_1_1GeneralTab.html#aa88ccbda61728be6de0aa2d9b92e0b69":[2,0,0,1,26,3], -"classGpgFrontend_1_1UI_1_1GeneralTab.html#abaf12014356a2fa20f66945004abb7c2":[2,0,0,1,26,5], +"classGpgFrontend_1_1UI_1_1GeneralTab.html#aa183fdff30ef4581a05ff5c0fde44d8c":[2,0,0,1,26,5], +"classGpgFrontend_1_1UI_1_1GeneralTab.html#aa88ccbda61728be6de0aa2d9b92e0b69":[2,0,0,1,26,4], +"classGpgFrontend_1_1UI_1_1GeneralTab.html#abaf12014356a2fa20f66945004abb7c2":[2,0,0,1,26,6], +"classGpgFrontend_1_1UI_1_1GeneralTab.html#afc107d56f13000aa28436a5e26a0876b":[2,0,0,1,26,3], "classGpgFrontend_1_1UI_1_1GnupgTab.html":[2,0,0,1,7], +"classGpgFrontend_1_1UI_1_1GnupgTab.html#a31c103293e8cb053a829466cc77a0840":[2,0,0,1,7,2], +"classGpgFrontend_1_1UI_1_1GnupgTab.html#aa721fabc3ca35bb6b41e351732fe1081":[2,0,0,1,7,1], "classGpgFrontend_1_1UI_1_1GnupgTab.html#ab9d9e8af4494659f13b87804e7318a79":[2,0,0,1,7,0], +"classGpgFrontend_1_1UI_1_1GnupgTab.html#afd915ad09684b960ec63e28753f833e9":[2,0,0,1,7,3], "classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html":[2,0,0,1,36], "classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a32f0e7dda69f7b1e3cc869340736c590":[2,0,0,1,36,1], "classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a6f8ab335d89948c48cd634ab20ff9aa0":[2,0,0,1,36,3], @@ -246,8 +249,5 @@ var NAVTREEINDEX3 = "classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a55b540fb99cbe55631af12c0c6156b20":[2,0,0,1,18,13], "classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a63e054f4a2d8e12c70d25d39bb55f876":[2,0,0,1,18,20], "classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a698f8af1dc074ca7433f9ee038ab4150":[2,0,0,1,18,18], -"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#a6a64f9528cfd743d724947b27eefa0a5":[2,0,0,1,18,21] }; diff --git a/docs/html/navtreeindex4.js b/docs/html/navtreeindex4.js index 08190f84..ccab0cf3 100644 --- a/docs/html/navtreeindex4.js +++ b/docs/html/navtreeindex4.js @@ -1,5 +1,8 @@ var NAVTREEINDEX4 = { +"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#aab240016c10ecf575965108751fc0ff8":[2,0,0,1,18,15], "classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#abbb66d84191a714d24f384125a25b328":[2,0,0,1,18,23], @@ -170,6 +173,7 @@ var NAVTREEINDEX4 = "classGpgFrontend_1_1UI_1_1MainWindow.html#a24e58eb0b84709ea665db95e54da865b":[2,0,0,1,39,92], "classGpgFrontend_1_1UI_1_1MainWindow.html#a2518a8a17ebcc217c7cc34c9c3a411f8":[2,0,0,1,39,45], "classGpgFrontend_1_1UI_1_1MainWindow.html#a25a2e4017d77cffc8362bde9606fad30":[2,0,0,1,39,40], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a276e843e2f5eda8934fb350fb6f89327":[2,0,0,1,39,44], "classGpgFrontend_1_1UI_1_1MainWindow.html#a29a811d4d440c79c1bd2cc2bb40cdf7e":[2,0,0,1,39,29], "classGpgFrontend_1_1UI_1_1MainWindow.html#a2c2f6c021219564846f1624f6bb5b9a2":[2,0,0,1,39,60], "classGpgFrontend_1_1UI_1_1MainWindow.html#a2fb0dc34218da4963e3c37fd60b334a7":[2,0,0,1,39,80], @@ -185,10 +189,11 @@ var NAVTREEINDEX4 = "classGpgFrontend_1_1UI_1_1MainWindow.html#a48368c77af7b1f4cb632870b8d914a28":[2,0,0,1,39,36], "classGpgFrontend_1_1UI_1_1MainWindow.html#a4a1edafb8c67b181ff3c29394147571d":[2,0,0,1,39,87], "classGpgFrontend_1_1UI_1_1MainWindow.html#a55926649e28a96318b89afba01b966bf":[2,0,0,1,39,28], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a5806e6f5e740e6aa311e0fa5f064302a":[2,0,0,1,39,96], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a5e95f62dac9fba1ead6ec69c145923db":[2,0,0,1,39,10], "classGpgFrontend_1_1UI_1_1MainWindow.html#a6154f5dbdc9cebc0644e5d1e25895df8":[2,0,0,1,39,71], "classGpgFrontend_1_1UI_1_1MainWindow.html#a62ea61c38e758022ba655c6faf54322b":[2,0,0,1,39,90], "classGpgFrontend_1_1UI_1_1MainWindow.html#a672f4ef07be6ad645613ecd49399700d":[2,0,0,1,39,53], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a68ab283b12d2a5400dc90555772c44ab":[2,0,0,1,39,96], "classGpgFrontend_1_1UI_1_1MainWindow.html#a6c64a01f3b1d5ff7b42da6e29a4d2c0c":[2,0,0,1,39,1], "classGpgFrontend_1_1UI_1_1MainWindow.html#a6d681a306c137dc107088d60b09a925f":[2,0,0,1,39,65], "classGpgFrontend_1_1UI_1_1MainWindow.html#a70397629ae3ffe039051b80a099c7979":[2,0,0,1,39,113], @@ -200,7 +205,6 @@ var NAVTREEINDEX4 = "classGpgFrontend_1_1UI_1_1MainWindow.html#a7a4b6490038470a8849231e48282da98":[2,0,0,1,39,14], "classGpgFrontend_1_1UI_1_1MainWindow.html#a7aa41c90105fd4c2931895d8dfb5ec45":[2,0,0,1,39,64], "classGpgFrontend_1_1UI_1_1MainWindow.html#a7f5a88922d06bee977335fb4b5f1d86d":[2,0,0,1,39,21], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a7fdaae01c50d540ecd8672091cdfbcc0":[2,0,0,1,39,10], "classGpgFrontend_1_1UI_1_1MainWindow.html#a821247d738457c4ee046162aad6728f9":[2,0,0,1,39,17], "classGpgFrontend_1_1UI_1_1MainWindow.html#a8538940a9a5dea7ddf53c89acdeb83be":[2,0,0,1,39,74], "classGpgFrontend_1_1UI_1_1MainWindow.html#a85a98a1ec5418c110201980fa013d1fd":[2,0,0,1,39,15], @@ -227,7 +231,6 @@ var NAVTREEINDEX4 = "classGpgFrontend_1_1UI_1_1MainWindow.html#aad0c8d50952f4592eac7b7221b5d1ec5":[2,0,0,1,39,51], "classGpgFrontend_1_1UI_1_1MainWindow.html#ab0019ca316b971c594c2f20f418256a6":[2,0,0,1,39,103], "classGpgFrontend_1_1UI_1_1MainWindow.html#ab0f148559d830fcf10b5a1937b0a47dc":[2,0,0,1,39,97], -"classGpgFrontend_1_1UI_1_1MainWindow.html#ab1fb798caf43dd067beca5285444d47d":[2,0,0,1,39,44], "classGpgFrontend_1_1UI_1_1MainWindow.html#ab23c7e67dd1f5295b3c49ad79dfd5919":[2,0,0,1,39,38], "classGpgFrontend_1_1UI_1_1MainWindow.html#ab531823acdbfb117c82a9906ce2107b9":[2,0,0,1,39,66], "classGpgFrontend_1_1UI_1_1MainWindow.html#ab67486a71126073e7c39ca12603198f4":[2,0,0,1,39,49], @@ -246,8 +249,5 @@ var NAVTREEINDEX4 = "classGpgFrontend_1_1UI_1_1MainWindow.html#ae11d01211c2914ecc148e13dd7de506e":[2,0,0,1,39,25], "classGpgFrontend_1_1UI_1_1MainWindow.html#ae2587b35d14bc64bc13d4e8ca1dcd502":[2,0,0,1,39,104], "classGpgFrontend_1_1UI_1_1MainWindow.html#ae28089efbd236708601470f30f26faaa":[2,0,0,1,39,27], -"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#ae2d89e2cc6c99ff0e16b396d2381f904":[2,0,0,1,39,22] }; diff --git a/docs/html/navtreeindex5.js b/docs/html/navtreeindex5.js index f451adb1..a352262d 100644 --- a/docs/html/navtreeindex5.js +++ b/docs/html/navtreeindex5.js @@ -1,5 +1,8 @@ var NAVTREEINDEX5 = { +"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#af77f66b6b869f6ddb3d2caa3bc40bb09":[2,0,0,1,39,57], "classGpgFrontend_1_1UI_1_1MainWindow.html#af93d72eaf58326f1f9e926752c6b1fc6":[2,0,0,1,39,20], @@ -58,19 +61,19 @@ var NAVTREEINDEX5 = "classGpgFrontend_1_1UI_1_1QuitDialog.html#ac491016e0d93183346b79421528ba5c8":[2,0,0,1,22,5], "classGpgFrontend_1_1UI_1_1QuitDialog.html#aec364c38056b6d92c172f8cdfb5f8e82":[2,0,0,1,22,1], "classGpgFrontend_1_1UI_1_1SettingsDialog.html":[2,0,0,1,25], -"classGpgFrontend_1_1UI_1_1SettingsDialog.html#a0e317d53b055887c86e851d1b10aec6b":[2,0,0,1,25,11], +"classGpgFrontend_1_1UI_1_1SettingsDialog.html#a0d66e360dfbcf79403351459721c3981":[2,0,0,1,25,1], "classGpgFrontend_1_1UI_1_1SettingsDialog.html#a1b7ddc7861d1b4b9dc3810ed98023ffc":[2,0,0,1,25,0], -"classGpgFrontend_1_1UI_1_1SettingsDialog.html#a204f8e834337aea7df2779a494dc6216":[2,0,0,1,25,4], -"classGpgFrontend_1_1UI_1_1SettingsDialog.html#a44f48d9578d62b1786cbf10a8f20a518":[2,0,0,1,25,1], "classGpgFrontend_1_1UI_1_1SettingsDialog.html#a4e2ce62b4f14bb77d577efe208655bcb":[2,0,0,1,25,7], +"classGpgFrontend_1_1UI_1_1SettingsDialog.html#a557219d1b82dd00e8d9f027a7cd561fa":[2,0,0,1,25,11], "classGpgFrontend_1_1UI_1_1SettingsDialog.html#a6532bcf29023e2d18209caae9960fd3f":[2,0,0,1,25,8], -"classGpgFrontend_1_1UI_1_1SettingsDialog.html#a91b25637962923a4bc646e8e1ab5d068":[2,0,0,1,25,3], "classGpgFrontend_1_1UI_1_1SettingsDialog.html#aa1a54f43f17388a07befb5f15e4906ea":[2,0,0,1,25,5], "classGpgFrontend_1_1UI_1_1SettingsDialog.html#aac6feb4c12abb882446756c889d5fa78":[2,0,0,1,25,9], "classGpgFrontend_1_1UI_1_1SettingsDialog.html#ac32111f86366175b943f8d96eee975ed":[2,0,0,1,25,6], "classGpgFrontend_1_1UI_1_1SettingsDialog.html#ac43d73ffaadf316118ab0d7b46da4e41":[2,0,0,1,25,12], +"classGpgFrontend_1_1UI_1_1SettingsDialog.html#acc6b4386de554fce6fbb60ac6d201952":[2,0,0,1,25,4], "classGpgFrontend_1_1UI_1_1SettingsDialog.html#acd22ac2fd91704551e5317e2c549ae26":[2,0,0,1,25,2], "classGpgFrontend_1_1UI_1_1SettingsDialog.html#acfd6e61f789f022790e9a83ce6359fbe":[2,0,0,1,25,10], +"classGpgFrontend_1_1UI_1_1SettingsDialog.html#af5ba6646af45d0d1d794bc52ee54b1b9":[2,0,0,1,25,3], "classGpgFrontend_1_1UI_1_1SettingsObject.html":[2,0,0,1,41], "classGpgFrontend_1_1UI_1_1SettingsObject.html#a5ddcc2e0bc6d4c2f88e6e00371d4792e":[2,0,0,1,41,4], "classGpgFrontend_1_1UI_1_1SettingsObject.html#a69e9027002113bf9ecc16d7836e42c63":[2,0,0,1,41,5], @@ -237,8 +240,8 @@ var NAVTREEINDEX5 = "dir_fc6c58bf49530122ab17df13a9869378.html":[3,0,0,0,1,2], "dir_fd71accbf528c1576ca21e7ec5716833.html":[3,0,0,0,3], "files.html":[3,0], -"functions.html":[2,3,0,0], "functions.html":[2,3,0], +"functions.html":[2,3,0,0], "functions_a.html":[2,3,0,1], "functions_b.html":[2,3,0,2], "functions_c.html":[2,3,0,3], @@ -246,8 +249,5 @@ var NAVTREEINDEX5 = "functions_e.html":[2,3,0,5], "functions_f.html":[2,3,0,6], "functions_func.html":[2,3,1,0], -"functions_func.html":[2,3,1], -"functions_func_c.html":[2,3,1,1], -"functions_func_d.html":[2,3,1,2], -"functions_func_e.html":[2,3,1,3] +"functions_func.html":[2,3,1] }; diff --git a/docs/html/navtreeindex6.js b/docs/html/navtreeindex6.js index 8166e98b..36e2011b 100644 --- a/docs/html/navtreeindex6.js +++ b/docs/html/navtreeindex6.js @@ -1,5 +1,8 @@ var NAVTREEINDEX6 = { +"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_g.html":[2,3,1,5], "functions_func_h.html":[2,3,1,6], @@ -38,19 +41,21 @@ var NAVTREEINDEX6 = "functions_z.html":[2,3,0,23], "functions_~.html":[2,3,0,24], "hierarchy.html":[2,2], -"index.html":[0], "index.html":[], +"index.html":[0], "namespaceGpgFrontend.html":[1,0,0], "namespaceGpgFrontend.html#a02576f9b3647baec8e7f6dacf9411b46":[1,0,0,51], -"namespaceGpgFrontend.html#a17ea01393928cb8638564cdd787151e4":[1,0,0,91], +"namespaceGpgFrontend.html#a1194ef197102807cf31a6e27fdd47e07":[1,0,0,89], +"namespaceGpgFrontend.html#a17ea01393928cb8638564cdd787151e4":[1,0,0,93], "namespaceGpgFrontend.html#a1872f20a465ea6a482065996abab2c95":[1,0,0,62], "namespaceGpgFrontend.html#a2470eb154743191c3454203f23d3a2f8":[1,0,0,50], -"namespaceGpgFrontend.html#a2a0394c8bdd277f5235f9875a1d69a99":[1,0,0,88], +"namespaceGpgFrontend.html#a2a0394c8bdd277f5235f9875a1d69a99":[1,0,0,90], "namespaceGpgFrontend.html#a2a6566f59b4be29e453a1edd93f6a337":[1,0,0,74], +"namespaceGpgFrontend.html#a3aa61e484a9f2e198119af82662fe68f":[1,0,0,88], "namespaceGpgFrontend.html#a3c488625b949d2ac26315996b4b881e9":[1,0,0,55], "namespaceGpgFrontend.html#a3d735ed2f15dbf638cfa508daba16e5b":[1,0,0,66], "namespaceGpgFrontend.html#a4edac6df92596ba8eea3a8cdc1173684":[1,0,0,81], -"namespaceGpgFrontend.html#a5135069571678eda9c1f07d17ed9ac41":[1,0,0,89], +"namespaceGpgFrontend.html#a5135069571678eda9c1f07d17ed9ac41":[1,0,0,91], "namespaceGpgFrontend.html#a54baa8d3ea3843c907a7644a85cb9699":[1,0,0,72], "namespaceGpgFrontend.html#a5a2f5fc1ad3de55e41a1b7a388821328":[1,0,0,83], "namespaceGpgFrontend.html#a5c172444c7aacf11b2f8b2ebe72fb053":[1,0,0,84], @@ -69,7 +74,7 @@ var NAVTREEINDEX6 = "namespaceGpgFrontend.html#a93c0ac9e329baa602e0bfdee7ea1273f":[1,0,0,60], "namespaceGpgFrontend.html#a953722e5ef4bbc71b42a4f821f00b737":[1,0,0,71], "namespaceGpgFrontend.html#a99b4f5a3b9f7a379a79c37ba8fff93af":[1,0,0,53], -"namespaceGpgFrontend.html#a9e0e33d7737ab41ab80422134e659bb3":[1,0,0,90], +"namespaceGpgFrontend.html#a9e0e33d7737ab41ab80422134e659bb3":[1,0,0,92], "namespaceGpgFrontend.html#aa8f86425050122fc627c1a793c2d1f80":[1,0,0,68], "namespaceGpgFrontend.html#aaf7ddbd50cd4f16b7d2a997c03b20933":[1,0,0,73], "namespaceGpgFrontend.html#aafb9aa0ba1d03afa09085b1b8136c55f":[1,0,0,86], diff --git a/docs/html/search/all_12.js b/docs/html/search/all_12.js index 29733348..33a4dab7 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#a378ea10385ab401bea45a7edb3df122d',1,'GpgFrontend::GenKeyInfo']]], + ['setalgo_475',['SetAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#adcd9c4f3e75f989810988e0bc81d401f',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']]], @@ -48,136 +48,137 @@ var searchData= ['sign_510',['Sign',['../classGpgFrontend_1_1GpgBasicOperator.html#a988d7e65e85fc7a578f26300332a65d3',1,'GpgFrontend::GpgBasicOperator']]], ['sign_5fact_5f_511',['sign_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0cded37ef6e07856bbe439b0e90db839',1,'GpgFrontend::UI::MainWindow']]], ['sign_5fmarked_5f_512',['sign_marked_',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a4f94e9ef7889a169bda5a47b7f657358',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['signalkeydatabaserefreshdone_513',['SignalKeyDatabaseRefreshDone',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a1abc83bba95579aa94d0870181991a28',1,'GpgFrontend::UI::CommonUtils']]], - ['signalkeyserverimportresult_514',['SignalKeyServerImportResult',['../classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a6b2c07d193fb28a57b1738fa493b2b3f',1,'GpgFrontend::UI::KeyServerImportTask']]], - ['signalkeyserverlisttestresult_515',['SignalKeyServerListTestResult',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a20f0147d670be7ab5c9d3051a900f508',1,'GpgFrontend::UI::ListedKeyServerTestTask']]], - ['signalkeyserversearchresult_516',['SignalKeyServerSearchResult',['../classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#ae478130476c95a8b220c3b0e6a7b88b4',1,'GpgFrontend::UI::KeyServerSearchTask']]], - ['signalopenhelp_517',['SignalOpenHelp',['../classGpgFrontend_1_1UI_1_1Wizard.html#a8b5f5ddb1e6470cbf6c87cc6400031fb',1,'GpgFrontend::UI::Wizard']]], - ['signalpathchanged_518',['SignalPathChanged',['../classGpgFrontend_1_1UI_1_1FilePage.html#aec462d16a2097024a4ced24012b905a7',1,'GpgFrontend::UI::FilePage']]], - ['signalproxyconnectiontestresult_519',['SignalProxyConnectionTestResult',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.html#aedafa7b22e024be537658fd8096e5f6f',1,'GpgFrontend::UI::ProxyConnectionTestThread']]], - ['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_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']]], - ['signaturedetailsdialog_528',['SignatureDetailsDialog',['../classSignatureDetailsDialog.html',1,'']]], - ['signerspicker_529',['SignersPicker',['../classGpgFrontend_1_1UI_1_1SignersPicker.html',1,'GpgFrontend::UI::SignersPicker'],['../classGpgFrontend_1_1UI_1_1SignersPicker.html#a02c3ba737702894fc6d4ac1a1c543ccb',1,'GpgFrontend::UI::SignersPicker::SignersPicker()']]], - ['signfile_530',['SignFile',['../classGpgFrontend_1_1GpgFileOpera.html#a350df1c07c054625c4755a78e6ca5ca8',1,'GpgFrontend::GpgFileOpera']]], - ['signkey_531',['SignKey',['../classGpgFrontend_1_1GpgKeyManager.html#a12138780c53add7589f78f056019e5e0',1,'GpgFrontend::GpgKeyManager']]], - ['singletonfunctionobject_532',['SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend::SingletonFunctionObject< T >'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a4aa7f1eb1d3281bb1fccfcbb1b416251',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(int channel)'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a02e76b42ab51d77588b01c7508bed258',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject()=default'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a7090636bed6f4bad5b99f28f6872c645',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(const T &)=delete'],['../classGpgFrontend_1_1SingletonFunctionObject.html#aabc5fe8e5a372ac276a265286457cb9a',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(T &&)=delete'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a194e49b07d46345bdad386505d743a61',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(const SingletonFunctionObject< T > &)=delete']]], - ['singletonfunctionobject_3c_20dataobjectoperator_20_3e_533',['SingletonFunctionObject< DataObjectOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20globalsettingstation_20_3e_534',['SingletonFunctionObject< GlobalSettingStation >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgbasicoperator_20_3e_535',['SingletonFunctionObject< GpgBasicOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgcommandexecutor_20_3e_536',['SingletonFunctionObject< GpgCommandExecutor >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgcontext_20_3e_537',['SingletonFunctionObject< GpgContext >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgfileopera_20_3e_538',['SingletonFunctionObject< GpgFileOpera >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgkeygetter_20_3e_539',['SingletonFunctionObject< GpgKeyGetter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgkeyimportexporter_20_3e_540',['SingletonFunctionObject< GpgKeyImportExporter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgkeymanager_20_3e_541',['SingletonFunctionObject< GpgKeyManager >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgkeyopera_20_3e_542',['SingletonFunctionObject< GpgKeyOpera >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpguidoperator_20_3e_543',['SingletonFunctionObject< GpgUIDOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20passphrasegenerator_20_3e_544',['SingletonFunctionObject< PassphraseGenerator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20taskrunnergetter_20_3e_545',['SingletonFunctionObject< TaskRunnerGetter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonstorage_546',['SingletonStorage',['../classGpgFrontend_1_1SingletonStorage.html',1,'GpgFrontend']]], - ['singletonstoragecollection_547',['SingletonStorageCollection',['../classGpgFrontend_1_1SingletonStorageCollection.html',1,'GpgFrontend']]], - ['slot_5factivated_5fkey_5ftype_548',['slot_activated_key_type',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ab8f04b046abb56d53bdbe67838b84fdc',1,'GpgFrontend::UI::KeyGenDialog::slot_activated_key_type()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a52a0aadc9b1e80bdcaaf1ad9d8997957',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_activated_key_type()']]], - ['slot_5fadd_5fpgp_5fheader_549',['slot_add_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a821247d738457c4ee046162aad6728f9',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fadd_5fuid_5fresult_550',['slot_add_uid_result',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a16f1ae88d6a417b614cfc6ae1852187c',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['slot_5fappend_5fselected_5fkeys_551',['slot_append_selected_keys',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a76bf3784d751db78ed13bd9962e14472',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fauthentication_5fbox_5fchanged_552',['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_553',['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_554',['slot_clean_double_line_breaks',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aea9274389c3b049793fe5aa5a6adf63c',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fcompress_5ffiles_555',['slot_compress_files',['../classGpgFrontend_1_1UI_1_1FilePage.html#a250b1950f874c1d11549cd5c0ea9693f',1,'GpgFrontend::UI::FilePage']]], - ['slot_5fcopy_5ffingerprint_556',['slot_copy_fingerprint',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#af8b600fbd7cd0fbb5b6183403bf870b2',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['slot_5fcopy_5fmail_5faddress_5fto_5fclipboard_557',['slot_copy_mail_address_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af93d72eaf58326f1f9e926752c6b1fc6',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fcreate_5fnew_5fuid_558',['slot_create_new_uid',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a4e115ce46a85c2f9e4e0e2427839fc7c',1,'GpgFrontend::UI::KeyNewUIDDialog']]], - ['slot_5fcut_5fpgp_5fheader_559',['slot_cut_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7f5a88922d06bee977335fb4b5f1d86d',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fdecrypt_560',['slot_decrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae2d89e2cc6c99ff0e16b396d2381f904',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fdecrypt_5fverify_561',['slot_decrypt_verify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1d61ea803e6c825bd54f42ba9ae85919',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fdisable_5ftab_5factions_562',['slot_disable_tab_actions',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a24a0b0d974fc5f8fdda60c128a82d957',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fdouble_5fclicked_563',['slot_double_clicked',['../classGpgFrontend_1_1UI_1_1KeyList.html#a69e54f06d546d516a0dcdf1055b8028e',1,'GpgFrontend::UI::KeyList']]], - ['slot_5fencrypt_564',['slot_encrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae11d01211c2914ecc148e13dd7de506e',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fencrypt_5fsign_565',['slot_encrypt_sign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a304efe91afa31b32725caa00c27475a4',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fencryption_5fbox_5fchanged_566',['slot_encryption_box_changed',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ae611933ccd6fd67e65a2cf1ff09b5e8f',1,'GpgFrontend::UI::KeyGenDialog::slot_encryption_box_changed()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a1f4dda7500b3de7476e5d1e7bd5b550b',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_encryption_box_changed()']]], - ['slot_5fexpire_5fbox_5fchanged_567',['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_568',['slot_export_private_key',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a384f4250e58110da58c0e6996b42a8ab',1,'GpgFrontend::UI::KeyPairOperaTab']]], - ['slot_5ffile_5ftree_5fview_5fitem_5fclicked_569',['slot_file_tree_view_item_clicked',['../classGpgFrontend_1_1UI_1_1FilePage.html#a676917817d6f519e043742d1d87f97f1',1,'GpgFrontend::UI::FilePage']]], - ['slot_5ffile_5ftree_5fview_5fitem_5fdouble_5fclicked_570',['slot_file_tree_view_item_double_clicked',['../classGpgFrontend_1_1UI_1_1FilePage.html#ad3c54320bdafbbb2c06a20d6c7dea9d6',1,'GpgFrontend::UI::FilePage']]], - ['slot_5ffind_571',['slot_find',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae28089efbd236708601470f30f26faaa',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fformat_5fgpg_5fheader_572',['slot_format_gpg_header',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a45267bcfc8fc83851894061c0fe2a9c2',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['slot_5fimport_573',['slot_import',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ac9c14bbc97945c94fd02c8e067ccab06',1,'GpgFrontend::UI::KeyServerImportDialog']]], - ['slot_5fimport_5ffinished_574',['slot_import_finished',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a6f1c5238da7cd6f117bed8018469b37a',1,'GpgFrontend::UI::KeyServerImportDialog']]], - ['slot_5fimport_5fkey_5ffrom_5fedit_575',['slot_import_key_from_edit',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a55926649e28a96318b89afba01b966bf',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5finsert_5ftext_576',['slot_insert_text',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a184985104f23da8fdf2b9aaf7b27405b',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['slot_5fjump_5fpage_577',['slot_jump_page',['../classGpgFrontend_1_1UI_1_1ChoosePage.html#af0d7890fe65385b7785719b9cff0718b',1,'GpgFrontend::UI::ChoosePage']]], - ['slot_5fkey_5fgen_5faccept_578',['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_579',['slot_non_expired_checked',['../classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#adde2b33bd17f521f0630702987b1d274',1,'GpgFrontend::UI::KeySetExpireDateDialog']]], - ['slot_5fopen_5ffile_5ftab_580',['slot_open_file_tab',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a29a811d4d440c79c1bd2cc2bb40cdf7e',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fopen_5fkey_5fmanagement_581',['slot_open_key_management',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a16ddebec90a4bd0d13baa9d972c3445f',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fopen_5fsettings_5fdialog_582',['slot_open_settings_dialog',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a874b505fbc1046f579a736683f5a7f65',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fopen_5furl_583',['slot_open_url',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a51ff99077a75507365307f5dd783df99',1,'GpgFrontend::UI::HelpPage']]], - ['slot_5fprocess_5fnetwork_5freply_584',['slot_process_network_reply',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#af9350e0a8d5993e5be0a5478fcb161be',1,'GpgFrontend::UI::ListedKeyServerTestTask']]], - ['slot_5fremove_5ftab_585',['slot_remove_tab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a12f65fbc4984c266a5df4505ecde7c42',1,'GpgFrontend::UI::TextEdit']]], - ['slot_5fset_5frestart_5fneeded_586',['slot_set_restart_needed',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#a204f8e834337aea7df2779a494dc6216',1,'GpgFrontend::UI::SettingsDialog']]], - ['slot_5fshow_5fkey_5fdetails_587',['slot_show_key_details',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a033d448541b44fa48b76dec828a4eb0e',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fshow_5fversion_5fstatus_588',['slot_show_version_status',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a1003bd969ecbc5deba940e39436968f4',1,'GpgFrontend::UI::UpdateTab']]], - ['slot_5fsign_589',['slot_sign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3f3d03b0ec22385bee559fbd2aeb881b',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fsign_5fkey_590',['slot_sign_key',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#a82f6bf641ff3b64341a0bdcf76571c43',1,'GpgFrontend::UI::KeyUIDSignDialog']]], - ['slot_5fsigning_5fbox_5fchanged_591',['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_592',['slot_start_wizard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aabf3ddf6b624790369f164b4889c95be',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fupdate_5fkey_5fstatus_593',['slot_update_key_status',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#ab4ac26378d6a07757720163eb4b1cb0e',1,'GpgFrontend::UI::CommonUtils']]], - ['slot_5fupload_5fkey_5fto_5fserver_594',['slot_upload_key_to_server',['../classGpgFrontend_1_1UI_1_1KeyUploadDialog.html#a0f724649ca953b888f07d69c97fe45b6',1,'GpgFrontend::UI::KeyUploadDialog']]], - ['slot_5fverify_595',['slot_verify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa9c986dd95984811479ea93230c74b5d',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fversion_5fupgrade_596',['slot_version_upgrade',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a48368c77af7b1f4cb632870b8d914a28',1,'GpgFrontend::UI::MainWindow']]], - ['slotclosetab_597',['SlotCloseTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa21659aa7acba98dfd6286d69e00ab9b',1,'GpgFrontend::UI::TextEdit']]], - ['slotcopy_598',['SlotCopy',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3599bd01636a873cf3437ab6b9d38780',1,'GpgFrontend::UI::TextEdit']]], - ['slotcurpagefiletreeview_599',['SlotCurPageFileTreeView',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a72014409d407c161b048e07c061b4cf9',1,'GpgFrontend::UI::TextEdit']]], - ['slotcurpagetextedit_600',['SlotCurPageTextEdit',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a48351dc1529da3b8da311f65b735b5f1',1,'GpgFrontend::UI::TextEdit']]], - ['slotcut_601',['SlotCut',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae1e710c6722910b8d35df97aaabb3162',1,'GpgFrontend::UI::TextEdit']]], - ['slotexecutegpgcommand_602',['SlotExecuteGpgCommand',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#afc845c1c37487c99f78d8e66f6874f6d',1,'GpgFrontend::UI::CommonUtils']]], - ['slotfiledecrypt_603',['SlotFileDecrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0a6d0618f2835a6dcae707a4ca770a48',1,'GpgFrontend::UI::MainWindow']]], - ['slotfiledecryptverify_604',['SlotFileDecryptVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab23c7e67dd1f5295b3c49ad79dfd5919',1,'GpgFrontend::UI::MainWindow']]], - ['slotfileencrypt_605',['SlotFileEncrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9ec699536a35a37961a8c6da1e231ae3',1,'GpgFrontend::UI::MainWindow']]], - ['slotfileencryptsign_606',['SlotFileEncryptSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a25a2e4017d77cffc8362bde9606fad30',1,'GpgFrontend::UI::MainWindow']]], - ['slotfilesign_607',['SlotFileSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8bcdcbe678b8dc0837fffda2ebfe79bf',1,'GpgFrontend::UI::MainWindow']]], - ['slotfileverify_608',['SlotFileVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9879061cfd321c6757c77f75d46dc7d8',1,'GpgFrontend::UI::MainWindow']]], - ['slotfilltexteditwithtext_609',['SlotFillTextEditWithText',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af466ec2b8ab3f695d206efc0574bbe20',1,'GpgFrontend::UI::TextEdit']]], - ['slotimport_610',['SlotImport',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a1e17305d6b470d0f7050eb8e3e6ee3d8',1,'GpgFrontend::UI::KeyServerImportDialog::SlotImport(const KeyIdArgsListPtr &keys)'],['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#abb3d99b2c17b0f6ddb0e5b93dd8f8802',1,'GpgFrontend::UI::KeyServerImportDialog::SlotImport(std::vector< std::string > key_ids_list, std::string keyserver_url)']]], - ['slotimportkeyfromclipboard_611',['SlotImportKeyFromClipboard',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a0c8bf56fc5371cd2c5e9d2a0f67bf72a',1,'GpgFrontend::UI::CommonUtils']]], - ['slotimportkeyfromfile_612',['SlotImportKeyFromFile',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a057526790f6b2f6288c3a35322c34d8d',1,'GpgFrontend::UI::CommonUtils']]], - ['slotimportkeyfromkeyserver_613',['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_614',['SlotImportKeys',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a3bc26cc1e0f00f0ce2f95c0b6c8778d8',1,'GpgFrontend::UI::CommonUtils']]], - ['slotnewfiletab_615',['SlotNewFileTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae22ecadf31648f424eb8ab86bd28ef39',1,'GpgFrontend::UI::TextEdit']]], - ['slotnewhelptab_616',['slotNewHelpTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3c17fdf3abf9c4fb6ce35cfb8f0f8fc4',1,'GpgFrontend::UI::TextEdit']]], - ['slotnewtab_617',['SlotNewTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a57a46ab5595622ae0b7bceef7d56bd7c',1,'GpgFrontend::UI::TextEdit']]], - ['slotopen_618',['SlotOpen',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a15335d38187ddf580b7200d856768cfb',1,'GpgFrontend::UI::TextEdit']]], - ['slotopenfile_619',['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_620',['SlotPaste',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa2230418dc8f72c400f5a90082a983c9',1,'GpgFrontend::UI::TextEdit']]], - ['slotprint_621',['SlotPrint',['../classGpgFrontend_1_1UI_1_1TextEdit.html#adca2bbfa746b5598f2a4f74026b84224',1,'GpgFrontend::UI::TextEdit']]], - ['slotquote_622',['SlotQuote',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6a02fce9dc4039c982d6dd19231517ee',1,'GpgFrontend::UI::TextEdit']]], - ['slotredo_623',['SlotRedo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae2b3bf422789d56087face98b6a9e929',1,'GpgFrontend::UI::TextEdit']]], - ['slotrefresh_624',['SlotRefresh',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a68f984815100f4ce281b9794f193e516',1,'GpgFrontend::UI::InfoBoardWidget']]], - ['slotsave_625',['SlotSave',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ace0b8f4c161db9f4f5db5ecbfd7a91c0',1,'GpgFrontend::UI::TextEdit']]], - ['slotsaveas_626',['SlotSaveAs',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a02fa44ba0c56f3f6ae125f8490faf254',1,'GpgFrontend::UI::TextEdit']]], - ['slotselectall_627',['SlotSelectAll',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6c814253dfc061bfdae0fa71c6196c55',1,'GpgFrontend::UI::TextEdit']]], - ['slotsetrestartneeded_628',['SlotSetRestartNeeded',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab1fb798caf43dd067beca5285444d47d',1,'GpgFrontend::UI::MainWindow']]], - ['slotshowmodified_629',['SlotShowModified',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a7544182198b729373843635bbfea082a',1,'GpgFrontend::UI::TextEdit']]], - ['slotswitchtabdown_630',['SlotSwitchTabDown',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a576e06390e65576465297d2ab8d7d474',1,'GpgFrontend::UI::TextEdit']]], - ['slotswitchtabup_631',['SlotSwitchTabUp',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af1e364b513f566c743a5d36c19098762',1,'GpgFrontend::UI::TextEdit']]], - ['slotundo_632',['SlotUndo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a4a81e69f6dc74ea649ca9a2358342fd5',1,'GpgFrontend::UI::TextEdit']]], - ['softwareversion_633',['SoftwareVersion',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html',1,'GpgFrontend::UI']]], - ['special_5fedit_5ftool_5fbar_5f_634',['special_edit_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af2b3e3a0e9894633e1839df289f5ffe0',1,'GpgFrontend::UI::MainWindow']]], - ['start_5fwizard_5fact_5f_635',['start_wizard_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab0019ca316b971c594c2f20f418256a6',1,'GpgFrontend::UI::MainWindow']]], - ['steganography_5fmenu_5f_636',['steganography_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af763a506aed7d0fb2125d1859583b853',1,'GpgFrontend::UI::MainWindow']]], - ['storages_5fmutex_5f_637',['storages_mutex_',['../classGpgFrontend_1_1SingletonStorageCollection.html#ab648cb257beb2475eb5fca6453c331f9',1,'GpgFrontend::SingletonStorageCollection']]], - ['stripped_5fname_638',['stripped_name',['../classGpgFrontend_1_1UI_1_1TextEdit.html#afb9b7a7d88154d774b3d727d8e640cbb',1,'GpgFrontend::UI::TextEdit']]], - ['subkeygeneratedialog_639',['SubkeyGenerateDialog',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html',1,'GpgFrontend::UI::SubkeyGenerateDialog'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a8f9d8baa7b576a4aa857818b87c26bcd',1,'GpgFrontend::UI::SubkeyGenerateDialog::SubkeyGenerateDialog()']]], - ['switch_5ftab_5fdown_5fact_5f_640',['switch_tab_down_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a88af746cd550792ab6095d2ebbd29b41',1,'GpgFrontend::UI::MainWindow']]], - ['switch_5ftab_5fup_5fact_5f_641',['switch_tab_up_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8d5ce6514ef3fa8ac3223176f5fa2701',1,'GpgFrontend::UI::MainWindow']]], - ['switch_5fui_5fenabled_642',['switch_ui_enabled',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#ae3d97948f205e84f0604d4da634a4513',1,'GpgFrontend::UI::NetworkTab']]], - ['switch_5fui_5fproxy_5ftype_643',['switch_ui_proxy_type',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#a1b0297158f13daec77645c88e5a8adcd',1,'GpgFrontend::UI::NetworkTab']]], - ['syncsettings_644',['SyncSettings',['../classGpgFrontend_1_1GlobalSettingStation.html#ac061ac8e5308f67ea52b98888bbb2e8d',1,'GpgFrontend::GlobalSettingStation']]] + ['signaldeeprestartneeded_513',['SignalDeepRestartNeeded',['../classGpgFrontend_1_1UI_1_1GeneralTab.html#afc107d56f13000aa28436a5e26a0876b',1,'GpgFrontend::UI::GeneralTab']]], + ['signalkeydatabaserefreshdone_514',['SignalKeyDatabaseRefreshDone',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a1abc83bba95579aa94d0870181991a28',1,'GpgFrontend::UI::CommonUtils']]], + ['signalkeyserverimportresult_515',['SignalKeyServerImportResult',['../classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a6b2c07d193fb28a57b1738fa493b2b3f',1,'GpgFrontend::UI::KeyServerImportTask']]], + ['signalkeyserverlisttestresult_516',['SignalKeyServerListTestResult',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a20f0147d670be7ab5c9d3051a900f508',1,'GpgFrontend::UI::ListedKeyServerTestTask']]], + ['signalkeyserversearchresult_517',['SignalKeyServerSearchResult',['../classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#ae478130476c95a8b220c3b0e6a7b88b4',1,'GpgFrontend::UI::KeyServerSearchTask']]], + ['signalopenhelp_518',['SignalOpenHelp',['../classGpgFrontend_1_1UI_1_1Wizard.html#a8b5f5ddb1e6470cbf6c87cc6400031fb',1,'GpgFrontend::UI::Wizard']]], + ['signalpathchanged_519',['SignalPathChanged',['../classGpgFrontend_1_1UI_1_1FilePage.html#aec462d16a2097024a4ced24012b905a7',1,'GpgFrontend::UI::FilePage']]], + ['signalproxyconnectiontestresult_520',['SignalProxyConnectionTestResult',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.html#aedafa7b22e024be537658fd8096e5f6f',1,'GpgFrontend::UI::ProxyConnectionTestThread']]], + ['signalrefreshinfoboard_521',['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_522',['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_523',['SignalReplyFromUpdateServer',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a5e752e01539ccfdc6bbe41a404ddaa95',1,'GpgFrontend::UI::UpdateTab']]], + ['signalrestartneeded_524',['signalRestartNeeded',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html#abff49b636449815a9ebff52f5c067712',1,'GpgFrontend::UI::AppearanceTab']]], + ['signalrestartneeded_525',['SignalRestartNeeded',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#af5ba6646af45d0d1d794bc52ee54b1b9',1,'GpgFrontend::UI::SettingsDialog::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1GeneralTab.html#aa88ccbda61728be6de0aa2d9b92e0b69',1,'GpgFrontend::UI::GeneralTab::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#a26449a77844d9db69a543ff88f10e347',1,'GpgFrontend::UI::KeyserverTab::SignalRestartNeeded()']]], + ['signalstation_526',['SignalStation',['../classGpgFrontend_1_1UI_1_1SignalStation.html',1,'GpgFrontend::UI']]], + ['signaluibytesdisplayed_527',['SignalUIBytesDisplayed',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#afd3749488fdd3d1c53446fb8c833f3f4',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['signalupgradeversion_528',['SignalUpgradeVersion',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a36c5597674253348477d78ad6af380ab',1,'GpgFrontend::UI::VersionCheckTask']]], + ['signaturedetailsdialog_529',['SignatureDetailsDialog',['../classSignatureDetailsDialog.html',1,'']]], + ['signerspicker_530',['SignersPicker',['../classGpgFrontend_1_1UI_1_1SignersPicker.html',1,'GpgFrontend::UI::SignersPicker'],['../classGpgFrontend_1_1UI_1_1SignersPicker.html#a02c3ba737702894fc6d4ac1a1c543ccb',1,'GpgFrontend::UI::SignersPicker::SignersPicker()']]], + ['signfile_531',['SignFile',['../classGpgFrontend_1_1GpgFileOpera.html#a350df1c07c054625c4755a78e6ca5ca8',1,'GpgFrontend::GpgFileOpera']]], + ['signkey_532',['SignKey',['../classGpgFrontend_1_1GpgKeyManager.html#a12138780c53add7589f78f056019e5e0',1,'GpgFrontend::GpgKeyManager']]], + ['singletonfunctionobject_533',['SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend::SingletonFunctionObject< T >'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a4aa7f1eb1d3281bb1fccfcbb1b416251',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(int channel)'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a02e76b42ab51d77588b01c7508bed258',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject()=default'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a7090636bed6f4bad5b99f28f6872c645',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(const T &)=delete'],['../classGpgFrontend_1_1SingletonFunctionObject.html#aabc5fe8e5a372ac276a265286457cb9a',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(T &&)=delete'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a194e49b07d46345bdad386505d743a61',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(const SingletonFunctionObject< T > &)=delete']]], + ['singletonfunctionobject_3c_20dataobjectoperator_20_3e_534',['SingletonFunctionObject< DataObjectOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20globalsettingstation_20_3e_535',['SingletonFunctionObject< GlobalSettingStation >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgbasicoperator_20_3e_536',['SingletonFunctionObject< GpgBasicOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgcommandexecutor_20_3e_537',['SingletonFunctionObject< GpgCommandExecutor >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgcontext_20_3e_538',['SingletonFunctionObject< GpgContext >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgfileopera_20_3e_539',['SingletonFunctionObject< GpgFileOpera >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgkeygetter_20_3e_540',['SingletonFunctionObject< GpgKeyGetter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgkeyimportexporter_20_3e_541',['SingletonFunctionObject< GpgKeyImportExporter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgkeymanager_20_3e_542',['SingletonFunctionObject< GpgKeyManager >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgkeyopera_20_3e_543',['SingletonFunctionObject< GpgKeyOpera >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpguidoperator_20_3e_544',['SingletonFunctionObject< GpgUIDOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20passphrasegenerator_20_3e_545',['SingletonFunctionObject< PassphraseGenerator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20taskrunnergetter_20_3e_546',['SingletonFunctionObject< TaskRunnerGetter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonstorage_547',['SingletonStorage',['../classGpgFrontend_1_1SingletonStorage.html',1,'GpgFrontend']]], + ['singletonstoragecollection_548',['SingletonStorageCollection',['../classGpgFrontend_1_1SingletonStorageCollection.html',1,'GpgFrontend']]], + ['slot_5factivated_5fkey_5ftype_549',['slot_activated_key_type',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ab8f04b046abb56d53bdbe67838b84fdc',1,'GpgFrontend::UI::KeyGenDialog::slot_activated_key_type()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a52a0aadc9b1e80bdcaaf1ad9d8997957',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_activated_key_type()']]], + ['slot_5fadd_5fpgp_5fheader_550',['slot_add_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a821247d738457c4ee046162aad6728f9',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fadd_5fuid_5fresult_551',['slot_add_uid_result',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a16f1ae88d6a417b614cfc6ae1852187c',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['slot_5fappend_5fselected_5fkeys_552',['slot_append_selected_keys',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a76bf3784d751db78ed13bd9962e14472',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fauthentication_5fbox_5fchanged_553',['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_554',['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_555',['slot_clean_double_line_breaks',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aea9274389c3b049793fe5aa5a6adf63c',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fcompress_5ffiles_556',['slot_compress_files',['../classGpgFrontend_1_1UI_1_1FilePage.html#a250b1950f874c1d11549cd5c0ea9693f',1,'GpgFrontend::UI::FilePage']]], + ['slot_5fcopy_5ffingerprint_557',['slot_copy_fingerprint',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#af8b600fbd7cd0fbb5b6183403bf870b2',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['slot_5fcopy_5fmail_5faddress_5fto_5fclipboard_558',['slot_copy_mail_address_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af93d72eaf58326f1f9e926752c6b1fc6',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fcreate_5fnew_5fuid_559',['slot_create_new_uid',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a4e115ce46a85c2f9e4e0e2427839fc7c',1,'GpgFrontend::UI::KeyNewUIDDialog']]], + ['slot_5fcut_5fpgp_5fheader_560',['slot_cut_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7f5a88922d06bee977335fb4b5f1d86d',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fdecrypt_561',['slot_decrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae2d89e2cc6c99ff0e16b396d2381f904',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fdecrypt_5fverify_562',['slot_decrypt_verify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1d61ea803e6c825bd54f42ba9ae85919',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fdisable_5ftab_5factions_563',['slot_disable_tab_actions',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a24a0b0d974fc5f8fdda60c128a82d957',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fdouble_5fclicked_564',['slot_double_clicked',['../classGpgFrontend_1_1UI_1_1KeyList.html#a69e54f06d546d516a0dcdf1055b8028e',1,'GpgFrontend::UI::KeyList']]], + ['slot_5fencrypt_565',['slot_encrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae11d01211c2914ecc148e13dd7de506e',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fencrypt_5fsign_566',['slot_encrypt_sign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a304efe91afa31b32725caa00c27475a4',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fencryption_5fbox_5fchanged_567',['slot_encryption_box_changed',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ae611933ccd6fd67e65a2cf1ff09b5e8f',1,'GpgFrontend::UI::KeyGenDialog::slot_encryption_box_changed()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a1f4dda7500b3de7476e5d1e7bd5b550b',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_encryption_box_changed()']]], + ['slot_5fexpire_5fbox_5fchanged_568',['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_569',['slot_export_private_key',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a384f4250e58110da58c0e6996b42a8ab',1,'GpgFrontend::UI::KeyPairOperaTab']]], + ['slot_5ffile_5ftree_5fview_5fitem_5fclicked_570',['slot_file_tree_view_item_clicked',['../classGpgFrontend_1_1UI_1_1FilePage.html#a676917817d6f519e043742d1d87f97f1',1,'GpgFrontend::UI::FilePage']]], + ['slot_5ffile_5ftree_5fview_5fitem_5fdouble_5fclicked_571',['slot_file_tree_view_item_double_clicked',['../classGpgFrontend_1_1UI_1_1FilePage.html#ad3c54320bdafbbb2c06a20d6c7dea9d6',1,'GpgFrontend::UI::FilePage']]], + ['slot_5ffind_572',['slot_find',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae28089efbd236708601470f30f26faaa',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fformat_5fgpg_5fheader_573',['slot_format_gpg_header',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a45267bcfc8fc83851894061c0fe2a9c2',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['slot_5fimport_574',['slot_import',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ac9c14bbc97945c94fd02c8e067ccab06',1,'GpgFrontend::UI::KeyServerImportDialog']]], + ['slot_5fimport_5ffinished_575',['slot_import_finished',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a6f1c5238da7cd6f117bed8018469b37a',1,'GpgFrontend::UI::KeyServerImportDialog']]], + ['slot_5fimport_5fkey_5ffrom_5fedit_576',['slot_import_key_from_edit',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a55926649e28a96318b89afba01b966bf',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5finsert_5ftext_577',['slot_insert_text',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a184985104f23da8fdf2b9aaf7b27405b',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['slot_5fjump_5fpage_578',['slot_jump_page',['../classGpgFrontend_1_1UI_1_1ChoosePage.html#af0d7890fe65385b7785719b9cff0718b',1,'GpgFrontend::UI::ChoosePage']]], + ['slot_5fkey_5fgen_5faccept_579',['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_580',['slot_non_expired_checked',['../classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#adde2b33bd17f521f0630702987b1d274',1,'GpgFrontend::UI::KeySetExpireDateDialog']]], + ['slot_5fopen_5ffile_5ftab_581',['slot_open_file_tab',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a29a811d4d440c79c1bd2cc2bb40cdf7e',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fopen_5fkey_5fmanagement_582',['slot_open_key_management',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a16ddebec90a4bd0d13baa9d972c3445f',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fopen_5fsettings_5fdialog_583',['slot_open_settings_dialog',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a874b505fbc1046f579a736683f5a7f65',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fopen_5furl_584',['slot_open_url',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a51ff99077a75507365307f5dd783df99',1,'GpgFrontend::UI::HelpPage']]], + ['slot_5fprocess_5fnetwork_5freply_585',['slot_process_network_reply',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#af9350e0a8d5993e5be0a5478fcb161be',1,'GpgFrontend::UI::ListedKeyServerTestTask']]], + ['slot_5fremove_5ftab_586',['slot_remove_tab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a12f65fbc4984c266a5df4505ecde7c42',1,'GpgFrontend::UI::TextEdit']]], + ['slot_5fset_5frestart_5fneeded_587',['slot_set_restart_needed',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#acc6b4386de554fce6fbb60ac6d201952',1,'GpgFrontend::UI::SettingsDialog']]], + ['slot_5fshow_5fkey_5fdetails_588',['slot_show_key_details',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a033d448541b44fa48b76dec828a4eb0e',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fshow_5fversion_5fstatus_589',['slot_show_version_status',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a1003bd969ecbc5deba940e39436968f4',1,'GpgFrontend::UI::UpdateTab']]], + ['slot_5fsign_590',['slot_sign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3f3d03b0ec22385bee559fbd2aeb881b',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fsign_5fkey_591',['slot_sign_key',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#a82f6bf641ff3b64341a0bdcf76571c43',1,'GpgFrontend::UI::KeyUIDSignDialog']]], + ['slot_5fsigning_5fbox_5fchanged_592',['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_593',['slot_start_wizard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aabf3ddf6b624790369f164b4889c95be',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fupdate_5fkey_5fstatus_594',['slot_update_key_status',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#ab4ac26378d6a07757720163eb4b1cb0e',1,'GpgFrontend::UI::CommonUtils']]], + ['slot_5fupload_5fkey_5fto_5fserver_595',['slot_upload_key_to_server',['../classGpgFrontend_1_1UI_1_1KeyUploadDialog.html#a0f724649ca953b888f07d69c97fe45b6',1,'GpgFrontend::UI::KeyUploadDialog']]], + ['slot_5fverify_596',['slot_verify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa9c986dd95984811479ea93230c74b5d',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fversion_5fupgrade_597',['slot_version_upgrade',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a48368c77af7b1f4cb632870b8d914a28',1,'GpgFrontend::UI::MainWindow']]], + ['slotclosetab_598',['SlotCloseTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa21659aa7acba98dfd6286d69e00ab9b',1,'GpgFrontend::UI::TextEdit']]], + ['slotcopy_599',['SlotCopy',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3599bd01636a873cf3437ab6b9d38780',1,'GpgFrontend::UI::TextEdit']]], + ['slotcurpagefiletreeview_600',['SlotCurPageFileTreeView',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a72014409d407c161b048e07c061b4cf9',1,'GpgFrontend::UI::TextEdit']]], + ['slotcurpagetextedit_601',['SlotCurPageTextEdit',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a48351dc1529da3b8da311f65b735b5f1',1,'GpgFrontend::UI::TextEdit']]], + ['slotcut_602',['SlotCut',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae1e710c6722910b8d35df97aaabb3162',1,'GpgFrontend::UI::TextEdit']]], + ['slotexecutegpgcommand_603',['SlotExecuteGpgCommand',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#afc845c1c37487c99f78d8e66f6874f6d',1,'GpgFrontend::UI::CommonUtils']]], + ['slotfiledecrypt_604',['SlotFileDecrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0a6d0618f2835a6dcae707a4ca770a48',1,'GpgFrontend::UI::MainWindow']]], + ['slotfiledecryptverify_605',['SlotFileDecryptVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab23c7e67dd1f5295b3c49ad79dfd5919',1,'GpgFrontend::UI::MainWindow']]], + ['slotfileencrypt_606',['SlotFileEncrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9ec699536a35a37961a8c6da1e231ae3',1,'GpgFrontend::UI::MainWindow']]], + ['slotfileencryptsign_607',['SlotFileEncryptSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a25a2e4017d77cffc8362bde9606fad30',1,'GpgFrontend::UI::MainWindow']]], + ['slotfilesign_608',['SlotFileSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8bcdcbe678b8dc0837fffda2ebfe79bf',1,'GpgFrontend::UI::MainWindow']]], + ['slotfileverify_609',['SlotFileVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9879061cfd321c6757c77f75d46dc7d8',1,'GpgFrontend::UI::MainWindow']]], + ['slotfilltexteditwithtext_610',['SlotFillTextEditWithText',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af466ec2b8ab3f695d206efc0574bbe20',1,'GpgFrontend::UI::TextEdit']]], + ['slotimport_611',['SlotImport',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a1e17305d6b470d0f7050eb8e3e6ee3d8',1,'GpgFrontend::UI::KeyServerImportDialog::SlotImport(const KeyIdArgsListPtr &keys)'],['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#abb3d99b2c17b0f6ddb0e5b93dd8f8802',1,'GpgFrontend::UI::KeyServerImportDialog::SlotImport(std::vector< std::string > key_ids_list, std::string keyserver_url)']]], + ['slotimportkeyfromclipboard_612',['SlotImportKeyFromClipboard',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a0c8bf56fc5371cd2c5e9d2a0f67bf72a',1,'GpgFrontend::UI::CommonUtils']]], + ['slotimportkeyfromfile_613',['SlotImportKeyFromFile',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a057526790f6b2f6288c3a35322c34d8d',1,'GpgFrontend::UI::CommonUtils']]], + ['slotimportkeyfromkeyserver_614',['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_615',['SlotImportKeys',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a3bc26cc1e0f00f0ce2f95c0b6c8778d8',1,'GpgFrontend::UI::CommonUtils']]], + ['slotnewfiletab_616',['SlotNewFileTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae22ecadf31648f424eb8ab86bd28ef39',1,'GpgFrontend::UI::TextEdit']]], + ['slotnewhelptab_617',['slotNewHelpTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3c17fdf3abf9c4fb6ce35cfb8f0f8fc4',1,'GpgFrontend::UI::TextEdit']]], + ['slotnewtab_618',['SlotNewTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a57a46ab5595622ae0b7bceef7d56bd7c',1,'GpgFrontend::UI::TextEdit']]], + ['slotopen_619',['SlotOpen',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a15335d38187ddf580b7200d856768cfb',1,'GpgFrontend::UI::TextEdit']]], + ['slotopenfile_620',['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_621',['SlotPaste',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa2230418dc8f72c400f5a90082a983c9',1,'GpgFrontend::UI::TextEdit']]], + ['slotprint_622',['SlotPrint',['../classGpgFrontend_1_1UI_1_1TextEdit.html#adca2bbfa746b5598f2a4f74026b84224',1,'GpgFrontend::UI::TextEdit']]], + ['slotquote_623',['SlotQuote',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6a02fce9dc4039c982d6dd19231517ee',1,'GpgFrontend::UI::TextEdit']]], + ['slotredo_624',['SlotRedo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae2b3bf422789d56087face98b6a9e929',1,'GpgFrontend::UI::TextEdit']]], + ['slotrefresh_625',['SlotRefresh',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a68f984815100f4ce281b9794f193e516',1,'GpgFrontend::UI::InfoBoardWidget']]], + ['slotsave_626',['SlotSave',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ace0b8f4c161db9f4f5db5ecbfd7a91c0',1,'GpgFrontend::UI::TextEdit']]], + ['slotsaveas_627',['SlotSaveAs',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a02fa44ba0c56f3f6ae125f8490faf254',1,'GpgFrontend::UI::TextEdit']]], + ['slotselectall_628',['SlotSelectAll',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6c814253dfc061bfdae0fa71c6196c55',1,'GpgFrontend::UI::TextEdit']]], + ['slotsetrestartneeded_629',['SlotSetRestartNeeded',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a276e843e2f5eda8934fb350fb6f89327',1,'GpgFrontend::UI::MainWindow']]], + ['slotshowmodified_630',['SlotShowModified',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a7544182198b729373843635bbfea082a',1,'GpgFrontend::UI::TextEdit']]], + ['slotswitchtabdown_631',['SlotSwitchTabDown',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a576e06390e65576465297d2ab8d7d474',1,'GpgFrontend::UI::TextEdit']]], + ['slotswitchtabup_632',['SlotSwitchTabUp',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af1e364b513f566c743a5d36c19098762',1,'GpgFrontend::UI::TextEdit']]], + ['slotundo_633',['SlotUndo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a4a81e69f6dc74ea649ca9a2358342fd5',1,'GpgFrontend::UI::TextEdit']]], + ['softwareversion_634',['SoftwareVersion',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html',1,'GpgFrontend::UI']]], + ['special_5fedit_5ftool_5fbar_5f_635',['special_edit_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af2b3e3a0e9894633e1839df289f5ffe0',1,'GpgFrontend::UI::MainWindow']]], + ['start_5fwizard_5fact_5f_636',['start_wizard_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab0019ca316b971c594c2f20f418256a6',1,'GpgFrontend::UI::MainWindow']]], + ['steganography_5fmenu_5f_637',['steganography_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af763a506aed7d0fb2125d1859583b853',1,'GpgFrontend::UI::MainWindow']]], + ['storages_5fmutex_5f_638',['storages_mutex_',['../classGpgFrontend_1_1SingletonStorageCollection.html#ab648cb257beb2475eb5fca6453c331f9',1,'GpgFrontend::SingletonStorageCollection']]], + ['stripped_5fname_639',['stripped_name',['../classGpgFrontend_1_1UI_1_1TextEdit.html#afb9b7a7d88154d774b3d727d8e640cbb',1,'GpgFrontend::UI::TextEdit']]], + ['subkeygeneratedialog_640',['SubkeyGenerateDialog',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html',1,'GpgFrontend::UI::SubkeyGenerateDialog'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a8f9d8baa7b576a4aa857818b87c26bcd',1,'GpgFrontend::UI::SubkeyGenerateDialog::SubkeyGenerateDialog()']]], + ['switch_5ftab_5fdown_5fact_5f_641',['switch_tab_down_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a88af746cd550792ab6095d2ebbd29b41',1,'GpgFrontend::UI::MainWindow']]], + ['switch_5ftab_5fup_5fact_5f_642',['switch_tab_up_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8d5ce6514ef3fa8ac3223176f5fa2701',1,'GpgFrontend::UI::MainWindow']]], + ['switch_5fui_5fenabled_643',['switch_ui_enabled',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#ae3d97948f205e84f0604d4da634a4513',1,'GpgFrontend::UI::NetworkTab']]], + ['switch_5fui_5fproxy_5ftype_644',['switch_ui_proxy_type',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#a1b0297158f13daec77645c88e5a8adcd',1,'GpgFrontend::UI::NetworkTab']]], + ['syncsettings_645',['SyncSettings',['../classGpgFrontend_1_1GlobalSettingStation.html#ac061ac8e5308f67ea52b98888bbb2e8d',1,'GpgFrontend::GlobalSettingStation']]] ]; diff --git a/docs/html/search/all_13.js b/docs/html/search/all_13.js index 8d4b625e..2b2a4d84 100644 --- a/docs/html/search/all_13.js +++ b/docs/html/search/all_13.js @@ -1,18 +1,18 @@ var searchData= [ - ['tabcount_645',['TabCount',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a05c54658597b04c3976c72d3a5f9add9',1,'GpgFrontend::UI::TextEdit']]], - ['takechargeofresult_646',['TakeChargeOfResult',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#acdb7839a5158f078b38d60f0fefc5155',1,'GpgFrontend::GpgVerifyResultAnalyse']]], - ['task_647',['Task',['../classGpgFrontend_1_1Thread_1_1Task.html',1,'GpgFrontend::Thread::Task'],['../classGpgFrontend_1_1Thread_1_1Task.html#aa242a8e025c448aacd0704b7d0b3c001',1,'GpgFrontend::Thread::Task::Task(TaskRunnable runnable, TaskCallback callback=[](int, std::shared_ptr< DataObject >) {}, DataObjectPtr data=nullptr)'],['../classGpgFrontend_1_1Thread_1_1Task.html#a35f3065116d2295bb2ddc9f41b1192bb',1,'GpgFrontend::Thread::Task::Task(TaskCallback callback, DataObjectPtr data_object=nullptr)'],['../classGpgFrontend_1_1Thread_1_1Task.html#a1ec53d301fc83e0da39e43055ded5d14',1,'GpgFrontend::Thread::Task::Task()']]], - ['taskrunner_648',['TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html',1,'GpgFrontend::Thread::TaskRunner'],['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#ad3c8612cbe60112f9b14e616fb0a4acf',1,'GpgFrontend::Thread::TaskRunner::TaskRunner()']]], - ['taskrunnergetter_649',['TaskRunnerGetter',['../classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html',1,'GpgFrontend::Thread::TaskRunnerGetter'],['../classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html#a80794d81179f66f4b4ed3122a64f27cf',1,'GpgFrontend::Thread::TaskRunnerGetter::TaskRunnerGetter()']]], - ['tasks_650',['tasks',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a774775e9a91d33072b27dcf78cead6e2',1,'GpgFrontend::Thread::TaskRunner']]], - ['tasks_5fmutex_5f_651',['tasks_mutex_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a5e72f1ce00d41c225a4304f1ed20b3f1',1,'GpgFrontend::Thread::TaskRunner']]], - ['test_5fpassphrase_5fcb_652',['test_passphrase_cb',['../classGpgFrontend_1_1GpgContext.html#acc4234054002065dfbc5d5261a4950d4',1,'GpgFrontend::GpgContext']]], - ['test_5fstatus_5fcb_653',['test_status_cb',['../classGpgFrontend_1_1GpgContext.html#a3844cd0966134939e5c4be9a725e5271',1,'GpgFrontend::GpgContext']]], - ['testlistedkeyserverthread_654',['TestListedKeyServerThread',['../classTestListedKeyServerThread.html',1,'']]], - ['text_5fis_5fsigned_655',['text_is_signed',['../namespaceGpgFrontend.html#a2a0394c8bdd277f5235f9875a1d69a99',1,'GpgFrontend']]], - ['textedit_656',['TextEdit',['../classGpgFrontend_1_1UI_1_1TextEdit.html',1,'GpgFrontend::UI']]], - ['tofuinfopage_657',['TOFUInfoPage',['../classGpgFrontend_1_1UI_1_1TOFUInfoPage.html',1,'GpgFrontend::UI::TOFUInfoPage'],['../classGpgFrontend_1_1UI_1_1TOFUInfoPage.html#a9adc1666e3f57536594876520019e395',1,'GpgFrontend::UI::TOFUInfoPage::TOFUInfoPage()']]], - ['translate_5fact_5f_658',['translate_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adbac799672c43c90810366825d837e4e',1,'GpgFrontend::UI::MainWindow']]], - ['translatorstab_659',['TranslatorsTab',['../classGpgFrontend_1_1UI_1_1TranslatorsTab.html',1,'GpgFrontend::UI::TranslatorsTab'],['../classGpgFrontend_1_1UI_1_1TranslatorsTab.html#a89e5c7b9c17fb41b7c7bf461fb8ad99e',1,'GpgFrontend::UI::TranslatorsTab::TranslatorsTab()']]] + ['tabcount_646',['TabCount',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a05c54658597b04c3976c72d3a5f9add9',1,'GpgFrontend::UI::TextEdit']]], + ['takechargeofresult_647',['TakeChargeOfResult',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#acdb7839a5158f078b38d60f0fefc5155',1,'GpgFrontend::GpgVerifyResultAnalyse']]], + ['task_648',['Task',['../classGpgFrontend_1_1Thread_1_1Task.html',1,'GpgFrontend::Thread::Task'],['../classGpgFrontend_1_1Thread_1_1Task.html#aa242a8e025c448aacd0704b7d0b3c001',1,'GpgFrontend::Thread::Task::Task(TaskRunnable runnable, TaskCallback callback=[](int, std::shared_ptr< DataObject >) {}, DataObjectPtr data=nullptr)'],['../classGpgFrontend_1_1Thread_1_1Task.html#a35f3065116d2295bb2ddc9f41b1192bb',1,'GpgFrontend::Thread::Task::Task(TaskCallback callback, DataObjectPtr data_object=nullptr)'],['../classGpgFrontend_1_1Thread_1_1Task.html#a1ec53d301fc83e0da39e43055ded5d14',1,'GpgFrontend::Thread::Task::Task()']]], + ['taskrunner_649',['TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html',1,'GpgFrontend::Thread::TaskRunner'],['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#ad3c8612cbe60112f9b14e616fb0a4acf',1,'GpgFrontend::Thread::TaskRunner::TaskRunner()']]], + ['taskrunnergetter_650',['TaskRunnerGetter',['../classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html',1,'GpgFrontend::Thread::TaskRunnerGetter'],['../classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html#a80794d81179f66f4b4ed3122a64f27cf',1,'GpgFrontend::Thread::TaskRunnerGetter::TaskRunnerGetter()']]], + ['tasks_651',['tasks',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a774775e9a91d33072b27dcf78cead6e2',1,'GpgFrontend::Thread::TaskRunner']]], + ['tasks_5fmutex_5f_652',['tasks_mutex_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a5e72f1ce00d41c225a4304f1ed20b3f1',1,'GpgFrontend::Thread::TaskRunner']]], + ['test_5fpassphrase_5fcb_653',['test_passphrase_cb',['../classGpgFrontend_1_1GpgContext.html#acc4234054002065dfbc5d5261a4950d4',1,'GpgFrontend::GpgContext']]], + ['test_5fstatus_5fcb_654',['test_status_cb',['../classGpgFrontend_1_1GpgContext.html#a3844cd0966134939e5c4be9a725e5271',1,'GpgFrontend::GpgContext']]], + ['testlistedkeyserverthread_655',['TestListedKeyServerThread',['../classTestListedKeyServerThread.html',1,'']]], + ['text_5fis_5fsigned_656',['text_is_signed',['../namespaceGpgFrontend.html#a2a0394c8bdd277f5235f9875a1d69a99',1,'GpgFrontend']]], + ['textedit_657',['TextEdit',['../classGpgFrontend_1_1UI_1_1TextEdit.html',1,'GpgFrontend::UI']]], + ['tofuinfopage_658',['TOFUInfoPage',['../classGpgFrontend_1_1UI_1_1TOFUInfoPage.html',1,'GpgFrontend::UI::TOFUInfoPage'],['../classGpgFrontend_1_1UI_1_1TOFUInfoPage.html#a9adc1666e3f57536594876520019e395',1,'GpgFrontend::UI::TOFUInfoPage::TOFUInfoPage()']]], + ['translate_5fact_5f_659',['translate_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adbac799672c43c90810366825d837e4e',1,'GpgFrontend::UI::MainWindow']]], + ['translatorstab_660',['TranslatorsTab',['../classGpgFrontend_1_1UI_1_1TranslatorsTab.html',1,'GpgFrontend::UI::TranslatorsTab'],['../classGpgFrontend_1_1UI_1_1TranslatorsTab.html#a89e5c7b9c17fb41b7c7bf461fb8ad99e',1,'GpgFrontend::UI::TranslatorsTab::TranslatorsTab()']]] ]; diff --git a/docs/html/search/all_14.js b/docs/html/search/all_14.js index fa20f83f..494dea4e 100644 --- a/docs/html/search/all_14.js +++ b/docs/html/search/all_14.js @@ -1,10 +1,10 @@ var searchData= [ - ['ui_5fcfg_5f_660',['ui_cfg_',['../classGpgFrontend_1_1GlobalSettingStation.html#a1818e08063d6a886975f77354fc5d85c',1,'GpgFrontend::GlobalSettingStation']]], - ['ui_5fconfig_5fdir_5fpath_5f_661',['ui_config_dir_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#ab618fef68cfd4ff6e42d4a4aa8ea94bb',1,'GpgFrontend::GlobalSettingStation']]], - ['ui_5fconfig_5fpath_5f_662',['ui_config_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#afa99ddc25c0d5fd59a4c5f0e61d13830',1,'GpgFrontend::GlobalSettingStation']]], - ['undo_5fact_5f_663',['undo_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa498dfecac36590e4b60d50824dff58c',1,'GpgFrontend::UI::MainWindow']]], - ['unsaveddocuments_664',['UnsavedDocuments',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a82fe98d45f54909ebea933b540367c39',1,'GpgFrontend::UI::TextEdit']]], - ['updatetab_665',['UpdateTab',['../classGpgFrontend_1_1UI_1_1UpdateTab.html',1,'GpgFrontend::UI::UpdateTab'],['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a833c5f709607032bac530aacf389a117',1,'GpgFrontend::UI::UpdateTab::UpdateTab()']]], - ['upload_5fkey_5fto_5fserver_666',['upload_key_to_server',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad27dcf3f534f13d8df71df680c4d177c',1,'GpgFrontend::UI::MainWindow']]] + ['ui_5fcfg_5f_661',['ui_cfg_',['../classGpgFrontend_1_1GlobalSettingStation.html#a1818e08063d6a886975f77354fc5d85c',1,'GpgFrontend::GlobalSettingStation']]], + ['ui_5fconfig_5fdir_5fpath_5f_662',['ui_config_dir_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#ab618fef68cfd4ff6e42d4a4aa8ea94bb',1,'GpgFrontend::GlobalSettingStation']]], + ['ui_5fconfig_5fpath_5f_663',['ui_config_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#afa99ddc25c0d5fd59a4c5f0e61d13830',1,'GpgFrontend::GlobalSettingStation']]], + ['undo_5fact_5f_664',['undo_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa498dfecac36590e4b60d50824dff58c',1,'GpgFrontend::UI::MainWindow']]], + ['unsaveddocuments_665',['UnsavedDocuments',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a82fe98d45f54909ebea933b540367c39',1,'GpgFrontend::UI::TextEdit']]], + ['updatetab_666',['UpdateTab',['../classGpgFrontend_1_1UI_1_1UpdateTab.html',1,'GpgFrontend::UI::UpdateTab'],['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a833c5f709607032bac530aacf389a117',1,'GpgFrontend::UI::UpdateTab::UpdateTab()']]], + ['upload_5fkey_5fto_5fserver_667',['upload_key_to_server',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad27dcf3f534f13d8df71df680c4d177c',1,'GpgFrontend::UI::MainWindow']]] ]; diff --git a/docs/html/search/all_15.js b/docs/html/search/all_15.js index d823e7b6..44d257a6 100644 --- a/docs/html/search/all_15.js +++ b/docs/html/search/all_15.js @@ -1,11 +1,11 @@ var searchData= [ - ['verify_667',['Verify',['../classGpgFrontend_1_1GpgBasicOperator.html#af0347cb28ff73b2250395ceaa9001509',1,'GpgFrontend::GpgBasicOperator']]], - ['verify_5fact_5f_668',['verify_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a14bb12fa25620e1a93bd23c9f7c84081',1,'GpgFrontend::UI::MainWindow']]], - ['verifydetailsdialog_669',['VerifyDetailsDialog',['../classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html',1,'GpgFrontend::UI::VerifyDetailsDialog'],['../classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#ac73f0405e249f623ddd0de22b5130fda',1,'GpgFrontend::UI::VerifyDetailsDialog::VerifyDetailsDialog()']]], - ['verifyfile_670',['VerifyFile',['../classGpgFrontend_1_1GpgFileOpera.html#a14cddfe822c9410cd9c301d08963b7e7',1,'GpgFrontend::GpgFileOpera']]], - ['verifykeydetailbox_671',['VerifyKeyDetailBox',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html',1,'GpgFrontend::UI::VerifyKeyDetailBox'],['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#afbbe8e87786cca020c9aa8759eb041a0',1,'GpgFrontend::UI::VerifyKeyDetailBox::VerifyKeyDetailBox()']]], - ['versionchecktask_672',['VersionCheckTask',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html',1,'GpgFrontend::UI::VersionCheckTask'],['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9f7a810ae1aa78c2a61e86e7757da385',1,'GpgFrontend::UI::VersionCheckTask::VersionCheckTask()']]], - ['versionwithdrawn_673',['VersionWithDrawn',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a587a3fdb047a15c3771c2af5eebdbf4b',1,'GpgFrontend::UI::SoftwareVersion']]], - ['view_5fmenu_5f_674',['view_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0e9920cf0fc974ac2f70d3f039f009f2',1,'GpgFrontend::UI::MainWindow']]] + ['verify_668',['Verify',['../classGpgFrontend_1_1GpgBasicOperator.html#af0347cb28ff73b2250395ceaa9001509',1,'GpgFrontend::GpgBasicOperator']]], + ['verify_5fact_5f_669',['verify_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a14bb12fa25620e1a93bd23c9f7c84081',1,'GpgFrontend::UI::MainWindow']]], + ['verifydetailsdialog_670',['VerifyDetailsDialog',['../classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html',1,'GpgFrontend::UI::VerifyDetailsDialog'],['../classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#ac73f0405e249f623ddd0de22b5130fda',1,'GpgFrontend::UI::VerifyDetailsDialog::VerifyDetailsDialog()']]], + ['verifyfile_671',['VerifyFile',['../classGpgFrontend_1_1GpgFileOpera.html#a14cddfe822c9410cd9c301d08963b7e7',1,'GpgFrontend::GpgFileOpera']]], + ['verifykeydetailbox_672',['VerifyKeyDetailBox',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html',1,'GpgFrontend::UI::VerifyKeyDetailBox'],['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#afbbe8e87786cca020c9aa8759eb041a0',1,'GpgFrontend::UI::VerifyKeyDetailBox::VerifyKeyDetailBox()']]], + ['versionchecktask_673',['VersionCheckTask',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html',1,'GpgFrontend::UI::VersionCheckTask'],['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9f7a810ae1aa78c2a61e86e7757da385',1,'GpgFrontend::UI::VersionCheckTask::VersionCheckTask()']]], + ['versionwithdrawn_674',['VersionWithDrawn',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a587a3fdb047a15c3771c2af5eebdbf4b',1,'GpgFrontend::UI::SoftwareVersion']]], + ['view_5fmenu_5f_675',['view_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0e9920cf0fc974ac2f70d3f039f009f2',1,'GpgFrontend::UI::MainWindow']]] ]; diff --git a/docs/html/search/all_16.js b/docs/html/search/all_16.js index c5f8dc25..f6de6242 100644 --- a/docs/html/search/all_16.js +++ b/docs/html/search/all_16.js @@ -1,9 +1,9 @@ var searchData= [ - ['waitingdialog_675',['WaitingDialog',['../classGpgFrontend_1_1UI_1_1WaitingDialog.html',1,'GpgFrontend::UI::WaitingDialog'],['../classGpgFrontend_1_1UI_1_1WaitingDialog.html#a809d0ffc8208eb2ff5d8da76c8ee10dc',1,'GpgFrontend::UI::WaitingDialog::WaitingDialog()']]], - ['willcharsetchange_676',['WillCharsetChange',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a1c1c0174ed1ed9c5a90739eafc5c3267',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['wizard_677',['Wizard',['../classGpgFrontend_1_1UI_1_1Wizard.html',1,'GpgFrontend::UI::Wizard'],['../classGpgFrontend_1_1UI_1_1Wizard.html#a448db8fe5ace96418ffd1f23b0142b10',1,'GpgFrontend::UI::Wizard::Wizard()']]], - ['write_5fbuffer_5fto_5ffile_678',['write_buffer_to_file',['../namespaceGpgFrontend.html#a5135069571678eda9c1f07d17ed9ac41',1,'GpgFrontend']]], - ['writefile_679',['WriteFile',['../classGpgFrontend_1_1FileOperator.html#a2f21ef4a88448b1eddf756302913d338',1,'GpgFrontend::FileOperator']]], - ['writefilestd_680',['WriteFileStd',['../classGpgFrontend_1_1FileOperator.html#a51121c94dc32a83d7073fbe7138b603b',1,'GpgFrontend::FileOperator']]] + ['waitingdialog_676',['WaitingDialog',['../classGpgFrontend_1_1UI_1_1WaitingDialog.html',1,'GpgFrontend::UI::WaitingDialog'],['../classGpgFrontend_1_1UI_1_1WaitingDialog.html#a809d0ffc8208eb2ff5d8da76c8ee10dc',1,'GpgFrontend::UI::WaitingDialog::WaitingDialog()']]], + ['willcharsetchange_677',['WillCharsetChange',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a1c1c0174ed1ed9c5a90739eafc5c3267',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['wizard_678',['Wizard',['../classGpgFrontend_1_1UI_1_1Wizard.html',1,'GpgFrontend::UI::Wizard'],['../classGpgFrontend_1_1UI_1_1Wizard.html#a448db8fe5ace96418ffd1f23b0142b10',1,'GpgFrontend::UI::Wizard::Wizard()']]], + ['write_5fbuffer_5fto_5ffile_679',['write_buffer_to_file',['../namespaceGpgFrontend.html#a5135069571678eda9c1f07d17ed9ac41',1,'GpgFrontend']]], + ['writefile_680',['WriteFile',['../classGpgFrontend_1_1FileOperator.html#a2f21ef4a88448b1eddf756302913d338',1,'GpgFrontend::FileOperator']]], + ['writefilestd_681',['WriteFileStd',['../classGpgFrontend_1_1FileOperator.html#a51121c94dc32a83d7073fbe7138b603b',1,'GpgFrontend::FileOperator']]] ]; diff --git a/docs/html/search/all_17.js b/docs/html/search/all_17.js index b9b9ddfa..256b47e5 100644 --- a/docs/html/search/all_17.js +++ b/docs/html/search/all_17.js @@ -1,5 +1,5 @@ var searchData= [ - ['zoom_5fin_5fact_5f_681',['zoom_in_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3cb7daedbef61c1be27635c9ebc9e689',1,'GpgFrontend::UI::MainWindow']]], - ['zoom_5fout_5fact_5f_682',['zoom_out_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a70397629ae3ffe039051b80a099c7979',1,'GpgFrontend::UI::MainWindow']]] + ['zoom_5fin_5fact_5f_682',['zoom_in_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3cb7daedbef61c1be27635c9ebc9e689',1,'GpgFrontend::UI::MainWindow']]], + ['zoom_5fout_5fact_5f_683',['zoom_out_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a70397629ae3ffe039051b80a099c7979',1,'GpgFrontend::UI::MainWindow']]] ]; diff --git a/docs/html/search/all_18.js b/docs/html/search/all_18.js index 7073807b..cf3eb4e0 100644 --- a/docs/html/search/all_18.js +++ b/docs/html/search/all_18.js @@ -1,14 +1,14 @@ var searchData= [ - ['_7edataobject_683',['~DataObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a85bb3c482bf6f47edcd6593cca568a22',1,'GpgFrontend::Thread::Task::DataObject']]], - ['_7eglobalsettingstation_684',['~GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html#af700161900e623a0ea14261d51616451',1,'GpgFrontend::GlobalSettingStation']]], - ['_7egpgcontext_685',['~GpgContext',['../classGpgFrontend_1_1GpgContext.html#ae89dee551354c1541337881898832725',1,'GpgFrontend::GpgContext']]], - ['_7egpgfrontendapplication_686',['~GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a32f0e7dda69f7b1e3cc869340736c590',1,'GpgFrontend::UI::GpgFrontendApplication']]], - ['_7egpgkey_687',['~GpgKey',['../classGpgFrontend_1_1GpgKey.html#a1e9223bb1ad8fbb4e769680de39b3697',1,'GpgFrontend::GpgKey']]], - ['_7egpgkeysignature_688',['~GpgKeySignature',['../classGpgFrontend_1_1GpgKeySignature.html#ab4d7044f4e1ddcf0ae0d28be43f0fcb3',1,'GpgFrontend::GpgKeySignature']]], - ['_7egpgsignature_689',['~GpgSignature',['../classGpgFrontend_1_1GpgSignature.html#a44f137a457ac109d145a1cdd8e544e3a',1,'GpgFrontend::GpgSignature']]], - ['_7esettingsobject_690',['~SettingsObject',['../classGpgFrontend_1_1UI_1_1SettingsObject.html#ae71336d240ace35756d1852a46271f6c',1,'GpgFrontend::UI::SettingsObject']]], - ['_7esingletonfunctionobject_691',['~SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html#a8296be8c449f88175285186831b995bc',1,'GpgFrontend::SingletonFunctionObject']]], - ['_7etask_692',['~Task',['../classGpgFrontend_1_1Thread_1_1Task.html#a37766a505662b33ad14672c29e209ea8',1,'GpgFrontend::Thread::Task']]], - ['_7etaskrunner_693',['~TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#ac3e57b59d537e2a75e741d4a5418ae6d',1,'GpgFrontend::Thread::TaskRunner']]] + ['_7edataobject_684',['~DataObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a85bb3c482bf6f47edcd6593cca568a22',1,'GpgFrontend::Thread::Task::DataObject']]], + ['_7eglobalsettingstation_685',['~GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html#af700161900e623a0ea14261d51616451',1,'GpgFrontend::GlobalSettingStation']]], + ['_7egpgcontext_686',['~GpgContext',['../classGpgFrontend_1_1GpgContext.html#ae89dee551354c1541337881898832725',1,'GpgFrontend::GpgContext']]], + ['_7egpgfrontendapplication_687',['~GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a32f0e7dda69f7b1e3cc869340736c590',1,'GpgFrontend::UI::GpgFrontendApplication']]], + ['_7egpgkey_688',['~GpgKey',['../classGpgFrontend_1_1GpgKey.html#a1e9223bb1ad8fbb4e769680de39b3697',1,'GpgFrontend::GpgKey']]], + ['_7egpgkeysignature_689',['~GpgKeySignature',['../classGpgFrontend_1_1GpgKeySignature.html#ab4d7044f4e1ddcf0ae0d28be43f0fcb3',1,'GpgFrontend::GpgKeySignature']]], + ['_7egpgsignature_690',['~GpgSignature',['../classGpgFrontend_1_1GpgSignature.html#a44f137a457ac109d145a1cdd8e544e3a',1,'GpgFrontend::GpgSignature']]], + ['_7esettingsobject_691',['~SettingsObject',['../classGpgFrontend_1_1UI_1_1SettingsObject.html#ae71336d240ace35756d1852a46271f6c',1,'GpgFrontend::UI::SettingsObject']]], + ['_7esingletonfunctionobject_692',['~SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html#a8296be8c449f88175285186831b995bc',1,'GpgFrontend::SingletonFunctionObject']]], + ['_7etask_693',['~Task',['../classGpgFrontend_1_1Thread_1_1Task.html#a37766a505662b33ad14672c29e209ea8',1,'GpgFrontend::Thread::Task']]], + ['_7etaskrunner_694',['~TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#ac3e57b59d537e2a75e741d4a5418ae6d',1,'GpgFrontend::Thread::TaskRunner']]] ]; diff --git a/docs/html/search/all_3.js b/docs/html/search/all_3.js index 7a21e10b..0e7b7d09 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#af5c86754836a678c7058e6f633968863',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#acc10569862d1575d9453d1c1aa539242',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 7b17824e..a31e31cc 100644 --- a/docs/html/search/all_7.js +++ b/docs/html/search/all_7.js @@ -17,7 +17,7 @@ var searchData= ['get_5fheap_5fptr_178',['get_heap_ptr',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a0e1ab5e5bf5ef647a30a5ee2884ac63a',1,'GpgFrontend::Thread::Task::DataObject']]], ['get_5fkey_5fin_5fcache_179',['get_key_in_cache',['../classGpgFrontend_1_1GpgKeyGetter.html#ab5196ef4ed5323fc2af70abf801ea260',1,'GpgFrontend::GpgKeyGetter']]], ['get_5fonly_5ffile_5fname_5fwith_5fpath_180',['get_only_file_name_with_path',['../namespaceGpgFrontend.html#a5a2f5fc1ad3de55e41a1b7a388821328',1,'GpgFrontend']]], - ['get_5frestart_5fneeded_181',['get_restart_needed',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#a44f48d9578d62b1786cbf10a8f20a518',1,'GpgFrontend::UI::SettingsDialog::get_restart_needed()'],['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7fdaae01c50d540ecd8672091cdfbcc0',1,'GpgFrontend::UI::MainWindow::get_restart_needed()']]], + ['get_5frestart_5fneeded_181',['get_restart_needed',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#a0d66e360dfbcf79403351459721c3981',1,'GpgFrontend::UI::SettingsDialog::get_restart_needed()'],['../classGpgFrontend_1_1UI_1_1MainWindow.html#a5e95f62dac9fba1ead6ec69c145923db',1,'GpgFrontend::UI::MainWindow::get_restart_needed()']]], ['get_5fselected_5fsubkey_182',['get_selected_subkey',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#aedc5f77d6bf9b780b96552a43b323feb',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], ['get_5fsign_5fselected_183',['get_sign_selected',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a2d7c328d726436061f19a287e481268d',1,'GpgFrontend::UI::KeyPairUIDTab']]], ['get_5fstatus_5fstring_184',['get_status_string',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#ae682853c7eccfd3a6be43765f162f5a4',1,'GpgFrontend::UI::KeyImportDetailDialog']]], @@ -43,10 +43,10 @@ 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_1GpgSubKey.html#a48d3dfbd3aae9523ffbdb916aad8ad53',1,'GpgFrontend::GpgSubKey']]], - ['getid_208',['GetId',['../classGpgFrontend_1_1GpgKey.html#a8930f958f3ca1f5566f63e8c2273837e',1,'GpgFrontend::GpgKey']]], + ['getid_207',['GetId',['../classGpgFrontend_1_1GpgKey.html#a8930f958f3ca1f5566f63e8c2273837e',1,'GpgFrontend::GpgKey']]], + ['getid_208',['GetID',['../classGpgFrontend_1_1GpgSubKey.html#a48d3dfbd3aae9523ffbdb916aad8ad53',1,'GpgFrontend::GpgSubKey']]], ['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()']]], + ['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#ac56d19e0d4b99e7b8a86a017721f3db1',1,'GpgFrontend::SingletonStorageCollection::GetInstance()'],['../classGpgFrontend_1_1CoreCommonUtil.html#a8588dfa6ccb57c055f022b13e2da1e7c',1,'GpgFrontend::CoreCommonUtil::GetInstance()']]], ['getinvalid_211',['GetInvalid',['../classGpgFrontend_1_1GpgUID.html#a388ad367d353edd5eeb6e529977c924c',1,'GpgFrontend::GpgUID']]], ['getkey_212',['GetKey',['../classGpgFrontend_1_1GpgKeyGetter.html#a94243d09c9418c8ebf0c7cdab4a2b7f1',1,'GpgFrontend::GpgKeyGetter']]], ['getkeyid_213',['GetKeyID',['../classGpgFrontend_1_1GpgKeySignature.html#a4277f6deb7c07aaba62fbe8e7867b1fe',1,'GpgFrontend::GpgKeySignature']]], @@ -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#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']]], + ['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']]], ['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/classes_0.js b/docs/html/search/classes_0.js index 09dbb28c..e23f163e 100644 --- a/docs/html/search/classes_0.js +++ b/docs/html/search/classes_0.js @@ -1,7 +1,7 @@ var searchData= [ - ['_5fctx_5fref_5fdeleter_694',['_ctx_ref_deleter',['../structGpgFrontend_1_1GpgContext_1_1__ctx__ref__deleter.html',1,'GpgFrontend::GpgContext']]], - ['_5fdata_5fref_5fdeleter_695',['_data_ref_deleter',['../structGpgFrontend_1_1GpgData_1_1__data__ref__deleter.html',1,'GpgFrontend::GpgData']]], - ['_5fkey_5fref_5fdeleter_696',['_key_ref_deleter',['../structGpgFrontend_1_1GpgKey_1_1__key__ref__deleter.html',1,'GpgFrontend::GpgKey']]], - ['_5fresult_5fref_5fdeletor_697',['_result_ref_deletor',['../structGpgFrontend_1_1__result__ref__deletor.html',1,'GpgFrontend']]] + ['_5fctx_5fref_5fdeleter_695',['_ctx_ref_deleter',['../structGpgFrontend_1_1GpgContext_1_1__ctx__ref__deleter.html',1,'GpgFrontend::GpgContext']]], + ['_5fdata_5fref_5fdeleter_696',['_data_ref_deleter',['../structGpgFrontend_1_1GpgData_1_1__data__ref__deleter.html',1,'GpgFrontend::GpgData']]], + ['_5fkey_5fref_5fdeleter_697',['_key_ref_deleter',['../structGpgFrontend_1_1GpgKey_1_1__key__ref__deleter.html',1,'GpgFrontend::GpgKey']]], + ['_5fresult_5fref_5fdeletor_698',['_result_ref_deletor',['../structGpgFrontend_1_1__result__ref__deletor.html',1,'GpgFrontend']]] ]; diff --git a/docs/html/search/classes_1.js b/docs/html/search/classes_1.js index d371cd5f..44f78b47 100644 --- a/docs/html/search/classes_1.js +++ b/docs/html/search/classes_1.js @@ -1,8 +1,8 @@ var searchData= [ - ['aboutdialog_698',['AboutDialog',['../classGpgFrontend_1_1UI_1_1AboutDialog.html',1,'GpgFrontend::UI']]], - ['advancedtab_699',['AdvancedTab',['../classGpgFrontend_1_1UI_1_1AdvancedTab.html',1,'GpgFrontend::UI']]], - ['appearancetab_700',['AppearanceTab',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html',1,'GpgFrontend::UI']]], - ['archivefileoperator_701',['ArchiveFileOperator',['../classGpgFrontend_1_1ArchiveFileOperator.html',1,'GpgFrontend']]], - ['archivestruct_702',['ArchiveStruct',['../structGpgFrontend_1_1ArchiveStruct.html',1,'GpgFrontend']]] + ['aboutdialog_699',['AboutDialog',['../classGpgFrontend_1_1UI_1_1AboutDialog.html',1,'GpgFrontend::UI']]], + ['advancedtab_700',['AdvancedTab',['../classGpgFrontend_1_1UI_1_1AdvancedTab.html',1,'GpgFrontend::UI']]], + ['appearancetab_701',['AppearanceTab',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html',1,'GpgFrontend::UI']]], + ['archivefileoperator_702',['ArchiveFileOperator',['../classGpgFrontend_1_1ArchiveFileOperator.html',1,'GpgFrontend']]], + ['archivestruct_703',['ArchiveStruct',['../structGpgFrontend_1_1ArchiveStruct.html',1,'GpgFrontend']]] ]; diff --git a/docs/html/search/classes_10.js b/docs/html/search/classes_10.js index 8a1f71d7..6032c8b5 100644 --- a/docs/html/search/classes_10.js +++ b/docs/html/search/classes_10.js @@ -1,10 +1,10 @@ var searchData= [ - ['task_810',['Task',['../classGpgFrontend_1_1Thread_1_1Task.html',1,'GpgFrontend::Thread']]], - ['taskrunner_811',['TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html',1,'GpgFrontend::Thread']]], - ['taskrunnergetter_812',['TaskRunnerGetter',['../classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html',1,'GpgFrontend::Thread']]], - ['testlistedkeyserverthread_813',['TestListedKeyServerThread',['../classTestListedKeyServerThread.html',1,'']]], - ['textedit_814',['TextEdit',['../classGpgFrontend_1_1UI_1_1TextEdit.html',1,'GpgFrontend::UI']]], - ['tofuinfopage_815',['TOFUInfoPage',['../classGpgFrontend_1_1UI_1_1TOFUInfoPage.html',1,'GpgFrontend::UI']]], - ['translatorstab_816',['TranslatorsTab',['../classGpgFrontend_1_1UI_1_1TranslatorsTab.html',1,'GpgFrontend::UI']]] + ['task_811',['Task',['../classGpgFrontend_1_1Thread_1_1Task.html',1,'GpgFrontend::Thread']]], + ['taskrunner_812',['TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html',1,'GpgFrontend::Thread']]], + ['taskrunnergetter_813',['TaskRunnerGetter',['../classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html',1,'GpgFrontend::Thread']]], + ['testlistedkeyserverthread_814',['TestListedKeyServerThread',['../classTestListedKeyServerThread.html',1,'']]], + ['textedit_815',['TextEdit',['../classGpgFrontend_1_1UI_1_1TextEdit.html',1,'GpgFrontend::UI']]], + ['tofuinfopage_816',['TOFUInfoPage',['../classGpgFrontend_1_1UI_1_1TOFUInfoPage.html',1,'GpgFrontend::UI']]], + ['translatorstab_817',['TranslatorsTab',['../classGpgFrontend_1_1UI_1_1TranslatorsTab.html',1,'GpgFrontend::UI']]] ]; diff --git a/docs/html/search/classes_11.js b/docs/html/search/classes_11.js index 61c7f3d6..142e3e8d 100644 --- a/docs/html/search/classes_11.js +++ b/docs/html/search/classes_11.js @@ -1,4 +1,4 @@ var searchData= [ - ['updatetab_817',['UpdateTab',['../classGpgFrontend_1_1UI_1_1UpdateTab.html',1,'GpgFrontend::UI']]] + ['updatetab_818',['UpdateTab',['../classGpgFrontend_1_1UI_1_1UpdateTab.html',1,'GpgFrontend::UI']]] ]; diff --git a/docs/html/search/classes_12.js b/docs/html/search/classes_12.js index bf7aa9a7..7712e6b4 100644 --- a/docs/html/search/classes_12.js +++ b/docs/html/search/classes_12.js @@ -1,6 +1,6 @@ var searchData= [ - ['verifydetailsdialog_818',['VerifyDetailsDialog',['../classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html',1,'GpgFrontend::UI']]], - ['verifykeydetailbox_819',['VerifyKeyDetailBox',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html',1,'GpgFrontend::UI']]], - ['versionchecktask_820',['VersionCheckTask',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html',1,'GpgFrontend::UI']]] + ['verifydetailsdialog_819',['VerifyDetailsDialog',['../classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html',1,'GpgFrontend::UI']]], + ['verifykeydetailbox_820',['VerifyKeyDetailBox',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html',1,'GpgFrontend::UI']]], + ['versionchecktask_821',['VersionCheckTask',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html',1,'GpgFrontend::UI']]] ]; diff --git a/docs/html/search/classes_13.js b/docs/html/search/classes_13.js index 5682b2c6..5cbc8209 100644 --- a/docs/html/search/classes_13.js +++ b/docs/html/search/classes_13.js @@ -1,5 +1,5 @@ var searchData= [ - ['waitingdialog_821',['WaitingDialog',['../classGpgFrontend_1_1UI_1_1WaitingDialog.html',1,'GpgFrontend::UI']]], - ['wizard_822',['Wizard',['../classGpgFrontend_1_1UI_1_1Wizard.html',1,'GpgFrontend::UI']]] + ['waitingdialog_822',['WaitingDialog',['../classGpgFrontend_1_1UI_1_1WaitingDialog.html',1,'GpgFrontend::UI']]], + ['wizard_823',['Wizard',['../classGpgFrontend_1_1UI_1_1Wizard.html',1,'GpgFrontend::UI']]] ]; diff --git a/docs/html/search/classes_2.js b/docs/html/search/classes_2.js index f16a838d..37668209 100644 --- a/docs/html/search/classes_2.js +++ b/docs/html/search/classes_2.js @@ -1,12 +1,12 @@ var searchData= [ - ['channelobject_703',['ChannelObject',['../classGpgFrontend_1_1ChannelObject.html',1,'GpgFrontend']]], - ['charsetoperator_704',['CharsetOperator',['../classGpgFrontend_1_1CharsetOperator.html',1,'GpgFrontend']]], - ['choosepage_705',['ChoosePage',['../classGpgFrontend_1_1UI_1_1ChoosePage.html',1,'GpgFrontend::UI']]], - ['class_706',['class',['../classclass.html',1,'']]], - ['commonutils_707',['CommonUtils',['../classGpgFrontend_1_1UI_1_1CommonUtils.html',1,'GpgFrontend::UI']]], - ['conclusionpage_708',['ConclusionPage',['../classGpgFrontend_1_1UI_1_1ConclusionPage.html',1,'GpgFrontend::UI']]], - ['corecommonutil_709',['CoreCommonUtil',['../classGpgFrontend_1_1CoreCommonUtil.html',1,'GpgFrontend']]], - ['cryptomenu_710',['CryptoMenu',['../structGpgFrontend_1_1UI_1_1MainWindow_1_1CryptoMenu.html',1,'GpgFrontend::UI::MainWindow']]], - ['ctxchecktask_711',['CtxCheckTask',['../classGpgFrontend_1_1Thread_1_1CtxCheckTask.html',1,'GpgFrontend::Thread']]] + ['channelobject_704',['ChannelObject',['../classGpgFrontend_1_1ChannelObject.html',1,'GpgFrontend']]], + ['charsetoperator_705',['CharsetOperator',['../classGpgFrontend_1_1CharsetOperator.html',1,'GpgFrontend']]], + ['choosepage_706',['ChoosePage',['../classGpgFrontend_1_1UI_1_1ChoosePage.html',1,'GpgFrontend::UI']]], + ['class_707',['class',['../classclass.html',1,'']]], + ['commonutils_708',['CommonUtils',['../classGpgFrontend_1_1UI_1_1CommonUtils.html',1,'GpgFrontend::UI']]], + ['conclusionpage_709',['ConclusionPage',['../classGpgFrontend_1_1UI_1_1ConclusionPage.html',1,'GpgFrontend::UI']]], + ['corecommonutil_710',['CoreCommonUtil',['../classGpgFrontend_1_1CoreCommonUtil.html',1,'GpgFrontend']]], + ['cryptomenu_711',['CryptoMenu',['../structGpgFrontend_1_1UI_1_1MainWindow_1_1CryptoMenu.html',1,'GpgFrontend::UI::MainWindow']]], + ['ctxchecktask_712',['CtxCheckTask',['../classGpgFrontend_1_1Thread_1_1CtxCheckTask.html',1,'GpgFrontend::Thread']]] ]; diff --git a/docs/html/search/classes_3.js b/docs/html/search/classes_3.js index 14c65885..fadf0a86 100644 --- a/docs/html/search/classes_3.js +++ b/docs/html/search/classes_3.js @@ -1,6 +1,6 @@ var searchData= [ - ['dataobject_712',['DataObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html',1,'GpgFrontend::Thread::Task']]], - ['dataobjectoperator_713',['DataObjectOperator',['../classGpgFrontend_1_1DataObjectOperator.html',1,'GpgFrontend']]], - ['destructor_714',['Destructor',['../structGpgFrontend_1_1Thread_1_1Task_1_1DataObject_1_1Destructor.html',1,'GpgFrontend::Thread::Task::DataObject']]] + ['dataobject_713',['DataObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html',1,'GpgFrontend::Thread::Task']]], + ['dataobjectoperator_714',['DataObjectOperator',['../classGpgFrontend_1_1DataObjectOperator.html',1,'GpgFrontend']]], + ['destructor_715',['Destructor',['../structGpgFrontend_1_1Thread_1_1Task_1_1DataObject_1_1Destructor.html',1,'GpgFrontend::Thread::Task::DataObject']]] ]; diff --git a/docs/html/search/classes_4.js b/docs/html/search/classes_4.js index 163328e2..60209334 100644 --- a/docs/html/search/classes_4.js +++ b/docs/html/search/classes_4.js @@ -1,4 +1,4 @@ var searchData= [ - ['exportkeypackagedialog_715',['ExportKeyPackageDialog',['../classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html',1,'GpgFrontend::UI']]] + ['exportkeypackagedialog_716',['ExportKeyPackageDialog',['../classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html',1,'GpgFrontend::UI']]] ]; diff --git a/docs/html/search/classes_5.js b/docs/html/search/classes_5.js index 440e8e2d..cc18d6e2 100644 --- a/docs/html/search/classes_5.js +++ b/docs/html/search/classes_5.js @@ -1,7 +1,7 @@ var searchData= [ - ['fileoperator_716',['FileOperator',['../classGpgFrontend_1_1FileOperator.html',1,'GpgFrontend']]], - ['filepage_717',['FilePage',['../classGpgFrontend_1_1UI_1_1FilePage.html',1,'GpgFrontend::UI']]], - ['filereadtask_718',['FileReadTask',['../classGpgFrontend_1_1UI_1_1FileReadTask.html',1,'GpgFrontend::UI']]], - ['findwidget_719',['FindWidget',['../classGpgFrontend_1_1UI_1_1FindWidget.html',1,'GpgFrontend::UI']]] + ['fileoperator_717',['FileOperator',['../classGpgFrontend_1_1FileOperator.html',1,'GpgFrontend']]], + ['filepage_718',['FilePage',['../classGpgFrontend_1_1UI_1_1FilePage.html',1,'GpgFrontend::UI']]], + ['filereadtask_719',['FileReadTask',['../classGpgFrontend_1_1UI_1_1FileReadTask.html',1,'GpgFrontend::UI']]], + ['findwidget_720',['FindWidget',['../classGpgFrontend_1_1UI_1_1FindWidget.html',1,'GpgFrontend::UI']]] ]; diff --git a/docs/html/search/classes_6.js b/docs/html/search/classes_6.js index c71b3e53..5156d1d7 100644 --- a/docs/html/search/classes_6.js +++ b/docs/html/search/classes_6.js @@ -1,36 +1,36 @@ var searchData= [ - ['generaldialog_720',['GeneralDialog',['../classGpgFrontend_1_1UI_1_1GeneralDialog.html',1,'GpgFrontend::UI']]], - ['generalmainwindow_721',['GeneralMainWindow',['../classGpgFrontend_1_1UI_1_1GeneralMainWindow.html',1,'GpgFrontend::UI']]], - ['generaltab_722',['GeneralTab',['../classGpgFrontend_1_1UI_1_1GeneralTab.html',1,'GpgFrontend::UI']]], - ['genkeyinfo_723',['GenKeyInfo',['../classGpgFrontend_1_1GenKeyInfo.html',1,'GpgFrontend']]], - ['globalsettingstation_724',['GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html',1,'GpgFrontend']]], - ['gnupgtab_725',['GnupgTab',['../classGpgFrontend_1_1UI_1_1GnupgTab.html',1,'GpgFrontend::UI']]], - ['gpgbasicoperator_726',['GpgBasicOperator',['../classGpgFrontend_1_1GpgBasicOperator.html',1,'GpgFrontend']]], - ['gpgcommandexecutor_727',['GpgCommandExecutor',['../classGpgFrontend_1_1GpgCommandExecutor.html',1,'GpgFrontend']]], - ['gpgconstants_728',['GpgConstants',['../classGpgFrontend_1_1GpgConstants.html',1,'GpgFrontend']]], - ['gpgcontext_729',['GpgContext',['../classGpgFrontend_1_1GpgContext.html',1,'GpgFrontend']]], - ['gpgcontextinitargs_730',['GpgContextInitArgs',['../structGpgFrontend_1_1GpgContextInitArgs.html',1,'GpgFrontend']]], - ['gpgdata_731',['GpgData',['../classGpgFrontend_1_1GpgData.html',1,'GpgFrontend']]], - ['gpgdecryptresultanalyse_732',['GpgDecryptResultAnalyse',['../classGpgFrontend_1_1GpgDecryptResultAnalyse.html',1,'GpgFrontend']]], - ['gpgencryptresultanalyse_733',['GpgEncryptResultAnalyse',['../classGpgFrontend_1_1GpgEncryptResultAnalyse.html',1,'GpgFrontend']]], - ['gpgfileopera_734',['GpgFileOpera',['../classGpgFrontend_1_1GpgFileOpera.html',1,'GpgFrontend']]], - ['gpgfrontendapplication_735',['GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html',1,'GpgFrontend::UI']]], - ['gpgimportedkey_736',['GpgImportedKey',['../classGpgFrontend_1_1GpgImportedKey.html',1,'GpgFrontend']]], - ['gpgimportinformation_737',['GpgImportInformation',['../classGpgFrontend_1_1GpgImportInformation.html',1,'GpgFrontend']]], - ['gpginfo_738',['GpgInfo',['../classGpgFrontend_1_1GpgInfo.html',1,'GpgFrontend']]], - ['gpgkey_739',['GpgKey',['../classGpgFrontend_1_1GpgKey.html',1,'GpgFrontend']]], - ['gpgkeygetter_740',['GpgKeyGetter',['../classGpgFrontend_1_1GpgKeyGetter.html',1,'GpgFrontend']]], - ['gpgkeyimportexporter_741',['GpgKeyImportExporter',['../classGpgFrontend_1_1GpgKeyImportExporter.html',1,'GpgFrontend']]], - ['gpgkeymanager_742',['GpgKeyManager',['../classGpgFrontend_1_1GpgKeyManager.html',1,'GpgFrontend']]], - ['gpgkeyopera_743',['GpgKeyOpera',['../classGpgFrontend_1_1GpgKeyOpera.html',1,'GpgFrontend']]], - ['gpgkeysignature_744',['GpgKeySignature',['../classGpgFrontend_1_1GpgKeySignature.html',1,'GpgFrontend']]], - ['gpgresultanalyse_745',['GpgResultAnalyse',['../classGpgFrontend_1_1GpgResultAnalyse.html',1,'GpgFrontend']]], - ['gpgsignature_746',['GpgSignature',['../classGpgFrontend_1_1GpgSignature.html',1,'GpgFrontend']]], - ['gpgsignresultanalyse_747',['GpgSignResultAnalyse',['../classGpgFrontend_1_1GpgSignResultAnalyse.html',1,'GpgFrontend']]], - ['gpgsubkey_748',['GpgSubKey',['../classGpgFrontend_1_1GpgSubKey.html',1,'GpgFrontend']]], - ['gpgtofuinfo_749',['GpgTOFUInfo',['../classGpgFrontend_1_1GpgTOFUInfo.html',1,'GpgFrontend']]], - ['gpguid_750',['GpgUID',['../classGpgFrontend_1_1GpgUID.html',1,'GpgFrontend']]], - ['gpguidoperator_751',['GpgUIDOperator',['../classGpgFrontend_1_1GpgUIDOperator.html',1,'GpgFrontend']]], - ['gpgverifyresultanalyse_752',['GpgVerifyResultAnalyse',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html',1,'GpgFrontend']]] + ['generaldialog_721',['GeneralDialog',['../classGpgFrontend_1_1UI_1_1GeneralDialog.html',1,'GpgFrontend::UI']]], + ['generalmainwindow_722',['GeneralMainWindow',['../classGpgFrontend_1_1UI_1_1GeneralMainWindow.html',1,'GpgFrontend::UI']]], + ['generaltab_723',['GeneralTab',['../classGpgFrontend_1_1UI_1_1GeneralTab.html',1,'GpgFrontend::UI']]], + ['genkeyinfo_724',['GenKeyInfo',['../classGpgFrontend_1_1GenKeyInfo.html',1,'GpgFrontend']]], + ['globalsettingstation_725',['GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html',1,'GpgFrontend']]], + ['gnupgtab_726',['GnupgTab',['../classGpgFrontend_1_1UI_1_1GnupgTab.html',1,'GpgFrontend::UI']]], + ['gpgbasicoperator_727',['GpgBasicOperator',['../classGpgFrontend_1_1GpgBasicOperator.html',1,'GpgFrontend']]], + ['gpgcommandexecutor_728',['GpgCommandExecutor',['../classGpgFrontend_1_1GpgCommandExecutor.html',1,'GpgFrontend']]], + ['gpgconstants_729',['GpgConstants',['../classGpgFrontend_1_1GpgConstants.html',1,'GpgFrontend']]], + ['gpgcontext_730',['GpgContext',['../classGpgFrontend_1_1GpgContext.html',1,'GpgFrontend']]], + ['gpgcontextinitargs_731',['GpgContextInitArgs',['../structGpgFrontend_1_1GpgContextInitArgs.html',1,'GpgFrontend']]], + ['gpgdata_732',['GpgData',['../classGpgFrontend_1_1GpgData.html',1,'GpgFrontend']]], + ['gpgdecryptresultanalyse_733',['GpgDecryptResultAnalyse',['../classGpgFrontend_1_1GpgDecryptResultAnalyse.html',1,'GpgFrontend']]], + ['gpgencryptresultanalyse_734',['GpgEncryptResultAnalyse',['../classGpgFrontend_1_1GpgEncryptResultAnalyse.html',1,'GpgFrontend']]], + ['gpgfileopera_735',['GpgFileOpera',['../classGpgFrontend_1_1GpgFileOpera.html',1,'GpgFrontend']]], + ['gpgfrontendapplication_736',['GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html',1,'GpgFrontend::UI']]], + ['gpgimportedkey_737',['GpgImportedKey',['../classGpgFrontend_1_1GpgImportedKey.html',1,'GpgFrontend']]], + ['gpgimportinformation_738',['GpgImportInformation',['../classGpgFrontend_1_1GpgImportInformation.html',1,'GpgFrontend']]], + ['gpginfo_739',['GpgInfo',['../classGpgFrontend_1_1GpgInfo.html',1,'GpgFrontend']]], + ['gpgkey_740',['GpgKey',['../classGpgFrontend_1_1GpgKey.html',1,'GpgFrontend']]], + ['gpgkeygetter_741',['GpgKeyGetter',['../classGpgFrontend_1_1GpgKeyGetter.html',1,'GpgFrontend']]], + ['gpgkeyimportexporter_742',['GpgKeyImportExporter',['../classGpgFrontend_1_1GpgKeyImportExporter.html',1,'GpgFrontend']]], + ['gpgkeymanager_743',['GpgKeyManager',['../classGpgFrontend_1_1GpgKeyManager.html',1,'GpgFrontend']]], + ['gpgkeyopera_744',['GpgKeyOpera',['../classGpgFrontend_1_1GpgKeyOpera.html',1,'GpgFrontend']]], + ['gpgkeysignature_745',['GpgKeySignature',['../classGpgFrontend_1_1GpgKeySignature.html',1,'GpgFrontend']]], + ['gpgresultanalyse_746',['GpgResultAnalyse',['../classGpgFrontend_1_1GpgResultAnalyse.html',1,'GpgFrontend']]], + ['gpgsignature_747',['GpgSignature',['../classGpgFrontend_1_1GpgSignature.html',1,'GpgFrontend']]], + ['gpgsignresultanalyse_748',['GpgSignResultAnalyse',['../classGpgFrontend_1_1GpgSignResultAnalyse.html',1,'GpgFrontend']]], + ['gpgsubkey_749',['GpgSubKey',['../classGpgFrontend_1_1GpgSubKey.html',1,'GpgFrontend']]], + ['gpgtofuinfo_750',['GpgTOFUInfo',['../classGpgFrontend_1_1GpgTOFUInfo.html',1,'GpgFrontend']]], + ['gpguid_751',['GpgUID',['../classGpgFrontend_1_1GpgUID.html',1,'GpgFrontend']]], + ['gpguidoperator_752',['GpgUIDOperator',['../classGpgFrontend_1_1GpgUIDOperator.html',1,'GpgFrontend']]], + ['gpgverifyresultanalyse_753',['GpgVerifyResultAnalyse',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html',1,'GpgFrontend']]] ]; diff --git a/docs/html/search/classes_7.js b/docs/html/search/classes_7.js index 904ff5f1..5477c432 100644 --- a/docs/html/search/classes_7.js +++ b/docs/html/search/classes_7.js @@ -1,4 +1,4 @@ var searchData= [ - ['helppage_753',['HelpPage',['../classGpgFrontend_1_1UI_1_1HelpPage.html',1,'GpgFrontend::UI']]] + ['helppage_754',['HelpPage',['../classGpgFrontend_1_1UI_1_1HelpPage.html',1,'GpgFrontend::UI']]] ]; diff --git a/docs/html/search/classes_8.js b/docs/html/search/classes_8.js index 8301095e..ee642323 100644 --- a/docs/html/search/classes_8.js +++ b/docs/html/search/classes_8.js @@ -1,6 +1,6 @@ var searchData= [ - ['infoboardwidget_754',['InfoBoardWidget',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html',1,'GpgFrontend::UI']]], - ['infotab_755',['InfoTab',['../classGpgFrontend_1_1UI_1_1InfoTab.html',1,'GpgFrontend::UI']]], - ['intropage_756',['IntroPage',['../classGpgFrontend_1_1UI_1_1IntroPage.html',1,'GpgFrontend::UI']]] + ['infoboardwidget_755',['InfoBoardWidget',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html',1,'GpgFrontend::UI']]], + ['infotab_756',['InfoTab',['../classGpgFrontend_1_1UI_1_1InfoTab.html',1,'GpgFrontend::UI']]], + ['intropage_757',['IntroPage',['../classGpgFrontend_1_1UI_1_1IntroPage.html',1,'GpgFrontend::UI']]] ]; diff --git a/docs/html/search/classes_9.js b/docs/html/search/classes_9.js index 9de420c4..9e6ce697 100644 --- a/docs/html/search/classes_9.js +++ b/docs/html/search/classes_9.js @@ -1,26 +1,26 @@ var searchData= [ - ['keydetailsdialog_757',['KeyDetailsDialog',['../classGpgFrontend_1_1UI_1_1KeyDetailsDialog.html',1,'GpgFrontend::UI']]], - ['keygendialog_758',['KeyGenDialog',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html',1,'GpgFrontend::UI']]], - ['keygenpage_759',['KeyGenPage',['../classGpgFrontend_1_1UI_1_1KeyGenPage.html',1,'GpgFrontend::UI']]], - ['keyimportdetaildialog_760',['KeyImportDetailDialog',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html',1,'GpgFrontend::UI']]], - ['keylist_761',['KeyList',['../classGpgFrontend_1_1UI_1_1KeyList.html',1,'GpgFrontend::UI']]], - ['keylistcolumn_762',['KeyListColumn',['../structGpgFrontend_1_1UI_1_1KeyListColumn.html',1,'GpgFrontend::UI']]], - ['keylistrow_763',['KeyListRow',['../structGpgFrontend_1_1UI_1_1KeyListRow.html',1,'GpgFrontend::UI']]], - ['keymenuability_764',['KeyMenuAbility',['../structGpgFrontend_1_1UI_1_1KeyMenuAbility.html',1,'GpgFrontend::UI']]], - ['keymgmt_765',['KeyMgmt',['../classGpgFrontend_1_1UI_1_1KeyMgmt.html',1,'GpgFrontend::UI']]], - ['keynewuiddialog_766',['KeyNewUIDDialog',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html',1,'GpgFrontend::UI']]], - ['keypackageoperator_767',['KeyPackageOperator',['../classGpgFrontend_1_1KeyPackageOperator.html',1,'GpgFrontend']]], - ['keypairdetailtab_768',['KeyPairDetailTab',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html',1,'GpgFrontend::UI']]], - ['keypairoperatab_769',['KeyPairOperaTab',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html',1,'GpgFrontend::UI']]], - ['keypairsubkeytab_770',['KeyPairSubkeyTab',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html',1,'GpgFrontend::UI']]], - ['keypairuidtab_771',['KeyPairUIDTab',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html',1,'GpgFrontend::UI']]], - ['keyserverimportdialog_772',['KeyServerImportDialog',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html',1,'GpgFrontend::UI']]], - ['keyserverimporttask_773',['KeyServerImportTask',['../classGpgFrontend_1_1UI_1_1KeyServerImportTask.html',1,'GpgFrontend::UI']]], - ['keyserversearchtask_774',['KeyServerSearchTask',['../classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html',1,'GpgFrontend::UI']]], - ['keyservertab_775',['KeyserverTab',['../classGpgFrontend_1_1UI_1_1KeyserverTab.html',1,'GpgFrontend::UI']]], - ['keysetexpiredatedialog_776',['KeySetExpireDateDialog',['../classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html',1,'GpgFrontend::UI']]], - ['keytable_777',['KeyTable',['../structGpgFrontend_1_1UI_1_1KeyTable.html',1,'GpgFrontend::UI']]], - ['keyuidsigndialog_778',['KeyUIDSignDialog',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html',1,'GpgFrontend::UI']]], - ['keyuploaddialog_779',['KeyUploadDialog',['../classGpgFrontend_1_1UI_1_1KeyUploadDialog.html',1,'GpgFrontend::UI']]] + ['keydetailsdialog_758',['KeyDetailsDialog',['../classGpgFrontend_1_1UI_1_1KeyDetailsDialog.html',1,'GpgFrontend::UI']]], + ['keygendialog_759',['KeyGenDialog',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html',1,'GpgFrontend::UI']]], + ['keygenpage_760',['KeyGenPage',['../classGpgFrontend_1_1UI_1_1KeyGenPage.html',1,'GpgFrontend::UI']]], + ['keyimportdetaildialog_761',['KeyImportDetailDialog',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html',1,'GpgFrontend::UI']]], + ['keylist_762',['KeyList',['../classGpgFrontend_1_1UI_1_1KeyList.html',1,'GpgFrontend::UI']]], + ['keylistcolumn_763',['KeyListColumn',['../structGpgFrontend_1_1UI_1_1KeyListColumn.html',1,'GpgFrontend::UI']]], + ['keylistrow_764',['KeyListRow',['../structGpgFrontend_1_1UI_1_1KeyListRow.html',1,'GpgFrontend::UI']]], + ['keymenuability_765',['KeyMenuAbility',['../structGpgFrontend_1_1UI_1_1KeyMenuAbility.html',1,'GpgFrontend::UI']]], + ['keymgmt_766',['KeyMgmt',['../classGpgFrontend_1_1UI_1_1KeyMgmt.html',1,'GpgFrontend::UI']]], + ['keynewuiddialog_767',['KeyNewUIDDialog',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html',1,'GpgFrontend::UI']]], + ['keypackageoperator_768',['KeyPackageOperator',['../classGpgFrontend_1_1KeyPackageOperator.html',1,'GpgFrontend']]], + ['keypairdetailtab_769',['KeyPairDetailTab',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html',1,'GpgFrontend::UI']]], + ['keypairoperatab_770',['KeyPairOperaTab',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html',1,'GpgFrontend::UI']]], + ['keypairsubkeytab_771',['KeyPairSubkeyTab',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html',1,'GpgFrontend::UI']]], + ['keypairuidtab_772',['KeyPairUIDTab',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html',1,'GpgFrontend::UI']]], + ['keyserverimportdialog_773',['KeyServerImportDialog',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html',1,'GpgFrontend::UI']]], + ['keyserverimporttask_774',['KeyServerImportTask',['../classGpgFrontend_1_1UI_1_1KeyServerImportTask.html',1,'GpgFrontend::UI']]], + ['keyserversearchtask_775',['KeyServerSearchTask',['../classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html',1,'GpgFrontend::UI']]], + ['keyservertab_776',['KeyserverTab',['../classGpgFrontend_1_1UI_1_1KeyserverTab.html',1,'GpgFrontend::UI']]], + ['keysetexpiredatedialog_777',['KeySetExpireDateDialog',['../classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html',1,'GpgFrontend::UI']]], + ['keytable_778',['KeyTable',['../structGpgFrontend_1_1UI_1_1KeyTable.html',1,'GpgFrontend::UI']]], + ['keyuidsigndialog_779',['KeyUIDSignDialog',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html',1,'GpgFrontend::UI']]], + ['keyuploaddialog_780',['KeyUploadDialog',['../classGpgFrontend_1_1UI_1_1KeyUploadDialog.html',1,'GpgFrontend::UI']]] ]; diff --git a/docs/html/search/classes_a.js b/docs/html/search/classes_a.js index 020af827..7de96d3c 100644 --- a/docs/html/search/classes_a.js +++ b/docs/html/search/classes_a.js @@ -1,4 +1,4 @@ var searchData= [ - ['listedkeyservertesttask_780',['ListedKeyServerTestTask',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html',1,'GpgFrontend::UI']]] + ['listedkeyservertesttask_781',['ListedKeyServerTestTask',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html',1,'GpgFrontend::UI']]] ]; diff --git a/docs/html/search/classes_b.js b/docs/html/search/classes_b.js index 676ab696..65aa006d 100644 --- a/docs/html/search/classes_b.js +++ b/docs/html/search/classes_b.js @@ -1,4 +1,4 @@ var searchData= [ - ['mainwindow_781',['MainWindow',['../classGpgFrontend_1_1UI_1_1MainWindow.html',1,'GpgFrontend::UI']]] + ['mainwindow_782',['MainWindow',['../classGpgFrontend_1_1UI_1_1MainWindow.html',1,'GpgFrontend::UI']]] ]; diff --git a/docs/html/search/classes_c.js b/docs/html/search/classes_c.js index 09536f02..19345732 100644 --- a/docs/html/search/classes_c.js +++ b/docs/html/search/classes_c.js @@ -1,4 +1,4 @@ var searchData= [ - ['networktab_782',['NetworkTab',['../classGpgFrontend_1_1UI_1_1NetworkTab.html',1,'GpgFrontend::UI']]] + ['networktab_783',['NetworkTab',['../classGpgFrontend_1_1UI_1_1NetworkTab.html',1,'GpgFrontend::UI']]] ]; diff --git a/docs/html/search/classes_d.js b/docs/html/search/classes_d.js index 68b3824f..c75de3f4 100644 --- a/docs/html/search/classes_d.js +++ b/docs/html/search/classes_d.js @@ -1,6 +1,6 @@ var searchData= [ - ['passphrasegenerator_783',['PassphraseGenerator',['../classGpgFrontend_1_1PassphraseGenerator.html',1,'GpgFrontend']]], - ['plaintexteditorpage_784',['PlainTextEditorPage',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html',1,'GpgFrontend::UI']]], - ['proxyconnectiontestthread_785',['ProxyConnectionTestThread',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.html',1,'GpgFrontend::UI::ProxyConnectionTestThread'],['../classProxyConnectionTestThread.html',1,'ProxyConnectionTestThread']]] + ['passphrasegenerator_784',['PassphraseGenerator',['../classGpgFrontend_1_1PassphraseGenerator.html',1,'GpgFrontend']]], + ['plaintexteditorpage_785',['PlainTextEditorPage',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html',1,'GpgFrontend::UI']]], + ['proxyconnectiontestthread_786',['ProxyConnectionTestThread',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.html',1,'GpgFrontend::UI::ProxyConnectionTestThread'],['../classProxyConnectionTestThread.html',1,'ProxyConnectionTestThread']]] ]; diff --git a/docs/html/search/classes_e.js b/docs/html/search/classes_e.js index bbc7c5dc..629f90ab 100644 --- a/docs/html/search/classes_e.js +++ b/docs/html/search/classes_e.js @@ -1,4 +1,4 @@ var searchData= [ - ['quitdialog_786',['QuitDialog',['../classGpgFrontend_1_1UI_1_1QuitDialog.html',1,'GpgFrontend::UI']]] + ['quitdialog_787',['QuitDialog',['../classGpgFrontend_1_1UI_1_1QuitDialog.html',1,'GpgFrontend::UI']]] ]; diff --git a/docs/html/search/classes_f.js b/docs/html/search/classes_f.js index 1f213051..9008e0d2 100644 --- a/docs/html/search/classes_f.js +++ b/docs/html/search/classes_f.js @@ -1,26 +1,26 @@ var searchData= [ - ['settingsdialog_787',['SettingsDialog',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html',1,'GpgFrontend::UI']]], - ['settingsobject_788',['SettingsObject',['../classGpgFrontend_1_1UI_1_1SettingsObject.html',1,'GpgFrontend::UI']]], - ['signalstation_789',['SignalStation',['../classGpgFrontend_1_1UI_1_1SignalStation.html',1,'GpgFrontend::UI']]], - ['signaturedetailsdialog_790',['SignatureDetailsDialog',['../classSignatureDetailsDialog.html',1,'']]], - ['signerspicker_791',['SignersPicker',['../classGpgFrontend_1_1UI_1_1SignersPicker.html',1,'GpgFrontend::UI']]], - ['singletonfunctionobject_792',['SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20dataobjectoperator_20_3e_793',['SingletonFunctionObject< DataObjectOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20globalsettingstation_20_3e_794',['SingletonFunctionObject< GlobalSettingStation >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgbasicoperator_20_3e_795',['SingletonFunctionObject< GpgBasicOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgcommandexecutor_20_3e_796',['SingletonFunctionObject< GpgCommandExecutor >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgcontext_20_3e_797',['SingletonFunctionObject< GpgContext >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgfileopera_20_3e_798',['SingletonFunctionObject< GpgFileOpera >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgkeygetter_20_3e_799',['SingletonFunctionObject< GpgKeyGetter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgkeyimportexporter_20_3e_800',['SingletonFunctionObject< GpgKeyImportExporter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgkeymanager_20_3e_801',['SingletonFunctionObject< GpgKeyManager >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgkeyopera_20_3e_802',['SingletonFunctionObject< GpgKeyOpera >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpguidoperator_20_3e_803',['SingletonFunctionObject< GpgUIDOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20passphrasegenerator_20_3e_804',['SingletonFunctionObject< PassphraseGenerator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20taskrunnergetter_20_3e_805',['SingletonFunctionObject< TaskRunnerGetter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonstorage_806',['SingletonStorage',['../classGpgFrontend_1_1SingletonStorage.html',1,'GpgFrontend']]], - ['singletonstoragecollection_807',['SingletonStorageCollection',['../classGpgFrontend_1_1SingletonStorageCollection.html',1,'GpgFrontend']]], - ['softwareversion_808',['SoftwareVersion',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html',1,'GpgFrontend::UI']]], - ['subkeygeneratedialog_809',['SubkeyGenerateDialog',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html',1,'GpgFrontend::UI']]] + ['settingsdialog_788',['SettingsDialog',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html',1,'GpgFrontend::UI']]], + ['settingsobject_789',['SettingsObject',['../classGpgFrontend_1_1UI_1_1SettingsObject.html',1,'GpgFrontend::UI']]], + ['signalstation_790',['SignalStation',['../classGpgFrontend_1_1UI_1_1SignalStation.html',1,'GpgFrontend::UI']]], + ['signaturedetailsdialog_791',['SignatureDetailsDialog',['../classSignatureDetailsDialog.html',1,'']]], + ['signerspicker_792',['SignersPicker',['../classGpgFrontend_1_1UI_1_1SignersPicker.html',1,'GpgFrontend::UI']]], + ['singletonfunctionobject_793',['SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20dataobjectoperator_20_3e_794',['SingletonFunctionObject< DataObjectOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20globalsettingstation_20_3e_795',['SingletonFunctionObject< GlobalSettingStation >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgbasicoperator_20_3e_796',['SingletonFunctionObject< GpgBasicOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgcommandexecutor_20_3e_797',['SingletonFunctionObject< GpgCommandExecutor >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgcontext_20_3e_798',['SingletonFunctionObject< GpgContext >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgfileopera_20_3e_799',['SingletonFunctionObject< GpgFileOpera >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgkeygetter_20_3e_800',['SingletonFunctionObject< GpgKeyGetter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgkeyimportexporter_20_3e_801',['SingletonFunctionObject< GpgKeyImportExporter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgkeymanager_20_3e_802',['SingletonFunctionObject< GpgKeyManager >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgkeyopera_20_3e_803',['SingletonFunctionObject< GpgKeyOpera >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpguidoperator_20_3e_804',['SingletonFunctionObject< GpgUIDOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20passphrasegenerator_20_3e_805',['SingletonFunctionObject< PassphraseGenerator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20taskrunnergetter_20_3e_806',['SingletonFunctionObject< TaskRunnerGetter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonstorage_807',['SingletonStorage',['../classGpgFrontend_1_1SingletonStorage.html',1,'GpgFrontend']]], + ['singletonstoragecollection_808',['SingletonStorageCollection',['../classGpgFrontend_1_1SingletonStorageCollection.html',1,'GpgFrontend']]], + ['softwareversion_809',['SoftwareVersion',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html',1,'GpgFrontend::UI']]], + ['subkeygeneratedialog_810',['SubkeyGenerateDialog',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html',1,'GpgFrontend::UI']]] ]; diff --git a/docs/html/search/enums_0.js b/docs/html/search/enums_0.js index c3d29d05..0a9729d7 100644 --- a/docs/html/search/enums_0.js +++ b/docs/html/search/enums_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['infoboardstatus_1470',['InfoBoardStatus',['../namespaceGpgFrontend_1_1UI.html#acbaebd342a317b1f067942e5144bb00d',1,'GpgFrontend::UI']]] + ['infoboardstatus_1472',['InfoBoardStatus',['../namespaceGpgFrontend_1_1UI.html#acbaebd342a317b1f067942e5144bb00d',1,'GpgFrontend::UI']]] ]; diff --git a/docs/html/search/functions_0.js b/docs/html/search/functions_0.js index 9c183ea8..b8edee72 100644 --- a/docs/html/search/functions_0.js +++ b/docs/html/search/functions_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['_5fnew_5fresult_827',['_new_result',['../namespaceGpgFrontend.html#a2a6566f59b4be29e453a1edd93f6a337',1,'GpgFrontend::_new_result(gpgme_encrypt_result_t &&result)'],['../namespaceGpgFrontend.html#aaf7ddbd50cd4f16b7d2a997c03b20933',1,'GpgFrontend::_new_result(gpgme_decrypt_result_t &&result)'],['../namespaceGpgFrontend.html#acb5dd82fc7d0428bafe34ed304dc15d1',1,'GpgFrontend::_new_result(gpgme_sign_result_t &&result)'],['../namespaceGpgFrontend.html#ae3f2947210ad3e11269ebac355f47492',1,'GpgFrontend::_new_result(gpgme_verify_result_t &&result)'],['../namespaceGpgFrontend.html#af909eb3cf2690d23939e394a461e48e9',1,'GpgFrontend::_new_result(gpgme_genkey_result_t &&result)']]] + ['_5fnew_5fresult_828',['_new_result',['../namespaceGpgFrontend.html#a2a6566f59b4be29e453a1edd93f6a337',1,'GpgFrontend::_new_result(gpgme_encrypt_result_t &&result)'],['../namespaceGpgFrontend.html#aaf7ddbd50cd4f16b7d2a997c03b20933',1,'GpgFrontend::_new_result(gpgme_decrypt_result_t &&result)'],['../namespaceGpgFrontend.html#acb5dd82fc7d0428bafe34ed304dc15d1',1,'GpgFrontend::_new_result(gpgme_sign_result_t &&result)'],['../namespaceGpgFrontend.html#ae3f2947210ad3e11269ebac355f47492',1,'GpgFrontend::_new_result(gpgme_verify_result_t &&result)'],['../namespaceGpgFrontend.html#af909eb3cf2690d23939e394a461e48e9',1,'GpgFrontend::_new_result(gpgme_genkey_result_t &&result)']]] ]; diff --git a/docs/html/search/functions_1.js b/docs/html/search/functions_1.js index 6211ce26..b7c88277 100644 --- a/docs/html/search/functions_1.js +++ b/docs/html/search/functions_1.js @@ -1,15 +1,15 @@ var searchData= [ - ['aboutdialog_828',['AboutDialog',['../classGpgFrontend_1_1UI_1_1AboutDialog.html#ab04683ab4c4d682af1e259705c60d85a',1,'GpgFrontend::UI::AboutDialog']]], - ['addlistgrouptab_829',['AddListGroupTab',['../classGpgFrontend_1_1UI_1_1KeyList.html#a73ddb7feb1f70eac44e038c3dc925fec',1,'GpgFrontend::UI::KeyList']]], - ['addmenuaction_830',['AddMenuAction',['../classGpgFrontend_1_1UI_1_1KeyList.html#aa961e3ba3c48f84dea4bb7ab4f756886',1,'GpgFrontend::UI::KeyList']]], - ['addoptionalaction_831',['AddOptionalAction',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a456f15315a03107f7757d84362c1af71',1,'GpgFrontend::UI::InfoBoardWidget']]], - ['adduid_832',['AddUID',['../classGpgFrontend_1_1GpgUIDOperator.html#a7c0de570de59d4ebc6c0bed681119bf7',1,'GpgFrontend::GpgUIDOperator::AddUID(const GpgKey &key, const std::string &uid)'],['../classGpgFrontend_1_1GpgUIDOperator.html#a672bbf74abac9140233c4e1c7864d15d',1,'GpgFrontend::GpgUIDOperator::AddUID(const GpgKey &key, const std::string &name, const std::string &comment, const std::string &email)']]], - ['aes_5f256_5fcbc_5fdecrypt_833',['aes_256_cbc_decrypt',['../namespaceGpgFrontend_1_1RawAPI.html#a2e388ecafc7b859eda84b4e3c4e2576f',1,'GpgFrontend::RawAPI']]], - ['aes_5f256_5fcbc_5fencrypt_834',['aes_256_cbc_encrypt',['../namespaceGpgFrontend_1_1RawAPI.html#aa2bc88cf78b8da893f1b5c7e2e8ccf42',1,'GpgFrontend::RawAPI']]], - ['aes_5f256_5fcbc_5finit_835',['aes_256_cbc_init',['../namespaceGpgFrontend_1_1RawAPI.html#a1f2f6c82e9c904c3875a123a65564697',1,'GpgFrontend::RawAPI']]], - ['appearancetab_836',['AppearanceTab',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html#abfca670540bc0409b9be4459ee6a3b6c',1,'GpgFrontend::UI::AppearanceTab']]], - ['appendobject_837',['AppendObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a521dccfd42e13769b4edc4286318cc4c',1,'GpgFrontend::Thread::Task::DataObject::AppendObject(T &&obj)'],['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a5812bb84c6241e89f8b8b04d2a2f3b55',1,'GpgFrontend::Thread::Task::DataObject::AppendObject(T *obj)']]], - ['associatetabwidget_838',['AssociateTabWidget',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#adfa4acd435d2ec29f951f4e7e6a43f38',1,'GpgFrontend::UI::InfoBoardWidget']]], - ['associatetextedit_839',['AssociateTextEdit',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a4fd6f91eb435feb41ae93e44485646ab',1,'GpgFrontend::UI::InfoBoardWidget']]] + ['aboutdialog_829',['AboutDialog',['../classGpgFrontend_1_1UI_1_1AboutDialog.html#ab04683ab4c4d682af1e259705c60d85a',1,'GpgFrontend::UI::AboutDialog']]], + ['addlistgrouptab_830',['AddListGroupTab',['../classGpgFrontend_1_1UI_1_1KeyList.html#a73ddb7feb1f70eac44e038c3dc925fec',1,'GpgFrontend::UI::KeyList']]], + ['addmenuaction_831',['AddMenuAction',['../classGpgFrontend_1_1UI_1_1KeyList.html#aa961e3ba3c48f84dea4bb7ab4f756886',1,'GpgFrontend::UI::KeyList']]], + ['addoptionalaction_832',['AddOptionalAction',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a456f15315a03107f7757d84362c1af71',1,'GpgFrontend::UI::InfoBoardWidget']]], + ['adduid_833',['AddUID',['../classGpgFrontend_1_1GpgUIDOperator.html#a7c0de570de59d4ebc6c0bed681119bf7',1,'GpgFrontend::GpgUIDOperator::AddUID(const GpgKey &key, const std::string &uid)'],['../classGpgFrontend_1_1GpgUIDOperator.html#a672bbf74abac9140233c4e1c7864d15d',1,'GpgFrontend::GpgUIDOperator::AddUID(const GpgKey &key, const std::string &name, const std::string &comment, const std::string &email)']]], + ['aes_5f256_5fcbc_5fdecrypt_834',['aes_256_cbc_decrypt',['../namespaceGpgFrontend_1_1RawAPI.html#a2e388ecafc7b859eda84b4e3c4e2576f',1,'GpgFrontend::RawAPI']]], + ['aes_5f256_5fcbc_5fencrypt_835',['aes_256_cbc_encrypt',['../namespaceGpgFrontend_1_1RawAPI.html#aa2bc88cf78b8da893f1b5c7e2e8ccf42',1,'GpgFrontend::RawAPI']]], + ['aes_5f256_5fcbc_5finit_836',['aes_256_cbc_init',['../namespaceGpgFrontend_1_1RawAPI.html#a1f2f6c82e9c904c3875a123a65564697',1,'GpgFrontend::RawAPI']]], + ['appearancetab_837',['AppearanceTab',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html#abfca670540bc0409b9be4459ee6a3b6c',1,'GpgFrontend::UI::AppearanceTab']]], + ['appendobject_838',['AppendObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a521dccfd42e13769b4edc4286318cc4c',1,'GpgFrontend::Thread::Task::DataObject::AppendObject(T &&obj)'],['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a5812bb84c6241e89f8b8b04d2a2f3b55',1,'GpgFrontend::Thread::Task::DataObject::AppendObject(T *obj)']]], + ['associatetabwidget_839',['AssociateTabWidget',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#adfa4acd435d2ec29f951f4e7e6a43f38',1,'GpgFrontend::UI::InfoBoardWidget']]], + ['associatetextedit_840',['AssociateTextEdit',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a4fd6f91eb435feb41ae93e44485646ab',1,'GpgFrontend::UI::InfoBoardWidget']]] ]; diff --git a/docs/html/search/functions_10.js b/docs/html/search/functions_10.js index 02389f3a..5dbc4131 100644 --- a/docs/html/search/functions_10.js +++ b/docs/html/search/functions_10.js @@ -1,4 +1,4 @@ var searchData= [ - ['quitdialog_1144',['QuitDialog',['../classGpgFrontend_1_1UI_1_1QuitDialog.html#a60419bf8e817db25128c2f941fc42a3d',1,'GpgFrontend::UI::QuitDialog']]] + ['quitdialog_1145',['QuitDialog',['../classGpgFrontend_1_1UI_1_1QuitDialog.html#a60419bf8e817db25128c2f941fc42a3d',1,'GpgFrontend::UI::QuitDialog']]] ]; diff --git a/docs/html/search/functions_11.js b/docs/html/search/functions_11.js index a5db700a..e4bb3af5 100644 --- a/docs/html/search/functions_11.js +++ b/docs/html/search/functions_11.js @@ -1,20 +1,20 @@ var searchData= [ - ['read2buffer_1145',['Read2Buffer',['../classGpgFrontend_1_1GpgData.html#ae382a34ec551561315deca84c71c19c1',1,'GpgFrontend::GpgData']]], - ['read_5fall_5fdata_5fin_5ffile_1146',['read_all_data_in_file',['../namespaceGpgFrontend.html#a73f3e2217fb1d72dc75f266e11875f6d',1,'GpgFrontend']]], - ['readdone_1147',['ReadDone',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#ac1902b063decfeebe7f0908cbfe618ce',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['readfile_1148',['ReadFile',['../classGpgFrontend_1_1FileOperator.html#a28a3572dc01192b6a4d50b544181084c',1,'GpgFrontend::FileOperator']]], - ['readfilestd_1149',['ReadFileStd',['../classGpgFrontend_1_1FileOperator.html#ad4424bce4f22ae75a16c542dfb4ddf0a',1,'GpgFrontend::FileOperator']]], - ['refresh_1150',['Refresh',['../structGpgFrontend_1_1UI_1_1KeyTable.html#aaac381e205c323444098803e0295060f',1,'GpgFrontend::UI::KeyTable']]], - ['refresh_5finfo_5fboard_1151',['refresh_info_board',['../namespaceGpgFrontend_1_1UI.html#a204156a333cde4f705f0ace91cd3d333',1,'GpgFrontend::UI']]], - ['refresh_5fkeys_5ffrom_5fkey_5fserver_1152',['refresh_keys_from_key_server',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adfa3b3ae1de1fd04c5ea09e3c97c3e98',1,'GpgFrontend::UI::MainWindow']]], - ['refresh_5fwidgets_5fstate_1153',['refresh_widgets_state',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a4eb53559f200092cd299f7a90c03cdbb',1,'GpgFrontend::UI::KeyGenDialog::refresh_widgets_state()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a4a5b77fb909e9a6a0e4da780c75f7535',1,'GpgFrontend::UI::SubkeyGenerateDialog::refresh_widgets_state()']]], - ['releasechannel_1154',['ReleaseChannel',['../classGpgFrontend_1_1SingletonStorage.html#adb22cc80a1ab040b6e4bce962625edfd',1,'GpgFrontend::SingletonStorage::ReleaseChannel()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#ab49b1d50252e1934691a9483a6df2106',1,'GpgFrontend::SingletonFunctionObject::ReleaseChannel()']]], - ['resetoptionactionsmenu_1155',['ResetOptionActionsMenu',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a7d7504339221bd680fb18698dd829b32',1,'GpgFrontend::UI::InfoBoardWidget']]], - ['restore_5fsettings_1156',['restore_settings',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a210ab31f4d949a50507d0690c0d1598a',1,'GpgFrontend::UI::MainWindow']]], - ['revsign_1157',['RevSign',['../classGpgFrontend_1_1GpgKeyManager.html#aa2c0e804db1c4aaf3b861ee5ab54ebd8',1,'GpgFrontend::GpgKeyManager']]], - ['revuid_1158',['RevUID',['../classGpgFrontend_1_1GpgUIDOperator.html#a47f762666afbc806365877ff70947841',1,'GpgFrontend::GpgUIDOperator']]], - ['run_1159',['Run',['../classGpgFrontend_1_1Thread_1_1CtxCheckTask.html#a1c94cb1290df40a9043fe2d1a9a231f2',1,'GpgFrontend::Thread::CtxCheckTask::Run()'],['../classGpgFrontend_1_1UI_1_1FileReadTask.html#a0f8bc1c253380b68c0e65cabc011ac09',1,'GpgFrontend::UI::FileReadTask::Run()'],['../classGpgFrontend_1_1Thread_1_1Task.html#ac60aa71a24f452fd8031597ff4cbbd00',1,'GpgFrontend::Thread::Task::Run()'],['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9156325af41c378f8d7e77187d445c12',1,'GpgFrontend::UI::VersionCheckTask::Run()']]], - ['run_1160',['run',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.html#a497bb7f1b92c67f2e754fd66ca3a6666',1,'GpgFrontend::UI::ProxyConnectionTestThread']]], - ['rungpgfrontendui_1161',['RunGpgFrontendUI',['../namespaceGpgFrontend_1_1UI.html#a9e2d085812ef8fdd6f19ea94a241b4da',1,'GpgFrontend::UI']]] + ['read2buffer_1146',['Read2Buffer',['../classGpgFrontend_1_1GpgData.html#ae382a34ec551561315deca84c71c19c1',1,'GpgFrontend::GpgData']]], + ['read_5fall_5fdata_5fin_5ffile_1147',['read_all_data_in_file',['../namespaceGpgFrontend.html#a73f3e2217fb1d72dc75f266e11875f6d',1,'GpgFrontend']]], + ['readdone_1148',['ReadDone',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#ac1902b063decfeebe7f0908cbfe618ce',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['readfile_1149',['ReadFile',['../classGpgFrontend_1_1FileOperator.html#a28a3572dc01192b6a4d50b544181084c',1,'GpgFrontend::FileOperator']]], + ['readfilestd_1150',['ReadFileStd',['../classGpgFrontend_1_1FileOperator.html#ad4424bce4f22ae75a16c542dfb4ddf0a',1,'GpgFrontend::FileOperator']]], + ['refresh_1151',['Refresh',['../structGpgFrontend_1_1UI_1_1KeyTable.html#aaac381e205c323444098803e0295060f',1,'GpgFrontend::UI::KeyTable']]], + ['refresh_5finfo_5fboard_1152',['refresh_info_board',['../namespaceGpgFrontend_1_1UI.html#a204156a333cde4f705f0ace91cd3d333',1,'GpgFrontend::UI']]], + ['refresh_5fkeys_5ffrom_5fkey_5fserver_1153',['refresh_keys_from_key_server',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adfa3b3ae1de1fd04c5ea09e3c97c3e98',1,'GpgFrontend::UI::MainWindow']]], + ['refresh_5fwidgets_5fstate_1154',['refresh_widgets_state',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a4eb53559f200092cd299f7a90c03cdbb',1,'GpgFrontend::UI::KeyGenDialog::refresh_widgets_state()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a4a5b77fb909e9a6a0e4da780c75f7535',1,'GpgFrontend::UI::SubkeyGenerateDialog::refresh_widgets_state()']]], + ['releasechannel_1155',['ReleaseChannel',['../classGpgFrontend_1_1SingletonStorage.html#adb22cc80a1ab040b6e4bce962625edfd',1,'GpgFrontend::SingletonStorage::ReleaseChannel()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#ab49b1d50252e1934691a9483a6df2106',1,'GpgFrontend::SingletonFunctionObject::ReleaseChannel()']]], + ['resetoptionactionsmenu_1156',['ResetOptionActionsMenu',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a7d7504339221bd680fb18698dd829b32',1,'GpgFrontend::UI::InfoBoardWidget']]], + ['restore_5fsettings_1157',['restore_settings',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a210ab31f4d949a50507d0690c0d1598a',1,'GpgFrontend::UI::MainWindow']]], + ['revsign_1158',['RevSign',['../classGpgFrontend_1_1GpgKeyManager.html#aa2c0e804db1c4aaf3b861ee5ab54ebd8',1,'GpgFrontend::GpgKeyManager']]], + ['revuid_1159',['RevUID',['../classGpgFrontend_1_1GpgUIDOperator.html#a47f762666afbc806365877ff70947841',1,'GpgFrontend::GpgUIDOperator']]], + ['run_1160',['Run',['../classGpgFrontend_1_1Thread_1_1CtxCheckTask.html#a1c94cb1290df40a9043fe2d1a9a231f2',1,'GpgFrontend::Thread::CtxCheckTask::Run()'],['../classGpgFrontend_1_1UI_1_1FileReadTask.html#a0f8bc1c253380b68c0e65cabc011ac09',1,'GpgFrontend::UI::FileReadTask::Run()'],['../classGpgFrontend_1_1Thread_1_1Task.html#ac60aa71a24f452fd8031597ff4cbbd00',1,'GpgFrontend::Thread::Task::Run()'],['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9156325af41c378f8d7e77187d445c12',1,'GpgFrontend::UI::VersionCheckTask::Run()']]], + ['run_1161',['run',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.html#a497bb7f1b92c67f2e754fd66ca3a6666',1,'GpgFrontend::UI::ProxyConnectionTestThread']]], + ['rungpgfrontendui_1162',['RunGpgFrontendUI',['../namespaceGpgFrontend_1_1UI.html#a9e2d085812ef8fdd6f19ea94a241b4da',1,'GpgFrontend::UI']]] ]; diff --git a/docs/html/search/functions_12.js b/docs/html/search/functions_12.js index b09dded1..bf9608d8 100644 --- a/docs/html/search/functions_12.js +++ b/docs/html/search/functions_12.js @@ -1,153 +1,154 @@ var searchData= [ - ['save_5ffile_1162',['save_file',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a66b6f6633e7ac71e5fe8b7814a81cadf',1,'GpgFrontend::UI::TextEdit']]], - ['save_5fsettings_1163',['save_settings',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7a4b6490038470a8849231e48282da98',1,'GpgFrontend::UI::MainWindow']]], - ['set_5fbackground_1164',['set_background',['../classGpgFrontend_1_1UI_1_1FindWidget.html#a0c531f2c673caed29225a323e750205f',1,'GpgFrontend::UI::FindWidget']]], - ['set_5floading_1165',['set_loading',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ad4a75da57fa18bfcfaeb7fc601f1c8f6',1,'GpgFrontend::UI::KeyServerImportDialog']]], - ['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#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']]], - ['setallowsigning_1173',['SetAllowSigning',['../classGpgFrontend_1_1GenKeyInfo.html#a1a01518b24d40d95e187ef73f4dcd52a',1,'GpgFrontend::GenKeyInfo']]], - ['setchannel_1174',['SetChannel',['../classGpgFrontend_1_1ChannelObject.html#aa3b19cad6d873b314bba32a3dae85f09',1,'GpgFrontend::ChannelObject']]], - ['setchecked_1175',['SetChecked',['../structGpgFrontend_1_1UI_1_1KeyTable.html#ae0713ebbc21e78995db9a856d746fe6c',1,'GpgFrontend::UI::KeyTable::SetChecked()'],['../classGpgFrontend_1_1UI_1_1KeyList.html#ab0182646beb01850779260b3772bd8fe',1,'GpgFrontend::UI::KeyList::SetChecked(const KeyIdArgsListPtr &keyIds, const KeyTable &key_table)'],['../classGpgFrontend_1_1UI_1_1KeyList.html#a68b595a2bb83dfafa61b3e467dd15689',1,'GpgFrontend::UI::KeyList::SetChecked(KeyIdArgsListPtr key_ids)']]], - ['setcolumnwidth_1176',['SetColumnWidth',['../classGpgFrontend_1_1UI_1_1KeyList.html#aab3f4facfc850e7eeb917571ca89f4a5',1,'GpgFrontend::UI::KeyList']]], - ['setcomment_1177',['SetComment',['../classGpgFrontend_1_1GenKeyInfo.html#a947886456f5699241b1c1b9332e4b29e',1,'GpgFrontend::GenKeyInfo']]], - ['setcryptomenustatus_1178',['SetCryptoMenuStatus',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a85a98a1ec5418c110201980fa013d1fd',1,'GpgFrontend::UI::MainWindow']]], - ['setdoubleclickedaction_1179',['SetDoubleClickedAction',['../classGpgFrontend_1_1UI_1_1KeyList.html#a7d75246eee6368be295c9ab5fe5ef291',1,'GpgFrontend::UI::KeyList']]], - ['setemail_1180',['SetEmail',['../classGpgFrontend_1_1GenKeyInfo.html#a656c81d56f77350184f9a94db1a3ce05',1,'GpgFrontend::GenKeyInfo']]], - ['setexpire_1181',['SetExpire',['../classGpgFrontend_1_1GpgKeyManager.html#a1625abfbff168c476e76fa9425a6c37d',1,'GpgFrontend::GpgKeyManager::SetExpire()'],['../classGpgFrontend_1_1GpgKeyOpera.html#a12e6b05b23781861065d7e3243c9349e',1,'GpgFrontend::GpgKeyOpera::SetExpire()']]], - ['setexpiretime_1182',['SetExpireTime',['../classGpgFrontend_1_1GenKeyInfo.html#aa3bfeda7fc7c83dc8d48ee2b80780c3a',1,'GpgFrontend::GenKeyInfo']]], - ['setfilepath_1183',['SetFilePath',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aa9e82690824c82e7628ba4ace9d6e2fe',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['setfinishafterrun_1184',['SetFinishAfterRun',['../classGpgFrontend_1_1Thread_1_1Task.html#a689969e7d88ba7ad73a693a1b38aedd7',1,'GpgFrontend::Thread::Task']]], - ['setinfoboard_1185',['SetInfoBoard',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#ac936cfc8e1b3af65d0d71b74fb3f0b02',1,'GpgFrontend::UI::InfoBoardWidget']]], - ['setissubkey_1186',['SetIsSubKey',['../classGpgFrontend_1_1GenKeyInfo.html#acd9f7742b739e1db60bd50489690dec1',1,'GpgFrontend::GenKeyInfo']]], - ['setkeylength_1187',['SetKeyLength',['../classGpgFrontend_1_1GenKeyInfo.html#ae744395012e4dcb9734ad5a30aa8ed75',1,'GpgFrontend::GenKeyInfo']]], - ['setname_1188',['SetName',['../classGpgFrontend_1_1GenKeyInfo.html#a65ebc487e0e64c325f65474c812615f7',1,'GpgFrontend::GenKeyInfo']]], - ['setnonexpired_1189',['SetNonExpired',['../classGpgFrontend_1_1GenKeyInfo.html#aea247381c21896f5371bb813ca665329',1,'GpgFrontend::GenKeyInfo']]], - ['setnonpassphrase_1190',['SetNonPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#a864407216cbdbef9e7b35e6be694d3ef',1,'GpgFrontend::GenKeyInfo']]], - ['setobjectinchannel_1191',['SetObjectInChannel',['../classGpgFrontend_1_1SingletonStorage.html#ab0097bb648b2303d68a975c7cbea5a52',1,'GpgFrontend::SingletonStorage']]], - ['setpassphrase_1192',['SetPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#afe1760d4ead397f6096925290a38e1a4',1,'GpgFrontend::GenKeyInfo']]], - ['setpassphrasecb_1193',['SetPassphraseCb',['../classGpgFrontend_1_1GpgContext.html#a3399fc60086ff5010a089bff48bbc63c',1,'GpgFrontend::GpgContext']]], - ['setprimaryuid_1194',['SetPrimaryUID',['../classGpgFrontend_1_1GpgUIDOperator.html#acbdabec97df508382b0c9b1fffbf1dd5',1,'GpgFrontend::GpgUIDOperator']]], - ['setrtn_1195',['SetRTN',['../classGpgFrontend_1_1Thread_1_1Task.html#aa6d702417bdd6a88c447ed6a457fa098',1,'GpgFrontend::Thread::Task']]], - ['setsettings_1196',['SetSettings',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html#a2fed39a2657407fcdb37d2431ef28e56',1,'GpgFrontend::UI::AppearanceTab::SetSettings()'],['../classGpgFrontend_1_1UI_1_1GeneralTab.html#a7b26d8a088ce8f50b1fd0e719e38534b',1,'GpgFrontend::UI::GeneralTab::SetSettings()'],['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#a221117b56dda48956e44d96a08f6823b',1,'GpgFrontend::UI::KeyserverTab::SetSettings()'],['../classGpgFrontend_1_1UI_1_1NetworkTab.html#a51cd114731899b6480cc1b6d5a80826a',1,'GpgFrontend::UI::NetworkTab::SetSettings()']]], - ['setsigners_1197',['SetSigners',['../classGpgFrontend_1_1GpgBasicOperator.html#ad6ea3596ba7d7543fb1b8233d09996df',1,'GpgFrontend::GpgBasicOperator']]], - ['settingsdialog_1198',['SettingsDialog',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#a1b7ddc7861d1b4b9dc3810ed98023ffc',1,'GpgFrontend::UI::SettingsDialog']]], - ['settingsobject_1199',['SettingsObject',['../classGpgFrontend_1_1UI_1_1SettingsObject.html#aad706a2c2b68d280b5d3ababff0ff302',1,'GpgFrontend::UI::SettingsObject::SettingsObject(std::string settings_name)'],['../classGpgFrontend_1_1UI_1_1SettingsObject.html#ac11d19096b4e88cb288a208a4953af4d',1,'GpgFrontend::UI::SettingsObject::SettingsObject(nlohmann::json _sub_json, bool)']]], - ['show_5fverify_5fdetails_1200',['show_verify_details',['../namespaceGpgFrontend_1_1UI.html#a590a26051105940a6d6e0743b147e281',1,'GpgFrontend::UI']]], - ['showevent_1201',['showEvent',['../classGpgFrontend_1_1UI_1_1AboutDialog.html#ab799cd5e07b06a8e953d72105c0a1083',1,'GpgFrontend::UI::AboutDialog']]], - ['shownotificationwidget_1202',['ShowNotificationWidget',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#af5dfdfd48ef64cc46e524ec70a22fe3a',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['sign_1203',['Sign',['../classGpgFrontend_1_1GpgBasicOperator.html#a988d7e65e85fc7a578f26300332a65d3',1,'GpgFrontend::GpgBasicOperator']]], - ['signalkeydatabaserefreshdone_1204',['SignalKeyDatabaseRefreshDone',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a1abc83bba95579aa94d0870181991a28',1,'GpgFrontend::UI::CommonUtils']]], - ['signalkeyserverimportresult_1205',['SignalKeyServerImportResult',['../classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a6b2c07d193fb28a57b1738fa493b2b3f',1,'GpgFrontend::UI::KeyServerImportTask']]], - ['signalkeyserverlisttestresult_1206',['SignalKeyServerListTestResult',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a20f0147d670be7ab5c9d3051a900f508',1,'GpgFrontend::UI::ListedKeyServerTestTask']]], - ['signalkeyserversearchresult_1207',['SignalKeyServerSearchResult',['../classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#ae478130476c95a8b220c3b0e6a7b88b4',1,'GpgFrontend::UI::KeyServerSearchTask']]], - ['signalopenhelp_1208',['SignalOpenHelp',['../classGpgFrontend_1_1UI_1_1Wizard.html#a8b5f5ddb1e6470cbf6c87cc6400031fb',1,'GpgFrontend::UI::Wizard']]], - ['signalpathchanged_1209',['SignalPathChanged',['../classGpgFrontend_1_1UI_1_1FilePage.html#aec462d16a2097024a4ced24012b905a7',1,'GpgFrontend::UI::FilePage']]], - ['signalproxyconnectiontestresult_1210',['SignalProxyConnectionTestResult',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.html#aedafa7b22e024be537658fd8096e5f6f',1,'GpgFrontend::UI::ProxyConnectionTestThread']]], - ['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_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']]] + ['save_5ffile_1163',['save_file',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a66b6f6633e7ac71e5fe8b7814a81cadf',1,'GpgFrontend::UI::TextEdit']]], + ['save_5fsettings_1164',['save_settings',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7a4b6490038470a8849231e48282da98',1,'GpgFrontend::UI::MainWindow']]], + ['set_5fbackground_1165',['set_background',['../classGpgFrontend_1_1UI_1_1FindWidget.html#a0c531f2c673caed29225a323e750205f',1,'GpgFrontend::UI::FindWidget']]], + ['set_5floading_1166',['set_loading',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ad4a75da57fa18bfcfaeb7fc601f1c8f6',1,'GpgFrontend::UI::KeyServerImportDialog']]], + ['set_5fmessage_1167',['set_message',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ab93fbf5e0626bffe398f5baa2bc00b1a',1,'GpgFrontend::UI::KeyServerImportDialog']]], + ['set_5fsignal_5fslot_1168',['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_1169',['set_status',['../classGpgFrontend_1_1GpgResultAnalyse.html#a7f13592b421c7b0d3853f15cece8d195',1,'GpgFrontend::GpgResultAnalyse']]], + ['setalgo_1170',['SetAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#adcd9c4f3e75f989810988e0bc81d401f',1,'GpgFrontend::GenKeyInfo']]], + ['setallowauthentication_1171',['SetAllowAuthentication',['../classGpgFrontend_1_1GenKeyInfo.html#aac51d251682ed1bc1090416ebfeba4de',1,'GpgFrontend::GenKeyInfo']]], + ['setallowcertification_1172',['SetAllowCertification',['../classGpgFrontend_1_1GenKeyInfo.html#ac5f52f74566618c71a29bdc5e70fce2e',1,'GpgFrontend::GenKeyInfo']]], + ['setallowencryption_1173',['SetAllowEncryption',['../classGpgFrontend_1_1GenKeyInfo.html#a965014232f6de22c6d33320231ca4454',1,'GpgFrontend::GenKeyInfo']]], + ['setallowsigning_1174',['SetAllowSigning',['../classGpgFrontend_1_1GenKeyInfo.html#a1a01518b24d40d95e187ef73f4dcd52a',1,'GpgFrontend::GenKeyInfo']]], + ['setchannel_1175',['SetChannel',['../classGpgFrontend_1_1ChannelObject.html#aa3b19cad6d873b314bba32a3dae85f09',1,'GpgFrontend::ChannelObject']]], + ['setchecked_1176',['SetChecked',['../structGpgFrontend_1_1UI_1_1KeyTable.html#ae0713ebbc21e78995db9a856d746fe6c',1,'GpgFrontend::UI::KeyTable::SetChecked()'],['../classGpgFrontend_1_1UI_1_1KeyList.html#ab0182646beb01850779260b3772bd8fe',1,'GpgFrontend::UI::KeyList::SetChecked(const KeyIdArgsListPtr &keyIds, const KeyTable &key_table)'],['../classGpgFrontend_1_1UI_1_1KeyList.html#a68b595a2bb83dfafa61b3e467dd15689',1,'GpgFrontend::UI::KeyList::SetChecked(KeyIdArgsListPtr key_ids)']]], + ['setcolumnwidth_1177',['SetColumnWidth',['../classGpgFrontend_1_1UI_1_1KeyList.html#aab3f4facfc850e7eeb917571ca89f4a5',1,'GpgFrontend::UI::KeyList']]], + ['setcomment_1178',['SetComment',['../classGpgFrontend_1_1GenKeyInfo.html#a947886456f5699241b1c1b9332e4b29e',1,'GpgFrontend::GenKeyInfo']]], + ['setcryptomenustatus_1179',['SetCryptoMenuStatus',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a85a98a1ec5418c110201980fa013d1fd',1,'GpgFrontend::UI::MainWindow']]], + ['setdoubleclickedaction_1180',['SetDoubleClickedAction',['../classGpgFrontend_1_1UI_1_1KeyList.html#a7d75246eee6368be295c9ab5fe5ef291',1,'GpgFrontend::UI::KeyList']]], + ['setemail_1181',['SetEmail',['../classGpgFrontend_1_1GenKeyInfo.html#a656c81d56f77350184f9a94db1a3ce05',1,'GpgFrontend::GenKeyInfo']]], + ['setexpire_1182',['SetExpire',['../classGpgFrontend_1_1GpgKeyManager.html#a1625abfbff168c476e76fa9425a6c37d',1,'GpgFrontend::GpgKeyManager::SetExpire()'],['../classGpgFrontend_1_1GpgKeyOpera.html#a12e6b05b23781861065d7e3243c9349e',1,'GpgFrontend::GpgKeyOpera::SetExpire()']]], + ['setexpiretime_1183',['SetExpireTime',['../classGpgFrontend_1_1GenKeyInfo.html#aa3bfeda7fc7c83dc8d48ee2b80780c3a',1,'GpgFrontend::GenKeyInfo']]], + ['setfilepath_1184',['SetFilePath',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aa9e82690824c82e7628ba4ace9d6e2fe',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['setfinishafterrun_1185',['SetFinishAfterRun',['../classGpgFrontend_1_1Thread_1_1Task.html#a689969e7d88ba7ad73a693a1b38aedd7',1,'GpgFrontend::Thread::Task']]], + ['setinfoboard_1186',['SetInfoBoard',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#ac936cfc8e1b3af65d0d71b74fb3f0b02',1,'GpgFrontend::UI::InfoBoardWidget']]], + ['setissubkey_1187',['SetIsSubKey',['../classGpgFrontend_1_1GenKeyInfo.html#acd9f7742b739e1db60bd50489690dec1',1,'GpgFrontend::GenKeyInfo']]], + ['setkeylength_1188',['SetKeyLength',['../classGpgFrontend_1_1GenKeyInfo.html#ae744395012e4dcb9734ad5a30aa8ed75',1,'GpgFrontend::GenKeyInfo']]], + ['setname_1189',['SetName',['../classGpgFrontend_1_1GenKeyInfo.html#a65ebc487e0e64c325f65474c812615f7',1,'GpgFrontend::GenKeyInfo']]], + ['setnonexpired_1190',['SetNonExpired',['../classGpgFrontend_1_1GenKeyInfo.html#aea247381c21896f5371bb813ca665329',1,'GpgFrontend::GenKeyInfo']]], + ['setnonpassphrase_1191',['SetNonPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#a864407216cbdbef9e7b35e6be694d3ef',1,'GpgFrontend::GenKeyInfo']]], + ['setobjectinchannel_1192',['SetObjectInChannel',['../classGpgFrontend_1_1SingletonStorage.html#ab0097bb648b2303d68a975c7cbea5a52',1,'GpgFrontend::SingletonStorage']]], + ['setpassphrase_1193',['SetPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#afe1760d4ead397f6096925290a38e1a4',1,'GpgFrontend::GenKeyInfo']]], + ['setpassphrasecb_1194',['SetPassphraseCb',['../classGpgFrontend_1_1GpgContext.html#a3399fc60086ff5010a089bff48bbc63c',1,'GpgFrontend::GpgContext']]], + ['setprimaryuid_1195',['SetPrimaryUID',['../classGpgFrontend_1_1GpgUIDOperator.html#acbdabec97df508382b0c9b1fffbf1dd5',1,'GpgFrontend::GpgUIDOperator']]], + ['setrtn_1196',['SetRTN',['../classGpgFrontend_1_1Thread_1_1Task.html#aa6d702417bdd6a88c447ed6a457fa098',1,'GpgFrontend::Thread::Task']]], + ['setsettings_1197',['SetSettings',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html#a2fed39a2657407fcdb37d2431ef28e56',1,'GpgFrontend::UI::AppearanceTab::SetSettings()'],['../classGpgFrontend_1_1UI_1_1GeneralTab.html#a7b26d8a088ce8f50b1fd0e719e38534b',1,'GpgFrontend::UI::GeneralTab::SetSettings()'],['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#a221117b56dda48956e44d96a08f6823b',1,'GpgFrontend::UI::KeyserverTab::SetSettings()'],['../classGpgFrontend_1_1UI_1_1NetworkTab.html#a51cd114731899b6480cc1b6d5a80826a',1,'GpgFrontend::UI::NetworkTab::SetSettings()']]], + ['setsigners_1198',['SetSigners',['../classGpgFrontend_1_1GpgBasicOperator.html#ad6ea3596ba7d7543fb1b8233d09996df',1,'GpgFrontend::GpgBasicOperator']]], + ['settingsdialog_1199',['SettingsDialog',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#a1b7ddc7861d1b4b9dc3810ed98023ffc',1,'GpgFrontend::UI::SettingsDialog']]], + ['settingsobject_1200',['SettingsObject',['../classGpgFrontend_1_1UI_1_1SettingsObject.html#aad706a2c2b68d280b5d3ababff0ff302',1,'GpgFrontend::UI::SettingsObject::SettingsObject(std::string settings_name)'],['../classGpgFrontend_1_1UI_1_1SettingsObject.html#ac11d19096b4e88cb288a208a4953af4d',1,'GpgFrontend::UI::SettingsObject::SettingsObject(nlohmann::json _sub_json, bool)']]], + ['show_5fverify_5fdetails_1201',['show_verify_details',['../namespaceGpgFrontend_1_1UI.html#a590a26051105940a6d6e0743b147e281',1,'GpgFrontend::UI']]], + ['showevent_1202',['showEvent',['../classGpgFrontend_1_1UI_1_1AboutDialog.html#ab799cd5e07b06a8e953d72105c0a1083',1,'GpgFrontend::UI::AboutDialog']]], + ['shownotificationwidget_1203',['ShowNotificationWidget',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#af5dfdfd48ef64cc46e524ec70a22fe3a',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['sign_1204',['Sign',['../classGpgFrontend_1_1GpgBasicOperator.html#a988d7e65e85fc7a578f26300332a65d3',1,'GpgFrontend::GpgBasicOperator']]], + ['signaldeeprestartneeded_1205',['SignalDeepRestartNeeded',['../classGpgFrontend_1_1UI_1_1GeneralTab.html#afc107d56f13000aa28436a5e26a0876b',1,'GpgFrontend::UI::GeneralTab']]], + ['signalkeydatabaserefreshdone_1206',['SignalKeyDatabaseRefreshDone',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a1abc83bba95579aa94d0870181991a28',1,'GpgFrontend::UI::CommonUtils']]], + ['signalkeyserverimportresult_1207',['SignalKeyServerImportResult',['../classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a6b2c07d193fb28a57b1738fa493b2b3f',1,'GpgFrontend::UI::KeyServerImportTask']]], + ['signalkeyserverlisttestresult_1208',['SignalKeyServerListTestResult',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a20f0147d670be7ab5c9d3051a900f508',1,'GpgFrontend::UI::ListedKeyServerTestTask']]], + ['signalkeyserversearchresult_1209',['SignalKeyServerSearchResult',['../classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#ae478130476c95a8b220c3b0e6a7b88b4',1,'GpgFrontend::UI::KeyServerSearchTask']]], + ['signalopenhelp_1210',['SignalOpenHelp',['../classGpgFrontend_1_1UI_1_1Wizard.html#a8b5f5ddb1e6470cbf6c87cc6400031fb',1,'GpgFrontend::UI::Wizard']]], + ['signalpathchanged_1211',['SignalPathChanged',['../classGpgFrontend_1_1UI_1_1FilePage.html#aec462d16a2097024a4ced24012b905a7',1,'GpgFrontend::UI::FilePage']]], + ['signalproxyconnectiontestresult_1212',['SignalProxyConnectionTestResult',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.html#aedafa7b22e024be537658fd8096e5f6f',1,'GpgFrontend::UI::ProxyConnectionTestThread']]], + ['signalrefreshinfoboard_1213',['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_1214',['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_1215',['SignalReplyFromUpdateServer',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a5e752e01539ccfdc6bbe41a404ddaa95',1,'GpgFrontend::UI::UpdateTab']]], + ['signalrestartneeded_1216',['signalRestartNeeded',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html#abff49b636449815a9ebff52f5c067712',1,'GpgFrontend::UI::AppearanceTab']]], + ['signalrestartneeded_1217',['SignalRestartNeeded',['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#a26449a77844d9db69a543ff88f10e347',1,'GpgFrontend::UI::KeyserverTab::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1GeneralTab.html#aa88ccbda61728be6de0aa2d9b92e0b69',1,'GpgFrontend::UI::GeneralTab::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#af5ba6646af45d0d1d794bc52ee54b1b9',1,'GpgFrontend::UI::SettingsDialog::SignalRestartNeeded()']]], + ['signaluibytesdisplayed_1218',['SignalUIBytesDisplayed',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#afd3749488fdd3d1c53446fb8c833f3f4',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['signalupgradeversion_1219',['SignalUpgradeVersion',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a36c5597674253348477d78ad6af380ab',1,'GpgFrontend::UI::VersionCheckTask']]], + ['signerspicker_1220',['SignersPicker',['../classGpgFrontend_1_1UI_1_1SignersPicker.html#a02c3ba737702894fc6d4ac1a1c543ccb',1,'GpgFrontend::UI::SignersPicker']]], + ['signfile_1221',['SignFile',['../classGpgFrontend_1_1GpgFileOpera.html#a350df1c07c054625c4755a78e6ca5ca8',1,'GpgFrontend::GpgFileOpera']]], + ['signkey_1222',['SignKey',['../classGpgFrontend_1_1GpgKeyManager.html#a12138780c53add7589f78f056019e5e0',1,'GpgFrontend::GpgKeyManager']]], + ['singletonfunctionobject_1223',['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_1224',['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_1225',['slot_add_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a821247d738457c4ee046162aad6728f9',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fadd_5fuid_5fresult_1226',['slot_add_uid_result',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a16f1ae88d6a417b614cfc6ae1852187c',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['slot_5fappend_5fselected_5fkeys_1227',['slot_append_selected_keys',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a76bf3784d751db78ed13bd9962e14472',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fauthentication_5fbox_5fchanged_1228',['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_1229',['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_1230',['slot_clean_double_line_breaks',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aea9274389c3b049793fe5aa5a6adf63c',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fcompress_5ffiles_1231',['slot_compress_files',['../classGpgFrontend_1_1UI_1_1FilePage.html#a250b1950f874c1d11549cd5c0ea9693f',1,'GpgFrontend::UI::FilePage']]], + ['slot_5fcopy_5ffingerprint_1232',['slot_copy_fingerprint',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#af8b600fbd7cd0fbb5b6183403bf870b2',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['slot_5fcopy_5fmail_5faddress_5fto_5fclipboard_1233',['slot_copy_mail_address_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af93d72eaf58326f1f9e926752c6b1fc6',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fcreate_5fnew_5fuid_1234',['slot_create_new_uid',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a4e115ce46a85c2f9e4e0e2427839fc7c',1,'GpgFrontend::UI::KeyNewUIDDialog']]], + ['slot_5fcut_5fpgp_5fheader_1235',['slot_cut_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7f5a88922d06bee977335fb4b5f1d86d',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fdecrypt_1236',['slot_decrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae2d89e2cc6c99ff0e16b396d2381f904',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fdecrypt_5fverify_1237',['slot_decrypt_verify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1d61ea803e6c825bd54f42ba9ae85919',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fdisable_5ftab_5factions_1238',['slot_disable_tab_actions',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a24a0b0d974fc5f8fdda60c128a82d957',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fdouble_5fclicked_1239',['slot_double_clicked',['../classGpgFrontend_1_1UI_1_1KeyList.html#a69e54f06d546d516a0dcdf1055b8028e',1,'GpgFrontend::UI::KeyList']]], + ['slot_5fencrypt_1240',['slot_encrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae11d01211c2914ecc148e13dd7de506e',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fencrypt_5fsign_1241',['slot_encrypt_sign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a304efe91afa31b32725caa00c27475a4',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fencryption_5fbox_5fchanged_1242',['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_1243',['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_1244',['slot_export_private_key',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a384f4250e58110da58c0e6996b42a8ab',1,'GpgFrontend::UI::KeyPairOperaTab']]], + ['slot_5ffile_5ftree_5fview_5fitem_5fclicked_1245',['slot_file_tree_view_item_clicked',['../classGpgFrontend_1_1UI_1_1FilePage.html#a676917817d6f519e043742d1d87f97f1',1,'GpgFrontend::UI::FilePage']]], + ['slot_5ffile_5ftree_5fview_5fitem_5fdouble_5fclicked_1246',['slot_file_tree_view_item_double_clicked',['../classGpgFrontend_1_1UI_1_1FilePage.html#ad3c54320bdafbbb2c06a20d6c7dea9d6',1,'GpgFrontend::UI::FilePage']]], + ['slot_5ffind_1247',['slot_find',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae28089efbd236708601470f30f26faaa',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fformat_5fgpg_5fheader_1248',['slot_format_gpg_header',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a45267bcfc8fc83851894061c0fe2a9c2',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['slot_5fimport_1249',['slot_import',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ac9c14bbc97945c94fd02c8e067ccab06',1,'GpgFrontend::UI::KeyServerImportDialog']]], + ['slot_5fimport_5ffinished_1250',['slot_import_finished',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a6f1c5238da7cd6f117bed8018469b37a',1,'GpgFrontend::UI::KeyServerImportDialog']]], + ['slot_5fimport_5fkey_5ffrom_5fedit_1251',['slot_import_key_from_edit',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a55926649e28a96318b89afba01b966bf',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5finsert_5ftext_1252',['slot_insert_text',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a184985104f23da8fdf2b9aaf7b27405b',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['slot_5fjump_5fpage_1253',['slot_jump_page',['../classGpgFrontend_1_1UI_1_1ChoosePage.html#af0d7890fe65385b7785719b9cff0718b',1,'GpgFrontend::UI::ChoosePage']]], + ['slot_5fkey_5fgen_5faccept_1254',['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_1255',['slot_non_expired_checked',['../classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#adde2b33bd17f521f0630702987b1d274',1,'GpgFrontend::UI::KeySetExpireDateDialog']]], + ['slot_5fopen_5ffile_5ftab_1256',['slot_open_file_tab',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a29a811d4d440c79c1bd2cc2bb40cdf7e',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fopen_5fkey_5fmanagement_1257',['slot_open_key_management',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a16ddebec90a4bd0d13baa9d972c3445f',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fopen_5fsettings_5fdialog_1258',['slot_open_settings_dialog',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a874b505fbc1046f579a736683f5a7f65',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fopen_5furl_1259',['slot_open_url',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a51ff99077a75507365307f5dd783df99',1,'GpgFrontend::UI::HelpPage']]], + ['slot_5fprocess_5fnetwork_5freply_1260',['slot_process_network_reply',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#af9350e0a8d5993e5be0a5478fcb161be',1,'GpgFrontend::UI::ListedKeyServerTestTask']]], + ['slot_5fremove_5ftab_1261',['slot_remove_tab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a12f65fbc4984c266a5df4505ecde7c42',1,'GpgFrontend::UI::TextEdit']]], + ['slot_5fset_5frestart_5fneeded_1262',['slot_set_restart_needed',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#acc6b4386de554fce6fbb60ac6d201952',1,'GpgFrontend::UI::SettingsDialog']]], + ['slot_5fshow_5fkey_5fdetails_1263',['slot_show_key_details',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a033d448541b44fa48b76dec828a4eb0e',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fshow_5fversion_5fstatus_1264',['slot_show_version_status',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a1003bd969ecbc5deba940e39436968f4',1,'GpgFrontend::UI::UpdateTab']]], + ['slot_5fsign_1265',['slot_sign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3f3d03b0ec22385bee559fbd2aeb881b',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fsign_5fkey_1266',['slot_sign_key',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#a82f6bf641ff3b64341a0bdcf76571c43',1,'GpgFrontend::UI::KeyUIDSignDialog']]], + ['slot_5fsigning_5fbox_5fchanged_1267',['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_1268',['slot_start_wizard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aabf3ddf6b624790369f164b4889c95be',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fupdate_5fkey_5fstatus_1269',['slot_update_key_status',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#ab4ac26378d6a07757720163eb4b1cb0e',1,'GpgFrontend::UI::CommonUtils']]], + ['slot_5fupload_5fkey_5fto_5fserver_1270',['slot_upload_key_to_server',['../classGpgFrontend_1_1UI_1_1KeyUploadDialog.html#a0f724649ca953b888f07d69c97fe45b6',1,'GpgFrontend::UI::KeyUploadDialog']]], + ['slot_5fverify_1271',['slot_verify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa9c986dd95984811479ea93230c74b5d',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fversion_5fupgrade_1272',['slot_version_upgrade',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a48368c77af7b1f4cb632870b8d914a28',1,'GpgFrontend::UI::MainWindow']]], + ['slotclosetab_1273',['SlotCloseTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa21659aa7acba98dfd6286d69e00ab9b',1,'GpgFrontend::UI::TextEdit']]], + ['slotcopy_1274',['SlotCopy',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3599bd01636a873cf3437ab6b9d38780',1,'GpgFrontend::UI::TextEdit']]], + ['slotcurpagefiletreeview_1275',['SlotCurPageFileTreeView',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a72014409d407c161b048e07c061b4cf9',1,'GpgFrontend::UI::TextEdit']]], + ['slotcurpagetextedit_1276',['SlotCurPageTextEdit',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a48351dc1529da3b8da311f65b735b5f1',1,'GpgFrontend::UI::TextEdit']]], + ['slotcut_1277',['SlotCut',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae1e710c6722910b8d35df97aaabb3162',1,'GpgFrontend::UI::TextEdit']]], + ['slotexecutegpgcommand_1278',['SlotExecuteGpgCommand',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#afc845c1c37487c99f78d8e66f6874f6d',1,'GpgFrontend::UI::CommonUtils']]], + ['slotfiledecrypt_1279',['SlotFileDecrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0a6d0618f2835a6dcae707a4ca770a48',1,'GpgFrontend::UI::MainWindow']]], + ['slotfiledecryptverify_1280',['SlotFileDecryptVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab23c7e67dd1f5295b3c49ad79dfd5919',1,'GpgFrontend::UI::MainWindow']]], + ['slotfileencrypt_1281',['SlotFileEncrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9ec699536a35a37961a8c6da1e231ae3',1,'GpgFrontend::UI::MainWindow']]], + ['slotfileencryptsign_1282',['SlotFileEncryptSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a25a2e4017d77cffc8362bde9606fad30',1,'GpgFrontend::UI::MainWindow']]], + ['slotfilesign_1283',['SlotFileSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8bcdcbe678b8dc0837fffda2ebfe79bf',1,'GpgFrontend::UI::MainWindow']]], + ['slotfileverify_1284',['SlotFileVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9879061cfd321c6757c77f75d46dc7d8',1,'GpgFrontend::UI::MainWindow']]], + ['slotfilltexteditwithtext_1285',['SlotFillTextEditWithText',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af466ec2b8ab3f695d206efc0574bbe20',1,'GpgFrontend::UI::TextEdit']]], + ['slotimport_1286',['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_1287',['SlotImportKeyFromClipboard',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a0c8bf56fc5371cd2c5e9d2a0f67bf72a',1,'GpgFrontend::UI::CommonUtils']]], + ['slotimportkeyfromfile_1288',['SlotImportKeyFromFile',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a057526790f6b2f6288c3a35322c34d8d',1,'GpgFrontend::UI::CommonUtils']]], + ['slotimportkeyfromkeyserver_1289',['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_1290',['SlotImportKeys',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a3bc26cc1e0f00f0ce2f95c0b6c8778d8',1,'GpgFrontend::UI::CommonUtils']]], + ['slotnewfiletab_1291',['SlotNewFileTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae22ecadf31648f424eb8ab86bd28ef39',1,'GpgFrontend::UI::TextEdit']]], + ['slotnewhelptab_1292',['slotNewHelpTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3c17fdf3abf9c4fb6ce35cfb8f0f8fc4',1,'GpgFrontend::UI::TextEdit']]], + ['slotnewtab_1293',['SlotNewTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a57a46ab5595622ae0b7bceef7d56bd7c',1,'GpgFrontend::UI::TextEdit']]], + ['slotopen_1294',['SlotOpen',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a15335d38187ddf580b7200d856768cfb',1,'GpgFrontend::UI::TextEdit']]], + ['slotopenfile_1295',['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_1296',['SlotPaste',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa2230418dc8f72c400f5a90082a983c9',1,'GpgFrontend::UI::TextEdit']]], + ['slotprint_1297',['SlotPrint',['../classGpgFrontend_1_1UI_1_1TextEdit.html#adca2bbfa746b5598f2a4f74026b84224',1,'GpgFrontend::UI::TextEdit']]], + ['slotquote_1298',['SlotQuote',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6a02fce9dc4039c982d6dd19231517ee',1,'GpgFrontend::UI::TextEdit']]], + ['slotredo_1299',['SlotRedo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae2b3bf422789d56087face98b6a9e929',1,'GpgFrontend::UI::TextEdit']]], + ['slotrefresh_1300',['SlotRefresh',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a68f984815100f4ce281b9794f193e516',1,'GpgFrontend::UI::InfoBoardWidget']]], + ['slotsave_1301',['SlotSave',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ace0b8f4c161db9f4f5db5ecbfd7a91c0',1,'GpgFrontend::UI::TextEdit']]], + ['slotsaveas_1302',['SlotSaveAs',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a02fa44ba0c56f3f6ae125f8490faf254',1,'GpgFrontend::UI::TextEdit']]], + ['slotselectall_1303',['SlotSelectAll',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6c814253dfc061bfdae0fa71c6196c55',1,'GpgFrontend::UI::TextEdit']]], + ['slotsetrestartneeded_1304',['SlotSetRestartNeeded',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a276e843e2f5eda8934fb350fb6f89327',1,'GpgFrontend::UI::MainWindow']]], + ['slotshowmodified_1305',['SlotShowModified',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a7544182198b729373843635bbfea082a',1,'GpgFrontend::UI::TextEdit']]], + ['slotswitchtabdown_1306',['SlotSwitchTabDown',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a576e06390e65576465297d2ab8d7d474',1,'GpgFrontend::UI::TextEdit']]], + ['slotswitchtabup_1307',['SlotSwitchTabUp',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af1e364b513f566c743a5d36c19098762',1,'GpgFrontend::UI::TextEdit']]], + ['slotundo_1308',['SlotUndo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a4a81e69f6dc74ea649ca9a2358342fd5',1,'GpgFrontend::UI::TextEdit']]], + ['stripped_5fname_1309',['stripped_name',['../classGpgFrontend_1_1UI_1_1TextEdit.html#afb9b7a7d88154d774b3d727d8e640cbb',1,'GpgFrontend::UI::TextEdit']]], + ['subkeygeneratedialog_1310',['SubkeyGenerateDialog',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a8f9d8baa7b576a4aa857818b87c26bcd',1,'GpgFrontend::UI::SubkeyGenerateDialog']]], + ['switch_5fui_5fenabled_1311',['switch_ui_enabled',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#ae3d97948f205e84f0604d4da634a4513',1,'GpgFrontend::UI::NetworkTab']]], + ['switch_5fui_5fproxy_5ftype_1312',['switch_ui_proxy_type',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#a1b0297158f13daec77645c88e5a8adcd',1,'GpgFrontend::UI::NetworkTab']]], + ['syncsettings_1313',['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 4c386d60..6665fb4e 100644 --- a/docs/html/search/functions_13.js +++ b/docs/html/search/functions_13.js @@ -1,13 +1,13 @@ var searchData= [ - ['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']]] + ['tabcount_1314',['TabCount',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a05c54658597b04c3976c72d3a5f9add9',1,'GpgFrontend::UI::TextEdit']]], + ['takechargeofresult_1315',['TakeChargeOfResult',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#acdb7839a5158f078b38d60f0fefc5155',1,'GpgFrontend::GpgVerifyResultAnalyse']]], + ['task_1316',['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_1317',['TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#ad3c8612cbe60112f9b14e616fb0a4acf',1,'GpgFrontend::Thread::TaskRunner']]], + ['taskrunnergetter_1318',['TaskRunnerGetter',['../classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html#a80794d81179f66f4b4ed3122a64f27cf',1,'GpgFrontend::Thread::TaskRunnerGetter']]], + ['test_5fpassphrase_5fcb_1319',['test_passphrase_cb',['../classGpgFrontend_1_1GpgContext.html#acc4234054002065dfbc5d5261a4950d4',1,'GpgFrontend::GpgContext']]], + ['test_5fstatus_5fcb_1320',['test_status_cb',['../classGpgFrontend_1_1GpgContext.html#a3844cd0966134939e5c4be9a725e5271',1,'GpgFrontend::GpgContext']]], + ['text_5fis_5fsigned_1321',['text_is_signed',['../namespaceGpgFrontend.html#a2a0394c8bdd277f5235f9875a1d69a99',1,'GpgFrontend']]], + ['tofuinfopage_1322',['TOFUInfoPage',['../classGpgFrontend_1_1UI_1_1TOFUInfoPage.html#a9adc1666e3f57536594876520019e395',1,'GpgFrontend::UI::TOFUInfoPage']]], + ['translatorstab_1323',['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 15416e1c..7932a120 100644 --- a/docs/html/search/functions_14.js +++ b/docs/html/search/functions_14.js @@ -1,6 +1,6 @@ var searchData= [ - ['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']]] + ['unsaveddocuments_1324',['UnsavedDocuments',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a82fe98d45f54909ebea933b540367c39',1,'GpgFrontend::UI::TextEdit']]], + ['updatetab_1325',['UpdateTab',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a833c5f709607032bac530aacf389a117',1,'GpgFrontend::UI::UpdateTab']]], + ['upload_5fkey_5fto_5fserver_1326',['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 f007fec6..31cf96c6 100644 --- a/docs/html/search/functions_15.js +++ b/docs/html/search/functions_15.js @@ -1,9 +1,9 @@ var searchData= [ - ['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']]] + ['verify_1327',['Verify',['../classGpgFrontend_1_1GpgBasicOperator.html#af0347cb28ff73b2250395ceaa9001509',1,'GpgFrontend::GpgBasicOperator']]], + ['verifydetailsdialog_1328',['VerifyDetailsDialog',['../classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#ac73f0405e249f623ddd0de22b5130fda',1,'GpgFrontend::UI::VerifyDetailsDialog']]], + ['verifyfile_1329',['VerifyFile',['../classGpgFrontend_1_1GpgFileOpera.html#a14cddfe822c9410cd9c301d08963b7e7',1,'GpgFrontend::GpgFileOpera']]], + ['verifykeydetailbox_1330',['VerifyKeyDetailBox',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#afbbe8e87786cca020c9aa8759eb041a0',1,'GpgFrontend::UI::VerifyKeyDetailBox']]], + ['versionchecktask_1331',['VersionCheckTask',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9f7a810ae1aa78c2a61e86e7757da385',1,'GpgFrontend::UI::VersionCheckTask']]], + ['versionwithdrawn_1332',['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 0c8c5495..9a23e116 100644 --- a/docs/html/search/functions_16.js +++ b/docs/html/search/functions_16.js @@ -1,9 +1,9 @@ var searchData= [ - ['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']]] + ['waitingdialog_1333',['WaitingDialog',['../classGpgFrontend_1_1UI_1_1WaitingDialog.html#a809d0ffc8208eb2ff5d8da76c8ee10dc',1,'GpgFrontend::UI::WaitingDialog']]], + ['willcharsetchange_1334',['WillCharsetChange',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a1c1c0174ed1ed9c5a90739eafc5c3267',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['wizard_1335',['Wizard',['../classGpgFrontend_1_1UI_1_1Wizard.html#a448db8fe5ace96418ffd1f23b0142b10',1,'GpgFrontend::UI::Wizard']]], + ['write_5fbuffer_5fto_5ffile_1336',['write_buffer_to_file',['../namespaceGpgFrontend.html#a5135069571678eda9c1f07d17ed9ac41',1,'GpgFrontend']]], + ['writefile_1337',['WriteFile',['../classGpgFrontend_1_1FileOperator.html#a2f21ef4a88448b1eddf756302913d338',1,'GpgFrontend::FileOperator']]], + ['writefilestd_1338',['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 da5476eb..c8ab5250 100644 --- a/docs/html/search/functions_17.js +++ b/docs/html/search/functions_17.js @@ -1,14 +1,14 @@ var searchData= [ - ['_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']]] + ['_7edataobject_1339',['~DataObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a85bb3c482bf6f47edcd6593cca568a22',1,'GpgFrontend::Thread::Task::DataObject']]], + ['_7eglobalsettingstation_1340',['~GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html#af700161900e623a0ea14261d51616451',1,'GpgFrontend::GlobalSettingStation']]], + ['_7egpgcontext_1341',['~GpgContext',['../classGpgFrontend_1_1GpgContext.html#ae89dee551354c1541337881898832725',1,'GpgFrontend::GpgContext']]], + ['_7egpgfrontendapplication_1342',['~GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a32f0e7dda69f7b1e3cc869340736c590',1,'GpgFrontend::UI::GpgFrontendApplication']]], + ['_7egpgkey_1343',['~GpgKey',['../classGpgFrontend_1_1GpgKey.html#a1e9223bb1ad8fbb4e769680de39b3697',1,'GpgFrontend::GpgKey']]], + ['_7egpgkeysignature_1344',['~GpgKeySignature',['../classGpgFrontend_1_1GpgKeySignature.html#ab4d7044f4e1ddcf0ae0d28be43f0fcb3',1,'GpgFrontend::GpgKeySignature']]], + ['_7egpgsignature_1345',['~GpgSignature',['../classGpgFrontend_1_1GpgSignature.html#a44f137a457ac109d145a1cdd8e544e3a',1,'GpgFrontend::GpgSignature']]], + ['_7esettingsobject_1346',['~SettingsObject',['../classGpgFrontend_1_1UI_1_1SettingsObject.html#ae71336d240ace35756d1852a46271f6c',1,'GpgFrontend::UI::SettingsObject']]], + ['_7esingletonfunctionobject_1347',['~SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html#a8296be8c449f88175285186831b995bc',1,'GpgFrontend::SingletonFunctionObject']]], + ['_7etask_1348',['~Task',['../classGpgFrontend_1_1Thread_1_1Task.html#a37766a505662b33ad14672c29e209ea8',1,'GpgFrontend::Thread::Task']]], + ['_7etaskrunner_1349',['~TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#ac3e57b59d537e2a75e741d4a5418ae6d',1,'GpgFrontend::Thread::TaskRunner']]] ]; diff --git a/docs/html/search/functions_2.js b/docs/html/search/functions_2.js index bf68cafe..ffc2aa1c 100644 --- a/docs/html/search/functions_2.js +++ b/docs/html/search/functions_2.js @@ -1,4 +1,4 @@ var searchData= [ - ['beautify_5ffingerprint_840',['beautify_fingerprint',['../namespaceGpgFrontend.html#ac494a4b0d91e08a70db77a399c9a0f30',1,'GpgFrontend']]] + ['beautify_5ffingerprint_841',['beautify_fingerprint',['../namespaceGpgFrontend.html#ac494a4b0d91e08a70db77a399c9a0f30',1,'GpgFrontend']]] ]; diff --git a/docs/html/search/functions_3.js b/docs/html/search/functions_3.js index dffe43db..67345ac8 100644 --- a/docs/html/search/functions_3.js +++ b/docs/html/search/functions_3.js @@ -1,46 +1,46 @@ var searchData= [ - ['calculatehash_841',['CalculateHash',['../classGpgFrontend_1_1FileOperator.html#a08baef750a723ee709804120a34d19c9',1,'GpgFrontend::FileOperator']]], - ['channelobject_842',['ChannelObject',['../classGpgFrontend_1_1ChannelObject.html#aedbf32eddc701e521bd8e790ef208da0',1,'GpgFrontend::ChannelObject::ChannelObject() noexcept'],['../classGpgFrontend_1_1ChannelObject.html#a68ad2a19339e3cd50626fe0eaad17ccd',1,'GpgFrontend::ChannelObject::ChannelObject(int channel)']]], - ['check_843',['Check',['../classGpgFrontend_1_1UI_1_1SettingsObject.html#a5ddcc2e0bc6d4c2f88e6e00371d4792e',1,'GpgFrontend::UI::SettingsObject::Check(const std::string &key, const nlohmann::json &default_value)'],['../classGpgFrontend_1_1UI_1_1SettingsObject.html#a80801f6912991ba625b5ead29a4558f0',1,'GpgFrontend::UI::SettingsObject::Check(const std::string &key)']]], - ['check_5femail_5faddress_844',['check_email_address',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ae8aeaff7be0b1552b29d1f209af0bd28',1,'GpgFrontend::UI::KeyGenDialog::check_email_address()'],['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#ad4e09323a53992daee08173bed17bf9a',1,'GpgFrontend::UI::KeyNewUIDDialog::check_email_address()']]], - ['check_5fgpg_5ferror_845',['check_gpg_error',['../namespaceGpgFrontend.html#adf0fbe100c3ea1bf2f33bc0f55dfff17',1,'GpgFrontend::check_gpg_error(GpgError gpgmeError, const std::string &comment)'],['../namespaceGpgFrontend.html#afdad4e5f4c3ac891c09216e245c0f48e',1,'GpgFrontend::check_gpg_error(GpgError err)']]], - ['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#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']]], - ['containsprivatekeys_853',['ContainsPrivateKeys',['../classGpgFrontend_1_1UI_1_1KeyList.html#a20c4a242f49123bd64982952fdad08e9',1,'GpgFrontend::UI::KeyList']]], - ['contextmenuevent_854',['contextMenuEvent',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a35d0b436cf13fa127dbba5b12f8f9144',1,'GpgFrontend::UI::KeyPairUIDTab::contextMenuEvent()'],['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#ad415e2dd5046c744b650b26c123130ff',1,'GpgFrontend::UI::KeyPairSubkeyTab::contextMenuEvent()'],['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#a8cbd6e448e187260730ab8301ad4892e',1,'GpgFrontend::UI::KeyserverTab::contextMenuEvent()'],['../classGpgFrontend_1_1UI_1_1KeyList.html#a82da61a76a08023b2ddbe2a6869f4190',1,'GpgFrontend::UI::KeyList::contextMenuEvent()']]], - ['copy_855',['Copy',['../classGpgFrontend_1_1GpgKey.html#ac90afba6a5aec0bc2c0f1e01de417ec8',1,'GpgFrontend::GpgKey']]], - ['create_5factions_856',['create_actions',['../classGpgFrontend_1_1UI_1_1KeyMgmt.html#a23cf6665537f2a96708e9d5423ce3bb8',1,'GpgFrontend::UI::KeyMgmt::create_actions()'],['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0ab96012df041f2c2e47092db0600355',1,'GpgFrontend::UI::MainWindow::create_actions()']]], - ['create_5fattachment_5fdock_857',['create_attachment_dock',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a92a6d8d46e197e25eaacc3ad7ed289ab',1,'GpgFrontend::UI::MainWindow']]], - ['create_5fbasic_5finfo_5fgroup_5fbox_858',['create_basic_info_group_box',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a029017ad2e025a43d21144f1b7427593',1,'GpgFrontend::UI::SubkeyGenerateDialog::create_basic_info_group_box()'],['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a010acccfd5fb5475769658f9cf68da7b',1,'GpgFrontend::UI::KeyGenDialog::create_basic_info_group_box()']]], - ['create_5fbutton_859',['create_button',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a4c5d8a43fd8a6f1c217d83694dcc689c',1,'GpgFrontend::UI::KeyServerImportDialog']]], - ['create_5fbutton_5fbox_860',['create_button_box',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a9f5912ff99e3820d5fa6a58ed14a70c8',1,'GpgFrontend::UI::KeyImportDetailDialog']]], - ['create_5fcombobox_861',['create_comboBox',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ab9e2fe38d54c0f0d3d73907300faa513',1,'GpgFrontend::UI::KeyServerImportDialog']]], - ['create_5fdock_5fwindows_862',['create_dock_windows',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a04668246525874760f47a340b4b7d8de',1,'GpgFrontend::UI::MainWindow']]], - ['create_5fgeneral_5finfo_5fbox_863',['create_general_info_box',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#af88ee416b2227ce847a3b8123a23ce24',1,'GpgFrontend::UI::KeyImportDetailDialog']]], - ['create_5fkey_5finfo_5fgrid_864',['create_key_info_grid',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#a25b96a986a009d35847f94719ec327c1',1,'GpgFrontend::UI::VerifyKeyDetailBox']]], - ['create_5fkey_5fusage_5fgroup_5fbox_865',['create_key_usage_group_box',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a8e6554b47e0dd6c2025ccb0d1d0cb658',1,'GpgFrontend::UI::KeyGenDialog::create_key_usage_group_box()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aa24064a5f585b23d71e1036958f31d7d',1,'GpgFrontend::UI::SubkeyGenerateDialog::create_key_usage_group_box()']]], - ['create_5fkeys_5ftable_866',['create_keys_table',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a6f006d4702885fb41317d10d654dfa3c',1,'GpgFrontend::UI::KeyServerImportDialog::create_keys_table()'],['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a9e37a653a982e671977d2101b72ae3b6',1,'GpgFrontend::UI::KeyImportDetailDialog::create_keys_table()']]], - ['create_5fmanage_5fuid_5fmenu_867',['create_manage_uid_menu',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a5c029e55323d54aa2306267cea1809ea',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['create_5fmenus_868',['create_menus',['../classGpgFrontend_1_1UI_1_1KeyMgmt.html#a6ee90b63414038e9f840933a5b2c5e46',1,'GpgFrontend::UI::KeyMgmt::create_menus()'],['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9fbd8a2f5b2b5869276db83a4ad20216',1,'GpgFrontend::UI::MainWindow::create_menus()']]], - ['create_5fpopup_5fmenu_869',['create_popup_menu',['../classGpgFrontend_1_1UI_1_1FilePage.html#a73e4b62f4926b1aeb3f2183a1d05d871',1,'GpgFrontend::UI::FilePage']]], - ['create_5fsign_5flist_870',['create_sign_list',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a32dc14242d88ca168ae71e9a895d2b29',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['create_5fsign_5fpopup_5fmenu_871',['create_sign_popup_menu',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a7653654c81149c48e7e4d5f0c00c360f',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['create_5fstatus_5fbar_872',['create_status_bar',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1ab1f3f57f9969447491e63f54420585',1,'GpgFrontend::UI::MainWindow']]], - ['create_5fsubkey_5flist_873',['create_subkey_list',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a0503508ce7e11f497a05cdf6f536a253',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], - ['create_5fsubkey_5fopera_5fmenu_874',['create_subkey_opera_menu',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a324446276f111be455773381ee8b6739',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], - ['create_5ftool_5fbars_875',['create_tool_bars',['../classGpgFrontend_1_1UI_1_1KeyMgmt.html#a6791486fd94567d504d48050c23476b5',1,'GpgFrontend::UI::KeyMgmt::create_tool_bars()'],['../classGpgFrontend_1_1UI_1_1MainWindow.html#aaa1de043b71dbcf0e8d8c265b2a67bd3',1,'GpgFrontend::UI::MainWindow::create_tool_bars()']]], - ['create_5fuid_5flist_876',['create_uid_list',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a0511f5714548920cf3563306536d0bd7',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['create_5fuid_5fpopup_5fmenu_877',['create_uid_popup_menu',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a2a87d3ed720a57a5d96a108c7a9827d7',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['createinstance_878',['CreateInstance',['../classGpgFrontend_1_1SingletonFunctionObject.html#a083807ff8cec58dc0aa732844edaf518',1,'GpgFrontend::SingletonFunctionObject']]], - ['createoperamenu_879',['CreateOperaMenu',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a4dcec352e412afe5c5491f941495090f',1,'GpgFrontend::UI::KeyPairOperaTab']]], - ['ctxchecktask_880',['CtxCheckTask',['../classGpgFrontend_1_1Thread_1_1CtxCheckTask.html#a9d5f0969bcedc5687e0a50ed3b36a869',1,'GpgFrontend::Thread::CtxCheckTask']]], - ['curfilepage_881',['CurFilePage',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa30daf558cb85bbdcad55a805a106109',1,'GpgFrontend::UI::TextEdit']]], - ['currentversionreleased_882',['CurrentVersionReleased',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a43663cd2d086299a0f0304f5bde9c663',1,'GpgFrontend::UI::SoftwareVersion']]], - ['curtextpage_883',['CurTextPage',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a7aa1230fbf796225bd6b83d381e11a3b',1,'GpgFrontend::UI::TextEdit']]] + ['calculatehash_842',['CalculateHash',['../classGpgFrontend_1_1FileOperator.html#a08baef750a723ee709804120a34d19c9',1,'GpgFrontend::FileOperator']]], + ['channelobject_843',['ChannelObject',['../classGpgFrontend_1_1ChannelObject.html#aedbf32eddc701e521bd8e790ef208da0',1,'GpgFrontend::ChannelObject::ChannelObject() noexcept'],['../classGpgFrontend_1_1ChannelObject.html#a68ad2a19339e3cd50626fe0eaad17ccd',1,'GpgFrontend::ChannelObject::ChannelObject(int channel)']]], + ['check_844',['Check',['../classGpgFrontend_1_1UI_1_1SettingsObject.html#a5ddcc2e0bc6d4c2f88e6e00371d4792e',1,'GpgFrontend::UI::SettingsObject::Check(const std::string &key, const nlohmann::json &default_value)'],['../classGpgFrontend_1_1UI_1_1SettingsObject.html#a80801f6912991ba625b5ead29a4558f0',1,'GpgFrontend::UI::SettingsObject::Check(const std::string &key)']]], + ['check_5femail_5faddress_845',['check_email_address',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ae8aeaff7be0b1552b29d1f209af0bd28',1,'GpgFrontend::UI::KeyGenDialog::check_email_address()'],['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#ad4e09323a53992daee08173bed17bf9a',1,'GpgFrontend::UI::KeyNewUIDDialog::check_email_address()']]], + ['check_5fgpg_5ferror_846',['check_gpg_error',['../namespaceGpgFrontend.html#adf0fbe100c3ea1bf2f33bc0f55dfff17',1,'GpgFrontend::check_gpg_error(GpgError gpgmeError, const std::string &comment)'],['../namespaceGpgFrontend.html#afdad4e5f4c3ac891c09216e245c0f48e',1,'GpgFrontend::check_gpg_error(GpgError err)']]], + ['check_5fgpg_5ferror_5f2_5ferr_5fcode_847',['check_gpg_error_2_err_code',['../namespaceGpgFrontend.html#a4edac6df92596ba8eea3a8cdc1173684',1,'GpgFrontend']]], + ['choosepage_848',['ChoosePage',['../classGpgFrontend_1_1UI_1_1ChoosePage.html#ae370e789009be3926410cb749c86907b',1,'GpgFrontend::UI::ChoosePage']]], + ['close_5fattachment_5fdock_849',['close_attachment_dock',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a473b679fa0dc3cdf4f6f98d6553fa0ec',1,'GpgFrontend::UI::MainWindow']]], + ['closeevent_850',['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()']]], + ['closenotebyclass_851',['CloseNoteByClass',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aee4f46e54f29da671838ed232e526700',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['commonutils_852',['CommonUtils',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a78f5c2696152e9326e845c76c94be965',1,'GpgFrontend::UI::CommonUtils']]], + ['conclusionpage_853',['ConclusionPage',['../classGpgFrontend_1_1UI_1_1ConclusionPage.html#afcd98b4735047807d384e6b3d3aea3a7',1,'GpgFrontend::UI::ConclusionPage']]], + ['containsprivatekeys_854',['ContainsPrivateKeys',['../classGpgFrontend_1_1UI_1_1KeyList.html#a20c4a242f49123bd64982952fdad08e9',1,'GpgFrontend::UI::KeyList']]], + ['contextmenuevent_855',['contextMenuEvent',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a35d0b436cf13fa127dbba5b12f8f9144',1,'GpgFrontend::UI::KeyPairUIDTab::contextMenuEvent()'],['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#ad415e2dd5046c744b650b26c123130ff',1,'GpgFrontend::UI::KeyPairSubkeyTab::contextMenuEvent()'],['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#a8cbd6e448e187260730ab8301ad4892e',1,'GpgFrontend::UI::KeyserverTab::contextMenuEvent()'],['../classGpgFrontend_1_1UI_1_1KeyList.html#a82da61a76a08023b2ddbe2a6869f4190',1,'GpgFrontend::UI::KeyList::contextMenuEvent()']]], + ['copy_856',['Copy',['../classGpgFrontend_1_1GpgKey.html#ac90afba6a5aec0bc2c0f1e01de417ec8',1,'GpgFrontend::GpgKey']]], + ['create_5factions_857',['create_actions',['../classGpgFrontend_1_1UI_1_1KeyMgmt.html#a23cf6665537f2a96708e9d5423ce3bb8',1,'GpgFrontend::UI::KeyMgmt::create_actions()'],['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0ab96012df041f2c2e47092db0600355',1,'GpgFrontend::UI::MainWindow::create_actions()']]], + ['create_5fattachment_5fdock_858',['create_attachment_dock',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a92a6d8d46e197e25eaacc3ad7ed289ab',1,'GpgFrontend::UI::MainWindow']]], + ['create_5fbasic_5finfo_5fgroup_5fbox_859',['create_basic_info_group_box',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a029017ad2e025a43d21144f1b7427593',1,'GpgFrontend::UI::SubkeyGenerateDialog::create_basic_info_group_box()'],['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a010acccfd5fb5475769658f9cf68da7b',1,'GpgFrontend::UI::KeyGenDialog::create_basic_info_group_box()']]], + ['create_5fbutton_860',['create_button',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a4c5d8a43fd8a6f1c217d83694dcc689c',1,'GpgFrontend::UI::KeyServerImportDialog']]], + ['create_5fbutton_5fbox_861',['create_button_box',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a9f5912ff99e3820d5fa6a58ed14a70c8',1,'GpgFrontend::UI::KeyImportDetailDialog']]], + ['create_5fcombobox_862',['create_comboBox',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ab9e2fe38d54c0f0d3d73907300faa513',1,'GpgFrontend::UI::KeyServerImportDialog']]], + ['create_5fdock_5fwindows_863',['create_dock_windows',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a04668246525874760f47a340b4b7d8de',1,'GpgFrontend::UI::MainWindow']]], + ['create_5fgeneral_5finfo_5fbox_864',['create_general_info_box',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#af88ee416b2227ce847a3b8123a23ce24',1,'GpgFrontend::UI::KeyImportDetailDialog']]], + ['create_5fkey_5finfo_5fgrid_865',['create_key_info_grid',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#a25b96a986a009d35847f94719ec327c1',1,'GpgFrontend::UI::VerifyKeyDetailBox']]], + ['create_5fkey_5fusage_5fgroup_5fbox_866',['create_key_usage_group_box',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a8e6554b47e0dd6c2025ccb0d1d0cb658',1,'GpgFrontend::UI::KeyGenDialog::create_key_usage_group_box()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aa24064a5f585b23d71e1036958f31d7d',1,'GpgFrontend::UI::SubkeyGenerateDialog::create_key_usage_group_box()']]], + ['create_5fkeys_5ftable_867',['create_keys_table',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a6f006d4702885fb41317d10d654dfa3c',1,'GpgFrontend::UI::KeyServerImportDialog::create_keys_table()'],['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a9e37a653a982e671977d2101b72ae3b6',1,'GpgFrontend::UI::KeyImportDetailDialog::create_keys_table()']]], + ['create_5fmanage_5fuid_5fmenu_868',['create_manage_uid_menu',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a5c029e55323d54aa2306267cea1809ea',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['create_5fmenus_869',['create_menus',['../classGpgFrontend_1_1UI_1_1KeyMgmt.html#a6ee90b63414038e9f840933a5b2c5e46',1,'GpgFrontend::UI::KeyMgmt::create_menus()'],['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9fbd8a2f5b2b5869276db83a4ad20216',1,'GpgFrontend::UI::MainWindow::create_menus()']]], + ['create_5fpopup_5fmenu_870',['create_popup_menu',['../classGpgFrontend_1_1UI_1_1FilePage.html#a73e4b62f4926b1aeb3f2183a1d05d871',1,'GpgFrontend::UI::FilePage']]], + ['create_5fsign_5flist_871',['create_sign_list',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a32dc14242d88ca168ae71e9a895d2b29',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['create_5fsign_5fpopup_5fmenu_872',['create_sign_popup_menu',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a7653654c81149c48e7e4d5f0c00c360f',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['create_5fstatus_5fbar_873',['create_status_bar',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1ab1f3f57f9969447491e63f54420585',1,'GpgFrontend::UI::MainWindow']]], + ['create_5fsubkey_5flist_874',['create_subkey_list',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a0503508ce7e11f497a05cdf6f536a253',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], + ['create_5fsubkey_5fopera_5fmenu_875',['create_subkey_opera_menu',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a324446276f111be455773381ee8b6739',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], + ['create_5ftool_5fbars_876',['create_tool_bars',['../classGpgFrontend_1_1UI_1_1KeyMgmt.html#a6791486fd94567d504d48050c23476b5',1,'GpgFrontend::UI::KeyMgmt::create_tool_bars()'],['../classGpgFrontend_1_1UI_1_1MainWindow.html#aaa1de043b71dbcf0e8d8c265b2a67bd3',1,'GpgFrontend::UI::MainWindow::create_tool_bars()']]], + ['create_5fuid_5flist_877',['create_uid_list',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a0511f5714548920cf3563306536d0bd7',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['create_5fuid_5fpopup_5fmenu_878',['create_uid_popup_menu',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a2a87d3ed720a57a5d96a108c7a9827d7',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['createinstance_879',['CreateInstance',['../classGpgFrontend_1_1SingletonFunctionObject.html#a083807ff8cec58dc0aa732844edaf518',1,'GpgFrontend::SingletonFunctionObject']]], + ['createoperamenu_880',['CreateOperaMenu',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a4dcec352e412afe5c5491f941495090f',1,'GpgFrontend::UI::KeyPairOperaTab']]], + ['ctxchecktask_881',['CtxCheckTask',['../classGpgFrontend_1_1Thread_1_1CtxCheckTask.html#a9d5f0969bcedc5687e0a50ed3b36a869',1,'GpgFrontend::Thread::CtxCheckTask']]], + ['curfilepage_882',['CurFilePage',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa30daf558cb85bbdcad55a805a106109',1,'GpgFrontend::UI::TextEdit']]], + ['currentversionreleased_883',['CurrentVersionReleased',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a43663cd2d086299a0f0304f5bde9c663',1,'GpgFrontend::UI::SoftwareVersion']]], + ['curtextpage_884',['CurTextPage',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a7aa1230fbf796225bd6b83d381e11a3b',1,'GpgFrontend::UI::TextEdit']]] ]; diff --git a/docs/html/search/functions_4.js b/docs/html/search/functions_4.js index d7ba5c86..23e180de 100644 --- a/docs/html/search/functions_4.js +++ b/docs/html/search/functions_4.js @@ -1,17 +1,17 @@ var searchData= [ - ['dataobjectoperator_884',['DataObjectOperator',['../classGpgFrontend_1_1DataObjectOperator.html#a3a8ae5c36fec01d0d5c3e5f9aed457a6',1,'GpgFrontend::DataObjectOperator']]], - ['decrypt_885',['Decrypt',['../classGpgFrontend_1_1GpgBasicOperator.html#a9ea9e81194917e08f46eb657281b7953',1,'GpgFrontend::GpgBasicOperator']]], - ['decryptfile_886',['DecryptFile',['../classGpgFrontend_1_1GpgFileOpera.html#a74eb3ba532a236d8ad284b41265b0ccd',1,'GpgFrontend::GpgFileOpera']]], - ['decryptverify_887',['DecryptVerify',['../classGpgFrontend_1_1GpgBasicOperator.html#a11845a9a3ea2941e14faa9130f0ac9ef',1,'GpgFrontend::GpgBasicOperator']]], - ['decryptverifyfile_888',['DecryptVerifyFile',['../classGpgFrontend_1_1GpgFileOpera.html#a90949b4e9e6116784260cd0e416551db',1,'GpgFrontend::GpgFileOpera']]], - ['delete_5fkeys_5fwith_5fwarning_889',['delete_keys_with_warning',['../classGpgFrontend_1_1UI_1_1KeyMgmt.html#a0b139ae0d4baa234932cf228e94abd6b',1,'GpgFrontend::UI::KeyMgmt']]], - ['delete_5fwidgets_5fin_5flayout_890',['delete_widgets_in_layout',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a852c1fe10c7d3153a2146bcea4dbe9ad',1,'GpgFrontend::UI::InfoBoardWidget']]], - ['deletekey_891',['DeleteKey',['../classGpgFrontend_1_1GpgKeyOpera.html#a151c47b997951e9162f8b036c3cb15e0',1,'GpgFrontend::GpgKeyOpera']]], - ['deletekeys_892',['DeleteKeys',['../classGpgFrontend_1_1GpgKeyOpera.html#a8a06d0f7a600d4428359b653a68f717e',1,'GpgFrontend::GpgKeyOpera']]], - ['detect_893',['Detect',['../classGpgFrontend_1_1CharsetOperator.html#a5a444a0fbd508f6af6a56f4151c21c1f',1,'GpgFrontend::CharsetOperator']]], - ['detect_5fcr_5flf_894',['detect_cr_lf',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#af08be6a1eaec76403b12dc6e42df546c',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['detect_5fencoding_895',['detect_encoding',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a14b7431a786ce59e98576e3680cb9a58',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['dragenterevent_896',['dragEnterEvent',['../classGpgFrontend_1_1UI_1_1KeyList.html#ae3ad87e114432b0d659a0297d520d72f',1,'GpgFrontend::UI::KeyList']]], - ['dropevent_897',['dropEvent',['../classGpgFrontend_1_1UI_1_1KeyList.html#a23ebf79be8de637560d41afd0433c35f',1,'GpgFrontend::UI::KeyList']]] + ['dataobjectoperator_885',['DataObjectOperator',['../classGpgFrontend_1_1DataObjectOperator.html#a3a8ae5c36fec01d0d5c3e5f9aed457a6',1,'GpgFrontend::DataObjectOperator']]], + ['decrypt_886',['Decrypt',['../classGpgFrontend_1_1GpgBasicOperator.html#a9ea9e81194917e08f46eb657281b7953',1,'GpgFrontend::GpgBasicOperator']]], + ['decryptfile_887',['DecryptFile',['../classGpgFrontend_1_1GpgFileOpera.html#a74eb3ba532a236d8ad284b41265b0ccd',1,'GpgFrontend::GpgFileOpera']]], + ['decryptverify_888',['DecryptVerify',['../classGpgFrontend_1_1GpgBasicOperator.html#a11845a9a3ea2941e14faa9130f0ac9ef',1,'GpgFrontend::GpgBasicOperator']]], + ['decryptverifyfile_889',['DecryptVerifyFile',['../classGpgFrontend_1_1GpgFileOpera.html#a90949b4e9e6116784260cd0e416551db',1,'GpgFrontend::GpgFileOpera']]], + ['delete_5fkeys_5fwith_5fwarning_890',['delete_keys_with_warning',['../classGpgFrontend_1_1UI_1_1KeyMgmt.html#a0b139ae0d4baa234932cf228e94abd6b',1,'GpgFrontend::UI::KeyMgmt']]], + ['delete_5fwidgets_5fin_5flayout_891',['delete_widgets_in_layout',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a852c1fe10c7d3153a2146bcea4dbe9ad',1,'GpgFrontend::UI::InfoBoardWidget']]], + ['deletekey_892',['DeleteKey',['../classGpgFrontend_1_1GpgKeyOpera.html#a151c47b997951e9162f8b036c3cb15e0',1,'GpgFrontend::GpgKeyOpera']]], + ['deletekeys_893',['DeleteKeys',['../classGpgFrontend_1_1GpgKeyOpera.html#a8a06d0f7a600d4428359b653a68f717e',1,'GpgFrontend::GpgKeyOpera']]], + ['detect_894',['Detect',['../classGpgFrontend_1_1CharsetOperator.html#a5a444a0fbd508f6af6a56f4151c21c1f',1,'GpgFrontend::CharsetOperator']]], + ['detect_5fcr_5flf_895',['detect_cr_lf',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#af08be6a1eaec76403b12dc6e42df546c',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['detect_5fencoding_896',['detect_encoding',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a14b7431a786ce59e98576e3680cb9a58',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['dragenterevent_897',['dragEnterEvent',['../classGpgFrontend_1_1UI_1_1KeyList.html#ae3ad87e114432b0d659a0297d520d72f',1,'GpgFrontend::UI::KeyList']]], + ['dropevent_898',['dropEvent',['../classGpgFrontend_1_1UI_1_1KeyList.html#a23ebf79be8de637560d41afd0433c35f',1,'GpgFrontend::UI::KeyList']]] ]; diff --git a/docs/html/search/functions_5.js b/docs/html/search/functions_5.js index 08c96b5b..988526c8 100644 --- a/docs/html/search/functions_5.js +++ b/docs/html/search/functions_5.js @@ -1,16 +1,16 @@ var searchData= [ - ['encrypt_898',['Encrypt',['../classGpgFrontend_1_1GpgBasicOperator.html#a32e1eac6bb0f322588ae75ae36a9884a',1,'GpgFrontend::GpgBasicOperator']]], - ['encryptfile_899',['EncryptFile',['../classGpgFrontend_1_1GpgFileOpera.html#a234d939ae0b2c3f799dd01130fad9379',1,'GpgFrontend::GpgFileOpera']]], - ['encryptfilesymmetric_900',['EncryptFileSymmetric',['../classGpgFrontend_1_1GpgFileOpera.html#a826efca057afb07157453b3b9e267b0f',1,'GpgFrontend::GpgFileOpera']]], - ['encryptsign_901',['EncryptSign',['../classGpgFrontend_1_1GpgBasicOperator.html#a08906cf2bc2ddad8489438610f388f8a',1,'GpgFrontend::GpgBasicOperator']]], - ['encryptsignfile_902',['EncryptSignFile',['../classGpgFrontend_1_1GpgFileOpera.html#a6353e1688b113e5746aced6aa7f3876e',1,'GpgFrontend::GpgFileOpera']]], - ['encryptsymmetric_903',['EncryptSymmetric',['../classGpgFrontend_1_1GpgBasicOperator.html#a8f4ef57e941a066ad9d070eee51e2073',1,'GpgFrontend::GpgBasicOperator']]], - ['execute_904',['Execute',['../classGpgFrontend_1_1GpgCommandExecutor.html#afca1c4b6a6c3758a834832768f52bbca',1,'GpgFrontend::GpgCommandExecutor']]], - ['exportkey_905',['ExportKey',['../classGpgFrontend_1_1GpgKeyImportExporter.html#a51cb18aa7302d7a48ccd1ee17f060391',1,'GpgFrontend::GpgKeyImportExporter']]], - ['exportkeyopenssh_906',['ExportKeyOpenSSH',['../classGpgFrontend_1_1GpgKeyImportExporter.html#aa0a73314ef94f397e2ef53d40abc9731',1,'GpgFrontend::GpgKeyImportExporter']]], - ['exportkeypackagedialog_907',['ExportKeyPackageDialog',['../classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html#a7d1899302ef743671c3002d04f6c9dd8',1,'GpgFrontend::UI::ExportKeyPackageDialog']]], - ['exportkeys_908',['ExportKeys',['../classGpgFrontend_1_1GpgKeyImportExporter.html#aa9fbda8f6c3fa36a503075d7a124fa3f',1,'GpgFrontend::GpgKeyImportExporter::ExportKeys(KeyIdArgsListPtr &uid_list, ByteArrayPtr &out_buffer, bool secret=false) const'],['../classGpgFrontend_1_1GpgKeyImportExporter.html#a8157afa844c8bf964ce83f5de71efc5a',1,'GpgFrontend::GpgKeyImportExporter::ExportKeys(const KeyArgsList &keys, ByteArrayPtr &outBuffer, bool secret=false) const']]], - ['exportsecretkey_909',['ExportSecretKey',['../classGpgFrontend_1_1GpgKeyImportExporter.html#a6a5e8d642ac5a3e98799af6495ef590b',1,'GpgFrontend::GpgKeyImportExporter']]], - ['exportsecretkeyshortest_910',['ExportSecretKeyShortest',['../classGpgFrontend_1_1GpgKeyImportExporter.html#abf7c0442549ae8602e1249cdf0da55df',1,'GpgFrontend::GpgKeyImportExporter']]] + ['encrypt_899',['Encrypt',['../classGpgFrontend_1_1GpgBasicOperator.html#a32e1eac6bb0f322588ae75ae36a9884a',1,'GpgFrontend::GpgBasicOperator']]], + ['encryptfile_900',['EncryptFile',['../classGpgFrontend_1_1GpgFileOpera.html#a234d939ae0b2c3f799dd01130fad9379',1,'GpgFrontend::GpgFileOpera']]], + ['encryptfilesymmetric_901',['EncryptFileSymmetric',['../classGpgFrontend_1_1GpgFileOpera.html#a826efca057afb07157453b3b9e267b0f',1,'GpgFrontend::GpgFileOpera']]], + ['encryptsign_902',['EncryptSign',['../classGpgFrontend_1_1GpgBasicOperator.html#a08906cf2bc2ddad8489438610f388f8a',1,'GpgFrontend::GpgBasicOperator']]], + ['encryptsignfile_903',['EncryptSignFile',['../classGpgFrontend_1_1GpgFileOpera.html#a6353e1688b113e5746aced6aa7f3876e',1,'GpgFrontend::GpgFileOpera']]], + ['encryptsymmetric_904',['EncryptSymmetric',['../classGpgFrontend_1_1GpgBasicOperator.html#a8f4ef57e941a066ad9d070eee51e2073',1,'GpgFrontend::GpgBasicOperator']]], + ['execute_905',['Execute',['../classGpgFrontend_1_1GpgCommandExecutor.html#afca1c4b6a6c3758a834832768f52bbca',1,'GpgFrontend::GpgCommandExecutor']]], + ['exportkey_906',['ExportKey',['../classGpgFrontend_1_1GpgKeyImportExporter.html#a51cb18aa7302d7a48ccd1ee17f060391',1,'GpgFrontend::GpgKeyImportExporter']]], + ['exportkeyopenssh_907',['ExportKeyOpenSSH',['../classGpgFrontend_1_1GpgKeyImportExporter.html#aa0a73314ef94f397e2ef53d40abc9731',1,'GpgFrontend::GpgKeyImportExporter']]], + ['exportkeypackagedialog_908',['ExportKeyPackageDialog',['../classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html#a7d1899302ef743671c3002d04f6c9dd8',1,'GpgFrontend::UI::ExportKeyPackageDialog']]], + ['exportkeys_909',['ExportKeys',['../classGpgFrontend_1_1GpgKeyImportExporter.html#aa9fbda8f6c3fa36a503075d7a124fa3f',1,'GpgFrontend::GpgKeyImportExporter::ExportKeys(KeyIdArgsListPtr &uid_list, ByteArrayPtr &out_buffer, bool secret=false) const'],['../classGpgFrontend_1_1GpgKeyImportExporter.html#a8157afa844c8bf964ce83f5de71efc5a',1,'GpgFrontend::GpgKeyImportExporter::ExportKeys(const KeyArgsList &keys, ByteArrayPtr &outBuffer, bool secret=false) const']]], + ['exportsecretkey_910',['ExportSecretKey',['../classGpgFrontend_1_1GpgKeyImportExporter.html#a6a5e8d642ac5a3e98799af6495ef590b',1,'GpgFrontend::GpgKeyImportExporter']]], + ['exportsecretkeyshortest_911',['ExportSecretKeyShortest',['../classGpgFrontend_1_1GpgKeyImportExporter.html#abf7c0442549ae8602e1249cdf0da55df',1,'GpgFrontend::GpgKeyImportExporter']]] ]; diff --git a/docs/html/search/functions_6.js b/docs/html/search/functions_6.js index 03efa1b6..67c37919 100644 --- a/docs/html/search/functions_6.js +++ b/docs/html/search/functions_6.js @@ -1,9 +1,9 @@ var searchData= [ - ['fetchkey_911',['FetchKey',['../classGpgFrontend_1_1GpgKeyGetter.html#afe78ac470287d70e7df51aae327b9f54',1,'GpgFrontend::GpgKeyGetter']]], - ['filepage_912',['FilePage',['../classGpgFrontend_1_1UI_1_1FilePage.html#a48fb14a3296f19f9b1c3b9b48c3a1bf3',1,'GpgFrontend::UI::FilePage']]], - ['findobjectinchannel_913',['FindObjectInChannel',['../classGpgFrontend_1_1SingletonStorage.html#a4c16c32e549494e394a0ddd859890a02',1,'GpgFrontend::SingletonStorage']]], - ['findwidget_914',['FindWidget',['../classGpgFrontend_1_1UI_1_1FindWidget.html#a495f281e72e5ddc10c8e944183b96dd9',1,'GpgFrontend::UI::FindWidget']]], - ['flushkeycache_915',['FlushKeyCache',['../classGpgFrontend_1_1GpgKeyGetter.html#ad9a902ea54566d4583304b072c4add51',1,'GpgFrontend::GpgKeyGetter']]], - ['free_5fheap_5fptr_916',['free_heap_ptr',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a17252d07835dab3772381639ec8473ea',1,'GpgFrontend::Thread::Task::DataObject']]] + ['fetchkey_912',['FetchKey',['../classGpgFrontend_1_1GpgKeyGetter.html#afe78ac470287d70e7df51aae327b9f54',1,'GpgFrontend::GpgKeyGetter']]], + ['filepage_913',['FilePage',['../classGpgFrontend_1_1UI_1_1FilePage.html#a48fb14a3296f19f9b1c3b9b48c3a1bf3',1,'GpgFrontend::UI::FilePage']]], + ['findobjectinchannel_914',['FindObjectInChannel',['../classGpgFrontend_1_1SingletonStorage.html#a4c16c32e549494e394a0ddd859890a02',1,'GpgFrontend::SingletonStorage']]], + ['findwidget_915',['FindWidget',['../classGpgFrontend_1_1UI_1_1FindWidget.html#a495f281e72e5ddc10c8e944183b96dd9',1,'GpgFrontend::UI::FindWidget']]], + ['flushkeycache_916',['FlushKeyCache',['../classGpgFrontend_1_1GpgKeyGetter.html#ad9a902ea54566d4583304b072c4add51',1,'GpgFrontend::GpgKeyGetter']]], + ['free_5fheap_5fptr_917',['free_heap_ptr',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a17252d07835dab3772381639ec8473ea',1,'GpgFrontend::Thread::Task::DataObject']]] ]; diff --git a/docs/html/search/functions_7.js b/docs/html/search/functions_7.js index ea55741d..e6070fed 100644 --- a/docs/html/search/functions_7.js +++ b/docs/html/search/functions_7.js @@ -1,130 +1,130 @@ var searchData= [ - ['generaldialog_917',['GeneralDialog',['../classGpgFrontend_1_1UI_1_1GeneralDialog.html#ac9de4c49668ffaeb6916c64f878a202c',1,'GpgFrontend::UI::GeneralDialog']]], - ['generalmainwindow_918',['GeneralMainWindow',['../classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a62b24183ebf9da18852084879bcb1013',1,'GpgFrontend::UI::GeneralMainWindow']]], - ['generaltab_919',['GeneralTab',['../classGpgFrontend_1_1UI_1_1GeneralTab.html#a214079dfbacdc6898146c8468611cf0c',1,'GpgFrontend::UI::GeneralTab']]], - ['generate_920',['Generate',['../classGpgFrontend_1_1PassphraseGenerator.html#a8b4ee1083343fba6d947b85cd66079b8',1,'GpgFrontend::PassphraseGenerator']]], - ['generate_5fkey_5fpackage_5fname_921',['generate_key_package_name',['../classGpgFrontend_1_1KeyPackageOperator.html#a825d987dacd8a99d9d87729e1861a152',1,'GpgFrontend::KeyPackageOperator']]], - ['generate_5fuuid_922',['generate_uuid',['../classGpgFrontend_1_1Thread_1_1Task.html#a96d087abb7cf99d16f778f1a93b4f9e5',1,'GpgFrontend::Thread::Task']]], - ['generatekey_923',['GenerateKey',['../classGpgFrontend_1_1GpgKeyOpera.html#a4cc3ac91613164d7dc61a016a2b4caea',1,'GpgFrontend::GpgKeyOpera']]], - ['generatekeypackage_924',['GenerateKeyPackage',['../classGpgFrontend_1_1KeyPackageOperator.html#ade02f022e405e98377343c4667c206e9',1,'GpgFrontend::KeyPackageOperator']]], - ['generatekeypackagename_925',['GenerateKeyPackageName',['../classGpgFrontend_1_1KeyPackageOperator.html#ae90b362a32b6f6014cda1dc232bd3f0e',1,'GpgFrontend::KeyPackageOperator']]], - ['generatepassphrase_926',['GeneratePassphrase',['../classGpgFrontend_1_1KeyPackageOperator.html#a6d9cf022a1e0cf54c061495f59c1b4b9',1,'GpgFrontend::KeyPackageOperator']]], - ['generaterevokecert_927',['GenerateRevokeCert',['../classGpgFrontend_1_1GpgKeyOpera.html#a91a9a9f24f6b620ea7b906c529e3d9a4',1,'GpgFrontend::GpgKeyOpera']]], - ['generatesubkey_928',['GenerateSubkey',['../classGpgFrontend_1_1GpgKeyOpera.html#a882d99e8407cc22fb8b6e61c531fbe85',1,'GpgFrontend::GpgKeyOpera']]], - ['genkeyinfo_929',['GenKeyInfo',['../classGpgFrontend_1_1GenKeyInfo.html#a34eca1662ba8d4645751f3ee66582b04',1,'GpgFrontend::GenKeyInfo']]], - ['get_5ffile_5fextension_930',['get_file_extension',['../namespaceGpgFrontend.html#acff2cf5dd5b112b324fa6574ee935f79',1,'GpgFrontend']]], - ['get_5fheap_5fptr_931',['get_heap_ptr',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a0e1ab5e5bf5ef647a30a5ee2884ac63a',1,'GpgFrontend::Thread::Task::DataObject']]], - ['get_5fkey_5fin_5fcache_932',['get_key_in_cache',['../classGpgFrontend_1_1GpgKeyGetter.html#ab5196ef4ed5323fc2af70abf801ea260',1,'GpgFrontend::GpgKeyGetter']]], - ['get_5fonly_5ffile_5fname_5fwith_5fpath_933',['get_only_file_name_with_path',['../namespaceGpgFrontend.html#a5a2f5fc1ad3de55e41a1b7a388821328',1,'GpgFrontend']]], - ['get_5frestart_5fneeded_934',['get_restart_needed',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#a44f48d9578d62b1786cbf10a8f20a518',1,'GpgFrontend::UI::SettingsDialog::get_restart_needed()'],['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7fdaae01c50d540ecd8672091cdfbcc0',1,'GpgFrontend::UI::MainWindow::get_restart_needed()']]], - ['get_5fselected_5fsubkey_935',['get_selected_subkey',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#aedc5f77d6bf9b780b96552a43b323feb',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], - ['get_5fsign_5fselected_936',['get_sign_selected',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a2d7c328d726436061f19a287e481268d',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['get_5fstatus_5fstring_937',['get_status_string',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#ae682853c7eccfd3a6be43765f162f5a4',1,'GpgFrontend::UI::KeyImportDetailDialog']]], - ['get_5fuid_5fchecked_938',['get_uid_checked',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a7898b6fa328bfbc55ee2721bca4b2af1',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['get_5fuid_5fselected_939',['get_uid_selected',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a161bc9787be40a32f487c79faaeb54bf',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['getalgo_940',['GetAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#a6a65ba347156373b6cf98eb8e851d28d',1,'GpgFrontend::GenKeyInfo']]], - ['getallchannelid_941',['GetAllChannelId',['../classGpgFrontend_1_1SingletonStorage.html#a3f09424ebdc097fbdab77564a7d723ea',1,'GpgFrontend::SingletonStorage::GetAllChannelId()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a5f2f0474871971f86ff91fb6a2408621',1,'GpgFrontend::SingletonFunctionObject::GetAllChannelId()']]], - ['getallprivatekeys_942',['GetAllPrivateKeys',['../classGpgFrontend_1_1UI_1_1KeyList.html#a7ead8845ceb7c9310e3f4742251e1d87',1,'GpgFrontend::UI::KeyList']]], - ['getappdir_943',['GetAppDir',['../classGpgFrontend_1_1GlobalSettingStation.html#ae9d1da3d01c4a834120968636596c3c3',1,'GpgFrontend::GlobalSettingStation']]], - ['getbrowser_944',['GetBrowser',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a92c31eea47b42be28c86431384b27846',1,'GpgFrontend::UI::HelpPage']]], - ['getcertsdir_945',['GetCertsDir',['../classGpgFrontend_1_1GlobalSettingStation.html#a385ae4ab6ad5b17742a5405fa693d789',1,'GpgFrontend::GlobalSettingStation']]], - ['getchannel_946',['GetChannel',['../classGpgFrontend_1_1SingletonFunctionObject.html#aa99440b9177f5d0c18840f08a40d64b7',1,'GpgFrontend::SingletonFunctionObject::GetChannel()'],['../classGpgFrontend_1_1ChannelObject.html#a0e13a4bff1cfb679f68a3a2590a3b1b8',1,'GpgFrontend::ChannelObject::GetChannel()']]], - ['getchecked_947',['GetChecked',['../classGpgFrontend_1_1UI_1_1KeyList.html#a4e5862299b0aebe07daf8fbc642a4c38',1,'GpgFrontend::UI::KeyList::GetChecked()'],['../structGpgFrontend_1_1UI_1_1KeyTable.html#a77eba4055ecb7d32fab06f65b80ae07e',1,'GpgFrontend::UI::KeyTable::GetChecked()'],['../classGpgFrontend_1_1UI_1_1KeyList.html#ac1e5046770c36f67aab34715e50c0a33',1,'GpgFrontend::UI::KeyList::GetChecked()']]], - ['getcheckedsigners_948',['GetCheckedSigners',['../classGpgFrontend_1_1UI_1_1SignersPicker.html#a2e98dcdf647a2e0e6455998b018aed00',1,'GpgFrontend::UI::SignersPicker']]], - ['getcomment_949',['GetComment',['../classGpgFrontend_1_1GpgKey.html#af72de794e24876b0e22a8d318ec0f8ad',1,'GpgFrontend::GpgKey::GetComment()'],['../classGpgFrontend_1_1GpgUID.html#a572cf652da288537bdc3f88b4fb1ab18',1,'GpgFrontend::GpgUID::GetComment()'],['../classGpgFrontend_1_1GenKeyInfo.html#ab9f9775fd6363fba372bd0bcc2532892',1,'GpgFrontend::GenKeyInfo::GetComment()'],['../classGpgFrontend_1_1GpgKeySignature.html#a8b025f50bc527b0bbe58bd016bb47772',1,'GpgFrontend::GpgKeySignature::GetComment()']]], - ['getcreatetime_950',['GetCreateTime',['../classGpgFrontend_1_1GpgKey.html#a3fd5bfe6e9fd5f016b854fc92f19146e',1,'GpgFrontend::GpgKey::GetCreateTime()'],['../classGpgFrontend_1_1GpgSubKey.html#a5e897d439606a35103a0b260be28c6a4',1,'GpgFrontend::GpgSubKey::GetCreateTime()'],['../classGpgFrontend_1_1GpgKeySignature.html#adc8ad65688a6dab0993cf655f5361df8',1,'GpgFrontend::GpgKeySignature::GetCreateTime()'],['../classGpgFrontend_1_1GpgSignature.html#a222e57e5992e5e91ca36d8dcc77fd402',1,'GpgFrontend::GpgSignature::GetCreateTime()']]], - ['getdefaultchannel_951',['GetDefaultChannel',['../classGpgFrontend_1_1ChannelObject.html#aece9c525c49900734bc1bebf85b644ef',1,'GpgFrontend::ChannelObject::GetDefaultChannel()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a50e2b3794d6553f4231eaec72d9d0a50',1,'GpgFrontend::SingletonFunctionObject::GetDefaultChannel()']]], - ['getdescription_952',['GetDescription',['../classGpgFrontend_1_1GpgTOFUInfo.html#a471a08bc906d74699f394e34d2581b78',1,'GpgFrontend::GpgTOFUInfo']]], - ['getemail_953',['GetEmail',['../classGpgFrontend_1_1GpgKey.html#a55a6485f6c2cc5bec0fdf02cd7e0d8ea',1,'GpgFrontend::GpgKey::GetEmail()'],['../classGpgFrontend_1_1GpgUID.html#a0d1a061c131e5269923dea52be3b3be4',1,'GpgFrontend::GpgUID::GetEmail()'],['../classGpgFrontend_1_1GenKeyInfo.html#a76721be08c18907762ba6f6ccc4afc8a',1,'GpgFrontend::GenKeyInfo::GetEmail()'],['../classGpgFrontend_1_1GpgKeySignature.html#abdff0ce4d5e8b7be0aa2e46e0003b22f',1,'GpgFrontend::GpgKeySignature::GetEmail()']]], - ['getencrcount_954',['GetEncrCount',['../classGpgFrontend_1_1GpgTOFUInfo.html#abc53f7ca1b737ed1a913ad2f90a346e4',1,'GpgFrontend::GpgTOFUInfo']]], - ['getencrlast_955',['GetEncrLast',['../classGpgFrontend_1_1GpgTOFUInfo.html#a03f286ac6f16ec6d33eb3dcfd4e3f6d5',1,'GpgFrontend::GpgTOFUInfo']]], - ['getexpiretime_956',['GetExpireTime',['../classGpgFrontend_1_1GpgKeySignature.html#a59ab21f52b88355ca36ff5ebd77093a6',1,'GpgFrontend::GpgKeySignature::GetExpireTime()'],['../classGpgFrontend_1_1GenKeyInfo.html#ac629312630a78e32ee36ba0ff30bc9ff',1,'GpgFrontend::GenKeyInfo::GetExpireTime()'],['../classGpgFrontend_1_1GpgSubKey.html#a6696d67af322fa2125d99b50cae50417',1,'GpgFrontend::GpgSubKey::GetExpireTime()'],['../classGpgFrontend_1_1GpgKey.html#a7b1e0398bedaecbfa2757243e5f4f0ab',1,'GpgFrontend::GpgKey::GetExpireTime()'],['../classGpgFrontend_1_1GpgSignature.html#a0796249b259af85c30873f5c41a01101',1,'GpgFrontend::GpgSignature::GetExpireTime()']]], - ['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_1GpgKey.html#a8930f958f3ca1f5566f63e8c2273837e',1,'GpgFrontend::GpgKey']]], + ['generaldialog_918',['GeneralDialog',['../classGpgFrontend_1_1UI_1_1GeneralDialog.html#ac9de4c49668ffaeb6916c64f878a202c',1,'GpgFrontend::UI::GeneralDialog']]], + ['generalmainwindow_919',['GeneralMainWindow',['../classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a62b24183ebf9da18852084879bcb1013',1,'GpgFrontend::UI::GeneralMainWindow']]], + ['generaltab_920',['GeneralTab',['../classGpgFrontend_1_1UI_1_1GeneralTab.html#a214079dfbacdc6898146c8468611cf0c',1,'GpgFrontend::UI::GeneralTab']]], + ['generate_921',['Generate',['../classGpgFrontend_1_1PassphraseGenerator.html#a8b4ee1083343fba6d947b85cd66079b8',1,'GpgFrontend::PassphraseGenerator']]], + ['generate_5fkey_5fpackage_5fname_922',['generate_key_package_name',['../classGpgFrontend_1_1KeyPackageOperator.html#a825d987dacd8a99d9d87729e1861a152',1,'GpgFrontend::KeyPackageOperator']]], + ['generate_5fuuid_923',['generate_uuid',['../classGpgFrontend_1_1Thread_1_1Task.html#a96d087abb7cf99d16f778f1a93b4f9e5',1,'GpgFrontend::Thread::Task']]], + ['generatekey_924',['GenerateKey',['../classGpgFrontend_1_1GpgKeyOpera.html#a4cc3ac91613164d7dc61a016a2b4caea',1,'GpgFrontend::GpgKeyOpera']]], + ['generatekeypackage_925',['GenerateKeyPackage',['../classGpgFrontend_1_1KeyPackageOperator.html#ade02f022e405e98377343c4667c206e9',1,'GpgFrontend::KeyPackageOperator']]], + ['generatekeypackagename_926',['GenerateKeyPackageName',['../classGpgFrontend_1_1KeyPackageOperator.html#ae90b362a32b6f6014cda1dc232bd3f0e',1,'GpgFrontend::KeyPackageOperator']]], + ['generatepassphrase_927',['GeneratePassphrase',['../classGpgFrontend_1_1KeyPackageOperator.html#a6d9cf022a1e0cf54c061495f59c1b4b9',1,'GpgFrontend::KeyPackageOperator']]], + ['generaterevokecert_928',['GenerateRevokeCert',['../classGpgFrontend_1_1GpgKeyOpera.html#a91a9a9f24f6b620ea7b906c529e3d9a4',1,'GpgFrontend::GpgKeyOpera']]], + ['generatesubkey_929',['GenerateSubkey',['../classGpgFrontend_1_1GpgKeyOpera.html#a882d99e8407cc22fb8b6e61c531fbe85',1,'GpgFrontend::GpgKeyOpera']]], + ['genkeyinfo_930',['GenKeyInfo',['../classGpgFrontend_1_1GenKeyInfo.html#a34eca1662ba8d4645751f3ee66582b04',1,'GpgFrontend::GenKeyInfo']]], + ['get_5ffile_5fextension_931',['get_file_extension',['../namespaceGpgFrontend.html#acff2cf5dd5b112b324fa6574ee935f79',1,'GpgFrontend']]], + ['get_5fheap_5fptr_932',['get_heap_ptr',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a0e1ab5e5bf5ef647a30a5ee2884ac63a',1,'GpgFrontend::Thread::Task::DataObject']]], + ['get_5fkey_5fin_5fcache_933',['get_key_in_cache',['../classGpgFrontend_1_1GpgKeyGetter.html#ab5196ef4ed5323fc2af70abf801ea260',1,'GpgFrontend::GpgKeyGetter']]], + ['get_5fonly_5ffile_5fname_5fwith_5fpath_934',['get_only_file_name_with_path',['../namespaceGpgFrontend.html#a5a2f5fc1ad3de55e41a1b7a388821328',1,'GpgFrontend']]], + ['get_5frestart_5fneeded_935',['get_restart_needed',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#a0d66e360dfbcf79403351459721c3981',1,'GpgFrontend::UI::SettingsDialog::get_restart_needed()'],['../classGpgFrontend_1_1UI_1_1MainWindow.html#a5e95f62dac9fba1ead6ec69c145923db',1,'GpgFrontend::UI::MainWindow::get_restart_needed()']]], + ['get_5fselected_5fsubkey_936',['get_selected_subkey',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#aedc5f77d6bf9b780b96552a43b323feb',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], + ['get_5fsign_5fselected_937',['get_sign_selected',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a2d7c328d726436061f19a287e481268d',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['get_5fstatus_5fstring_938',['get_status_string',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#ae682853c7eccfd3a6be43765f162f5a4',1,'GpgFrontend::UI::KeyImportDetailDialog']]], + ['get_5fuid_5fchecked_939',['get_uid_checked',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a7898b6fa328bfbc55ee2721bca4b2af1',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['get_5fuid_5fselected_940',['get_uid_selected',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a161bc9787be40a32f487c79faaeb54bf',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['getalgo_941',['GetAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#a6a65ba347156373b6cf98eb8e851d28d',1,'GpgFrontend::GenKeyInfo']]], + ['getallchannelid_942',['GetAllChannelId',['../classGpgFrontend_1_1SingletonStorage.html#a3f09424ebdc097fbdab77564a7d723ea',1,'GpgFrontend::SingletonStorage::GetAllChannelId()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a5f2f0474871971f86ff91fb6a2408621',1,'GpgFrontend::SingletonFunctionObject::GetAllChannelId()']]], + ['getallprivatekeys_943',['GetAllPrivateKeys',['../classGpgFrontend_1_1UI_1_1KeyList.html#a7ead8845ceb7c9310e3f4742251e1d87',1,'GpgFrontend::UI::KeyList']]], + ['getappdir_944',['GetAppDir',['../classGpgFrontend_1_1GlobalSettingStation.html#ae9d1da3d01c4a834120968636596c3c3',1,'GpgFrontend::GlobalSettingStation']]], + ['getbrowser_945',['GetBrowser',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a92c31eea47b42be28c86431384b27846',1,'GpgFrontend::UI::HelpPage']]], + ['getcertsdir_946',['GetCertsDir',['../classGpgFrontend_1_1GlobalSettingStation.html#a385ae4ab6ad5b17742a5405fa693d789',1,'GpgFrontend::GlobalSettingStation']]], + ['getchannel_947',['GetChannel',['../classGpgFrontend_1_1SingletonFunctionObject.html#aa99440b9177f5d0c18840f08a40d64b7',1,'GpgFrontend::SingletonFunctionObject::GetChannel()'],['../classGpgFrontend_1_1ChannelObject.html#a0e13a4bff1cfb679f68a3a2590a3b1b8',1,'GpgFrontend::ChannelObject::GetChannel()']]], + ['getchecked_948',['GetChecked',['../classGpgFrontend_1_1UI_1_1KeyList.html#a4e5862299b0aebe07daf8fbc642a4c38',1,'GpgFrontend::UI::KeyList::GetChecked()'],['../structGpgFrontend_1_1UI_1_1KeyTable.html#a77eba4055ecb7d32fab06f65b80ae07e',1,'GpgFrontend::UI::KeyTable::GetChecked()'],['../classGpgFrontend_1_1UI_1_1KeyList.html#ac1e5046770c36f67aab34715e50c0a33',1,'GpgFrontend::UI::KeyList::GetChecked()']]], + ['getcheckedsigners_949',['GetCheckedSigners',['../classGpgFrontend_1_1UI_1_1SignersPicker.html#a2e98dcdf647a2e0e6455998b018aed00',1,'GpgFrontend::UI::SignersPicker']]], + ['getcomment_950',['GetComment',['../classGpgFrontend_1_1GpgKey.html#af72de794e24876b0e22a8d318ec0f8ad',1,'GpgFrontend::GpgKey::GetComment()'],['../classGpgFrontend_1_1GpgUID.html#a572cf652da288537bdc3f88b4fb1ab18',1,'GpgFrontend::GpgUID::GetComment()'],['../classGpgFrontend_1_1GenKeyInfo.html#ab9f9775fd6363fba372bd0bcc2532892',1,'GpgFrontend::GenKeyInfo::GetComment()'],['../classGpgFrontend_1_1GpgKeySignature.html#a8b025f50bc527b0bbe58bd016bb47772',1,'GpgFrontend::GpgKeySignature::GetComment()']]], + ['getcreatetime_951',['GetCreateTime',['../classGpgFrontend_1_1GpgKey.html#a3fd5bfe6e9fd5f016b854fc92f19146e',1,'GpgFrontend::GpgKey::GetCreateTime()'],['../classGpgFrontend_1_1GpgSubKey.html#a5e897d439606a35103a0b260be28c6a4',1,'GpgFrontend::GpgSubKey::GetCreateTime()'],['../classGpgFrontend_1_1GpgKeySignature.html#adc8ad65688a6dab0993cf655f5361df8',1,'GpgFrontend::GpgKeySignature::GetCreateTime()'],['../classGpgFrontend_1_1GpgSignature.html#a222e57e5992e5e91ca36d8dcc77fd402',1,'GpgFrontend::GpgSignature::GetCreateTime()']]], + ['getdefaultchannel_952',['GetDefaultChannel',['../classGpgFrontend_1_1ChannelObject.html#aece9c525c49900734bc1bebf85b644ef',1,'GpgFrontend::ChannelObject::GetDefaultChannel()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a50e2b3794d6553f4231eaec72d9d0a50',1,'GpgFrontend::SingletonFunctionObject::GetDefaultChannel()']]], + ['getdescription_953',['GetDescription',['../classGpgFrontend_1_1GpgTOFUInfo.html#a471a08bc906d74699f394e34d2581b78',1,'GpgFrontend::GpgTOFUInfo']]], + ['getemail_954',['GetEmail',['../classGpgFrontend_1_1GpgKey.html#a55a6485f6c2cc5bec0fdf02cd7e0d8ea',1,'GpgFrontend::GpgKey::GetEmail()'],['../classGpgFrontend_1_1GpgUID.html#a0d1a061c131e5269923dea52be3b3be4',1,'GpgFrontend::GpgUID::GetEmail()'],['../classGpgFrontend_1_1GenKeyInfo.html#a76721be08c18907762ba6f6ccc4afc8a',1,'GpgFrontend::GenKeyInfo::GetEmail()'],['../classGpgFrontend_1_1GpgKeySignature.html#abdff0ce4d5e8b7be0aa2e46e0003b22f',1,'GpgFrontend::GpgKeySignature::GetEmail()']]], + ['getencrcount_955',['GetEncrCount',['../classGpgFrontend_1_1GpgTOFUInfo.html#abc53f7ca1b737ed1a913ad2f90a346e4',1,'GpgFrontend::GpgTOFUInfo']]], + ['getencrlast_956',['GetEncrLast',['../classGpgFrontend_1_1GpgTOFUInfo.html#a03f286ac6f16ec6d33eb3dcfd4e3f6d5',1,'GpgFrontend::GpgTOFUInfo']]], + ['getexpiretime_957',['GetExpireTime',['../classGpgFrontend_1_1GpgKeySignature.html#a59ab21f52b88355ca36ff5ebd77093a6',1,'GpgFrontend::GpgKeySignature::GetExpireTime()'],['../classGpgFrontend_1_1GenKeyInfo.html#ac629312630a78e32ee36ba0ff30bc9ff',1,'GpgFrontend::GenKeyInfo::GetExpireTime()'],['../classGpgFrontend_1_1GpgSubKey.html#a6696d67af322fa2125d99b50cae50417',1,'GpgFrontend::GpgSubKey::GetExpireTime()'],['../classGpgFrontend_1_1GpgKey.html#a7b1e0398bedaecbfa2757243e5f4f0ab',1,'GpgFrontend::GpgKey::GetExpireTime()'],['../classGpgFrontend_1_1GpgSignature.html#a0796249b259af85c30873f5c41a01101',1,'GpgFrontend::GpgSignature::GetExpireTime()']]], + ['getfilepath_958',['GetFilePath',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aff81f0f98a399fa55b6b0ebf2230d4cf',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['getfingerprint_959',['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_960',['GetHashAlgo',['../classGpgFrontend_1_1GpgSignature.html#ace10a3ac7f4dc3888b2ad62157213f1c',1,'GpgFrontend::GpgSignature']]], ['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']]], - ['getkey_965',['GetKey',['../classGpgFrontend_1_1GpgKeyGetter.html#a94243d09c9418c8ebf0c7cdab4a2b7f1',1,'GpgFrontend::GpgKeyGetter']]], - ['getkeyid_966',['GetKeyID',['../classGpgFrontend_1_1GpgKeySignature.html#a4277f6deb7c07aaba62fbe8e7867b1fe',1,'GpgFrontend::GpgKeySignature']]], - ['getkeylength_967',['GetKeyLength',['../classGpgFrontend_1_1GenKeyInfo.html#a4927a9091fa2b2f68f6b60ce78ab2fe9',1,'GpgFrontend::GenKeyInfo::GetKeyLength()'],['../classGpgFrontend_1_1GpgSubKey.html#a18d7a2f0a3cee32a123b780f2b8b8708',1,'GpgFrontend::GpgSubKey::GetKeyLength()']]], - ['getkeys_968',['GetKeys',['../classGpgFrontend_1_1GpgKeyGetter.html#aa5979c21af58b874b33c203752dcc805',1,'GpgFrontend::GpgKeyGetter']]], - ['getkeyscopy_969',['GetKeysCopy',['../classGpgFrontend_1_1GpgKeyGetter.html#a7ec8d8431a771c602cbfa946d13d6c74',1,'GpgFrontend::GpgKeyGetter::GetKeysCopy(const KeyListPtr &keys)'],['../classGpgFrontend_1_1GpgKeyGetter.html#a028fe69516a51c526bbd2ec4235053ad',1,'GpgFrontend::GpgKeyGetter::GetKeysCopy(const KeyLinkListPtr &keys)']]], - ['getkeysizestr_970',['GetKeySizeStr',['../classGpgFrontend_1_1GenKeyInfo.html#a0bda4b4161d805582869ec0e56ade07c',1,'GpgFrontend::GenKeyInfo']]], - ['getlastupdatetime_971',['GetLastUpdateTime',['../classGpgFrontend_1_1GpgKey.html#a3532e20298b642f5d312712fa8a791df',1,'GpgFrontend::GpgKey']]], - ['getlatestversion_972',['getLatestVersion',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a7329657135624fc42ad80d821e11befe',1,'GpgFrontend::UI::UpdateTab']]], - ['getlocaledir_973',['GetLocaleDir',['../classGpgFrontend_1_1GlobalSettingStation.html#a0b3780564305e9b210d66ef377c21565',1,'GpgFrontend::GlobalSettingStation']]], - ['getlogdir_974',['GetLogDir',['../classGpgFrontend_1_1GlobalSettingStation.html#a7da9b08291ef2391892f5c9375b8db23',1,'GpgFrontend::GlobalSettingStation']]], - ['getname_975',['GetName',['../classGpgFrontend_1_1GenKeyInfo.html#abb3e1366dca0288bdc42123e55d77335',1,'GpgFrontend::GenKeyInfo::GetName()'],['../classGpgFrontend_1_1GpgKey.html#a7bceca68800c3ada9280c29eaeb5affc',1,'GpgFrontend::GpgKey::GetName()'],['../classGpgFrontend_1_1GpgKeySignature.html#acd5e46397ebea3224761a6af15eea4fb',1,'GpgFrontend::GpgKeySignature::GetName()'],['../classGpgFrontend_1_1GpgUID.html#acca1fff5f12a216b05f2a6186b1e436b',1,'GpgFrontend::GpgUID::GetName()']]], - ['getobjectsize_976',['GetObjectSize',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#aa35e6ad1ef3a5733fb338f3333b5c637',1,'GpgFrontend::Thread::Task::DataObject']]], - ['getownertrust_977',['GetOwnerTrust',['../classGpgFrontend_1_1GpgKey.html#a3327ad34ff14feb75f3fbfc2bfb7fc44',1,'GpgFrontend::GpgKey']]], - ['getpassphrase_978',['GetPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#a890ee16ef6088570360a073a6b531c89',1,'GpgFrontend::GenKeyInfo']]], - ['getpolicy_979',['GetPolicy',['../classGpgFrontend_1_1GpgTOFUInfo.html#a34d1073bb25a8958e70016f3cd6b167f',1,'GpgFrontend::GpgTOFUInfo']]], - ['getprimarykeylength_980',['GetPrimaryKeyLength',['../classGpgFrontend_1_1GpgKey.html#a5b276fdeb438fe14ec2850d799401be6',1,'GpgFrontend::GpgKey']]], - ['getprivatechecked_981',['GetPrivateChecked',['../classGpgFrontend_1_1UI_1_1KeyList.html#a81c2e36427371fa6ae6381870b9b5bdd',1,'GpgFrontend::UI::KeyList']]], - ['getprotocol_982',['GetProtocol',['../classGpgFrontend_1_1GpgKey.html#ad2440a2902c81192d5549fe951ddb130',1,'GpgFrontend::GpgKey']]], - ['getpubkey_983',['GetPubkey',['../classGpgFrontend_1_1GpgKeyGetter.html#a7a8bc7c0f12a11e108051e4c824fc430',1,'GpgFrontend::GpgKeyGetter']]], - ['getpubkeyalgo_984',['GetPubkeyAlgo',['../classGpgFrontend_1_1GpgKeySignature.html#a217a2a8b31e44d4c9b463470362a1522',1,'GpgFrontend::GpgKeySignature::GetPubkeyAlgo()'],['../classGpgFrontend_1_1GpgSignature.html#ab99e4004f1ad400fd25232312a8ea66b',1,'GpgFrontend::GpgSignature::GetPubkeyAlgo()'],['../classGpgFrontend_1_1GpgSubKey.html#a629f904a81c7c09ac9769b3fcf3b48f5',1,'GpgFrontend::GpgSubKey::GetPubkeyAlgo()']]], - ['getpublickeyalgo_985',['GetPublicKeyAlgo',['../classGpgFrontend_1_1GpgKey.html#a1c21bc3b1788753f56272ad73052fc5f',1,'GpgFrontend::GpgKey']]], - ['getresourcedir_986',['GetResourceDir',['../classGpgFrontend_1_1GlobalSettingStation.html#afc1aa3dec55ae4e741f92fce1140a2d0',1,'GpgFrontend::GlobalSettingStation']]], - ['getresultreport_987',['GetResultReport',['../classGpgFrontend_1_1GpgResultAnalyse.html#aa9e35e573ea4c0ebdbb014d1afbaab9d',1,'GpgFrontend::GpgResultAnalyse']]], - ['getrevoked_988',['GetRevoked',['../classGpgFrontend_1_1GpgUID.html#a32450fbf22c64cf522e9a090423344a2',1,'GpgFrontend::GpgUID']]], - ['getselected_989',['GetSelected',['../classGpgFrontend_1_1UI_1_1FilePage.html#a3c114d414b96d3e4b2ca833ab6a48605',1,'GpgFrontend::UI::FilePage::GetSelected()'],['../classGpgFrontend_1_1UI_1_1KeyList.html#a1bcca32b18c539a2ae83c30fc07db544',1,'GpgFrontend::UI::KeyList::GetSelected()']]], - ['getselectedkey_990',['GetSelectedKey',['../classGpgFrontend_1_1UI_1_1KeyList.html#ab4368b81402e2468a9e960de8fb7080f',1,'GpgFrontend::UI::KeyList']]], - ['getsignatures_991',['GetSignatures',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a2063acf8262e2c600b14ed1948486ac3',1,'GpgFrontend::GpgVerifyResultAnalyse::GetSignatures()'],['../classGpgFrontend_1_1GpgUID.html#af7b5310b319378c30c488277e95ef601',1,'GpgFrontend::GpgUID::GetSignatures()']]], - ['getsigncount_992',['GetSignCount',['../classGpgFrontend_1_1GpgTOFUInfo.html#a681046a3916d0d0cdcf0852bfa76fdb0',1,'GpgFrontend::GpgTOFUInfo']]], - ['getsigners_993',['GetSigners',['../classGpgFrontend_1_1GpgBasicOperator.html#a78f37b8d5afd6c0248665a4415f880cf',1,'GpgFrontend::GpgBasicOperator']]], - ['getsignfirst_994',['GetSignFirst',['../classGpgFrontend_1_1GpgTOFUInfo.html#a788a439b206882c6317162878e2fe0b8',1,'GpgFrontend::GpgTOFUInfo']]], - ['getsignlast_995',['GetSignLast',['../classGpgFrontend_1_1GpgTOFUInfo.html#a746cbcf731af6b19ade42debbf1e2c8f',1,'GpgFrontend::GpgTOFUInfo']]], - ['getsingletonstorage_996',['GetSingletonStorage',['../classGpgFrontend_1_1SingletonStorageCollection.html#a6f933390c54b7f55d5ffb4624074725f',1,'GpgFrontend::SingletonStorageCollection']]], - ['getsizechangestep_997',['GetSizeChangeStep',['../classGpgFrontend_1_1GenKeyInfo.html#ac211a7a615805ae97ff284b46abfeab7',1,'GpgFrontend::GenKeyInfo']]], - ['getstandalonedatabasedir_998',['GetStandaloneDatabaseDir',['../classGpgFrontend_1_1GlobalSettingStation.html#af484ca46c5df831a9dd76f3a88d66332',1,'GpgFrontend::GlobalSettingStation']]], - ['getstandalonegpgbindir_999',['GetStandaloneGpgBinDir',['../classGpgFrontend_1_1GlobalSettingStation.html#aa93b21af9ac6649d5749c83c809f5b00',1,'GpgFrontend::GlobalSettingStation']]], - ['getstatus_1000',['GetStatus',['../classGpgFrontend_1_1GpgResultAnalyse.html#a8fc5d4f83e5c0aa0ac19f46c3ec1619e',1,'GpgFrontend::GpgResultAnalyse::GetStatus()'],['../classGpgFrontend_1_1GpgKeySignature.html#af2639fe6d2774ba286308f3a7b58ba73',1,'GpgFrontend::GpgKeySignature::GetStatus()'],['../classGpgFrontend_1_1GpgSignature.html#a859b4a3788c8490937f954d92686f490',1,'GpgFrontend::GpgSignature::GetStatus()'],['../classGpgFrontend_1_1UI_1_1SignersPicker.html#aba7633983da57c7a7eb2710a1f33f7ac',1,'GpgFrontend::UI::SignersPicker::GetStatus()']]], - ['getsubkeys_1001',['GetSubKeys',['../classGpgFrontend_1_1GpgKey.html#a746699842f6c49687af0487a8b3b163d',1,'GpgFrontend::GpgKey']]], - ['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#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']]], - ['getuid_1012',['GetUID',['../classGpgFrontend_1_1GpgKeySignature.html#a95254ea2c00829b9dc87adc4a317cde5',1,'GpgFrontend::GpgKeySignature::GetUID()'],['../classGpgFrontend_1_1GpgUID.html#a467897d43a18b0cadd2e2e44384f6cdd',1,'GpgFrontend::GpgUID::GetUID()']]], - ['getuids_1013',['GetUIDs',['../classGpgFrontend_1_1GpgKey.html#ac8b13b45e487cdc423b78d3017897f99',1,'GpgFrontend::GpgKey']]], - ['getuisettings_1014',['GetUISettings',['../classGpgFrontend_1_1GlobalSettingStation.html#a14433405831283cd95091d741614d03b',1,'GpgFrontend::GlobalSettingStation']]], - ['getuserid_1015',['GetUserid',['../classGpgFrontend_1_1GenKeyInfo.html#a4ee4a0659e76376d9bfc527c334392e1',1,'GpgFrontend::GenKeyInfo']]], - ['getuuid_1016',['GetUUID',['../classGpgFrontend_1_1Thread_1_1Task.html#a50b91d27874af31ef13c493b00824ccf',1,'GpgFrontend::Thread::Task']]], - ['getvalidity_1017',['GetValidity',['../classGpgFrontend_1_1GpgSignature.html#a09cb6b465e85dffcf7867e70a276e9ad',1,'GpgFrontend::GpgSignature::GetValidity()'],['../classGpgFrontend_1_1GpgTOFUInfo.html#a8770062c9e0c3875083d2c92ebe8ccb0',1,'GpgFrontend::GpgTOFUInfo::GetValidity()']]], - ['globalsettingstation_1018',['GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html#abdc6dda369d4214e43ffa2930f7386b0',1,'GpgFrontend::GlobalSettingStation']]], - ['gnupgtab_1019',['GnupgTab',['../classGpgFrontend_1_1UI_1_1GnupgTab.html#ab9d9e8af4494659f13b87804e7318a79',1,'GpgFrontend::UI::GnupgTab']]], - ['good_1020',['good',['../classGpgFrontend_1_1GpgContext.html#a73c505a2f3d39d1638dc4d9a3e13a913',1,'GpgFrontend::GpgContext']]], - ['gpgbasicoperator_1021',['GpgBasicOperator',['../classGpgFrontend_1_1GpgBasicOperator.html#a139be86330f88e5f833aa24263a3b2ae',1,'GpgFrontend::GpgBasicOperator']]], - ['gpgcommandexecutor_1022',['GpgCommandExecutor',['../classGpgFrontend_1_1GpgCommandExecutor.html#a94240f423464600938bfcafa2b186c38',1,'GpgFrontend::GpgCommandExecutor']]], - ['gpgcontext_1023',['GpgContext',['../classGpgFrontend_1_1GpgContext.html#a39882b323569987592231f722a2ef147',1,'GpgFrontend::GpgContext::GpgContext(const GpgContextInitArgs &args={})'],['../classGpgFrontend_1_1GpgContext.html#a2429d3f9daa189b4d5d8624c9f4d528b',1,'GpgFrontend::GpgContext::GpgContext(int channel)']]], - ['gpgdata_1024',['GpgData',['../classGpgFrontend_1_1GpgData.html#ac3661a9365ad72b0883a2f62ef4647da',1,'GpgFrontend::GpgData::GpgData()'],['../classGpgFrontend_1_1GpgData.html#a5e607c3bb69f998aaac761f400dd6440',1,'GpgFrontend::GpgData::GpgData(void *buffer, size_t size, bool copy=true)']]], - ['gpgdecryptresultanalyse_1025',['GpgDecryptResultAnalyse',['../classGpgFrontend_1_1GpgDecryptResultAnalyse.html#a442438ae58cdd7220f0e4b0792e5a372',1,'GpgFrontend::GpgDecryptResultAnalyse']]], - ['gpgencryptresultanalyse_1026',['GpgEncryptResultAnalyse',['../classGpgFrontend_1_1GpgEncryptResultAnalyse.html#a0801e32c8709da373f6715bc994a7747',1,'GpgFrontend::GpgEncryptResultAnalyse']]], - ['gpgfileopera_1027',['GpgFileOpera',['../classGpgFrontend_1_1GpgFileOpera.html#aa81da3d72c4fbc57e7138bfec7731152',1,'GpgFrontend::GpgFileOpera']]], - ['gpgfrontendapplication_1028',['GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#ac0290f06e08f2714f9727bb578df1298',1,'GpgFrontend::UI::GpgFrontendApplication']]], - ['gpgimportinformation_1029',['GpgImportInformation',['../classGpgFrontend_1_1GpgImportInformation.html#ab282d4f701403cd68eb02d1aad30be56',1,'GpgFrontend::GpgImportInformation']]], - ['gpgkey_1030',['GpgKey',['../classGpgFrontend_1_1GpgKey.html#a3b08060c07a9cc207eb8c98771bd4bc1',1,'GpgFrontend::GpgKey::GpgKey()=default'],['../classGpgFrontend_1_1GpgKey.html#aa599159ab1041c2f5a5fbf09666489b9',1,'GpgFrontend::GpgKey::GpgKey(gpgme_key_t &&key)'],['../classGpgFrontend_1_1GpgKey.html#a1d6e415e77625c1281dac1cc5f33f804',1,'GpgFrontend::GpgKey::GpgKey(const gpgme_key_t &key)=delete'],['../classGpgFrontend_1_1GpgKey.html#aeb316f8728b10e966eed6f0291794eed',1,'GpgFrontend::GpgKey::GpgKey(GpgKey &&k) noexcept']]], - ['gpgkeygetter_1031',['GpgKeyGetter',['../classGpgFrontend_1_1GpgKeyGetter.html#a8eeee9f6dd74dc24c24794ce63c62285',1,'GpgFrontend::GpgKeyGetter']]], - ['gpgkeyimportexporter_1032',['GpgKeyImportExporter',['../classGpgFrontend_1_1GpgKeyImportExporter.html#a0eede7c782d17b32d6c1f30cd8496561',1,'GpgFrontend::GpgKeyImportExporter']]], - ['gpgkeymanager_1033',['GpgKeyManager',['../classGpgFrontend_1_1GpgKeyManager.html#a210b717fd8ee63b064d77f32b0df4c5d',1,'GpgFrontend::GpgKeyManager']]], - ['gpgkeyopera_1034',['GpgKeyOpera',['../classGpgFrontend_1_1GpgKeyOpera.html#a01d6a920156a38a34c57d9c49c361079',1,'GpgFrontend::GpgKeyOpera']]], - ['gpgkeysignature_1035',['GpgKeySignature',['../classGpgFrontend_1_1GpgKeySignature.html#a8a9c792c963ef610e511b7deb6829c0b',1,'GpgFrontend::GpgKeySignature::GpgKeySignature()'],['../classGpgFrontend_1_1GpgKeySignature.html#abb4571e79c921261c03f57980d502e72',1,'GpgFrontend::GpgKeySignature::GpgKeySignature(gpgme_key_sig_t sig)'],['../classGpgFrontend_1_1GpgKeySignature.html#a9ba501d98265c9677d00e3dca3e8d903',1,'GpgFrontend::GpgKeySignature::GpgKeySignature(GpgKeySignature &&) noexcept'],['../classGpgFrontend_1_1GpgKeySignature.html#a4a501aa3a549a6a6914e2aeed4ff302e',1,'GpgFrontend::GpgKeySignature::GpgKeySignature(const GpgKeySignature &)=delete']]], - ['gpgresultanalyse_1036',['GpgResultAnalyse',['../classGpgFrontend_1_1GpgResultAnalyse.html#aa3c9bdf1ea4c87476010ef32fd2fb426',1,'GpgFrontend::GpgResultAnalyse']]], - ['gpgsignature_1037',['GpgSignature',['../classGpgFrontend_1_1GpgSignature.html#ab7a4489b35d918503076b2659d14fafe',1,'GpgFrontend::GpgSignature::GpgSignature()'],['../classGpgFrontend_1_1GpgSignature.html#aea05d301ccf75f4a3aec2be58541eca8',1,'GpgFrontend::GpgSignature::GpgSignature(gpgme_signature_t sig)'],['../classGpgFrontend_1_1GpgSignature.html#aeae075c7b9c628f558d6fedbc8b9233a',1,'GpgFrontend::GpgSignature::GpgSignature(GpgSignature &&) noexcept'],['../classGpgFrontend_1_1GpgSignature.html#a1b705f45de8f6d0ae97f1ffda28185b7',1,'GpgFrontend::GpgSignature::GpgSignature(const GpgSignature &)=delete']]], - ['gpgsignresultanalyse_1038',['GpgSignResultAnalyse',['../classGpgFrontend_1_1GpgSignResultAnalyse.html#a3ddd2d52ad91fdf7f4c8740312570c8e',1,'GpgFrontend::GpgSignResultAnalyse']]], - ['gpgsubkey_1039',['GpgSubKey',['../classGpgFrontend_1_1GpgSubKey.html#a59eba8a9d23429140e9a68126c9c7c5e',1,'GpgFrontend::GpgSubKey::GpgSubKey()'],['../classGpgFrontend_1_1GpgSubKey.html#a3c9605e6ccb7fa53d9c9013453d561fe',1,'GpgFrontend::GpgSubKey::GpgSubKey(gpgme_subkey_t subkey)'],['../classGpgFrontend_1_1GpgSubKey.html#ad12e160dbb394a849d6cf31e614a76f5',1,'GpgFrontend::GpgSubKey::GpgSubKey(GpgSubKey &&o) noexcept'],['../classGpgFrontend_1_1GpgSubKey.html#a6e8df85f8c1dea7705b761e68bb949ab',1,'GpgFrontend::GpgSubKey::GpgSubKey(const GpgSubKey &)=delete']]], - ['gpgtofuinfo_1040',['GpgTOFUInfo',['../classGpgFrontend_1_1GpgTOFUInfo.html#a80acb09347a74cc35776d58b9874cf37',1,'GpgFrontend::GpgTOFUInfo::GpgTOFUInfo()'],['../classGpgFrontend_1_1GpgTOFUInfo.html#aaabb02aef76162ed59647445b4c1f6de',1,'GpgFrontend::GpgTOFUInfo::GpgTOFUInfo(gpgme_tofu_info_t tofu_info)'],['../classGpgFrontend_1_1GpgTOFUInfo.html#aa953ff4b877b4b831d34e4a5678b0cd3',1,'GpgFrontend::GpgTOFUInfo::GpgTOFUInfo(GpgTOFUInfo &&o) noexcept'],['../classGpgFrontend_1_1GpgTOFUInfo.html#a4f46d32bc9bf1a1a3bbc32461538a422',1,'GpgFrontend::GpgTOFUInfo::GpgTOFUInfo(const GpgTOFUInfo &)=delete']]], - ['gpguid_1041',['GpgUID',['../classGpgFrontend_1_1GpgUID.html#a35fdcef4ecf2598461bdc596ffc7957c',1,'GpgFrontend::GpgUID::GpgUID()'],['../classGpgFrontend_1_1GpgUID.html#ae1fb528a9d06d6e9f1feaf1bc291fe64',1,'GpgFrontend::GpgUID::GpgUID(gpgme_user_id_t uid)'],['../classGpgFrontend_1_1GpgUID.html#a7210ece9b898981dae83f8d29b1ca453',1,'GpgFrontend::GpgUID::GpgUID(GpgUID &&o) noexcept'],['../classGpgFrontend_1_1GpgUID.html#a58ed67984063f0b87e35bc1782a1cc0a',1,'GpgFrontend::GpgUID::GpgUID(const GpgUID &)=delete']]], - ['gpguidoperator_1042',['GpgUIDOperator',['../classGpgFrontend_1_1GpgUIDOperator.html#ab74a830c858ab9ff135375743393a7c7',1,'GpgFrontend::GpgUIDOperator']]], - ['gpgverifyresultanalyse_1043',['GpgVerifyResultAnalyse',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#ab1d67da5dbe5bd2d665f7121e5f5354b',1,'GpgFrontend::GpgVerifyResultAnalyse']]] + ['getid_962',['GetId',['../classGpgFrontend_1_1GpgKey.html#a8930f958f3ca1f5566f63e8c2273837e',1,'GpgFrontend::GpgKey']]], + ['getinfo_963',['GetInfo',['../classGpgFrontend_1_1GpgContext.html#ad9af3461de36f74ee85be2523f6038e2',1,'GpgFrontend::GpgContext']]], + ['getinstance_964',['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#ac56d19e0d4b99e7b8a86a017721f3db1',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_965',['GetInvalid',['../classGpgFrontend_1_1GpgUID.html#a388ad367d353edd5eeb6e529977c924c',1,'GpgFrontend::GpgUID']]], + ['getkey_966',['GetKey',['../classGpgFrontend_1_1GpgKeyGetter.html#a94243d09c9418c8ebf0c7cdab4a2b7f1',1,'GpgFrontend::GpgKeyGetter']]], + ['getkeyid_967',['GetKeyID',['../classGpgFrontend_1_1GpgKeySignature.html#a4277f6deb7c07aaba62fbe8e7867b1fe',1,'GpgFrontend::GpgKeySignature']]], + ['getkeylength_968',['GetKeyLength',['../classGpgFrontend_1_1GenKeyInfo.html#a4927a9091fa2b2f68f6b60ce78ab2fe9',1,'GpgFrontend::GenKeyInfo::GetKeyLength()'],['../classGpgFrontend_1_1GpgSubKey.html#a18d7a2f0a3cee32a123b780f2b8b8708',1,'GpgFrontend::GpgSubKey::GetKeyLength()']]], + ['getkeys_969',['GetKeys',['../classGpgFrontend_1_1GpgKeyGetter.html#aa5979c21af58b874b33c203752dcc805',1,'GpgFrontend::GpgKeyGetter']]], + ['getkeyscopy_970',['GetKeysCopy',['../classGpgFrontend_1_1GpgKeyGetter.html#a7ec8d8431a771c602cbfa946d13d6c74',1,'GpgFrontend::GpgKeyGetter::GetKeysCopy(const KeyListPtr &keys)'],['../classGpgFrontend_1_1GpgKeyGetter.html#a028fe69516a51c526bbd2ec4235053ad',1,'GpgFrontend::GpgKeyGetter::GetKeysCopy(const KeyLinkListPtr &keys)']]], + ['getkeysizestr_971',['GetKeySizeStr',['../classGpgFrontend_1_1GenKeyInfo.html#a0bda4b4161d805582869ec0e56ade07c',1,'GpgFrontend::GenKeyInfo']]], + ['getlastupdatetime_972',['GetLastUpdateTime',['../classGpgFrontend_1_1GpgKey.html#a3532e20298b642f5d312712fa8a791df',1,'GpgFrontend::GpgKey']]], + ['getlatestversion_973',['getLatestVersion',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a7329657135624fc42ad80d821e11befe',1,'GpgFrontend::UI::UpdateTab']]], + ['getlocaledir_974',['GetLocaleDir',['../classGpgFrontend_1_1GlobalSettingStation.html#a0b3780564305e9b210d66ef377c21565',1,'GpgFrontend::GlobalSettingStation']]], + ['getlogdir_975',['GetLogDir',['../classGpgFrontend_1_1GlobalSettingStation.html#a7da9b08291ef2391892f5c9375b8db23',1,'GpgFrontend::GlobalSettingStation']]], + ['getname_976',['GetName',['../classGpgFrontend_1_1GenKeyInfo.html#abb3e1366dca0288bdc42123e55d77335',1,'GpgFrontend::GenKeyInfo::GetName()'],['../classGpgFrontend_1_1GpgKey.html#a7bceca68800c3ada9280c29eaeb5affc',1,'GpgFrontend::GpgKey::GetName()'],['../classGpgFrontend_1_1GpgKeySignature.html#acd5e46397ebea3224761a6af15eea4fb',1,'GpgFrontend::GpgKeySignature::GetName()'],['../classGpgFrontend_1_1GpgUID.html#acca1fff5f12a216b05f2a6186b1e436b',1,'GpgFrontend::GpgUID::GetName()']]], + ['getobjectsize_977',['GetObjectSize',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#aa35e6ad1ef3a5733fb338f3333b5c637',1,'GpgFrontend::Thread::Task::DataObject']]], + ['getownertrust_978',['GetOwnerTrust',['../classGpgFrontend_1_1GpgKey.html#a3327ad34ff14feb75f3fbfc2bfb7fc44',1,'GpgFrontend::GpgKey']]], + ['getpassphrase_979',['GetPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#a890ee16ef6088570360a073a6b531c89',1,'GpgFrontend::GenKeyInfo']]], + ['getpolicy_980',['GetPolicy',['../classGpgFrontend_1_1GpgTOFUInfo.html#a34d1073bb25a8958e70016f3cd6b167f',1,'GpgFrontend::GpgTOFUInfo']]], + ['getprimarykeylength_981',['GetPrimaryKeyLength',['../classGpgFrontend_1_1GpgKey.html#a5b276fdeb438fe14ec2850d799401be6',1,'GpgFrontend::GpgKey']]], + ['getprivatechecked_982',['GetPrivateChecked',['../classGpgFrontend_1_1UI_1_1KeyList.html#a81c2e36427371fa6ae6381870b9b5bdd',1,'GpgFrontend::UI::KeyList']]], + ['getprotocol_983',['GetProtocol',['../classGpgFrontend_1_1GpgKey.html#ad2440a2902c81192d5549fe951ddb130',1,'GpgFrontend::GpgKey']]], + ['getpubkey_984',['GetPubkey',['../classGpgFrontend_1_1GpgKeyGetter.html#a7a8bc7c0f12a11e108051e4c824fc430',1,'GpgFrontend::GpgKeyGetter']]], + ['getpubkeyalgo_985',['GetPubkeyAlgo',['../classGpgFrontend_1_1GpgKeySignature.html#a217a2a8b31e44d4c9b463470362a1522',1,'GpgFrontend::GpgKeySignature::GetPubkeyAlgo()'],['../classGpgFrontend_1_1GpgSignature.html#ab99e4004f1ad400fd25232312a8ea66b',1,'GpgFrontend::GpgSignature::GetPubkeyAlgo()'],['../classGpgFrontend_1_1GpgSubKey.html#a629f904a81c7c09ac9769b3fcf3b48f5',1,'GpgFrontend::GpgSubKey::GetPubkeyAlgo()']]], + ['getpublickeyalgo_986',['GetPublicKeyAlgo',['../classGpgFrontend_1_1GpgKey.html#a1c21bc3b1788753f56272ad73052fc5f',1,'GpgFrontend::GpgKey']]], + ['getresourcedir_987',['GetResourceDir',['../classGpgFrontend_1_1GlobalSettingStation.html#afc1aa3dec55ae4e741f92fce1140a2d0',1,'GpgFrontend::GlobalSettingStation']]], + ['getresultreport_988',['GetResultReport',['../classGpgFrontend_1_1GpgResultAnalyse.html#aa9e35e573ea4c0ebdbb014d1afbaab9d',1,'GpgFrontend::GpgResultAnalyse']]], + ['getrevoked_989',['GetRevoked',['../classGpgFrontend_1_1GpgUID.html#a32450fbf22c64cf522e9a090423344a2',1,'GpgFrontend::GpgUID']]], + ['getselected_990',['GetSelected',['../classGpgFrontend_1_1UI_1_1FilePage.html#a3c114d414b96d3e4b2ca833ab6a48605',1,'GpgFrontend::UI::FilePage::GetSelected()'],['../classGpgFrontend_1_1UI_1_1KeyList.html#a1bcca32b18c539a2ae83c30fc07db544',1,'GpgFrontend::UI::KeyList::GetSelected()']]], + ['getselectedkey_991',['GetSelectedKey',['../classGpgFrontend_1_1UI_1_1KeyList.html#ab4368b81402e2468a9e960de8fb7080f',1,'GpgFrontend::UI::KeyList']]], + ['getsignatures_992',['GetSignatures',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a2063acf8262e2c600b14ed1948486ac3',1,'GpgFrontend::GpgVerifyResultAnalyse::GetSignatures()'],['../classGpgFrontend_1_1GpgUID.html#af7b5310b319378c30c488277e95ef601',1,'GpgFrontend::GpgUID::GetSignatures()']]], + ['getsigncount_993',['GetSignCount',['../classGpgFrontend_1_1GpgTOFUInfo.html#a681046a3916d0d0cdcf0852bfa76fdb0',1,'GpgFrontend::GpgTOFUInfo']]], + ['getsigners_994',['GetSigners',['../classGpgFrontend_1_1GpgBasicOperator.html#a78f37b8d5afd6c0248665a4415f880cf',1,'GpgFrontend::GpgBasicOperator']]], + ['getsignfirst_995',['GetSignFirst',['../classGpgFrontend_1_1GpgTOFUInfo.html#a788a439b206882c6317162878e2fe0b8',1,'GpgFrontend::GpgTOFUInfo']]], + ['getsignlast_996',['GetSignLast',['../classGpgFrontend_1_1GpgTOFUInfo.html#a746cbcf731af6b19ade42debbf1e2c8f',1,'GpgFrontend::GpgTOFUInfo']]], + ['getsingletonstorage_997',['GetSingletonStorage',['../classGpgFrontend_1_1SingletonStorageCollection.html#a6f933390c54b7f55d5ffb4624074725f',1,'GpgFrontend::SingletonStorageCollection']]], + ['getsizechangestep_998',['GetSizeChangeStep',['../classGpgFrontend_1_1GenKeyInfo.html#ac211a7a615805ae97ff284b46abfeab7',1,'GpgFrontend::GenKeyInfo']]], + ['getstandalonedatabasedir_999',['GetStandaloneDatabaseDir',['../classGpgFrontend_1_1GlobalSettingStation.html#af484ca46c5df831a9dd76f3a88d66332',1,'GpgFrontend::GlobalSettingStation']]], + ['getstandalonegpgbindir_1000',['GetStandaloneGpgBinDir',['../classGpgFrontend_1_1GlobalSettingStation.html#aa93b21af9ac6649d5749c83c809f5b00',1,'GpgFrontend::GlobalSettingStation']]], + ['getstatus_1001',['GetStatus',['../classGpgFrontend_1_1GpgResultAnalyse.html#a8fc5d4f83e5c0aa0ac19f46c3ec1619e',1,'GpgFrontend::GpgResultAnalyse::GetStatus()'],['../classGpgFrontend_1_1GpgKeySignature.html#af2639fe6d2774ba286308f3a7b58ba73',1,'GpgFrontend::GpgKeySignature::GetStatus()'],['../classGpgFrontend_1_1GpgSignature.html#a859b4a3788c8490937f954d92686f490',1,'GpgFrontend::GpgSignature::GetStatus()'],['../classGpgFrontend_1_1UI_1_1SignersPicker.html#aba7633983da57c7a7eb2710a1f33f7ac',1,'GpgFrontend::UI::SignersPicker::GetStatus()']]], + ['getsubkeys_1002',['GetSubKeys',['../classGpgFrontend_1_1GpgKey.html#a746699842f6c49687af0487a8b3b163d',1,'GpgFrontend::GpgKey']]], + ['getsuggestmaxkeysize_1003',['GetSuggestMaxKeySize',['../classGpgFrontend_1_1GenKeyInfo.html#ae461a553176ad1ab0c1121ea6de6c8c2',1,'GpgFrontend::GenKeyInfo']]], + ['getsuggestminkeysize_1004',['GetSuggestMinKeySize',['../classGpgFrontend_1_1GenKeyInfo.html#a0b1612421148b86919b7130ed148ca51',1,'GpgFrontend::GenKeyInfo']]], + ['getsummary_1005',['GetSummary',['../classGpgFrontend_1_1GpgSignature.html#a3b143f6e13b71663d81fc0f326aad17f',1,'GpgFrontend::GpgSignature']]], + ['getsupportedkeyalgo_1006',['GetSupportedKeyAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#ac0dbb2d89b1e5f9b272679ba3f24314e',1,'GpgFrontend::GenKeyInfo']]], + ['getsupportedkeyalgostandalone_1007',['GetSupportedKeyAlgoStandalone',['../classGpgFrontend_1_1GenKeyInfo.html#afb8315b6612c64b3921b72df98ebcc74',1,'GpgFrontend::GenKeyInfo']]], + ['getsupportedsubkeyalgo_1008',['GetSupportedSubkeyAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#a168d6fe5252812f5984ba6d8046c7741',1,'GpgFrontend::GenKeyInfo']]], + ['getsupportedsubkeyalgostandalone_1009',['GetSupportedSubkeyAlgoStandalone',['../classGpgFrontend_1_1GenKeyInfo.html#a6819b0ca3ef7712b85ae320030cde023',1,'GpgFrontend::GenKeyInfo']]], + ['gettabidstosave_1010',['GetTabIdsToSave',['../classGpgFrontend_1_1UI_1_1QuitDialog.html#aec364c38056b6d92c172f8cdfb5f8e82',1,'GpgFrontend::UI::QuitDialog']]], + ['gettextpage_1011',['GetTextPage',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a6218e6e12bdba0228e4ab4276f7fed7a',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['gettofuinfos_1012',['GetTofuInfos',['../classGpgFrontend_1_1GpgUID.html#a2a36376484f7c1a4a19377d24e47a0b2',1,'GpgFrontend::GpgUID']]], + ['getuid_1013',['GetUID',['../classGpgFrontend_1_1GpgKeySignature.html#a95254ea2c00829b9dc87adc4a317cde5',1,'GpgFrontend::GpgKeySignature::GetUID()'],['../classGpgFrontend_1_1GpgUID.html#a467897d43a18b0cadd2e2e44384f6cdd',1,'GpgFrontend::GpgUID::GetUID()']]], + ['getuids_1014',['GetUIDs',['../classGpgFrontend_1_1GpgKey.html#ac8b13b45e487cdc423b78d3017897f99',1,'GpgFrontend::GpgKey']]], + ['getuisettings_1015',['GetUISettings',['../classGpgFrontend_1_1GlobalSettingStation.html#a14433405831283cd95091d741614d03b',1,'GpgFrontend::GlobalSettingStation']]], + ['getuserid_1016',['GetUserid',['../classGpgFrontend_1_1GenKeyInfo.html#a4ee4a0659e76376d9bfc527c334392e1',1,'GpgFrontend::GenKeyInfo']]], + ['getuuid_1017',['GetUUID',['../classGpgFrontend_1_1Thread_1_1Task.html#a50b91d27874af31ef13c493b00824ccf',1,'GpgFrontend::Thread::Task']]], + ['getvalidity_1018',['GetValidity',['../classGpgFrontend_1_1GpgSignature.html#a09cb6b465e85dffcf7867e70a276e9ad',1,'GpgFrontend::GpgSignature::GetValidity()'],['../classGpgFrontend_1_1GpgTOFUInfo.html#a8770062c9e0c3875083d2c92ebe8ccb0',1,'GpgFrontend::GpgTOFUInfo::GetValidity()']]], + ['globalsettingstation_1019',['GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html#abdc6dda369d4214e43ffa2930f7386b0',1,'GpgFrontend::GlobalSettingStation']]], + ['gnupgtab_1020',['GnupgTab',['../classGpgFrontend_1_1UI_1_1GnupgTab.html#ab9d9e8af4494659f13b87804e7318a79',1,'GpgFrontend::UI::GnupgTab']]], + ['good_1021',['good',['../classGpgFrontend_1_1GpgContext.html#a73c505a2f3d39d1638dc4d9a3e13a913',1,'GpgFrontend::GpgContext']]], + ['gpgbasicoperator_1022',['GpgBasicOperator',['../classGpgFrontend_1_1GpgBasicOperator.html#a139be86330f88e5f833aa24263a3b2ae',1,'GpgFrontend::GpgBasicOperator']]], + ['gpgcommandexecutor_1023',['GpgCommandExecutor',['../classGpgFrontend_1_1GpgCommandExecutor.html#a94240f423464600938bfcafa2b186c38',1,'GpgFrontend::GpgCommandExecutor']]], + ['gpgcontext_1024',['GpgContext',['../classGpgFrontend_1_1GpgContext.html#a39882b323569987592231f722a2ef147',1,'GpgFrontend::GpgContext::GpgContext(const GpgContextInitArgs &args={})'],['../classGpgFrontend_1_1GpgContext.html#a2429d3f9daa189b4d5d8624c9f4d528b',1,'GpgFrontend::GpgContext::GpgContext(int channel)']]], + ['gpgdata_1025',['GpgData',['../classGpgFrontend_1_1GpgData.html#ac3661a9365ad72b0883a2f62ef4647da',1,'GpgFrontend::GpgData::GpgData()'],['../classGpgFrontend_1_1GpgData.html#a5e607c3bb69f998aaac761f400dd6440',1,'GpgFrontend::GpgData::GpgData(void *buffer, size_t size, bool copy=true)']]], + ['gpgdecryptresultanalyse_1026',['GpgDecryptResultAnalyse',['../classGpgFrontend_1_1GpgDecryptResultAnalyse.html#a442438ae58cdd7220f0e4b0792e5a372',1,'GpgFrontend::GpgDecryptResultAnalyse']]], + ['gpgencryptresultanalyse_1027',['GpgEncryptResultAnalyse',['../classGpgFrontend_1_1GpgEncryptResultAnalyse.html#a0801e32c8709da373f6715bc994a7747',1,'GpgFrontend::GpgEncryptResultAnalyse']]], + ['gpgfileopera_1028',['GpgFileOpera',['../classGpgFrontend_1_1GpgFileOpera.html#aa81da3d72c4fbc57e7138bfec7731152',1,'GpgFrontend::GpgFileOpera']]], + ['gpgfrontendapplication_1029',['GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#ac0290f06e08f2714f9727bb578df1298',1,'GpgFrontend::UI::GpgFrontendApplication']]], + ['gpgimportinformation_1030',['GpgImportInformation',['../classGpgFrontend_1_1GpgImportInformation.html#ab282d4f701403cd68eb02d1aad30be56',1,'GpgFrontend::GpgImportInformation']]], + ['gpgkey_1031',['GpgKey',['../classGpgFrontend_1_1GpgKey.html#a3b08060c07a9cc207eb8c98771bd4bc1',1,'GpgFrontend::GpgKey::GpgKey()=default'],['../classGpgFrontend_1_1GpgKey.html#aa599159ab1041c2f5a5fbf09666489b9',1,'GpgFrontend::GpgKey::GpgKey(gpgme_key_t &&key)'],['../classGpgFrontend_1_1GpgKey.html#a1d6e415e77625c1281dac1cc5f33f804',1,'GpgFrontend::GpgKey::GpgKey(const gpgme_key_t &key)=delete'],['../classGpgFrontend_1_1GpgKey.html#aeb316f8728b10e966eed6f0291794eed',1,'GpgFrontend::GpgKey::GpgKey(GpgKey &&k) noexcept']]], + ['gpgkeygetter_1032',['GpgKeyGetter',['../classGpgFrontend_1_1GpgKeyGetter.html#a8eeee9f6dd74dc24c24794ce63c62285',1,'GpgFrontend::GpgKeyGetter']]], + ['gpgkeyimportexporter_1033',['GpgKeyImportExporter',['../classGpgFrontend_1_1GpgKeyImportExporter.html#a0eede7c782d17b32d6c1f30cd8496561',1,'GpgFrontend::GpgKeyImportExporter']]], + ['gpgkeymanager_1034',['GpgKeyManager',['../classGpgFrontend_1_1GpgKeyManager.html#a210b717fd8ee63b064d77f32b0df4c5d',1,'GpgFrontend::GpgKeyManager']]], + ['gpgkeyopera_1035',['GpgKeyOpera',['../classGpgFrontend_1_1GpgKeyOpera.html#a01d6a920156a38a34c57d9c49c361079',1,'GpgFrontend::GpgKeyOpera']]], + ['gpgkeysignature_1036',['GpgKeySignature',['../classGpgFrontend_1_1GpgKeySignature.html#a8a9c792c963ef610e511b7deb6829c0b',1,'GpgFrontend::GpgKeySignature::GpgKeySignature()'],['../classGpgFrontend_1_1GpgKeySignature.html#abb4571e79c921261c03f57980d502e72',1,'GpgFrontend::GpgKeySignature::GpgKeySignature(gpgme_key_sig_t sig)'],['../classGpgFrontend_1_1GpgKeySignature.html#a9ba501d98265c9677d00e3dca3e8d903',1,'GpgFrontend::GpgKeySignature::GpgKeySignature(GpgKeySignature &&) noexcept'],['../classGpgFrontend_1_1GpgKeySignature.html#a4a501aa3a549a6a6914e2aeed4ff302e',1,'GpgFrontend::GpgKeySignature::GpgKeySignature(const GpgKeySignature &)=delete']]], + ['gpgresultanalyse_1037',['GpgResultAnalyse',['../classGpgFrontend_1_1GpgResultAnalyse.html#aa3c9bdf1ea4c87476010ef32fd2fb426',1,'GpgFrontend::GpgResultAnalyse']]], + ['gpgsignature_1038',['GpgSignature',['../classGpgFrontend_1_1GpgSignature.html#ab7a4489b35d918503076b2659d14fafe',1,'GpgFrontend::GpgSignature::GpgSignature()'],['../classGpgFrontend_1_1GpgSignature.html#aea05d301ccf75f4a3aec2be58541eca8',1,'GpgFrontend::GpgSignature::GpgSignature(gpgme_signature_t sig)'],['../classGpgFrontend_1_1GpgSignature.html#aeae075c7b9c628f558d6fedbc8b9233a',1,'GpgFrontend::GpgSignature::GpgSignature(GpgSignature &&) noexcept'],['../classGpgFrontend_1_1GpgSignature.html#a1b705f45de8f6d0ae97f1ffda28185b7',1,'GpgFrontend::GpgSignature::GpgSignature(const GpgSignature &)=delete']]], + ['gpgsignresultanalyse_1039',['GpgSignResultAnalyse',['../classGpgFrontend_1_1GpgSignResultAnalyse.html#a3ddd2d52ad91fdf7f4c8740312570c8e',1,'GpgFrontend::GpgSignResultAnalyse']]], + ['gpgsubkey_1040',['GpgSubKey',['../classGpgFrontend_1_1GpgSubKey.html#a59eba8a9d23429140e9a68126c9c7c5e',1,'GpgFrontend::GpgSubKey::GpgSubKey()'],['../classGpgFrontend_1_1GpgSubKey.html#a3c9605e6ccb7fa53d9c9013453d561fe',1,'GpgFrontend::GpgSubKey::GpgSubKey(gpgme_subkey_t subkey)'],['../classGpgFrontend_1_1GpgSubKey.html#ad12e160dbb394a849d6cf31e614a76f5',1,'GpgFrontend::GpgSubKey::GpgSubKey(GpgSubKey &&o) noexcept'],['../classGpgFrontend_1_1GpgSubKey.html#a6e8df85f8c1dea7705b761e68bb949ab',1,'GpgFrontend::GpgSubKey::GpgSubKey(const GpgSubKey &)=delete']]], + ['gpgtofuinfo_1041',['GpgTOFUInfo',['../classGpgFrontend_1_1GpgTOFUInfo.html#a80acb09347a74cc35776d58b9874cf37',1,'GpgFrontend::GpgTOFUInfo::GpgTOFUInfo()'],['../classGpgFrontend_1_1GpgTOFUInfo.html#aaabb02aef76162ed59647445b4c1f6de',1,'GpgFrontend::GpgTOFUInfo::GpgTOFUInfo(gpgme_tofu_info_t tofu_info)'],['../classGpgFrontend_1_1GpgTOFUInfo.html#aa953ff4b877b4b831d34e4a5678b0cd3',1,'GpgFrontend::GpgTOFUInfo::GpgTOFUInfo(GpgTOFUInfo &&o) noexcept'],['../classGpgFrontend_1_1GpgTOFUInfo.html#a4f46d32bc9bf1a1a3bbc32461538a422',1,'GpgFrontend::GpgTOFUInfo::GpgTOFUInfo(const GpgTOFUInfo &)=delete']]], + ['gpguid_1042',['GpgUID',['../classGpgFrontend_1_1GpgUID.html#a35fdcef4ecf2598461bdc596ffc7957c',1,'GpgFrontend::GpgUID::GpgUID()'],['../classGpgFrontend_1_1GpgUID.html#ae1fb528a9d06d6e9f1feaf1bc291fe64',1,'GpgFrontend::GpgUID::GpgUID(gpgme_user_id_t uid)'],['../classGpgFrontend_1_1GpgUID.html#a7210ece9b898981dae83f8d29b1ca453',1,'GpgFrontend::GpgUID::GpgUID(GpgUID &&o) noexcept'],['../classGpgFrontend_1_1GpgUID.html#a58ed67984063f0b87e35bc1782a1cc0a',1,'GpgFrontend::GpgUID::GpgUID(const GpgUID &)=delete']]], + ['gpguidoperator_1043',['GpgUIDOperator',['../classGpgFrontend_1_1GpgUIDOperator.html#ab74a830c858ab9ff135375743393a7c7',1,'GpgFrontend::GpgUIDOperator']]], + ['gpgverifyresultanalyse_1044',['GpgVerifyResultAnalyse',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#ab1d67da5dbe5bd2d665f7121e5f5354b',1,'GpgFrontend::GpgVerifyResultAnalyse']]] ]; diff --git a/docs/html/search/functions_8.js b/docs/html/search/functions_8.js index ec454a49..ebdd52d8 100644 --- a/docs/html/search/functions_8.js +++ b/docs/html/search/functions_8.js @@ -1,4 +1,4 @@ var searchData= [ - ['helppage_1044',['HelpPage',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a1be8f5b79fef3d1d62ff4620b8535006',1,'GpgFrontend::UI::HelpPage']]] + ['helppage_1045',['HelpPage',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a1be8f5b79fef3d1d62ff4620b8535006',1,'GpgFrontend::UI::HelpPage']]] ]; diff --git a/docs/html/search/functions_9.js b/docs/html/search/functions_9.js index 89d0a4e6..32bf331a 100644 --- a/docs/html/search/functions_9.js +++ b/docs/html/search/functions_9.js @@ -1,50 +1,50 @@ var searchData= [ - ['import_5fkey_5ffrom_5fkeyserver_1045',['import_key_from_keyserver',['../namespaceGpgFrontend_1_1UI.html#aa346bd199cecc61b15ef406728b58770',1,'GpgFrontend::UI']]], - ['import_5fkeys_1046',['import_keys',['../classGpgFrontend_1_1UI_1_1KeyList.html#ab64ba3049fac1aaa9fed4fb1c5919153',1,'GpgFrontend::UI::KeyList::import_keys()'],['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a3b818c2a3e5c32fc32425b17e63367e2',1,'GpgFrontend::UI::KeyServerImportDialog::import_keys()']]], - ['import_5funknown_5fkey_5ffrom_5fkeyserver_1047',['import_unknown_key_from_keyserver',['../namespaceGpgFrontend_1_1UI.html#a9ab218dde057182cb4911c4792acd925',1,'GpgFrontend::UI']]], - ['importkey_1048',['ImportKey',['../classGpgFrontend_1_1GpgKeyImportExporter.html#ab7a9be5283047695cd47562775adf79d',1,'GpgFrontend::GpgKeyImportExporter']]], - ['importkeypackage_1049',['ImportKeyPackage',['../classGpgFrontend_1_1KeyPackageOperator.html#a89538b180a42eb7d6ae53583fe10ee07',1,'GpgFrontend::KeyPackageOperator']]], - ['infoboardwidget_1050',['InfoBoardWidget',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#adeef521a8838bf2a1692c25d9b108010',1,'GpgFrontend::UI::InfoBoardWidget']]], - ['infotab_1051',['InfoTab',['../classGpgFrontend_1_1UI_1_1InfoTab.html#a99d8b059ee28ea257981892e0b35d4cc',1,'GpgFrontend::UI::InfoTab']]], - ['infovaild_1052',['InfoVaild',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a4e6c8fddaa530a04c5bbea29cfceb793',1,'GpgFrontend::UI::SoftwareVersion']]], - ['init_1053',['Init',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a08ba4521f68c488b23b651e201011759',1,'GpgFrontend::UI::MainWindow']]], - ['init_5fapp_5fsecure_5fkey_1054',['init_app_secure_key',['../classGpgFrontend_1_1DataObjectOperator.html#a6b357780482f0e0c021ad55a81eb37cf',1,'GpgFrontend::DataObjectOperator']]], - ['init_5fctx_1055',['init_ctx',['../classGpgFrontend_1_1GpgContext.html#a3377fd6a325aafc18c119431f602db9b',1,'GpgFrontend::GpgContext']]], - ['init_5flocale_1056',['init_locale',['../namespaceGpgFrontend_1_1UI.html#a157c74e50283da9ed554cf7bf90afbee',1,'GpgFrontend::UI']]], - ['initgpgfrontendui_1057',['InitGpgFrontendUI',['../namespaceGpgFrontend_1_1UI.html#ab0311557c1d7bde9c56cbca85fefa6ad',1,'GpgFrontend::UI']]], - ['initloggingsystem_1058',['InitLoggingSystem',['../namespaceGpgFrontend.html#aff3e12940da2d43ce7aedeb795643434',1,'GpgFrontend']]], - ['intropage_1059',['IntroPage',['../classGpgFrontend_1_1UI_1_1IntroPage.html#aed4220a7372b192ee4e8bc5024db922d',1,'GpgFrontend::UI::IntroPage']]], - ['isallowauthentication_1060',['IsAllowAuthentication',['../classGpgFrontend_1_1GenKeyInfo.html#aabdf981c65a0efde1e8905441b9b9c87',1,'GpgFrontend::GenKeyInfo']]], - ['isallowcertification_1061',['IsAllowCertification',['../classGpgFrontend_1_1GenKeyInfo.html#ad47ceeb1ccfa8862843034e51b4d8be7',1,'GpgFrontend::GenKeyInfo']]], - ['isallowchangeauthentication_1062',['IsAllowChangeAuthentication',['../classGpgFrontend_1_1GenKeyInfo.html#aaf8ab7c6564a2836837a537111d6f5b4',1,'GpgFrontend::GenKeyInfo']]], - ['isallowchangecertification_1063',['IsAllowChangeCertification',['../classGpgFrontend_1_1GenKeyInfo.html#adbcddd0fa0a273f9b77fe1297633dabc',1,'GpgFrontend::GenKeyInfo']]], - ['isallowchangeencryption_1064',['IsAllowChangeEncryption',['../classGpgFrontend_1_1GenKeyInfo.html#ad04a906300bea028c6fb6b1b2da1d149',1,'GpgFrontend::GenKeyInfo']]], - ['isallowchangesigning_1065',['IsAllowChangeSigning',['../classGpgFrontend_1_1GenKeyInfo.html#a06f95a8d26da79bcbe7d51e266879a94',1,'GpgFrontend::GenKeyInfo']]], - ['isallowencryption_1066',['IsAllowEncryption',['../classGpgFrontend_1_1GenKeyInfo.html#a28ed8a65243e5bc69403305752c2cdc9',1,'GpgFrontend::GenKeyInfo']]], - ['isallownopassphrase_1067',['IsAllowNoPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#af6a79124a4571ff7f37c1c5e6c1a9415',1,'GpgFrontend::GenKeyInfo']]], - ['isallowsigning_1068',['IsAllowSigning',['../classGpgFrontend_1_1GenKeyInfo.html#ad972292c408cb83c08e739327795a5f0',1,'GpgFrontend::GenKeyInfo']]], - ['iscardkey_1069',['IsCardKey',['../classGpgFrontend_1_1GpgSubKey.html#ad818aa66e47d6686eb8ff253b3c21814',1,'GpgFrontend::GpgSubKey']]], - ['isdisabled_1070',['IsDisabled',['../classGpgFrontend_1_1GpgSubKey.html#a75abb60a2130efc7fad8ab8fb3157042',1,'GpgFrontend::GpgSubKey::IsDisabled()'],['../classGpgFrontend_1_1GpgKey.html#a7eaf1e722d8a59f6a86d8e732217d89c',1,'GpgFrontend::GpgKey::IsDisabled()']]], - ['isdiscarded_1071',['IsDiscarded',['../classGpgFrontend_1_1UI_1_1QuitDialog.html#a4c4bc06d1d168f01569ed83dcfd50d55',1,'GpgFrontend::UI::QuitDialog']]], - ['isexpired_1072',['IsExpired',['../classGpgFrontend_1_1GpgKey.html#a66711ffd7f4af58594b7de984a13c327',1,'GpgFrontend::GpgKey::IsExpired()'],['../classGpgFrontend_1_1GpgKeySignature.html#aec39e4f67f17358f26bbbeb4cf62b7f4',1,'GpgFrontend::GpgKeySignature::IsExpired()'],['../classGpgFrontend_1_1GpgSubKey.html#ac686352b5ede5aa4dd74b3488c53891e',1,'GpgFrontend::GpgSubKey::IsExpired()']]], - ['isexportable_1073',['IsExportable',['../classGpgFrontend_1_1GpgKeySignature.html#a19fc1ca3733b576e12628e333e2c449e',1,'GpgFrontend::GpgKeySignature']]], - ['isgood_1074',['IsGood',['../classGpgFrontend_1_1GpgKey.html#a59e76d40f01e765f0544e5c6a2851be6',1,'GpgFrontend::GpgKey']]], - ['ishasactualauthenticationcapability_1075',['IsHasActualAuthenticationCapability',['../classGpgFrontend_1_1GpgKey.html#a371a24c4e9d3b99a36f76ff8c7f2d0e6',1,'GpgFrontend::GpgKey']]], - ['ishasactualcertificationcapability_1076',['IsHasActualCertificationCapability',['../classGpgFrontend_1_1GpgKey.html#ae370e41a7ea7307fbf4d28e0f2a67e0c',1,'GpgFrontend::GpgKey']]], - ['ishasactualencryptioncapability_1077',['IsHasActualEncryptionCapability',['../classGpgFrontend_1_1GpgKey.html#aaa66d803456152fed9ba4cf5bce7b99d',1,'GpgFrontend::GpgKey']]], - ['ishasactualsigningcapability_1078',['IsHasActualSigningCapability',['../classGpgFrontend_1_1GpgKey.html#aefa0a44adb1b7c49553a85b545fdffe1',1,'GpgFrontend::GpgKey']]], - ['ishasauthenticationcapability_1079',['IsHasAuthenticationCapability',['../classGpgFrontend_1_1GpgKey.html#afdffba6dfb6009a0b320623df7a26be0',1,'GpgFrontend::GpgKey::IsHasAuthenticationCapability()'],['../classGpgFrontend_1_1GpgSubKey.html#a04d9df643cd08200cd742dc243be6cd6',1,'GpgFrontend::GpgSubKey::IsHasAuthenticationCapability()']]], - ['ishascardkey_1080',['IsHasCardKey',['../classGpgFrontend_1_1GpgKey.html#afedc843415bd4b59687e975006e470ed',1,'GpgFrontend::GpgKey']]], - ['ishascertificationcapability_1081',['IsHasCertificationCapability',['../classGpgFrontend_1_1GpgSubKey.html#a56938360f873949aa9ba3dbdaab519d1',1,'GpgFrontend::GpgSubKey::IsHasCertificationCapability()'],['../classGpgFrontend_1_1GpgKey.html#a2d28e72cfb741deeadfe02ff456fb490',1,'GpgFrontend::GpgKey::IsHasCertificationCapability()']]], - ['ishasencryptioncapability_1082',['IsHasEncryptionCapability',['../classGpgFrontend_1_1GpgSubKey.html#ab67395a986184cb9b20f3dc178fc52be',1,'GpgFrontend::GpgSubKey::IsHasEncryptionCapability()'],['../classGpgFrontend_1_1GpgKey.html#a60b342ca6e1062d4489d8ba8f7a5a605',1,'GpgFrontend::GpgKey::IsHasEncryptionCapability() const']]], - ['ishasmasterkey_1083',['IsHasMasterKey',['../classGpgFrontend_1_1GpgKey.html#aadac1b776764ee9d0ca4f8bb9f9e0741',1,'GpgFrontend::GpgKey']]], - ['ishassigningcapability_1084',['IsHasSigningCapability',['../classGpgFrontend_1_1GpgSubKey.html#ab9208165c74b93fa8c5b7a06cd808f56',1,'GpgFrontend::GpgSubKey::IsHasSigningCapability()'],['../classGpgFrontend_1_1GpgKey.html#a635bbf8f08268cfdac1bc120981df877',1,'GpgFrontend::GpgKey::IsHasSigningCapability()']]], - ['isinvalid_1085',['IsInvalid',['../classGpgFrontend_1_1GpgKeySignature.html#a1725474a1c61c0a3d724dc2f999cb24a',1,'GpgFrontend::GpgKeySignature']]], - ['isnonexpired_1086',['IsNonExpired',['../classGpgFrontend_1_1GenKeyInfo.html#aeef7697c91b5b5998088979e09332380',1,'GpgFrontend::GenKeyInfo']]], - ['isnopassphrase_1087',['IsNoPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#a848181796a99bec8d32dc5eac240ee01',1,'GpgFrontend::GenKeyInfo']]], - ['isprivatekey_1088',['IsPrivateKey',['../classGpgFrontend_1_1GpgKey.html#a888c0263f04bdd52967e092b9c73eb6d',1,'GpgFrontend::GpgKey::IsPrivateKey()'],['../classGpgFrontend_1_1GpgSubKey.html#accb86b50755698b3e1e7fdfe06f44e84',1,'GpgFrontend::GpgSubKey::IsPrivateKey()']]], - ['isrevoked_1089',['IsRevoked',['../classGpgFrontend_1_1GpgKey.html#a637f2a5e9b9b7cafcdaada00c2f7de87',1,'GpgFrontend::GpgKey::IsRevoked()'],['../classGpgFrontend_1_1GpgKeySignature.html#a9aa824b0a9e03dfbcc7849a7b526ef67',1,'GpgFrontend::GpgKeySignature::IsRevoked()'],['../classGpgFrontend_1_1GpgSubKey.html#a9cc81c515b6a197757b48dd334cc3344',1,'GpgFrontend::GpgSubKey::IsRevoked() const']]], - ['issecretkey_1090',['IsSecretKey',['../classGpgFrontend_1_1GpgSubKey.html#a8fcbeae2ef3ad73a5aedee19f6de3e60',1,'GpgFrontend::GpgSubKey']]], - ['issubkey_1091',['IsSubKey',['../classGpgFrontend_1_1GenKeyInfo.html#a40a42ad975499566de124296c19e6c55',1,'GpgFrontend::GenKeyInfo']]] + ['import_5fkey_5ffrom_5fkeyserver_1046',['import_key_from_keyserver',['../namespaceGpgFrontend_1_1UI.html#aa346bd199cecc61b15ef406728b58770',1,'GpgFrontend::UI']]], + ['import_5fkeys_1047',['import_keys',['../classGpgFrontend_1_1UI_1_1KeyList.html#ab64ba3049fac1aaa9fed4fb1c5919153',1,'GpgFrontend::UI::KeyList::import_keys()'],['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a3b818c2a3e5c32fc32425b17e63367e2',1,'GpgFrontend::UI::KeyServerImportDialog::import_keys()']]], + ['import_5funknown_5fkey_5ffrom_5fkeyserver_1048',['import_unknown_key_from_keyserver',['../namespaceGpgFrontend_1_1UI.html#a9ab218dde057182cb4911c4792acd925',1,'GpgFrontend::UI']]], + ['importkey_1049',['ImportKey',['../classGpgFrontend_1_1GpgKeyImportExporter.html#ab7a9be5283047695cd47562775adf79d',1,'GpgFrontend::GpgKeyImportExporter']]], + ['importkeypackage_1050',['ImportKeyPackage',['../classGpgFrontend_1_1KeyPackageOperator.html#a89538b180a42eb7d6ae53583fe10ee07',1,'GpgFrontend::KeyPackageOperator']]], + ['infoboardwidget_1051',['InfoBoardWidget',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#adeef521a8838bf2a1692c25d9b108010',1,'GpgFrontend::UI::InfoBoardWidget']]], + ['infotab_1052',['InfoTab',['../classGpgFrontend_1_1UI_1_1InfoTab.html#a99d8b059ee28ea257981892e0b35d4cc',1,'GpgFrontend::UI::InfoTab']]], + ['infovaild_1053',['InfoVaild',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a4e6c8fddaa530a04c5bbea29cfceb793',1,'GpgFrontend::UI::SoftwareVersion']]], + ['init_1054',['Init',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a08ba4521f68c488b23b651e201011759',1,'GpgFrontend::UI::MainWindow']]], + ['init_5fapp_5fsecure_5fkey_1055',['init_app_secure_key',['../classGpgFrontend_1_1DataObjectOperator.html#a6b357780482f0e0c021ad55a81eb37cf',1,'GpgFrontend::DataObjectOperator']]], + ['init_5fctx_1056',['init_ctx',['../classGpgFrontend_1_1GpgContext.html#a3377fd6a325aafc18c119431f602db9b',1,'GpgFrontend::GpgContext']]], + ['init_5flocale_1057',['init_locale',['../namespaceGpgFrontend_1_1UI.html#a157c74e50283da9ed554cf7bf90afbee',1,'GpgFrontend::UI']]], + ['initgpgfrontendui_1058',['InitGpgFrontendUI',['../namespaceGpgFrontend_1_1UI.html#ab0311557c1d7bde9c56cbca85fefa6ad',1,'GpgFrontend::UI']]], + ['initloggingsystem_1059',['InitLoggingSystem',['../namespaceGpgFrontend.html#aff3e12940da2d43ce7aedeb795643434',1,'GpgFrontend']]], + ['intropage_1060',['IntroPage',['../classGpgFrontend_1_1UI_1_1IntroPage.html#aed4220a7372b192ee4e8bc5024db922d',1,'GpgFrontend::UI::IntroPage']]], + ['isallowauthentication_1061',['IsAllowAuthentication',['../classGpgFrontend_1_1GenKeyInfo.html#aabdf981c65a0efde1e8905441b9b9c87',1,'GpgFrontend::GenKeyInfo']]], + ['isallowcertification_1062',['IsAllowCertification',['../classGpgFrontend_1_1GenKeyInfo.html#ad47ceeb1ccfa8862843034e51b4d8be7',1,'GpgFrontend::GenKeyInfo']]], + ['isallowchangeauthentication_1063',['IsAllowChangeAuthentication',['../classGpgFrontend_1_1GenKeyInfo.html#aaf8ab7c6564a2836837a537111d6f5b4',1,'GpgFrontend::GenKeyInfo']]], + ['isallowchangecertification_1064',['IsAllowChangeCertification',['../classGpgFrontend_1_1GenKeyInfo.html#adbcddd0fa0a273f9b77fe1297633dabc',1,'GpgFrontend::GenKeyInfo']]], + ['isallowchangeencryption_1065',['IsAllowChangeEncryption',['../classGpgFrontend_1_1GenKeyInfo.html#ad04a906300bea028c6fb6b1b2da1d149',1,'GpgFrontend::GenKeyInfo']]], + ['isallowchangesigning_1066',['IsAllowChangeSigning',['../classGpgFrontend_1_1GenKeyInfo.html#a06f95a8d26da79bcbe7d51e266879a94',1,'GpgFrontend::GenKeyInfo']]], + ['isallowencryption_1067',['IsAllowEncryption',['../classGpgFrontend_1_1GenKeyInfo.html#a28ed8a65243e5bc69403305752c2cdc9',1,'GpgFrontend::GenKeyInfo']]], + ['isallownopassphrase_1068',['IsAllowNoPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#af6a79124a4571ff7f37c1c5e6c1a9415',1,'GpgFrontend::GenKeyInfo']]], + ['isallowsigning_1069',['IsAllowSigning',['../classGpgFrontend_1_1GenKeyInfo.html#ad972292c408cb83c08e739327795a5f0',1,'GpgFrontend::GenKeyInfo']]], + ['iscardkey_1070',['IsCardKey',['../classGpgFrontend_1_1GpgSubKey.html#ad818aa66e47d6686eb8ff253b3c21814',1,'GpgFrontend::GpgSubKey']]], + ['isdisabled_1071',['IsDisabled',['../classGpgFrontend_1_1GpgSubKey.html#a75abb60a2130efc7fad8ab8fb3157042',1,'GpgFrontend::GpgSubKey::IsDisabled()'],['../classGpgFrontend_1_1GpgKey.html#a7eaf1e722d8a59f6a86d8e732217d89c',1,'GpgFrontend::GpgKey::IsDisabled()']]], + ['isdiscarded_1072',['IsDiscarded',['../classGpgFrontend_1_1UI_1_1QuitDialog.html#a4c4bc06d1d168f01569ed83dcfd50d55',1,'GpgFrontend::UI::QuitDialog']]], + ['isexpired_1073',['IsExpired',['../classGpgFrontend_1_1GpgKey.html#a66711ffd7f4af58594b7de984a13c327',1,'GpgFrontend::GpgKey::IsExpired()'],['../classGpgFrontend_1_1GpgKeySignature.html#aec39e4f67f17358f26bbbeb4cf62b7f4',1,'GpgFrontend::GpgKeySignature::IsExpired()'],['../classGpgFrontend_1_1GpgSubKey.html#ac686352b5ede5aa4dd74b3488c53891e',1,'GpgFrontend::GpgSubKey::IsExpired()']]], + ['isexportable_1074',['IsExportable',['../classGpgFrontend_1_1GpgKeySignature.html#a19fc1ca3733b576e12628e333e2c449e',1,'GpgFrontend::GpgKeySignature']]], + ['isgood_1075',['IsGood',['../classGpgFrontend_1_1GpgKey.html#a59e76d40f01e765f0544e5c6a2851be6',1,'GpgFrontend::GpgKey']]], + ['ishasactualauthenticationcapability_1076',['IsHasActualAuthenticationCapability',['../classGpgFrontend_1_1GpgKey.html#a371a24c4e9d3b99a36f76ff8c7f2d0e6',1,'GpgFrontend::GpgKey']]], + ['ishasactualcertificationcapability_1077',['IsHasActualCertificationCapability',['../classGpgFrontend_1_1GpgKey.html#ae370e41a7ea7307fbf4d28e0f2a67e0c',1,'GpgFrontend::GpgKey']]], + ['ishasactualencryptioncapability_1078',['IsHasActualEncryptionCapability',['../classGpgFrontend_1_1GpgKey.html#aaa66d803456152fed9ba4cf5bce7b99d',1,'GpgFrontend::GpgKey']]], + ['ishasactualsigningcapability_1079',['IsHasActualSigningCapability',['../classGpgFrontend_1_1GpgKey.html#aefa0a44adb1b7c49553a85b545fdffe1',1,'GpgFrontend::GpgKey']]], + ['ishasauthenticationcapability_1080',['IsHasAuthenticationCapability',['../classGpgFrontend_1_1GpgKey.html#afdffba6dfb6009a0b320623df7a26be0',1,'GpgFrontend::GpgKey::IsHasAuthenticationCapability()'],['../classGpgFrontend_1_1GpgSubKey.html#a04d9df643cd08200cd742dc243be6cd6',1,'GpgFrontend::GpgSubKey::IsHasAuthenticationCapability()']]], + ['ishascardkey_1081',['IsHasCardKey',['../classGpgFrontend_1_1GpgKey.html#afedc843415bd4b59687e975006e470ed',1,'GpgFrontend::GpgKey']]], + ['ishascertificationcapability_1082',['IsHasCertificationCapability',['../classGpgFrontend_1_1GpgSubKey.html#a56938360f873949aa9ba3dbdaab519d1',1,'GpgFrontend::GpgSubKey::IsHasCertificationCapability()'],['../classGpgFrontend_1_1GpgKey.html#a2d28e72cfb741deeadfe02ff456fb490',1,'GpgFrontend::GpgKey::IsHasCertificationCapability()']]], + ['ishasencryptioncapability_1083',['IsHasEncryptionCapability',['../classGpgFrontend_1_1GpgSubKey.html#ab67395a986184cb9b20f3dc178fc52be',1,'GpgFrontend::GpgSubKey::IsHasEncryptionCapability()'],['../classGpgFrontend_1_1GpgKey.html#a60b342ca6e1062d4489d8ba8f7a5a605',1,'GpgFrontend::GpgKey::IsHasEncryptionCapability() const']]], + ['ishasmasterkey_1084',['IsHasMasterKey',['../classGpgFrontend_1_1GpgKey.html#aadac1b776764ee9d0ca4f8bb9f9e0741',1,'GpgFrontend::GpgKey']]], + ['ishassigningcapability_1085',['IsHasSigningCapability',['../classGpgFrontend_1_1GpgSubKey.html#ab9208165c74b93fa8c5b7a06cd808f56',1,'GpgFrontend::GpgSubKey::IsHasSigningCapability()'],['../classGpgFrontend_1_1GpgKey.html#a635bbf8f08268cfdac1bc120981df877',1,'GpgFrontend::GpgKey::IsHasSigningCapability()']]], + ['isinvalid_1086',['IsInvalid',['../classGpgFrontend_1_1GpgKeySignature.html#a1725474a1c61c0a3d724dc2f999cb24a',1,'GpgFrontend::GpgKeySignature']]], + ['isnonexpired_1087',['IsNonExpired',['../classGpgFrontend_1_1GenKeyInfo.html#aeef7697c91b5b5998088979e09332380',1,'GpgFrontend::GenKeyInfo']]], + ['isnopassphrase_1088',['IsNoPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#a848181796a99bec8d32dc5eac240ee01',1,'GpgFrontend::GenKeyInfo']]], + ['isprivatekey_1089',['IsPrivateKey',['../classGpgFrontend_1_1GpgKey.html#a888c0263f04bdd52967e092b9c73eb6d',1,'GpgFrontend::GpgKey::IsPrivateKey()'],['../classGpgFrontend_1_1GpgSubKey.html#accb86b50755698b3e1e7fdfe06f44e84',1,'GpgFrontend::GpgSubKey::IsPrivateKey()']]], + ['isrevoked_1090',['IsRevoked',['../classGpgFrontend_1_1GpgKey.html#a637f2a5e9b9b7cafcdaada00c2f7de87',1,'GpgFrontend::GpgKey::IsRevoked()'],['../classGpgFrontend_1_1GpgKeySignature.html#a9aa824b0a9e03dfbcc7849a7b526ef67',1,'GpgFrontend::GpgKeySignature::IsRevoked()'],['../classGpgFrontend_1_1GpgSubKey.html#a9cc81c515b6a197757b48dd334cc3344',1,'GpgFrontend::GpgSubKey::IsRevoked() const']]], + ['issecretkey_1091',['IsSecretKey',['../classGpgFrontend_1_1GpgSubKey.html#a8fcbeae2ef3ad73a5aedee19f6de3e60',1,'GpgFrontend::GpgSubKey']]], + ['issubkey_1092',['IsSubKey',['../classGpgFrontend_1_1GenKeyInfo.html#a40a42ad975499566de124296c19e6c55',1,'GpgFrontend::GenKeyInfo']]] ]; diff --git a/docs/html/search/functions_a.js b/docs/html/search/functions_a.js index f002e569..7d9b95cc 100644 --- a/docs/html/search/functions_a.js +++ b/docs/html/search/functions_a.js @@ -1,22 +1,22 @@ var searchData= [ - ['keygendialog_1092',['KeyGenDialog',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3aef8d2bb8e0d36842532726a6796ab9',1,'GpgFrontend::UI::KeyGenDialog']]], - ['keygenpage_1093',['KeyGenPage',['../classGpgFrontend_1_1UI_1_1KeyGenPage.html#a0eb5dad522c597dcd101c02f496e7e70',1,'GpgFrontend::UI::KeyGenPage']]], - ['keyimportdetaildialog_1094',['KeyImportDetailDialog',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a0177cdaa19d1f83c9e519039aa7a8ce1',1,'GpgFrontend::UI::KeyImportDetailDialog']]], - ['keylist_1095',['KeyList',['../classGpgFrontend_1_1UI_1_1KeyList.html#a7c9d5cacdb42e1fbda5d3cc96e861418',1,'GpgFrontend::UI::KeyList']]], - ['keymgmt_1096',['KeyMgmt',['../classGpgFrontend_1_1UI_1_1KeyMgmt.html#aefc27b57830cf14a85c2225664f89f64',1,'GpgFrontend::UI::KeyMgmt']]], - ['keynewuiddialog_1097',['KeyNewUIDDialog',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a7226b139dc7a491e8ba780135654be27',1,'GpgFrontend::UI::KeyNewUIDDialog']]], - ['keypairdetailtab_1098',['KeyPairDetailTab',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a76efd8f8d623813be1a329ad01972444',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['keypairoperatab_1099',['KeyPairOperaTab',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#aad4e209d7b4eb0ac6623b2f12ce5ecc5',1,'GpgFrontend::UI::KeyPairOperaTab']]], - ['keypairsubkeytab_1100',['KeyPairSubkeyTab',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a93abe5c0467c7c4a29e0c45437a10732',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], - ['keypairuidtab_1101',['KeyPairUIDTab',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#af18c4f08a127d919a316c7e27ba338d3',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['keypressevent_1102',['keyPressEvent',['../classGpgFrontend_1_1UI_1_1FindWidget.html#a6e2264a989c2bb2db6bc8980b43e65f0',1,'GpgFrontend::UI::FindWidget::keyPressEvent()'],['../classGpgFrontend_1_1UI_1_1FilePage.html#aea388ad7876e287f71e93085e6715495',1,'GpgFrontend::UI::FilePage::keyPressEvent()']]], - ['keyserverimportdialog_1103',['KeyServerImportDialog',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a96b40e94b5c5a3216f513b9699820063',1,'GpgFrontend::UI::KeyServerImportDialog::KeyServerImportDialog(bool automatic, QWidget *parent)'],['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a4c4e44963dcd4f656b10788a7fafbb4e',1,'GpgFrontend::UI::KeyServerImportDialog::KeyServerImportDialog(QWidget *parent)']]], - ['keyserverimporttask_1104',['KeyServerImportTask',['../classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a1640363b4b27cb3d256181ddc6cdc857',1,'GpgFrontend::UI::KeyServerImportTask']]], - ['keyserversearchtask_1105',['KeyServerSearchTask',['../classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#a168e21bdfa72f43f91187ab29ece5efa',1,'GpgFrontend::UI::KeyServerSearchTask']]], - ['keyservertab_1106',['KeyserverTab',['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#aa3d3561d3bdf95de6486b2caa752616c',1,'GpgFrontend::UI::KeyserverTab']]], - ['keysetexpiredatedialog_1107',['KeySetExpireDateDialog',['../classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#a67da7721959b585db21f7e893793564b',1,'GpgFrontend::UI::KeySetExpireDateDialog::KeySetExpireDateDialog(const KeyId &key_id, QWidget *parent=nullptr)'],['../classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#a0efa9fd74abf305b2e20536f208c8beb',1,'GpgFrontend::UI::KeySetExpireDateDialog::KeySetExpireDateDialog(const KeyId &key_id, std::string subkey_fpr, QWidget *parent=nullptr)']]], - ['keytable_1108',['KeyTable',['../structGpgFrontend_1_1UI_1_1KeyTable.html#a88606ba6954d60244faf38de419bfc47',1,'GpgFrontend::UI::KeyTable']]], - ['keyuidsigndialog_1109',['KeyUIDSignDialog',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#aaa06ce342178802e76119bec6b26cc55',1,'GpgFrontend::UI::KeyUIDSignDialog']]], - ['keyuploaddialog_1110',['KeyUploadDialog',['../classGpgFrontend_1_1UI_1_1KeyUploadDialog.html#a51f63e30f26f7923def91519d347c0cf',1,'GpgFrontend::UI::KeyUploadDialog']]] + ['keygendialog_1093',['KeyGenDialog',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3aef8d2bb8e0d36842532726a6796ab9',1,'GpgFrontend::UI::KeyGenDialog']]], + ['keygenpage_1094',['KeyGenPage',['../classGpgFrontend_1_1UI_1_1KeyGenPage.html#a0eb5dad522c597dcd101c02f496e7e70',1,'GpgFrontend::UI::KeyGenPage']]], + ['keyimportdetaildialog_1095',['KeyImportDetailDialog',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a0177cdaa19d1f83c9e519039aa7a8ce1',1,'GpgFrontend::UI::KeyImportDetailDialog']]], + ['keylist_1096',['KeyList',['../classGpgFrontend_1_1UI_1_1KeyList.html#a7c9d5cacdb42e1fbda5d3cc96e861418',1,'GpgFrontend::UI::KeyList']]], + ['keymgmt_1097',['KeyMgmt',['../classGpgFrontend_1_1UI_1_1KeyMgmt.html#aefc27b57830cf14a85c2225664f89f64',1,'GpgFrontend::UI::KeyMgmt']]], + ['keynewuiddialog_1098',['KeyNewUIDDialog',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a7226b139dc7a491e8ba780135654be27',1,'GpgFrontend::UI::KeyNewUIDDialog']]], + ['keypairdetailtab_1099',['KeyPairDetailTab',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a76efd8f8d623813be1a329ad01972444',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['keypairoperatab_1100',['KeyPairOperaTab',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#aad4e209d7b4eb0ac6623b2f12ce5ecc5',1,'GpgFrontend::UI::KeyPairOperaTab']]], + ['keypairsubkeytab_1101',['KeyPairSubkeyTab',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a93abe5c0467c7c4a29e0c45437a10732',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], + ['keypairuidtab_1102',['KeyPairUIDTab',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#af18c4f08a127d919a316c7e27ba338d3',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['keypressevent_1103',['keyPressEvent',['../classGpgFrontend_1_1UI_1_1FindWidget.html#a6e2264a989c2bb2db6bc8980b43e65f0',1,'GpgFrontend::UI::FindWidget::keyPressEvent()'],['../classGpgFrontend_1_1UI_1_1FilePage.html#aea388ad7876e287f71e93085e6715495',1,'GpgFrontend::UI::FilePage::keyPressEvent()']]], + ['keyserverimportdialog_1104',['KeyServerImportDialog',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a96b40e94b5c5a3216f513b9699820063',1,'GpgFrontend::UI::KeyServerImportDialog::KeyServerImportDialog(bool automatic, QWidget *parent)'],['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a4c4e44963dcd4f656b10788a7fafbb4e',1,'GpgFrontend::UI::KeyServerImportDialog::KeyServerImportDialog(QWidget *parent)']]], + ['keyserverimporttask_1105',['KeyServerImportTask',['../classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a1640363b4b27cb3d256181ddc6cdc857',1,'GpgFrontend::UI::KeyServerImportTask']]], + ['keyserversearchtask_1106',['KeyServerSearchTask',['../classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#a168e21bdfa72f43f91187ab29ece5efa',1,'GpgFrontend::UI::KeyServerSearchTask']]], + ['keyservertab_1107',['KeyserverTab',['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#aa3d3561d3bdf95de6486b2caa752616c',1,'GpgFrontend::UI::KeyserverTab']]], + ['keysetexpiredatedialog_1108',['KeySetExpireDateDialog',['../classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#a67da7721959b585db21f7e893793564b',1,'GpgFrontend::UI::KeySetExpireDateDialog::KeySetExpireDateDialog(const KeyId &key_id, QWidget *parent=nullptr)'],['../classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#a0efa9fd74abf305b2e20536f208c8beb',1,'GpgFrontend::UI::KeySetExpireDateDialog::KeySetExpireDateDialog(const KeyId &key_id, std::string subkey_fpr, QWidget *parent=nullptr)']]], + ['keytable_1109',['KeyTable',['../structGpgFrontend_1_1UI_1_1KeyTable.html#a88606ba6954d60244faf38de419bfc47',1,'GpgFrontend::UI::KeyTable']]], + ['keyuidsigndialog_1110',['KeyUIDSignDialog',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#aaa06ce342178802e76119bec6b26cc55',1,'GpgFrontend::UI::KeyUIDSignDialog']]], + ['keyuploaddialog_1111',['KeyUploadDialog',['../classGpgFrontend_1_1UI_1_1KeyUploadDialog.html#a51f63e30f26f7923def91519d347c0cf',1,'GpgFrontend::UI::KeyUploadDialog']]] ]; diff --git a/docs/html/search/functions_b.js b/docs/html/search/functions_b.js index fc77443b..d5b814d4 100644 --- a/docs/html/search/functions_b.js +++ b/docs/html/search/functions_b.js @@ -1,7 +1,7 @@ var searchData= [ - ['listedkeyservertesttask_1111',['ListedKeyServerTestTask',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#ae25b5d59b53facc15648ab80ff19ed77',1,'GpgFrontend::UI::ListedKeyServerTestTask']]], - ['listlanguages_1112',['ListLanguages',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#acd22ac2fd91704551e5317e2c549ae26',1,'GpgFrontend::UI::SettingsDialog']]], - ['loadfile_1113',['LoadFile',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a72ed46454c833adb038c36d8d4322d18',1,'GpgFrontend::UI::TextEdit']]], - ['localized_5fhelp_1114',['localized_help',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a49fbde87f2ef385b44225acd6ffbc84f',1,'GpgFrontend::UI::HelpPage']]] + ['listedkeyservertesttask_1112',['ListedKeyServerTestTask',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#ae25b5d59b53facc15648ab80ff19ed77',1,'GpgFrontend::UI::ListedKeyServerTestTask']]], + ['listlanguages_1113',['ListLanguages',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#acd22ac2fd91704551e5317e2c549ae26',1,'GpgFrontend::UI::SettingsDialog']]], + ['loadfile_1114',['LoadFile',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a72ed46454c833adb038c36d8d4322d18',1,'GpgFrontend::UI::TextEdit']]], + ['localized_5fhelp_1115',['localized_help',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a49fbde87f2ef385b44225acd6ffbc84f',1,'GpgFrontend::UI::HelpPage']]] ]; diff --git a/docs/html/search/functions_c.js b/docs/html/search/functions_c.js index e4e5578a..8ac37c53 100644 --- a/docs/html/search/functions_c.js +++ b/docs/html/search/functions_c.js @@ -1,8 +1,8 @@ var searchData= [ - ['markkeys_1115',['MarkKeys',['../classGpgFrontend_1_1UI_1_1KeyList.html#a31a4c067eed90830203862cb4adf951e',1,'GpgFrontend::UI::KeyList']]], - ['maybe_5fsave_5fcurrent_5ftab_1116',['maybe_save_current_tab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a8fad090a19479a9fe89432300cca2b6c',1,'GpgFrontend::UI::TextEdit']]], - ['maybesaveanytab_1117',['MaybeSaveAnyTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3c976a5494d06c2186d94e7cc8ebe457',1,'GpgFrontend::UI::TextEdit']]], - ['modifypassword_1118',['ModifyPassword',['../classGpgFrontend_1_1GpgKeyOpera.html#ab7e16d1f4cba23ea5b5b9f6009ce5ee2',1,'GpgFrontend::GpgKeyOpera']]], - ['modifytofupolicy_1119',['ModifyTOFUPolicy',['../classGpgFrontend_1_1GpgKeyOpera.html#a76a7f59701add8a59d8835919dad2000',1,'GpgFrontend::GpgKeyOpera']]] + ['markkeys_1116',['MarkKeys',['../classGpgFrontend_1_1UI_1_1KeyList.html#a31a4c067eed90830203862cb4adf951e',1,'GpgFrontend::UI::KeyList']]], + ['maybe_5fsave_5fcurrent_5ftab_1117',['maybe_save_current_tab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a8fad090a19479a9fe89432300cca2b6c',1,'GpgFrontend::UI::TextEdit']]], + ['maybesaveanytab_1118',['MaybeSaveAnyTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3c976a5494d06c2186d94e7cc8ebe457',1,'GpgFrontend::UI::TextEdit']]], + ['modifypassword_1119',['ModifyPassword',['../classGpgFrontend_1_1GpgKeyOpera.html#ab7e16d1f4cba23ea5b5b9f6009ce5ee2',1,'GpgFrontend::GpgKeyOpera']]], + ['modifytofupolicy_1120',['ModifyTOFUPolicy',['../classGpgFrontend_1_1GpgKeyOpera.html#a76a7f59701add8a59d8835919dad2000',1,'GpgFrontend::GpgKeyOpera']]] ]; diff --git a/docs/html/search/functions_d.js b/docs/html/search/functions_d.js index 9eb64e3b..33e34c5d 100644 --- a/docs/html/search/functions_d.js +++ b/docs/html/search/functions_d.js @@ -1,9 +1,9 @@ var searchData= [ - ['needupgrade_1120',['NeedUpgrade',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#abc311fd0e15da1a04b995587ca74e1a6',1,'GpgFrontend::UI::SoftwareVersion']]], - ['networktab_1121',['NetworkTab',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#a444d3630919c1f9c4db495a58acbb9a8',1,'GpgFrontend::UI::NetworkTab']]], - ['new_5fdefault_5fsettings_5fchannel_1122',['new_default_settings_channel',['../namespaceGpgFrontend.html#aafb9aa0ba1d03afa09085b1b8136c55f',1,'GpgFrontend']]], - ['nextid_1123',['nextId',['../classGpgFrontend_1_1UI_1_1IntroPage.html#a812fd63d87955f9131a98ad8b679f8a4',1,'GpgFrontend::UI::IntroPage::nextId()'],['../classGpgFrontend_1_1UI_1_1ChoosePage.html#a243a82d13267b7252844fd7691c703f0',1,'GpgFrontend::UI::ChoosePage::nextId()'],['../classGpgFrontend_1_1UI_1_1KeyGenPage.html#a28958f6627f01db7c6f75fc0dec3eead',1,'GpgFrontend::UI::KeyGenPage::nextId()'],['../classGpgFrontend_1_1UI_1_1ConclusionPage.html#a0f3f3118456ccce7c2a6965cf68d2cf7',1,'GpgFrontend::UI::ConclusionPage::nextId()']]], - ['notify_1124',['notify',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a6f8ab335d89948c48cd634ab20ff9aa0',1,'GpgFrontend::UI::GpgFrontendApplication']]], - ['notifyfilesaved_1125',['NotifyFileSaved',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a29b3d63ba9590e775f42c779c76102e5',1,'GpgFrontend::UI::PlainTextEditorPage']]] + ['needupgrade_1121',['NeedUpgrade',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#abc311fd0e15da1a04b995587ca74e1a6',1,'GpgFrontend::UI::SoftwareVersion']]], + ['networktab_1122',['NetworkTab',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#a444d3630919c1f9c4db495a58acbb9a8',1,'GpgFrontend::UI::NetworkTab']]], + ['new_5fdefault_5fsettings_5fchannel_1123',['new_default_settings_channel',['../namespaceGpgFrontend.html#aafb9aa0ba1d03afa09085b1b8136c55f',1,'GpgFrontend']]], + ['nextid_1124',['nextId',['../classGpgFrontend_1_1UI_1_1IntroPage.html#a812fd63d87955f9131a98ad8b679f8a4',1,'GpgFrontend::UI::IntroPage::nextId()'],['../classGpgFrontend_1_1UI_1_1ChoosePage.html#a243a82d13267b7252844fd7691c703f0',1,'GpgFrontend::UI::ChoosePage::nextId()'],['../classGpgFrontend_1_1UI_1_1KeyGenPage.html#a28958f6627f01db7c6f75fc0dec3eead',1,'GpgFrontend::UI::KeyGenPage::nextId()'],['../classGpgFrontend_1_1UI_1_1ConclusionPage.html#a0f3f3118456ccce7c2a6965cf68d2cf7',1,'GpgFrontend::UI::ConclusionPage::nextId()']]], + ['notify_1125',['notify',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a6f8ab335d89948c48cd634ab20ff9aa0',1,'GpgFrontend::UI::GpgFrontendApplication']]], + ['notifyfilesaved_1126',['NotifyFileSaved',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a29b3d63ba9590e775f42c779c76102e5',1,'GpgFrontend::UI::PlainTextEditorPage']]] ]; diff --git a/docs/html/search/functions_e.js b/docs/html/search/functions_e.js index be866a24..606a922b 100644 --- a/docs/html/search/functions_e.js +++ b/docs/html/search/functions_e.js @@ -1,10 +1,10 @@ var searchData= [ - ['oncustomcontextmenu_1126',['onCustomContextMenu',['../classGpgFrontend_1_1UI_1_1FilePage.html#aa80dc1b74a0ec65d06e5dffaa21cc785',1,'GpgFrontend::UI::FilePage']]], - ['operator_20gpgme_5fctx_5ft_1127',['operator gpgme_ctx_t',['../classGpgFrontend_1_1GpgContext.html#a5b419175bd9927f3d449637db8ba6524',1,'GpgFrontend::GpgContext']]], - ['operator_20gpgme_5fdata_5ft_1128',['operator gpgme_data_t',['../classGpgFrontend_1_1GpgData.html#afca7a03bd71436c8b3c4f6e8c2acd700',1,'GpgFrontend::GpgData']]], - ['operator_20gpgme_5fkey_5ft_1129',['operator gpgme_key_t',['../classGpgFrontend_1_1GpgKey.html#a827962251cf47c41dbea56665ae4207b',1,'GpgFrontend::GpgKey']]], - ['operator_3c_3d_1130',['operator<=',['../classGpgFrontend_1_1GpgKey.html#adc22a349796af0ff5dd4499624b6d03d',1,'GpgFrontend::GpgKey']]], - ['operator_3d_1131',['operator=',['../classGpgFrontend_1_1GpgSignature.html#aca9c1f1a92fddaecc7d601f1f25a90de',1,'GpgFrontend::GpgSignature::operator=()'],['../classGpgFrontend_1_1GpgUID.html#a77ffebc8cf2b8aa7ae43f7f475982306',1,'GpgFrontend::GpgUID::operator=(const GpgUID &)=delete'],['../classGpgFrontend_1_1GpgUID.html#a79928a4179a234d42c2275ff10ddc828',1,'GpgFrontend::GpgUID::operator=(GpgUID &&o) noexcept'],['../classGpgFrontend_1_1GpgTOFUInfo.html#a7607934f767ac1920e6bf6c363c97402',1,'GpgFrontend::GpgTOFUInfo::operator=(const GpgTOFUInfo &)=delete'],['../classGpgFrontend_1_1GpgTOFUInfo.html#aec03f07d2ae5d81887610ca42420462d',1,'GpgFrontend::GpgTOFUInfo::operator=(GpgTOFUInfo &&o) noexcept'],['../classGpgFrontend_1_1GpgSubKey.html#ac4187d50f525188c6aaea29a86f83bba',1,'GpgFrontend::GpgSubKey::operator=(const GpgSubKey &)=delete'],['../classGpgFrontend_1_1GpgSubKey.html#acc9bb0f214c44802ad45d2557afebbae',1,'GpgFrontend::GpgSubKey::operator=(GpgSubKey &&o) noexcept'],['../classGpgFrontend_1_1GpgSignature.html#a0b2f5d9e08d407050a392ba0f7881986',1,'GpgFrontend::GpgSignature::operator=()'],['../classGpgFrontend_1_1GpgKeySignature.html#a927602d294d02adde57193f5094ce689',1,'GpgFrontend::GpgKeySignature::operator=(const GpgKeySignature &)=delete'],['../classGpgFrontend_1_1GpgKeySignature.html#a4ae987707a6579cec3dfe540b3410bc6',1,'GpgFrontend::GpgKeySignature::operator=(GpgKeySignature &&) noexcept'],['../classGpgFrontend_1_1GpgKey.html#a6b243df2320999ebcdaf9645531b925a',1,'GpgFrontend::GpgKey::operator=(const gpgme_key_t &key)=delete'],['../classGpgFrontend_1_1GpgKey.html#ae58bc1fdcefaaf646f6b8740cb69eef6',1,'GpgFrontend::GpgKey::operator=(GpgKey &&k) noexcept'],['../classGpgFrontend_1_1SingletonFunctionObject.html#aabb190a60f7a5d4ded43cae16ab8f59e',1,'GpgFrontend::SingletonFunctionObject::operator=()']]], - ['operator_3d_3d_1132',['operator==',['../classGpgFrontend_1_1GpgKey.html#a4f50b2f13b3a5dc7298ee9665e7a5367',1,'GpgFrontend::GpgKey::operator==()'],['../classGpgFrontend_1_1GpgSubKey.html#a1c88420ec4756f2e5bda1b76ff2f7c2d',1,'GpgFrontend::GpgSubKey::operator==()']]] + ['oncustomcontextmenu_1127',['onCustomContextMenu',['../classGpgFrontend_1_1UI_1_1FilePage.html#aa80dc1b74a0ec65d06e5dffaa21cc785',1,'GpgFrontend::UI::FilePage']]], + ['operator_20gpgme_5fctx_5ft_1128',['operator gpgme_ctx_t',['../classGpgFrontend_1_1GpgContext.html#a5b419175bd9927f3d449637db8ba6524',1,'GpgFrontend::GpgContext']]], + ['operator_20gpgme_5fdata_5ft_1129',['operator gpgme_data_t',['../classGpgFrontend_1_1GpgData.html#afca7a03bd71436c8b3c4f6e8c2acd700',1,'GpgFrontend::GpgData']]], + ['operator_20gpgme_5fkey_5ft_1130',['operator gpgme_key_t',['../classGpgFrontend_1_1GpgKey.html#a827962251cf47c41dbea56665ae4207b',1,'GpgFrontend::GpgKey']]], + ['operator_3c_3d_1131',['operator<=',['../classGpgFrontend_1_1GpgKey.html#adc22a349796af0ff5dd4499624b6d03d',1,'GpgFrontend::GpgKey']]], + ['operator_3d_1132',['operator=',['../classGpgFrontend_1_1GpgSignature.html#aca9c1f1a92fddaecc7d601f1f25a90de',1,'GpgFrontend::GpgSignature::operator=()'],['../classGpgFrontend_1_1GpgUID.html#a77ffebc8cf2b8aa7ae43f7f475982306',1,'GpgFrontend::GpgUID::operator=(const GpgUID &)=delete'],['../classGpgFrontend_1_1GpgUID.html#a79928a4179a234d42c2275ff10ddc828',1,'GpgFrontend::GpgUID::operator=(GpgUID &&o) noexcept'],['../classGpgFrontend_1_1GpgTOFUInfo.html#a7607934f767ac1920e6bf6c363c97402',1,'GpgFrontend::GpgTOFUInfo::operator=(const GpgTOFUInfo &)=delete'],['../classGpgFrontend_1_1GpgTOFUInfo.html#aec03f07d2ae5d81887610ca42420462d',1,'GpgFrontend::GpgTOFUInfo::operator=(GpgTOFUInfo &&o) noexcept'],['../classGpgFrontend_1_1GpgSubKey.html#ac4187d50f525188c6aaea29a86f83bba',1,'GpgFrontend::GpgSubKey::operator=(const GpgSubKey &)=delete'],['../classGpgFrontend_1_1GpgSubKey.html#acc9bb0f214c44802ad45d2557afebbae',1,'GpgFrontend::GpgSubKey::operator=(GpgSubKey &&o) noexcept'],['../classGpgFrontend_1_1GpgSignature.html#a0b2f5d9e08d407050a392ba0f7881986',1,'GpgFrontend::GpgSignature::operator=()'],['../classGpgFrontend_1_1GpgKeySignature.html#a927602d294d02adde57193f5094ce689',1,'GpgFrontend::GpgKeySignature::operator=(const GpgKeySignature &)=delete'],['../classGpgFrontend_1_1GpgKeySignature.html#a4ae987707a6579cec3dfe540b3410bc6',1,'GpgFrontend::GpgKeySignature::operator=(GpgKeySignature &&) noexcept'],['../classGpgFrontend_1_1GpgKey.html#a6b243df2320999ebcdaf9645531b925a',1,'GpgFrontend::GpgKey::operator=(const gpgme_key_t &key)=delete'],['../classGpgFrontend_1_1GpgKey.html#ae58bc1fdcefaaf646f6b8740cb69eef6',1,'GpgFrontend::GpgKey::operator=(GpgKey &&k) noexcept'],['../classGpgFrontend_1_1SingletonFunctionObject.html#aabb190a60f7a5d4ded43cae16ab8f59e',1,'GpgFrontend::SingletonFunctionObject::operator=()']]], + ['operator_3d_3d_1133',['operator==',['../classGpgFrontend_1_1GpgKey.html#a4f50b2f13b3a5dc7298ee9665e7a5367',1,'GpgFrontend::GpgKey::operator==()'],['../classGpgFrontend_1_1GpgSubKey.html#a1c88420ec4756f2e5bda1b76ff2f7c2d',1,'GpgFrontend::GpgSubKey::operator==()']]] ]; diff --git a/docs/html/search/functions_f.js b/docs/html/search/functions_f.js index 5310950c..c1270a0e 100644 --- a/docs/html/search/functions_f.js +++ b/docs/html/search/functions_f.js @@ -1,14 +1,14 @@ var searchData= [ - ['passphrasegenerator_1133',['PassphraseGenerator',['../classGpgFrontend_1_1PassphraseGenerator.html#ac82ef545a54468ad02253a61cc62e3cf',1,'GpgFrontend::PassphraseGenerator']]], - ['plaintexteditorpage_1134',['PlainTextEditorPage',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a8759224e57d4c322933ed3df6d96e5f1',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['popobject_1135',['PopObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a5ef5ddec0b82017cc4ad7f34b9b13f64',1,'GpgFrontend::Thread::Task::DataObject']]], - ['posttask_1136',['PostTask',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a4fae01eb0a5b296b8c4c6bf8408f1c6b',1,'GpgFrontend::Thread::TaskRunner']]], - ['print_5frecipient_1137',['print_recipient',['../classGpgFrontend_1_1GpgDecryptResultAnalyse.html#a1aac1c1f77a12069479a47f54a934c44',1,'GpgFrontend::GpgDecryptResultAnalyse']]], - ['print_5fsigner_1138',['print_signer',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a57bf4a26466e07f7f0ecc19de3782104',1,'GpgFrontend::GpgVerifyResultAnalyse']]], - ['process_5fdirectory_5finto_5ftarball_1139',['process_directory_into_tarball',['../namespaceGpgFrontend_1_1UI.html#a5470872566b41ce628f64039f34b964a',1,'GpgFrontend::UI']]], - ['process_5foperation_1140',['process_operation',['../namespaceGpgFrontend_1_1UI.html#a3c971eeb5c620d08d6d92f0752ceaf9f',1,'GpgFrontend::UI']]], - ['process_5fresult_5fanalyse_1141',['process_result_analyse',['../namespaceGpgFrontend_1_1UI.html#abd3c7c636954390d52150b4e6d38e1b3',1,'GpgFrontend::UI::process_result_analyse(TextEdit *edit, InfoBoardWidget *info_board, const GpgResultAnalyse &result_analyse)'],['../namespaceGpgFrontend_1_1UI.html#a60b5887adabc74015700795dc3c07ae9',1,'GpgFrontend::UI::process_result_analyse(TextEdit *edit, InfoBoardWidget *info_board, const GpgResultAnalyse &result_analyse_a, const GpgResultAnalyse &result_analyse_b)']]], - ['process_5ftarball_5finto_5fdirectory_1142',['process_tarball_into_directory',['../namespaceGpgFrontend_1_1UI.html#a57d0a4dba23cd3d9b42222d40c710dc1',1,'GpgFrontend::UI']]], - ['proxyconnectiontestthread_1143',['ProxyConnectionTestThread',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.html#a538a78e0149906bf19e850ba71c00ada',1,'GpgFrontend::UI::ProxyConnectionTestThread']]] + ['passphrasegenerator_1134',['PassphraseGenerator',['../classGpgFrontend_1_1PassphraseGenerator.html#ac82ef545a54468ad02253a61cc62e3cf',1,'GpgFrontend::PassphraseGenerator']]], + ['plaintexteditorpage_1135',['PlainTextEditorPage',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a8759224e57d4c322933ed3df6d96e5f1',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['popobject_1136',['PopObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a5ef5ddec0b82017cc4ad7f34b9b13f64',1,'GpgFrontend::Thread::Task::DataObject']]], + ['posttask_1137',['PostTask',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a4fae01eb0a5b296b8c4c6bf8408f1c6b',1,'GpgFrontend::Thread::TaskRunner']]], + ['print_5frecipient_1138',['print_recipient',['../classGpgFrontend_1_1GpgDecryptResultAnalyse.html#a1aac1c1f77a12069479a47f54a934c44',1,'GpgFrontend::GpgDecryptResultAnalyse']]], + ['print_5fsigner_1139',['print_signer',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a57bf4a26466e07f7f0ecc19de3782104',1,'GpgFrontend::GpgVerifyResultAnalyse']]], + ['process_5fdirectory_5finto_5ftarball_1140',['process_directory_into_tarball',['../namespaceGpgFrontend_1_1UI.html#a5470872566b41ce628f64039f34b964a',1,'GpgFrontend::UI']]], + ['process_5foperation_1141',['process_operation',['../namespaceGpgFrontend_1_1UI.html#a3c971eeb5c620d08d6d92f0752ceaf9f',1,'GpgFrontend::UI']]], + ['process_5fresult_5fanalyse_1142',['process_result_analyse',['../namespaceGpgFrontend_1_1UI.html#abd3c7c636954390d52150b4e6d38e1b3',1,'GpgFrontend::UI::process_result_analyse(TextEdit *edit, InfoBoardWidget *info_board, const GpgResultAnalyse &result_analyse)'],['../namespaceGpgFrontend_1_1UI.html#a60b5887adabc74015700795dc3c07ae9',1,'GpgFrontend::UI::process_result_analyse(TextEdit *edit, InfoBoardWidget *info_board, const GpgResultAnalyse &result_analyse_a, const GpgResultAnalyse &result_analyse_b)']]], + ['process_5ftarball_5finto_5fdirectory_1143',['process_tarball_into_directory',['../namespaceGpgFrontend_1_1UI.html#a57d0a4dba23cd3d9b42222d40c710dc1',1,'GpgFrontend::UI']]], + ['proxyconnectiontestthread_1144',['ProxyConnectionTestThread',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.html#a538a78e0149906bf19e850ba71c00ada',1,'GpgFrontend::UI::ProxyConnectionTestThread']]] ]; diff --git a/docs/html/search/namespaces_0.js b/docs/html/search/namespaces_0.js index 579e4bb8..e8cb9777 100644 --- a/docs/html/search/namespaces_0.js +++ b/docs/html/search/namespaces_0.js @@ -1,7 +1,7 @@ var searchData= [ - ['gpgfrontend_823',['GpgFrontend',['../namespaceGpgFrontend.html',1,'']]], - ['rawapi_824',['RawAPI',['../namespaceGpgFrontend_1_1RawAPI.html',1,'GpgFrontend']]], - ['thread_825',['Thread',['../namespaceGpgFrontend_1_1Thread.html',1,'GpgFrontend']]], - ['ui_826',['UI',['../namespaceGpgFrontend_1_1UI.html',1,'GpgFrontend']]] + ['gpgfrontend_824',['GpgFrontend',['../namespaceGpgFrontend.html',1,'']]], + ['rawapi_825',['RawAPI',['../namespaceGpgFrontend_1_1RawAPI.html',1,'GpgFrontend']]], + ['thread_826',['Thread',['../namespaceGpgFrontend_1_1Thread.html',1,'GpgFrontend']]], + ['ui_827',['UI',['../namespaceGpgFrontend_1_1UI.html',1,'GpgFrontend']]] ]; diff --git a/docs/html/search/pages_0.js b/docs/html/search/pages_0.js index 123eb509..1d45f594 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_1471',['GpgFrontend Develop Document Main Page',['../index.html',1,'']]] + ['gpgfrontend_20develop_20document_20main_20page_1473',['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 e1013b7d..3c14d008 100644 --- a/docs/html/search/variables_0.js +++ b/docs/html/search/variables_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['_5fdefault_5fchannel_1348',['_default_channel',['../classGpgFrontend_1_1ChannelObject.html#a66295bb572e98fc2fad3afce763ac311',1,'GpgFrontend::ChannelObject']]] + ['_5fdefault_5fchannel_1350',['_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 af01a458..0d0e7c4f 100644 --- a/docs/html/search/variables_1.js +++ b/docs/html/search/variables_1.js @@ -1,19 +1,19 @@ var searchData= [ - ['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']]] + ['about_5fact_5f_1351',['about_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9dd292f55fba1fe62c83508fef7e43a1',1,'GpgFrontend::UI::MainWindow']]], + ['add_5fpgp_5fheader_5fact_5f_1352',['add_pgp_header_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a95b2c86afbefe47e79af87e56032e306',1,'GpgFrontend::UI::MainWindow']]], + ['additional_5fuid_5fbox_5f_1353',['additional_uid_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a265ef140feec330e7341c1369c0aefab',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['algorithm_5fvar_5flabel_5f_1354',['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_1355',['app_configure_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a4d04bb665571921421b853f18b8b300a',1,'GpgFrontend::GlobalSettingStation']]], + ['app_5fdata_5fobjs_5fpath_5f_1356',['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_1357',['app_data_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a58fff8a42f98ad7989bffb8322344cd6',1,'GpgFrontend::GlobalSettingStation']]], + ['app_5flocale_5fpath_5f_1358',['app_locale_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a25c1b45a2ccdc21dd2dcba58866169fb',1,'GpgFrontend::GlobalSettingStation']]], + ['app_5flog_5fpath_5f_1359',['app_log_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a6459653a71cc8285fa554943c7fb3ca7',1,'GpgFrontend::GlobalSettingStation']]], + ['app_5fpath_5f_1360',['app_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a678f8ba120f9ad050d0adfec4476d7ac',1,'GpgFrontend::GlobalSettingStation']]], + ['app_5fresource_5fpath_5f_1361',['app_resource_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a1d94a126c78ac01ec01f10d2ce575388',1,'GpgFrontend::GlobalSettingStation']]], + ['app_5fsecure_5fkey_5fpath_5f_1362',['app_secure_key_path_',['../classGpgFrontend_1_1DataObjectOperator.html#a56c0c031cd327207260c73d1885dbdca',1,'GpgFrontend::DataObjectOperator']]], + ['app_5fsecure_5fpath_5f_1363',['app_secure_path_',['../classGpgFrontend_1_1DataObjectOperator.html#a6d38d25c91c33c48d083ec4de051108a',1,'GpgFrontend::DataObjectOperator']]], + ['append_5fselected_5fkeys_5fact_5f_1364',['append_selected_keys_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab67486a71126073e7c39ca12603198f4',1,'GpgFrontend::UI::MainWindow']]], + ['apppath_1365',['AppPath',['../classGpgFrontend_1_1GpgInfo.html#a2416ae0ab9bedc61782d16075750a9c0',1,'GpgFrontend::GpgInfo']]], + ['attachment_5fdock_5f_1366',['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 7fd65f84..9de53575 100644 --- a/docs/html/search/variables_10.js +++ b/docs/html/search/variables_10.js @@ -1,5 +1,5 @@ var searchData= [ - ['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']]] + ['quit_5fact_5f_1445',['quit_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#abe0683e48485f9fcff622d9519c37ed9',1,'GpgFrontend::UI::MainWindow']]], + ['quote_5fact_5f_1446',['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 ea7325de..b8c730a3 100644 --- a/docs/html/search/variables_11.js +++ b/docs/html/search/variables_11.js @@ -1,5 +1,5 @@ var searchData= [ - ['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']]] + ['rd_5f_1447',['rd_',['../classGpgFrontend_1_1DataObjectOperator.html#a24c9cdbe9256e332ac93d6dc28c76b90',1,'GpgFrontend::DataObjectOperator::rd_()'],['../classGpgFrontend_1_1PassphraseGenerator.html#a12ee6f9b7fff4883074321c7e0de3dfa',1,'GpgFrontend::PassphraseGenerator::rd_()']]], + ['redo_5fact_5f_1448',['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 50249b11..9493a52b 100644 --- a/docs/html/search/variables_12.js +++ b/docs/html/search/variables_12.js @@ -1,15 +1,15 @@ var searchData= [ - ['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']]] + ['save_5fact_5f_1449',['save_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab0f148559d830fcf10b5a1937b0a47dc',1,'GpgFrontend::UI::MainWindow']]], + ['save_5fas_5fact_5f_1450',['save_as_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a22256763ef83ed35a81e446b553d8112',1,'GpgFrontend::UI::MainWindow']]], + ['select_5fall_5fact_5f_1451',['select_all_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ac6a42e6e3af7e76f0bd2ecc62c9520cc',1,'GpgFrontend::UI::MainWindow']]], + ['show_5fkey_5fdetails_5fact_5f_1452',['show_key_details_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#acd41722ceedd20973b7d83852fab407b',1,'GpgFrontend::UI::MainWindow']]], + ['sign_5fact_5f_1453',['sign_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0cded37ef6e07856bbe439b0e90db839',1,'GpgFrontend::UI::MainWindow']]], + ['sign_5fmarked_5f_1454',['sign_marked_',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a4f94e9ef7889a169bda5a47b7f657358',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['special_5fedit_5ftool_5fbar_5f_1455',['special_edit_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af2b3e3a0e9894633e1839df289f5ffe0',1,'GpgFrontend::UI::MainWindow']]], + ['start_5fwizard_5fact_5f_1456',['start_wizard_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab0019ca316b971c594c2f20f418256a6',1,'GpgFrontend::UI::MainWindow']]], + ['steganography_5fmenu_5f_1457',['steganography_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af763a506aed7d0fb2125d1859583b853',1,'GpgFrontend::UI::MainWindow']]], + ['storages_5fmutex_5f_1458',['storages_mutex_',['../classGpgFrontend_1_1SingletonStorageCollection.html#ab648cb257beb2475eb5fca6453c331f9',1,'GpgFrontend::SingletonStorageCollection']]], + ['switch_5ftab_5fdown_5fact_5f_1459',['switch_tab_down_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a88af746cd550792ab6095d2ebbd29b41',1,'GpgFrontend::UI::MainWindow']]], + ['switch_5ftab_5fup_5fact_5f_1460',['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 1ebf28d7..afb56c31 100644 --- a/docs/html/search/variables_13.js +++ b/docs/html/search/variables_13.js @@ -1,6 +1,6 @@ var searchData= [ - ['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']]] + ['tasks_1461',['tasks',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a774775e9a91d33072b27dcf78cead6e2',1,'GpgFrontend::Thread::TaskRunner']]], + ['tasks_5fmutex_5f_1462',['tasks_mutex_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a5e72f1ce00d41c225a4304f1ed20b3f1',1,'GpgFrontend::Thread::TaskRunner']]], + ['translate_5fact_5f_1463',['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 46aed575..4e48ebc9 100644 --- a/docs/html/search/variables_14.js +++ b/docs/html/search/variables_14.js @@ -1,7 +1,7 @@ var searchData= [ - ['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']]] + ['ui_5fcfg_5f_1464',['ui_cfg_',['../classGpgFrontend_1_1GlobalSettingStation.html#a1818e08063d6a886975f77354fc5d85c',1,'GpgFrontend::GlobalSettingStation']]], + ['ui_5fconfig_5fdir_5fpath_5f_1465',['ui_config_dir_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#ab618fef68cfd4ff6e42d4a4aa8ea94bb',1,'GpgFrontend::GlobalSettingStation']]], + ['ui_5fconfig_5fpath_5f_1466',['ui_config_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#afa99ddc25c0d5fd59a4c5f0e61d13830',1,'GpgFrontend::GlobalSettingStation']]], + ['undo_5fact_5f_1467',['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 6d44a141..78d90220 100644 --- a/docs/html/search/variables_15.js +++ b/docs/html/search/variables_15.js @@ -1,5 +1,5 @@ var searchData= [ - ['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']]] + ['verify_5fact_5f_1468',['verify_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a14bb12fa25620e1a93bd23c9f7c84081',1,'GpgFrontend::UI::MainWindow']]], + ['view_5fmenu_5f_1469',['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 bcf3d943..5ae79392 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_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']]] + ['zoom_5fin_5fact_5f_1470',['zoom_in_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3cb7daedbef61c1be27635c9ebc9e689',1,'GpgFrontend::UI::MainWindow']]], + ['zoom_5fout_5fact_5f_1471',['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 a879c957..2cbd711e 100644 --- a/docs/html/search/variables_2.js +++ b/docs/html/search/variables_2.js @@ -1,6 +1,6 @@ var searchData= [ - ['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_()']]] + ['browser_5f_1367',['browser_',['../classGpgFrontend_1_1UI_1_1HelpPage.html#af4f61342fae06a49c95d8d20ca51ca2c',1,'GpgFrontend::UI::HelpPage']]], + ['browser_5fact_5f_1368',['browser_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3c0a5305cf55fe5bee2f18298f983cad',1,'GpgFrontend::UI::MainWindow']]], + ['button_5fbox_5f_1369',['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 2e28491e..7d69e308 100644 --- a/docs/html/search/variables_3.js +++ b/docs/html/search/variables_3.js @@ -1,20 +1,20 @@ var searchData= [ - ['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']]] + ['channel_5f_1370',['channel_',['../classGpgFrontend_1_1ChannelObject.html#aee5f8a5575adbdf522da4dd195c091ee',1,'GpgFrontend::ChannelObject']]], + ['check_5fupdate_5fact_5f_1371',['check_update_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a672f4ef07be6ad645613ecd49399700d',1,'GpgFrontend::UI::MainWindow']]], + ['clean_5fdouble_5fline_5fbreaks_5fact_5f_1372',['clean_double_line_breaks_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0cb094e0409337cfd7dba1bb510ea96e',1,'GpgFrontend::UI::MainWindow']]], + ['close_5ftab_5fact_5f_1373',['close_tab_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a09671c3aa26a750cfd6be6c092de8715',1,'GpgFrontend::UI::MainWindow']]], + ['comment_5fedit_5f_1374',['comment_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3008e2a9879a8e122e422f67cf0018f8',1,'GpgFrontend::UI::KeyGenDialog']]], + ['comment_5fvar_5flabel_5f_1375',['comment_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a83b1290251a204def52677ae000a17ec',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['copy_5fact_5f_1376',['copy_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a71402943f4ed19e3aba0556b23eaa8f8',1,'GpgFrontend::UI::MainWindow']]], + ['copy_5fmail_5faddress_5fto_5fclipboard_5fact_5f_1377',['copy_mail_address_to_clipboard_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af77f66b6b869f6ddb3d2caa3bc40bb09',1,'GpgFrontend::UI::MainWindow']]], + ['count_5fpage_5f_1378',['count_page_',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a747d3740a88295e6c9565788d4cf56ec',1,'GpgFrontend::UI::TextEdit']]], + ['created_5fvar_5flabel_5f_1379',['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_1380',['crypt_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1ef17c566a764f707f43593a1f6b3c60',1,'GpgFrontend::UI::MainWindow']]], + ['crypt_5ftool_5fbar_5f_1381',['crypt_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aac320aef3b49cd068544aac54b927f7a',1,'GpgFrontend::UI::MainWindow']]], + ['ctx_5f_1382',['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_1383',['ctx_mutex_',['../classGpgFrontend_1_1GpgKeyGetter.html#a81941e1f562dc22977a71d00dd10956a',1,'GpgFrontend::GpgKeyGetter']]], + ['current_5freply_5f_1384',['current_reply_',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9679bc6bcdf2e64ec82f6119620b6f2e',1,'GpgFrontend::UI::VersionCheckTask']]], + ['cut_5fact_5f_1385',['cut_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2c2f6c021219564846f1624f6bb5b9a2',1,'GpgFrontend::UI::MainWindow']]], + ['cut_5fpgp_5fheader_5fact_5f_1386',['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 e4bdfa18..d8dd9f48 100644 --- a/docs/html/search/variables_4.js +++ b/docs/html/search/variables_4.js @@ -1,6 +1,6 @@ var searchData= [ - ['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']]] + ['date_5fedit_5f_1387',['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_1388',['decrypt_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa92246123272e3e1085f22612aedf48f',1,'GpgFrontend::UI::MainWindow']]], + ['decrypt_5fverify_5fact_5f_1389',['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 6ee6c59f..11e10921 100644 --- a/docs/html/search/variables_5.js +++ b/docs/html/search/variables_5.js @@ -1,14 +1,14 @@ var searchData= [ - ['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_()']]] + ['edit_5f_1390',['edit_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7aa41c90105fd4c2931895d8dfb5ec45',1,'GpgFrontend::UI::MainWindow']]], + ['edit_5fmenu_5f_1391',['edit_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a6d681a306c137dc107088d60b09a925f',1,'GpgFrontend::UI::MainWindow']]], + ['edit_5ftool_5fbar_5f_1392',['edit_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab531823acdbfb117c82a9906ce2107b9',1,'GpgFrontend::UI::MainWindow']]], + ['email_5fedit_5f_1393',['email_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3453d1a8a4c0411472b2779d018abdc3',1,'GpgFrontend::UI::KeyGenDialog']]], + ['email_5fvar_5flabel_5f_1394',['email_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a8c71b37aa040da50cb0105489a42e60d',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['encrypt_5fact_5f_1395',['encrypt_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad6a2cecb2846b324604c4abd1fb7d11a',1,'GpgFrontend::UI::MainWindow']]], + ['encrypt_5fsign_5fact_5f_1396',['encrypt_sign_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2417c807356e3b876ecb2f572568670b',1,'GpgFrontend::UI::MainWindow']]], + ['error_5flabel_5f_1397',['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_1398',['error_messages_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a03a8e1c8f2c1887732d36a346185bb40',1,'GpgFrontend::UI::KeyGenDialog']]], + ['expire_5fcheck_5fbox_5f_1399',['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_1400',['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 fabd77e1..c9a4ae0e 100644 --- a/docs/html/search/variables_6.js +++ b/docs/html/search/variables_6.js @@ -1,11 +1,11 @@ var searchData= [ - ['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']]] + ['file_5fmenu_5f_1401',['file_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af08c62c38a750382ee218191c8e13f4f',1,'GpgFrontend::UI::MainWindow']]], + ['file_5ftool_5fbar_5f_1402',['file_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1e0d23d361b8e339ca85410db2bdfb64',1,'GpgFrontend::UI::MainWindow']]], + ['find_5fact_5f_1403',['find_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a6154f5dbdc9cebc0644e5d1e25895df8',1,'GpgFrontend::UI::MainWindow']]], + ['find_5fedit_5f_1404',['find_edit_',['../classGpgFrontend_1_1UI_1_1FindWidget.html#af420832720942dd1e7cb3f3841c7cbfe',1,'GpgFrontend::UI::FindWidget']]], + ['fingerprint_5fbox_5f_1405',['fingerprint_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#ada1c21cf59f1f19dfd4ffe0391bc1594',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['fingerprint_5fvar_5flabel_5f_1406',['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_1407',['fpr_',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#a36bf3306b8564b49da04eee1dc653675',1,'GpgFrontend::UI::VerifyKeyDetailBox']]], + ['full_5ffile_5fpath_5f_1408',['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 316b39c7..1af7a908 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_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']]] + ['global_5fsetting_5fstation_5f_1409',['global_setting_station_',['../classGpgFrontend_1_1DataObjectOperator.html#a3c195f8e4c30d95be14a6d43e9282601',1,'GpgFrontend::DataObjectOperator']]], + ['gnupg_5fact_5f_1410',['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 52ebf4bc..823ed058 100644 --- a/docs/html/search/variables_8.js +++ b/docs/html/search/variables_8.js @@ -1,5 +1,5 @@ var searchData= [ - ['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']]] + ['hash_5fkey_5f_1411',['hash_key_',['../classGpgFrontend_1_1DataObjectOperator.html#ae409c3562c3e08931daa17f5790c508b',1,'GpgFrontend::DataObjectOperator']]], + ['help_5fmenu_5f_1412',['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 2137d989..43fb1f52 100644 --- a/docs/html/search/variables_9.js +++ b/docs/html/search/variables_9.js @@ -1,8 +1,8 @@ var searchData= [ - ['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']]] + ['import_5fbutton_5f_1413',['import_button_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8538940a9a5dea7ddf53c89acdeb83be',1,'GpgFrontend::UI::MainWindow']]], + ['import_5fkey_5ffrom_5fedit_5fact_5f_1414',['import_key_from_edit_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a01b85fb17c373d8f97ce439027c6d04e',1,'GpgFrontend::UI::MainWindow']]], + ['import_5fkey_5fmenu_5f_1415',['import_key_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8d6fe32ab64797459443ed285d769745',1,'GpgFrontend::UI::MainWindow']]], + ['instances_5fmap_5f_1416',['instances_map_',['../classGpgFrontend_1_1SingletonStorage.html#a6181f2b5af39c6b86de89e1ba9eeff1c',1,'GpgFrontend::SingletonStorage']]], + ['instances_5fmutex_5f_1417',['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 70b16533..202f79e5 100644 --- a/docs/html/search/variables_a.js +++ b/docs/html/search/variables_a.js @@ -1,16 +1,16 @@ var searchData= [ - ['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']]] + ['key_5fbox_5f_1418',['key_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aae9905764b5551208574a932fdfba29c',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['key_5fid_5fvar_5flabel_1419',['key_id_var_label',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a65176245d280ae0734ef7b5b3f1c4cc4',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['key_5fid_5fvar_5flabel_5f_1420',['key_id_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a2f634f4c83ab5dd2d088eb07e0d3b862',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], + ['key_5flist_5fdock_5f_1421',['key_list_dock_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adaa66d9cdc51c946efc99bb94deda31c',1,'GpgFrontend::UI::MainWindow']]], + ['key_5fmenu_5f_1422',['key_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a16bbfd12cd3a6f0df9e2c32cf7999e57',1,'GpgFrontend::UI::MainWindow']]], + ['key_5fsize_5fspin_5fbox_5f_1423',['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_1424',['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_1425',['key_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a38f243880cfb9276545b08f0730811e7',1,'GpgFrontend::UI::MainWindow']]], + ['key_5ftype_5fcombo_5fbox_5f_1426',['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_1427',['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_1428',['key_usage_group_box_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7b1b9cb46c0547c1e561e56d55616cf1',1,'GpgFrontend::UI::KeyGenDialog']]], + ['keys_5fcache_5f_1429',['keys_cache_',['../classGpgFrontend_1_1GpgKeyGetter.html#a9567d5e08ae73c5bafcd1dc378fed066',1,'GpgFrontend::GpgKeyGetter']]], + ['keys_5fcache_5fmutex_5f_1430',['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 e80bc576..f23ac39f 100644 --- a/docs/html/search/variables_b.js +++ b/docs/html/search/variables_b.js @@ -1,4 +1,4 @@ var searchData= [ - ['latest_5freply_5f_1429',['latest_reply_',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#aed545ffa8128acb16bb28c067e032ec9',1,'GpgFrontend::UI::VersionCheckTask']]] + ['latest_5freply_5f_1431',['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 ce65a246..3304e8e2 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_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_()']]] + ['m_5ftext_5fpage_5f_1432',['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_1433',['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 d4331577..0fc4072c 100644 --- a/docs/html/search/variables_d.js +++ b/docs/html/search/variables_d.js @@ -1,6 +1,6 @@ var searchData= [ - ['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']]] + ['name_5fedit_5f_1434',['name_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7ed095cce29c658741ae0520049010c0',1,'GpgFrontend::UI::KeyGenDialog']]], + ['name_5fvar_5flabel_5f_1435',['name_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a9d57be18c2091827c04ec8809f4154be',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['new_5ftab_5fact_5f_1436',['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 1d6d4457..07825198 100644 --- a/docs/html/search/variables_e.js +++ b/docs/html/search/variables_e.js @@ -1,7 +1,7 @@ var searchData= [ - ['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']]] + ['open_5fact_5f_1437',['open_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a4a1edafb8c67b181ff3c29394147571d',1,'GpgFrontend::UI::MainWindow']]], + ['open_5fkey_5fmanagement_5fact_5f_1438',['open_key_management_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad7b22560df7e3bb38b660d3ffc84dc83',1,'GpgFrontend::UI::MainWindow']]], + ['open_5fsettings_5fact_5f_1439',['open_settings_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#afab1e0363a4b97ff68228cd4bd7cbc62',1,'GpgFrontend::UI::MainWindow']]], + ['owner_5fbox_5f_1440',['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 20aa4847..35b50ae1 100644 --- a/docs/html/search/variables_f.js +++ b/docs/html/search/variables_f.js @@ -1,7 +1,7 @@ var searchData= [ - ['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']]] + ['paste_5fact_5f_1441',['paste_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a62ea61c38e758022ba655c6faf54322b',1,'GpgFrontend::UI::MainWindow']]], + ['pending_5ftasks_5f_1442',['pending_tasks_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a6d92421bbbfcf3136335a5173d1b2a22',1,'GpgFrontend::Thread::TaskRunner']]], + ['pgp_5fcrypt_5fbegin_1443',['PGP_CRYPT_BEGIN',['../classGpgFrontend_1_1GpgConstants.html#a237006d6db30c7e3f8de171210eb35f2',1,'GpgFrontend::GpgConstants']]], + ['print_5fact_5f_1444',['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 6bf51450..96d1481e 100644 --- a/docs/html/structGpgFrontend_1_1UI_1_1KeyTable.html +++ b/docs/html/structGpgFrontend_1_1UI_1_1KeyTable.html @@ -95,14 +95,15 @@ 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 bfd2ee86..b4a66dfc 100644 --- a/docs/html/structGpgFrontend_1_1UI_1_1KeyTable__coll__graph.map +++ b/docs/html/structGpgFrontend_1_1UI_1_1KeyTable__coll__graph.map @@ -1,10 +1,11 @@ - + - - - - - - + + + + + + + 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 a1d34437..e3ae2930 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 @@ -05c74210e4e8f3f71411695bbbf18258 \ No newline at end of file +976517defa87e72e9ba0252f58801e4a \ 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 7fb512d9..959c9efb 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 616e3139..66d3e491 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 cfb45a5b..7fb0cd9d 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 373a232f..18d112ec 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 4e0254e6..4d65f210 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 97e77fef..392be548 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 eaa7cda5..3c7f0fe8 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 70315b55..73cbb3ba 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 27b8a3b5..55ff0b87 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 f6ae2808..545c9105 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 23d6bceb..aaeb84dd 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_a378ea10385ab401bea45a7edb3df122d}{Set\+Algo}} (const std\+::string \&m\+\_\+algo) +void \mbox{\hyperlink{classGpgFrontend_1_1GenKeyInfo_adcd9c4f3e75f989810988e0bc81d401f}{Set\+Algo}} (const Gpg\+Frontend\+::\+Gen\+Key\+Info\+::\+Key\+Gen\+Algo \&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,14 +94,20 @@ int \mbox{\hyperlink{classGpgFrontend_1_1GenKeyInfo_ac211a7a615805ae97ff284b46ab \doxysubsection*{Static Public Member Functions} \begin{DoxyCompactItemize} \item -static const std\+::vector$<$ std\+::string $>$ \& \mbox{\hyperlink{classGpgFrontend_1_1GenKeyInfo_a185c7be801854f81879351a6c4dd9071}{Get\+Supported\+Key\+Algo}} () +static const std\+::vector$<$ Key\+Gen\+Algo $>$ \& \mbox{\hyperlink{classGpgFrontend_1_1GenKeyInfo_ac0dbb2d89b1e5f9b272679ba3f24314e}{Get\+Supported\+Key\+Algo}} () \begin{DoxyCompactList}\small\item\em Get the Supported Key Algo object. \end{DoxyCompactList}\item -static const std\+::vector$<$ std\+::string $>$ \& \mbox{\hyperlink{classGpgFrontend_1_1GenKeyInfo_a7855d9fe9b6872ff08a60fe21640d07f}{Get\+Supported\+Subkey\+Algo}} () +static const std\+::vector$<$ Key\+Gen\+Algo $>$ \& \mbox{\hyperlink{classGpgFrontend_1_1GenKeyInfo_a168d6fe5252812f5984ba6d8046c7741}{Get\+Supported\+Subkey\+Algo}} () \begin{DoxyCompactList}\small\item\em Get the Supported Subkey Algo object. \end{DoxyCompactList}\item -static const std\+::vector$<$ std\+::string $>$ \& \mbox{\hyperlink{classGpgFrontend_1_1GenKeyInfo_a8b054a66cb0678af6c42090eea1518e4}{Get\+Supported\+Key\+Algo\+Standalone}} () +static const std\+::vector$<$ Key\+Gen\+Algo $>$ \& \mbox{\hyperlink{classGpgFrontend_1_1GenKeyInfo_afb8315b6612c64b3921b72df98ebcc74}{Get\+Supported\+Key\+Algo\+Standalone}} () \begin{DoxyCompactList}\small\item\em Get the Supported Key Algo Standalone object. \end{DoxyCompactList}\item -static const std\+::vector$<$ std\+::string $>$ \& \mbox{\hyperlink{classGpgFrontend_1_1GenKeyInfo_a310fd0cdac03d0b0a7fde006105866d6}{Get\+Supported\+Subkey\+Algo\+Standalone}} () +static const std\+::vector$<$ Key\+Gen\+Algo $>$ \& \mbox{\hyperlink{classGpgFrontend_1_1GenKeyInfo_a6819b0ca3ef7712b85ae320030cde023}{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 @@ -201,7 +207,7 @@ Construct a new Gen Key Info object. \end{DoxyParams} -References Set\+Algo(). +References Get\+Supported\+Key\+Algo(), and Set\+Algo(). @@ -349,11 +355,11 @@ Get the Suggest Min Key Size object. \begin{DoxyReturn}{Returns} int \end{DoxyReturn} -\mbox{\Hypertarget{classGpgFrontend_1_1GenKeyInfo_a185c7be801854f81879351a6c4dd9071}\label{classGpgFrontend_1_1GenKeyInfo_a185c7be801854f81879351a6c4dd9071}} +\mbox{\Hypertarget{classGpgFrontend_1_1GenKeyInfo_ac0dbb2d89b1e5f9b272679ba3f24314e}\label{classGpgFrontend_1_1GenKeyInfo_ac0dbb2d89b1e5f9b272679ba3f24314e}} \index{GpgFrontend::GenKeyInfo@{GpgFrontend::GenKeyInfo}!GetSupportedKeyAlgo@{GetSupportedKeyAlgo}} \index{GetSupportedKeyAlgo@{GetSupportedKeyAlgo}!GpgFrontend::GenKeyInfo@{GpgFrontend::GenKeyInfo}} \doxysubsubsection{\texorpdfstring{GetSupportedKeyAlgo()}{GetSupportedKeyAlgo()}} -{\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]}} +{\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]}} @@ -364,13 +370,13 @@ const std\+::vector$<$std\+::string$>$\& \end{DoxyReturn} -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(). +Referenced by Gpg\+Frontend\+::\+UI\+::\+Key\+Gen\+Dialog\+::create\+\_\+basic\+\_\+info\+\_\+group\+\_\+box(), Gen\+Key\+Info(), and Set\+Algo(). -\mbox{\Hypertarget{classGpgFrontend_1_1GenKeyInfo_a8b054a66cb0678af6c42090eea1518e4}\label{classGpgFrontend_1_1GenKeyInfo_a8b054a66cb0678af6c42090eea1518e4}} +\mbox{\Hypertarget{classGpgFrontend_1_1GenKeyInfo_afb8315b6612c64b3921b72df98ebcc74}\label{classGpgFrontend_1_1GenKeyInfo_afb8315b6612c64b3921b72df98ebcc74}} \index{GpgFrontend::GenKeyInfo@{GpgFrontend::GenKeyInfo}!GetSupportedKeyAlgoStandalone@{GetSupportedKeyAlgoStandalone}} \index{GetSupportedKeyAlgoStandalone@{GetSupportedKeyAlgoStandalone}!GpgFrontend::GenKeyInfo@{GpgFrontend::GenKeyInfo}} \doxysubsubsection{\texorpdfstring{GetSupportedKeyAlgoStandalone()}{GetSupportedKeyAlgoStandalone()}} -{\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]}} +{\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]}} @@ -383,11 +389,11 @@ const std\+::vector$<$std\+::string$>$\& Referenced by Set\+Algo(). -\mbox{\Hypertarget{classGpgFrontend_1_1GenKeyInfo_a7855d9fe9b6872ff08a60fe21640d07f}\label{classGpgFrontend_1_1GenKeyInfo_a7855d9fe9b6872ff08a60fe21640d07f}} +\mbox{\Hypertarget{classGpgFrontend_1_1GenKeyInfo_a168d6fe5252812f5984ba6d8046c7741}\label{classGpgFrontend_1_1GenKeyInfo_a168d6fe5252812f5984ba6d8046c7741}} \index{GpgFrontend::GenKeyInfo@{GpgFrontend::GenKeyInfo}!GetSupportedSubkeyAlgo@{GetSupportedSubkeyAlgo}} \index{GetSupportedSubkeyAlgo@{GetSupportedSubkeyAlgo}!GpgFrontend::GenKeyInfo@{GpgFrontend::GenKeyInfo}} \doxysubsubsection{\texorpdfstring{GetSupportedSubkeyAlgo()}{GetSupportedSubkeyAlgo()}} -{\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]}} +{\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]}} @@ -398,13 +404,13 @@ const std\+::vector$<$std\+::string$>$\& \end{DoxyReturn} -Referenced by Set\+Algo(). +Referenced by Gpg\+Frontend\+::\+UI\+::\+Subkey\+Generate\+Dialog\+::create\+\_\+basic\+\_\+info\+\_\+group\+\_\+box(), and Set\+Algo(). -\mbox{\Hypertarget{classGpgFrontend_1_1GenKeyInfo_a310fd0cdac03d0b0a7fde006105866d6}\label{classGpgFrontend_1_1GenKeyInfo_a310fd0cdac03d0b0a7fde006105866d6}} +\mbox{\Hypertarget{classGpgFrontend_1_1GenKeyInfo_a6819b0ca3ef7712b85ae320030cde023}\label{classGpgFrontend_1_1GenKeyInfo_a6819b0ca3ef7712b85ae320030cde023}} \index{GpgFrontend::GenKeyInfo@{GpgFrontend::GenKeyInfo}!GetSupportedSubkeyAlgoStandalone@{GetSupportedSubkeyAlgoStandalone}} \index{GetSupportedSubkeyAlgoStandalone@{GetSupportedSubkeyAlgoStandalone}!GpgFrontend::GenKeyInfo@{GpgFrontend::GenKeyInfo}} \doxysubsubsection{\texorpdfstring{GetSupportedSubkeyAlgoStandalone()}{GetSupportedSubkeyAlgoStandalone()}} -{\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]}} +{\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]}} @@ -562,11 +568,11 @@ true false \end{DoxyReturn} -\mbox{\Hypertarget{classGpgFrontend_1_1GenKeyInfo_a378ea10385ab401bea45a7edb3df122d}\label{classGpgFrontend_1_1GenKeyInfo_a378ea10385ab401bea45a7edb3df122d}} +\mbox{\Hypertarget{classGpgFrontend_1_1GenKeyInfo_adcd9c4f3e75f989810988e0bc81d401f}\label{classGpgFrontend_1_1GenKeyInfo_adcd9c4f3e75f989810988e0bc81d401f}} \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 std\+::string \&}]{m\+\_\+algo }\end{DoxyParamCaption})} +{\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})} @@ -595,8 +601,6 @@ 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 a81464a0..574ccb4b 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 595e4ecb..0b2636b2 100644 --- a/docs/latex/classGpgFrontend_1_1GlobalSettingStation.tex +++ b/docs/latex/classGpgFrontend_1_1GlobalSettingStation.tex @@ -79,7 +79,7 @@ std\+::filesystem\+::path \mbox{\hyperlink{classGpgFrontend_1_1GlobalSettingStat std\+::filesystem\+::path \mbox{\hyperlink{classGpgFrontend_1_1GlobalSettingStation_ab618fef68cfd4ff6e42d4a4aa8ea94bb}{ui\+\_\+config\+\_\+dir\+\_\+path\+\_\+}} \begin{DoxyCompactList}\small\item\em Configure File Directory Location. \end{DoxyCompactList}\item std\+::filesystem\+::path \mbox{\hyperlink{classGpgFrontend_1_1GlobalSettingStation_afa99ddc25c0d5fd59a4c5f0e61d13830}{ui\+\_\+config\+\_\+path\+\_\+}} -\begin{DoxyCompactList}\small\item\em \mbox{\hyperlink{namespaceGpgFrontend_1_1UI}{UI}} Configure File Location. \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Main Configure File Location. \end{DoxyCompactList}\item \mbox{\Hypertarget{classGpgFrontend_1_1GlobalSettingStation_a1818e08063d6a886975f77354fc5d85c}\label{classGpgFrontend_1_1GlobalSettingStation_a1818e08063d6a886975f77354fc5d85c}} libconfig\+::\+Config \mbox{\hyperlink{classGpgFrontend_1_1GlobalSettingStation_a1818e08063d6a886975f77354fc5d85c}{ui\+\_\+cfg\+\_\+}} \begin{DoxyCompactList}\small\item\em \mbox{\hyperlink{namespaceGpgFrontend_1_1UI}{UI}} Configure File. \end{DoxyCompactList}\end{DoxyCompactItemize} @@ -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\+::\+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(). +Referenced by Gpg\+Frontend\+::\+UI\+::\+Key\+List\+::drop\+Event(), Gpg\+Frontend\+::\+UI\+::\+General\+Tab\+::\+General\+Tab(), 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(). \mbox{\Hypertarget{classGpgFrontend_1_1GlobalSettingStation_ac061ac8e5308f67ea52b98888bbb2e8d}\label{classGpgFrontend_1_1GlobalSettingStation_ac061ac8e5308f67ea52b98888bbb2e8d}} \index{GpgFrontend::GlobalSettingStation@{GpgFrontend::GlobalSettingStation}!SyncSettings@{SyncSettings}} @@ -381,8 +381,7 @@ Program Data Location. {\bfseries Initial value\+:} \begin{DoxyCode}{0} \DoxyCodeLine{=} -\DoxyCodeLine{ \mbox{\hyperlink{classGpgFrontend_1_1GlobalSettingStation_a4d04bb665571921421b853f18b8b300a}{app\_configure\_path\_}} /} -\DoxyCodeLine{ \textcolor{stringliteral}{"{}UserInterface"{}}} +\DoxyCodeLine{ \mbox{\hyperlink{classGpgFrontend_1_1GlobalSettingStation_a4d04bb665571921421b853f18b8b300a}{app\_configure\_path\_}} / \textcolor{stringliteral}{"{}conf"{}}} \end{DoxyCode} @@ -402,12 +401,12 @@ Referenced by Global\+Setting\+Station(). {\bfseries Initial value\+:} \begin{DoxyCode}{0} \DoxyCodeLine{=} -\DoxyCodeLine{ \mbox{\hyperlink{classGpgFrontend_1_1GlobalSettingStation_ab618fef68cfd4ff6e42d4a4aa8ea94bb}{ui\_config\_dir\_path\_}} / \textcolor{stringliteral}{"{}ui.cfg"{}}} +\DoxyCodeLine{ \mbox{\hyperlink{classGpgFrontend_1_1GlobalSettingStation_ab618fef68cfd4ff6e42d4a4aa8ea94bb}{ui\_config\_dir\_path\_}} / \textcolor{stringliteral}{"{}main.cfg"{}}} \end{DoxyCode} -\mbox{\hyperlink{namespaceGpgFrontend_1_1UI}{UI}} Configure File Location. +Main Configure File Location. diff --git a/docs/latex/classGpgFrontend_1_1GlobalSettingStation__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GlobalSettingStation__coll__graph.pdf index f39b82d8..c0874eac 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 f39b82d8..93d67fd5 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 be70f9d7..8ab75f1b 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 8c82eafa..8127d9e3 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 bbde59df..be48cc04 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 21d6014b..7912926f 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 10d38587..2595948d 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 2e4841ad..a8b0ee17 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 4d402a04..0ba6737e 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 be94d05a..beaaa3a5 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 684e60f1..7137f74f 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 520b02cf..da5cebef 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 d3c34216..d23ec396 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 c86ad173..a23d2f3b 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 66a8cb74..7aec4989 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 66a8cb74..7aec4989 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 d0bec12a..27151113 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 6d67a6dd..65c2d282 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 6d8417f0..1326a8c5 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 694c8126..68251c28 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[height=550pt]{classGpgFrontend_1_1GpgKey__coll__graph} +\includegraphics[width=350pt]{classGpgFrontend_1_1GpgKey__coll__graph} \end{center} \end{figure} \doxysubsection*{Classes} @@ -111,6 +111,9 @@ 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 03298c1d..81940dbe 100644 --- a/docs/latex/classGpgFrontend_1_1GpgKeyGetter__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1GpgKeyGetter__coll__graph.md5 @@ -1 +1 @@ -01a1213479fa361096a7f9a134bac7e8 \ No newline at end of file +4d981e03577eaa006abf79e1129a9ca5 \ 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 ad216457..8279785e 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 db505678..9ed9b2b7 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 f1f41b15..f55657a1 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 99d3b6ea..3b2c4076 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 f243b014..ca326543 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 893b58bf..050efc9c 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 2bbd321a..b6f07a9a 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 cb2d75f6..aab8a138 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 f362c90c..6b45fc7b 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 9f17d1fb..841c005c 100644 --- a/docs/latex/classGpgFrontend_1_1GpgKey__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1GpgKey__coll__graph.md5 @@ -1 +1 @@ -7c3613e767a2ab37bafe4ededd401b8e \ No newline at end of file +ce0b43b170e5c2d599a0f554a50af15c \ 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 d15622c2..cdb366c1 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 4a35da86..4513be5e 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 257d09bc..c578b422 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 1ec79ceb..0cde2fc6 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 00f0f794..6f54ce6f 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 570d3a46..68b5bdf4 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 94e06d7c..1530e841 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 0cfb13f7..eba6704f 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 07e1d14d..91a7a026 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 5111184c..c72dc2c8 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 3c3732f5..5349d950 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 46b2653d..b10bf83d 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 4209cd59..daaa8246 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 b70321ac..7286deab 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 95358b9b..62ee73a2 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 95358b9b..62ee73a2 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 decee3e1..74cce686 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 d4c5dab4..08276188 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.tex b/docs/latex/classGpgFrontend_1_1SingletonStorageCollection.tex index 9dd9441c..f17d6cf3 100644 --- a/docs/latex/classGpgFrontend_1_1SingletonStorageCollection.tex +++ b/docs/latex/classGpgFrontend_1_1SingletonStorageCollection.tex @@ -18,7 +18,7 @@ Collaboration diagram for Gpg\+Frontend\+::Singleton\+Storage\+Collection\+: \doxysubsection*{Static Public Member Functions} \begin{DoxyCompactItemize} \item -static \mbox{\hyperlink{classGpgFrontend_1_1SingletonStorageCollection}{Singleton\+Storage\+Collection}} $\ast$ \mbox{\hyperlink{classGpgFrontend_1_1SingletonStorageCollection_a16b4729ca79dcdccc794df70aa2a5aaf}{Get\+Instance}} () +static \mbox{\hyperlink{classGpgFrontend_1_1SingletonStorageCollection}{Singleton\+Storage\+Collection}} $\ast$ \mbox{\hyperlink{classGpgFrontend_1_1SingletonStorageCollection_ac56d19e0d4b99e7b8a86a017721f3db1}{Get\+Instance}} (bool force\+\_\+refresh) \begin{DoxyCompactList}\small\item\em Get the Instance object. \end{DoxyCompactList}\end{DoxyCompactItemize} \doxysubsection*{Private Attributes} \begin{DoxyCompactItemize} @@ -32,11 +32,11 @@ std\+::map$<$ size\+\_\+t, std\+::unique\+\_\+ptr$<$ \mbox{\hyperlink{classGpgFr \doxysubsection{Member Function Documentation} -\mbox{\Hypertarget{classGpgFrontend_1_1SingletonStorageCollection_a16b4729ca79dcdccc794df70aa2a5aaf}\label{classGpgFrontend_1_1SingletonStorageCollection_a16b4729ca79dcdccc794df70aa2a5aaf}} +\mbox{\Hypertarget{classGpgFrontend_1_1SingletonStorageCollection_ac56d19e0d4b99e7b8a86a017721f3db1}\label{classGpgFrontend_1_1SingletonStorageCollection_ac56d19e0d4b99e7b8a86a017721f3db1}} \index{GpgFrontend::SingletonStorageCollection@{GpgFrontend::SingletonStorageCollection}!GetInstance@{GetInstance}} \index{GetInstance@{GetInstance}!GpgFrontend::SingletonStorageCollection@{GpgFrontend::SingletonStorageCollection}} \doxysubsubsection{\texorpdfstring{GetInstance()}{GetInstance()}} -{\footnotesize\ttfamily \mbox{\hyperlink{classGpgFrontend_1_1SingletonStorageCollection}{Gpg\+Frontend\+::\+Singleton\+Storage\+Collection}} $\ast$ Gpg\+Frontend\+::\+Singleton\+Storage\+Collection\+::\+Get\+Instance (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} +{\footnotesize\ttfamily \mbox{\hyperlink{classGpgFrontend_1_1SingletonStorageCollection}{Gpg\+Frontend\+::\+Singleton\+Storage\+Collection}} $\ast$ Gpg\+Frontend\+::\+Singleton\+Storage\+Collection\+::\+Get\+Instance (\begin{DoxyParamCaption}\item[{bool}]{force\+\_\+refresh = {\ttfamily false} }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} diff --git a/docs/latex/classGpgFrontend_1_1SingletonStorageCollection__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1SingletonStorageCollection__coll__graph.pdf index 03d19622..d6e379e8 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 0c9417c2..493c2250 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 610689d2..3d54b2ad 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 a9958350..ed61cb17 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 160ca8a0..d5afe781 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 c62bc362..4db3c96a 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 7d1d2ff2..c8bb6bae 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 c20a79c4..62524159 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 0a77dc29..0f66d72f 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 17660465..96bdec37 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 4e76a29e..14b86dbd 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 668d5747..36172fcd 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=241pt]{classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph} +\includegraphics[width=262pt]{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 38ba8b58..b85a7229 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 @@ -58c546a6c69eb8174355a30649e4e83c \ No newline at end of file +328c85db8f9e9f7d0660ee00adaaa622 \ 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 2eb0a64f..a2ee7fb0 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 d3dd4b3c..82ad4cec 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 @@ -1d4a529589aa8bb8548337db6638a6cc \ No newline at end of file +63aa24fd12f931982b3183a3ce899bb6 \ 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 f24eff08..6bc4ab49 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 e5c8e5a5..7de8fa85 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 e5c8e5a5..7de8fa85 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 7cadc21a..f9e78732 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=256pt]{classGpgFrontend_1_1UI_1_1AppearanceTab__coll__graph} +\includegraphics[width=350pt]{classGpgFrontend_1_1UI_1_1AppearanceTab__coll__graph} \end{center} \end{figure} \doxysubsection*{Signals} @@ -39,35 +39,14 @@ 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 1261784d..679c9ef4 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 @@ -19d0b2fa27d3e10d78b209ca9db80cee \ No newline at end of file +7cb1bca0342b6a28f4ebabae10699a60 \ 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 e04abb83..f8f8d14e 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 1261784d..32f8d3b2 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 @@ -19d0b2fa27d3e10d78b209ca9db80cee \ No newline at end of file +5de7e330ffb1de37474d7c1f15a7ec07 \ 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 e04abb83..be7fd2b9 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 21cc4429..f468393c 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 21cc4429..f468393c 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 e17be94c..25ae7579 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 68eea3e7..ed9ad8d2 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 00f76e0f..3ed846b5 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 00f76e0f..3ed846b5 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 2961203a..ce448790 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=236pt]{classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph} +\includegraphics[width=262pt]{classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph} \end{center} \end{figure} @@ -37,6 +37,7 @@ 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 2629f67b..bdd6a1a9 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 @@ -bb877fecb3d56262d8b08c577ae5c794 \ No newline at end of file +2cbc410ecde206f138950b8776b8755d \ 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 9d8a25b7..3962c086 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 463474e7..455d9058 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 @@ -69eb903e75056b558c2e0f31a7b2308d \ No newline at end of file +694ddea368a258ff713c2c3c16faaa83 \ 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 3d20a576..b07f3a27 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 f60a04e6..5a1f0762 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 ef99cda5..7ebb4fc6 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 8dab9c7e..8027c72d 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 3f6fd835..967446de 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 8a251a72..3be4a030 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 d81aef30..dae708fd 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 73beb0ca..55315c02 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=265pt]{classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph} +\includegraphics[width=286pt]{classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph} \end{center} \end{figure} \doxysubsection*{Public Member Functions} @@ -25,6 +25,15 @@ 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 @@ -45,6 +54,12 @@ 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 4b5dcf2b..46b177ed 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 @@ -93e045a74c4e7bfaf5f413ce44683f40 \ No newline at end of file +1ad0f86474effc5f3a42f82bfbd85399 \ 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 b0671b7c..84341207 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 c2048939..a5bfdf5b 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 @@ -16d5e7fa5838e7507c9a30fbe266bd13 \ No newline at end of file +5e082dc6edfc6949de8d0d993131cd09 \ 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 f1aa4984..0048af21 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 711cdaba..7aebe77c 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_af5c86754836a678c7058e6f633968863}{close\+Event}} (QClose\+Event $\ast$event) +void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1GeneralMainWindow_acc10569862d1575d9453d1c1aa539242}{close\+Event}} (QClose\+Event $\ast$event) override \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_af5c86754836a678c7058e6f633968863}\label{classGpgFrontend_1_1UI_1_1GeneralMainWindow_af5c86754836a678c7058e6f633968863}} +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralMainWindow_acc10569862d1575d9453d1c1aa539242}\label{classGpgFrontend_1_1UI_1_1GeneralMainWindow_acc10569862d1575d9453d1c1aa539242}} \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 [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 [override]}, {\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 371f6fa7..50b9a515 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 cae3331e..8adc5e74 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.tex b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralTab.tex index 450173b0..d232a803 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralTab.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralTab.tex @@ -24,6 +24,8 @@ Collaboration diagram for Gpg\+Frontend\+::UI\+::General\+Tab\+: \begin{DoxyCompactItemize} \item void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1GeneralTab_aa88ccbda61728be6de0aa2d9b92e0b69}{Signal\+Restart\+Needed}} (bool needed) +\item +void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1GeneralTab_afc107d56f13000aa28436a5e26a0876b}{Signal\+Deep\+Restart\+Needed}} (bool needed) \end{DoxyCompactItemize} \doxysubsection*{Public Member Functions} \begin{DoxyCompactItemize} @@ -68,11 +70,26 @@ Construct a new General Tab object. \end{DoxyParams} -References Gpg\+Frontend\+::\+UI\+::\+Settings\+Dialog\+::\+List\+Languages(), and Set\+Settings(). +References Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Global\+Setting\+Station $>$\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Global\+Setting\+Station\+::\+Get\+UISettings(), and Gpg\+Frontend\+::\+UI\+::\+Settings\+Dialog\+::\+List\+Languages(). \doxysubsection{Member Function Documentation} +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralTab_afc107d56f13000aa28436a5e26a0876b}\label{classGpgFrontend_1_1UI_1_1GeneralTab_afc107d56f13000aa28436a5e26a0876b}} +\index{GpgFrontend::UI::GeneralTab@{GpgFrontend::UI::GeneralTab}!SignalDeepRestartNeeded@{SignalDeepRestartNeeded}} +\index{SignalDeepRestartNeeded@{SignalDeepRestartNeeded}!GpgFrontend::UI::GeneralTab@{GpgFrontend::UI::GeneralTab}} +\doxysubsubsection{\texorpdfstring{SignalDeepRestartNeeded}{SignalDeepRestartNeeded}} +{\footnotesize\ttfamily void Gpg\+Frontend\+::\+UI\+::\+General\+Tab\+::\+Signal\+Deep\+Restart\+Needed (\begin{DoxyParamCaption}\item[{bool}]{needed }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [signal]}} + + +\begin{DoxyParams}{Parameters} +{\em needed} & \\ +\hline +\end{DoxyParams} + + +Referenced by Gpg\+Frontend\+::\+UI\+::\+Settings\+Dialog\+::\+Settings\+Dialog(). + \mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralTab_aa88ccbda61728be6de0aa2d9b92e0b69}\label{classGpgFrontend_1_1UI_1_1GeneralTab_aa88ccbda61728be6de0aa2d9b92e0b69}} \index{GpgFrontend::UI::GeneralTab@{GpgFrontend::UI::GeneralTab}!SignalRestartNeeded@{SignalRestartNeeded}} \index{SignalRestartNeeded@{SignalRestartNeeded}!GpgFrontend::UI::GeneralTab@{GpgFrontend::UI::GeneralTab}} 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 0302d7ed..2c2eabb8 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 @@ -926f7c6580a27fb0d13d6824ded3c5ab \ No newline at end of file +a6364f24d2dd3f6147e4df04092fdf08 \ 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 612bbcfe..9e47f44a 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 b544431a..13b17b07 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.tex b/docs/latex/classGpgFrontend_1_1UI_1_1GnupgTab.tex index 44eac051..c103deac 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1GnupgTab.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1GnupgTab.tex @@ -17,7 +17,7 @@ Collaboration diagram for Gpg\+Frontend\+::UI\+::Gnupg\+Tab\+: \begin{figure}[H] \begin{center} \leavevmode -\includegraphics[width=229pt]{classGpgFrontend_1_1UI_1_1GnupgTab__coll__graph} +\includegraphics[width=318pt]{classGpgFrontend_1_1UI_1_1GnupgTab__coll__graph} \end{center} \end{figure} \doxysubsection*{Public Member Functions} @@ -25,6 +25,21 @@ Collaboration diagram for Gpg\+Frontend\+::UI\+::Gnupg\+Tab\+: \item \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1GnupgTab_ab9d9e8af4494659f13b87804e7318a79}{Gnupg\+Tab}} (QWidget $\ast$parent=nullptr) \begin{DoxyCompactList}\small\item\em Construct a new Info Tab object. \end{DoxyCompactList}\end{DoxyCompactItemize} +\doxysubsection*{Private Slots} +\begin{DoxyCompactItemize} +\item +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GnupgTab_aa721fabc3ca35bb6b41e351732fe1081}\label{classGpgFrontend_1_1UI_1_1GnupgTab_aa721fabc3ca35bb6b41e351732fe1081}} +void {\bfseries process\+\_\+components\+\_\+info} (int, QProcess\+::\+Exit\+Status) +\end{DoxyCompactItemize} +\doxysubsection*{Private Attributes} +\begin{DoxyCompactItemize} +\item +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GnupgTab_afd915ad09684b960ec63e28753f833e9}\label{classGpgFrontend_1_1UI_1_1GnupgTab_afd915ad09684b960ec63e28753f833e9}} +std\+::shared\+\_\+ptr$<$ Ui\+\_\+\+Gnu\+PGInfo $>$ {\bfseries ui\+\_\+} +\item +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GnupgTab_a31c103293e8cb053a829466cc77a0840}\label{classGpgFrontend_1_1UI_1_1GnupgTab_a31c103293e8cb053a829466cc77a0840}} +QProcess $\ast$ {\bfseries gpgconf\+\_\+process\+\_\+} +\end{DoxyCompactItemize} \doxysubsection{Constructor \& Destructor Documentation} diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GnupgTab__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1GnupgTab__coll__graph.md5 index 0d16b6ba..9f561c1f 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1GnupgTab__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1GnupgTab__coll__graph.md5 @@ -1 +1 @@ -51fb5f88c8e640dc0aeec81b62aae44b \ No newline at end of file +af7ea90ab8fff8967a86d85dbf8954d1 \ No newline at end of file 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 3506118b..4e29cc47 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.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1GnupgTab__inherit__graph.md5 index 0d16b6ba..7609dcff 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1GnupgTab__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1GnupgTab__inherit__graph.md5 @@ -1 +1 @@ -51fb5f88c8e640dc0aeec81b62aae44b \ No newline at end of file +ef45a968c8bfed508c802c0cad6d461e \ No newline at end of file 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 3506118b..5dec6878 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 26555d3c..3d6ceed3 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 26555d3c..3d6ceed3 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 17b6acbd..7259c2f6 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 17b6acbd..7259c2f6 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 b6b89986..a4dd9d22 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 224644f5..0519b50a 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 7437fc6c..3766e1f9 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 7437fc6c..3766e1f9 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 730b51b2..8fd0e03e 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 730b51b2..8fd0e03e 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 7ed56be1..f27478af 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=234pt]{classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph} +\includegraphics[width=262pt]{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[width=272pt]{classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph} +\includegraphics[height=550pt]{classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph} \end{center} \end{figure} \doxysubsection*{Public Member Functions} @@ -32,6 +32,7 @@ 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 664e165d..3aa29ca6 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 @@ -02cc60dabd7ba8393428fe250816ded5 \ No newline at end of file +e150d9ff2dc1d02a44ea535f4df881a0 \ 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 b0b153b9..f5d91312 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 c28e3f5f..316656a8 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 @@ -edce17602f9f7723f8fb025a1be644d8 \ No newline at end of file +ef280f4118fcedbc592fad35168d0535 \ 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 6d9fd045..2093c04c 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 3371515a..9688bfa5 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog.tex @@ -112,6 +112,7 @@ 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} @@ -220,7 +221,7 @@ Referenced by slot\+\_\+activated\+\_\+key\+\_\+type(). \end{DoxyParams} -References key\+\_\+type\+\_\+combo\+\_\+box\+\_\+, and refresh\+\_\+widgets\+\_\+state(). +References 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 c59bfd74..520d918e 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 @@ -926ed0ef6b2bd9e9bd4a55c475b2c315 \ No newline at end of file +c6e7428a5adf75594575c40fb2e54c81 \ 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 b493c531..518f41db 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 5cfd9cf4..87742b5d 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 @@ -a57e50ab37498b6071e10ba508214987 \ No newline at end of file +2baa4f9d48dc1be536d5e62edad511df \ 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 37e860bc..7f35efda 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 70743e66..4204236a 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 70743e66..4204236a 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 b4998f86..b6d179f0 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=232pt]{classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph} +\includegraphics[width=262pt]{classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph} \end{center} \end{figure} @@ -60,6 +60,7 @@ 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 24c760c8..46dc6b5a 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 @@ -b5fb81b976446ae2c005ddba581a3ab8 \ No newline at end of file +c3ff390cfb71d2f377d9372948217916 \ 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 94fe4bab..f5df484a 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 c6488c4f..a5609a8f 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 @@ -92017ae4d4447242980bfe445e79ad6c \ No newline at end of file +81bc9706182dea09cf2179ff57fd8398 \ 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 115ff421..b8105e16 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 0dda5839..15c04056 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 @@ -db39dced680c6b2d7b0e69950270bb55 \ No newline at end of file +f5e0e59a7bda94c8916a18075b6b541d \ 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 8235f715..a8cb9fc2 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 07ef7f5f..a21c72dd 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 ac7e7ad4..6e6bd7c4 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 @@ -d35c971759ab226eb049c0dde7aeb690 \ No newline at end of file +d52c9f5d9255360ec3471ad049351e7e \ 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 47afc4c2..0d44469c 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 bf2b09da..5334951f 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 8d6decff..637c2e60 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[height=550pt]{classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph} +\includegraphics[width=350pt]{classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph} \end{center} \end{figure} \doxysubsection*{Signals} @@ -67,6 +67,7 @@ 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 8394f3f6..b2720eb6 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 @@ -00d4bc0144ca649a58b25e7dec4da413 \ No newline at end of file +a1a2ca849121ab1b088526f5ec1680c6 \ 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 5270899e..c9a77d00 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 ceb603ae..1e30aad3 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 @@ -3e704c46454cd866271f7e8f97121403 \ No newline at end of file +71d7569cffde208b5559a82e16a3db46 \ 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 638a0f28..f6578ba3 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 a805e36d..7ddc470c 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 @@ -0b946d283e9eead44b6c35d25b79cbcd \ No newline at end of file +32192cca5a7cc86074012e24daaf71d7 \ 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 74ecd73a..22bf68dc 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 311524f5..327accb2 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 ab58ae9b..5a9264ef 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 @@ -44efddd946a18e8cbdbc0f950bc2dbe7 \ No newline at end of file +5bdcf83117c9c95d76194a9983e1e38b \ 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 3d034967..36237f4d 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 14ca6b76..f9fc773c 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 aeb6cbba..d21b1fd1 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[height=550pt]{classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__coll__graph} +\includegraphics[width=350pt]{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 d79cade3..e5e455ce 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 @@ -19cf58359131f0d2eb6a844e642a56bd \ No newline at end of file +7368f83b6e0a1866e781471480569b80 \ 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 f8dcb274..9e7a8c14 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 087e45df..3666e490 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 f84943a7..fa7a60a8 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[height=550pt]{classGpgFrontend_1_1UI_1_1KeyPairUIDTab__coll__graph} +\includegraphics[width=350pt]{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 e828dbc7..03939e0f 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 @@ -714a4da2119c84c948c1acd6827b4ef1 \ No newline at end of file +17df790941200c9381d490957ba4dd23 \ 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 df4fb879..35a90b8b 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 5dc1f4df..7fb9429a 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 df98a2ed..0d2abdda 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog.tex @@ -109,6 +109,7 @@ 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 2df13c08..2431ac4f 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 @@ -f7eec5c7abe96270191ecf399e4becf1 \ No newline at end of file +55122de7dd19865f8c0ea095729297e0 \ 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 59596afc..ad4b5c42 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 a38b249d..f8ccca0a 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 @@ -cf9885d44b50ac4527c2a646aca3e3b1 \ No newline at end of file +a679016b7c01a2560e93d1705087147e \ 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 30eb95a6..d71f96d9 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 554d2bfb..bcdd0e40 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 2b3150ab..619e6911 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 fb0e7f84..c51b6984 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 610f5e37..06d191aa 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 ee1f0c12..7c296e1d 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=246pt]{classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph} +\includegraphics[width=262pt]{classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph} \end{center} \end{figure} @@ -59,6 +59,7 @@ 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 8e40e51c..91030695 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 @@ -80cb7d961f07a75c0e2f1a9d40e11d49 \ No newline at end of file +68cde4720d1c494cd970f97841832320 \ 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 bb3af492..2f0cbf72 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 6ca593b4..f4b68c79 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 @@ -c5f840f23387da01b55dcc2626c7d4f4 \ No newline at end of file +e48cb9f4f473b85fa93e831a7a410a91 \ 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 db94be96..f7bc2421 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 fe98ec52..cc67fe03 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=238pt]{classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph} +\includegraphics[width=262pt]{classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph} \end{center} \end{figure} @@ -57,6 +57,7 @@ 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 3f73ed12..c218718a 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 @@ -d0cf6e1aa2630d58da0eb6ae7d2b89b1 \ No newline at end of file +cce49195bbd430ce164d2a71dbf6bd85 \ 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 084a17dd..749cff9f 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 729b4882..4ef1d478 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 @@ -de1f55e951ad47d76d8d6eb35e704125 \ No newline at end of file +9b9713f0cce0476f20f2906f1144f47c \ 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 d03ccca9..f64bcd7c 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 98281891..639ce4e8 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=234pt]{classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph} +\includegraphics[width=262pt]{classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph} \end{center} \end{figure} @@ -48,6 +48,7 @@ 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} @@ -84,7 +85,7 @@ Construct a new Key Upload Dialog object. \end{DoxyParams} -References Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Global\+Setting\+Station $>$\+::\+Get\+Instance(), and Gpg\+Frontend\+::\+Global\+Setting\+Station\+::\+Get\+UISettings(). +References Gpg\+Frontend\+::\+UI\+::\+Settings\+Object\+::\+Check(). 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 d1dab0b0..b2e21d0b 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 @@ -df85bb638a1ca83615b7190f6a15aaa5 \ No newline at end of file +99a928f62f8da32ad2928c0e5ebe03fa \ 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 e8682dd7..ff70bc30 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 6cf418f0..55022f23 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 @@ -33f3748d3a6f6a75eca1c580301561d2 \ No newline at end of file +b4cd49f7f3e58f21d2e7c4fef0e09740 \ 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 ccfe6cfb..46a4a7d8 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 aead473a..b210becb 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 40cdeeed..e7b41ca2 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 2a2cb9fa..ade69e97 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 068ee028..f4c57016 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.tex b/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow.tex index ebdbb4e8..0510d07e 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow.tex @@ -45,7 +45,7 @@ void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1MainWindow_a25a2e4017d77cffc8362 \item void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1MainWindow_ab23c7e67dd1f5295b3c49ad79dfd5919}{Slot\+File\+Decrypt\+Verify}} () \item -void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1MainWindow_ab1fb798caf43dd067beca5285444d47d}{Slot\+Set\+Restart\+Needed}} (bool needed) +void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1MainWindow_a276e843e2f5eda8934fb350fb6f89327}{Slot\+Set\+Restart\+Needed}} (int) \end{DoxyCompactItemize} \doxysubsection*{Signals} \begin{DoxyCompactItemize} @@ -133,8 +133,8 @@ void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1MainWindow_a210ab31f4d949a50507d \item void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1MainWindow_a7a4b6490038470a8849231e48282da98}{save\+\_\+settings}} () \item -\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1MainWindow_a7fdaae01c50d540ecd8672091cdfbcc0}\label{classGpgFrontend_1_1UI_1_1MainWindow_a7fdaae01c50d540ecd8672091cdfbcc0}} -bool \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1MainWindow_a7fdaae01c50d540ecd8672091cdfbcc0}{get\+\_\+restart\+\_\+needed}} () const +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1MainWindow_a5e95f62dac9fba1ead6ec69c145923db}\label{classGpgFrontend_1_1UI_1_1MainWindow_a5e95f62dac9fba1ead6ec69c145923db}} +int \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1MainWindow_a5e95f62dac9fba1ead6ec69c145923db}{get\+\_\+restart\+\_\+needed}} () const \begin{DoxyCompactList}\small\item\em return true, if restart is needed \end{DoxyCompactList}\end{DoxyCompactItemize} \doxysubsection*{Private Attributes} \begin{DoxyCompactItemize} @@ -332,8 +332,8 @@ QLabel $\ast$ {\bfseries status\+\_\+bar\+\_\+icon\+\_\+} \{\} \mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1MainWindow_aad0c8d50952f4592eac7b7221b5d1ec5}\label{classGpgFrontend_1_1UI_1_1MainWindow_aad0c8d50952f4592eac7b7221b5d1ec5}} bool {\bfseries attachment\+\_\+dock\+\_\+created\+\_\+} \{\} \item -\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1MainWindow_a68ab283b12d2a5400dc90555772c44ab}\label{classGpgFrontend_1_1UI_1_1MainWindow_a68ab283b12d2a5400dc90555772c44ab}} -bool {\bfseries restart\+\_\+needed\+\_\+} \{\} +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1MainWindow_a5806e6f5e740e6aa311e0fa5f064302a}\label{classGpgFrontend_1_1UI_1_1MainWindow_a5806e6f5e740e6aa311e0fa5f064302a}} +int {\bfseries restart\+\_\+needed\+\_\+} \{0\} \item \mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1MainWindow_a24e58eb0b84709ea665db95e54da865b}\label{classGpgFrontend_1_1UI_1_1MainWindow_a24e58eb0b84709ea665db95e54da865b}} bool {\bfseries prohibit\+\_\+update\+\_\+checking\+\_\+} = false @@ -818,11 +818,11 @@ Open a new tab for path References edit\+\_\+, and Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Slot\+Open\+File(). -\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1MainWindow_ab1fb798caf43dd067beca5285444d47d}\label{classGpgFrontend_1_1UI_1_1MainWindow_ab1fb798caf43dd067beca5285444d47d}} +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1MainWindow_a276e843e2f5eda8934fb350fb6f89327}\label{classGpgFrontend_1_1UI_1_1MainWindow_a276e843e2f5eda8934fb350fb6f89327}} \index{GpgFrontend::UI::MainWindow@{GpgFrontend::UI::MainWindow}!SlotSetRestartNeeded@{SlotSetRestartNeeded}} \index{SlotSetRestartNeeded@{SlotSetRestartNeeded}!GpgFrontend::UI::MainWindow@{GpgFrontend::UI::MainWindow}} \doxysubsubsection{\texorpdfstring{SlotSetRestartNeeded}{SlotSetRestartNeeded}} -{\footnotesize\ttfamily void Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::\+Slot\+Set\+Restart\+Needed (\begin{DoxyParamCaption}\item[{bool}]{needed }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [slot]}} +{\footnotesize\ttfamily void Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::\+Slot\+Set\+Restart\+Needed (\begin{DoxyParamCaption}\item[{int}]{mode }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [slot]}} get value of member restart\+Needed to needed. \begin{DoxyParams}{Parameters} 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 e4cc85b8..bcaecb5d 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 @@ -71c78553a70a7bc2c254ca00e59438ba \ No newline at end of file +04ccc31d52f4d09b03dc197935e2afc1 \ 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 702e2082..63ff6edf 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 fc38526e..19de0ba0 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 e03c7fd1..fd574e8f 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 986f8667..7ff1ea64 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 c92dbd44..fbf29cda 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 full\+\_\+file\+\_\+path\+\_\+. +References Gpg\+Frontend\+::\+UI\+::\+Settings\+Object\+::\+Check(), and 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 93a9487e..853f31b5 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 bdcf8530..dec8e32e 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 9d413ee1..ffbf7757 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 9d413ee1..ffbf7757 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 06b51a46..e2594438 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=233pt]{classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph} +\includegraphics[width=262pt]{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[width=272pt]{classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph} +\includegraphics[height=550pt]{classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph} \end{center} \end{figure} \doxysubsection*{Public Member Functions} @@ -44,6 +44,7 @@ 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 d3fbb649..ad437634 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 @@ -3e3113c545aa96846077123c65ac6a92 \ No newline at end of file +1ed26d080c8e22a9fafe7ab03f52f990 \ 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 9ec4646f..db753153 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 f15e30f1..b098b5d4 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 @@ -8f10df66561459dd61399de5f43d7e23 \ No newline at end of file +bc113a5764db8fa96bbc767845d76057 \ 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 51fd6fcc..7c4ba4d2 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 42481b37..d65ab61a 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[width=228pt]{classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph} +\includegraphics[height=550pt]{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[height=550pt]{classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph} +\includegraphics[width=350pt]{classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph} \end{center} \end{figure} \doxysubsection*{Public Slots} @@ -29,7 +29,7 @@ void {\bfseries Slot\+Accept} () \doxysubsection*{Signals} \begin{DoxyCompactItemize} \item -void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1SettingsDialog_a91b25637962923a4bc646e8e1ab5d068}{Signal\+Restart\+Needed}} (bool needed) +void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1SettingsDialog_af5ba6646af45d0d1d794bc52ee54b1b9}{Signal\+Restart\+Needed}} (int) \end{DoxyCompactItemize} \doxysubsection*{Public Member Functions} \begin{DoxyCompactItemize} @@ -59,12 +59,12 @@ static QHash$<$ QString, QString $>$ \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1 \doxysubsection*{Private Slots} \begin{DoxyCompactItemize} \item -void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1SettingsDialog_a204f8e834337aea7df2779a494dc6216}{slot\+\_\+set\+\_\+restart\+\_\+needed}} (bool needed) +void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1SettingsDialog_acc6b4386de554fce6fbb60ac6d201952}{slot\+\_\+set\+\_\+restart\+\_\+needed}} (int) \end{DoxyCompactItemize} \doxysubsection*{Private Member Functions} \begin{DoxyCompactItemize} \item -bool \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1SettingsDialog_a44f48d9578d62b1786cbf10a8f20a518}{get\+\_\+restart\+\_\+needed}} () const +int \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1SettingsDialog_a0d66e360dfbcf79403351459721c3981}{get\+\_\+restart\+\_\+needed}} () const \begin{DoxyCompactList}\small\item\em Get the Restart Needed object. \end{DoxyCompactList}\end{DoxyCompactItemize} \doxysubsection*{Private Attributes} \begin{DoxyCompactItemize} @@ -75,9 +75,10 @@ QTab\+Widget $\ast$ {\bfseries tab\+\_\+widget\+\_\+} \mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1SettingsDialog_a4e2ce62b4f14bb77d577efe208655bcb}\label{classGpgFrontend_1_1UI_1_1SettingsDialog_a4e2ce62b4f14bb77d577efe208655bcb}} QDialog\+Button\+Box $\ast$ {\bfseries button\+\_\+box\+\_\+} \item -\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1SettingsDialog_a0e317d53b055887c86e851d1b10aec6b}\label{classGpgFrontend_1_1UI_1_1SettingsDialog_a0e317d53b055887c86e851d1b10aec6b}} -bool {\bfseries restart\+\_\+needed\+\_\+} \{\} +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1SettingsDialog_a557219d1b82dd00e8d9f027a7cd561fa}\label{classGpgFrontend_1_1UI_1_1SettingsDialog_a557219d1b82dd00e8d9f027a7cd561fa}} +int {\bfseries restart\+\_\+needed\+\_\+} \{0\} \end{DoxyCompactItemize} +\doxysubsection*{Additional Inherited Members} \doxysubsection{Constructor \& Destructor Documentation} @@ -98,16 +99,16 @@ Construct a new Settings Dialog object. \end{DoxyParams} -References Signal\+Restart\+Needed(), Gpg\+Frontend\+::\+UI\+::\+General\+Tab\+::\+Signal\+Restart\+Needed(), slot\+\_\+set\+\_\+restart\+\_\+needed(), and Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::\+Slot\+Set\+Restart\+Needed(). +References Gpg\+Frontend\+::\+UI\+::\+General\+Tab\+::\+Signal\+Deep\+Restart\+Needed(), Gpg\+Frontend\+::\+UI\+::\+General\+Tab\+::\+Signal\+Restart\+Needed(), Signal\+Restart\+Needed(), slot\+\_\+set\+\_\+restart\+\_\+needed(), and Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::\+Slot\+Set\+Restart\+Needed(). \doxysubsection{Member Function Documentation} -\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1SettingsDialog_a44f48d9578d62b1786cbf10a8f20a518}\label{classGpgFrontend_1_1UI_1_1SettingsDialog_a44f48d9578d62b1786cbf10a8f20a518}} +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1SettingsDialog_a0d66e360dfbcf79403351459721c3981}\label{classGpgFrontend_1_1UI_1_1SettingsDialog_a0d66e360dfbcf79403351459721c3981}} \index{GpgFrontend::UI::SettingsDialog@{GpgFrontend::UI::SettingsDialog}!get\_restart\_needed@{get\_restart\_needed}} \index{get\_restart\_needed@{get\_restart\_needed}!GpgFrontend::UI::SettingsDialog@{GpgFrontend::UI::SettingsDialog}} \doxysubsubsection{\texorpdfstring{get\_restart\_needed()}{get\_restart\_needed()}} -{\footnotesize\ttfamily bool Gpg\+Frontend\+::\+UI\+::\+Settings\+Dialog\+::get\+\_\+restart\+\_\+needed (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption}) const\hspace{0.3cm}{\ttfamily [private]}} +{\footnotesize\ttfamily int Gpg\+Frontend\+::\+UI\+::\+Settings\+Dialog\+::get\+\_\+restart\+\_\+needed (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption}) const\hspace{0.3cm}{\ttfamily [private]}} @@ -135,11 +136,11 @@ References Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Global\+Setting\+St Referenced by Gpg\+Frontend\+::\+UI\+::\+General\+Tab\+::\+General\+Tab(). -\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1SettingsDialog_a91b25637962923a4bc646e8e1ab5d068}\label{classGpgFrontend_1_1UI_1_1SettingsDialog_a91b25637962923a4bc646e8e1ab5d068}} +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1SettingsDialog_af5ba6646af45d0d1d794bc52ee54b1b9}\label{classGpgFrontend_1_1UI_1_1SettingsDialog_af5ba6646af45d0d1d794bc52ee54b1b9}} \index{GpgFrontend::UI::SettingsDialog@{GpgFrontend::UI::SettingsDialog}!SignalRestartNeeded@{SignalRestartNeeded}} \index{SignalRestartNeeded@{SignalRestartNeeded}!GpgFrontend::UI::SettingsDialog@{GpgFrontend::UI::SettingsDialog}} \doxysubsubsection{\texorpdfstring{SignalRestartNeeded}{SignalRestartNeeded}} -{\footnotesize\ttfamily void Gpg\+Frontend\+::\+UI\+::\+Settings\+Dialog\+::\+Signal\+Restart\+Needed (\begin{DoxyParamCaption}\item[{bool}]{needed }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [signal]}} +{\footnotesize\ttfamily void Gpg\+Frontend\+::\+UI\+::\+Settings\+Dialog\+::\+Signal\+Restart\+Needed (\begin{DoxyParamCaption}\item[{int}]{ }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [signal]}} \begin{DoxyParams}{Parameters} @@ -150,11 +151,11 @@ Referenced by Gpg\+Frontend\+::\+UI\+::\+General\+Tab\+::\+General\+Tab(). Referenced by Settings\+Dialog(). -\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1SettingsDialog_a204f8e834337aea7df2779a494dc6216}\label{classGpgFrontend_1_1UI_1_1SettingsDialog_a204f8e834337aea7df2779a494dc6216}} +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1SettingsDialog_acc6b4386de554fce6fbb60ac6d201952}\label{classGpgFrontend_1_1UI_1_1SettingsDialog_acc6b4386de554fce6fbb60ac6d201952}} \index{GpgFrontend::UI::SettingsDialog@{GpgFrontend::UI::SettingsDialog}!slot\_set\_restart\_needed@{slot\_set\_restart\_needed}} \index{slot\_set\_restart\_needed@{slot\_set\_restart\_needed}!GpgFrontend::UI::SettingsDialog@{GpgFrontend::UI::SettingsDialog}} \doxysubsubsection{\texorpdfstring{slot\_set\_restart\_needed}{slot\_set\_restart\_needed}} -{\footnotesize\ttfamily void Gpg\+Frontend\+::\+UI\+::\+Settings\+Dialog\+::slot\+\_\+set\+\_\+restart\+\_\+needed (\begin{DoxyParamCaption}\item[{bool}]{needed }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [private]}, {\ttfamily [slot]}} +{\footnotesize\ttfamily void Gpg\+Frontend\+::\+UI\+::\+Settings\+Dialog\+::slot\+\_\+set\+\_\+restart\+\_\+needed (\begin{DoxyParamCaption}\item[{int}]{mode }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [private]}, {\ttfamily [slot]}} \begin{DoxyParams}{Parameters} 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 f3c3afff..626314ba 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 @@ -4707177711eedd11fe665b7e8ffbffcb \ No newline at end of file +f538dd7dfeca616062987da0c9c86f2e \ 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 ba321eb1..d4cc24fd 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 906c7d4e..ccf7aa09 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 @@ -9108f9a99bf9d0d00e2976760d04ddb5 \ No newline at end of file +c67352bba9c2cb6764ded9312fa547a3 \ 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 065a8403..df3d561d 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 a545994f..626fe5aa 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\+::\+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(). +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(). 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 06e519f1..1005baa9 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 55b47e1b..2b73b21d 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 94a26585..50704ed5 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 32796af4..83636432 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 53432113..226a24f0 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=220pt]{classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph} +\includegraphics[width=262pt]{classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph} \end{center} \end{figure} @@ -38,6 +38,7 @@ 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 50215350..2e79bbc1 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 @@ -8e5eee502f1afc4c1b38f16ede5c1fbb \ No newline at end of file +636e788814ad3bde009946e8e8c61073 \ 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 8a7e4eca..62346501 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 9da28f30..4fce405f 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 @@ -8d9fc180702d9b949937d49d3f580bd8 \ No newline at end of file +b32cf09c4698c5b5da151cf95ddac55e \ 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 e1b5f664..a90ea96c 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 1159f3b0..fdd94842 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.tex @@ -95,6 +95,7 @@ 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} @@ -137,7 +138,7 @@ QGroup\+Box$\ast$ \end{DoxyReturn} -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\+\_\+. +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\+\_\+. @@ -191,7 +192,7 @@ Referenced by slot\+\_\+activated\+\_\+key\+\_\+type(), and Subkey\+Generate\+Di \end{DoxyParams} -References key\+\_\+type\+\_\+combo\+\_\+box\+\_\+, and refresh\+\_\+widgets\+\_\+state(). +References 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 07b98492..97d3dbbc 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 @@ -f2899c167cb209f5e43c9f3bbcfb2cbf \ No newline at end of file +6e9b0a68e1c61813348ffd37db4f04c7 \ 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 4b1273dd..02217a1c 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 785c5ddd..8c1a5be1 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 @@ -cd2fb2a755b825fcfdc5f4df6f3fc1b4 \ No newline at end of file +6adca92aaa9479e18c6e7d0b317d188f \ 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 bc974f80..ff2cd68b 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 ccd2bb58..26d81199 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 ccd2bb58..26d81199 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 d2174bf6..802237a7 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 d2174bf6..802237a7 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 aa41cb2d..f0e155cf 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 aa41cb2d..f0e155cf 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 aae40729..52f50b2a 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 aae40729..52f50b2a 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 f8f354f2..bf4e81a8 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 @@ -cb8c880ae548abdd96f832af9ef5c87c \ No newline at end of file +77d7413bbcf6cee704b7cfc0042e1f72 \ 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 9565f504..d0a382a2 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 a0c1c396..d5474afd 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 18e77a02..9ddc5d84 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 e231e750..a116402d 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 58f96997..a7dd4e6a 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 7a1bbd99..9aff3e08 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 e26facbb..cc6c369a 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 e26facbb..cc6c369a 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 7a271338..a6b9b276 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 7a271338..a6b9b276 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 ab86828a..6dc16e63 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 400bce3f..fe200f48 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 400bce3f..fe200f48 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 7179c317..5e04443f 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 ff8a0209..954d0025 100644 Binary files a/docs/latex/classclass__coll__graph.pdf and b/docs/latex/classclass__coll__graph.pdf differ diff --git a/docs/latex/namespaceGpgFrontend.tex b/docs/latex/namespaceGpgFrontend.tex index 87d1b8bc..5ccf0c89 100644 --- a/docs/latex/namespaceGpgFrontend.tex +++ b/docs/latex/namespaceGpgFrontend.tex @@ -218,9 +218,15 @@ int \mbox{\hyperlink{namespaceGpgFrontend_a2a0394c8bdd277f5235f9875a1d69a99}{tex \mbox{\Hypertarget{namespaceGpgFrontend_aff3e12940da2d43ce7aedeb795643434}\label{namespaceGpgFrontend_aff3e12940da2d43ce7aedeb795643434}} void \mbox{\hyperlink{namespaceGpgFrontend_aff3e12940da2d43ce7aedeb795643434}{Init\+Logging\+System}} () \begin{DoxyCompactList}\small\item\em setup logging system and do proper initialization \end{DoxyCompactList}\item +\mbox{\Hypertarget{namespaceGpgFrontend_a1194ef197102807cf31a6e27fdd47e07}\label{namespaceGpgFrontend_a1194ef197102807cf31a6e27fdd47e07}} +void {\bfseries Reset\+Gpg\+Frontend\+Core} () +\item \mbox{\Hypertarget{namespaceGpgFrontend_a5c172444c7aacf11b2f8b2ebe72fb053}\label{namespaceGpgFrontend_a5c172444c7aacf11b2f8b2ebe72fb053}} void {\bfseries init\+\_\+gpgfrontend\+\_\+core} () \item +\mbox{\Hypertarget{namespaceGpgFrontend_a3aa61e484a9f2e198119af82662fe68f}\label{namespaceGpgFrontend_a3aa61e484a9f2e198119af82662fe68f}} +void {\bfseries reset\+\_\+gpgfrontend\+\_\+core} () +\item void \mbox{\hyperlink{namespaceGpgFrontend_aafb9aa0ba1d03afa09085b1b8136c55f}{new\+\_\+default\+\_\+settings\+\_\+channel}} (int channel) \end{DoxyCompactItemize} \doxysubsection*{Variables} diff --git a/docs/latex/structGpgFrontend_1_1ArchiveStruct__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1ArchiveStruct__coll__graph.pdf index c15bbb01..c404ac7e 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 41aa9d9a..348468d5 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 5d1b2e5b..bb21f6d4 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 d0f2c64f..b42fb384 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 b5c29faf..02b01922 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 e21eba5b..46eb24a4 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 b06fec4e..01077e58 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 b1130126..0f865287 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 1d852ff1..599e45a6 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 4bd4c67b..62c66fa8 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 @@ -fa094d7b79db3952efb5b4fa479451da \ No newline at end of file +2b913c19bdd6e87d915367fe81b9e538 \ 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 a26cde94..acc057e6 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 d9e88389..995f719b 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 9457a725..ddfa997e 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 4975fae6..a5bdfac3 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