diff --git a/docs/html/CacheManager_8h_source.html b/docs/html/CacheManager_8h_source.html index 455b6ba9..3c5ab371 100644 --- a/docs/html/CacheManager_8h_source.html +++ b/docs/html/CacheManager_8h_source.html @@ -90,22 +90,92 @@ $(document).ready(function(){initNavTree('CacheManager_8h_source.html',''); init
29 #ifndef GPGFRONTEND_CACHEMANAGER_H
30 #define GPGFRONTEND_CACHEMANAGER_H
31 
-
32 namespace GpgFrontend {
+
32 #include <string>
33 
-
34 class CacheManager {
-
35  public:
-
36  static void SaveCache(std::string key, const nlohmann::json &value);
+
34 #include "core/GpgFunctionObject.h"
+
35 
+
36 namespace GpgFrontend {
37 
-
38  static nlohmann::json LoadCache(std::string name);
-
39 
-
40  static void ClearAllCache();
-
41 };
-
42 
-
43 } // namespace GpgFrontend
-
44 
-
45 #endif
-
GpgFrontend::CacheManager
Definition: CacheManager.h:34
-
GpgFrontend::CacheManager::SaveCache
static void SaveCache(std::string key, const nlohmann::json &value)
Definition: CacheManager.cpp:37
+
38 template <typename Key, typename Value>
+
39 class ThreadSafeMap {
+
40  public:
+
41  using MapType = std::map<Key, Value>;
+
42  using IteratorType = typename MapType::iterator;
+
43 
+
44  void insert(const Key& key, const Value& value) {
+
45  std::unique_lock lock(mutex_);
+
46  map_[key] = value;
+
47  }
+
48 
+
49  std::optional<Value> get(const Key& key) {
+
50  std::shared_lock lock(mutex_);
+
51  auto it = map_.find(key);
+
52  if (it != map_.end()) {
+
53  return it->second;
+
54  }
+
55  return std::nullopt;
+
56  }
+
57 
+
58  bool exists(const Key& key) {
+
59  std::shared_lock lock(mutex_);
+
60  return map_.count(key) > 0;
+
61  }
+
62 
+
63  IteratorType begin() { return map_mirror_.begin(); }
+
64 
+
65  IteratorType end() { return map_mirror_.end(); }
+
66 
+
67  ThreadSafeMap& mirror() {
+
68  std::shared_lock lock(mutex_);
+
69  map_mirror_ = map_;
+
70  return *this;
+
71  }
+
72 
+
73  private:
+
74  MapType map_mirror_;
+
75  MapType map_;
+
76  mutable std::shared_mutex mutex_;
+
77 };
+
78 
+
79 class GPGFRONTEND_CORE_EXPORT CacheManager
+
80  : public QObject,
+
81  public SingletonFunctionObject<CacheManager> {
+
82  Q_OBJECT
+
83  public:
+
84  CacheManager(int channel = SingletonFunctionObject::GetDefaultChannel());
+
85 
+
86  void SaveCache(std::string key, const nlohmann::json& value,
+
87  bool flush = false);
+
88 
+
89  nlohmann::json LoadCache(std::string key);
+
90 
+
91  nlohmann::json LoadCache(std::string key, nlohmann::json default_value);
+
92 
+
93  private:
+
94  std::string get_data_object_key(std::string key);
+
95 
+
96  nlohmann::json load_cache_storage(std::string key,
+
97  nlohmann::json default_value);
+
98 
+
99  void load_all_cache_storage();
+
100 
+
101  void flush_cache_storage();
+
102 
+
103  void register_cache_key(std::string key);
+
104 
+
105  ThreadSafeMap<std::string, nlohmann::json> cache_storage_;
+
106  nlohmann::json key_storage_;
+
107  QTimer* m_timer_;
+
108  const std::string drk_key_ = "__cache_manage_data_register_key_list";
+
109 };
+
110 
+
111 } // namespace GpgFrontend
+
112 
+
113 #endif
+
GpgFrontend::CacheManager
Definition: CacheManager.h:81
+
GpgFrontend::SingletonFunctionObject
Definition: GpgFunctionObject.h:150
+
GpgFrontend::SingletonFunctionObject::GetDefaultChannel
static int GetDefaultChannel()
Get the Default Channel object.
Definition: GpgFunctionObject.h:251
+
GpgFrontend::ThreadSafeMap
Definition: CacheManager.h:39
GpgFrontend
Definition: CoreCommonUtil.cpp:31
diff --git a/docs/html/DataObjectOperator_8h_source.html b/docs/html/DataObjectOperator_8h_source.html index 9068c6ce..aa98b269 100644 --- a/docs/html/DataObjectOperator_8h_source.html +++ b/docs/html/DataObjectOperator_8h_source.html @@ -90,49 +90,48 @@ $(document).ready(function(){initNavTree('DataObjectOperator_8h_source.html','')
29 #ifndef GPGFRONTEND_DATAOBJECTOPERATOR_H
30 #define GPGFRONTEND_DATAOBJECTOPERATOR_H
31 
-
32 #include "core/GpgFrontendCore.h"
-
33 #include "core/GpgFunctionObject.h"
-
34 #include "core/function/GlobalSettingStation.h"
-
35 
-
36 namespace GpgFrontend {
-
37 
-
38 class GPGFRONTEND_CORE_EXPORT DataObjectOperator
-
39  : public SingletonFunctionObject<DataObjectOperator> {
-
40  public:
-
46  explicit DataObjectOperator(
-
47  int channel = SingletonFunctionObject::GetDefaultChannel());
-
48 
-
49  std::string SaveDataObj(const std::string &_key, const nlohmann::json &value);
-
50 
-
51  std::optional<nlohmann::json> GetDataObject(const std::string &_key);
-
52 
-
53  std::optional<nlohmann::json> GetDataObjectByRef(const std::string &_ref);
-
54 
-
55  private:
-
60  void init_app_secure_key();
-
61 
-
62  GlobalSettingStation &global_setting_station_ =
-
63  GlobalSettingStation::GetInstance();
-
64  std::filesystem::path app_secure_path_ =
-
65  global_setting_station_.GetAppConfigPath() /
-
66  "secure";
-
67  std::filesystem::path app_secure_key_path_ =
-
68  app_secure_path_ / "app.key";
-
69  std::filesystem::path app_data_objs_path_ =
-
70  global_setting_station_.GetAppDataPath() / "data_objs";
-
73 
-
74  std::random_device rd_;
-
75  std::mt19937 mt_ = std::mt19937(rd_());
-
76  QByteArray hash_key_;
-
77 };
-
78 
-
79 } // namespace GpgFrontend
-
80 
-
81 #endif // GPGFRONTEND_DATAOBJECTOPERATOR_H
-
GpgFrontend::DataObjectOperator
Definition: DataObjectOperator.h:39
-
GpgFrontend::DataObjectOperator::rd_
std::random_device rd_
Random device.
Definition: DataObjectOperator.h:74
-
GpgFrontend::DataObjectOperator::hash_key_
QByteArray hash_key_
Hash key.
Definition: DataObjectOperator.h:76
-
GpgFrontend::GlobalSettingStation
Definition: GlobalSettingStation.h:43
+
32 #include "core/GpgFunctionObject.h"
+
33 #include "core/function/GlobalSettingStation.h"
+
34 
+
35 namespace GpgFrontend {
+
36 
+
37 class GPGFRONTEND_CORE_EXPORT DataObjectOperator
+
38  : public SingletonFunctionObject<DataObjectOperator> {
+
39  public:
+
45  explicit DataObjectOperator(
+
46  int channel = SingletonFunctionObject::GetDefaultChannel());
+
47 
+
48  std::string SaveDataObj(const std::string &_key, const nlohmann::json &value);
+
49 
+
50  std::optional<nlohmann::json> GetDataObject(const std::string &_key);
+
51 
+
52  std::optional<nlohmann::json> GetDataObjectByRef(const std::string &_ref);
+
53 
+
54  private:
+
59  void init_app_secure_key();
+
60 
+
61  GlobalSettingStation &global_setting_station_ =
+
62  GlobalSettingStation::GetInstance();
+
63  std::filesystem::path app_secure_path_ =
+
64  global_setting_station_.GetAppConfigPath() /
+
65  "secure";
+
66  std::filesystem::path app_secure_key_path_ =
+
67  app_secure_path_ / "app.key";
+
68  std::filesystem::path app_data_objs_path_ =
+
69  global_setting_station_.GetAppDataPath() / "data_objs";
+
72 
+
73  std::random_device rd_;
+
74  std::mt19937 mt_ = std::mt19937(rd_());
+
75  QByteArray hash_key_;
+
76 };
+
77 
+
78 } // namespace GpgFrontend
+
79 
+
80 #endif // GPGFRONTEND_DATAOBJECTOPERATOR_H
+
GpgFrontend::DataObjectOperator
Definition: DataObjectOperator.h:38
+
GpgFrontend::DataObjectOperator::rd_
std::random_device rd_
Random device.
Definition: DataObjectOperator.h:73
+
GpgFrontend::DataObjectOperator::hash_key_
QByteArray hash_key_
Hash key.
Definition: DataObjectOperator.h:75
+
GpgFrontend::GlobalSettingStation
Definition: GlobalSettingStation.h:47
GpgFrontend::SingletonFunctionObject
Definition: GpgFunctionObject.h:150
GpgFrontend::SingletonFunctionObject::GetDefaultChannel
static int GetDefaultChannel()
Get the Default Channel object.
Definition: GpgFunctionObject.h:251
GpgFrontend::SingletonFunctionObject< GlobalSettingStation >::GetInstance
static GlobalSettingStation & GetInstance(int channel=GpgFrontend::GPGFRONTEND_DEFAULT_CHANNEL)
Get the Instance object.
Definition: GpgFunctionObject.h:172
diff --git a/docs/html/GlobalSettingStation_8h_source.html b/docs/html/GlobalSettingStation_8h_source.html index 0f11b343..c30133e0 100644 --- a/docs/html/GlobalSettingStation_8h_source.html +++ b/docs/html/GlobalSettingStation_8h_source.html @@ -90,126 +90,146 @@ $(document).ready(function(){initNavTree('GlobalSettingStation_8h_source.html','
29 #ifndef GPGFRONTEND_GLOBALSETTINGSTATION_H
30 #define GPGFRONTEND_GLOBALSETTINGSTATION_H
31 
-
32 #include "GpgFrontendBuildInstallInfo.h"
-
33 #include "core/GpgFrontendCore.h"
-
34 #include "core/GpgFunctionObject.h"
+
32 #include <sys/_types/_int64_t.h>
+
33 
+
34 #include <filesystem>
35 
-
36 namespace GpgFrontend {
-
37 
-
42 class GPGFRONTEND_CORE_EXPORT GlobalSettingStation
-
43  : public SingletonFunctionObject<GlobalSettingStation> {
-
44  public:
-
49  explicit GlobalSettingStation(
-
50  int channel = SingletonFunctionObject::GetDefaultChannel()) noexcept;
-
51 
-
56  ~GlobalSettingStation() noexcept override;
-
57 
-
63  libconfig::Setting &GetUISettings() noexcept;
-
64 
-
70  template <typename T>
-
71  T LookupSettings(std::string path, T default_value) noexcept {
-
72  T value = default_value;
-
73  try {
-
74  value = static_cast<T>(GetUISettings().lookup(path));
-
75  } catch (...) {
-
76  SPDLOG_WARN("setting not found: {}", path);
-
77  }
-
78  return value;
-
79  }
-
80 
-
86  [[nodiscard]] std::filesystem::path GetAppDir() const { return app_path_; }
-
87 
-
88  [[nodiscard]] std::filesystem::path GetAppDataPath() const {
-
89  return app_data_path_;
-
90  }
+
36 #include "GpgFrontendBuildInstallInfo.h"
+
37 #include "core/GpgFrontendCore.h"
+
38 #include "core/GpgFunctionObject.h"
+
39 
+
40 namespace GpgFrontend {
+
41 
+
46 class GPGFRONTEND_CORE_EXPORT GlobalSettingStation
+
47  : public SingletonFunctionObject<GlobalSettingStation> {
+
48  public:
+
53  explicit GlobalSettingStation(
+
54  int channel = SingletonFunctionObject::GetDefaultChannel()) noexcept;
+
55 
+
60  ~GlobalSettingStation() noexcept override;
+
61 
+
67  libconfig::Setting &GetUISettings() noexcept;
+
68 
+
74  template <typename T>
+
75  T LookupSettings(std::string path, T default_value) noexcept {
+
76  T value = default_value;
+
77  try {
+
78  value = static_cast<T>(GetUISettings().lookup(path));
+
79  } catch (...) {
+
80  SPDLOG_WARN("setting not found: {}", path);
+
81  }
+
82  return value;
+
83  }
+
84 
+
90  [[nodiscard]] std::filesystem::path GetAppDir() const { return app_path_; }
91 
-
97  [[nodiscard]] std::filesystem::path GetLogDir() const {
-
98  return app_log_path_;
-
99  }
-
100 
-
106  [[nodiscard]] std::filesystem::path GetStandaloneDatabaseDir() const {
-
107  auto db_path = app_configure_path_ / "db";
-
108  if (!std::filesystem::exists(db_path)) {
-
109  std::filesystem::create_directory(db_path);
-
110  }
-
111  return db_path;
-
112  }
-
113 
-
114  [[nodiscard]] std::filesystem::path GetAppConfigPath() const {
-
115  return app_configure_path_;
+
92  [[nodiscard]] std::filesystem::path GetAppDataPath() const {
+
93  return app_data_path_;
+
94  }
+
95 
+
101  [[nodiscard]] std::filesystem::path GetLogDir() const {
+
102  return app_log_path_;
+
103  }
+
104 
+
110  [[nodiscard]] std::filesystem::path GetStandaloneDatabaseDir() const {
+
111  auto db_path = app_configure_path_ / "db";
+
112  if (!std::filesystem::exists(db_path)) {
+
113  std::filesystem::create_directory(db_path);
+
114  }
+
115  return db_path;
116  }
117 
-
123  [[nodiscard]] std::filesystem::path GetStandaloneGpgBinDir() const {
-
124  return app_resource_path_ / "gpg1.4" / "gpg";
-
125  }
-
126 
-
132  [[nodiscard]] std::filesystem::path GetLocaleDir() const {
-
133  return app_locale_path_;
-
134  }
-
135 
-
141  [[nodiscard]] std::filesystem::path GetResourceDir() const {
-
142  return app_resource_path_;
-
143  }
-
144 
-
150  [[nodiscard]] std::filesystem::path GetCertsDir() const {
-
151  return app_resource_path_ / "certs";
-
152  }
-
153 
-
158  void SyncSettings() noexcept;
+
118  [[nodiscard]] std::filesystem::path GetAppConfigPath() const {
+
119  return app_configure_path_;
+
120  }
+
121 
+
127  [[nodiscard]] std::filesystem::path GetStandaloneGpgBinDir() const {
+
128  return app_resource_path_ / "gpg1.4" / "gpg";
+
129  }
+
130 
+
136  [[nodiscard]] std::filesystem::path GetLocaleDir() const {
+
137  return app_locale_path_;
+
138  }
+
139 
+
145  [[nodiscard]] std::filesystem::path GetResourceDir() const {
+
146  return app_resource_path_;
+
147  }
+
148 
+
154  [[nodiscard]] std::filesystem::path GetCertsDir() const {
+
155  return app_resource_path_ / "certs";
+
156  }
+
157 
+
158  [[nodiscard]] std::string GetLogFilesSize() const;
159 
-
160  private:
-
161  std::filesystem::path app_path_ = QCoreApplication::applicationDirPath()
-
162  .toStdString();
-
163  std::filesystem::path app_data_path_ =
-
164  QStandardPaths::writableLocation(QStandardPaths::AppLocalDataLocation)
-
165  .toStdString();
-
166  std::filesystem::path app_log_path_ =
-
167  app_data_path_ / "logs";
-
168  std::filesystem::path app_data_objs_path_ =
-
169  app_data_path_ / "objs";
-
170 
-
171 #ifdef LINUX_INSTALL_BUILD
-
172  std::filesystem::path app_resource_path_ =
-
173  std::filesystem::path(APP_LOCALSTATE_PATH) /
-
174  "gpgfrontend";
-
175 #else
-
176  std::filesystem::path app_resource_path_ =
-
177  RESOURCE_DIR_BOOST_PATH(app_path_);
-
178 #endif
-
179 
-
180 #ifdef LINUX_INSTALL_BUILD
-
181  std::filesystem::path app_locale_path_ =
-
182  std::string(APP_LOCALE_PATH);
-
183 #else
-
184  std::filesystem::path app_locale_path_ =
-
185  app_resource_path_ / "locales";
-
186 #endif
-
187 
-
188  std::filesystem::path app_configure_path_ =
-
189  QStandardPaths::writableLocation(QStandardPaths::AppConfigLocation)
-
190  .toStdString();
-
191  std::filesystem::path ui_config_dir_path_ =
-
192  app_configure_path_ / "conf";
-
193  std::filesystem::path ui_config_path_ =
-
194  ui_config_dir_path_ / "main.cfg";
-
195 
-
196  libconfig::Config ui_cfg_;
-
197 
-
202  void init_app_secure_key();
-
203 };
-
204 } // namespace GpgFrontend
-
205 
-
206 #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:132
-
GpgFrontend::GlobalSettingStation::ui_cfg_
libconfig::Config ui_cfg_
UI Configure File.
Definition: GlobalSettingStation.h:196
-
GpgFrontend::GlobalSettingStation::GetCertsDir
std::filesystem::path GetCertsDir() const
Get the Certs Dir object.
Definition: GlobalSettingStation.h:150
-
GpgFrontend::GlobalSettingStation::GetLogDir
std::filesystem::path GetLogDir() const
Get the Log Dir object.
Definition: GlobalSettingStation.h:97
-
GpgFrontend::GlobalSettingStation::GetStandaloneGpgBinDir
std::filesystem::path GetStandaloneGpgBinDir() const
Get the Standalone Gpg Bin Dir object.
Definition: GlobalSettingStation.h:123
-
GpgFrontend::GlobalSettingStation::GetAppDir
std::filesystem::path GetAppDir() const
Get the App Dir object.
Definition: GlobalSettingStation.h:86
-
GpgFrontend::GlobalSettingStation::GetStandaloneDatabaseDir
std::filesystem::path GetStandaloneDatabaseDir() const
Get the Standalone Database Dir object.
Definition: GlobalSettingStation.h:106
+
160  [[nodiscard]] std::string GetDataObjectsFilesSize() const;
+
161 
+
162  void ClearAllLogFiles() const;
+
163 
+
164  void ClearAllDataObjects() const;
+
165 
+
170  void SyncSettings() noexcept;
+
171 
+
172  private:
+
173  std::filesystem::path app_path_ = QCoreApplication::applicationDirPath()
+
174  .toStdString();
+
175  std::filesystem::path app_data_path_ =
+
176  QStandardPaths::writableLocation(QStandardPaths::AppLocalDataLocation)
+
177  .toStdString();
+
178  std::filesystem::path app_log_path_ =
+
179  app_data_path_ / "logs";
+
180  std::filesystem::path app_data_objs_path_ =
+
181  app_data_path_ / "data_objs";
+
182 
+
183 #ifdef LINUX_INSTALL_BUILD
+
184  std::filesystem::path app_resource_path_ =
+
185  std::filesystem::path(APP_LOCALSTATE_PATH) /
+
186  "gpgfrontend";
+
187 #else
+
188  std::filesystem::path app_resource_path_ =
+
189  RESOURCE_DIR_BOOST_PATH(app_path_);
+
190 #endif
+
191 
+
192 #ifdef LINUX_INSTALL_BUILD
+
193  std::filesystem::path app_locale_path_ =
+
194  std::string(APP_LOCALE_PATH);
+
195 #else
+
196  std::filesystem::path app_locale_path_ =
+
197  app_resource_path_ / "locales";
+
198 #endif
+
199 
+
200  std::filesystem::path app_configure_path_ =
+
201  QStandardPaths::writableLocation(QStandardPaths::AppConfigLocation)
+
202  .toStdString();
+
203  std::filesystem::path ui_config_dir_path_ =
+
204  app_configure_path_ / "conf";
+
205  std::filesystem::path ui_config_path_ =
+
206  ui_config_dir_path_ / "main.cfg";
+
207 
+
208  libconfig::Config ui_cfg_;
+
209 
+
214  void init_app_secure_key();
+
215 
+
220  int64_t get_files_size_at_path(std::filesystem::path path,
+
221  std::string filename_pattern) const;
+
222 
+
227  std::string get_human_readable_size(int64_t size) const;
+
228 
+
233  void delete_all_files(std::filesystem::path path,
+
234  std::string filename_pattern) const;
+
235 };
+
236 } // namespace GpgFrontend
+
237 
+
238 #endif // GPGFRONTEND_GLOBALSETTINGSTATION_H
+
GpgFrontend::GlobalSettingStation
Definition: GlobalSettingStation.h:47
+
GpgFrontend::GlobalSettingStation::GetLocaleDir
std::filesystem::path GetLocaleDir() const
Get the Locale Dir object.
Definition: GlobalSettingStation.h:136
+
GpgFrontend::GlobalSettingStation::ui_cfg_
libconfig::Config ui_cfg_
UI Configure File.
Definition: GlobalSettingStation.h:208
+
GpgFrontend::GlobalSettingStation::GetCertsDir
std::filesystem::path GetCertsDir() const
Get the Certs Dir object.
Definition: GlobalSettingStation.h:154
+
GpgFrontend::GlobalSettingStation::GetLogDir
std::filesystem::path GetLogDir() const
Get the Log Dir object.
Definition: GlobalSettingStation.h:101
+
GpgFrontend::GlobalSettingStation::GetStandaloneGpgBinDir
std::filesystem::path GetStandaloneGpgBinDir() const
Get the Standalone Gpg Bin Dir object.
Definition: GlobalSettingStation.h:127
+
GpgFrontend::GlobalSettingStation::GetAppDir
std::filesystem::path GetAppDir() const
Get the App Dir object.
Definition: GlobalSettingStation.h:90
+
GpgFrontend::GlobalSettingStation::GetStandaloneDatabaseDir
std::filesystem::path GetStandaloneDatabaseDir() const
Get the Standalone Database Dir object.
Definition: GlobalSettingStation.h:110
GpgFrontend::GlobalSettingStation::~GlobalSettingStation
~GlobalSettingStation() noexcept override
Destroy the Global Setting Station object.
-
GpgFrontend::GlobalSettingStation::GetResourceDir
std::filesystem::path GetResourceDir() const
Get the Resource Dir object.
Definition: GlobalSettingStation.h:141
+
GpgFrontend::GlobalSettingStation::GetResourceDir
std::filesystem::path GetResourceDir() const
Get the Resource Dir object.
Definition: GlobalSettingStation.h:145
GpgFrontend::SingletonFunctionObject
Definition: GpgFunctionObject.h:150
GpgFrontend::SingletonFunctionObject::GetDefaultChannel
static int GetDefaultChannel()
Get the Default Channel object.
Definition: GpgFunctionObject.h:251
GpgFrontend
Definition: CoreCommonUtil.cpp:31
diff --git a/docs/html/GpgKey_8h_source.html b/docs/html/GpgKey_8h_source.html index 6c5a23f9..031f2298 100644 --- a/docs/html/GpgKey_8h_source.html +++ b/docs/html/GpgKey_8h_source.html @@ -115,93 +115,95 @@ $(document).ready(function(){initNavTree('GpgKey_8h_source.html',''); initResiza
94 
100  [[nodiscard]] std::string GetOwnerTrust() const;
101 
-
107  [[nodiscard]] std::string GetPublicKeyAlgo() const;
+
107  [[nodiscard]] int GetOwnerTrustLevel() const;
108 
-
114  [[nodiscard]] boost::posix_time::ptime GetLastUpdateTime() const;
+
114  [[nodiscard]] std::string GetPublicKeyAlgo() const;
115 
-
121  [[nodiscard]] boost::posix_time::ptime GetExpireTime() const;
+
121  [[nodiscard]] boost::posix_time::ptime GetLastUpdateTime() const;
122 
-
128  [[nodiscard]] boost::posix_time::ptime GetCreateTime() const;
+
128  [[nodiscard]] boost::posix_time::ptime GetExpireTime() const;
129 
-
135  [[nodiscard]] unsigned int GetPrimaryKeyLength() const;
+
135  [[nodiscard]] boost::posix_time::ptime GetCreateTime() 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;
+
142  [[nodiscard]] unsigned int GetPrimaryKeyLength() const;
+
143 
+
150  [[nodiscard]] bool IsHasEncryptionCapability() const;
+
151 
+
159  [[nodiscard]] bool IsHasActualEncryptionCapability() const;
+
160 
+
167  [[nodiscard]] bool IsHasSigningCapability() const;
+
168 
+
175  [[nodiscard]] bool IsHasActualSigningCapability() const;
+
176 
+
183  [[nodiscard]] bool IsHasCertificationCapability() const;
+
184 
+
191  [[nodiscard]] bool IsHasActualCertificationCapability() const;
+
192 
+
199  [[nodiscard]] bool IsHasAuthenticationCapability() const;
+
200 
+
207  [[nodiscard]] bool IsHasActualAuthenticationCapability() const;
+
208 
+
215  [[nodiscard]] bool IsHasCardKey() const;
+
216 
+
223  [[nodiscard]] bool IsPrivateKey() const;
+
224 
+
231  [[nodiscard]] bool IsExpired() const;
+
232 
+
239  [[nodiscard]] bool IsRevoked() const;
+
240 
+
247  [[nodiscard]] bool IsDisabled() const;
+
248 
+
255  [[nodiscard]] bool IsHasMasterKey() const;
256 
-
262  [[nodiscard]] std::unique_ptr<std::vector<GpgUID>> GetUIDs() const;
+
262  [[nodiscard]] std::unique_ptr<std::vector<GpgSubKey>> GetSubKeys() const;
263 
-
268  GpgKey() = default;
-
269 
-
275  explicit GpgKey(gpgme_key_t&& key);
+
269  [[nodiscard]] std::unique_ptr<std::vector<GpgUID>> GetUIDs() const;
+
270 
+
275  GpgKey() = default;
276 
-
281  ~GpgKey() = default;
-
282 
-
288  GpgKey(const gpgme_key_t& key) = delete;
+
282  explicit GpgKey(gpgme_key_t&& key);
+
283 
+
288  ~GpgKey() = default;
289 
-
295  GpgKey(GpgKey&& k) noexcept;
+
295  GpgKey(const gpgme_key_t& key) = delete;
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;
+
302  GpgKey(GpgKey&& k) noexcept;
+
303 
+
310  GpgKey& operator=(GpgKey&& k) noexcept;
+
311 
+
318  GpgKey& operator=(const gpgme_key_t& key) = delete;
+
319 
+
327  bool operator==(const GpgKey& o) const;
+
328 
+
336  bool operator<=(const GpgKey& o) const;
337 
-
343  [[nodiscard]] GpgKey Copy() const;
+
343  explicit operator gpgme_key_t() 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
+
350  [[nodiscard]] GpgKey Copy() const;
+
351 
+
352  private:
+
357  struct GPGFRONTEND_CORE_EXPORT _key_ref_deleter {
+
358  void operator()(gpgme_key_t _key);
+
359  };
+
360 
+
361  using KeyRefHandler =
+
362  std::unique_ptr<struct _gpgme_key, _key_ref_deleter>;
363 
-
364 #endif // GPGFRONTEND_GPGKEY_H
+
364  KeyRefHandler key_ref_ = nullptr;
+
365 
+
366  mutable std::mutex gpgme_key_opera_mutex; // mutex for gpgme key operations
+
367 };
+
368 
+
369 } // namespace GpgFrontend
+
370 
+
371 #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:31
-
GpgFrontend::GpgKey::_key_ref_deleter
Definition: GpgKey.h:350
+
GpgFrontend::GpgKey::_key_ref_deleter
Definition: GpgKey.h:357
diff --git a/docs/html/KeyList_8h_source.html b/docs/html/KeyList_8h_source.html index 12948dca..eaac1016 100644 --- a/docs/html/KeyList_8h_source.html +++ b/docs/html/KeyList_8h_source.html @@ -90,196 +90,210 @@ $(document).ready(function(){initNavTree('KeyList_8h_source.html',''); initResiz
29 #ifndef __KEYLIST_H__
30 #define __KEYLIST_H__
31 
-
32 #include <utility>
-
33 
-
34 #include "core/GpgContext.h"
-
35 #include "ui/dialog/import_export/KeyImportDetailDialog.h"
-
36 
-
37 class Ui_KeyList;
-
38 
-
39 namespace GpgFrontend::UI {
-
40 
-
45 struct KeyListRow {
-
46  using KeyType = unsigned int;
-
47 
-
48  static const KeyType SECRET_OR_PUBLIC_KEY = 0;
-
49  static const KeyType ONLY_SECRET_KEY = 1;
-
50 };
-
51 
-
56 struct KeyListColumn {
-
57  using InfoType = unsigned int;
-
58 
-
59  static constexpr InfoType ALL = ~0;
-
60  static constexpr InfoType TYPE = 1 << 0;
-
61  static constexpr InfoType NAME = 1 << 1;
-
62  static constexpr InfoType EmailAddress = 1 << 2;
-
63  static constexpr InfoType Usage = 1 << 3;
-
64  static constexpr InfoType Validity = 1 << 4;
-
65  static constexpr InfoType FingerPrint = 1 << 5;
-
66 };
-
67 
-
72 struct KeyMenuAbility {
-
73  using AbilityType = unsigned int;
-
74 
-
75  static constexpr AbilityType ALL = ~0;
-
76  static constexpr AbilityType NONE = 0;
-
77  static constexpr AbilityType REFRESH = 1 << 0;
-
78  static constexpr AbilityType SYNC_PUBLIC_KEY = 1 << 1;
-
79  static constexpr AbilityType UNCHECK_ALL = 1 << 3;
-
80  static constexpr AbilityType CHECK_ALL = 1 << 5;
-
81 };
-
82 
-
87 struct KeyTable {
-
88  QTableWidget* key_list_;
-
89  KeyListRow::KeyType select_type_;
-
90  KeyListColumn::InfoType info_type_;
-
91  std::vector<GpgKey> buffered_keys_;
-
92  std::function<bool(const GpgKey&)> filter_;
-
93  KeyIdArgsListPtr checked_key_ids_;
-
94 
-
103  KeyTable(
-
104  QTableWidget* _key_list, KeyListRow::KeyType _select_type,
-
105  KeyListColumn::InfoType _info_type,
-
106  std::function<bool(const GpgKey&)> _filter = [](const GpgKey&) -> bool {
-
107  return true;
-
108  })
-
109  : key_list_(_key_list),
-
110  select_type_(_select_type),
-
111  info_type_(_info_type),
-
112  filter_(std::move(_filter)) {}
-
113 
-
119  void Refresh(KeyLinkListPtr m_keys = nullptr);
-
120 
-
126  KeyIdArgsListPtr& GetChecked();
-
127 
-
132  void UncheckALL() const;
+
32 #include <string>
+
33 #include <utility>
+
34 
+
35 #include "core/GpgContext.h"
+
36 #include "ui/dialog/import_export/KeyImportDetailDialog.h"
+
37 
+
38 class Ui_KeyList;
+
39 
+
40 namespace GpgFrontend::UI {
+
41 
+
46 struct KeyListRow {
+
47  using KeyType = unsigned int;
+
48 
+
49  static const KeyType SECRET_OR_PUBLIC_KEY = 0;
+
50  static const KeyType ONLY_SECRET_KEY = 1;
+
51 };
+
52 
+
57 struct KeyListColumn {
+
58  using InfoType = unsigned int;
+
59 
+
60  static constexpr InfoType ALL = ~0;
+
61  static constexpr InfoType TYPE = 1 << 0;
+
62  static constexpr InfoType NAME = 1 << 1;
+
63  static constexpr InfoType EmailAddress = 1 << 2;
+
64  static constexpr InfoType Usage = 1 << 3;
+
65  static constexpr InfoType Validity = 1 << 4;
+
66  static constexpr InfoType FingerPrint = 1 << 5;
+
67 };
+
68 
+
73 struct KeyMenuAbility {
+
74  using AbilityType = unsigned int;
+
75 
+
76  static constexpr AbilityType ALL = ~0;
+
77  static constexpr AbilityType NONE = 0;
+
78  static constexpr AbilityType REFRESH = 1 << 0;
+
79  static constexpr AbilityType SYNC_PUBLIC_KEY = 1 << 1;
+
80  static constexpr AbilityType UNCHECK_ALL = 1 << 3;
+
81  static constexpr AbilityType CHECK_ALL = 1 << 5;
+
82  static constexpr AbilityType SEARCH_BAR = 1 << 6;
+
83 };
+
84 
+
89 struct KeyTable {
+
90  using KeyTableFilter = std::function<bool(const GpgKey&, const KeyTable&)>;
+
91 
+
92  QTableWidget* key_list_;
+
93  KeyListRow::KeyType select_type_;
+
94  KeyListColumn::InfoType info_type_;
+
95  std::vector<GpgKey> buffered_keys_;
+
96  KeyTableFilter filter_;
+
97  KeyIdArgsListPtr checked_key_ids_;
+
98  KeyMenuAbility::AbilityType ability_;
+
99  std::string keyword_;
+
100 
+
109  KeyTable(
+
110  QTableWidget* _key_list, KeyListRow::KeyType _select_type,
+
111  KeyListColumn::InfoType _info_type,
+
112  KeyTableFilter _filter = [](const GpgKey&, const KeyTable&) -> bool {
+
113  return true;
+
114  })
+
115  : key_list_(_key_list),
+
116  select_type_(_select_type),
+
117  info_type_(_info_type),
+
118  filter_(std::move(_filter)) {}
+
119 
+
125  void Refresh(KeyLinkListPtr m_keys = nullptr);
+
126 
+
132  KeyIdArgsListPtr& GetChecked();
133 
-
138  void CheckALL() const;
+
138  void UncheckALL() const;
139 
-
145  void SetChecked(KeyIdArgsListPtr key_ids);
-
146 };
-
147 
-
152 class KeyList : public QWidget {
-
153  Q_OBJECT
-
154 
-
155  public:
-
162  explicit KeyList(KeyMenuAbility::AbilityType menu_ability,
-
163  QWidget* parent = nullptr);
-
164 
-
173  void AddListGroupTab(
-
174  const QString& name,
-
175  KeyListRow::KeyType selectType = KeyListRow::SECRET_OR_PUBLIC_KEY,
-
176  KeyListColumn::InfoType infoType = KeyListColumn::ALL,
-
177  const std::function<bool(const GpgKey&)>& filter =
-
178  [](const GpgKey&) -> bool { return true; });
-
179 
-
185  void SetDoubleClickedAction(
-
186  std::function<void(const GpgKey&, QWidget*)> action);
-
187 
-
194  void SetColumnWidth(int row, int size);
-
195 
-
201  void AddMenuAction(QAction* act);
-
202 
-
207  void AddSeparator();
-
208 
-
214  KeyIdArgsListPtr GetChecked();
-
215 
-
222  static KeyIdArgsListPtr GetChecked(const KeyTable& key_table);
-
223 
-
229  KeyIdArgsListPtr GetPrivateChecked();
-
230 
-
236  KeyIdArgsListPtr GetAllPrivateKeys();
-
237 
-
243  void SetChecked(KeyIdArgsListPtr key_ids);
-
244 
-
251  static void SetChecked(const KeyIdArgsListPtr& keyIds,
-
252  const KeyTable& key_table);
-
253 
-
259  KeyIdArgsListPtr GetSelected();
-
260 
-
266  std::string GetSelectedKey();
-
267 
-
273  [[maybe_unused]] static void MarkKeys(QStringList* keyIds);
-
274 
-
281  [[maybe_unused]] bool ContainsPrivateKeys();
-
282 
-
283  signals:
-
290  void SignalRefreshStatusBar(const QString& message, int timeout);
-
291 
-
296  void SignalRefreshDatabase();
-
297 
-
298  public slots:
-
299 
-
304  void SlotRefresh();
-
305 
-
306  private:
-
311  void init();
-
312 
-
318  void import_keys(const QByteArray& inBuffer);
-
319 
-
324  void uncheck_all();
-
325 
-
330  void check_all();
-
331 
-
332  std::mutex buffered_key_list_mutex_;
-
333 
-
334  std::shared_ptr<Ui_KeyList> ui_;
-
335  QTableWidget* m_key_list_{};
-
336  std::vector<KeyTable> m_key_tables_;
-
337  QMenu* popup_menu_{};
-
338  GpgFrontend::KeyLinkListPtr buffered_keys_list_;
-
339  std::function<void(const GpgKey&, QWidget*)> m_action_ = nullptr;
-
340  KeyMenuAbility::AbilityType menu_ability_ = KeyMenuAbility::ALL;
-
341 
-
342  private slots:
+
144  void CheckALL() const;
+
145 
+
151  void SetChecked(KeyIdArgsListPtr key_ids);
+
152 
+
157  void SetMenuAbility(KeyMenuAbility::AbilityType ability);
+
158 
+
163  void SetFilterKeyword(std::string keyword);
+
164 };
+
165 
+
170 class KeyList : public QWidget {
+
171  Q_OBJECT
+
172 
+
173  public:
+
180  explicit KeyList(KeyMenuAbility::AbilityType menu_ability,
+
181  QWidget* parent = nullptr);
+
182 
+
191  void AddListGroupTab(
+
192  const QString& name, const QString& id,
+
193  KeyListRow::KeyType selectType = KeyListRow::SECRET_OR_PUBLIC_KEY,
+
194  KeyListColumn::InfoType infoType = KeyListColumn::ALL,
+
195  const KeyTable::KeyTableFilter filter =
+
196  [](const GpgKey&, const KeyTable&) -> bool { return true; });
+
197 
+
203  void SetDoubleClickedAction(
+
204  std::function<void(const GpgKey&, QWidget*)> action);
+
205 
+
212  void SetColumnWidth(int row, int size);
+
213 
+
219  void AddMenuAction(QAction* act);
+
220 
+
225  void AddSeparator();
+
226 
+
232  KeyIdArgsListPtr GetChecked();
+
233 
+
240  static KeyIdArgsListPtr GetChecked(const KeyTable& key_table);
+
241 
+
247  KeyIdArgsListPtr GetPrivateChecked();
+
248 
+
254  KeyIdArgsListPtr GetAllPrivateKeys();
+
255 
+
261  void SetChecked(KeyIdArgsListPtr key_ids);
+
262 
+
269  static void SetChecked(const KeyIdArgsListPtr& keyIds,
+
270  const KeyTable& key_table);
+
271 
+
277  KeyIdArgsListPtr GetSelected();
+
278 
+
284  std::string GetSelectedKey();
+
285 
+
291  [[maybe_unused]] static void MarkKeys(QStringList* keyIds);
+
292 
+
299  [[maybe_unused]] bool ContainsPrivateKeys();
+
300 
+
301  signals:
+
308  void SignalRefreshStatusBar(const QString& message, int timeout);
+
309 
+
314  void SignalRefreshDatabase();
+
315 
+
316  public slots:
+
317 
+
322  void SlotRefresh();
+
323 
+
328  void SlotRefreshUI();
+
329 
+
330  private:
+
335  void init();
+
336 
+
342  void import_keys(const QByteArray& inBuffer);
343 
-
349  void slot_double_clicked(const QModelIndex& index);
-
350 
-
355  void slot_refresh_ui();
-
356 
-
361  void slot_sync_with_key_server();
-
362 
-
363  protected:
-
369  void contextMenuEvent(QContextMenuEvent* event) override;
-
370 
-
376  void dragEnterEvent(QDragEnterEvent* event) override;
-
377 
-
383  void dropEvent(QDropEvent* event) override;
-
384 };
-
385 
-
386 } // namespace GpgFrontend::UI
-
387 
-
388 #endif // __KEYLIST_H__
+
348  void uncheck_all();
+
349 
+
354  void check_all();
+
355 
+
360  void filter_by_keyword();
+
361 
+
362  std::mutex buffered_key_list_mutex_;
+
363 
+
364  std::shared_ptr<Ui_KeyList> ui_;
+
365  QTableWidget* m_key_list_{};
+
366  std::vector<KeyTable> m_key_tables_;
+
367  QMenu* popup_menu_{};
+
368  GpgFrontend::KeyLinkListPtr buffered_keys_list_;
+
369  std::function<void(const GpgKey&, QWidget*)> m_action_ = nullptr;
+
370  KeyMenuAbility::AbilityType menu_ability_ = KeyMenuAbility::ALL;
+
371 
+
372  private slots:
+
373 
+
379  void slot_double_clicked(const QModelIndex& index);
+
380 
+
385  void slot_refresh_ui();
+
386 
+
391  void slot_sync_with_key_server();
+
392 
+
393  protected:
+
399  void contextMenuEvent(QContextMenuEvent* event) override;
+
400 
+
406  void dragEnterEvent(QDragEnterEvent* event) override;
+
407 
+
413  void dropEvent(QDropEvent* event) override;
+
414 };
+
415 
+
416 } // namespace GpgFrontend::UI
+
417 
+
418 #endif // __KEYLIST_H__
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:260
-
GpgFrontend::UI::KeyList::ContainsPrivateKeys
bool ContainsPrivateKeys()
Definition: KeyList.cpp:277
-
GpgFrontend::UI::KeyList::dropEvent
void dropEvent(QDropEvent *event) override
Definition: KeyList.cpp:309
-
GpgFrontend::UI::KeyList::MarkKeys
static void MarkKeys(QStringList *keyIds)
Definition: KeyList.cpp:383
-
GpgFrontend::UI::KeyList::SetChecked
void SetChecked(KeyIdArgsListPtr key_ids)
Set the Checked object.
Definition: KeyList.cpp:246
-
GpgFrontend::UI::KeyList::slot_double_clicked
void slot_double_clicked(const QModelIndex &index)
Definition: KeyList.cpp:396
-
GpgFrontend::UI::KeyList::AddListGroupTab
void AddListGroupTab(const QString &name, KeyListRow::KeyType selectType=KeyListRow::SECRET_OR_PUBLIC_KEY, KeyListColumn::InfoType infoType=KeyListColumn::ALL, const std::function< bool(const GpgKey &)> &filter=[](const GpgKey &) -> bool { return true;})
Definition: KeyList.cpp:106
-
GpgFrontend::UI::KeyList::KeyList
KeyList(KeyMenuAbility::AbilityType menu_ability, QWidget *parent=nullptr)
Construct a new Key List object.
Definition: KeyList.cpp:44
-
GpgFrontend::UI::KeyList::SetDoubleClickedAction
void SetDoubleClickedAction(std::function< void(const GpgKey &, QWidget *)> action)
Set the Double Clicked Action object.
Definition: KeyList.cpp:407
-
GpgFrontend::UI::KeyList::GetAllPrivateKeys
KeyIdArgsListPtr GetAllPrivateKeys()
Get the All Private Keys object.
Definition: KeyList.cpp:202
-
GpgFrontend::UI::KeyList::GetPrivateChecked
KeyIdArgsListPtr GetPrivateChecked()
Get the Private Checked object.
Definition: KeyList.cpp:216
-
GpgFrontend::UI::KeyList::contextMenuEvent
void contextMenuEvent(QContextMenuEvent *event) override
Definition: KeyList.cpp:296
+
GpgFrontend::UI::KeyList
Definition: KeyList.h:170
+
GpgFrontend::UI::KeyList::GetSelected
KeyIdArgsListPtr GetSelected()
Get the Selected object.
Definition: KeyList.cpp:275
+
GpgFrontend::UI::KeyList::ContainsPrivateKeys
bool ContainsPrivateKeys()
Definition: KeyList.cpp:292
+
GpgFrontend::UI::KeyList::dropEvent
void dropEvent(QDropEvent *event) override
Definition: KeyList.cpp:348
+
GpgFrontend::UI::KeyList::MarkKeys
static void MarkKeys(QStringList *keyIds)
Definition: KeyList.cpp:422
+
GpgFrontend::UI::KeyList::SetChecked
void SetChecked(KeyIdArgsListPtr key_ids)
Set the Checked object.
Definition: KeyList.cpp:261
+
GpgFrontend::UI::KeyList::slot_double_clicked
void slot_double_clicked(const QModelIndex &index)
Definition: KeyList.cpp:435
+
GpgFrontend::UI::KeyList::KeyList
KeyList(KeyMenuAbility::AbilityType menu_ability, QWidget *parent=nullptr)
Construct a new Key List object.
Definition: KeyList.cpp:46
+
GpgFrontend::UI::KeyList::SetDoubleClickedAction
void SetDoubleClickedAction(std::function< void(const GpgKey &, QWidget *)> action)
Set the Double Clicked Action object.
Definition: KeyList.cpp:446
+
GpgFrontend::UI::KeyList::GetAllPrivateKeys
KeyIdArgsListPtr GetAllPrivateKeys()
Get the All Private Keys object.
Definition: KeyList.cpp:217
+
GpgFrontend::UI::KeyList::GetPrivateChecked
KeyIdArgsListPtr GetPrivateChecked()
Get the Private Checked object.
Definition: KeyList.cpp:231
+
GpgFrontend::UI::KeyList::contextMenuEvent
void contextMenuEvent(QContextMenuEvent *event) override
Definition: KeyList.cpp:311
GpgFrontend::UI::KeyList::SignalRefreshStatusBar
void SignalRefreshStatusBar(const QString &message, int timeout)
-
GpgFrontend::UI::KeyList::AddMenuAction
void AddMenuAction(QAction *act)
Definition: KeyList.cpp:307
-
GpgFrontend::UI::KeyList::SetColumnWidth
void SetColumnWidth(int row, int size)
Set the Column Width object.
Definition: KeyList.cpp:289
-
GpgFrontend::UI::KeyList::GetSelectedKey
std::string GetSelectedKey()
Get the Selected Key object.
Definition: KeyList.cpp:412
-
GpgFrontend::UI::KeyList::import_keys
void import_keys(const QByteArray &inBuffer)
Definition: KeyList.cpp:389
-
GpgFrontend::UI::KeyList::GetChecked
KeyIdArgsListPtr GetChecked()
Get the Checked object.
Definition: KeyList.cpp:188
-
GpgFrontend::UI::KeyList::dragEnterEvent
void dragEnterEvent(QDragEnterEvent *event) override
Definition: KeyList.cpp:376
+
GpgFrontend::UI::KeyList::AddMenuAction
void AddMenuAction(QAction *act)
Definition: KeyList.cpp:346
+
GpgFrontend::UI::KeyList::SetColumnWidth
void SetColumnWidth(int row, int size)
Set the Column Width object.
Definition: KeyList.cpp:304
+
GpgFrontend::UI::KeyList::GetSelectedKey
std::string GetSelectedKey()
Get the Selected Key object.
Definition: KeyList.cpp:451
+
GpgFrontend::UI::KeyList::import_keys
void import_keys(const QByteArray &inBuffer)
Definition: KeyList.cpp:428
+
GpgFrontend::UI::KeyList::AddListGroupTab
void AddListGroupTab(const QString &name, const QString &id, KeyListRow::KeyType selectType=KeyListRow::SECRET_OR_PUBLIC_KEY, KeyListColumn::InfoType infoType=KeyListColumn::ALL, const KeyTable::KeyTableFilter filter=[](const GpgKey &, const KeyTable &) -> bool { return true;})
Definition: KeyList.cpp:114
+
GpgFrontend::UI::KeyList::GetChecked
KeyIdArgsListPtr GetChecked()
Get the Checked object.
Definition: KeyList.cpp:203
+
GpgFrontend::UI::KeyList::dragEnterEvent
void dragEnterEvent(QDragEnterEvent *event) override
Definition: KeyList.cpp:415
GpgFrontend::UI
Definition: FileReadTask.cpp:29
-
GpgFrontend::UI::KeyListColumn
Definition: KeyList.h:56
-
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:504
-
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:523
-
GpgFrontend::UI::KeyTable::SetChecked
void SetChecked(KeyIdArgsListPtr key_ids)
Set the Checked object.
Definition: KeyList.cpp:519
+
GpgFrontend::UI::KeyListColumn
Definition: KeyList.h:57
+
GpgFrontend::UI::KeyListRow
Definition: KeyList.h:46
+
GpgFrontend::UI::KeyMenuAbility
Definition: KeyList.h:73
+
GpgFrontend::UI::KeyTable
Definition: KeyList.h:89
+
GpgFrontend::UI::KeyTable::GetChecked
KeyIdArgsListPtr & GetChecked()
Get the Checked object.
Definition: KeyList.cpp:558
+
GpgFrontend::UI::KeyTable::Refresh
void Refresh(KeyLinkListPtr m_keys=nullptr)
Definition: KeyList.cpp:577
+
GpgFrontend::UI::KeyTable::SetChecked
void SetChecked(KeyIdArgsListPtr key_ids)
Set the Checked object.
Definition: KeyList.cpp:573
+
GpgFrontend::UI::KeyTable::KeyTable
KeyTable(QTableWidget *_key_list, KeyListRow::KeyType _select_type, KeyListColumn::InfoType _info_type, KeyTableFilter _filter=[](const GpgKey &, const KeyTable &) -> bool { return true;})
Construct a new Key Table object.
Definition: KeyList.h:109
diff --git a/docs/html/KeyMgmt_8h_source.html b/docs/html/KeyMgmt_8h_source.html index 187c5df9..a2f53fc3 100644 --- a/docs/html/KeyMgmt_8h_source.html +++ b/docs/html/KeyMgmt_8h_source.html @@ -168,12 +168,12 @@ $(document).ready(function(){initNavTree('KeyMgmt_8h_source.html',''); initResiz
177 
178 #endif // __KEYMGMT_H__
GpgFrontend::UI::GeneralMainWindow
Definition: GeneralMainWindow.h:39
-
GpgFrontend::UI::KeyList
Definition: KeyList.h:152
+
GpgFrontend::UI::KeyList
Definition: KeyList.h:170
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:281
-
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:248
-
GpgFrontend::UI::KeyMgmt::create_menus
void create_menus()
Create a menus object.
Definition: KeyMgmt.cpp:225
+
GpgFrontend::UI::KeyMgmt::delete_keys_with_warning
void delete_keys_with_warning(GpgFrontend::KeyIdArgsListPtr uidList)
Definition: KeyMgmt.cpp:285
+
GpgFrontend::UI::KeyMgmt::create_actions
void create_actions()
Create a actions object.
Definition: KeyMgmt.cpp:128
+
GpgFrontend::UI::KeyMgmt::create_tool_bars
void create_tool_bars()
Create a tool bars object.
Definition: KeyMgmt.cpp:252
+
GpgFrontend::UI::KeyMgmt::create_menus
void create_menus()
Create a menus object.
Definition: KeyMgmt.cpp:229
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:29
diff --git a/docs/html/KeyUIDSignDialog_8h_source.html b/docs/html/KeyUIDSignDialog_8h_source.html index b89c4ff7..00ac6009 100644 --- a/docs/html/KeyUIDSignDialog_8h_source.html +++ b/docs/html/KeyUIDSignDialog_8h_source.html @@ -125,7 +125,7 @@ $(document).ready(function(){initNavTree('KeyUIDSignDialog_8h_source.html','');
78 #endif // GPGFRONTEND_KEYUIDSIGNDIALOG_H
GpgFrontend::GpgKey
Definition: GpgKey.h:43
GpgFrontend::UI::GeneralDialog
Definition: GeneralDialog.h:35
-
GpgFrontend::UI::KeyList
Definition: KeyList.h:152
+
GpgFrontend::UI::KeyList
Definition: KeyList.h:170
GpgFrontend::UI::KeyUIDSignDialog
Definition: KeyUIDSignDialog.h:37
GpgFrontend::UI::KeyUIDSignDialog::slot_sign_key
void slot_sign_key(bool clicked)
Definition: KeyUIDSignDialog.cpp:106
GpgFrontend::UI::KeyUIDSignDialog::KeyUIDSignDialog
KeyUIDSignDialog(const GpgKey &key, UIDArgsListPtr uid, QWidget *parent=nullptr)
Construct a new Key U I D Sign Dialog object.
Definition: KeyUIDSignDialog.cpp:35
diff --git a/docs/html/MainWindow_8h_source.html b/docs/html/MainWindow_8h_source.html index 4c46fff0..d527f7e6 100644 --- a/docs/html/MainWindow_8h_source.html +++ b/docs/html/MainWindow_8h_source.html @@ -135,310 +135,326 @@ $(document).ready(function(){initNavTree('MainWindow_8h_source.html',''); initRe
94 
98  void SignalRestartApplication(int);
99 
-
100  public slots:
-
101 
-
105  void SlotSetStatusBarText(const QString& text);
-
106 
-
107  protected:
-
113  void closeEvent(QCloseEvent* event) override;
-
114 
-
115  public slots:
+
103  void SignalUIRefresh();
+
104 
+
108  void SignalKeyDatabaseRefresh();
+
109 
+
110  public slots:
+
111 
+
115  void SlotSetStatusBarText(const QString& text);
116 
-
120  void SlotOpenFile(QString& path);
-
121 
-
125  void SlotFileEncrypt();
+
117  protected:
+
123  void closeEvent(QCloseEvent* event) override;
+
124 
+
125  public slots:
126 
-
130  void SlotFileDecrypt();
+
130  void SlotOpenFile(QString& path);
131 
-
135  void SlotFileSign();
+
135  void SlotFileEncrypt();
136 
-
140  void SlotFileVerify();
+
140  void SlotFileDecrypt();
141 
-
145  void SlotFileEncryptSign();
+
145  void SlotFileSign();
146 
-
150  void SlotFileDecryptVerify();
+
150  void SlotFileVerify();
151 
-
156  void SlotSetRestartNeeded(int);
-
157 
-
158  private slots:
-
159 
-
164  void slot_encrypt();
-
165 
-
170  void slot_encrypt_sign();
-
171 
-
176  void slot_decrypt();
-
177 
-
182  void slot_sign();
-
183 
-
189  void slot_verify();
-
190 
-
195  void slot_decrypt_verify();
-
196 
-
200  void slot_show_key_details();
-
201 
-
205  void refresh_keys_from_key_server();
+
155  void SlotFileEncryptSign();
+
156 
+
160  void SlotFileDecryptVerify();
+
161 
+
166  void SlotSetRestartNeeded(int);
+
167 
+
168  private slots:
+
169 
+
174  void slot_encrypt();
+
175 
+
180  void slot_encrypt_sign();
+
181 
+
186  void slot_decrypt();
+
187 
+
192  void slot_sign();
+
193 
+
199  void slot_verify();
+
200 
+
205  void slot_decrypt_verify();
206 
-
210  void upload_key_to_server();
+
210  void slot_show_key_details();
211 
-
215  void slot_find();
+
215  void refresh_keys_from_key_server();
216 
-
220  void slot_start_wizard();
+
220  void upload_key_to_server();
221 
-
225  void slot_import_key_from_edit();
+
225  void slot_find();
226 
-
230  void slot_append_selected_keys();
+
230  void slot_start_wizard();
231 
-
236  void slot_append_keys_create_datetime();
-
237 
-
242  void slot_append_keys_expire_datetime();
-
243 
-
248  void slot_append_keys_fingerprint();
-
249 
-
254  void slot_copy_mail_address_to_clipboard();
-
255 
-
260  void slot_copy_default_uid_to_clipboard();
-
261 
-
266  void slot_copy_key_id_to_clipboard();
-
267 
-
271  void slot_open_key_management();
-
272 
-
276  void slot_open_file_tab();
+
235  void slot_import_key_from_edit();
+
236 
+
240  void slot_append_selected_keys();
+
241 
+
246  void slot_append_keys_create_datetime();
+
247 
+
252  void slot_append_keys_expire_datetime();
+
253 
+
258  void slot_append_keys_fingerprint();
+
259 
+
264  void slot_copy_mail_address_to_clipboard();
+
265 
+
270  void slot_copy_default_uid_to_clipboard();
+
271 
+
276  void slot_copy_key_id_to_clipboard();
277 
-
281  void slot_open_settings_dialog();
+
281  void slot_open_key_management();
282 
-
287  void slot_clean_double_line_breaks();
-
288 
-
292  void slot_cut_pgp_header();
-
293 
-
297  void slot_add_pgp_header();
+
286  void slot_open_file_tab();
+
287 
+
291  void slot_open_settings_dialog();
+
292 
+
297  void slot_clean_double_line_breaks();
298 
-
303  void slot_disable_tab_actions(int number);
-
304 
-
308  void slot_version_upgrade(const SoftwareVersion& version);
-
309 
-
310  private:
-
315  void create_actions();
-
316 
-
320  void create_menus();
-
321 
-
325  void create_tool_bars();
-
326 
-
330  void create_status_bar();
-
331 
-
335  void create_dock_windows();
-
336 
-
340  void create_attachment_dock();
+
302  void slot_cut_pgp_header();
+
303 
+
307  void slot_add_pgp_header();
+
308 
+
313  void slot_disable_tab_actions(int number);
+
314 
+
318  void slot_version_upgrade(const SoftwareVersion& version);
+
319 
+
323  void slot_add_key_2_favourite();
+
324 
+
328  void slot_remove_key_from_favourite();
+
329 
+
333  void slot_set_owner_trust_level_of_key();
+
334 
+
335  private:
+
340  void create_actions();
341 
-
345  void close_attachment_dock();
+
345  void create_menus();
346 
-
350  void restore_settings();
+
350  void create_tool_bars();
351 
-
355  void save_settings();
+
355  void create_status_bar();
356 
-
360  [[nodiscard]] int get_restart_needed() const;
+
360  void create_dock_windows();
361 
-
362  TextEdit* edit_{};
-
363  QMenu* file_menu_{};
-
364  QMenu* edit_menu_{};
-
365  QMenu* crypt_menu_{};
-
366  QMenu* gpg_menu_{};
-
367  QMenu* help_menu_{};
-
368  QMenu* key_menu_{};
-
369  QMenu* view_menu_{};
-
370  QMenu* import_key_menu_{};
-
371 #ifdef SMTP_SUPPORT
-
372  QMenu* email_menu_{};
-
373 #endif
-
374 
-
375  QMenu* steganography_menu_{};
-
376  QToolBar* crypt_tool_bar_{};
-
377  QToolBar* file_tool_bar_{};
-
378  QToolBar* edit_tool_bar_{};
-
379  QToolBar*
-
380  special_edit_tool_bar_{};
-
381  QToolBar* key_tool_bar_{};
-
382  QToolButton*
-
383  import_button_{};
-
384  QDockWidget* key_list_dock_{};
-
385  QDockWidget* attachment_dock_{};
-
386  QDockWidget* info_board_dock_{};
-
387 
-
388  QAction* new_tab_act_{};
-
389  QAction* switch_tab_up_act_{};
-
390  QAction* switch_tab_down_act_{};
-
391  QAction* open_act_{};
-
392  QAction* browser_act_{};
-
393  QAction* save_act_{};
-
394  QAction* save_as_act_{};
-
395  QAction* print_act_{};
-
396  QAction* close_tab_act_{};
-
397  QAction* quit_act_{};
-
398  QAction* encrypt_act_{};
-
399  QAction* encrypt_sign_act_{};
-
400  QAction* decrypt_verify_act_{};
-
401  QAction* decrypt_act_{};
-
402  QAction* sign_act_{};
-
403  QAction* verify_act_{};
-
404  QAction* import_key_from_edit_act_{};
-
405  QAction* clean_double_line_breaks_act_{};
-
407 
-
408  QAction* gnupg_controller_open_act_{};
-
409  QAction* clean_gpg_password_cache_act_{};
-
410  QAction* reload_components_act_{};
-
411  QAction* restart_components_act_{};
-
412 
-
413  QAction*
-
414  append_selected_keys_act_{};
-
415  QAction* append_key_fingerprint_to_editor_act_{};
-
416  QAction* append_key_create_date_to_editor_act_{};
-
417  QAction* append_key_expire_date_to_editor_act_{};
-
418 
-
419  QAction* copy_mail_address_to_clipboard_act_{};
-
421  QAction* copy_key_id_to_clipboard_act_{};
-
422  QAction* copy_key_default_uid_to_clipboard_act_{};
-
423 
-
424  QAction* open_key_management_act_{};
-
425  QAction* copy_act_{};
-
426  QAction* quote_act_{};
-
427  QAction* cut_act_{};
-
428  QAction* paste_act_{};
-
429  QAction* select_all_act_{};
-
430  QAction* find_act_{};
-
431  QAction* undo_act_{};
-
432  QAction* redo_act_{};
-
433  QAction* zoom_in_act_{};
-
434  QAction* zoom_out_act_{};
-
435  QAction* about_act_{};
-
436  QAction* check_update_act_{};
-
437  QAction* translate_act_{};
-
438  QAction* gnupg_act_{};
-
439  QAction* open_settings_act_{};
-
440  QAction* show_key_details_act_{};
-
441  QAction* start_wizard_act_{};
-
442  QAction* cut_pgp_header_act_{};
-
443  QAction* add_pgp_header_act_{};
-
444  QAction* import_key_from_file_act_{};
-
445  QAction* import_key_from_clipboard_act_{};
-
446  QAction* import_key_from_key_server_act_{};
-
447 
-
448  QLabel* status_bar_icon_{};
-
449 
-
450  KeyList* m_key_list_{};
-
451  InfoBoardWidget* info_board_{};
-
452 
-
453  bool attachment_dock_created_{};
-
454  int restart_needed_{0};
-
455  bool prohibit_update_checking_ = false;
-
456 };
+
365  void create_attachment_dock();
+
366 
+
370  void close_attachment_dock();
+
371 
+
375  void restore_settings();
+
376 
+
380  void recover_editor_unsaved_pages_from_cache();
+
381 
+
385  void save_settings();
+
386 
+
390  [[nodiscard]] int get_restart_needed() const;
+
391 
+
392  TextEdit* edit_{};
+
393  QMenu* file_menu_{};
+
394  QMenu* edit_menu_{};
+
395  QMenu* crypt_menu_{};
+
396  QMenu* gpg_menu_{};
+
397  QMenu* help_menu_{};
+
398  QMenu* key_menu_{};
+
399  QMenu* view_menu_{};
+
400  QMenu* import_key_menu_{};
+
401 #ifdef SMTP_SUPPORT
+
402  QMenu* email_menu_{};
+
403 #endif
+
404 
+
405  QMenu* steganography_menu_{};
+
406  QToolBar* crypt_tool_bar_{};
+
407  QToolBar* file_tool_bar_{};
+
408  QToolBar* edit_tool_bar_{};
+
409  QToolBar*
+
410  special_edit_tool_bar_{};
+
411  QToolBar* key_tool_bar_{};
+
412  QToolButton*
+
413  import_button_{};
+
414  QDockWidget* key_list_dock_{};
+
415  QDockWidget* attachment_dock_{};
+
416  QDockWidget* info_board_dock_{};
+
417 
+
418  QAction* new_tab_act_{};
+
419  QAction* switch_tab_up_act_{};
+
420  QAction* switch_tab_down_act_{};
+
421  QAction* open_act_{};
+
422  QAction* browser_act_{};
+
423  QAction* save_act_{};
+
424  QAction* save_as_act_{};
+
425  QAction* print_act_{};
+
426  QAction* close_tab_act_{};
+
427  QAction* quit_act_{};
+
428  QAction* encrypt_act_{};
+
429  QAction* encrypt_sign_act_{};
+
430  QAction* decrypt_verify_act_{};
+
431  QAction* decrypt_act_{};
+
432  QAction* sign_act_{};
+
433  QAction* verify_act_{};
+
434  QAction* import_key_from_edit_act_{};
+
435  QAction* clean_double_line_breaks_act_{};
+
437 
+
438  QAction* gnupg_controller_open_act_{};
+
439  QAction* clean_gpg_password_cache_act_{};
+
440  QAction* reload_components_act_{};
+
441  QAction* restart_components_act_{};
+
442 
+
443  QAction*
+
444  append_selected_keys_act_{};
+
445  QAction* append_key_fingerprint_to_editor_act_{};
+
446  QAction* append_key_create_date_to_editor_act_{};
+
447  QAction* append_key_expire_date_to_editor_act_{};
+
448 
+
449  QAction* copy_mail_address_to_clipboard_act_{};
+
451  QAction* copy_key_id_to_clipboard_act_{};
+
452  QAction* copy_key_default_uid_to_clipboard_act_{};
+
453 
+
454  QAction* add_key_2_favourtie_act_{};
+
455  QAction* remove_key_from_favourtie_act_{};
+
456  QAction* set_owner_trust_of_key_act_{};
457 
-
458 } // namespace GpgFrontend::UI
-
459 
-
460 #endif // __GPGWIN_H__
+
458  QAction* open_key_management_act_{};
+
459  QAction* copy_act_{};
+
460  QAction* quote_act_{};
+
461  QAction* cut_act_{};
+
462  QAction* paste_act_{};
+
463  QAction* select_all_act_{};
+
464  QAction* find_act_{};
+
465  QAction* undo_act_{};
+
466  QAction* redo_act_{};
+
467  QAction* zoom_in_act_{};
+
468  QAction* zoom_out_act_{};
+
469  QAction* about_act_{};
+
470  QAction* check_update_act_{};
+
471  QAction* translate_act_{};
+
472  QAction* gnupg_act_{};
+
473  QAction* open_settings_act_{};
+
474  QAction* show_key_details_act_{};
+
475  QAction* start_wizard_act_{};
+
476  QAction* cut_pgp_header_act_{};
+
477  QAction* add_pgp_header_act_{};
+
478  QAction* import_key_from_file_act_{};
+
479  QAction* import_key_from_clipboard_act_{};
+
480  QAction* import_key_from_key_server_act_{};
+
481 
+
482  QLabel* status_bar_icon_{};
+
483 
+
484  KeyList* m_key_list_{};
+
485  InfoBoardWidget* info_board_{};
+
486 
+
487  bool attachment_dock_created_{};
+
488  int restart_needed_{0};
+
489  bool prohibit_update_checking_ = false;
+
490 };
+
491 
+
492 } // namespace GpgFrontend::UI
+
493 
+
494 #endif // __GPGWIN_H__
GpgFrontend::UI::GeneralMainWindow
Definition: GeneralMainWindow.h:39
GpgFrontend::UI::MainWindow
Definition: MainWindow.h:53
-
GpgFrontend::UI::MainWindow::import_key_from_edit_act_
QAction * import_key_from_edit_act_
Action to import key from edit.
Definition: MainWindow.h:404
-
GpgFrontend::UI::MainWindow::slot_show_key_details
void slot_show_key_details()
Definition: MainWindowSlotFunction.cpp:738
-
GpgFrontend::UI::MainWindow::create_dock_windows
void create_dock_windows()
Definition: MainWindowUI.cpp:583
-
GpgFrontend::UI::MainWindow::SlotOpenFile
void SlotOpenFile(QString &path)
Definition: MainWindowSlotFunction.cpp:766
-
GpgFrontend::UI::MainWindow::Init
void Init() noexcept
Definition: MainWindow.cpp:46
-
GpgFrontend::UI::MainWindow::close_tab_act_
QAction * close_tab_act_
Action to print.
Definition: MainWindow.h:396
+
GpgFrontend::UI::MainWindow::import_key_from_edit_act_
QAction * import_key_from_edit_act_
Action to import key from edit.
Definition: MainWindow.h:434
+
GpgFrontend::UI::MainWindow::slot_show_key_details
void slot_show_key_details()
Definition: MainWindowSlotFunction.cpp:739
+
GpgFrontend::UI::MainWindow::create_dock_windows
void create_dock_windows()
Definition: MainWindowUI.cpp:604
+
GpgFrontend::UI::MainWindow::SlotOpenFile
void SlotOpenFile(QString &path)
Definition: MainWindowSlotFunction.cpp:837
+
GpgFrontend::UI::MainWindow::Init
void Init() noexcept
Definition: MainWindow.cpp:51
+
GpgFrontend::UI::MainWindow::close_tab_act_
QAction * close_tab_act_
Action to print.
Definition: MainWindow.h:426
GpgFrontend::UI::MainWindow::SlotFileDecrypt
void SlotFileDecrypt()
Definition: MainWindowFileSlotFunction.cpp:287
GpgFrontend::UI::MainWindow::create_actions
void create_actions()
Definition: MainWindowUI.cpp:37
-
GpgFrontend::UI::MainWindow::clean_double_line_breaks_act_
QAction * clean_double_line_breaks_act_
Definition: MainWindow.h:405
-
GpgFrontend::UI::MainWindow::sign_act_
QAction * sign_act_
Action to sign text.
Definition: MainWindow.h:402
-
GpgFrontend::UI::MainWindow::view_menu_
QMenu * view_menu_
Submenu for view operations.
Definition: MainWindow.h:369
-
GpgFrontend::UI::MainWindow::verify_act_
QAction * verify_act_
Action to verify text.
Definition: MainWindow.h:403
-
GpgFrontend::UI::MainWindow::key_menu_
QMenu * key_menu_
Submenu for key-operations.
Definition: MainWindow.h:368
+
GpgFrontend::UI::MainWindow::clean_double_line_breaks_act_
QAction * clean_double_line_breaks_act_
Definition: MainWindow.h:435
+
GpgFrontend::UI::MainWindow::sign_act_
QAction * sign_act_
Action to sign text.
Definition: MainWindow.h:432
+
GpgFrontend::UI::MainWindow::view_menu_
QMenu * view_menu_
Submenu for view operations.
Definition: MainWindow.h:399
+
GpgFrontend::UI::MainWindow::verify_act_
QAction * verify_act_
Action to verify text.
Definition: MainWindow.h:433
+
GpgFrontend::UI::MainWindow::key_menu_
QMenu * key_menu_
Submenu for key-operations.
Definition: MainWindow.h:398
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:268
-
GpgFrontend::UI::MainWindow::create_status_bar
void create_status_bar()
Definition: MainWindowUI.cpp:567
-
GpgFrontend::UI::MainWindow::slot_decrypt_verify
void slot_decrypt_verify()
Definition: MainWindowSlotFunction.cpp:516
-
GpgFrontend::UI::MainWindow::file_tool_bar_
QToolBar * file_tool_bar_
Toolbar holding file actions.
Definition: MainWindow.h:377
-
GpgFrontend::UI::MainWindow::crypt_menu_
QMenu * crypt_menu_
Submenu for crypt-operations.
Definition: MainWindow.h:365
-
GpgFrontend::UI::MainWindow::restore_settings
void restore_settings()
Definition: MainWindow.cpp:167
-
GpgFrontend::UI::MainWindow::save_as_act_
QAction * save_as_act_
Action to save file as.
Definition: MainWindow.h:394
-
GpgFrontend::UI::MainWindow::encrypt_sign_act_
QAction * encrypt_sign_act_
Action to encrypt and sign text.
Definition: MainWindow.h:399
+
GpgFrontend::UI::MainWindow::closeEvent
void closeEvent(QCloseEvent *event) override
Definition: MainWindow.cpp:322
+
GpgFrontend::UI::MainWindow::create_status_bar
void create_status_bar()
Definition: MainWindowUI.cpp:588
+
GpgFrontend::UI::MainWindow::slot_decrypt_verify
void slot_decrypt_verify()
Definition: MainWindowSlotFunction.cpp:517
+
GpgFrontend::UI::MainWindow::file_tool_bar_
QToolBar * file_tool_bar_
Toolbar holding file actions.
Definition: MainWindow.h:407
+
GpgFrontend::UI::MainWindow::crypt_menu_
QMenu * crypt_menu_
Submenu for crypt-operations.
Definition: MainWindow.h:395
+
GpgFrontend::UI::MainWindow::restore_settings
void restore_settings()
Definition: MainWindow.cpp:187
+
GpgFrontend::UI::MainWindow::save_as_act_
QAction * save_as_act_
Action to save file as.
Definition: MainWindow.h:424
+
GpgFrontend::UI::MainWindow::encrypt_sign_act_
QAction * encrypt_sign_act_
Action to encrypt and sign text.
Definition: MainWindow.h:429
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:538
GpgFrontend::UI::MainWindow::SlotSetRestartNeeded
void SlotSetRestartNeeded(int)
Definition: MainWindowSlotUI.cpp:184
GpgFrontend::UI::MainWindow::slot_open_file_tab
void slot_open_file_tab()
Definition: MainWindowSlotUI.cpp:59
-
GpgFrontend::UI::MainWindow::gpg_menu_
QMenu * gpg_menu_
Submenu for help-operations.
Definition: MainWindow.h:366
-
GpgFrontend::UI::MainWindow::cut_act_
QAction * cut_act_
Action to cut text.
Definition: MainWindow.h:427
-
GpgFrontend::UI::MainWindow::slot_encrypt_sign
void slot_encrypt_sign()
Definition: MainWindowSlotFunction.cpp:394
-
GpgFrontend::UI::MainWindow::cut_pgp_header_act_
QAction * cut_pgp_header_act_
Action for cutting the PGP header.
Definition: MainWindow.h:442
-
GpgFrontend::UI::MainWindow::key_tool_bar_
QToolBar * key_tool_bar_
Toolbar holding key operations.
Definition: MainWindow.h:381
-
GpgFrontend::UI::MainWindow::slot_copy_default_uid_to_clipboard
void slot_copy_default_uid_to_clipboard()
Definition: MainWindowSlotFunction.cpp:712
-
GpgFrontend::UI::MainWindow::browser_act_
QAction * browser_act_
Action to open file browser.
Definition: MainWindow.h:392
-
GpgFrontend::UI::MainWindow::zoom_in_act_
QAction * zoom_in_act_
Action to zoom in.
Definition: MainWindow.h:433
-
GpgFrontend::UI::MainWindow::slot_sign
void slot_sign()
Definition: MainWindowSlotFunction.cpp:173
-
GpgFrontend::UI::MainWindow::new_tab_act_
QAction * new_tab_act_
Action to create new tab.
Definition: MainWindow.h:388
-
GpgFrontend::UI::MainWindow::close_attachment_dock
void close_attachment_dock()
Definition: MainWindow.cpp:259
-
GpgFrontend::UI::MainWindow::slot_version_upgrade
void slot_version_upgrade(const SoftwareVersion &version)
Definition: MainWindowSlotFunction.cpp:768
-
GpgFrontend::UI::MainWindow::open_act_
QAction * open_act_
Action to open file.
Definition: MainWindow.h:391
+
GpgFrontend::UI::MainWindow::gpg_menu_
QMenu * gpg_menu_
Submenu for help-operations.
Definition: MainWindow.h:396
+
GpgFrontend::UI::MainWindow::cut_act_
QAction * cut_act_
Action to cut text.
Definition: MainWindow.h:461
+
GpgFrontend::UI::MainWindow::slot_encrypt_sign
void slot_encrypt_sign()
Definition: MainWindowSlotFunction.cpp:395
+
GpgFrontend::UI::MainWindow::cut_pgp_header_act_
QAction * cut_pgp_header_act_
Action for cutting the PGP header.
Definition: MainWindow.h:476
+
GpgFrontend::UI::MainWindow::key_tool_bar_
QToolBar * key_tool_bar_
Toolbar holding key operations.
Definition: MainWindow.h:411
+
GpgFrontend::UI::MainWindow::slot_copy_default_uid_to_clipboard
void slot_copy_default_uid_to_clipboard()
Definition: MainWindowSlotFunction.cpp:713
+
GpgFrontend::UI::MainWindow::browser_act_
QAction * browser_act_
Action to open file browser.
Definition: MainWindow.h:422
+
GpgFrontend::UI::MainWindow::zoom_in_act_
QAction * zoom_in_act_
Action to zoom in.
Definition: MainWindow.h:467
+
GpgFrontend::UI::MainWindow::slot_sign
void slot_sign()
Definition: MainWindowSlotFunction.cpp:174
+
GpgFrontend::UI::MainWindow::new_tab_act_
QAction * new_tab_act_
Action to create new tab.
Definition: MainWindow.h:418
+
GpgFrontend::UI::MainWindow::close_attachment_dock
void close_attachment_dock()
Definition: MainWindow.cpp:313
+
GpgFrontend::UI::MainWindow::slot_version_upgrade
void slot_version_upgrade(const SoftwareVersion &version)
Definition: MainWindowSlotFunction.cpp:839
+
GpgFrontend::UI::MainWindow::open_act_
QAction * open_act_
Action to open file.
Definition: MainWindow.h:421
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:189
-
GpgFrontend::UI::MainWindow::find_act_
QAction * find_act_
Action to find text.
Definition: MainWindow.h:430
-
GpgFrontend::UI::MainWindow::paste_act_
QAction * paste_act_
Action to paste text.
Definition: MainWindow.h:428
-
GpgFrontend::UI::MainWindow::check_update_act_
QAction * check_update_act_
Action to open about dialog.
Definition: MainWindow.h:436
-
GpgFrontend::UI::MainWindow::edit_menu_
QMenu * edit_menu_
Submenu for text-operations.
Definition: MainWindow.h:364
-
GpgFrontend::UI::MainWindow::zoom_out_act_
QAction * zoom_out_act_
Action to zoom out.
Definition: MainWindow.h:434
-
GpgFrontend::UI::MainWindow::decrypt_verify_act_
QAction * decrypt_verify_act_
Action to encrypt and sign text.
Definition: MainWindow.h:400
-
GpgFrontend::UI::MainWindow::copy_act_
QAction * copy_act_
Action to copy text.
Definition: MainWindow.h:425
-
GpgFrontend::UI::MainWindow::slot_append_selected_keys
void slot_append_selected_keys()
Definition: MainWindowSlotFunction.cpp:609
-
GpgFrontend::UI::MainWindow::gnupg_act_
QAction * gnupg_act_
Action to open about dialog.
Definition: MainWindow.h:438
-
GpgFrontend::UI::MainWindow::save_settings
void save_settings()
Definition: MainWindow.cpp:238
-
GpgFrontend::UI::MainWindow::edit_
TextEdit * edit_
Tabwidget holding the edit-windows.
Definition: MainWindow.h:362
+
GpgFrontend::UI::MainWindow::find_act_
QAction * find_act_
Action to find text.
Definition: MainWindow.h:464
+
GpgFrontend::UI::MainWindow::paste_act_
QAction * paste_act_
Action to paste text.
Definition: MainWindow.h:462
+
GpgFrontend::UI::MainWindow::check_update_act_
QAction * check_update_act_
Action to open about dialog.
Definition: MainWindow.h:470
+
GpgFrontend::UI::MainWindow::edit_menu_
QMenu * edit_menu_
Submenu for text-operations.
Definition: MainWindow.h:394
+
GpgFrontend::UI::MainWindow::zoom_out_act_
QAction * zoom_out_act_
Action to zoom out.
Definition: MainWindow.h:468
+
GpgFrontend::UI::MainWindow::decrypt_verify_act_
QAction * decrypt_verify_act_
Action to encrypt and sign text.
Definition: MainWindow.h:430
+
GpgFrontend::UI::MainWindow::copy_act_
QAction * copy_act_
Action to copy text.
Definition: MainWindow.h:459
+
GpgFrontend::UI::MainWindow::slot_append_selected_keys
void slot_append_selected_keys()
Definition: MainWindowSlotFunction.cpp:610
+
GpgFrontend::UI::MainWindow::gnupg_act_
QAction * gnupg_act_
Action to open about dialog.
Definition: MainWindow.h:472
+
GpgFrontend::UI::MainWindow::save_settings
void save_settings()
Definition: MainWindow.cpp:292
+
GpgFrontend::UI::MainWindow::edit_
TextEdit * edit_
Tabwidget holding the edit-windows.
Definition: MainWindow.h:392
GpgFrontend::UI::MainWindow::slot_cut_pgp_header
void slot_cut_pgp_header()
Definition: MainWindowSlotUI.cpp:160
GpgFrontend::UI::MainWindow::slot_add_pgp_header
void slot_add_pgp_header()
Definition: MainWindowSlotUI.cpp:146
-
GpgFrontend::UI::MainWindow::import_button_
QToolButton * import_button_
Tool button for import dropdown menu in toolbar.
Definition: MainWindow.h:383
+
GpgFrontend::UI::MainWindow::import_button_
QToolButton * import_button_
Tool button for import dropdown menu in toolbar.
Definition: MainWindow.h:413
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:103
-
GpgFrontend::UI::MainWindow::switch_tab_down_act_
QAction * switch_tab_down_act_
Action to switch tab down.
Definition: MainWindow.h:390
-
GpgFrontend::UI::MainWindow::help_menu_
QMenu * help_menu_
Submenu for help-operations.
Definition: MainWindow.h:367
+
GpgFrontend::UI::MainWindow::switch_tab_down_act_
QAction * switch_tab_down_act_
Action to switch tab down.
Definition: MainWindow.h:420
+
GpgFrontend::UI::MainWindow::help_menu_
QMenu * help_menu_
Submenu for help-operations.
Definition: MainWindow.h:397
GpgFrontend::UI::MainWindow::SlotFileSign
void SlotFileSign()
Definition: MainWindowFileSlotFunction.cpp:360
-
GpgFrontend::UI::MainWindow::switch_tab_up_act_
QAction * switch_tab_up_act_
Action to switch tab up.
Definition: MainWindow.h:389
-
GpgFrontend::UI::MainWindow::import_key_menu_
QMenu * import_key_menu_
Submenu for import operations.
Definition: MainWindow.h:370
-
GpgFrontend::UI::MainWindow::print_act_
QAction * print_act_
Action to print.
Definition: MainWindow.h:395
+
GpgFrontend::UI::MainWindow::switch_tab_up_act_
QAction * switch_tab_up_act_
Action to switch tab up.
Definition: MainWindow.h:419
+
GpgFrontend::UI::MainWindow::import_key_menu_
QMenu * import_key_menu_
Submenu for import operations.
Definition: MainWindow.h:400
+
GpgFrontend::UI::MainWindow::print_act_
QAction * print_act_
Action to print.
Definition: MainWindow.h:425
GpgFrontend::UI::MainWindow::create_attachment_dock
void create_attachment_dock()
-
GpgFrontend::UI::MainWindow::add_pgp_header_act_
QAction * add_pgp_header_act_
Action for adding the PGP header.
Definition: MainWindow.h:443
+
GpgFrontend::UI::MainWindow::add_pgp_header_act_
QAction * add_pgp_header_act_
Action for adding the PGP header.
Definition: MainWindow.h:477
GpgFrontend::UI::MainWindow::SlotFileVerify
void SlotFileVerify()
Definition: MainWindowFileSlotFunction.cpp:450
-
GpgFrontend::UI::MainWindow::about_act_
QAction * about_act_
Action to open about dialog.
Definition: MainWindow.h:435
-
GpgFrontend::UI::MainWindow::slot_copy_key_id_to_clipboard
void slot_copy_key_id_to_clipboard()
Definition: MainWindowSlotFunction.cpp:725
+
GpgFrontend::UI::MainWindow::about_act_
QAction * about_act_
Action to open about dialog.
Definition: MainWindow.h:469
+
GpgFrontend::UI::MainWindow::slot_copy_key_id_to_clipboard
void slot_copy_key_id_to_clipboard()
Definition: MainWindowSlotFunction.cpp:726
GpgFrontend::UI::MainWindow::SlotFileEncrypt
void SlotFileEncrypt()
Definition: MainWindowFileSlotFunction.cpp:155
-
GpgFrontend::UI::MainWindow::create_menus
void create_menus()
Definition: MainWindowUI.cpp:444
-
GpgFrontend::UI::MainWindow::undo_act_
QAction * undo_act_
Action to undo last action.
Definition: MainWindow.h:431
-
GpgFrontend::UI::MainWindow::decrypt_act_
QAction * decrypt_act_
Action to decrypt text.
Definition: MainWindow.h:401
-
GpgFrontend::UI::MainWindow::slot_verify
void slot_verify()
Definition: MainWindowSlotFunction.cpp:327
-
GpgFrontend::UI::MainWindow::create_tool_bars
void create_tool_bars()
Definition: MainWindowUI.cpp:518
+
GpgFrontend::UI::MainWindow::create_menus
void create_menus()
Definition: MainWindowUI.cpp:465
+
GpgFrontend::UI::MainWindow::undo_act_
QAction * undo_act_
Action to undo last action.
Definition: MainWindow.h:465
+
GpgFrontend::UI::MainWindow::decrypt_act_
QAction * decrypt_act_
Action to decrypt text.
Definition: MainWindow.h:431
+
GpgFrontend::UI::MainWindow::slot_verify
void slot_verify()
Definition: MainWindowSlotFunction.cpp:328
+
GpgFrontend::UI::MainWindow::create_tool_bars
void create_tool_bars()
Definition: MainWindowUI.cpp:539
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:376
-
GpgFrontend::UI::MainWindow::start_wizard_act_
QAction * start_wizard_act_
Action to open the wizard.
Definition: MainWindow.h:441
-
GpgFrontend::UI::MainWindow::save_act_
QAction * save_act_
Action to save file.
Definition: MainWindow.h:393
+
GpgFrontend::UI::MainWindow::crypt_tool_bar_
QToolBar * crypt_tool_bar_
Toolbar holding crypt actions.
Definition: MainWindow.h:406
+
GpgFrontend::UI::MainWindow::start_wizard_act_
QAction * start_wizard_act_
Action to open the wizard.
Definition: MainWindow.h:475
+
GpgFrontend::UI::MainWindow::save_act_
QAction * save_act_
Action to save file.
Definition: MainWindow.h:423
GpgFrontend::UI::MainWindow::SlotFileDecryptVerify
void SlotFileDecryptVerify()
Definition: MainWindowFileSlotFunction.cpp:664
-
GpgFrontend::UI::MainWindow::edit_tool_bar_
QToolBar * edit_tool_bar_
Toolbar holding edit actions.
Definition: MainWindow.h:378
-
GpgFrontend::UI::MainWindow::append_selected_keys_act_
QAction * append_selected_keys_act_
Action to append selected keys to edit.
Definition: MainWindow.h:414
-
GpgFrontend::UI::MainWindow::quit_act_
QAction * quit_act_
Action to quit application.
Definition: MainWindow.h:397
-
GpgFrontend::UI::MainWindow::redo_act_
QAction * redo_act_
Action to redo last action.
Definition: MainWindow.h:432
-
GpgFrontend::UI::MainWindow::select_all_act_
QAction * select_all_act_
Action to select whole text.
Definition: MainWindow.h:429
-
GpgFrontend::UI::MainWindow::show_key_details_act_
QAction * show_key_details_act_
Action to open key-details dialog.
Definition: MainWindow.h:440
-
GpgFrontend::UI::MainWindow::upload_key_to_server
void upload_key_to_server()
Definition: MainWindowSlotFunction.cpp:759
-
GpgFrontend::UI::MainWindow::encrypt_act_
QAction * encrypt_act_
Action to encrypt text.
Definition: MainWindow.h:398
-
GpgFrontend::UI::MainWindow::open_key_management_act_
QAction * open_key_management_act_
Action to open key management.
Definition: MainWindow.h:424
-
GpgFrontend::UI::MainWindow::key_list_dock_
QDockWidget * key_list_dock_
Encrypt Dock.
Definition: MainWindow.h:384
-
GpgFrontend::UI::MainWindow::translate_act_
QAction * translate_act_
Action to open about dialog.
Definition: MainWindow.h:437
-
GpgFrontend::UI::MainWindow::refresh_keys_from_key_server
void refresh_keys_from_key_server()
Definition: MainWindowSlotFunction.cpp:750
-
GpgFrontend::UI::MainWindow::slot_encrypt
void slot_encrypt()
Definition: MainWindowSlotFunction.cpp:51
-
GpgFrontend::UI::MainWindow::slot_find
void slot_find()
Definition: MainWindowSlotFunction.cpp:594
-
GpgFrontend::UI::MainWindow::slot_decrypt
void slot_decrypt()
Definition: MainWindowSlotFunction.cpp:259
+
GpgFrontend::UI::MainWindow::edit_tool_bar_
QToolBar * edit_tool_bar_
Toolbar holding edit actions.
Definition: MainWindow.h:408
+
GpgFrontend::UI::MainWindow::append_selected_keys_act_
QAction * append_selected_keys_act_
Action to append selected keys to edit.
Definition: MainWindow.h:444
+
GpgFrontend::UI::MainWindow::quit_act_
QAction * quit_act_
Action to quit application.
Definition: MainWindow.h:427
+
GpgFrontend::UI::MainWindow::redo_act_
QAction * redo_act_
Action to redo last action.
Definition: MainWindow.h:466
+
GpgFrontend::UI::MainWindow::select_all_act_
QAction * select_all_act_
Action to select whole text.
Definition: MainWindow.h:463
+
GpgFrontend::UI::MainWindow::show_key_details_act_
QAction * show_key_details_act_
Action to open key-details dialog.
Definition: MainWindow.h:474
+
GpgFrontend::UI::MainWindow::upload_key_to_server
void upload_key_to_server()
Definition: MainWindowSlotFunction.cpp:830
+
GpgFrontend::UI::MainWindow::encrypt_act_
QAction * encrypt_act_
Action to encrypt text.
Definition: MainWindow.h:428
+
GpgFrontend::UI::MainWindow::open_key_management_act_
QAction * open_key_management_act_
Action to open key management.
Definition: MainWindow.h:458
+
GpgFrontend::UI::MainWindow::key_list_dock_
QDockWidget * key_list_dock_
Encrypt Dock.
Definition: MainWindow.h:414
+
GpgFrontend::UI::MainWindow::translate_act_
QAction * translate_act_
Action to open about dialog.
Definition: MainWindow.h:471
+
GpgFrontend::UI::MainWindow::refresh_keys_from_key_server
void refresh_keys_from_key_server()
Definition: MainWindowSlotFunction.cpp:771
+
GpgFrontend::UI::MainWindow::slot_encrypt
void slot_encrypt()
Definition: MainWindowSlotFunction.cpp:52
+
GpgFrontend::UI::MainWindow::slot_find
void slot_find()
Definition: MainWindowSlotFunction.cpp:595
+
GpgFrontend::UI::MainWindow::slot_decrypt
void slot_decrypt()
Definition: MainWindowSlotFunction.cpp:260
GpgFrontend::UI::MainWindow::slot_clean_double_line_breaks
void slot_clean_double_line_breaks()
Definition: MainWindowSlotUI.cpp:136
-
GpgFrontend::UI::MainWindow::file_menu_
QMenu * file_menu_
Submenu for file-operations.
Definition: MainWindow.h:363
-
GpgFrontend::UI::MainWindow::special_edit_tool_bar_
QToolBar * special_edit_tool_bar_
Toolbar holding special edit actions.
Definition: MainWindow.h:380
-
GpgFrontend::UI::MainWindow::steganography_menu_
QMenu * steganography_menu_
Submenu for steganography operations.
Definition: MainWindow.h:375
-
GpgFrontend::UI::MainWindow::copy_mail_address_to_clipboard_act_
QAction * copy_mail_address_to_clipboard_act_
Definition: MainWindow.h:419
-
GpgFrontend::UI::MainWindow::slot_copy_mail_address_to_clipboard
void slot_copy_mail_address_to_clipboard()
Definition: MainWindowSlotFunction.cpp:699
-
GpgFrontend::UI::MainWindow::quote_act_
QAction * quote_act_
Action to quote text.
Definition: MainWindow.h:426
-
GpgFrontend::UI::MainWindow::open_settings_act_
QAction * open_settings_act_
Action to open settings dialog.
Definition: MainWindow.h:439
-
GpgFrontend::UI::MainWindow::attachment_dock_
QDockWidget * attachment_dock_
Attachment Dock.
Definition: MainWindow.h:385
+
GpgFrontend::UI::MainWindow::file_menu_
QMenu * file_menu_
Submenu for file-operations.
Definition: MainWindow.h:393
+
GpgFrontend::UI::MainWindow::special_edit_tool_bar_
QToolBar * special_edit_tool_bar_
Toolbar holding special edit actions.
Definition: MainWindow.h:410
+
GpgFrontend::UI::MainWindow::steganography_menu_
QMenu * steganography_menu_
Submenu for steganography operations.
Definition: MainWindow.h:405
+
GpgFrontend::UI::MainWindow::copy_mail_address_to_clipboard_act_
QAction * copy_mail_address_to_clipboard_act_
Definition: MainWindow.h:449
+
GpgFrontend::UI::MainWindow::slot_copy_mail_address_to_clipboard
void slot_copy_mail_address_to_clipboard()
Definition: MainWindowSlotFunction.cpp:700
+
GpgFrontend::UI::MainWindow::quote_act_
QAction * quote_act_
Action to quote text.
Definition: MainWindow.h:460
+
GpgFrontend::UI::MainWindow::open_settings_act_
QAction * open_settings_act_
Action to open settings dialog.
Definition: MainWindow.h:473
+
GpgFrontend::UI::MainWindow::attachment_dock_
QDockWidget * attachment_dock_
Attachment Dock.
Definition: MainWindow.h:415
GpgFrontend::UI::TextEdit
TextEdit class.
Definition: TextEdit.h:41
GpgFrontend::UI
Definition: FileReadTask.cpp:29
GpgFrontend::UI::MainWindow::CryptoMenu
Definition: MainWindow.h:60
diff --git a/docs/html/SettingsGeneral_8h_source.html b/docs/html/SettingsGeneral_8h_source.html index d49062fd..4d0b85a8 100644 --- a/docs/html/SettingsGeneral_8h_source.html +++ b/docs/html/SettingsGeneral_8h_source.html @@ -135,10 +135,10 @@ $(document).ready(function(){initNavTree('SettingsGeneral_8h_source.html',''); i
105 #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:42
-
GpgFrontend::UI::GeneralTab::SetSettings
void SetSettings()
Set the Settings object.
Definition: SettingsGeneral.cpp:80
+
GpgFrontend::UI::GeneralTab::SetSettings
void SetSettings()
Set the Settings object.
Definition: SettingsGeneral.cpp:118
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::KeyList
Definition: KeyList.h:170
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/SignalStation_8h_source.html b/docs/html/SignalStation_8h_source.html index bfb05dbe..47b0d3c6 100644 --- a/docs/html/SignalStation_8h_source.html +++ b/docs/html/SignalStation_8h_source.html @@ -107,21 +107,23 @@ $(document).ready(function(){initNavTree('SignalStation_8h_source.html',''); ini
59 
64  void SignalKeyDatabaseRefreshDone();
65 
-
72  void SignalRefreshInfoBoard(const QString& text,
-
73  InfoBoardStatus verify_label_status);
-
74 
-
81  void SignalRefreshStatusBar(const QString& message, int timeout);
-
82 
-
87  void SignalUserInputPassphraseDone(QString passparase);
+
70  void SignalUIRefresh();
+
71 
+
78  void SignalRefreshInfoBoard(const QString& text,
+
79  InfoBoardStatus verify_label_status);
+
80 
+
87  void SignalRefreshStatusBar(const QString& message, int timeout);
88 
-
93  void SignalNeedUserInputPassphrase();
+
93  void SignalUserInputPassphraseDone(QString passparase);
94 
-
99  void SignalRestartApplication(int);
-
100 };
-
101 
-
102 } // namespace GpgFrontend::UI
-
103 
-
104 #endif // GPGFRONTEND_SIGNALSTATION_H
+
99  void SignalNeedUserInputPassphrase();
+
100 
+
105  void SignalRestartApplication(int);
+
106 };
+
107 
+
108 } // namespace GpgFrontend::UI
+
109 
+
110 #endif // GPGFRONTEND_SIGNALSTATION_H
GpgFrontend::UI::SignalStation
Definition: SignalStation.h:41
GpgFrontend::UI::SignalStation::SignalRefreshStatusBar
void SignalRefreshStatusBar(const QString &message, int timeout)
GpgFrontend::UI::SignalStation::SignalRefreshInfoBoard
void SignalRefreshInfoBoard(const QString &text, InfoBoardStatus verify_label_status)
diff --git a/docs/html/SignersPicker_8h_source.html b/docs/html/SignersPicker_8h_source.html index a5111d7c..df4ba35e 100644 --- a/docs/html/SignersPicker_8h_source.html +++ b/docs/html/SignersPicker_8h_source.html @@ -142,11 +142,11 @@ $(document).ready(function(){initNavTree('SignersPicker_8h_source.html',''); ini
72 
73 #endif // GPGFRONTEND_ZH_CN_TS_SIGNERSPIRCKER_H
GpgFrontend::UI::GeneralDialog
Definition: GeneralDialog.h:35
-
GpgFrontend::UI::KeyList
Definition: KeyList.h:152
+
GpgFrontend::UI::KeyList
Definition: KeyList.h:170
GpgFrontend::UI::SignersPicker
Definition: SignersPicker.h:42
GpgFrontend::UI::SignersPicker::SignersPicker
SignersPicker(QWidget *parent=nullptr)
Construct a new Signers Picker object.
Definition: SignersPicker.cpp:34
-
GpgFrontend::UI::SignersPicker::GetCheckedSigners
GpgFrontend::KeyIdArgsListPtr GetCheckedSigners()
Get the Checked Signers object.
Definition: SignersPicker.cpp:77
-
GpgFrontend::UI::SignersPicker::GetStatus
bool GetStatus() const
Definition: SignersPicker.cpp:81
+
GpgFrontend::UI::SignersPicker::GetCheckedSigners
GpgFrontend::KeyIdArgsListPtr GetCheckedSigners()
Get the Checked Signers object.
Definition: SignersPicker.cpp:76
+
GpgFrontend::UI::SignersPicker::GetStatus
bool GetStatus() const
Definition: SignersPicker.cpp:80
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/TextEdit_8h_source.html b/docs/html/TextEdit_8h_source.html index 8534f40f..0afeb586 100644 --- a/docs/html/TextEdit_8h_source.html +++ b/docs/html/TextEdit_8h_source.html @@ -134,99 +134,101 @@ $(document).ready(function(){initNavTree('TextEdit_8h_source.html',''); initResi
145 
151  void SlotNewTab();
152 
-
156  void SlotOpenFile(const QString& path);
-
157 
-
164  void slotNewHelpTab(const QString& title, const QString& path) const;
-
165 
-
169  void SlotNewFileTab() const;
-
170 
-
175  void SlotShowModified(bool) const;
+
157  void SlotNewTabWithContent(std::string title, const std::string& content);
+
158 
+
162  void SlotOpenFile(const QString& path);
+
163 
+
170  void slotNewHelpTab(const QString& title, const QString& path) const;
+
171 
+
175  void SlotNewFileTab() const;
176 
-
181  void SlotCloseTab();
+
181  void SlotShowModified(bool) const;
182 
-
187  void SlotSwitchTabUp() const;
+
187  void SlotCloseTab();
188 
-
193  void SlotSwitchTabDown() const;
+
193  void SlotSwitchTabUp() const;
194 
-
195  private:
-
196  uint text_page_data_modified_count_ = 0;
-
197 
-
204  static QString stripped_name(const QString& full_file_name);
-
205 
-
211  bool maybe_save_current_tab(bool askToSave);
-
212 
-
213  int count_page_;
-
214 
-
215  private slots:
-
216 
-
217  void slot_file_page_path_changed(const QString& path) const;
+
199  void SlotSwitchTabDown() const;
+
200 
+
201  private:
+
202  uint text_page_data_modified_count_ = 0;
+
203 
+
210  static QString stripped_name(const QString& full_file_name);
+
211 
+
217  bool maybe_save_current_tab(bool askToSave);
218 
-
224  void slot_remove_tab(int index);
-
225 
-
231  void slot_save_status_to_cache_for_revovery();
-
232 
-
233  public slots:
-
234 
-
238  void SlotCut() const;
-
239 
-
243  void SlotCopy() const;
-
244 
-
248  void SlotPaste() const;
-
249 
-
254  void SlotUndo() const;
+
219  int count_page_;
+
220 
+
221  private slots:
+
222 
+
223  void slot_file_page_path_changed(const QString& path) const;
+
224 
+
230  void slot_remove_tab(int index);
+
231 
+
237  void slot_save_status_to_cache_for_revovery();
+
238 
+
239  public slots:
+
240 
+
244  void SlotCut() const;
+
245 
+
249  void SlotCopy() const;
+
250 
+
254  void SlotPaste() const;
255 
-
260  void SlotRedo() const;
+
260  void SlotUndo() const;
261 
-
266  void SlotZoomIn() const;
+
266  void SlotRedo() const;
267 
-
272  void SlotZoomOut() const;
+
272  void SlotZoomIn() const;
273 
-
278  void SlotSelectAll() const;
+
278  void SlotZoomOut() const;
279 
-
280  protected:
-
286  bool save_file(const QString& fileName);
-
287 };
-
288 
-
289 } // namespace GpgFrontend::UI
-
290 
-
291 #endif // __TEXTEDIT_H__
+
284  void SlotSelectAll() const;
+
285 
+
286  protected:
+
292  bool save_file(const QString& fileName);
+
293 };
+
294 
+
295 } // namespace GpgFrontend::UI
+
296 
+
297 #endif // __TEXTEDIT_H__
GpgFrontend::UI::FilePage
Definition: FilePage.h:43
GpgFrontend::UI::PlainTextEditorPage
Class for handling a single tab of the tabwidget.
Definition: PlainTextEditorPage.h:45
GpgFrontend::UI::TextEdit
TextEdit class.
Definition: TextEdit.h:41
-
GpgFrontend::UI::TextEdit::SlotSaveAs
bool SlotSaveAs()
Definition: TextEdit.cpp:201
-
GpgFrontend::UI::TextEdit::TabCount
int TabCount() const
Definition: TextEdit.cpp:372
-
GpgFrontend::UI::TextEdit::slot_remove_tab
void slot_remove_tab(int index)
Definition: TextEdit.cpp:225
-
GpgFrontend::UI::TextEdit::SlotOpen
void SlotOpen()
Definition: TextEdit.cpp:120
-
GpgFrontend::UI::TextEdit::slot_save_status_to_cache_for_revovery
void slot_save_status_to_cache_for_revovery()
Definition: TextEdit.cpp:601
-
GpgFrontend::UI::TextEdit::SlotCopy
void SlotCopy() const
Definition: TextEdit.cpp:527
-
GpgFrontend::UI::TextEdit::slotNewHelpTab
void slotNewHelpTab(const QString &title, const QString &path) const
Definition: TextEdit.cpp:73
-
GpgFrontend::UI::TextEdit::MaybeSaveAnyTab
bool MaybeSaveAnyTab()
Definition: TextEdit.cpp:304
-
GpgFrontend::UI::TextEdit::SlotCurPageTextEdit
PlainTextEditorPage * SlotCurPageTextEdit() const
Definition: TextEdit.cpp:374
-
GpgFrontend::UI::TextEdit::SlotUndo
void SlotUndo() const
Definition: TextEdit.cpp:545
-
GpgFrontend::UI::TextEdit::SlotSwitchTabDown
void SlotSwitchTabDown() const
Definition: TextEdit.cpp:489
-
GpgFrontend::UI::TextEdit::SlotNewTab
void SlotNewTab()
Definition: TextEdit.cpp:59
-
GpgFrontend::UI::TextEdit::SlotOpenFile
void SlotOpenFile(const QString &path)
Definition: TextEdit.cpp:89
-
GpgFrontend::UI::TextEdit::save_file
bool save_file(const QString &fileName)
Saves the content of currentTab to the file filename.
Definition: TextEdit.cpp:146
-
GpgFrontend::UI::TextEdit::SlotQuote
void SlotQuote() const
Definition: TextEdit.cpp:385
-
GpgFrontend::UI::TextEdit::SlotSelectAll
void SlotSelectAll() const
select all in current text page
Definition: TextEdit.cpp:581
-
GpgFrontend::UI::TextEdit::SlotCurPageFileTreeView
FilePage * SlotCurPageFileTreeView() const
Definition: TextEdit.cpp:380
-
GpgFrontend::UI::TextEdit::LoadFile
void LoadFile(const QString &fileName)
Definition: TextEdit.cpp:415
-
GpgFrontend::UI::TextEdit::count_page_
int count_page_
int containing the number of added tabs
Definition: TextEdit.h:213
-
GpgFrontend::UI::TextEdit::CurTextPage
PlainTextEditorPage * CurTextPage() const
Definition: TextEdit.cpp:359
-
GpgFrontend::UI::TextEdit::UnsavedDocuments
QHash< int, QString > UnsavedDocuments() const
Definition: TextEdit.cpp:500
-
GpgFrontend::UI::TextEdit::maybe_save_current_tab
bool maybe_save_current_tab(bool askToSave)
Definition: TextEdit.cpp:258
-
GpgFrontend::UI::TextEdit::SlotCloseTab
void SlotCloseTab()
Definition: TextEdit.cpp:218
-
GpgFrontend::UI::TextEdit::SlotPaste
void SlotPaste() const
Definition: TextEdit.cpp:537
-
GpgFrontend::UI::TextEdit::CurFilePage
FilePage * CurFilePage() const
Definition: TextEdit.cpp:363
-
GpgFrontend::UI::TextEdit::SlotShowModified
void SlotShowModified(bool) const
Definition: TextEdit.cpp:462
-
GpgFrontend::UI::TextEdit::SlotSave
void SlotSave()
Definition: TextEdit.cpp:130
-
GpgFrontend::UI::TextEdit::SlotPrint
void SlotPrint()
Definition: TextEdit.cpp:440
-
GpgFrontend::UI::TextEdit::SlotCut
void SlotCut() const
Definition: TextEdit.cpp:519
-
GpgFrontend::UI::TextEdit::SlotNewFileTab
void SlotNewFileTab() const
Definition: TextEdit.cpp:79
-
GpgFrontend::UI::TextEdit::SlotRedo
void SlotRedo() const
redo last change in current text page
Definition: TextEdit.cpp:553
-
GpgFrontend::UI::TextEdit::SlotSwitchTabUp
void SlotSwitchTabUp() const
Definition: TextEdit.cpp:482
-
GpgFrontend::UI::TextEdit::SlotFillTextEditWithText
void SlotFillTextEditWithText(const QString &text) const
Definition: TextEdit.cpp:407
-
GpgFrontend::UI::TextEdit::stripped_name
static QString stripped_name(const QString &full_file_name)
Definition: TextEdit.cpp:436
+
GpgFrontend::UI::TextEdit::SlotSaveAs
bool SlotSaveAs()
Definition: TextEdit.cpp:231
+
GpgFrontend::UI::TextEdit::TabCount
int TabCount() const
Definition: TextEdit.cpp:402
+
GpgFrontend::UI::TextEdit::slot_remove_tab
void slot_remove_tab(int index)
Definition: TextEdit.cpp:255
+
GpgFrontend::UI::TextEdit::SlotOpen
void SlotOpen()
Definition: TextEdit.cpp:150
+
GpgFrontend::UI::TextEdit::slot_save_status_to_cache_for_revovery
void slot_save_status_to_cache_for_revovery()
Definition: TextEdit.cpp:631
+
GpgFrontend::UI::TextEdit::SlotCopy
void SlotCopy() const
Definition: TextEdit.cpp:557
+
GpgFrontend::UI::TextEdit::slotNewHelpTab
void slotNewHelpTab(const QString &title, const QString &path) const
Definition: TextEdit.cpp:103
+
GpgFrontend::UI::TextEdit::MaybeSaveAnyTab
bool MaybeSaveAnyTab()
Definition: TextEdit.cpp:334
+
GpgFrontend::UI::TextEdit::SlotCurPageTextEdit
PlainTextEditorPage * SlotCurPageTextEdit() const
Definition: TextEdit.cpp:404
+
GpgFrontend::UI::TextEdit::SlotUndo
void SlotUndo() const
Definition: TextEdit.cpp:575
+
GpgFrontend::UI::TextEdit::SlotSwitchTabDown
void SlotSwitchTabDown() const
Definition: TextEdit.cpp:519
+
GpgFrontend::UI::TextEdit::SlotNewTab
void SlotNewTab()
Definition: TextEdit.cpp:62
+
GpgFrontend::UI::TextEdit::SlotOpenFile
void SlotOpenFile(const QString &path)
Definition: TextEdit.cpp:119
+
GpgFrontend::UI::TextEdit::save_file
bool save_file(const QString &fileName)
Saves the content of currentTab to the file filename.
Definition: TextEdit.cpp:176
+
GpgFrontend::UI::TextEdit::SlotQuote
void SlotQuote() const
Definition: TextEdit.cpp:415
+
GpgFrontend::UI::TextEdit::SlotSelectAll
void SlotSelectAll() const
select all in current text page
Definition: TextEdit.cpp:611
+
GpgFrontend::UI::TextEdit::SlotCurPageFileTreeView
FilePage * SlotCurPageFileTreeView() const
Definition: TextEdit.cpp:410
+
GpgFrontend::UI::TextEdit::LoadFile
void LoadFile(const QString &fileName)
Definition: TextEdit.cpp:445
+
GpgFrontend::UI::TextEdit::count_page_
int count_page_
int containing the number of added tabs
Definition: TextEdit.h:219
+
GpgFrontend::UI::TextEdit::CurTextPage
PlainTextEditorPage * CurTextPage() const
Definition: TextEdit.cpp:389
+
GpgFrontend::UI::TextEdit::UnsavedDocuments
QHash< int, QString > UnsavedDocuments() const
Definition: TextEdit.cpp:530
+
GpgFrontend::UI::TextEdit::maybe_save_current_tab
bool maybe_save_current_tab(bool askToSave)
Definition: TextEdit.cpp:288
+
GpgFrontend::UI::TextEdit::SlotCloseTab
void SlotCloseTab()
Definition: TextEdit.cpp:248
+
GpgFrontend::UI::TextEdit::SlotPaste
void SlotPaste() const
Definition: TextEdit.cpp:567
+
GpgFrontend::UI::TextEdit::CurFilePage
FilePage * CurFilePage() const
Definition: TextEdit.cpp:393
+
GpgFrontend::UI::TextEdit::SlotShowModified
void SlotShowModified(bool) const
Definition: TextEdit.cpp:492
+
GpgFrontend::UI::TextEdit::SlotSave
void SlotSave()
Definition: TextEdit.cpp:160
+
GpgFrontend::UI::TextEdit::SlotPrint
void SlotPrint()
Definition: TextEdit.cpp:470
+
GpgFrontend::UI::TextEdit::SlotCut
void SlotCut() const
Definition: TextEdit.cpp:549
+
GpgFrontend::UI::TextEdit::SlotNewFileTab
void SlotNewFileTab() const
Definition: TextEdit.cpp:109
+
GpgFrontend::UI::TextEdit::SlotRedo
void SlotRedo() const
redo last change in current text page
Definition: TextEdit.cpp:583
+
GpgFrontend::UI::TextEdit::SlotSwitchTabUp
void SlotSwitchTabUp() const
Definition: TextEdit.cpp:512
+
GpgFrontend::UI::TextEdit::SlotFillTextEditWithText
void SlotFillTextEditWithText(const QString &text) const
Definition: TextEdit.cpp:437
+
GpgFrontend::UI::TextEdit::stripped_name
static QString stripped_name(const QString &full_file_name)
Definition: TextEdit.cpp:466
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/UserInterfaceUtils_8h_source.html b/docs/html/UserInterfaceUtils_8h_source.html index 6840438f..108ebca3 100644 --- a/docs/html/UserInterfaceUtils_8h_source.html +++ b/docs/html/UserInterfaceUtils_8h_source.html @@ -92,121 +92,129 @@ $(document).ready(function(){initNavTree('UserInterfaceUtils_8h_source.html','')
31 
32 #include "core/GpgModel.h"
33 #include "core/function/result_analyse/GpgVerifyResultAnalyse.h"
-
34 #include "ui/GpgFrontendUI.h"
-
35 
-
36 namespace GpgFrontend {
-
37 class GpgResultAnalyse;
-
38 }
-
39 
-
40 namespace GpgFrontend::UI {
-
41 
-
42 class InfoBoardWidget;
-
43 class TextEdit;
-
44 
-
53 void show_verify_details(QWidget* parent, InfoBoardWidget* info_board,
-
54  GpgError error, const GpgVerifyResult& verify_result);
-
55 
-
62 void import_unknown_key_from_keyserver(
-
63  QWidget* parent, const GpgVerifyResultAnalyse& verify_res);
-
64 
-
72 void refresh_info_board(InfoBoardWidget* info_board, int status,
-
73  const std::string& report_text);
-
74 
-
82 void process_result_analyse(TextEdit* edit, InfoBoardWidget* info_board,
-
83  const GpgResultAnalyse& result_analyse);
-
84 
-
93 void process_result_analyse(TextEdit* edit, InfoBoardWidget* info_board,
-
94  const GpgResultAnalyse& result_analyse_a,
-
95  const GpgResultAnalyse& result_analyse_b);
-
96 
-
104 void process_operation(
-
105  QWidget* parent, const std::string& waiting_title,
-
106  GpgFrontend::Thread::Task::TaskRunnable func,
-
107  GpgFrontend::Thread::Task::TaskCallback callback = nullptr,
-
108  Thread::Task::DataObjectPtr data_object = nullptr);
-
109 
-
117 void import_key_from_keyserver(QWidget* parent, const std::string& key_id,
-
118  const std::string& key_server);
-
119 
-
124 class CommonUtils : public QWidget {
-
125  Q_OBJECT
-
126  public:
-
131  using ImportCallbackFunctiopn = std::function<void(
-
132  const std::string&, const std::string&, size_t, size_t)>;
-
133 
-
138  CommonUtils();
-
139 
-
145  static CommonUtils* GetInstance();
-
146 
-
151  bool isApplicationNeedRestart();
-
152 
-
153  signals:
-
158  void SignalKeyStatusUpdated();
+
34 #include "core/model/GpgKey.h"
+
35 #include "ui/GpgFrontendUI.h"
+
36 
+
37 namespace GpgFrontend {
+
38 class GpgResultAnalyse;
+
39 }
+
40 
+
41 namespace GpgFrontend::UI {
+
42 
+
43 class InfoBoardWidget;
+
44 class TextEdit;
+
45 
+
54 void show_verify_details(QWidget* parent, InfoBoardWidget* info_board,
+
55  GpgError error, const GpgVerifyResult& verify_result);
+
56 
+
63 void import_unknown_key_from_keyserver(
+
64  QWidget* parent, const GpgVerifyResultAnalyse& verify_res);
+
65 
+
73 void refresh_info_board(InfoBoardWidget* info_board, int status,
+
74  const std::string& report_text);
+
75 
+
83 void process_result_analyse(TextEdit* edit, InfoBoardWidget* info_board,
+
84  const GpgResultAnalyse& result_analyse);
+
85 
+
94 void process_result_analyse(TextEdit* edit, InfoBoardWidget* info_board,
+
95  const GpgResultAnalyse& result_analyse_a,
+
96  const GpgResultAnalyse& result_analyse_b);
+
97 
+
105 void process_operation(
+
106  QWidget* parent, const std::string& waiting_title,
+
107  GpgFrontend::Thread::Task::TaskRunnable func,
+
108  GpgFrontend::Thread::Task::TaskCallback callback = nullptr,
+
109  Thread::Task::DataObjectPtr data_object = nullptr);
+
110 
+
118 void import_key_from_keyserver(QWidget* parent, const std::string& key_id,
+
119  const std::string& key_server);
+
120 
+
125 class CommonUtils : public QWidget {
+
126  Q_OBJECT
+
127  public:
+
132  using ImportCallbackFunctiopn = std::function<void(
+
133  const std::string&, const std::string&, size_t, size_t)>;
+
134 
+
139  CommonUtils();
+
140 
+
146  static CommonUtils* GetInstance();
+
147 
+
152  bool isApplicationNeedRestart();
+
153 
+
158  bool KeyExistsinFavouriteList(const GpgKey& key);
159 
-
164  void SignalGnupgNotInstall();
+
164  void AddKey2Favourtie(const GpgKey& key);
165 
-
170  void SignalKeyDatabaseRefreshDone();
+
170  void RemoveKeyFromFavourite(const GpgKey& key);
171 
-
176  void SignalNeedUserInputPassphrase();
-
177 
-
182  void SignalUserInputPassphraseDone(QString passphrase);
-
183 
-
188  void SignalRestartApplication(int);
-
189 
-
190  public slots:
-
197  void SlotImportKeys(QWidget* parent, const std::string& in_buffer);
-
198 
-
204  void SlotImportKeyFromFile(QWidget* parent);
-
205 
-
211  void SlotImportKeyFromKeyServer(QWidget* parent);
-
212 
-
218  void SlotImportKeyFromClipboard(QWidget* parent);
-
219 
-
227  static void SlotImportKeyFromKeyServer(
-
228  const GpgFrontend::KeyIdArgsList& key_ids,
-
229  const GpgFrontend::UI::CommonUtils::ImportCallbackFunctiopn& callback);
-
230 
-
237  void SlotExecuteGpgCommand(
-
238  const QStringList& arguments,
-
239  const std::function<void(QProcess*)>& interact_func);
-
240 
-
247  void SlotExecuteCommand(const std::string& cmd, const QStringList& arguments,
-
248  const std::function<void(QProcess*)>& interact_func);
+
172  signals:
+
177  void SignalKeyStatusUpdated();
+
178 
+
183  void SignalGnupgNotInstall();
+
184 
+
189  void SignalKeyDatabaseRefreshDone();
+
190 
+
195  void SignalNeedUserInputPassphrase();
+
196 
+
201  void SignalUserInputPassphraseDone(QString passphrase);
+
202 
+
207  void SignalRestartApplication(int);
+
208 
+
209  public slots:
+
216  void SlotImportKeys(QWidget* parent, const std::string& in_buffer);
+
217 
+
223  void SlotImportKeyFromFile(QWidget* parent);
+
224 
+
230  void SlotImportKeyFromKeyServer(QWidget* parent);
+
231 
+
237  void SlotImportKeyFromClipboard(QWidget* parent);
+
238 
+
246  static void SlotImportKeyFromKeyServer(
+
247  const GpgFrontend::KeyIdArgsList& key_ids,
+
248  const GpgFrontend::UI::CommonUtils::ImportCallbackFunctiopn& callback);
249 
-
254  void SlotRestartApplication(int);
-
255 
-
256  private slots:
-
257 
-
262  void slot_update_key_status();
-
263 
-
268  void slot_popup_passphrase_input_dialog();
-
269 
-
270  private:
-
271  static std::unique_ptr<CommonUtils> instance_;
-
272  bool application_need_to_restart_at_once_ = false;
-
273 };
+
256  void SlotExecuteGpgCommand(
+
257  const QStringList& arguments,
+
258  const std::function<void(QProcess*)>& interact_func);
+
259 
+
266  void SlotExecuteCommand(const std::string& cmd, const QStringList& arguments,
+
267  const std::function<void(QProcess*)>& interact_func);
+
268 
+
273  void SlotRestartApplication(int);
274 
-
275 } // namespace GpgFrontend::UI
+
275  private slots:
276 
-
277 #endif // GPGFRONTEND_USER_INTERFACE_UTILS_H
-
GpgFrontend::UI::CommonUtils
Definition: UserInterfaceUtils.h:124
-
GpgFrontend::UI::CommonUtils::SlotImportKeyFromFile
void SlotImportKeyFromFile(QWidget *parent)
Definition: UserInterfaceUtils.cpp:230
-
GpgFrontend::UI::CommonUtils::SlotImportKeyFromClipboard
void SlotImportKeyFromClipboard(QWidget *parent)
Definition: UserInterfaceUtils.cpp:251
+
281  void slot_update_key_status();
+
282 
+
287  void slot_popup_passphrase_input_dialog();
+
288 
+
289  private:
+
290  static std::unique_ptr<CommonUtils> instance_;
+
291  bool application_need_to_restart_at_once_ = false;
+
292 };
+
293 
+
294 } // namespace GpgFrontend::UI
+
295 
+
296 #endif // GPGFRONTEND_USER_INTERFACE_UTILS_H
+
GpgFrontend::GpgKey
Definition: GpgKey.h:43
+
GpgFrontend::UI::CommonUtils
Definition: UserInterfaceUtils.h:125
+
GpgFrontend::UI::CommonUtils::SlotImportKeyFromFile
void SlotImportKeyFromFile(QWidget *parent)
Definition: UserInterfaceUtils.cpp:231
+
GpgFrontend::UI::CommonUtils::SlotImportKeyFromClipboard
void SlotImportKeyFromClipboard(QWidget *parent)
Definition: UserInterfaceUtils.cpp:252
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:222
-
GpgFrontend::UI::CommonUtils::CommonUtils
CommonUtils()
Construct a new Common Utils object.
Definition: UserInterfaceUtils.cpp:155
-
GpgFrontend::UI::CommonUtils::SlotExecuteCommand
void SlotExecuteCommand(const std::string &cmd, const QStringList &arguments, const std::function< void(QProcess *)> &interact_func)
Definition: UserInterfaceUtils.cpp:257
-
GpgFrontend::UI::CommonUtils::slot_update_key_status
void slot_update_key_status()
update the key status when signal is emitted
Definition: UserInterfaceUtils.cpp:434
-
GpgFrontend::UI::CommonUtils::GetInstance
static CommonUtils * GetInstance()
Get the Instance object.
Definition: UserInterfaceUtils.cpp:148
-
GpgFrontend::UI::CommonUtils::SlotImportKeyFromKeyServer
void SlotImportKeyFromKeyServer(QWidget *parent)
Definition: UserInterfaceUtils.cpp:246
-
GpgFrontend::UI::CommonUtils::SlotExecuteGpgCommand
void SlotExecuteGpgCommand(const QStringList &arguments, const std::function< void(QProcess *)> &interact_func)
Definition: UserInterfaceUtils.cpp:289
+
GpgFrontend::UI::CommonUtils::SlotImportKeys
void SlotImportKeys(QWidget *parent, const std::string &in_buffer)
Definition: UserInterfaceUtils.cpp:223
+
GpgFrontend::UI::CommonUtils::CommonUtils
CommonUtils()
Construct a new Common Utils object.
Definition: UserInterfaceUtils.cpp:156
+
GpgFrontend::UI::CommonUtils::SlotExecuteCommand
void SlotExecuteCommand(const std::string &cmd, const QStringList &arguments, const std::function< void(QProcess *)> &interact_func)
Definition: UserInterfaceUtils.cpp:258
+
GpgFrontend::UI::CommonUtils::slot_update_key_status
void slot_update_key_status()
update the key status when signal is emitted
Definition: UserInterfaceUtils.cpp:435
+
GpgFrontend::UI::CommonUtils::GetInstance
static CommonUtils * GetInstance()
Get the Instance object.
Definition: UserInterfaceUtils.cpp:149
+
GpgFrontend::UI::CommonUtils::SlotImportKeyFromKeyServer
void SlotImportKeyFromKeyServer(QWidget *parent)
Definition: UserInterfaceUtils.cpp:247
+
GpgFrontend::UI::CommonUtils::SlotExecuteGpgCommand
void SlotExecuteGpgCommand(const QStringList &arguments, const std::function< void(QProcess *)> &interact_func)
Definition: UserInterfaceUtils.cpp:290
GpgFrontend::UI
Definition: FileReadTask.cpp:29
-
GpgFrontend::UI::refresh_info_board
void refresh_info_board(InfoBoardWidget *info_board, int status, const std::string &report_text)
Definition: UserInterfaceUtils.cpp:88
-
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:118
-
GpgFrontend::UI::show_verify_details
void show_verify_details(QWidget *parent, InfoBoardWidget *info_board, GpgError error, const GpgVerifyResult &verify_result)
Definition: UserInterfaceUtils.cpp:56
-
GpgFrontend::UI::import_unknown_key_from_keyserver
void import_unknown_key_from_keyserver(QWidget *parent, const GpgVerifyResultAnalyse &verify_res)
Definition: UserInterfaceUtils.cpp:65
+
GpgFrontend::UI::refresh_info_board
void refresh_info_board(InfoBoardWidget *info_board, int status, const std::string &report_text)
Definition: UserInterfaceUtils.cpp:89
+
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:119
+
GpgFrontend::UI::show_verify_details
void show_verify_details(QWidget *parent, InfoBoardWidget *info_board, GpgError error, const GpgVerifyResult &verify_result)
Definition: UserInterfaceUtils.cpp:57
+
GpgFrontend::UI::import_unknown_key_from_keyserver
void import_unknown_key_from_keyserver(QWidget *parent, const GpgVerifyResultAnalyse &verify_res)
Definition: UserInterfaceUtils.cpp:66
GpgFrontend::UI::import_key_from_keyserver
void import_key_from_keyserver(QWidget *parent, const std::string &key_id, const std::string &key_server)
-
GpgFrontend::UI::process_result_analyse
void process_result_analyse(TextEdit *edit, InfoBoardWidget *info_board, const GpgResultAnalyse &result_analyse)
Definition: UserInterfaceUtils.cpp:100
+
GpgFrontend::UI::process_result_analyse
void process_result_analyse(TextEdit *edit, InfoBoardWidget *info_board, const GpgResultAnalyse &result_analyse)
Definition: UserInterfaceUtils.cpp:101
GpgFrontend
Definition: CoreCommonUtil.cpp:31
diff --git a/docs/html/annotated.html b/docs/html/annotated.html index 4c15ec0d..f6279b6c 100644 --- a/docs/html/annotated.html +++ b/docs/html/annotated.html @@ -164,55 +164,56 @@ $(document).ready(function(){initNavTree('annotated.html',''); initResizable();  CCoreCommonUtil  CArchiveStruct  CArchiveFileOperator - CCacheManager - CCharsetOperator - CCoreSignalStation - CDataObjectOperator - CFileOperatorFile operations - CGlobalSettingStation - CGpgAdvancedOperator - CGpgBasicOperatorBasic operation collection - CGpgCommandExecutorExtra commands related to GPG - CGpgFileOpera - CGpgKeyGetter - CGpgImportedKey - CGpgImportInformation - CGpgKeyImportExporter - CGpgKeyManager - CAutomatonHandelStruct - CGpgKeyOpera - CGpgUIDOperator - CKeyPackageOperatorGive the possibility to import or export a key package - CPassphraseGeneratorThe PassphraseGenerator class - CGpgDecryptResultAnalyse - CGpgEncryptResultAnalyse - CGpgResultAnalyse - CGpgSignResultAnalyse - CGpgVerifyResultAnalyse - C_result_ref_deletorResult Deleter - CGpgConstants - CGpgContextInitArgs - CGpgContext - C_ctx_ref_deleter - CChannelObjectObject which in channel system - CSingletonStorage - CSingletonStorageCollection - CSingletonFunctionObject - CGenKeyInfo - CGpgInfoUse to record some info about gnupg - CGpgData - C_data_ref_deleter - CGpgKey - C_key_ref_deleter - CGpgKeySignature - CGpgSignature - CGpgSubKey - CGpgTOFUInfo - CGpgUID - CclassExecutive files related to the basic operations that are provided by GpgBasicOperator - CProxyConnectionTestThread - CSignatureDetailsDialog - CTestListedKeyServerThread + CThreadSafeMap + CCacheManager + CCharsetOperator + CCoreSignalStation + CDataObjectOperator + CFileOperatorFile operations + CGlobalSettingStation + CGpgAdvancedOperator + CGpgBasicOperatorBasic operation collection + CGpgCommandExecutorExtra commands related to GPG + CGpgFileOpera + CGpgKeyGetter + CGpgImportedKey + CGpgImportInformation + CGpgKeyImportExporter + CGpgKeyManager + CAutomatonHandelStruct + CGpgKeyOpera + CGpgUIDOperator + CKeyPackageOperatorGive the possibility to import or export a key package + CPassphraseGeneratorThe PassphraseGenerator class + CGpgDecryptResultAnalyse + CGpgEncryptResultAnalyse + CGpgResultAnalyse + CGpgSignResultAnalyse + CGpgVerifyResultAnalyse + C_result_ref_deletorResult Deleter + CGpgConstants + CGpgContextInitArgs + CGpgContext + C_ctx_ref_deleter + CChannelObjectObject which in channel system + CSingletonStorage + CSingletonStorageCollection + CSingletonFunctionObject + CGenKeyInfo + CGpgInfoUse to record some info about gnupg + CGpgData + C_data_ref_deleter + CGpgKey + C_key_ref_deleter + CGpgKeySignature + CGpgSignature + CGpgSubKey + CGpgTOFUInfo + CGpgUID + CclassExecutive files related to the basic operations that are provided by GpgBasicOperator + CProxyConnectionTestThread + CSignatureDetailsDialog + CTestListedKeyServerThread diff --git a/docs/html/annotated_dup.js b/docs/html/annotated_dup.js index ce19e7b3..fe3dbf2d 100644 --- a/docs/html/annotated_dup.js +++ b/docs/html/annotated_dup.js @@ -75,6 +75,7 @@ var annotated_dup = [ "CoreCommonUtil", "classGpgFrontend_1_1CoreCommonUtil.html", "classGpgFrontend_1_1CoreCommonUtil" ], [ "ArchiveStruct", "structGpgFrontend_1_1ArchiveStruct.html", "structGpgFrontend_1_1ArchiveStruct" ], [ "ArchiveFileOperator", "classGpgFrontend_1_1ArchiveFileOperator.html", "classGpgFrontend_1_1ArchiveFileOperator" ], + [ "ThreadSafeMap", "classGpgFrontend_1_1ThreadSafeMap.html", "classGpgFrontend_1_1ThreadSafeMap" ], [ "CacheManager", "classGpgFrontend_1_1CacheManager.html", "classGpgFrontend_1_1CacheManager" ], [ "CharsetOperator", "classGpgFrontend_1_1CharsetOperator.html", "classGpgFrontend_1_1CharsetOperator" ], [ "CoreSignalStation", "classGpgFrontend_1_1CoreSignalStation.html", "classGpgFrontend_1_1CoreSignalStation" ], diff --git a/docs/html/classGpgFrontend_1_1CacheManager-members.html b/docs/html/classGpgFrontend_1_1CacheManager-members.html index eb9fc4de..64612e1f 100644 --- a/docs/html/classGpgFrontend_1_1CacheManager-members.html +++ b/docs/html/classGpgFrontend_1_1CacheManager-members.html @@ -89,9 +89,38 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1CacheManager.html'

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

- - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ClearAllCache() (defined in GpgFrontend::CacheManager)GpgFrontend::CacheManagerstatic
LoadCache(std::string name) (defined in GpgFrontend::CacheManager)GpgFrontend::CacheManagerstatic
SaveCache(std::string key, const nlohmann::json &value)GpgFrontend::CacheManagerstatic
_default_channelGpgFrontend::ChannelObjectprivatestatic
cache_storage_ (defined in GpgFrontend::CacheManager)GpgFrontend::CacheManagerprivate
CacheManager(int channel=SingletonFunctionObject::GetDefaultChannel())GpgFrontend::CacheManager
channel_GpgFrontend::ChannelObjectprivate
ChannelObject() noexceptGpgFrontend::ChannelObject
ChannelObject(int channel)GpgFrontend::ChannelObject
CreateInstance(int channel, std::function< std::unique_ptr< ChannelObject >(void)> factory)GpgFrontend::SingletonFunctionObject< CacheManager >inlinestatic
drk_key_ (defined in GpgFrontend::CacheManager)GpgFrontend::CacheManagerprivate
flush_cache_storage() (defined in GpgFrontend::CacheManager)GpgFrontend::CacheManagerprivate
get_data_object_key(std::string key) (defined in GpgFrontend::CacheManager)GpgFrontend::CacheManagerprivate
GetAllChannelId()GpgFrontend::SingletonFunctionObject< CacheManager >inlinestatic
GetChannel() constGpgFrontend::SingletonFunctionObject< CacheManager >inline
GetDefaultChannel()GpgFrontend::SingletonFunctionObject< CacheManager >inlinestatic
GetInstance(int channel=GpgFrontend::GPGFRONTEND_DEFAULT_CHANNEL)GpgFrontend::SingletonFunctionObject< CacheManager >inlinestatic
key_storage_ (defined in GpgFrontend::CacheManager)GpgFrontend::CacheManagerprivate
load_all_cache_storage() (defined in GpgFrontend::CacheManager)GpgFrontend::CacheManagerprivate
load_cache_storage(std::string key, nlohmann::json default_value) (defined in GpgFrontend::CacheManager)GpgFrontend::CacheManagerprivate
LoadCache(std::string key) (defined in GpgFrontend::CacheManager)GpgFrontend::CacheManager
LoadCache(std::string key, nlohmann::json default_value) (defined in GpgFrontend::CacheManager)GpgFrontend::CacheManager
m_timer_ (defined in GpgFrontend::CacheManager)GpgFrontend::CacheManagerprivate
operator=(const SingletonFunctionObject< CacheManager > &)=deleteGpgFrontend::SingletonFunctionObject< CacheManager >
operator=(const CacheManager &)=delete (defined in GpgFrontend::SingletonFunctionObject< CacheManager >)GpgFrontend::SingletonFunctionObject< CacheManager >
register_cache_key(std::string key) (defined in GpgFrontend::CacheManager)GpgFrontend::CacheManagerprivate
ReleaseChannel(int channel)GpgFrontend::SingletonFunctionObject< CacheManager >inlinestatic
SaveCache(std::string key, const nlohmann::json &value, bool flush=false) (defined in GpgFrontend::CacheManager)GpgFrontend::CacheManager
SetChannel(int channel)GpgFrontend::ChannelObject
SingletonFunctionObject(const SingletonFunctionObject< CacheManager > &)=deleteGpgFrontend::SingletonFunctionObject< CacheManager >
SingletonFunctionObject(CacheManager &&)=deleteGpgFrontend::SingletonFunctionObject< CacheManager >
SingletonFunctionObject(const CacheManager &)=deleteGpgFrontend::SingletonFunctionObject< CacheManager >
SingletonFunctionObject()=defaultGpgFrontend::SingletonFunctionObject< CacheManager >protected
SingletonFunctionObject(int channel)GpgFrontend::SingletonFunctionObject< CacheManager >inlineexplicitprotected
~SingletonFunctionObject()=defaultGpgFrontend::SingletonFunctionObject< CacheManager >protectedvirtual
diff --git a/docs/html/classGpgFrontend_1_1CacheManager.html b/docs/html/classGpgFrontend_1_1CacheManager.html index 4b2836e6..550b36c7 100644 --- a/docs/html/classGpgFrontend_1_1CacheManager.html +++ b/docs/html/classGpgFrontend_1_1CacheManager.html @@ -83,65 +83,180 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1CacheManager.html'
-Static Public Member Functions | +Public Member Functions | +Private Member Functions | +Private Attributes | List of all members
GpgFrontend::CacheManager Class Reference
+Inheritance diagram for GpgFrontend::CacheManager:
+
+
Inheritance graph
+ + + + + + + +
+
Collaboration diagram for GpgFrontend::CacheManager:
Collaboration graph
- + + + + + + + + + + + + + +
- - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

-Static Public Member Functions

static void SaveCache (std::string key, const nlohmann::json &value)
 
-static nlohmann::json LoadCache (std::string name)
 
-static void ClearAllCache ()
 

+Public Member Functions

 CacheManager (int channel=SingletonFunctionObject::GetDefaultChannel())
 
+void SaveCache (std::string key, const nlohmann::json &value, bool flush=false)
 
+nlohmann::json LoadCache (std::string key)
 
+nlohmann::json LoadCache (std::string key, nlohmann::json default_value)
 
- Public Member Functions inherited from GpgFrontend::SingletonFunctionObject< CacheManager >
SingletonFunctionObject (const SingletonFunctionObject< CacheManager > &)=delete
 prohibit copy
 
SingletonFunctionObject (CacheManager &&)=delete
 Construct a new Singleton Function Object object.
 
SingletonFunctionObject (const CacheManager &)=delete
 Construct a new Singleton Function Object object.
 
SingletonFunctionObjectoperator= (const SingletonFunctionObject< CacheManager > &)=delete
 prohibit copy More...
 
+void operator= (const CacheManager &)=delete
 
int GetChannel () const
 Get the Channel object. More...
 
- Public Member Functions inherited from GpgFrontend::ChannelObject
ChannelObject () noexcept
 Construct a new Default Channel Object object.
 
 ChannelObject (int channel)
 Construct a new Channel Object object. More...
 
int GetChannel () const
 Get the Channel object. More...
 
void SetChannel (int channel)
 Set the Channel object. More...
 
+ + + + + + + + + + + +

+Private Member Functions

+std::string get_data_object_key (std::string key)
 
+nlohmann::json load_cache_storage (std::string key, nlohmann::json default_value)
 
+void load_all_cache_storage ()
 
+void flush_cache_storage ()
 
+void register_cache_key (std::string key)
 
+ + + + + + + + + +

+Private Attributes

+ThreadSafeMap< std::string, nlohmann::json > cache_storage_
 
+nlohmann::json key_storage_
 
+QTimer * m_timer_
 
+const std::string drk_key_ = "__cache_manage_data_register_key_list"
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Additional Inherited Members

- Static Public Member Functions inherited from GpgFrontend::SingletonFunctionObject< CacheManager >
static CacheManagerGetInstance (int channel=GpgFrontend::GPGFRONTEND_DEFAULT_CHANNEL)
 Get the Instance object. More...
 
static CacheManagerCreateInstance (int channel, std::function< std::unique_ptr< ChannelObject >(void)> factory)
 Create a Instance object. More...
 
static void ReleaseChannel (int channel)
 
static int GetDefaultChannel ()
 Get the Default Channel object. More...
 
static std::vector< int > GetAllChannelId ()
 Get all the channel ids. More...
 
- Static Public Member Functions inherited from GpgFrontend::ChannelObject
static int GetDefaultChannel ()
 Get the Default Channel object. More...
 
- Protected Member Functions inherited from GpgFrontend::SingletonFunctionObject< CacheManager >
SingletonFunctionObject ()=default
 Construct a new Singleton Function Object object.
 
 SingletonFunctionObject (int channel)
 Construct a new Singleton Function Object object. More...
 
+virtual ~SingletonFunctionObject ()=default
 Destroy the Singleton Function Object object.
 
-

Member Function Documentation

- -

◆ SaveCache()

+

Constructor & Destructor Documentation

+ +

◆ CacheManager()

- - - - - -
- + - - - - - + + - - - - - - -
void GpgFrontend::CacheManager::SaveCache GpgFrontend::CacheManager::CacheManager (std::string key,
int channel = SingletonFunctionObject::GetDefaultChannel()) const nlohmann::json & value 
)
-
-static

Copyright (C) 2021 Saturneric

This file is part of GpgFrontend.

@@ -152,8 +267,6 @@ static void ClearAllCache<

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

-

References GpgFrontend::SingletonFunctionObject< DataObjectOperator >::GetInstance().

-

The documentation for this class was generated from the following files:
Inheritance graph
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
diff --git a/docs/html/classGpgFrontend_1_1ChannelObject__inherit__graph.map b/docs/html/classGpgFrontend_1_1ChannelObject__inherit__graph.map index 67debe1b..bff1de3d 100644 --- a/docs/html/classGpgFrontend_1_1ChannelObject__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1ChannelObject__inherit__graph.map @@ -1,32 +1,34 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/html/classGpgFrontend_1_1ChannelObject__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1ChannelObject__inherit__graph.md5 index 78c7f8c2..77ef1a9c 100644 --- a/docs/html/classGpgFrontend_1_1ChannelObject__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1ChannelObject__inherit__graph.md5 @@ -1 +1 @@ -d63c215b8cd725bbc76688be4303b0dc \ No newline at end of file +e07dbf2ba0765739eaa05bc8dfb44a8d \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1ChannelObject__inherit__graph.png b/docs/html/classGpgFrontend_1_1ChannelObject__inherit__graph.png index 61d0998d..3b125284 100644 Binary files a/docs/html/classGpgFrontend_1_1ChannelObject__inherit__graph.png and b/docs/html/classGpgFrontend_1_1ChannelObject__inherit__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1DataObjectOperator.html b/docs/html/classGpgFrontend_1_1DataObjectOperator.html index 7c33dcf6..a5157d17 100644 --- a/docs/html/classGpgFrontend_1_1DataObjectOperator.html +++ b/docs/html/classGpgFrontend_1_1DataObjectOperator.html @@ -107,12 +107,12 @@ Collaboration diagram for GpgFrontend::DataObjectOperator:
Collaboration graph
- + - +
@@ -332,7 +332,7 @@ virtual  + + - - - - - - + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + +
Initial value:
=
global_setting_station_.GetAppDataPath() / "data_objs"
-
GlobalSettingStation & global_setting_station_
GlobalSettingStation.
Definition: DataObjectOperator.h:62
+
GlobalSettingStation & global_setting_station_
GlobalSettingStation.
Definition: DataObjectOperator.h:61

Where data object is stored

Referenced by DataObjectOperator().

@@ -360,7 +360,7 @@ virtual 
Initial value:
=
app_secure_path_ / "app.key"
-
std::filesystem::path app_secure_path_
Where sensitive information is stored.
Definition: DataObjectOperator.h:64
+
std::filesystem::path app_secure_path_
Where sensitive information is stored.
Definition: DataObjectOperator.h:63

Where the key of data object is stored.

diff --git a/docs/html/classGpgFrontend_1_1DataObjectOperator__coll__graph.map b/docs/html/classGpgFrontend_1_1DataObjectOperator__coll__graph.map index 001c45eb..e98ce8b8 100644 --- a/docs/html/classGpgFrontend_1_1DataObjectOperator__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1DataObjectOperator__coll__graph.map @@ -1,8 +1,8 @@ - + - + diff --git a/docs/html/classGpgFrontend_1_1DataObjectOperator__coll__graph.md5 b/docs/html/classGpgFrontend_1_1DataObjectOperator__coll__graph.md5 index 6f031fbf..02ba3050 100644 --- a/docs/html/classGpgFrontend_1_1DataObjectOperator__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1DataObjectOperator__coll__graph.md5 @@ -1 +1 @@ -e32bfce608224c6183c30cb059aaa829 \ No newline at end of file +6ddd50473c7f5b9203bcc40d528aa70c \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1DataObjectOperator__coll__graph.png b/docs/html/classGpgFrontend_1_1DataObjectOperator__coll__graph.png index 02bc8e8b..332d484d 100644 Binary files a/docs/html/classGpgFrontend_1_1DataObjectOperator__coll__graph.png and b/docs/html/classGpgFrontend_1_1DataObjectOperator__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1GlobalSettingStation-members.html b/docs/html/classGpgFrontend_1_1GlobalSettingStation-members.html index 705b1a0a..16ac9d23 100644 --- a/docs/html/classGpgFrontend_1_1GlobalSettingStation-members.html +++ b/docs/html/classGpgFrontend_1_1GlobalSettingStation-members.html @@ -100,39 +100,46 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1GlobalSettingStati
channel_GpgFrontend::ChannelObjectprivate
ChannelObject() noexceptGpgFrontend::ChannelObject
ChannelObject(int channel)GpgFrontend::ChannelObject
ClearAllDataObjects() const (defined in GpgFrontend::GlobalSettingStation)GpgFrontend::GlobalSettingStation
ClearAllLogFiles() const (defined in GpgFrontend::GlobalSettingStation)GpgFrontend::GlobalSettingStation
CreateInstance(int channel, std::function< std::unique_ptr< ChannelObject >(void)> factory)GpgFrontend::SingletonFunctionObject< GlobalSettingStation >inlinestatic
GetAllChannelId()GpgFrontend::SingletonFunctionObject< GlobalSettingStation >inlinestatic
GetAppConfigPath() const (defined in GpgFrontend::GlobalSettingStation)GpgFrontend::GlobalSettingStationinline
GetAppDataPath() const (defined in GpgFrontend::GlobalSettingStation)GpgFrontend::GlobalSettingStationinline
GetAppDir() constGpgFrontend::GlobalSettingStationinline
GetCertsDir() constGpgFrontend::GlobalSettingStationinline
GetChannel() constGpgFrontend::SingletonFunctionObject< GlobalSettingStation >inline
delete_all_files(std::filesystem::path path, std::string filename_pattern) const (defined in GpgFrontend::GlobalSettingStation)GpgFrontend::GlobalSettingStationprivate
get_files_size_at_path(std::filesystem::path path, std::string filename_pattern) const (defined in GpgFrontend::GlobalSettingStation)GpgFrontend::GlobalSettingStationprivate
get_human_readable_size(int64_t size) const (defined in GpgFrontend::GlobalSettingStation)GpgFrontend::GlobalSettingStationprivate
GetAllChannelId()GpgFrontend::SingletonFunctionObject< GlobalSettingStation >inlinestatic
GetAppConfigPath() const (defined in GpgFrontend::GlobalSettingStation)GpgFrontend::GlobalSettingStationinline
GetAppDataPath() const (defined in GpgFrontend::GlobalSettingStation)GpgFrontend::GlobalSettingStationinline
GetAppDir() constGpgFrontend::GlobalSettingStationinline
GetCertsDir() constGpgFrontend::GlobalSettingStationinline
GetChannel() constGpgFrontend::SingletonFunctionObject< GlobalSettingStation >inline
GetDataObjectsFilesSize() const (defined in GpgFrontend::GlobalSettingStation)GpgFrontend::GlobalSettingStation
GetDefaultChannel()GpgFrontend::SingletonFunctionObject< GlobalSettingStation >inlinestatic
GetInstance(int channel=GpgFrontend::GPGFRONTEND_DEFAULT_CHANNEL)GpgFrontend::SingletonFunctionObject< GlobalSettingStation >inlinestatic
GetLocaleDir() constGpgFrontend::GlobalSettingStationinline
GetLogDir() constGpgFrontend::GlobalSettingStationinline
GetResourceDir() constGpgFrontend::GlobalSettingStationinline
GetStandaloneDatabaseDir() constGpgFrontend::GlobalSettingStationinline
GetStandaloneGpgBinDir() constGpgFrontend::GlobalSettingStationinline
GetUISettings() noexceptGpgFrontend::GlobalSettingStation
GlobalSettingStation(int channel=SingletonFunctionObject::GetDefaultChannel()) noexceptGpgFrontend::GlobalSettingStationexplicit
init_app_secure_key() (defined in GpgFrontend::GlobalSettingStation)GpgFrontend::GlobalSettingStationprivate
LookupSettings(std::string path, T default_value) noexceptGpgFrontend::GlobalSettingStationinline
operator=(const SingletonFunctionObject< GlobalSettingStation > &)=deleteGpgFrontend::SingletonFunctionObject< GlobalSettingStation >
operator=(const GlobalSettingStation &)=delete (defined in GpgFrontend::SingletonFunctionObject< GlobalSettingStation >)GpgFrontend::SingletonFunctionObject< GlobalSettingStation >
ReleaseChannel(int channel)GpgFrontend::SingletonFunctionObject< GlobalSettingStation >inlinestatic
SetChannel(int channel)GpgFrontend::ChannelObject
SingletonFunctionObject(const SingletonFunctionObject< GlobalSettingStation > &)=deleteGpgFrontend::SingletonFunctionObject< GlobalSettingStation >
SingletonFunctionObject(GlobalSettingStation &&)=deleteGpgFrontend::SingletonFunctionObject< GlobalSettingStation >
SingletonFunctionObject(const GlobalSettingStation &)=deleteGpgFrontend::SingletonFunctionObject< GlobalSettingStation >
SingletonFunctionObject()=defaultGpgFrontend::SingletonFunctionObject< GlobalSettingStation >protected
SingletonFunctionObject(int channel)GpgFrontend::SingletonFunctionObject< GlobalSettingStation >inlineexplicitprotected
SyncSettings() noexceptGpgFrontend::GlobalSettingStation
ui_cfg_GpgFrontend::GlobalSettingStationprivate
ui_config_dir_path_GpgFrontend::GlobalSettingStationprivate
ui_config_path_GpgFrontend::GlobalSettingStationprivate
~GlobalSettingStation() noexcept overrideGpgFrontend::GlobalSettingStation
~SingletonFunctionObject()=defaultGpgFrontend::SingletonFunctionObject< GlobalSettingStation >protectedvirtual
GetLogFilesSize() const (defined in GpgFrontend::GlobalSettingStation)GpgFrontend::GlobalSettingStation
GetResourceDir() constGpgFrontend::GlobalSettingStationinline
GetStandaloneDatabaseDir() constGpgFrontend::GlobalSettingStationinline
GetStandaloneGpgBinDir() constGpgFrontend::GlobalSettingStationinline
GetUISettings() noexceptGpgFrontend::GlobalSettingStation
GlobalSettingStation(int channel=SingletonFunctionObject::GetDefaultChannel()) noexceptGpgFrontend::GlobalSettingStationexplicit
init_app_secure_key() (defined in GpgFrontend::GlobalSettingStation)GpgFrontend::GlobalSettingStationprivate
LookupSettings(std::string path, T default_value) noexceptGpgFrontend::GlobalSettingStationinline
operator=(const SingletonFunctionObject< GlobalSettingStation > &)=deleteGpgFrontend::SingletonFunctionObject< GlobalSettingStation >
operator=(const GlobalSettingStation &)=delete (defined in GpgFrontend::SingletonFunctionObject< GlobalSettingStation >)GpgFrontend::SingletonFunctionObject< GlobalSettingStation >
ReleaseChannel(int channel)GpgFrontend::SingletonFunctionObject< GlobalSettingStation >inlinestatic
SetChannel(int channel)GpgFrontend::ChannelObject
SingletonFunctionObject(const SingletonFunctionObject< GlobalSettingStation > &)=deleteGpgFrontend::SingletonFunctionObject< GlobalSettingStation >
SingletonFunctionObject(GlobalSettingStation &&)=deleteGpgFrontend::SingletonFunctionObject< GlobalSettingStation >
SingletonFunctionObject(const GlobalSettingStation &)=deleteGpgFrontend::SingletonFunctionObject< GlobalSettingStation >
SingletonFunctionObject()=defaultGpgFrontend::SingletonFunctionObject< GlobalSettingStation >protected
SingletonFunctionObject(int channel)GpgFrontend::SingletonFunctionObject< GlobalSettingStation >inlineexplicitprotected
SyncSettings() noexceptGpgFrontend::GlobalSettingStation
ui_cfg_GpgFrontend::GlobalSettingStationprivate
ui_config_dir_path_GpgFrontend::GlobalSettingStationprivate
ui_config_path_GpgFrontend::GlobalSettingStationprivate
~GlobalSettingStation() noexcept overrideGpgFrontend::GlobalSettingStation
~SingletonFunctionObject()=defaultGpgFrontend::SingletonFunctionObject< GlobalSettingStation >protectedvirtual
diff --git a/docs/html/classGpgFrontend_1_1GlobalSettingStation.html b/docs/html/classGpgFrontend_1_1GlobalSettingStation.html index ba47879f..38a592de 100644 --- a/docs/html/classGpgFrontend_1_1GlobalSettingStation.html +++ b/docs/html/classGpgFrontend_1_1GlobalSettingStation.html @@ -96,7 +96,7 @@ Inheritance diagram for GpgFrontend::GlobalSettingStation:
Inheritance graph
- + @@ -107,7 +107,7 @@ Collaboration diagram for GpgFrontend::GlobalSettingStation:
Collaboration graph
- + @@ -156,6 +156,18 @@ std::filesystem::path GetA std::filesystem::path GetCertsDir () const  Get the Certs Dir object. More...
  + +std::string GetLogFilesSize () const +  + +std::string GetDataObjectsFilesSize () const +  + +void ClearAllLogFiles () const +  + +void ClearAllDataObjects () const +  void SyncSettings () noexcept  sync the settings to the file More...
  @@ -201,6 +213,15 @@ Private Member Functions void init_app_secure_key ()   + +int64_t get_files_size_at_path (std::filesystem::path path, std::string filename_pattern) const +  + +std::string get_human_readable_size (int64_t size) const +  + +void delete_all_files (std::filesystem::path path, std::string filename_pattern) const +  @@ -633,8 +654,8 @@ template<typename T >

Private Attributes

Initial value:
=
-
app_data_path_ / "objs"
-
std::filesystem::path app_data_path_
Program Data Location.
Definition: GlobalSettingStation.h:163
+
app_data_path_ / "data_objs"
+
std::filesystem::path app_data_path_
Program Data Location.
Definition: GlobalSettingStation.h:175

Object storage path.

@@ -690,7 +711,7 @@ template<typename T >
Initial value:
=
app_resource_path_ / "locales"
-
std::filesystem::path app_resource_path_
Program Data Location.
Definition: GlobalSettingStation.h:176
+
std::filesystem::path app_resource_path_
Program Data Location.
Definition: GlobalSettingStation.h:188

Program Data Location.

@@ -775,7 +796,7 @@ template<typename T >
Initial value:
=
RESOURCE_DIR_BOOST_PATH(app_path_)
-
std::filesystem::path app_path_
Program Location.
Definition: GlobalSettingStation.h:161
+
std::filesystem::path app_path_
Program Location.
Definition: GlobalSettingStation.h:173

Program Data Location.

@@ -802,7 +823,7 @@ template<typename T >
Initial value:
=
-
std::filesystem::path app_configure_path_
Program Configure Location.
Definition: GlobalSettingStation.h:188
+
std::filesystem::path app_configure_path_
Program Configure Location.
Definition: GlobalSettingStation.h:200

Configure File Directory Location.

@@ -831,7 +852,7 @@ template<typename T >
Initial value:
=
ui_config_dir_path_ / "main.cfg"
-
std::filesystem::path ui_config_dir_path_
Configure File Directory Location.
Definition: GlobalSettingStation.h:191
+
std::filesystem::path ui_config_dir_path_
Configure File Directory Location.
Definition: GlobalSettingStation.h:203

Main Configure File Location.

diff --git a/docs/html/classGpgFrontend_1_1GlobalSettingStation.js b/docs/html/classGpgFrontend_1_1GlobalSettingStation.js index 28507fff..7a871095 100644 --- a/docs/html/classGpgFrontend_1_1GlobalSettingStation.js +++ b/docs/html/classGpgFrontend_1_1GlobalSettingStation.js @@ -2,12 +2,19 @@ var classGpgFrontend_1_1GlobalSettingStation = [ [ "GlobalSettingStation", "classGpgFrontend_1_1GlobalSettingStation.html#abdc6dda369d4214e43ffa2930f7386b0", null ], [ "~GlobalSettingStation", "classGpgFrontend_1_1GlobalSettingStation.html#af700161900e623a0ea14261d51616451", null ], + [ "ClearAllDataObjects", "classGpgFrontend_1_1GlobalSettingStation.html#a393186ae479062b007a41485f608636f", null ], + [ "ClearAllLogFiles", "classGpgFrontend_1_1GlobalSettingStation.html#a43c472c40896308e7bbc14796b5740af", null ], + [ "delete_all_files", "classGpgFrontend_1_1GlobalSettingStation.html#a2b40c59a9fce37873dd3564f8e1bd906", null ], + [ "get_files_size_at_path", "classGpgFrontend_1_1GlobalSettingStation.html#a4eb35bd5306e8c393ad168e91826aed4", null ], + [ "get_human_readable_size", "classGpgFrontend_1_1GlobalSettingStation.html#a369e57383a99bc673273c2819b8bebbb", null ], [ "GetAppConfigPath", "classGpgFrontend_1_1GlobalSettingStation.html#a73d553587447165c5c7b7a9704771963", null ], [ "GetAppDataPath", "classGpgFrontend_1_1GlobalSettingStation.html#a657a17d85d06a3455a2d3ed0782f76a2", null ], [ "GetAppDir", "classGpgFrontend_1_1GlobalSettingStation.html#ae9d1da3d01c4a834120968636596c3c3", null ], [ "GetCertsDir", "classGpgFrontend_1_1GlobalSettingStation.html#a385ae4ab6ad5b17742a5405fa693d789", null ], + [ "GetDataObjectsFilesSize", "classGpgFrontend_1_1GlobalSettingStation.html#a4da1d828e5bb719025f5b8e279e0bd02", null ], [ "GetLocaleDir", "classGpgFrontend_1_1GlobalSettingStation.html#a0b3780564305e9b210d66ef377c21565", null ], [ "GetLogDir", "classGpgFrontend_1_1GlobalSettingStation.html#a7da9b08291ef2391892f5c9375b8db23", null ], + [ "GetLogFilesSize", "classGpgFrontend_1_1GlobalSettingStation.html#a3029ae27bcb2d845f61f7870f43f8c6f", null ], [ "GetResourceDir", "classGpgFrontend_1_1GlobalSettingStation.html#afc1aa3dec55ae4e741f92fce1140a2d0", null ], [ "GetStandaloneDatabaseDir", "classGpgFrontend_1_1GlobalSettingStation.html#af484ca46c5df831a9dd76f3a88d66332", null ], [ "GetStandaloneGpgBinDir", "classGpgFrontend_1_1GlobalSettingStation.html#aa93b21af9ac6649d5749c83c809f5b00", null ], diff --git a/docs/html/classGpgFrontend_1_1GlobalSettingStation__coll__graph.map b/docs/html/classGpgFrontend_1_1GlobalSettingStation__coll__graph.map index 780136d5..0fac6b51 100644 --- a/docs/html/classGpgFrontend_1_1GlobalSettingStation__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1GlobalSettingStation__coll__graph.map @@ -1,5 +1,5 @@ - + diff --git a/docs/html/classGpgFrontend_1_1GlobalSettingStation__coll__graph.md5 b/docs/html/classGpgFrontend_1_1GlobalSettingStation__coll__graph.md5 index 585e8ac5..dc0c468f 100644 --- a/docs/html/classGpgFrontend_1_1GlobalSettingStation__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1GlobalSettingStation__coll__graph.md5 @@ -1 +1 @@ -37fb2bb8856d74cf0f5566e2ac029411 \ No newline at end of file +c2225f2c30ff4eb5d62be693f44a8270 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1GlobalSettingStation__coll__graph.png b/docs/html/classGpgFrontend_1_1GlobalSettingStation__coll__graph.png index 26ffc31a..ed24efbf 100644 Binary files a/docs/html/classGpgFrontend_1_1GlobalSettingStation__coll__graph.png and b/docs/html/classGpgFrontend_1_1GlobalSettingStation__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1GlobalSettingStation__inherit__graph.map b/docs/html/classGpgFrontend_1_1GlobalSettingStation__inherit__graph.map index 780136d5..0fac6b51 100644 --- a/docs/html/classGpgFrontend_1_1GlobalSettingStation__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1GlobalSettingStation__inherit__graph.map @@ -1,5 +1,5 @@ - + diff --git a/docs/html/classGpgFrontend_1_1GlobalSettingStation__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1GlobalSettingStation__inherit__graph.md5 index 585e8ac5..dc0c468f 100644 --- a/docs/html/classGpgFrontend_1_1GlobalSettingStation__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1GlobalSettingStation__inherit__graph.md5 @@ -1 +1 @@ -37fb2bb8856d74cf0f5566e2ac029411 \ No newline at end of file +c2225f2c30ff4eb5d62be693f44a8270 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1GlobalSettingStation__inherit__graph.png b/docs/html/classGpgFrontend_1_1GlobalSettingStation__inherit__graph.png index 26ffc31a..ed24efbf 100644 Binary files a/docs/html/classGpgFrontend_1_1GlobalSettingStation__inherit__graph.png and b/docs/html/classGpgFrontend_1_1GlobalSettingStation__inherit__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1GpgKey-members.html b/docs/html/classGpgFrontend_1_1GpgKey-members.html index c379190f..865a3a1d 100644 --- a/docs/html/classGpgFrontend_1_1GpgKey-members.html +++ b/docs/html/classGpgFrontend_1_1GpgKey-members.html @@ -99,39 +99,40 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1GpgKey.html',''); GetLastUpdateTime() constGpgFrontend::GpgKey GetName() constGpgFrontend::GpgKey GetOwnerTrust() constGpgFrontend::GpgKey - GetPrimaryKeyLength() constGpgFrontend::GpgKey - GetProtocol() constGpgFrontend::GpgKey - GetPublicKeyAlgo() constGpgFrontend::GpgKey - GetSubKeys() constGpgFrontend::GpgKey - GetUIDs() constGpgFrontend::GpgKey - GpgKey()=defaultGpgFrontend::GpgKey - GpgKey(gpgme_key_t &&key)GpgFrontend::GpgKeyexplicit - GpgKey(const gpgme_key_t &key)=deleteGpgFrontend::GpgKey - GpgKey(GpgKey &&k) noexceptGpgFrontend::GpgKey - gpgme_key_opera_mutex (defined in GpgFrontend::GpgKey)GpgFrontend::GpgKeymutableprivate - IsDisabled() constGpgFrontend::GpgKey - IsExpired() constGpgFrontend::GpgKey - IsGood() constGpgFrontend::GpgKey - IsHasActualAuthenticationCapability() constGpgFrontend::GpgKey - IsHasActualCertificationCapability() constGpgFrontend::GpgKey - IsHasActualEncryptionCapability() constGpgFrontend::GpgKey - IsHasActualSigningCapability() constGpgFrontend::GpgKey - IsHasAuthenticationCapability() constGpgFrontend::GpgKey - IsHasCardKey() constGpgFrontend::GpgKey - IsHasCertificationCapability() constGpgFrontend::GpgKey - IsHasEncryptionCapability() constGpgFrontend::GpgKey - IsHasMasterKey() constGpgFrontend::GpgKey - IsHasSigningCapability() constGpgFrontend::GpgKey - IsPrivateKey() constGpgFrontend::GpgKey - IsRevoked() constGpgFrontend::GpgKey - key_ref_ (defined in GpgFrontend::GpgKey)GpgFrontend::GpgKeyprivate - KeyRefHandler typedef (defined in GpgFrontend::GpgKey)GpgFrontend::GpgKeyprivate - operator gpgme_key_t() constGpgFrontend::GpgKeyexplicit - operator<=(const GpgKey &o) constGpgFrontend::GpgKey - operator=(GpgKey &&k) noexceptGpgFrontend::GpgKey - operator=(const gpgme_key_t &key)=deleteGpgFrontend::GpgKey - operator==(const GpgKey &o) constGpgFrontend::GpgKey - ~GpgKey()=defaultGpgFrontend::GpgKey + GetOwnerTrustLevel() constGpgFrontend::GpgKey + GetPrimaryKeyLength() constGpgFrontend::GpgKey + GetProtocol() constGpgFrontend::GpgKey + GetPublicKeyAlgo() constGpgFrontend::GpgKey + GetSubKeys() constGpgFrontend::GpgKey + GetUIDs() constGpgFrontend::GpgKey + GpgKey()=defaultGpgFrontend::GpgKey + GpgKey(gpgme_key_t &&key)GpgFrontend::GpgKeyexplicit + GpgKey(const gpgme_key_t &key)=deleteGpgFrontend::GpgKey + GpgKey(GpgKey &&k) noexceptGpgFrontend::GpgKey + gpgme_key_opera_mutex (defined in GpgFrontend::GpgKey)GpgFrontend::GpgKeymutableprivate + IsDisabled() constGpgFrontend::GpgKey + IsExpired() constGpgFrontend::GpgKey + IsGood() constGpgFrontend::GpgKey + IsHasActualAuthenticationCapability() constGpgFrontend::GpgKey + IsHasActualCertificationCapability() constGpgFrontend::GpgKey + IsHasActualEncryptionCapability() constGpgFrontend::GpgKey + IsHasActualSigningCapability() constGpgFrontend::GpgKey + IsHasAuthenticationCapability() constGpgFrontend::GpgKey + IsHasCardKey() constGpgFrontend::GpgKey + IsHasCertificationCapability() constGpgFrontend::GpgKey + IsHasEncryptionCapability() constGpgFrontend::GpgKey + IsHasMasterKey() constGpgFrontend::GpgKey + IsHasSigningCapability() constGpgFrontend::GpgKey + IsPrivateKey() constGpgFrontend::GpgKey + IsRevoked() constGpgFrontend::GpgKey + key_ref_ (defined in GpgFrontend::GpgKey)GpgFrontend::GpgKeyprivate + KeyRefHandler typedef (defined in GpgFrontend::GpgKey)GpgFrontend::GpgKeyprivate + operator gpgme_key_t() constGpgFrontend::GpgKeyexplicit + operator<=(const GpgKey &o) constGpgFrontend::GpgKey + operator=(GpgKey &&k) noexceptGpgFrontend::GpgKey + operator=(const gpgme_key_t &key)=deleteGpgFrontend::GpgKey + operator==(const GpgKey &o) constGpgFrontend::GpgKey + ~GpgKey()=defaultGpgFrontend::GpgKey
diff --git a/docs/html/classGpgFrontend_1_1GpgKey.html b/docs/html/classGpgFrontend_1_1GpgKey.html index 3a002b1c..11606762 100644 --- a/docs/html/classGpgFrontend_1_1GpgKey.html +++ b/docs/html/classGpgFrontend_1_1GpgKey.html @@ -97,7 +97,7 @@ Collaboration diagram for GpgFrontend::GpgKey:
Collaboration graph
- + @@ -128,6 +128,8 @@ Public Member Functions   std::string GetOwnerTrust () const   +int GetOwnerTrustLevel () const +  std::string GetPublicKeyAlgo () const   boost::posix_time::ptime GetLastUpdateTime () const @@ -516,6 +518,24 @@ std::mutex gpgme_key_opera
Returns
std::string
+
+ + +

◆ GetOwnerTrustLevel()

+ +
+
+ + + + + + + +
int GpgFrontend::GpgKey::GetOwnerTrustLevel () const
+
+
Returns
int
+
diff --git a/docs/html/classGpgFrontend_1_1GpgKey.js b/docs/html/classGpgFrontend_1_1GpgKey.js index dadbe0f7..dbc5f204 100644 --- a/docs/html/classGpgFrontend_1_1GpgKey.js +++ b/docs/html/classGpgFrontend_1_1GpgKey.js @@ -17,6 +17,7 @@ var classGpgFrontend_1_1GpgKey = [ "GetLastUpdateTime", "classGpgFrontend_1_1GpgKey.html#a3532e20298b642f5d312712fa8a791df", null ], [ "GetName", "classGpgFrontend_1_1GpgKey.html#a7bceca68800c3ada9280c29eaeb5affc", null ], [ "GetOwnerTrust", "classGpgFrontend_1_1GpgKey.html#a3327ad34ff14feb75f3fbfc2bfb7fc44", null ], + [ "GetOwnerTrustLevel", "classGpgFrontend_1_1GpgKey.html#a4ced7bda206a0d72a2548783198ae4fe", null ], [ "GetPrimaryKeyLength", "classGpgFrontend_1_1GpgKey.html#a5b276fdeb438fe14ec2850d799401be6", null ], [ "GetProtocol", "classGpgFrontend_1_1GpgKey.html#ad2440a2902c81192d5549fe951ddb130", null ], [ "GetPublicKeyAlgo", "classGpgFrontend_1_1GpgKey.html#a1c21bc3b1788753f56272ad73052fc5f", null ], diff --git a/docs/html/classGpgFrontend_1_1GpgKeyGetter__coll__graph.md5 b/docs/html/classGpgFrontend_1_1GpgKeyGetter__coll__graph.md5 index fddc4127..44c1fc5f 100644 --- a/docs/html/classGpgFrontend_1_1GpgKeyGetter__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1GpgKeyGetter__coll__graph.md5 @@ -1 +1 @@ -1d241d41d01258fed5295b9362f4762e \ No newline at end of file +6a6ff2140cc132606bfabbb7cdfb5327 \ 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 f683683c..d4535b11 100644 Binary files a/docs/html/classGpgFrontend_1_1GpgKeyGetter__coll__graph.png and b/docs/html/classGpgFrontend_1_1GpgKeyGetter__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1GpgKey__coll__graph.map b/docs/html/classGpgFrontend_1_1GpgKey__coll__graph.map index 4b19a8e0..3eab8265 100644 --- a/docs/html/classGpgFrontend_1_1GpgKey__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1GpgKey__coll__graph.map @@ -1,5 +1,5 @@ - + diff --git a/docs/html/classGpgFrontend_1_1GpgKey__coll__graph.md5 b/docs/html/classGpgFrontend_1_1GpgKey__coll__graph.md5 index 6fa3970e..f38a4e66 100644 --- a/docs/html/classGpgFrontend_1_1GpgKey__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1GpgKey__coll__graph.md5 @@ -1 +1 @@ -491e5b154e6f2eabb0b30bf631c32b2d \ No newline at end of file +9a775b2482c42e4e5d3d4f17c369d530 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1GpgKey__coll__graph.png b/docs/html/classGpgFrontend_1_1GpgKey__coll__graph.png index 2a1d7731..d8107f4a 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 d76efd62..3fb1f8a3 100644 --- a/docs/html/classGpgFrontend_1_1SingletonFunctionObject.html +++ b/docs/html/classGpgFrontend_1_1SingletonFunctionObject.html @@ -98,7 +98,7 @@ Inheritance diagram for GpgFrontend::SingletonFunctionObject< T >:
Inheritance graph
- + @@ -108,26 +108,28 @@ Inheritance diagram for GpgFrontend::SingletonFunctionObject< T >:
- - + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + +
diff --git a/docs/html/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.map b/docs/html/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.map index a1d64d39..746018d7 100644 --- a/docs/html/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.map @@ -1,5 +1,5 @@ - + @@ -9,24 +9,26 @@ - - + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + diff --git a/docs/html/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.md5 index bfb4b3d0..87831107 100644 --- a/docs/html/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.md5 @@ -1 +1 @@ -01fc59b26e43f09fd340ee203d0f6b8a \ No newline at end of file +3e36b1c5013e744b90ff1a08ed8d9a68 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.png b/docs/html/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.png index 0fd44745..c0b815f6 100644 Binary files a/docs/html/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.png and b/docs/html/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1ThreadSafeMap-members.html b/docs/html/classGpgFrontend_1_1ThreadSafeMap-members.html new file mode 100644 index 00000000..b291521f --- /dev/null +++ b/docs/html/classGpgFrontend_1_1ThreadSafeMap-members.html @@ -0,0 +1,112 @@ + + + + + + + +GpgFrontend Project: Member List + + + + + + + + + + + + + +
+
+ + + + + + +
+
GpgFrontend Project +
+
A Free, Powerful, Easy-to-Use, Compact, Cross-Platform, and Installation-Free OpenPGP(pgp) Crypto Tool.
+
+
+ + + + + + + +
+
+ +
+
+
+ + + + + + diff --git a/docs/html/classGpgFrontend_1_1ThreadSafeMap.html b/docs/html/classGpgFrontend_1_1ThreadSafeMap.html new file mode 100644 index 00000000..a483cf0f --- /dev/null +++ b/docs/html/classGpgFrontend_1_1ThreadSafeMap.html @@ -0,0 +1,172 @@ + + + + + + + +GpgFrontend Project: GpgFrontend::ThreadSafeMap< Key, Value > Class Template Reference + + + + + + + + + + + + + +
+
+ + + + + + +
+
GpgFrontend Project +
+
A Free, Powerful, Easy-to-Use, Compact, Cross-Platform, and Installation-Free OpenPGP(pgp) Crypto Tool.
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
GpgFrontend::ThreadSafeMap< Key, Value > Class Template Reference
+
+
+
+Inheritance diagram for GpgFrontend::ThreadSafeMap< Key, Value >:
+
+
Inheritance graph
+ + + + +
+
+Collaboration diagram for GpgFrontend::ThreadSafeMap< Key, Value >:
+
+
Collaboration graph
+ + + + + + + + +
+ + + + + + +

+Public Types

+using MapType = std::map< Key, Value >
 
+using IteratorType = typename MapType::iterator
 
+ + + + + + + + + + + + + +

+Public Member Functions

+void insert (const Key &key, const Value &value)
 
+std::optional< Value > get (const Key &key)
 
+bool exists (const Key &key)
 
+IteratorType begin ()
 
+IteratorType end ()
 
+ThreadSafeMapmirror ()
 
+ + + + + + + +

+Private Attributes

+MapType map_mirror_
 
+MapType map_
 
+std::shared_mutex mutex_
 
+
The documentation for this class was generated from the following file: +
+
+ + + + diff --git a/docs/html/classGpgFrontend_1_1ThreadSafeMap.js b/docs/html/classGpgFrontend_1_1ThreadSafeMap.js new file mode 100644 index 00000000..49cddf1e --- /dev/null +++ b/docs/html/classGpgFrontend_1_1ThreadSafeMap.js @@ -0,0 +1,14 @@ +var classGpgFrontend_1_1ThreadSafeMap = +[ + [ "IteratorType", "classGpgFrontend_1_1ThreadSafeMap.html#af1a2463215950aab4068f0ac7aaf4be2", null ], + [ "MapType", "classGpgFrontend_1_1ThreadSafeMap.html#ae47d44e31883547e285e5366db23a0fe", null ], + [ "begin", "classGpgFrontend_1_1ThreadSafeMap.html#a894aa615f685990f88faaac4df4c1924", null ], + [ "end", "classGpgFrontend_1_1ThreadSafeMap.html#a7edfa6ed1e9ab39648df92416de860ef", null ], + [ "exists", "classGpgFrontend_1_1ThreadSafeMap.html#adf6a7f5770e39645bfc97b3f1a5ed93e", null ], + [ "get", "classGpgFrontend_1_1ThreadSafeMap.html#a76a53b29aa6246066a28838f1edecbbc", null ], + [ "insert", "classGpgFrontend_1_1ThreadSafeMap.html#a8499e210ffb71c52cdeb309269127157", null ], + [ "mirror", "classGpgFrontend_1_1ThreadSafeMap.html#a11ef5fe7417c123d4bb5d0445e36f8c7", null ], + [ "map_", "classGpgFrontend_1_1ThreadSafeMap.html#a86951ca9a069cc520549757437b01332", null ], + [ "map_mirror_", "classGpgFrontend_1_1ThreadSafeMap.html#a2058ecb5e51a52f0d1721aa7de6943ee", null ], + [ "mutex_", "classGpgFrontend_1_1ThreadSafeMap.html#acc5f153d80e6930caaa16315e938a044", null ] +]; \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1ThreadSafeMap__coll__graph.map b/docs/html/classGpgFrontend_1_1ThreadSafeMap__coll__graph.map new file mode 100644 index 00000000..d8a4bed8 --- /dev/null +++ b/docs/html/classGpgFrontend_1_1ThreadSafeMap__coll__graph.map @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/docs/html/classGpgFrontend_1_1ThreadSafeMap__coll__graph.md5 b/docs/html/classGpgFrontend_1_1ThreadSafeMap__coll__graph.md5 new file mode 100644 index 00000000..d216b9c9 --- /dev/null +++ b/docs/html/classGpgFrontend_1_1ThreadSafeMap__coll__graph.md5 @@ -0,0 +1 @@ +0fe5367c7090c9d470426cd88c68041a \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1ThreadSafeMap__coll__graph.png b/docs/html/classGpgFrontend_1_1ThreadSafeMap__coll__graph.png new file mode 100644 index 00000000..b0a1ec61 Binary files /dev/null and b/docs/html/classGpgFrontend_1_1ThreadSafeMap__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1ThreadSafeMap__inherit__graph.map b/docs/html/classGpgFrontend_1_1ThreadSafeMap__inherit__graph.map new file mode 100644 index 00000000..c0d4b610 --- /dev/null +++ b/docs/html/classGpgFrontend_1_1ThreadSafeMap__inherit__graph.map @@ -0,0 +1,4 @@ + + + + diff --git a/docs/html/classGpgFrontend_1_1ThreadSafeMap__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1ThreadSafeMap__inherit__graph.md5 new file mode 100644 index 00000000..c48221b6 --- /dev/null +++ b/docs/html/classGpgFrontend_1_1ThreadSafeMap__inherit__graph.md5 @@ -0,0 +1 @@ +e1b020bef354085a6ed78869c4ca8a86 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1ThreadSafeMap__inherit__graph.png b/docs/html/classGpgFrontend_1_1ThreadSafeMap__inherit__graph.png new file mode 100644 index 00000000..9310b806 Binary files /dev/null and b/docs/html/classGpgFrontend_1_1ThreadSafeMap__inherit__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1CommonUtils-members.html b/docs/html/classGpgFrontend_1_1UI_1_1CommonUtils-members.html index 9b0cb862..35136344 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1CommonUtils-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1CommonUtils-members.html @@ -89,28 +89,31 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1CommonUtils.

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

- - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + +
application_need_to_restart_at_once_ (defined in GpgFrontend::UI::CommonUtils)GpgFrontend::UI::CommonUtilsprivate
CommonUtils()GpgFrontend::UI::CommonUtils
GetInstance()GpgFrontend::UI::CommonUtilsstatic
ImportCallbackFunctiopn typedef (defined in GpgFrontend::UI::CommonUtils)GpgFrontend::UI::CommonUtils
instance_ (defined in GpgFrontend::UI::CommonUtils)GpgFrontend::UI::CommonUtilsprivatestatic
isApplicationNeedRestart() (defined in GpgFrontend::UI::CommonUtils)GpgFrontend::UI::CommonUtils
SignalGnupgNotInstall() (defined in GpgFrontend::UI::CommonUtils)GpgFrontend::UI::CommonUtilssignal
SignalKeyDatabaseRefreshDone()GpgFrontend::UI::CommonUtilssignal
SignalKeyStatusUpdated() (defined in GpgFrontend::UI::CommonUtils)GpgFrontend::UI::CommonUtilssignal
SignalNeedUserInputPassphrase() (defined in GpgFrontend::UI::CommonUtils)GpgFrontend::UI::CommonUtilssignal
SignalRestartApplication(int) (defined in GpgFrontend::UI::CommonUtils)GpgFrontend::UI::CommonUtilssignal
SignalUserInputPassphraseDone(QString passphrase) (defined in GpgFrontend::UI::CommonUtils)GpgFrontend::UI::CommonUtilssignal
slot_popup_passphrase_input_dialog() (defined in GpgFrontend::UI::CommonUtils)GpgFrontend::UI::CommonUtilsprivateslot
slot_update_key_status()GpgFrontend::UI::CommonUtilsprivateslot
SlotExecuteCommand(const std::string &cmd, const QStringList &arguments, const std::function< void(QProcess *)> &interact_func)GpgFrontend::UI::CommonUtilsslot
SlotExecuteGpgCommand(const QStringList &arguments, const std::function< void(QProcess *)> &interact_func)GpgFrontend::UI::CommonUtilsslot
SlotImportKeyFromClipboard(QWidget *parent)GpgFrontend::UI::CommonUtilsslot
SlotImportKeyFromFile(QWidget *parent)GpgFrontend::UI::CommonUtilsslot
SlotImportKeyFromKeyServer(QWidget *parent)GpgFrontend::UI::CommonUtilsslot
SlotImportKeyFromKeyServer(const GpgFrontend::KeyIdArgsList &key_ids, const GpgFrontend::UI::CommonUtils::ImportCallbackFunctiopn &callback)GpgFrontend::UI::CommonUtilsstaticslot
SlotImportKeys(QWidget *parent, const std::string &in_buffer)GpgFrontend::UI::CommonUtilsslot
SlotRestartApplication(int) (defined in GpgFrontend::UI::CommonUtils)GpgFrontend::UI::CommonUtilsslot
AddKey2Favourtie(const GpgKey &key) (defined in GpgFrontend::UI::CommonUtils)GpgFrontend::UI::CommonUtils
application_need_to_restart_at_once_ (defined in GpgFrontend::UI::CommonUtils)GpgFrontend::UI::CommonUtilsprivate
CommonUtils()GpgFrontend::UI::CommonUtils
GetInstance()GpgFrontend::UI::CommonUtilsstatic
ImportCallbackFunctiopn typedef (defined in GpgFrontend::UI::CommonUtils)GpgFrontend::UI::CommonUtils
instance_ (defined in GpgFrontend::UI::CommonUtils)GpgFrontend::UI::CommonUtilsprivatestatic
isApplicationNeedRestart() (defined in GpgFrontend::UI::CommonUtils)GpgFrontend::UI::CommonUtils
KeyExistsinFavouriteList(const GpgKey &key) (defined in GpgFrontend::UI::CommonUtils)GpgFrontend::UI::CommonUtils
RemoveKeyFromFavourite(const GpgKey &key) (defined in GpgFrontend::UI::CommonUtils)GpgFrontend::UI::CommonUtils
SignalGnupgNotInstall() (defined in GpgFrontend::UI::CommonUtils)GpgFrontend::UI::CommonUtilssignal
SignalKeyDatabaseRefreshDone()GpgFrontend::UI::CommonUtilssignal
SignalKeyStatusUpdated() (defined in GpgFrontend::UI::CommonUtils)GpgFrontend::UI::CommonUtilssignal
SignalNeedUserInputPassphrase() (defined in GpgFrontend::UI::CommonUtils)GpgFrontend::UI::CommonUtilssignal
SignalRestartApplication(int) (defined in GpgFrontend::UI::CommonUtils)GpgFrontend::UI::CommonUtilssignal
SignalUserInputPassphraseDone(QString passphrase) (defined in GpgFrontend::UI::CommonUtils)GpgFrontend::UI::CommonUtilssignal
slot_popup_passphrase_input_dialog() (defined in GpgFrontend::UI::CommonUtils)GpgFrontend::UI::CommonUtilsprivateslot
slot_update_key_status()GpgFrontend::UI::CommonUtilsprivateslot
SlotExecuteCommand(const std::string &cmd, const QStringList &arguments, const std::function< void(QProcess *)> &interact_func)GpgFrontend::UI::CommonUtilsslot
SlotExecuteGpgCommand(const QStringList &arguments, const std::function< void(QProcess *)> &interact_func)GpgFrontend::UI::CommonUtilsslot
SlotImportKeyFromClipboard(QWidget *parent)GpgFrontend::UI::CommonUtilsslot
SlotImportKeyFromFile(QWidget *parent)GpgFrontend::UI::CommonUtilsslot
SlotImportKeyFromKeyServer(QWidget *parent)GpgFrontend::UI::CommonUtilsslot
SlotImportKeyFromKeyServer(const GpgFrontend::KeyIdArgsList &key_ids, const GpgFrontend::UI::CommonUtils::ImportCallbackFunctiopn &callback)GpgFrontend::UI::CommonUtilsstaticslot
SlotImportKeys(QWidget *parent, const std::string &in_buffer)GpgFrontend::UI::CommonUtilsslot
SlotRestartApplication(int) (defined in GpgFrontend::UI::CommonUtils)GpgFrontend::UI::CommonUtilsslot
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1CommonUtils.html b/docs/html/classGpgFrontend_1_1UI_1_1CommonUtils.html index 893761e1..eff8ed50 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1CommonUtils.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1CommonUtils.html @@ -101,7 +101,7 @@ Inheritance diagram for GpgFrontend::UI::CommonUtils:
Inheritance graph
- +
@@ -110,7 +110,7 @@ Collaboration diagram for GpgFrontend::UI::CommonUtils:
Collaboration graph
- + @@ -175,6 +175,15 @@ Public Member Functions bool isApplicationNeedRestart ()   + +bool KeyExistsinFavouriteList (const GpgKey &key) +  + +void AddKey2Favourtie (const GpgKey &key) +  + +void RemoveKeyFromFavourite (const GpgKey &key) +  @@ -231,7 +240,7 @@ static std::unique_ptr<
Returns
CommonUtils*
-

Referenced by GpgFrontend::UI::KeyMgmt::create_actions(), GpgFrontend::UI::MainWindow::create_actions(), GpgFrontend::UI::InitGpgFrontendUI(), GpgFrontend::UI::RunGpgFrontendUI(), and GpgFrontend::UI::MainWindow::slot_import_key_from_edit().

+

Referenced by GpgFrontend::UI::KeyMgmt::create_actions(), GpgFrontend::UI::MainWindow::create_actions(), GpgFrontend::UI::MainWindow::create_dock_windows(), GpgFrontend::UI::InitGpgFrontendUI(), GpgFrontend::UI::RunGpgFrontendUI(), and GpgFrontend::UI::MainWindow::slot_import_key_from_edit().

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1CommonUtils.js b/docs/html/classGpgFrontend_1_1UI_1_1CommonUtils.js index 3b8ecc92..a2797ab5 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1CommonUtils.js +++ b/docs/html/classGpgFrontend_1_1UI_1_1CommonUtils.js @@ -2,8 +2,11 @@ var classGpgFrontend_1_1UI_1_1CommonUtils = [ [ "ImportCallbackFunctiopn", "classGpgFrontend_1_1UI_1_1CommonUtils.html#aadd249062c24f9b7fc545c03296bbb83", null ], [ "CommonUtils", "classGpgFrontend_1_1UI_1_1CommonUtils.html#a78f5c2696152e9326e845c76c94be965", null ], + [ "AddKey2Favourtie", "classGpgFrontend_1_1UI_1_1CommonUtils.html#a7a7b01b992c465ded7e25e54e3ebacec", null ], [ "GetInstance", "classGpgFrontend_1_1UI_1_1CommonUtils.html#aed529969f54e39e3f9da14ae6dd00d49", null ], [ "isApplicationNeedRestart", "classGpgFrontend_1_1UI_1_1CommonUtils.html#abb25baa60d62d6842028e174f7e341fe", null ], + [ "KeyExistsinFavouriteList", "classGpgFrontend_1_1UI_1_1CommonUtils.html#a570b6d08ceb683f950e94d648bf334ea", null ], + [ "RemoveKeyFromFavourite", "classGpgFrontend_1_1UI_1_1CommonUtils.html#a0cf35e9d02ff3464cb83435a61d060c2", null ], [ "SignalGnupgNotInstall", "classGpgFrontend_1_1UI_1_1CommonUtils.html#a4d2f10c2089c2bfb23be5c1f573af31f", null ], [ "SignalKeyDatabaseRefreshDone", "classGpgFrontend_1_1UI_1_1CommonUtils.html#a1abc83bba95579aa94d0870181991a28", null ], [ "SignalKeyStatusUpdated", "classGpgFrontend_1_1UI_1_1CommonUtils.html#a4bc9e91daa0d3c4ee4141ba4bd8726bb", null ], diff --git a/docs/html/classGpgFrontend_1_1UI_1_1CommonUtils__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1CommonUtils__coll__graph.map index 24807443..4560fb54 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1CommonUtils__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1CommonUtils__coll__graph.map @@ -1,5 +1,5 @@ - + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1CommonUtils__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1CommonUtils__coll__graph.md5 index 95196deb..bc485df6 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1CommonUtils__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1CommonUtils__coll__graph.md5 @@ -1 +1 @@ -9ccaa9bbac90405c7f875bd65294ac91 \ No newline at end of file +9415a44729c72a443972db63160897b4 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1CommonUtils__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1CommonUtils__coll__graph.png index 6638b130..3425f499 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1CommonUtils__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1CommonUtils__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1CommonUtils__inherit__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1CommonUtils__inherit__graph.map index e5ea9b25..0ffb0e98 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1CommonUtils__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1CommonUtils__inherit__graph.map @@ -1,4 +1,4 @@ - + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1CommonUtils__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1CommonUtils__inherit__graph.md5 index be72a484..7a863bca 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1CommonUtils__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1CommonUtils__inherit__graph.md5 @@ -1 +1 @@ -1f5d3460c478127374910b0894596624 \ No newline at end of file +046da7180b33594d351afcb5c96bf44b \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1CommonUtils__inherit__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1CommonUtils__inherit__graph.png index 03972db5..571ffdf9 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1CommonUtils__inherit__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1CommonUtils__inherit__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow.html b/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow.html index 67d0f23d..d5fc8850 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow.html @@ -99,8 +99,8 @@ Inheritance diagram for GpgFrontend::UI::GeneralMainWindow:
Inheritance graph
- - + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow__inherit__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow__inherit__graph.map index 525d2a6a..05ab2ff9 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow__inherit__graph.map @@ -1,6 +1,6 @@ - - + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow__inherit__graph.md5 index 1337fe70..a9145759 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow__inherit__graph.md5 @@ -1 +1 @@ -9be2919c12ba85d51fafcaa0ef389b5c \ No newline at end of file +1e7196263fbb24fabfea5b3bccb36443 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow__inherit__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow__inherit__graph.png index 1ecb3372..9caa84ff 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow__inherit__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow__inherit__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralTab.html b/docs/html/classGpgFrontend_1_1UI_1_1GeneralTab.html index 3e6e308b..319d997a 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
- - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + +

Static Public Member Functions

@@ -193,7 +193,7 @@ std::vector< std::string >  - - + + +
References GpgFrontend::UI::SettingsDialog::ListLanguages(), and SetSettings().

+

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

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralTab__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1GeneralTab__coll__graph.map index cd7453fa..f6c81158 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GeneralTab__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1GeneralTab__coll__graph.map @@ -1,22 +1,22 @@ - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralTab__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1GeneralTab__coll__graph.md5 index 145a2745..27b0ef2d 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GeneralTab__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1GeneralTab__coll__graph.md5 @@ -1 +1 @@ -b86d1d6d931488f83ced2a64a52798e8 \ No newline at end of file +d32f9c0b1a08db29c44676ac7f0e8dd3 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralTab__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1GeneralTab__coll__graph.png index 8660ca82..46d55e92 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_1KeyList-members.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyList-members.html index 2db4e639..0c69c4db 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyList-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyList-members.html @@ -89,7 +89,7 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1KeyList.html

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

- + @@ -99,31 +99,33 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1KeyList.html - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + +
AddListGroupTab(const QString &name, KeyListRow::KeyType selectType=KeyListRow::SECRET_OR_PUBLIC_KEY, KeyListColumn::InfoType infoType=KeyListColumn::ALL, const std::function< bool(const GpgKey &)> &filter=[](const GpgKey &) -> bool { return true;})GpgFrontend::UI::KeyList
AddListGroupTab(const QString &name, const QString &id, KeyListRow::KeyType selectType=KeyListRow::SECRET_OR_PUBLIC_KEY, KeyListColumn::InfoType infoType=KeyListColumn::ALL, const KeyTable::KeyTableFilter filter=[](const GpgKey &, const KeyTable &) -> bool { return true;})GpgFrontend::UI::KeyList
AddMenuAction(QAction *act)GpgFrontend::UI::KeyList
AddSeparator() (defined in GpgFrontend::UI::KeyList)GpgFrontend::UI::KeyList
buffered_key_list_mutex_ (defined in GpgFrontend::UI::KeyList)GpgFrontend::UI::KeyListprivate
contextMenuEvent(QContextMenuEvent *event) overrideGpgFrontend::UI::KeyListprotected
dragEnterEvent(QDragEnterEvent *event) overrideGpgFrontend::UI::KeyListprotected
dropEvent(QDropEvent *event) overrideGpgFrontend::UI::KeyListprotected
GetAllPrivateKeys()GpgFrontend::UI::KeyList
GetChecked()GpgFrontend::UI::KeyList
GetChecked(const KeyTable &key_table)GpgFrontend::UI::KeyListstatic
GetPrivateChecked()GpgFrontend::UI::KeyList
GetSelected()GpgFrontend::UI::KeyList
GetSelectedKey()GpgFrontend::UI::KeyList
import_keys(const QByteArray &inBuffer)GpgFrontend::UI::KeyListprivate
init() (defined in GpgFrontend::UI::KeyList)GpgFrontend::UI::KeyListprivate
KeyList(KeyMenuAbility::AbilityType menu_ability, QWidget *parent=nullptr)GpgFrontend::UI::KeyListexplicit
m_action_ (defined in GpgFrontend::UI::KeyList)GpgFrontend::UI::KeyListprivate
m_key_list_ (defined in GpgFrontend::UI::KeyList)GpgFrontend::UI::KeyListprivate
m_key_tables_ (defined in GpgFrontend::UI::KeyList)GpgFrontend::UI::KeyListprivate
MarkKeys(QStringList *keyIds)GpgFrontend::UI::KeyListstatic
menu_ability_ (defined in GpgFrontend::UI::KeyList)GpgFrontend::UI::KeyListprivate
popup_menu_ (defined in GpgFrontend::UI::KeyList)GpgFrontend::UI::KeyListprivate
SetChecked(KeyIdArgsListPtr key_ids)GpgFrontend::UI::KeyList
SetChecked(const KeyIdArgsListPtr &keyIds, const KeyTable &key_table)GpgFrontend::UI::KeyListstatic
SetColumnWidth(int row, int size)GpgFrontend::UI::KeyList
SetDoubleClickedAction(std::function< void(const GpgKey &, QWidget *)> action)GpgFrontend::UI::KeyList
SignalRefreshDatabase() (defined in GpgFrontend::UI::KeyList)GpgFrontend::UI::KeyListsignal
SignalRefreshStatusBar(const QString &message, int timeout)GpgFrontend::UI::KeyListsignal
slot_double_clicked(const QModelIndex &index)GpgFrontend::UI::KeyListprivateslot
slot_refresh_ui() (defined in GpgFrontend::UI::KeyList)GpgFrontend::UI::KeyListprivateslot
slot_sync_with_key_server() (defined in GpgFrontend::UI::KeyList)GpgFrontend::UI::KeyListprivateslot
SlotRefresh() (defined in GpgFrontend::UI::KeyList)GpgFrontend::UI::KeyListslot
filter_by_keyword() (defined in GpgFrontend::UI::KeyList)GpgFrontend::UI::KeyListprivate
GetAllPrivateKeys()GpgFrontend::UI::KeyList
GetChecked()GpgFrontend::UI::KeyList
GetChecked(const KeyTable &key_table)GpgFrontend::UI::KeyListstatic
GetPrivateChecked()GpgFrontend::UI::KeyList
GetSelected()GpgFrontend::UI::KeyList
GetSelectedKey()GpgFrontend::UI::KeyList
import_keys(const QByteArray &inBuffer)GpgFrontend::UI::KeyListprivate
init() (defined in GpgFrontend::UI::KeyList)GpgFrontend::UI::KeyListprivate
KeyList(KeyMenuAbility::AbilityType menu_ability, QWidget *parent=nullptr)GpgFrontend::UI::KeyListexplicit
m_action_ (defined in GpgFrontend::UI::KeyList)GpgFrontend::UI::KeyListprivate
m_key_list_ (defined in GpgFrontend::UI::KeyList)GpgFrontend::UI::KeyListprivate
m_key_tables_ (defined in GpgFrontend::UI::KeyList)GpgFrontend::UI::KeyListprivate
MarkKeys(QStringList *keyIds)GpgFrontend::UI::KeyListstatic
menu_ability_ (defined in GpgFrontend::UI::KeyList)GpgFrontend::UI::KeyListprivate
popup_menu_ (defined in GpgFrontend::UI::KeyList)GpgFrontend::UI::KeyListprivate
SetChecked(KeyIdArgsListPtr key_ids)GpgFrontend::UI::KeyList
SetChecked(const KeyIdArgsListPtr &keyIds, const KeyTable &key_table)GpgFrontend::UI::KeyListstatic
SetColumnWidth(int row, int size)GpgFrontend::UI::KeyList
SetDoubleClickedAction(std::function< void(const GpgKey &, QWidget *)> action)GpgFrontend::UI::KeyList
SignalRefreshDatabase() (defined in GpgFrontend::UI::KeyList)GpgFrontend::UI::KeyListsignal
SignalRefreshStatusBar(const QString &message, int timeout)GpgFrontend::UI::KeyListsignal
slot_double_clicked(const QModelIndex &index)GpgFrontend::UI::KeyListprivateslot
slot_refresh_ui() (defined in GpgFrontend::UI::KeyList)GpgFrontend::UI::KeyListprivateslot
slot_sync_with_key_server() (defined in GpgFrontend::UI::KeyList)GpgFrontend::UI::KeyListprivateslot
SlotRefresh() (defined in GpgFrontend::UI::KeyList)GpgFrontend::UI::KeyListslot
SlotRefreshUI() (defined in GpgFrontend::UI::KeyList)GpgFrontend::UI::KeyListslot
ui_ (defined in GpgFrontend::UI::KeyList)GpgFrontend::UI::KeyListprivate
uncheck_all() (defined in GpgFrontend::UI::KeyList)GpgFrontend::UI::KeyListprivate
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyList.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyList.html index 1f83f9ca..7578ac0a 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyList.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyList.html @@ -101,7 +101,7 @@ Inheritance diagram for GpgFrontend::UI::KeyList:
Inheritance graph
- +
@@ -110,21 +110,23 @@ Collaboration diagram for GpgFrontend::UI::KeyList:
Collaboration graph
- - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + +
@@ -133,6 +135,9 @@ Public Slots + +
void SlotRefresh ()
 
+void SlotRefreshUI ()
 
@@ -147,8 +152,8 @@ Public Member Functions - - + + @@ -225,6 +230,9 @@ void  + +

Signals

 KeyList (KeyMenuAbility::AbilityType menu_ability, QWidget *parent=nullptr)
 Construct a new Key List object. More...
 
void AddListGroupTab (const QString &name, KeyListRow::KeyType selectType=KeyListRow::SECRET_OR_PUBLIC_KEY, KeyListColumn::InfoType infoType=KeyListColumn::ALL, const std::function< bool(const GpgKey &)> &filter=[](const GpgKey &) -> bool { return true;})
 
void AddListGroupTab (const QString &name, const QString &id, KeyListRow::KeyType selectType=KeyListRow::SECRET_OR_PUBLIC_KEY, KeyListColumn::InfoType infoType=KeyListColumn::ALL, const KeyTable::KeyTableFilter filter=[](const GpgKey &, const KeyTable &) -> bool { return true;})
 
void SetDoubleClickedAction (std::function< void(const GpgKey &, QWidget *)> action)
 Set the Double Clicked Action object. More...
 
uncheck_all () void check_all ()
 
+void filter_by_keyword ()
 
@@ -300,8 +308,8 @@ KeyMenuAbility::AbilityType  + + + + + + @@ -327,8 +341,8 @@ KeyMenuAbility::AbilityType  - - + + @@ -917,7 +931,7 @@ false

References GpgFrontend::SingletonFunctionObject< GpgKeyGetter >::GetInstance(), and GpgFrontend::GpgKeyGetter::GetKey().

-

Referenced by AddListGroupTab().

+

Referenced by AddListGroupTab().

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyList.js b/docs/html/classGpgFrontend_1_1UI_1_1KeyList.js index bc3948da..0769bf14 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyList.js +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyList.js @@ -1,7 +1,7 @@ var classGpgFrontend_1_1UI_1_1KeyList = [ [ "KeyList", "classGpgFrontend_1_1UI_1_1KeyList.html#a7c9d5cacdb42e1fbda5d3cc96e861418", null ], - [ "AddListGroupTab", "classGpgFrontend_1_1UI_1_1KeyList.html#a73ddb7feb1f70eac44e038c3dc925fec", null ], + [ "AddListGroupTab", "classGpgFrontend_1_1UI_1_1KeyList.html#ab8663d18901d10c00dbcc0ba852b3bf4", null ], [ "AddMenuAction", "classGpgFrontend_1_1UI_1_1KeyList.html#aa961e3ba3c48f84dea4bb7ab4f756886", null ], [ "AddSeparator", "classGpgFrontend_1_1UI_1_1KeyList.html#a0ea28d6f108bad10aaa8844fa86db033", null ], [ "check_all", "classGpgFrontend_1_1UI_1_1KeyList.html#a0c3090591dff7b68bfb83c93d2c168e3", null ], @@ -9,6 +9,7 @@ var classGpgFrontend_1_1UI_1_1KeyList = [ "contextMenuEvent", "classGpgFrontend_1_1UI_1_1KeyList.html#a82da61a76a08023b2ddbe2a6869f4190", null ], [ "dragEnterEvent", "classGpgFrontend_1_1UI_1_1KeyList.html#ae3ad87e114432b0d659a0297d520d72f", null ], [ "dropEvent", "classGpgFrontend_1_1UI_1_1KeyList.html#a23ebf79be8de637560d41afd0433c35f", null ], + [ "filter_by_keyword", "classGpgFrontend_1_1UI_1_1KeyList.html#adc5099f326fdd4da9a82e34a68cb2fd7", null ], [ "GetAllPrivateKeys", "classGpgFrontend_1_1UI_1_1KeyList.html#a7ead8845ceb7c9310e3f4742251e1d87", null ], [ "GetChecked", "classGpgFrontend_1_1UI_1_1KeyList.html#ac1e5046770c36f67aab34715e50c0a33", null ], [ "GetChecked", "classGpgFrontend_1_1UI_1_1KeyList.html#a4e5862299b0aebe07daf8fbc642a4c38", null ], @@ -28,6 +29,7 @@ var classGpgFrontend_1_1UI_1_1KeyList = [ "slot_refresh_ui", "classGpgFrontend_1_1UI_1_1KeyList.html#aad57901bf84aaf7849e7cf7bb9f8fc99", null ], [ "slot_sync_with_key_server", "classGpgFrontend_1_1UI_1_1KeyList.html#a6e97d359158f91217b9fe797410c74a6", null ], [ "SlotRefresh", "classGpgFrontend_1_1UI_1_1KeyList.html#a152e66db4a0f033366f43b4ec89073f4", null ], + [ "SlotRefreshUI", "classGpgFrontend_1_1UI_1_1KeyList.html#a84499e74d082e71e90a8526991c5331a", null ], [ "uncheck_all", "classGpgFrontend_1_1UI_1_1KeyList.html#ae9667bbf246913ea22413d46bcda675a", null ], [ "buffered_key_list_mutex_", "classGpgFrontend_1_1UI_1_1KeyList.html#ac4629f2ffafe87215acc66f3cefc23d4", null ], [ "buffered_keys_list_", "classGpgFrontend_1_1UI_1_1KeyList.html#a19b3f64d41843bb267fcd6c9956fde88", null ], diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyList__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeyList__coll__graph.map index 47e50a24..e88b9177 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,19 @@ - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyList__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1KeyList__coll__graph.md5 index 86612449..0b86d37d 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyList__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyList__coll__graph.md5 @@ -1 +1 @@ -bbb168b8d5ff81c3dc9ffb169eeb802e \ No newline at end of file +45ebfa593dd64b1d4d09d49204e2fa4b \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyList__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1KeyList__coll__graph.png index 29d8905f..bd1c1ceb 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_1KeyList__inherit__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeyList__inherit__graph.map index de7887b7..5617202e 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyList__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyList__inherit__graph.map @@ -1,4 +1,4 @@ - + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyList__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1KeyList__inherit__graph.md5 index 1c127239..6c1ab802 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyList__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyList__inherit__graph.md5 @@ -1 +1 @@ -2aa0055ff35628b98d995671776b2a4c \ No newline at end of file +10bbd40bcfec677631fb971a9adf8790 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyList__inherit__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1KeyList__inherit__graph.png index cb6db161..2db5ab35 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1KeyList__inherit__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1KeyList__inherit__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt.html index e39e174e..1be9ae71 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
- - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + +

Private Attributes

<

Member Function Documentation

- -

◆ AddListGroupTab()

+ +

◆ AddListGroupTab()

@@ -312,6 +320,12 @@ KeyMenuAbility::AbilityType 
< const QString &  name,
const QString & id,
<
const std::function< bool(const GpgKey &)> & filter = [](const GpgKey&) -> bool { return true; } const KeyTable::KeyTableFilter filter = [](const GpgKey&, const KeyTable&) -> bool { return true; } 
@@ -314,7 +314,7 @@ Qt::ToolButtonStyle  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - + + diff --git a/docs/html/namespaceGpgFrontend.js b/docs/html/namespaceGpgFrontend.js index c3786ce0..cef46645 100644 --- a/docs/html/namespaceGpgFrontend.js +++ b/docs/html/namespaceGpgFrontend.js @@ -10,6 +10,7 @@ var namespaceGpgFrontend = [ "CoreCommonUtil", "classGpgFrontend_1_1CoreCommonUtil.html", "classGpgFrontend_1_1CoreCommonUtil" ], [ "ArchiveStruct", "structGpgFrontend_1_1ArchiveStruct.html", "structGpgFrontend_1_1ArchiveStruct" ], [ "ArchiveFileOperator", "classGpgFrontend_1_1ArchiveFileOperator.html", "classGpgFrontend_1_1ArchiveFileOperator" ], + [ "ThreadSafeMap", "classGpgFrontend_1_1ThreadSafeMap.html", "classGpgFrontend_1_1ThreadSafeMap" ], [ "CacheManager", "classGpgFrontend_1_1CacheManager.html", "classGpgFrontend_1_1CacheManager" ], [ "CharsetOperator", "classGpgFrontend_1_1CharsetOperator.html", "classGpgFrontend_1_1CharsetOperator" ], [ "CoreSignalStation", "classGpgFrontend_1_1CoreSignalStation.html", "classGpgFrontend_1_1CoreSignalStation" ], diff --git a/docs/html/namespaces.html b/docs/html/namespaces.html index b8b41dcb..716161be 100644 --- a/docs/html/namespaces.html +++ b/docs/html/namespaces.html @@ -165,51 +165,52 @@ $(document).ready(function(){initNavTree('namespaces.html',''); initResizable(); - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
icon_s -

References GpgFrontend::UI::KeyList::AddListGroupTab(), GpgFrontend::UI::KeyList::AddMenuAction(), create_actions(), create_menus(), create_tool_bars(), GpgFrontend::UI::SignalStation::GetInstance(), GpgFrontend::GpgKey::IsDisabled(), GpgFrontend::GpgKey::IsExpired(), GpgFrontend::GpgKey::IsHasMasterKey(), GpgFrontend::GpgKey::IsPrivateKey(), GpgFrontend::GpgKey::IsRevoked(), GpgFrontend::UI::KeyList::SetDoubleClickedAction(), and GpgFrontend::UI::SignalStation::SignalRefreshStatusBar().

+

References GpgFrontend::UI::KeyList::AddListGroupTab(), GpgFrontend::UI::KeyList::AddMenuAction(), create_actions(), create_menus(), create_tool_bars(), GpgFrontend::UI::SignalStation::GetInstance(), GpgFrontend::GpgKey::IsDisabled(), GpgFrontend::GpgKey::IsExpired(), GpgFrontend::GpgKey::IsHasMasterKey(), GpgFrontend::GpgKey::IsPrivateKey(), GpgFrontend::GpgKey::IsRevoked(), GpgFrontend::UI::KeyList::SetDoubleClickedAction(), and GpgFrontend::UI::SignalStation::SignalRefreshStatusBar().

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.map index d4160e8e..430c7c60 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.map @@ -1,25 +1,25 @@ - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.md5 index d700a06a..693d07c8 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.md5 @@ -1 +1 @@ -8c3b0094684823f3450255eaadb03a97 \ No newline at end of file +42045b617e048b376f5e7ed98081a2f5 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.png index e379aacd..8e63f1db 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.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html index 8465ef21..673b270e 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html @@ -113,7 +113,7 @@ Collaboration diagram for GpgFrontend::UI::KeyNewUIDDialog: - + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.map index 82cb626b..e55aaece 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.map @@ -4,7 +4,7 @@ - + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.md5 index 2f76c74d..89a5bf84 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.md5 @@ -1 +1 @@ -b44a6d3adf9fb5b3fd953f8f01671094 \ No newline at end of file +e31d89c48cd3413def767b23597bddb4 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.png index 53345f3a..3ff29333 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_1KeyPairDetailTab.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html index 26fc7f51..f483ee3d 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html @@ -107,11 +107,11 @@ Collaboration diagram for GpgFrontend::UI::KeyPairDetailTab: - - - - - + + + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__coll__graph.map index cc25ab89..871e4d03 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__coll__graph.map @@ -1,9 +1,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 68ed3def..9d920675 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 @@ -a13e3996f6672881d369cc8652858206 \ No newline at end of file +46104683cd2b87f770b47dd36a370599 \ 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 cf5a0efa..950ece23 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 c6f17956..48a546f8 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html @@ -108,11 +108,11 @@ Collaboration diagram for GpgFrontend::UI::KeyPairOperaTab: - - - - - + + + + +
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 c62c68c2..fb530eae 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__coll__graph.map @@ -1,9 +1,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 c891cee7..f3550127 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 @@ -f8674d688d549c6813545e2c71010ba6 \ No newline at end of file +f4d451604a969673cf0719318a36f812 \ 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 f4d78537..6237d088 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html index 99244b06..4ffab9b8 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html @@ -109,14 +109,14 @@ Collaboration diagram for GpgFrontend::UI::KeyPairSubkeyTab: - - - + + + - + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__coll__graph.map index 44c62ca6..eb32ce48 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__coll__graph.map @@ -1,13 +1,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 a90788aa..ec430774 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__coll__graph.md5 @@ -1 +1 @@ -231e0aa7ef95a4c60bf0baa7cf16212e \ No newline at end of file +e2f962319f05af8ef11aafcfa5fb8b0e \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__coll__graph.png index 0a844a4a..43ce5dd7 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html index 8faaf8b4..596bd065 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html @@ -119,7 +119,7 @@ Collaboration diagram for GpgFrontend::UI::KeyPairUIDTab: - + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__coll__graph.map index cb93ff73..9360487d 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__coll__graph.map @@ -10,7 +10,7 @@ - + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__coll__graph.md5 index 39e6bcea..4950232d 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__coll__graph.md5 @@ -1 +1 @@ -58e82c65d4b548f3bf23befd9da4da28 \ No newline at end of file +1af52a292a074b62c0c4b8a3358b93d8 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__coll__graph.png index 12cab9d1..0bbea6db 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_1KeySetExpireDateDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html index d7e2f031..0eb40837 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html @@ -117,7 +117,7 @@ Collaboration diagram for GpgFrontend::UI::KeySetExpireDateDialog: - + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.map index a3ba3ff0..5de4727e 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.map @@ -8,7 +8,7 @@ - + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.md5 index 5f3bda18..aabc6978 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.md5 @@ -1 +1 @@ -b911703313c2e4b87529ce70956609ed \ No newline at end of file +f0896364489e7448d546f36f389d9609 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.png index ab7135d8..094bd14c 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_1KeyUIDSignDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html index 7fd675ed..a7504820 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html @@ -107,27 +107,27 @@ Collaboration diagram for GpgFrontend::UI::KeyUIDSignDialog:
Collaboration graph
- - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + +
@@ -235,7 +235,7 @@ void  + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1TextEdit.js b/docs/html/classGpgFrontend_1_1UI_1_1TextEdit.js index 36157fed..a5350b85 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1TextEdit.js +++ b/docs/html/classGpgFrontend_1_1UI_1_1TextEdit.js @@ -19,6 +19,7 @@ var classGpgFrontend_1_1UI_1_1TextEdit = [ "SlotNewFileTab", "classGpgFrontend_1_1UI_1_1TextEdit.html#ae22ecadf31648f424eb8ab86bd28ef39", null ], [ "slotNewHelpTab", "classGpgFrontend_1_1UI_1_1TextEdit.html#a3c17fdf3abf9c4fb6ce35cfb8f0f8fc4", null ], [ "SlotNewTab", "classGpgFrontend_1_1UI_1_1TextEdit.html#a57a46ab5595622ae0b7bceef7d56bd7c", null ], + [ "SlotNewTabWithContent", "classGpgFrontend_1_1UI_1_1TextEdit.html#a7fc06cc343339ddf9a8ab0b006ba2aec", null ], [ "SlotOpen", "classGpgFrontend_1_1UI_1_1TextEdit.html#a15335d38187ddf580b7200d856768cfb", null ], [ "SlotOpenFile", "classGpgFrontend_1_1UI_1_1TextEdit.html#a60c73cc66a48a38c13e7890de49e86c3", null ], [ "SlotPaste", "classGpgFrontend_1_1UI_1_1TextEdit.html#aa2230418dc8f72c400f5a90082a983c9", null ], diff --git a/docs/html/classGpgFrontend_1_1UI_1_1TextEdit__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1TextEdit__coll__graph.md5 index 8296eba1..86cf31d8 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1TextEdit__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1TextEdit__coll__graph.md5 @@ -1 +1 @@ -c87077e381a19059fe3635b16c14a500 \ No newline at end of file +f1ab6707fa54f37309be6b9e5c25dc37 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1TextEdit__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1TextEdit__coll__graph.png index aaefaec5..0cb8d6e1 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1TextEdit__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1TextEdit__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1TextEdit__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1TextEdit__inherit__graph.md5 index 8296eba1..86cf31d8 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1TextEdit__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1TextEdit__inherit__graph.md5 @@ -1 +1 @@ -c87077e381a19059fe3635b16c14a500 \ No newline at end of file +f1ab6707fa54f37309be6b9e5c25dc37 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1TextEdit__inherit__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1TextEdit__inherit__graph.png index aaefaec5..0cb8d6e1 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1TextEdit__inherit__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1TextEdit__inherit__graph.png differ diff --git a/docs/html/classes.html b/docs/html/classes.html index 97a0f507..a94cfb8d 100644 --- a/docs/html/classes.html +++ b/docs/html/classes.html @@ -135,7 +135,7 @@ $(document).ready(function(){initNavTree('classes.html',''); initResizable(); })
SettingsDialog (GpgFrontend::UI)
SettingsObject (GpgFrontend::UI)
SignalStation (GpgFrontend::UI)
SignatureDetailsDialog
SignersPicker (GpgFrontend::UI)
SingletonFunctionObject (GpgFrontend)
SingletonStorage (GpgFrontend)
SingletonStorageCollection (GpgFrontend)
SoftwareVersion (GpgFrontend::UI)
SubkeyGenerateDialog (GpgFrontend::UI)
T
-
Task (GpgFrontend::Thread)
TaskRunner (GpgFrontend::Thread)
TaskRunnerGetter (GpgFrontend::Thread)
TestListedKeyServerThread
TextEdit (GpgFrontend::UI)
TOFUInfoPage (GpgFrontend::UI)
TranslatorsTab (GpgFrontend::UI)
+
Task (GpgFrontend::Thread)
TaskRunner (GpgFrontend::Thread)
TaskRunnerGetter (GpgFrontend::Thread)
TestListedKeyServerThread
TextEdit (GpgFrontend::UI)
ThreadSafeMap (GpgFrontend)
TOFUInfoPage (GpgFrontend::UI)
TranslatorsTab (GpgFrontend::UI)
U
UpdateTab (GpgFrontend::UI)
diff --git a/docs/html/functions_a.html b/docs/html/functions_a.html index 2583d162..10f04bf1 100644 --- a/docs/html/functions_a.html +++ b/docs/html/functions_a.html @@ -98,7 +98,7 @@ $(document).ready(function(){initNavTree('functions_a.html',''); initResizable() : GpgFrontend::UI::KeyPairDetailTab
  • AddListGroupTab() -: GpgFrontend::UI::KeyList +: GpgFrontend::UI::KeyList
  • AddMenuAction() : GpgFrontend::UI::KeyList diff --git a/docs/html/functions_c.html b/docs/html/functions_c.html index 1d2f2f52..7bccc549 100644 --- a/docs/html/functions_c.html +++ b/docs/html/functions_c.html @@ -85,6 +85,9 @@ $(document).ready(function(){initNavTree('functions_c.html',''); initResizable()
    Here is a list of all documented class members with links to the class documentation for each member:

    - c -

  • - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    movePosition2CenterOf

    A DateTime after 5 Years is recommend.

    Note further that the OpenPGP protocol uses 32 bit values for timestamps and thus can only encode dates up to the year 2106.

    -

    References GpgFrontend::UI::KeyList::AddListGroupTab(), GpgFrontend::GpgKey::GetId(), GpgFrontend::UI::SignalStation::GetInstance(), GpgFrontend::GpgKey::IsDisabled(), GpgFrontend::GpgKey::IsExpired(), GpgFrontend::GpgKey::IsHasCertificationCapability(), GpgFrontend::GpgKey::IsHasMasterKey(), GpgFrontend::GpgKey::IsRevoked(), and slot_sign_key().

    +

    References GpgFrontend::UI::KeyList::AddListGroupTab(), GpgFrontend::GpgKey::GetId(), GpgFrontend::UI::SignalStation::GetInstance(), GpgFrontend::GpgKey::IsDisabled(), GpgFrontend::GpgKey::IsExpired(), GpgFrontend::GpgKey::IsHasCertificationCapability(), GpgFrontend::GpgKey::IsHasMasterKey(), GpgFrontend::GpgKey::IsRevoked(), and slot_sign_key().

    diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.map index afb342fc..79f8ca82 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.map @@ -1,23 +1,23 @@ - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.md5 index 6ecbf4e0..9aeb6a6b 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.md5 @@ -1 +1 @@ -c5ce6a70c11fda17a8ef978e19ff6060 \ No newline at end of file +344a2d0d8090ac6566322809461238b1 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.png index e2b3d20b..6e025d7f 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_1MainWindow-members.html b/docs/html/classGpgFrontend_1_1UI_1_1MainWindow-members.html index 45d63cff..e2d4e046 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1MainWindow-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1MainWindow-members.html @@ -90,144 +90,153 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1MainWindow.h

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

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - + + + + + + + + + - - + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    about_act_GpgFrontend::UI::MainWindowprivate
    add_pgp_header_act_GpgFrontend::UI::MainWindowprivate
    append_key_create_date_to_editor_act_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
    append_key_expire_date_to_editor_act_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
    append_key_fingerprint_to_editor_act_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
    append_selected_keys_act_GpgFrontend::UI::MainWindowprivate
    attachment_dock_GpgFrontend::UI::MainWindowprivate
    attachment_dock_created_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
    browser_act_GpgFrontend::UI::MainWindowprivate
    check_update_act_GpgFrontend::UI::MainWindowprivate
    clean_double_line_breaks_act_GpgFrontend::UI::MainWindowprivate
    clean_gpg_password_cache_act_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
    close_attachment_dock()GpgFrontend::UI::MainWindowprivate
    close_tab_act_GpgFrontend::UI::MainWindowprivate
    closeEvent(QCloseEvent *event) overrideGpgFrontend::UI::MainWindowprotected
    copy_act_GpgFrontend::UI::MainWindowprivate
    copy_key_default_uid_to_clipboard_act_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
    copy_key_id_to_clipboard_act_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
    copy_mail_address_to_clipboard_act_GpgFrontend::UI::MainWindowprivate
    create_actions()GpgFrontend::UI::MainWindowprivate
    create_attachment_dock()GpgFrontend::UI::MainWindowprivate
    create_dock_windows()GpgFrontend::UI::MainWindowprivate
    create_menus()GpgFrontend::UI::MainWindowprivate
    create_status_bar()GpgFrontend::UI::MainWindowprivate
    create_tool_bars()GpgFrontend::UI::MainWindowprivate
    crypt_menu_GpgFrontend::UI::MainWindowprivate
    crypt_tool_bar_GpgFrontend::UI::MainWindowprivate
    cut_act_GpgFrontend::UI::MainWindowprivate
    cut_pgp_header_act_GpgFrontend::UI::MainWindowprivate
    decrypt_act_GpgFrontend::UI::MainWindowprivate
    decrypt_verify_act_GpgFrontend::UI::MainWindowprivate
    edit_GpgFrontend::UI::MainWindowprivate
    edit_menu_GpgFrontend::UI::MainWindowprivate
    edit_tool_bar_GpgFrontend::UI::MainWindowprivate
    encrypt_act_GpgFrontend::UI::MainWindowprivate
    encrypt_sign_act_GpgFrontend::UI::MainWindowprivate
    file_menu_GpgFrontend::UI::MainWindowprivate
    file_tool_bar_GpgFrontend::UI::MainWindowprivate
    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
    gnupg_act_GpgFrontend::UI::MainWindowprivate
    gnupg_controller_open_act_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
    gpg_menu_GpgFrontend::UI::MainWindowprivate
    help_menu_GpgFrontend::UI::MainWindowprivate
    icon_size_ (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprotected
    icon_style_ (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprotected
    import_button_GpgFrontend::UI::MainWindowprivate
    import_key_from_clipboard_act_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
    import_key_from_edit_act_GpgFrontend::UI::MainWindowprivate
    import_key_from_file_act_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
    import_key_from_key_server_act_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
    import_key_menu_GpgFrontend::UI::MainWindowprivate
    info_board_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
    info_board_dock_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
    Init() noexceptGpgFrontend::UI::MainWindow
    key_list_dock_GpgFrontend::UI::MainWindowprivate
    key_menu_GpgFrontend::UI::MainWindowprivate
    key_tool_bar_GpgFrontend::UI::MainWindowprivate
    m_key_list_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
    MainWindow() (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindow
    name_ (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprivate
    new_tab_act_GpgFrontend::UI::MainWindowprivate
    open_act_GpgFrontend::UI::MainWindowprivate
    open_key_management_act_GpgFrontend::UI::MainWindowprivate
    open_settings_act_GpgFrontend::UI::MainWindowprivate
    paste_act_GpgFrontend::UI::MainWindowprivate
    pos_ (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprivate
    print_act_GpgFrontend::UI::MainWindowprivate
    prohibit_update_checking_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
    quit_act_GpgFrontend::UI::MainWindowprivate
    quote_act_GpgFrontend::UI::MainWindowprivate
    add_key_2_favourtie_act_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
    add_pgp_header_act_GpgFrontend::UI::MainWindowprivate
    append_key_create_date_to_editor_act_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
    append_key_expire_date_to_editor_act_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
    append_key_fingerprint_to_editor_act_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
    append_selected_keys_act_GpgFrontend::UI::MainWindowprivate
    attachment_dock_GpgFrontend::UI::MainWindowprivate
    attachment_dock_created_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
    browser_act_GpgFrontend::UI::MainWindowprivate
    check_update_act_GpgFrontend::UI::MainWindowprivate
    clean_double_line_breaks_act_GpgFrontend::UI::MainWindowprivate
    clean_gpg_password_cache_act_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
    close_attachment_dock()GpgFrontend::UI::MainWindowprivate
    close_tab_act_GpgFrontend::UI::MainWindowprivate
    closeEvent(QCloseEvent *event) overrideGpgFrontend::UI::MainWindowprotected
    copy_act_GpgFrontend::UI::MainWindowprivate
    copy_key_default_uid_to_clipboard_act_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
    copy_key_id_to_clipboard_act_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
    copy_mail_address_to_clipboard_act_GpgFrontend::UI::MainWindowprivate
    create_actions()GpgFrontend::UI::MainWindowprivate
    create_attachment_dock()GpgFrontend::UI::MainWindowprivate
    create_dock_windows()GpgFrontend::UI::MainWindowprivate
    create_menus()GpgFrontend::UI::MainWindowprivate
    create_status_bar()GpgFrontend::UI::MainWindowprivate
    create_tool_bars()GpgFrontend::UI::MainWindowprivate
    crypt_menu_GpgFrontend::UI::MainWindowprivate
    crypt_tool_bar_GpgFrontend::UI::MainWindowprivate
    cut_act_GpgFrontend::UI::MainWindowprivate
    cut_pgp_header_act_GpgFrontend::UI::MainWindowprivate
    decrypt_act_GpgFrontend::UI::MainWindowprivate
    decrypt_verify_act_GpgFrontend::UI::MainWindowprivate
    edit_GpgFrontend::UI::MainWindowprivate
    edit_menu_GpgFrontend::UI::MainWindowprivate
    edit_tool_bar_GpgFrontend::UI::MainWindowprivate
    encrypt_act_GpgFrontend::UI::MainWindowprivate
    encrypt_sign_act_GpgFrontend::UI::MainWindowprivate
    file_menu_GpgFrontend::UI::MainWindowprivate
    file_tool_bar_GpgFrontend::UI::MainWindowprivate
    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
    gnupg_act_GpgFrontend::UI::MainWindowprivate
    gnupg_controller_open_act_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
    gpg_menu_GpgFrontend::UI::MainWindowprivate
    help_menu_GpgFrontend::UI::MainWindowprivate
    icon_size_ (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprotected
    icon_style_ (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprotected
    import_button_GpgFrontend::UI::MainWindowprivate
    import_key_from_clipboard_act_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
    import_key_from_edit_act_GpgFrontend::UI::MainWindowprivate
    import_key_from_file_act_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
    import_key_from_key_server_act_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
    import_key_menu_GpgFrontend::UI::MainWindowprivate
    info_board_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
    info_board_dock_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
    Init() noexceptGpgFrontend::UI::MainWindow
    key_list_dock_GpgFrontend::UI::MainWindowprivate
    key_menu_GpgFrontend::UI::MainWindowprivate
    key_tool_bar_GpgFrontend::UI::MainWindowprivate
    m_key_list_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
    MainWindow() (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindow
    name_ (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprivate
    new_tab_act_GpgFrontend::UI::MainWindowprivate
    open_act_GpgFrontend::UI::MainWindowprivate
    open_key_management_act_GpgFrontend::UI::MainWindowprivate
    open_settings_act_GpgFrontend::UI::MainWindowprivate
    paste_act_GpgFrontend::UI::MainWindowprivate
    pos_ (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprivate
    print_act_GpgFrontend::UI::MainWindowprivate
    prohibit_update_checking_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
    quit_act_GpgFrontend::UI::MainWindowprivate
    quote_act_GpgFrontend::UI::MainWindowprivate
    recover_editor_unsaved_pages_from_cache() (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
    redo_act_GpgFrontend::UI::MainWindowprivate
    refresh_keys_from_key_server()GpgFrontend::UI::MainWindowprivateslot
    reload_components_act_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
    restart_components_act_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
    restart_needed_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
    restore_settings()GpgFrontend::UI::MainWindowprivate
    save_act_GpgFrontend::UI::MainWindowprivate
    save_as_act_GpgFrontend::UI::MainWindowprivate
    save_settings()GpgFrontend::UI::MainWindowprivate
    select_all_act_GpgFrontend::UI::MainWindowprivate
    remove_key_from_favourtie_act_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
    restart_components_act_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
    restart_needed_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
    restore_settings()GpgFrontend::UI::MainWindowprivate
    save_act_GpgFrontend::UI::MainWindowprivate
    save_as_act_GpgFrontend::UI::MainWindowprivate
    save_settings()GpgFrontend::UI::MainWindowprivate
    select_all_act_GpgFrontend::UI::MainWindowprivate
    set_owner_trust_of_key_act_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
    SetCryptoMenuStatus(CryptoMenu::OperationType type)GpgFrontend::UI::MainWindow
    show_key_details_act_GpgFrontend::UI::MainWindowprivate
    sign_act_GpgFrontend::UI::MainWindowprivate
    SignalLoaded() (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowsignal
    SignalRestartApplication(int) (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowsignal
    SignalKeyDatabaseRefresh() (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowsignal
    SignalLoaded() (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowsignal
    SignalRestartApplication(int) (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowsignal
    SignalUIRefresh() (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowsignal
    size_ (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprivate
    slot_add_pgp_header()GpgFrontend::UI::MainWindowprivateslot
    slot_append_keys_create_datetime() (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivateslot
    slot_append_keys_expire_datetime() (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivateslot
    slot_append_keys_fingerprint() (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivateslot
    slot_append_selected_keys()GpgFrontend::UI::MainWindowprivateslot
    slot_clean_double_line_breaks()GpgFrontend::UI::MainWindowprivateslot
    slot_copy_default_uid_to_clipboard()GpgFrontend::UI::MainWindowprivateslot
    slot_copy_key_id_to_clipboard()GpgFrontend::UI::MainWindowprivateslot
    slot_copy_mail_address_to_clipboard()GpgFrontend::UI::MainWindowprivateslot
    slot_cut_pgp_header()GpgFrontend::UI::MainWindowprivateslot
    slot_decrypt()GpgFrontend::UI::MainWindowprivateslot
    slot_decrypt_verify()GpgFrontend::UI::MainWindowprivateslot
    slot_disable_tab_actions(int number)GpgFrontend::UI::MainWindowprivateslot
    slot_encrypt()GpgFrontend::UI::MainWindowprivateslot
    slot_encrypt_sign()GpgFrontend::UI::MainWindowprivateslot
    slot_find()GpgFrontend::UI::MainWindowprivateslot
    slot_import_key_from_edit()GpgFrontend::UI::MainWindowprivateslot
    slot_open_file_tab()GpgFrontend::UI::MainWindowprivateslot
    slot_open_key_management()GpgFrontend::UI::MainWindowprivateslot
    slot_open_settings_dialog()GpgFrontend::UI::MainWindowprivateslot
    slot_add_key_2_favourite() (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivateslot
    slot_add_pgp_header()GpgFrontend::UI::MainWindowprivateslot
    slot_append_keys_create_datetime() (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivateslot
    slot_append_keys_expire_datetime() (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivateslot
    slot_append_keys_fingerprint() (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivateslot
    slot_append_selected_keys()GpgFrontend::UI::MainWindowprivateslot
    slot_clean_double_line_breaks()GpgFrontend::UI::MainWindowprivateslot
    slot_copy_default_uid_to_clipboard()GpgFrontend::UI::MainWindowprivateslot
    slot_copy_key_id_to_clipboard()GpgFrontend::UI::MainWindowprivateslot
    slot_copy_mail_address_to_clipboard()GpgFrontend::UI::MainWindowprivateslot
    slot_cut_pgp_header()GpgFrontend::UI::MainWindowprivateslot
    slot_decrypt()GpgFrontend::UI::MainWindowprivateslot
    slot_decrypt_verify()GpgFrontend::UI::MainWindowprivateslot
    slot_disable_tab_actions(int number)GpgFrontend::UI::MainWindowprivateslot
    slot_encrypt()GpgFrontend::UI::MainWindowprivateslot
    slot_encrypt_sign()GpgFrontend::UI::MainWindowprivateslot
    slot_find()GpgFrontend::UI::MainWindowprivateslot
    slot_import_key_from_edit()GpgFrontend::UI::MainWindowprivateslot
    slot_open_file_tab()GpgFrontend::UI::MainWindowprivateslot
    slot_open_key_management()GpgFrontend::UI::MainWindowprivateslot
    slot_open_settings_dialog()GpgFrontend::UI::MainWindowprivateslot
    slot_remove_key_from_favourite() (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivateslot
    slot_restore_settings() noexcept (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprivateslot
    slot_save_settings() noexcept (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprivateslot
    slot_show_key_details()GpgFrontend::UI::MainWindowprivateslot
    slot_sign()GpgFrontend::UI::MainWindowprivateslot
    slot_start_wizard()GpgFrontend::UI::MainWindowprivateslot
    slot_verify()GpgFrontend::UI::MainWindowprivateslot
    slot_version_upgrade(const SoftwareVersion &version)GpgFrontend::UI::MainWindowprivateslot
    SlotFileDecrypt()GpgFrontend::UI::MainWindowslot
    SlotFileDecryptVerify()GpgFrontend::UI::MainWindowslot
    SlotFileEncrypt()GpgFrontend::UI::MainWindowslot
    SlotFileEncryptSign()GpgFrontend::UI::MainWindowslot
    SlotFileSign()GpgFrontend::UI::MainWindowslot
    SlotFileVerify()GpgFrontend::UI::MainWindowslot
    SlotOpenFile(QString &path)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
    status_bar_icon_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
    steganography_menu_GpgFrontend::UI::MainWindowprivate
    switch_tab_down_act_GpgFrontend::UI::MainWindowprivate
    switch_tab_up_act_GpgFrontend::UI::MainWindowprivate
    translate_act_GpgFrontend::UI::MainWindowprivate
    undo_act_GpgFrontend::UI::MainWindowprivate
    upload_key_to_server()GpgFrontend::UI::MainWindowprivateslot
    verify_act_GpgFrontend::UI::MainWindowprivate
    view_menu_GpgFrontend::UI::MainWindowprivate
    zoom_in_act_GpgFrontend::UI::MainWindowprivate
    zoom_out_act_GpgFrontend::UI::MainWindowprivate
    ~GeneralMainWindow() override (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindow
    slot_set_owner_trust_level_of_key() (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivateslot
    slot_show_key_details()GpgFrontend::UI::MainWindowprivateslot
    slot_sign()GpgFrontend::UI::MainWindowprivateslot
    slot_start_wizard()GpgFrontend::UI::MainWindowprivateslot
    slot_verify()GpgFrontend::UI::MainWindowprivateslot
    slot_version_upgrade(const SoftwareVersion &version)GpgFrontend::UI::MainWindowprivateslot
    SlotFileDecrypt()GpgFrontend::UI::MainWindowslot
    SlotFileDecryptVerify()GpgFrontend::UI::MainWindowslot
    SlotFileEncrypt()GpgFrontend::UI::MainWindowslot
    SlotFileEncryptSign()GpgFrontend::UI::MainWindowslot
    SlotFileSign()GpgFrontend::UI::MainWindowslot
    SlotFileVerify()GpgFrontend::UI::MainWindowslot
    SlotOpenFile(QString &path)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
    status_bar_icon_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
    steganography_menu_GpgFrontend::UI::MainWindowprivate
    switch_tab_down_act_GpgFrontend::UI::MainWindowprivate
    switch_tab_up_act_GpgFrontend::UI::MainWindowprivate
    translate_act_GpgFrontend::UI::MainWindowprivate
    undo_act_GpgFrontend::UI::MainWindowprivate
    upload_key_to_server()GpgFrontend::UI::MainWindowprivateslot
    verify_act_GpgFrontend::UI::MainWindowprivate
    view_menu_GpgFrontend::UI::MainWindowprivate
    zoom_in_act_GpgFrontend::UI::MainWindowprivate
    zoom_out_act_GpgFrontend::UI::MainWindowprivate
    ~GeneralMainWindow() override (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindow
    diff --git a/docs/html/classGpgFrontend_1_1UI_1_1MainWindow.html b/docs/html/classGpgFrontend_1_1UI_1_1MainWindow.html index b2e0c121..634701f9 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1MainWindow.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1MainWindow.html @@ -101,7 +101,7 @@ Inheritance diagram for GpgFrontend::UI::MainWindow:
    Inheritance graph
    - + @@ -111,29 +111,29 @@ Collaboration diagram for GpgFrontend::UI::MainWindow:
    Collaboration graph
    - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + +
    @@ -172,6 +172,12 @@ void  + + + +
    SignalLoaded () void SignalRestartApplication (int)
     
    +void SignalUIRefresh ()
     
    +void SignalKeyDatabaseRefresh ()
     
    @@ -250,6 +256,15 @@ void  + + + + + +

    Public Member Functions

    slot_append_keys_fing
     
    void slot_version_upgrade (const SoftwareVersion &version)
     
    +void slot_add_key_2_favourite ()
     
    +void slot_remove_key_from_favourite ()
     
    +void slot_set_owner_trust_level_of_key ()
     
    @@ -269,6 +284,9 @@ Private Member Functions + + + + + + + + @@ -714,7 +741,7 @@ Qt::ToolButtonStyle  + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SignalStation.js b/docs/html/classGpgFrontend_1_1UI_1_1SignalStation.js index 35b63334..1e6785ac 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SignalStation.js +++ b/docs/html/classGpgFrontend_1_1UI_1_1SignalStation.js @@ -7,6 +7,7 @@ var classGpgFrontend_1_1UI_1_1SignalStation = [ "SignalRefreshInfoBoard", "classGpgFrontend_1_1UI_1_1SignalStation.html#a94d4c7d79e0deb7026083689bc5dc2ad", null ], [ "SignalRefreshStatusBar", "classGpgFrontend_1_1UI_1_1SignalStation.html#a7b5fb2e2c0ad238313650a08ea648ce3", null ], [ "SignalRestartApplication", "classGpgFrontend_1_1UI_1_1SignalStation.html#ac2848f49568a15d96e68e5622476d328", null ], + [ "SignalUIRefresh", "classGpgFrontend_1_1UI_1_1SignalStation.html#a0aca1aa881195ee37b697e913cdc6ef3", null ], [ "SignalUserInputPassphraseDone", "classGpgFrontend_1_1UI_1_1SignalStation.html#afa0b1cced7430180fae67ad2303ce448", null ], [ "_instance", "classGpgFrontend_1_1UI_1_1SignalStation.html#ac98e4fff1e400f810ecea9903ee880df", null ] ]; \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker.html b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker.html index b80949cf..29bc1529 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker.html @@ -105,26 +105,26 @@ Collaboration diagram for GpgFrontend::UI::SignersPicker:
    Collaboration graph
    - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + +

    Private Member Functions

     
    void restore_settings ()
     
    +void recover_editor_unsaved_pages_from_cache ()
     
    void save_settings ()
     
    @@ -456,6 +474,15 @@ QAction * copy_key_id_to_c
    QAction * copy_key_default_uid_to_clipboard_act_ {}
     
    +QAction * add_key_2_favourtie_act_ {}
     
    +QAction * remove_key_from_favourtie_act_ {}
     
    +QAction * set_owner_trust_of_key_act_ {}
     
    QAction * open_key_management_act_ {}
     Action to open key management.
    icon_s diff --git a/docs/html/classGpgFrontend_1_1UI_1_1MainWindow.js b/docs/html/classGpgFrontend_1_1UI_1_1MainWindow.js index 84dc8030..7c539f8b 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1MainWindow.js +++ b/docs/html/classGpgFrontend_1_1UI_1_1MainWindow.js @@ -12,12 +12,16 @@ var classGpgFrontend_1_1UI_1_1MainWindow = [ "create_tool_bars", "classGpgFrontend_1_1UI_1_1MainWindow.html#aaa1de043b71dbcf0e8d8c265b2a67bd3", null ], [ "get_restart_needed", "classGpgFrontend_1_1UI_1_1MainWindow.html#a5e95f62dac9fba1ead6ec69c145923db", null ], [ "Init", "classGpgFrontend_1_1UI_1_1MainWindow.html#a08ba4521f68c488b23b651e201011759", null ], + [ "recover_editor_unsaved_pages_from_cache", "classGpgFrontend_1_1UI_1_1MainWindow.html#a4df2a05492bf237511d44c5e9cdd9413", null ], [ "refresh_keys_from_key_server", "classGpgFrontend_1_1UI_1_1MainWindow.html#adfa3b3ae1de1fd04c5ea09e3c97c3e98", null ], [ "restore_settings", "classGpgFrontend_1_1UI_1_1MainWindow.html#a210ab31f4d949a50507d0690c0d1598a", null ], [ "save_settings", "classGpgFrontend_1_1UI_1_1MainWindow.html#a7a4b6490038470a8849231e48282da98", null ], [ "SetCryptoMenuStatus", "classGpgFrontend_1_1UI_1_1MainWindow.html#a85a98a1ec5418c110201980fa013d1fd", null ], + [ "SignalKeyDatabaseRefresh", "classGpgFrontend_1_1UI_1_1MainWindow.html#a2caccd72d474177e571c07dd47038e58", null ], [ "SignalLoaded", "classGpgFrontend_1_1UI_1_1MainWindow.html#a30fe95cf76936d382ee0b67a24688a7a", null ], [ "SignalRestartApplication", "classGpgFrontend_1_1UI_1_1MainWindow.html#a23c517e1b4c63d03e0413bf3772ffb92", null ], + [ "SignalUIRefresh", "classGpgFrontend_1_1UI_1_1MainWindow.html#a8de27a8002376b61e32f617910846412", null ], + [ "slot_add_key_2_favourite", "classGpgFrontend_1_1UI_1_1MainWindow.html#a7ec169e4ce829f37c3605491ac617973", null ], [ "slot_add_pgp_header", "classGpgFrontend_1_1UI_1_1MainWindow.html#a821247d738457c4ee046162aad6728f9", null ], [ "slot_append_keys_create_datetime", "classGpgFrontend_1_1UI_1_1MainWindow.html#a261fb867b194d5b16ad15ed2ff6c60ec", null ], [ "slot_append_keys_expire_datetime", "classGpgFrontend_1_1UI_1_1MainWindow.html#a091087c673fa86bcaaadbbfc7ec7caed", null ], @@ -38,6 +42,8 @@ var classGpgFrontend_1_1UI_1_1MainWindow = [ "slot_open_file_tab", "classGpgFrontend_1_1UI_1_1MainWindow.html#a29a811d4d440c79c1bd2cc2bb40cdf7e", null ], [ "slot_open_key_management", "classGpgFrontend_1_1UI_1_1MainWindow.html#a16ddebec90a4bd0d13baa9d972c3445f", null ], [ "slot_open_settings_dialog", "classGpgFrontend_1_1UI_1_1MainWindow.html#a874b505fbc1046f579a736683f5a7f65", null ], + [ "slot_remove_key_from_favourite", "classGpgFrontend_1_1UI_1_1MainWindow.html#a01aed2790d84479bd3a2551d1cc6fb91", null ], + [ "slot_set_owner_trust_level_of_key", "classGpgFrontend_1_1UI_1_1MainWindow.html#ace4433f21dbb4b1859b81c120b675e1d", null ], [ "slot_show_key_details", "classGpgFrontend_1_1UI_1_1MainWindow.html#a033d448541b44fa48b76dec828a4eb0e", null ], [ "slot_sign", "classGpgFrontend_1_1UI_1_1MainWindow.html#a3f3d03b0ec22385bee559fbd2aeb881b", null ], [ "slot_start_wizard", "classGpgFrontend_1_1UI_1_1MainWindow.html#aabf3ddf6b624790369f164b4889c95be", null ], @@ -54,6 +60,7 @@ var classGpgFrontend_1_1UI_1_1MainWindow = [ "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 ], + [ "add_key_2_favourtie_act_", "classGpgFrontend_1_1UI_1_1MainWindow.html#ae9bc8395f2d2965c722442f4879902d8", null ], [ "add_pgp_header_act_", "classGpgFrontend_1_1UI_1_1MainWindow.html#a95b2c86afbefe47e79af87e56032e306", null ], [ "append_key_create_date_to_editor_act_", "classGpgFrontend_1_1UI_1_1MainWindow.html#ad874ce344cce9f87bfbb31e7bf88aebe", null ], [ "append_key_expire_date_to_editor_act_", "classGpgFrontend_1_1UI_1_1MainWindow.html#a61140b959cbdc0922b528a9c52d0dfa2", null ], @@ -111,11 +118,13 @@ var classGpgFrontend_1_1UI_1_1MainWindow = [ "quote_act_", "classGpgFrontend_1_1UI_1_1MainWindow.html#af9640e5732c2595d0c094e7ff7e371ac", null ], [ "redo_act_", "classGpgFrontend_1_1UI_1_1MainWindow.html#abe38474d4e81726147f9df8a9721ce6e", null ], [ "reload_components_act_", "classGpgFrontend_1_1UI_1_1MainWindow.html#ab570d33667a3f8fe189f2d81b81f85be", null ], + [ "remove_key_from_favourtie_act_", "classGpgFrontend_1_1UI_1_1MainWindow.html#a1ddc7e6246dd5065bed0777dca4e6fb6", null ], [ "restart_components_act_", "classGpgFrontend_1_1UI_1_1MainWindow.html#a19d24772c88b55070f139b97806c10ca", 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 ], + [ "set_owner_trust_of_key_act_", "classGpgFrontend_1_1UI_1_1MainWindow.html#a34d67c0c4f63695751616b5f6624b674", null ], [ "show_key_details_act_", "classGpgFrontend_1_1UI_1_1MainWindow.html#acd41722ceedd20973b7d83852fab407b", null ], [ "sign_act_", "classGpgFrontend_1_1UI_1_1MainWindow.html#a0cded37ef6e07856bbe439b0e90db839", null ], [ "special_edit_tool_bar_", "classGpgFrontend_1_1UI_1_1MainWindow.html#af2b3e3a0e9894633e1839df289f5ffe0", 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 fe3f32ef..f927d18c 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 b107a430..1a00bd4d 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 @@ -c99107d91314ea68053b9b04e30e7635 \ No newline at end of file +6d248a0cf069a6aeff74b6df14edabe4 \ 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 d28e1daf..c68ab3f6 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_1MainWindow__inherit__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__inherit__graph.map index fa9c7bf5..3d81309a 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__inherit__graph.map @@ -1,5 +1,5 @@ - + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__inherit__graph.md5 index e8edaa9b..f809fa05 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__inherit__graph.md5 @@ -1 +1 @@ -1cc7c6ecfccd3f7efac8ce72a1330d28 \ No newline at end of file +e198029e4fceb7308e54e6f78546f479 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__inherit__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__inherit__graph.png index aebdd6d0..87234a9f 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__inherit__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__inherit__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog.html index cbe88f00..278883ec 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog.html @@ -111,35 +111,35 @@ Collaboration diagram for GpgFrontend::UI::SettingsDialog:
    Collaboration graph
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.map index a5f5a301..a15cf9e1 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.map @@ -1,31 +1,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 743211f9..17c8851f 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.md5 @@ -1 +1 @@ -6e07a064ebcdbf25c754bd3433c3a5fa \ No newline at end of file +6d032bba795fb0473bdcfcdbda2ae131 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.png index d89b0e1e..eff9b5e2 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_1SignalStation-members.html b/docs/html/classGpgFrontend_1_1UI_1_1SignalStation-members.html index aa66a773..e778eaa6 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SignalStation-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1SignalStation-members.html @@ -97,7 +97,8 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1SignalStatio - + +
    SignalRefreshInfoBoard(const QString &text, InfoBoardStatus verify_label_status)GpgFrontend::UI::SignalStationsignal
    SignalRefreshStatusBar(const QString &message, int timeout)GpgFrontend::UI::SignalStationsignal
    SignalRestartApplication(int) (defined in GpgFrontend::UI::SignalStation)GpgFrontend::UI::SignalStationsignal
    SignalUserInputPassphraseDone(QString passparase) (defined in GpgFrontend::UI::SignalStation)GpgFrontend::UI::SignalStationsignal
    SignalUIRefresh() (defined in GpgFrontend::UI::SignalStation)GpgFrontend::UI::SignalStationsignal
    SignalUserInputPassphraseDone(QString passparase) (defined in GpgFrontend::UI::SignalStation)GpgFrontend::UI::SignalStationsignal
    diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SignalStation.html b/docs/html/classGpgFrontend_1_1UI_1_1SignalStation.html index 22eb71f9..3728cf4f 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SignalStation.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1SignalStation.html @@ -121,6 +121,9 @@ void 
    SignalKeyDatabaseRefr
    void SignalKeyDatabaseRefreshDone ()
     
    +void SignalUIRefresh ()
     
    void SignalRefreshInfoBoard (const QString &text, InfoBoardStatus verify_label_status)
     
    void SignalRefreshStatusBar (const QString &message, int timeout)
    @@ -194,7 +194,7 @@ void  - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + +
    movePosition2CenterOf -

    References GpgFrontend::UI::KeyList::AddListGroupTab(), and GpgFrontend::GpgKey::IsHasActualSigningCapability().

    +

    References GpgFrontend::UI::KeyList::AddListGroupTab(), and GpgFrontend::GpgKey::IsHasActualSigningCapability().

    diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.map index f6a76c29..b6ca34dd 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.map @@ -1,22 +1,22 @@ - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.md5 index 56f6442e..e8b92571 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.md5 @@ -1 +1 @@ -76d93a67b61b213310f5c6bd3da1e244 \ No newline at end of file +6804ebfd9f2c743d15d9183e1cdd2594 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.png index 33a934b4..c67b65ef 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_1SubkeyGenerateDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html index 02c2da90..c8e9f635 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html @@ -118,7 +118,7 @@ Collaboration diagram for GpgFrontend::UI::SubkeyGenerateDialog: - + 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 c2af4c6f..94719202 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.map @@ -9,7 +9,7 @@ - + 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 f1971d5b..ca91a42f 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 @@ -16ef897a36be1351a2f229568077322a \ No newline at end of file +f5a44e5a8432794f3c20f7e1c2760523 \ 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 e779372b..c8e13f38 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_1TextEdit-members.html b/docs/html/classGpgFrontend_1_1UI_1_1TextEdit-members.html index 3fd1c015..1e3fda1a 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1TextEdit-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1TextEdit-members.html @@ -108,27 +108,28 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1TextEdit.htm
    SlotNewFileTab() constGpgFrontend::UI::TextEditslot
    slotNewHelpTab(const QString &title, const QString &path) constGpgFrontend::UI::TextEditslot
    SlotNewTab()GpgFrontend::UI::TextEditslot
    SlotOpen()GpgFrontend::UI::TextEditslot
    SlotOpenFile(const QString &path)GpgFrontend::UI::TextEditslot
    SlotPaste() constGpgFrontend::UI::TextEditslot
    SlotPrint()GpgFrontend::UI::TextEditslot
    SlotQuote() constGpgFrontend::UI::TextEditslot
    SlotRedo() constGpgFrontend::UI::TextEditslot
    SlotSave()GpgFrontend::UI::TextEditslot
    SlotSaveAs()GpgFrontend::UI::TextEditslot
    SlotSelectAll() constGpgFrontend::UI::TextEditslot
    SlotShowModified(bool) constGpgFrontend::UI::TextEditslot
    SlotSwitchTabDown() constGpgFrontend::UI::TextEditslot
    SlotSwitchTabUp() constGpgFrontend::UI::TextEditslot
    SlotUndo() constGpgFrontend::UI::TextEditslot
    SlotZoomIn() const (defined in GpgFrontend::UI::TextEdit)GpgFrontend::UI::TextEditslot
    SlotZoomOut() const (defined in GpgFrontend::UI::TextEdit)GpgFrontend::UI::TextEditslot
    stripped_name(const QString &full_file_name)GpgFrontend::UI::TextEditprivatestatic
    tab_widget_ (defined in GpgFrontend::UI::TextEdit)GpgFrontend::UI::TextEdit
    TabCount() constGpgFrontend::UI::TextEdit
    text_page_data_modified_count_ (defined in GpgFrontend::UI::TextEdit)GpgFrontend::UI::TextEditprivate
    TextEdit(QWidget *parent) (defined in GpgFrontend::UI::TextEdit)GpgFrontend::UI::TextEdit
    UnsavedDocuments() constGpgFrontend::UI::TextEdit
    SlotNewTabWithContent(std::string title, const std::string &content) (defined in GpgFrontend::UI::TextEdit)GpgFrontend::UI::TextEditslot
    SlotOpen()GpgFrontend::UI::TextEditslot
    SlotOpenFile(const QString &path)GpgFrontend::UI::TextEditslot
    SlotPaste() constGpgFrontend::UI::TextEditslot
    SlotPrint()GpgFrontend::UI::TextEditslot
    SlotQuote() constGpgFrontend::UI::TextEditslot
    SlotRedo() constGpgFrontend::UI::TextEditslot
    SlotSave()GpgFrontend::UI::TextEditslot
    SlotSaveAs()GpgFrontend::UI::TextEditslot
    SlotSelectAll() constGpgFrontend::UI::TextEditslot
    SlotShowModified(bool) constGpgFrontend::UI::TextEditslot
    SlotSwitchTabDown() constGpgFrontend::UI::TextEditslot
    SlotSwitchTabUp() constGpgFrontend::UI::TextEditslot
    SlotUndo() constGpgFrontend::UI::TextEditslot
    SlotZoomIn() const (defined in GpgFrontend::UI::TextEdit)GpgFrontend::UI::TextEditslot
    SlotZoomOut() const (defined in GpgFrontend::UI::TextEdit)GpgFrontend::UI::TextEditslot
    stripped_name(const QString &full_file_name)GpgFrontend::UI::TextEditprivatestatic
    tab_widget_ (defined in GpgFrontend::UI::TextEdit)GpgFrontend::UI::TextEdit
    TabCount() constGpgFrontend::UI::TextEdit
    text_page_data_modified_count_ (defined in GpgFrontend::UI::TextEdit)GpgFrontend::UI::TextEditprivate
    TextEdit(QWidget *parent) (defined in GpgFrontend::UI::TextEdit)GpgFrontend::UI::TextEdit
    UnsavedDocuments() constGpgFrontend::UI::TextEdit
    diff --git a/docs/html/classGpgFrontend_1_1UI_1_1TextEdit.html b/docs/html/classGpgFrontend_1_1UI_1_1TextEdit.html index c11e7dab..fc433484 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1TextEdit.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1TextEdit.html @@ -140,6 +140,9 @@ Public Slots
     
    void SlotNewTab ()
     
    +void SlotNewTabWithContent (std::string title, const std::string &content)
     
    void SlotOpenFile (const QString &path)
     
    void slotNewHelpTab (const QString &title, const QString &path) const
     CGpgFrontend::ArchiveFileOperator
     CGpgFrontend::ArchiveStruct
     CGpgFrontend::GpgKeyManager::AutomatonHandelStruct
     CGpgFrontend::CacheManager
     CGpgFrontend::ChannelObjectObject which in channel system
     CGpgFrontend::CharsetOperator
     CclassExecutive files related to the basic operations that are provided by GpgBasicOperator
     CGpgFrontend::UI::MainWindow::CryptoMenu
     CGpgFrontend::Thread::Task::DataObjectDataObject to be passed to the callback function
     CGpgFrontend::Thread::Task::DataObject::Destructor
     CGpgFrontend::FileOperatorFile operations
     CGpgFrontend::GenKeyInfo
     CGpgFrontend::GpgConstants
     CGpgFrontend::GpgContextInitArgs
     CGpgFrontend::GpgData
     CGpgFrontend::GpgImportedKey
     CGpgFrontend::GpgImportInformation
     CGpgFrontend::GpgInfoUse to record some info about gnupg
     CGpgFrontend::GpgKey
     CGpgFrontend::GpgKeySignature
     CGpgFrontend::GpgResultAnalyse
     CGpgFrontend::GpgSignature
     CGpgFrontend::GpgSubKey
     CGpgFrontend::GpgTOFUInfo
     CGpgFrontend::GpgUID
     Cnlohmann::json
     CGpgFrontend::UI::KeyListColumn
     CGpgFrontend::UI::KeyListRow
     CGpgFrontend::UI::KeyMenuAbility
     CGpgFrontend::KeyPackageOperatorGive the possibility to import or export a key package
     CGpgFrontend::UI::KeyTable
     CProxyConnectionTestThread
     CQApplication
     CQDialog
     CQGroupBox
     CQMainWindow
     CQObject
     CQRunnable
     CQThread
     CQWidget
     CQWizard
     CQWizardPage
     CGpgFrontend::SingletonStorage
     CGpgFrontend::SingletonStorageCollection
     CGpgFrontend::UI::SoftwareVersion
     CTestListedKeyServerThread
     CGpgFrontend::ChannelObjectObject which in channel system
     CGpgFrontend::CharsetOperator
     CclassExecutive files related to the basic operations that are provided by GpgBasicOperator
     CGpgFrontend::UI::MainWindow::CryptoMenu
     CGpgFrontend::Thread::Task::DataObjectDataObject to be passed to the callback function
     CGpgFrontend::Thread::Task::DataObject::Destructor
     CGpgFrontend::FileOperatorFile operations
     CGpgFrontend::GenKeyInfo
     CGpgFrontend::GpgConstants
     CGpgFrontend::GpgContextInitArgs
     CGpgFrontend::GpgData
     CGpgFrontend::GpgImportedKey
     CGpgFrontend::GpgImportInformation
     CGpgFrontend::GpgInfoUse to record some info about gnupg
     CGpgFrontend::GpgKey
     CGpgFrontend::GpgKeySignature
     CGpgFrontend::GpgResultAnalyse
     CGpgFrontend::GpgSignature
     CGpgFrontend::GpgSubKey
     CGpgFrontend::GpgTOFUInfo
     CGpgFrontend::GpgUID
     Cnlohmann::json
     CGpgFrontend::UI::KeyListColumn
     CGpgFrontend::UI::KeyListRow
     CGpgFrontend::UI::KeyMenuAbility
     CGpgFrontend::KeyPackageOperatorGive the possibility to import or export a key package
     CGpgFrontend::UI::KeyTable
     CProxyConnectionTestThread
     CQApplication
     CQDialog
     CQGroupBox
     CQMainWindow
     CQObject
     CQRunnable
     CQThread
     CQWidget
     CQWizard
     CQWizardPage
     CGpgFrontend::SingletonStorage
     CGpgFrontend::SingletonStorageCollection
     CGpgFrontend::UI::SoftwareVersion
     CTestListedKeyServerThread
     CGpgFrontend::ThreadSafeMap< Key, Value >
     CGpgFrontend::ThreadSafeMap< std::string, nlohmann::json >
    diff --git a/docs/html/hierarchy.js b/docs/html/hierarchy.js index 57f150cd..19c244f0 100644 --- a/docs/html/hierarchy.js +++ b/docs/html/hierarchy.js @@ -7,7 +7,6 @@ var hierarchy = [ "GpgFrontend::ArchiveFileOperator", "classGpgFrontend_1_1ArchiveFileOperator.html", null ], [ "GpgFrontend::ArchiveStruct", "structGpgFrontend_1_1ArchiveStruct.html", null ], [ "GpgFrontend::GpgKeyManager::AutomatonHandelStruct", "structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html", null ], - [ "GpgFrontend::CacheManager", "classGpgFrontend_1_1CacheManager.html", null ], [ "GpgFrontend::ChannelObject", "classGpgFrontend_1_1ChannelObject.html", [ [ "GpgFrontend::SingletonFunctionObject< GpgUIDOperator >", "classGpgFrontend_1_1SingletonFunctionObject.html", [ [ "GpgFrontend::GpgUIDOperator", "classGpgFrontend_1_1GpgUIDOperator.html", null ] @@ -33,6 +32,9 @@ var hierarchy = [ "GpgFrontend::SingletonFunctionObject< GpgKeyGetter >", "classGpgFrontend_1_1SingletonFunctionObject.html", [ [ "GpgFrontend::GpgKeyGetter", "classGpgFrontend_1_1GpgKeyGetter.html", null ] ] ], + [ "GpgFrontend::SingletonFunctionObject< CacheManager >", "classGpgFrontend_1_1SingletonFunctionObject.html", [ + [ "GpgFrontend::CacheManager", "classGpgFrontend_1_1CacheManager.html", null ] + ] ], [ "GpgFrontend::SingletonFunctionObject< GpgBasicOperator >", "classGpgFrontend_1_1SingletonFunctionObject.html", [ [ "GpgFrontend::GpgBasicOperator", "classGpgFrontend_1_1GpgBasicOperator.html", null ] ] ], @@ -122,6 +124,7 @@ var hierarchy = ] ] ] ], [ "QObject", null, [ + [ "GpgFrontend::CacheManager", "classGpgFrontend_1_1CacheManager.html", null ], [ "GpgFrontend::CoreCommonUtil", "classGpgFrontend_1_1CoreCommonUtil.html", null ], [ "GpgFrontend::CoreSignalStation", "classGpgFrontend_1_1CoreSignalStation.html", null ], [ "GpgFrontend::GpgContext", "classGpgFrontend_1_1GpgContext.html", null ], @@ -178,5 +181,7 @@ var hierarchy = [ "GpgFrontend::SingletonStorage", "classGpgFrontend_1_1SingletonStorage.html", null ], [ "GpgFrontend::SingletonStorageCollection", "classGpgFrontend_1_1SingletonStorageCollection.html", null ], [ "GpgFrontend::UI::SoftwareVersion", "structGpgFrontend_1_1UI_1_1SoftwareVersion.html", null ], - [ "TestListedKeyServerThread", "classTestListedKeyServerThread.html", null ] + [ "TestListedKeyServerThread", "classTestListedKeyServerThread.html", null ], + [ "GpgFrontend::ThreadSafeMap< Key, Value >", "classGpgFrontend_1_1ThreadSafeMap.html", null ], + [ "GpgFrontend::ThreadSafeMap< std::string, nlohmann::json >", "classGpgFrontend_1_1ThreadSafeMap.html", null ] ]; \ No newline at end of file diff --git a/docs/html/inherit_graph_10.map b/docs/html/inherit_graph_10.map index 16644271..41761719 100644 --- a/docs/html/inherit_graph_10.map +++ b/docs/html/inherit_graph_10.map @@ -1,3 +1,3 @@ - + diff --git a/docs/html/inherit_graph_10.md5 b/docs/html/inherit_graph_10.md5 index 3e517e53..28a13920 100644 --- a/docs/html/inherit_graph_10.md5 +++ b/docs/html/inherit_graph_10.md5 @@ -1 +1 @@ -aeeca9536df161ebed072751ef00e5e2 \ No newline at end of file +a7ea79d3d006d17bbc3a8ca307fb3456 \ No newline at end of file diff --git a/docs/html/inherit_graph_10.png b/docs/html/inherit_graph_10.png index 3d7aab22..bf95b4e8 100644 Binary files a/docs/html/inherit_graph_10.png and b/docs/html/inherit_graph_10.png differ diff --git a/docs/html/inherit_graph_11.map b/docs/html/inherit_graph_11.map index 41761719..07523428 100644 --- a/docs/html/inherit_graph_11.map +++ b/docs/html/inherit_graph_11.map @@ -1,3 +1,3 @@ - + diff --git a/docs/html/inherit_graph_11.md5 b/docs/html/inherit_graph_11.md5 index 28a13920..f83a2645 100644 --- a/docs/html/inherit_graph_11.md5 +++ b/docs/html/inherit_graph_11.md5 @@ -1 +1 @@ -a7ea79d3d006d17bbc3a8ca307fb3456 \ No newline at end of file +0591af13102e8694cad226513a1ba89e \ No newline at end of file diff --git a/docs/html/inherit_graph_11.png b/docs/html/inherit_graph_11.png index bf95b4e8..5766cf16 100644 Binary files a/docs/html/inherit_graph_11.png and b/docs/html/inherit_graph_11.png differ diff --git a/docs/html/inherit_graph_12.map b/docs/html/inherit_graph_12.map index 07523428..6db8f980 100644 --- a/docs/html/inherit_graph_12.map +++ b/docs/html/inherit_graph_12.map @@ -1,3 +1,3 @@ - + diff --git a/docs/html/inherit_graph_12.md5 b/docs/html/inherit_graph_12.md5 index f83a2645..a06adaca 100644 --- a/docs/html/inherit_graph_12.md5 +++ b/docs/html/inherit_graph_12.md5 @@ -1 +1 @@ -0591af13102e8694cad226513a1ba89e \ No newline at end of file +3cc3a7f841fc78b9971f5282d98b46ab \ No newline at end of file diff --git a/docs/html/inherit_graph_12.png b/docs/html/inherit_graph_12.png index 5766cf16..ff2ad30a 100644 Binary files a/docs/html/inherit_graph_12.png and b/docs/html/inherit_graph_12.png differ diff --git a/docs/html/inherit_graph_13.map b/docs/html/inherit_graph_13.map index 6db8f980..d65a5a2b 100644 --- a/docs/html/inherit_graph_13.map +++ b/docs/html/inherit_graph_13.map @@ -1,3 +1,3 @@ - + diff --git a/docs/html/inherit_graph_13.md5 b/docs/html/inherit_graph_13.md5 index a06adaca..d202c431 100644 --- a/docs/html/inherit_graph_13.md5 +++ b/docs/html/inherit_graph_13.md5 @@ -1 +1 @@ -3cc3a7f841fc78b9971f5282d98b46ab \ No newline at end of file +18e891febbd1d15e5c38f10cc217d21e \ No newline at end of file diff --git a/docs/html/inherit_graph_13.png b/docs/html/inherit_graph_13.png index ff2ad30a..e5e862f3 100644 Binary files a/docs/html/inherit_graph_13.png and b/docs/html/inherit_graph_13.png differ diff --git a/docs/html/inherit_graph_14.map b/docs/html/inherit_graph_14.map index d65a5a2b..f3faaef6 100644 --- a/docs/html/inherit_graph_14.map +++ b/docs/html/inherit_graph_14.map @@ -1,3 +1,3 @@ - + diff --git a/docs/html/inherit_graph_14.md5 b/docs/html/inherit_graph_14.md5 index d202c431..4813a1a7 100644 --- a/docs/html/inherit_graph_14.md5 +++ b/docs/html/inherit_graph_14.md5 @@ -1 +1 @@ -18e891febbd1d15e5c38f10cc217d21e \ No newline at end of file +390e7e061b2478e306161db90371293d \ No newline at end of file diff --git a/docs/html/inherit_graph_14.png b/docs/html/inherit_graph_14.png index e5e862f3..fda220e0 100644 Binary files a/docs/html/inherit_graph_14.png and b/docs/html/inherit_graph_14.png differ diff --git a/docs/html/inherit_graph_15.map b/docs/html/inherit_graph_15.map index f3faaef6..c5d3ec17 100644 --- a/docs/html/inherit_graph_15.map +++ b/docs/html/inherit_graph_15.map @@ -1,3 +1,3 @@ - + diff --git a/docs/html/inherit_graph_15.md5 b/docs/html/inherit_graph_15.md5 index 4813a1a7..0e9cf39a 100644 --- a/docs/html/inherit_graph_15.md5 +++ b/docs/html/inherit_graph_15.md5 @@ -1 +1 @@ -390e7e061b2478e306161db90371293d \ No newline at end of file +087d68ecf0fd22ad21c68265cced79db \ No newline at end of file diff --git a/docs/html/inherit_graph_15.png b/docs/html/inherit_graph_15.png index fda220e0..9627fecb 100644 Binary files a/docs/html/inherit_graph_15.png and b/docs/html/inherit_graph_15.png differ diff --git a/docs/html/inherit_graph_16.map b/docs/html/inherit_graph_16.map index c5d3ec17..319471fd 100644 --- a/docs/html/inherit_graph_16.map +++ b/docs/html/inherit_graph_16.map @@ -1,3 +1,3 @@ - + diff --git a/docs/html/inherit_graph_16.md5 b/docs/html/inherit_graph_16.md5 index 0e9cf39a..7e396546 100644 --- a/docs/html/inherit_graph_16.md5 +++ b/docs/html/inherit_graph_16.md5 @@ -1 +1 @@ -087d68ecf0fd22ad21c68265cced79db \ No newline at end of file +64728ef2f27fd0c9a6fbbe495320e755 \ No newline at end of file diff --git a/docs/html/inherit_graph_16.png b/docs/html/inherit_graph_16.png index 9627fecb..7f63ecf5 100644 Binary files a/docs/html/inherit_graph_16.png and b/docs/html/inherit_graph_16.png differ diff --git a/docs/html/inherit_graph_17.map b/docs/html/inherit_graph_17.map index 319471fd..a88b0db7 100644 --- a/docs/html/inherit_graph_17.map +++ b/docs/html/inherit_graph_17.map @@ -1,3 +1,3 @@ - + diff --git a/docs/html/inherit_graph_17.md5 b/docs/html/inherit_graph_17.md5 index 7e396546..242b15ec 100644 --- a/docs/html/inherit_graph_17.md5 +++ b/docs/html/inherit_graph_17.md5 @@ -1 +1 @@ -64728ef2f27fd0c9a6fbbe495320e755 \ No newline at end of file +1a7834a625c9d9918d50baa61a48bb02 \ No newline at end of file diff --git a/docs/html/inherit_graph_17.png b/docs/html/inherit_graph_17.png index 7f63ecf5..fd598533 100644 Binary files a/docs/html/inherit_graph_17.png and b/docs/html/inherit_graph_17.png differ diff --git a/docs/html/inherit_graph_18.map b/docs/html/inherit_graph_18.map index a88b0db7..a93de222 100644 --- a/docs/html/inherit_graph_18.map +++ b/docs/html/inherit_graph_18.map @@ -1,3 +1,3 @@ - + diff --git a/docs/html/inherit_graph_18.md5 b/docs/html/inherit_graph_18.md5 index 242b15ec..d357fa95 100644 --- a/docs/html/inherit_graph_18.md5 +++ b/docs/html/inherit_graph_18.md5 @@ -1 +1 @@ -1a7834a625c9d9918d50baa61a48bb02 \ No newline at end of file +c1bdcdfaecbf582d9b40d18f5fccdcb2 \ No newline at end of file diff --git a/docs/html/inherit_graph_18.png b/docs/html/inherit_graph_18.png index fd598533..ebab27e4 100644 Binary files a/docs/html/inherit_graph_18.png and b/docs/html/inherit_graph_18.png differ diff --git a/docs/html/inherit_graph_19.map b/docs/html/inherit_graph_19.map index a93de222..ee65ea90 100644 --- a/docs/html/inherit_graph_19.map +++ b/docs/html/inherit_graph_19.map @@ -1,3 +1,3 @@ - + diff --git a/docs/html/inherit_graph_19.md5 b/docs/html/inherit_graph_19.md5 index d357fa95..70a12979 100644 --- a/docs/html/inherit_graph_19.md5 +++ b/docs/html/inherit_graph_19.md5 @@ -1 +1 @@ -c1bdcdfaecbf582d9b40d18f5fccdcb2 \ No newline at end of file +a3a03e2a8df39c9bcaf23b24a927f0b1 \ No newline at end of file diff --git a/docs/html/inherit_graph_19.png b/docs/html/inherit_graph_19.png index ebab27e4..efc4162e 100644 Binary files a/docs/html/inherit_graph_19.png and b/docs/html/inherit_graph_19.png differ diff --git a/docs/html/inherit_graph_20.map b/docs/html/inherit_graph_20.map index ee65ea90..46670b73 100644 --- a/docs/html/inherit_graph_20.map +++ b/docs/html/inherit_graph_20.map @@ -1,3 +1,7 @@ - + + + + + diff --git a/docs/html/inherit_graph_20.md5 b/docs/html/inherit_graph_20.md5 index 70a12979..23018263 100644 --- a/docs/html/inherit_graph_20.md5 +++ b/docs/html/inherit_graph_20.md5 @@ -1 +1 @@ -a3a03e2a8df39c9bcaf23b24a927f0b1 \ No newline at end of file +114e1e9c1e55011d478ccc2b35186f92 \ No newline at end of file diff --git a/docs/html/inherit_graph_20.png b/docs/html/inherit_graph_20.png index efc4162e..12b99444 100644 Binary files a/docs/html/inherit_graph_20.png and b/docs/html/inherit_graph_20.png differ diff --git a/docs/html/inherit_graph_21.map b/docs/html/inherit_graph_21.map index 46670b73..22d81b30 100644 --- a/docs/html/inherit_graph_21.map +++ b/docs/html/inherit_graph_21.map @@ -1,7 +1,3 @@ - - - - - + diff --git a/docs/html/inherit_graph_21.md5 b/docs/html/inherit_graph_21.md5 index 23018263..1bf81774 100644 --- a/docs/html/inherit_graph_21.md5 +++ b/docs/html/inherit_graph_21.md5 @@ -1 +1 @@ -114e1e9c1e55011d478ccc2b35186f92 \ No newline at end of file +26f90c3e36c8510594cbb75045def669 \ No newline at end of file diff --git a/docs/html/inherit_graph_21.png b/docs/html/inherit_graph_21.png index 12b99444..92722ab2 100644 Binary files a/docs/html/inherit_graph_21.png and b/docs/html/inherit_graph_21.png differ diff --git a/docs/html/inherit_graph_22.map b/docs/html/inherit_graph_22.map index 22d81b30..51f0f4c7 100644 --- a/docs/html/inherit_graph_22.map +++ b/docs/html/inherit_graph_22.map @@ -1,3 +1,3 @@ - + diff --git a/docs/html/inherit_graph_22.md5 b/docs/html/inherit_graph_22.md5 index 1bf81774..aa92b2dc 100644 --- a/docs/html/inherit_graph_22.md5 +++ b/docs/html/inherit_graph_22.md5 @@ -1 +1 @@ -26f90c3e36c8510594cbb75045def669 \ No newline at end of file +5e63fce5749bd23553e822908ccf9c3a \ No newline at end of file diff --git a/docs/html/inherit_graph_22.png b/docs/html/inherit_graph_22.png index 92722ab2..71973d93 100644 Binary files a/docs/html/inherit_graph_22.png and b/docs/html/inherit_graph_22.png differ diff --git a/docs/html/inherit_graph_23.map b/docs/html/inherit_graph_23.map index 51f0f4c7..9526b79d 100644 --- a/docs/html/inherit_graph_23.map +++ b/docs/html/inherit_graph_23.map @@ -1,3 +1,3 @@ - + diff --git a/docs/html/inherit_graph_23.md5 b/docs/html/inherit_graph_23.md5 index aa92b2dc..d724e976 100644 --- a/docs/html/inherit_graph_23.md5 +++ b/docs/html/inherit_graph_23.md5 @@ -1 +1 @@ -5e63fce5749bd23553e822908ccf9c3a \ No newline at end of file +936868457f0496f230566016eca0e98a \ No newline at end of file diff --git a/docs/html/inherit_graph_23.png b/docs/html/inherit_graph_23.png index 71973d93..d5fe3696 100644 Binary files a/docs/html/inherit_graph_23.png and b/docs/html/inherit_graph_23.png differ diff --git a/docs/html/inherit_graph_24.map b/docs/html/inherit_graph_24.map index 9526b79d..c191e163 100644 --- a/docs/html/inherit_graph_24.map +++ b/docs/html/inherit_graph_24.map @@ -1,3 +1,3 @@ - + diff --git a/docs/html/inherit_graph_24.md5 b/docs/html/inherit_graph_24.md5 index d724e976..f573adaf 100644 --- a/docs/html/inherit_graph_24.md5 +++ b/docs/html/inherit_graph_24.md5 @@ -1 +1 @@ -936868457f0496f230566016eca0e98a \ No newline at end of file +6182e8dd886363061cf0bc8126ce97ba \ No newline at end of file diff --git a/docs/html/inherit_graph_24.png b/docs/html/inherit_graph_24.png index d5fe3696..6bf81fc4 100644 Binary files a/docs/html/inherit_graph_24.png and b/docs/html/inherit_graph_24.png differ diff --git a/docs/html/inherit_graph_25.map b/docs/html/inherit_graph_25.map index c191e163..ea0412a8 100644 --- a/docs/html/inherit_graph_25.map +++ b/docs/html/inherit_graph_25.map @@ -1,3 +1,3 @@ - + diff --git a/docs/html/inherit_graph_25.md5 b/docs/html/inherit_graph_25.md5 index f573adaf..cdec1080 100644 --- a/docs/html/inherit_graph_25.md5 +++ b/docs/html/inherit_graph_25.md5 @@ -1 +1 @@ -6182e8dd886363061cf0bc8126ce97ba \ No newline at end of file +1044a7df6174518893bb651e929bdc2a \ No newline at end of file diff --git a/docs/html/inherit_graph_25.png b/docs/html/inherit_graph_25.png index 6bf81fc4..ca8d3786 100644 Binary files a/docs/html/inherit_graph_25.png and b/docs/html/inherit_graph_25.png differ diff --git a/docs/html/inherit_graph_26.map b/docs/html/inherit_graph_26.map index ea0412a8..243093ea 100644 --- a/docs/html/inherit_graph_26.map +++ b/docs/html/inherit_graph_26.map @@ -1,3 +1,3 @@ - + diff --git a/docs/html/inherit_graph_26.md5 b/docs/html/inherit_graph_26.md5 index cdec1080..b254ed50 100644 --- a/docs/html/inherit_graph_26.md5 +++ b/docs/html/inherit_graph_26.md5 @@ -1 +1 @@ -1044a7df6174518893bb651e929bdc2a \ No newline at end of file +af35db019c786461bba6247e4b26b3e0 \ No newline at end of file diff --git a/docs/html/inherit_graph_26.png b/docs/html/inherit_graph_26.png index ca8d3786..1f8fd17f 100644 Binary files a/docs/html/inherit_graph_26.png and b/docs/html/inherit_graph_26.png differ diff --git a/docs/html/inherit_graph_27.map b/docs/html/inherit_graph_27.map index 243093ea..31e9f044 100644 --- a/docs/html/inherit_graph_27.map +++ b/docs/html/inherit_graph_27.map @@ -1,3 +1,3 @@ - + diff --git a/docs/html/inherit_graph_27.md5 b/docs/html/inherit_graph_27.md5 index b254ed50..7bcacf62 100644 --- a/docs/html/inherit_graph_27.md5 +++ b/docs/html/inherit_graph_27.md5 @@ -1 +1 @@ -af35db019c786461bba6247e4b26b3e0 \ No newline at end of file +dcdbbf60a8935dd3e618017dcf1a4f21 \ No newline at end of file diff --git a/docs/html/inherit_graph_27.png b/docs/html/inherit_graph_27.png index 1f8fd17f..6affab0e 100644 Binary files a/docs/html/inherit_graph_27.png and b/docs/html/inherit_graph_27.png differ diff --git a/docs/html/inherit_graph_28.map b/docs/html/inherit_graph_28.map index 31e9f044..6f3b5372 100644 --- a/docs/html/inherit_graph_28.map +++ b/docs/html/inherit_graph_28.map @@ -1,3 +1,3 @@ - + diff --git a/docs/html/inherit_graph_28.md5 b/docs/html/inherit_graph_28.md5 index 7bcacf62..7f1c7415 100644 --- a/docs/html/inherit_graph_28.md5 +++ b/docs/html/inherit_graph_28.md5 @@ -1 +1 @@ -dcdbbf60a8935dd3e618017dcf1a4f21 \ No newline at end of file +9aee52420d178aaeeb1c2d9f240c66c0 \ No newline at end of file diff --git a/docs/html/inherit_graph_28.png b/docs/html/inherit_graph_28.png index 6affab0e..8502a342 100644 Binary files a/docs/html/inherit_graph_28.png and b/docs/html/inherit_graph_28.png differ diff --git a/docs/html/inherit_graph_29.map b/docs/html/inherit_graph_29.map index 6f3b5372..9af46c24 100644 --- a/docs/html/inherit_graph_29.map +++ b/docs/html/inherit_graph_29.map @@ -1,3 +1,3 @@ - + diff --git a/docs/html/inherit_graph_29.md5 b/docs/html/inherit_graph_29.md5 index 7f1c7415..b591da9c 100644 --- a/docs/html/inherit_graph_29.md5 +++ b/docs/html/inherit_graph_29.md5 @@ -1 +1 @@ -9aee52420d178aaeeb1c2d9f240c66c0 \ No newline at end of file +11a61acbbfdbcc5bf2a01d9a50fda0e3 \ No newline at end of file diff --git a/docs/html/inherit_graph_29.png b/docs/html/inherit_graph_29.png index 8502a342..13055397 100644 Binary files a/docs/html/inherit_graph_29.png and b/docs/html/inherit_graph_29.png differ diff --git a/docs/html/inherit_graph_30.map b/docs/html/inherit_graph_30.map index 9af46c24..5a644d0a 100644 --- a/docs/html/inherit_graph_30.map +++ b/docs/html/inherit_graph_30.map @@ -1,3 +1,4 @@ - + + diff --git a/docs/html/inherit_graph_30.md5 b/docs/html/inherit_graph_30.md5 index b591da9c..59bceb9b 100644 --- a/docs/html/inherit_graph_30.md5 +++ b/docs/html/inherit_graph_30.md5 @@ -1 +1 @@ -11a61acbbfdbcc5bf2a01d9a50fda0e3 \ No newline at end of file +59af37997f15e3e43f2a314c35f730e8 \ No newline at end of file diff --git a/docs/html/inherit_graph_30.png b/docs/html/inherit_graph_30.png index 13055397..359d643c 100644 Binary files a/docs/html/inherit_graph_30.png and b/docs/html/inherit_graph_30.png differ diff --git a/docs/html/inherit_graph_31.map b/docs/html/inherit_graph_31.map index 5a644d0a..dea2d84b 100644 --- a/docs/html/inherit_graph_31.map +++ b/docs/html/inherit_graph_31.map @@ -1,4 +1,3 @@ - - + diff --git a/docs/html/inherit_graph_31.md5 b/docs/html/inherit_graph_31.md5 index 1713fb97..a8aa08f3 100644 --- a/docs/html/inherit_graph_31.md5 +++ b/docs/html/inherit_graph_31.md5 @@ -1 +1 @@ -aaedbcad9b8bf64595947c786e59a00b \ No newline at end of file +318bfb27bbb0b99b725933db6e257899 \ No newline at end of file diff --git a/docs/html/inherit_graph_31.png b/docs/html/inherit_graph_31.png index 359d643c..10940b5c 100644 Binary files a/docs/html/inherit_graph_31.png and b/docs/html/inherit_graph_31.png differ diff --git a/docs/html/inherit_graph_32.map b/docs/html/inherit_graph_32.map index cec50a25..ada8b122 100644 --- a/docs/html/inherit_graph_32.map +++ b/docs/html/inherit_graph_32.map @@ -1,25 +1,3 @@ - - - - - - - - - - - - - - - - - - - - - - - + diff --git a/docs/html/inherit_graph_32.md5 b/docs/html/inherit_graph_32.md5 index 7f9e2c9f..ba64d620 100644 --- a/docs/html/inherit_graph_32.md5 +++ b/docs/html/inherit_graph_32.md5 @@ -1 +1 @@ -04fc00d713f1d7dea54fab9d9d10ca89 \ No newline at end of file +b410e15396cc20eb3f224712ac0457cd \ No newline at end of file diff --git a/docs/html/inherit_graph_32.png b/docs/html/inherit_graph_32.png index 2e7aa383..7c99e4b4 100644 Binary files a/docs/html/inherit_graph_32.png and b/docs/html/inherit_graph_32.png differ diff --git a/docs/html/inherit_graph_33.map b/docs/html/inherit_graph_33.map index d8791b2b..cec50a25 100644 --- a/docs/html/inherit_graph_33.map +++ b/docs/html/inherit_graph_33.map @@ -1,7 +1,25 @@ - - - - - + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/html/inherit_graph_33.md5 b/docs/html/inherit_graph_33.md5 index 08f9a9f9..f9ebb669 100644 --- a/docs/html/inherit_graph_33.md5 +++ b/docs/html/inherit_graph_33.md5 @@ -1 +1 @@ -5eebe67a057958c7a3eb7b94e21888fb \ No newline at end of file +cd3b77bfadf9a7eaebf0a9b045fdfbc6 \ No newline at end of file diff --git a/docs/html/inherit_graph_33.png b/docs/html/inherit_graph_33.png index 7505725c..2e7aa383 100644 Binary files a/docs/html/inherit_graph_33.png and b/docs/html/inherit_graph_33.png differ diff --git a/docs/html/inherit_graph_34.map b/docs/html/inherit_graph_34.map index db39b51e..d8791b2b 100644 --- a/docs/html/inherit_graph_34.map +++ b/docs/html/inherit_graph_34.map @@ -1,22 +1,7 @@ - - - - - - - - - - - - - - - - - - - - + + + + + diff --git a/docs/html/inherit_graph_34.md5 b/docs/html/inherit_graph_34.md5 index 286ffaa9..a4b8abbe 100644 --- a/docs/html/inherit_graph_34.md5 +++ b/docs/html/inherit_graph_34.md5 @@ -1 +1 @@ -db209acd469af01350256833f2eb4534 \ No newline at end of file +8571e60dbef5a5f1c7ca35415ed57ca8 \ No newline at end of file diff --git a/docs/html/inherit_graph_34.png b/docs/html/inherit_graph_34.png index d77500e4..7505725c 100644 Binary files a/docs/html/inherit_graph_34.png and b/docs/html/inherit_graph_34.png differ diff --git a/docs/html/inherit_graph_35.map b/docs/html/inherit_graph_35.map index 278c28b2..db39b51e 100644 --- a/docs/html/inherit_graph_35.map +++ b/docs/html/inherit_graph_35.map @@ -1,6 +1,22 @@ - - - - + + + + + + + + + + + + + + + + + + + + diff --git a/docs/html/inherit_graph_35.md5 b/docs/html/inherit_graph_35.md5 index 6fe6a673..6153eeda 100644 --- a/docs/html/inherit_graph_35.md5 +++ b/docs/html/inherit_graph_35.md5 @@ -1 +1 @@ -54f059f36726ec37d574085075b1ce7b \ No newline at end of file +5c94015e11e6efdc5836b0f2f87919d4 \ No newline at end of file diff --git a/docs/html/inherit_graph_35.png b/docs/html/inherit_graph_35.png index 167a05ae..d77500e4 100644 Binary files a/docs/html/inherit_graph_35.png and b/docs/html/inherit_graph_35.png differ diff --git a/docs/html/inherit_graph_36.map b/docs/html/inherit_graph_36.map index a6560208..278c28b2 100644 --- a/docs/html/inherit_graph_36.map +++ b/docs/html/inherit_graph_36.map @@ -1,4 +1,6 @@ - - + + + + diff --git a/docs/html/inherit_graph_36.md5 b/docs/html/inherit_graph_36.md5 index a0e60da2..55d8b738 100644 --- a/docs/html/inherit_graph_36.md5 +++ b/docs/html/inherit_graph_36.md5 @@ -1 +1 @@ -4d2b4f0d0c3236d9771f86d8015284c5 \ No newline at end of file +ca4413bc421a64b03cd382bcb5b9c0a4 \ No newline at end of file diff --git a/docs/html/inherit_graph_36.png b/docs/html/inherit_graph_36.png index 22472a0f..167a05ae 100644 Binary files a/docs/html/inherit_graph_36.png and b/docs/html/inherit_graph_36.png differ diff --git a/docs/html/inherit_graph_37.map b/docs/html/inherit_graph_37.map index de2fe616..a6560208 100644 --- a/docs/html/inherit_graph_37.map +++ b/docs/html/inherit_graph_37.map @@ -1,3 +1,4 @@ - + + diff --git a/docs/html/inherit_graph_37.md5 b/docs/html/inherit_graph_37.md5 index 5f317227..67201341 100644 --- a/docs/html/inherit_graph_37.md5 +++ b/docs/html/inherit_graph_37.md5 @@ -1 +1 @@ -d8bfc67c6fcad865c4de6b86abcb52aa \ No newline at end of file +0cf7ef00355fbbbeefd8569515c828fe \ No newline at end of file diff --git a/docs/html/inherit_graph_37.png b/docs/html/inherit_graph_37.png index 6ec3146e..22472a0f 100644 Binary files a/docs/html/inherit_graph_37.png and b/docs/html/inherit_graph_37.png differ diff --git a/docs/html/inherit_graph_38.map b/docs/html/inherit_graph_38.map index f26315cd..de2fe616 100644 --- a/docs/html/inherit_graph_38.map +++ b/docs/html/inherit_graph_38.map @@ -1,3 +1,3 @@ - + diff --git a/docs/html/inherit_graph_38.md5 b/docs/html/inherit_graph_38.md5 index a06ad2ca..5f317227 100644 --- a/docs/html/inherit_graph_38.md5 +++ b/docs/html/inherit_graph_38.md5 @@ -1 +1 @@ -a5ce13082b48f8346234bc9e39550ea9 \ No newline at end of file +d8bfc67c6fcad865c4de6b86abcb52aa \ No newline at end of file diff --git a/docs/html/inherit_graph_38.png b/docs/html/inherit_graph_38.png index 3d6c385f..6ec3146e 100644 Binary files a/docs/html/inherit_graph_38.png and b/docs/html/inherit_graph_38.png differ diff --git a/docs/html/inherit_graph_39.map b/docs/html/inherit_graph_39.map index d34840bc..f26315cd 100644 --- a/docs/html/inherit_graph_39.map +++ b/docs/html/inherit_graph_39.map @@ -1,3 +1,3 @@ - + diff --git a/docs/html/inherit_graph_39.md5 b/docs/html/inherit_graph_39.md5 index fadc4f70..a06ad2ca 100644 --- a/docs/html/inherit_graph_39.md5 +++ b/docs/html/inherit_graph_39.md5 @@ -1 +1 @@ -bdb19714dbd31ee948af506e783bfc14 \ No newline at end of file +a5ce13082b48f8346234bc9e39550ea9 \ No newline at end of file diff --git a/docs/html/inherit_graph_39.png b/docs/html/inherit_graph_39.png index f0711b73..3d6c385f 100644 Binary files a/docs/html/inherit_graph_39.png and b/docs/html/inherit_graph_39.png differ diff --git a/docs/html/inherit_graph_4.map b/docs/html/inherit_graph_4.map index 1c67d21a..8be818d1 100644 --- a/docs/html/inherit_graph_4.map +++ b/docs/html/inherit_graph_4.map @@ -1,3 +1,47 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/html/inherit_graph_4.md5 b/docs/html/inherit_graph_4.md5 index 156eaec1..ae26ebab 100644 --- a/docs/html/inherit_graph_4.md5 +++ b/docs/html/inherit_graph_4.md5 @@ -1 +1 @@ -9f8a609661fa4f456a8ee6b54ac3afcf \ No newline at end of file +f804706c19cd8c1ab8608d752da2749d \ No newline at end of file diff --git a/docs/html/inherit_graph_4.png b/docs/html/inherit_graph_4.png index 4813019f..27ba4562 100644 Binary files a/docs/html/inherit_graph_4.png and b/docs/html/inherit_graph_4.png differ diff --git a/docs/html/inherit_graph_40.map b/docs/html/inherit_graph_40.map index 43d1c673..d34840bc 100644 --- a/docs/html/inherit_graph_40.map +++ b/docs/html/inherit_graph_40.map @@ -1,3 +1,3 @@ - + diff --git a/docs/html/inherit_graph_40.md5 b/docs/html/inherit_graph_40.md5 index 679a97cb..fadc4f70 100644 --- a/docs/html/inherit_graph_40.md5 +++ b/docs/html/inherit_graph_40.md5 @@ -1 +1 @@ -e88663b74b7197688f6fbcedcbe651b6 \ No newline at end of file +bdb19714dbd31ee948af506e783bfc14 \ No newline at end of file diff --git a/docs/html/inherit_graph_40.png b/docs/html/inherit_graph_40.png index d48a772a..f0711b73 100644 Binary files a/docs/html/inherit_graph_40.png and b/docs/html/inherit_graph_40.png differ diff --git a/docs/html/inherit_graph_41.map b/docs/html/inherit_graph_41.map index 77af59c0..43d1c673 100644 --- a/docs/html/inherit_graph_41.map +++ b/docs/html/inherit_graph_41.map @@ -1,3 +1,3 @@ - + diff --git a/docs/html/inherit_graph_41.md5 b/docs/html/inherit_graph_41.md5 index 203c87da..679a97cb 100644 --- a/docs/html/inherit_graph_41.md5 +++ b/docs/html/inherit_graph_41.md5 @@ -1 +1 @@ -99a82ffd7c169b3f9f1f9a230a12b22f \ No newline at end of file +e88663b74b7197688f6fbcedcbe651b6 \ No newline at end of file diff --git a/docs/html/inherit_graph_41.png b/docs/html/inherit_graph_41.png index 678b318c..d48a772a 100644 Binary files a/docs/html/inherit_graph_41.png and b/docs/html/inherit_graph_41.png differ diff --git a/docs/html/inherit_graph_42.map b/docs/html/inherit_graph_42.map index 19be2033..77af59c0 100644 --- a/docs/html/inherit_graph_42.map +++ b/docs/html/inherit_graph_42.map @@ -1,4 +1,3 @@ - - + diff --git a/docs/html/inherit_graph_42.md5 b/docs/html/inherit_graph_42.md5 index eaae12e7..203c87da 100644 --- a/docs/html/inherit_graph_42.md5 +++ b/docs/html/inherit_graph_42.md5 @@ -1 +1 @@ -94acd12dc2c2c122cee1a7d443e8bd1c \ No newline at end of file +99a82ffd7c169b3f9f1f9a230a12b22f \ No newline at end of file diff --git a/docs/html/inherit_graph_42.png b/docs/html/inherit_graph_42.png index e978b89c..678b318c 100644 Binary files a/docs/html/inherit_graph_42.png and b/docs/html/inherit_graph_42.png differ diff --git a/docs/html/inherit_graph_43.map b/docs/html/inherit_graph_43.map index 99288330..19be2033 100644 --- a/docs/html/inherit_graph_43.map +++ b/docs/html/inherit_graph_43.map @@ -1,3 +1,4 @@ - + + diff --git a/docs/html/inherit_graph_43.md5 b/docs/html/inherit_graph_43.md5 index c76b2a1c..5d89ab24 100644 --- a/docs/html/inherit_graph_43.md5 +++ b/docs/html/inherit_graph_43.md5 @@ -1 +1 @@ -89bed224fd4b3037c4e7c72ca711e793 \ No newline at end of file +f2461adde328317162026e062e40af30 \ No newline at end of file diff --git a/docs/html/inherit_graph_43.png b/docs/html/inherit_graph_43.png index da9479da..e978b89c 100644 Binary files a/docs/html/inherit_graph_43.png and b/docs/html/inherit_graph_43.png differ diff --git a/docs/html/inherit_graph_44.map b/docs/html/inherit_graph_44.map index 1abbd7b3..99288330 100644 --- a/docs/html/inherit_graph_44.map +++ b/docs/html/inherit_graph_44.map @@ -1,4 +1,3 @@ - - + diff --git a/docs/html/inherit_graph_44.md5 b/docs/html/inherit_graph_44.md5 index d678175d..c76b2a1c 100644 --- a/docs/html/inherit_graph_44.md5 +++ b/docs/html/inherit_graph_44.md5 @@ -1 +1 @@ -5febc4d252e00f0c56ffb50b0eb0ce4e \ No newline at end of file +89bed224fd4b3037c4e7c72ca711e793 \ No newline at end of file diff --git a/docs/html/inherit_graph_44.png b/docs/html/inherit_graph_44.png index df17752b..da9479da 100644 Binary files a/docs/html/inherit_graph_44.png and b/docs/html/inherit_graph_44.png differ diff --git a/docs/html/inherit_graph_45.map b/docs/html/inherit_graph_45.map index 569af5e0..1abbd7b3 100644 --- a/docs/html/inherit_graph_45.map +++ b/docs/html/inherit_graph_45.map @@ -1,4 +1,4 @@ - - + + diff --git a/docs/html/inherit_graph_45.md5 b/docs/html/inherit_graph_45.md5 index 5227c936..44ff2d66 100644 --- a/docs/html/inherit_graph_45.md5 +++ b/docs/html/inherit_graph_45.md5 @@ -1 +1 @@ -bc88b85384c7d867390d1ce41ce65682 \ No newline at end of file +27c21eb0265a3c48b34114535d28275f \ No newline at end of file diff --git a/docs/html/inherit_graph_45.png b/docs/html/inherit_graph_45.png index 0d9fe6d6..df17752b 100644 Binary files a/docs/html/inherit_graph_45.png and b/docs/html/inherit_graph_45.png differ diff --git a/docs/html/inherit_graph_46.map b/docs/html/inherit_graph_46.map index 2e91ed66..569af5e0 100644 --- a/docs/html/inherit_graph_46.map +++ b/docs/html/inherit_graph_46.map @@ -1,3 +1,4 @@ - + + diff --git a/docs/html/inherit_graph_46.md5 b/docs/html/inherit_graph_46.md5 index 280d1f72..356e91aa 100644 --- a/docs/html/inherit_graph_46.md5 +++ b/docs/html/inherit_graph_46.md5 @@ -1 +1 @@ -faad65e3c2b73b58bf858017c070d502 \ No newline at end of file +beb7ad21bbca43e60dc1205def9393e0 \ No newline at end of file diff --git a/docs/html/inherit_graph_46.png b/docs/html/inherit_graph_46.png index 76e99ccf..0d9fe6d6 100644 Binary files a/docs/html/inherit_graph_46.png and b/docs/html/inherit_graph_46.png differ diff --git a/docs/html/inherit_graph_47.map b/docs/html/inherit_graph_47.map index 7ae9e6f7..2e91ed66 100644 --- a/docs/html/inherit_graph_47.map +++ b/docs/html/inherit_graph_47.map @@ -1,3 +1,3 @@ - + diff --git a/docs/html/inherit_graph_47.md5 b/docs/html/inherit_graph_47.md5 index 252e7bf2..280d1f72 100644 --- a/docs/html/inherit_graph_47.md5 +++ b/docs/html/inherit_graph_47.md5 @@ -1 +1 @@ -887dffb153b07479b921903ca1ba9e8f \ No newline at end of file +faad65e3c2b73b58bf858017c070d502 \ No newline at end of file diff --git a/docs/html/inherit_graph_47.png b/docs/html/inherit_graph_47.png index d1972672..76e99ccf 100644 Binary files a/docs/html/inherit_graph_47.png and b/docs/html/inherit_graph_47.png differ diff --git a/docs/html/inherit_graph_48.map b/docs/html/inherit_graph_48.map new file mode 100644 index 00000000..7ae9e6f7 --- /dev/null +++ b/docs/html/inherit_graph_48.map @@ -0,0 +1,3 @@ + + + diff --git a/docs/html/inherit_graph_48.md5 b/docs/html/inherit_graph_48.md5 new file mode 100644 index 00000000..252e7bf2 --- /dev/null +++ b/docs/html/inherit_graph_48.md5 @@ -0,0 +1 @@ +887dffb153b07479b921903ca1ba9e8f \ No newline at end of file diff --git a/docs/html/inherit_graph_48.png b/docs/html/inherit_graph_48.png new file mode 100644 index 00000000..d1972672 Binary files /dev/null and b/docs/html/inherit_graph_48.png differ diff --git a/docs/html/inherit_graph_5.map b/docs/html/inherit_graph_5.map index 0f9b2ea1..8d9390be 100644 --- a/docs/html/inherit_graph_5.map +++ b/docs/html/inherit_graph_5.map @@ -1,45 +1,3 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + diff --git a/docs/html/inherit_graph_5.md5 b/docs/html/inherit_graph_5.md5 index 569b7591..11504a4c 100644 --- a/docs/html/inherit_graph_5.md5 +++ b/docs/html/inherit_graph_5.md5 @@ -1 +1 @@ -d62c3aa06680cff3fd28cd47f318d906 \ No newline at end of file +9df999f3bbf708677fc36d36ec4e4329 \ No newline at end of file diff --git a/docs/html/inherit_graph_5.png b/docs/html/inherit_graph_5.png index 98b01154..0925adff 100644 Binary files a/docs/html/inherit_graph_5.png and b/docs/html/inherit_graph_5.png differ diff --git a/docs/html/inherit_graph_6.map b/docs/html/inherit_graph_6.map index 8d9390be..66904c93 100644 --- a/docs/html/inherit_graph_6.map +++ b/docs/html/inherit_graph_6.map @@ -1,3 +1,3 @@ - + diff --git a/docs/html/inherit_graph_6.md5 b/docs/html/inherit_graph_6.md5 index 11504a4c..5c3519f5 100644 --- a/docs/html/inherit_graph_6.md5 +++ b/docs/html/inherit_graph_6.md5 @@ -1 +1 @@ -9df999f3bbf708677fc36d36ec4e4329 \ No newline at end of file +7d0f3fdd2322904d53dbfd2ed21ccb5c \ No newline at end of file diff --git a/docs/html/inherit_graph_6.png b/docs/html/inherit_graph_6.png index 0925adff..814619af 100644 Binary files a/docs/html/inherit_graph_6.png and b/docs/html/inherit_graph_6.png differ diff --git a/docs/html/inherit_graph_7.map b/docs/html/inherit_graph_7.map index 66904c93..306f3014 100644 --- a/docs/html/inherit_graph_7.map +++ b/docs/html/inherit_graph_7.map @@ -1,3 +1,3 @@ - + diff --git a/docs/html/inherit_graph_7.md5 b/docs/html/inherit_graph_7.md5 index 5c3519f5..138cd197 100644 --- a/docs/html/inherit_graph_7.md5 +++ b/docs/html/inherit_graph_7.md5 @@ -1 +1 @@ -7d0f3fdd2322904d53dbfd2ed21ccb5c \ No newline at end of file +fe4f1b519a0657b8a19bede04db5b5dd \ No newline at end of file diff --git a/docs/html/inherit_graph_7.png b/docs/html/inherit_graph_7.png index 814619af..da78e572 100644 Binary files a/docs/html/inherit_graph_7.png and b/docs/html/inherit_graph_7.png differ diff --git a/docs/html/inherit_graph_8.map b/docs/html/inherit_graph_8.map index 306f3014..33126def 100644 --- a/docs/html/inherit_graph_8.map +++ b/docs/html/inherit_graph_8.map @@ -1,3 +1,3 @@ - + diff --git a/docs/html/inherit_graph_8.md5 b/docs/html/inherit_graph_8.md5 index 138cd197..bf91365e 100644 --- a/docs/html/inherit_graph_8.md5 +++ b/docs/html/inherit_graph_8.md5 @@ -1 +1 @@ -fe4f1b519a0657b8a19bede04db5b5dd \ No newline at end of file +7a44c14dfeaf00563220595473f47c42 \ No newline at end of file diff --git a/docs/html/inherit_graph_8.png b/docs/html/inherit_graph_8.png index da78e572..df6f1735 100644 Binary files a/docs/html/inherit_graph_8.png and b/docs/html/inherit_graph_8.png differ diff --git a/docs/html/inherit_graph_9.map b/docs/html/inherit_graph_9.map index 33126def..16644271 100644 --- a/docs/html/inherit_graph_9.map +++ b/docs/html/inherit_graph_9.map @@ -1,3 +1,3 @@ - + diff --git a/docs/html/inherit_graph_9.md5 b/docs/html/inherit_graph_9.md5 index bf91365e..3e517e53 100644 --- a/docs/html/inherit_graph_9.md5 +++ b/docs/html/inherit_graph_9.md5 @@ -1 +1 @@ -7a44c14dfeaf00563220595473f47c42 \ No newline at end of file +aeeca9536df161ebed072751ef00e5e2 \ No newline at end of file diff --git a/docs/html/inherit_graph_9.png b/docs/html/inherit_graph_9.png index df6f1735..3d7aab22 100644 Binary files a/docs/html/inherit_graph_9.png and b/docs/html/inherit_graph_9.png differ diff --git a/docs/html/inherits.html b/docs/html/inherits.html index 5747c8fc..c09ba1b7 100644 --- a/docs/html/inherits.html +++ b/docs/html/inherits.html @@ -109,14 +109,9 @@ $(document).ready(function(){initNavTree('hierarchy.html',''); initResizable();
    - - - -
    +
    - + @@ -126,117 +121,119 @@ $(document).ready(function(){initNavTree('hierarchy.html',''); initResizable(); - - - - - - + + + + + + + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    @@ -245,58 +242,68 @@ $(document).ready(function(){initNavTree('hierarchy.html',''); initResizable();
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + + +
    + + + +
    @@ -323,7 +330,7 @@ $(document).ready(function(){initNavTree('hierarchy.html',''); initResizable();
    +
    @@ -332,7 +339,7 @@ $(document).ready(function(){initNavTree('hierarchy.html',''); initResizable();
    +
    @@ -356,7 +363,7 @@ $(document).ready(function(){initNavTree('hierarchy.html',''); initResizable();
    +
    @@ -364,66 +371,66 @@ $(document).ready(function(){initNavTree('hierarchy.html',''); initResizable();
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    diff --git a/docs/html/namespaceGpgFrontend.html b/docs/html/namespaceGpgFrontend.html index 284392d6..cd8ac13d 100644 --- a/docs/html/namespaceGpgFrontend.html +++ b/docs/html/namespaceGpgFrontend.html @@ -110,6 +110,8 @@ Classes
     
    class  ArchiveFileOperator
     
    class  ThreadSafeMap
     
    class  CacheManager
     
    class  CharsetOperator
     CCoreCommonUtil
     CArchiveStruct
     CArchiveFileOperator
     CCacheManager
     CCharsetOperator
     CCoreSignalStation
     CDataObjectOperator
     CFileOperatorFile operations
     CGlobalSettingStation
     CGpgAdvancedOperator
     CGpgBasicOperatorBasic operation collection
     CGpgCommandExecutorExtra commands related to GPG
     CGpgFileOpera
     CGpgKeyGetter
     CGpgImportedKey
     CGpgImportInformation
     CGpgKeyImportExporter
     CGpgKeyManager
     CGpgKeyOpera
     CGpgUIDOperator
     CKeyPackageOperatorGive the possibility to import or export a key package
     CPassphraseGeneratorThe PassphraseGenerator class
     CGpgDecryptResultAnalyse
     CGpgEncryptResultAnalyse
     CGpgResultAnalyse
     CGpgSignResultAnalyse
     CGpgVerifyResultAnalyse
     C_result_ref_deletorResult Deleter
     CGpgConstants
     CGpgContextInitArgs
     CGpgContext
     CChannelObjectObject which in channel system
     CSingletonStorage
     CSingletonStorageCollection
     CSingletonFunctionObject
     CGenKeyInfo
     CGpgInfoUse to record some info about gnupg
     CGpgData
     CGpgKey
     CGpgKeySignature
     CGpgSignature
     CGpgSubKey
     CGpgTOFUInfo
     CGpgUID
     CThreadSafeMap
     CCacheManager
     CCharsetOperator
     CCoreSignalStation
     CDataObjectOperator
     CFileOperatorFile operations
     CGlobalSettingStation
     CGpgAdvancedOperator
     CGpgBasicOperatorBasic operation collection
     CGpgCommandExecutorExtra commands related to GPG
     CGpgFileOpera
     CGpgKeyGetter
     CGpgImportedKey
     CGpgImportInformation
     CGpgKeyImportExporter
     CGpgKeyManager
     CGpgKeyOpera
     CGpgUIDOperator
     CKeyPackageOperatorGive the possibility to import or export a key package
     CPassphraseGeneratorThe PassphraseGenerator class
     CGpgDecryptResultAnalyse
     CGpgEncryptResultAnalyse
     CGpgResultAnalyse
     CGpgSignResultAnalyse
     CGpgVerifyResultAnalyse
     C_result_ref_deletorResult Deleter
     CGpgConstants
     CGpgContextInitArgs
     CGpgContext
     CChannelObjectObject which in channel system
     CSingletonStorage
     CSingletonStorageCollection
     CSingletonFunctionObject
     CGenKeyInfo
     CGpgInfoUse to record some info about gnupg
     CGpgData
     CGpgKey
     CGpgKeySignature
     CGpgSignature
     CGpgSubKey
     CGpgTOFUInfo
     CGpgUID
    diff --git a/docs/html/navtreedata.js b/docs/html/navtreedata.js index e2f3e337..12405110 100644 --- a/docs/html/navtreedata.js +++ b/docs/html/navtreedata.js @@ -53,13 +53,13 @@ var NAVTREE = var NAVTREEINDEX = [ "AboutDialog_8h_source.html", -"classGpgFrontend_1_1GpgAdvancedOperator.html#a07c32ba25cf6153fbc8ee585c4ba377c", -"classGpgFrontend_1_1GpgSignResultAnalyse.html#abf0d7b3b601ac7498b661495c38d5bf1", -"classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html", -"classGpgFrontend_1_1UI_1_1KeyMgmt.html#aa10636ab18ccf63bcd3dfa60bdd9cbc7", -"classGpgFrontend_1_1UI_1_1MainWindow.html#a1759412cb7ee71600c4b6e3c6e752d2e", -"classGpgFrontend_1_1UI_1_1TextEdit.html#a66b6f6633e7ac71e5fe8b7814a81cadf", -"structGpgFrontend_1_1GpgContextInitArgs.html#a12e9e2e6ad393864a4b2d85727350edc" +"classGpgFrontend_1_1GlobalSettingStation.html#a6459653a71cc8285fa554943c7fb3ca7", +"classGpgFrontend_1_1GpgKeySignature.html#acd5e46397ebea3224761a6af15eea4fb", +"classGpgFrontend_1_1UI_1_1ChoosePage.html#ae370e789009be3926410cb749c86907b", +"classGpgFrontend_1_1UI_1_1KeyList.html#aad57901bf84aaf7849e7cf7bb9f8fc99", +"classGpgFrontend_1_1UI_1_1KeyserverTab.html#a8fd9c3735ab43ecf2eb6df4c9b2ddd93", +"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a029017ad2e025a43d21144f1b7427593", +"namespaceGpgFrontend.html#ae3f2947210ad3e11269ebac355f47492" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/docs/html/navtreeindex0.js b/docs/html/navtreeindex0.js index e65fd99d..811bad5a 100644 --- a/docs/html/navtreeindex0.js +++ b/docs/html/navtreeindex0.js @@ -105,22 +105,32 @@ var NAVTREEINDEX0 = "classGpgFrontend_1_1ArchiveFileOperator.html#a872fc2bfdd8876d5bf6bc9893ff0d963":[2,0,0,4,0], "classGpgFrontend_1_1ArchiveFileOperator.html#ae2ca57d6af2f27560e97430a9eee3505":[2,0,0,4,2], "classGpgFrontend_1_1ArchiveFileOperator.html#ae80009defc3c4a94a7180966fb82a0d8":[2,0,0,4,1], -"classGpgFrontend_1_1CacheManager.html":[2,0,0,5], -"classGpgFrontend_1_1CacheManager.html#a3cbc3238638dcd8b4722bfdf560c73fe":[2,0,0,5,2], -"classGpgFrontend_1_1CacheManager.html#aaac1a2b86867831713efa5f092abf985":[2,0,0,5,1], -"classGpgFrontend_1_1CacheManager.html#ae5246d24c5dbafb8f9abb561217ea235":[2,0,0,5,0], -"classGpgFrontend_1_1ChannelObject.html":[2,0,0,33], -"classGpgFrontend_1_1ChannelObject.html#a0e13a4bff1cfb679f68a3a2590a3b1b8":[2,0,0,33,2], -"classGpgFrontend_1_1ChannelObject.html#a66295bb572e98fc2fad3afce763ac311":[2,0,0,33,5], -"classGpgFrontend_1_1ChannelObject.html#a68ad2a19339e3cd50626fe0eaad17ccd":[2,0,0,33,1], -"classGpgFrontend_1_1ChannelObject.html#aa3b19cad6d873b314bba32a3dae85f09":[2,0,0,33,4], -"classGpgFrontend_1_1ChannelObject.html#aece9c525c49900734bc1bebf85b644ef":[2,0,0,33,3], -"classGpgFrontend_1_1ChannelObject.html#aedbf32eddc701e521bd8e790ef208da0":[2,0,0,33,0], -"classGpgFrontend_1_1ChannelObject.html#aee5f8a5575adbdf522da4dd195c091ee":[2,0,0,33,6], -"classGpgFrontend_1_1CharsetOperator.html":[2,0,0,6], -"classGpgFrontend_1_1CharsetOperator.html#a5a444a0fbd508f6af6a56f4151c21c1f":[2,0,0,6,2], -"classGpgFrontend_1_1CharsetOperator.html#a5ec0034ec02c373471b9b23fa988829b":[2,0,0,6,1], -"classGpgFrontend_1_1CharsetOperator.html#a707198805867df0e92b2db162da0f044":[2,0,0,6,0], +"classGpgFrontend_1_1CacheManager.html":[2,0,0,6], +"classGpgFrontend_1_1CacheManager.html#a10682dce9d34272f3b99d1abbb48fb0d":[2,0,0,6,10], +"classGpgFrontend_1_1CacheManager.html#a1176521fa6f3df1ed760c18af53ebcf5":[2,0,0,6,5], +"classGpgFrontend_1_1CacheManager.html#a2cce51cf81b62dfb10b2195a0375f9b2":[2,0,0,6,1], +"classGpgFrontend_1_1CacheManager.html#a311ae4d0cc4f4d9425b44789aea6090a":[2,0,0,6,0], +"classGpgFrontend_1_1CacheManager.html#a6e05751e92f8f0011bfcb755ccbb8003":[2,0,0,6,4], +"classGpgFrontend_1_1CacheManager.html#a8fdeea326fe6ba46d02ac2b9fbdde58c":[2,0,0,6,3], +"classGpgFrontend_1_1CacheManager.html#a9dd86b465c144340312956366b989cee":[2,0,0,6,2], +"classGpgFrontend_1_1CacheManager.html#ab974c30ff13b899ca647d6ff97f7c34d":[2,0,0,6,7], +"classGpgFrontend_1_1CacheManager.html#aec8664877393054794453f56373520cc":[2,0,0,6,9], +"classGpgFrontend_1_1CacheManager.html#af1ee53c1ecc4b0835568ef4af34c1595":[2,0,0,6,6], +"classGpgFrontend_1_1CacheManager.html#af4d6094e1c9fc5487e174ab876925a2b":[2,0,0,6,12], +"classGpgFrontend_1_1CacheManager.html#af61eef3700ff6a6790a42269b66e20e4":[2,0,0,6,8], +"classGpgFrontend_1_1CacheManager.html#af961e0b1f041bac37d5c16929da9d515":[2,0,0,6,11], +"classGpgFrontend_1_1ChannelObject.html":[2,0,0,34], +"classGpgFrontend_1_1ChannelObject.html#a0e13a4bff1cfb679f68a3a2590a3b1b8":[2,0,0,34,2], +"classGpgFrontend_1_1ChannelObject.html#a66295bb572e98fc2fad3afce763ac311":[2,0,0,34,5], +"classGpgFrontend_1_1ChannelObject.html#a68ad2a19339e3cd50626fe0eaad17ccd":[2,0,0,34,1], +"classGpgFrontend_1_1ChannelObject.html#aa3b19cad6d873b314bba32a3dae85f09":[2,0,0,34,4], +"classGpgFrontend_1_1ChannelObject.html#aece9c525c49900734bc1bebf85b644ef":[2,0,0,34,3], +"classGpgFrontend_1_1ChannelObject.html#aedbf32eddc701e521bd8e790ef208da0":[2,0,0,34,0], +"classGpgFrontend_1_1ChannelObject.html#aee5f8a5575adbdf522da4dd195c091ee":[2,0,0,34,6], +"classGpgFrontend_1_1CharsetOperator.html":[2,0,0,7], +"classGpgFrontend_1_1CharsetOperator.html#a5a444a0fbd508f6af6a56f4151c21c1f":[2,0,0,7,2], +"classGpgFrontend_1_1CharsetOperator.html#a5ec0034ec02c373471b9b23fa988829b":[2,0,0,7,1], +"classGpgFrontend_1_1CharsetOperator.html#a707198805867df0e92b2db162da0f044":[2,0,0,7,0], "classGpgFrontend_1_1CoreCommonUtil.html":[2,0,0,2], "classGpgFrontend_1_1CoreCommonUtil.html#a0c5bfd282e20abb390aa01023ee27682":[2,0,0,2,0], "classGpgFrontend_1_1CoreCommonUtil.html#a4d36aa8744c3fb246080075ca1d81c9a":[2,0,0,2,7], @@ -130,124 +140,114 @@ var NAVTREEINDEX0 = "classGpgFrontend_1_1CoreCommonUtil.html#abe5fa8731b0b672613505d59a576a3d7":[2,0,0,2,4], "classGpgFrontend_1_1CoreCommonUtil.html#ae2df4542d0d7d15a542f9c664f1f295f":[2,0,0,2,3], "classGpgFrontend_1_1CoreCommonUtil.html#ae78bbd20a519cbd8b4384e443c98231e":[2,0,0,2,5], -"classGpgFrontend_1_1CoreSignalStation.html":[2,0,0,7], -"classGpgFrontend_1_1CoreSignalStation.html#a0c5893909726b919ea733de9906cfb36":[2,0,0,7,0], -"classGpgFrontend_1_1CoreSignalStation.html#a36c316a2a76fdf7c3e74dfa5f8ed6b15":[2,0,0,7,3], -"classGpgFrontend_1_1CoreSignalStation.html#aac91061a578d4afe738495b5c6b3883f":[2,0,0,7,2], -"classGpgFrontend_1_1CoreSignalStation.html#af30315ec5659ca05557b4f21f5297b08":[2,0,0,7,1], -"classGpgFrontend_1_1DataObjectOperator.html":[2,0,0,8], -"classGpgFrontend_1_1DataObjectOperator.html#a1f5c8469197b382a8c0974d64114dfcd":[2,0,0,8,2], -"classGpgFrontend_1_1DataObjectOperator.html#a24c9cdbe9256e332ac93d6dc28c76b90":[2,0,0,8,11], -"classGpgFrontend_1_1DataObjectOperator.html#a3a8ae5c36fec01d0d5c3e5f9aed457a6":[2,0,0,8,0], -"classGpgFrontend_1_1DataObjectOperator.html#a3c195f8e4c30d95be14a6d43e9282601":[2,0,0,8,8], -"classGpgFrontend_1_1DataObjectOperator.html#a4bc3dbecd688c2ac1e01624a4d7b65b9":[2,0,0,8,4], -"classGpgFrontend_1_1DataObjectOperator.html#a56c0c031cd327207260c73d1885dbdca":[2,0,0,8,6], -"classGpgFrontend_1_1DataObjectOperator.html#a6190acb6a4b9dc4350cb346fb4a03a74":[2,0,0,8,1], -"classGpgFrontend_1_1DataObjectOperator.html#a6b357780482f0e0c021ad55a81eb37cf":[2,0,0,8,3], -"classGpgFrontend_1_1DataObjectOperator.html#a6d38d25c91c33c48d083ec4de051108a":[2,0,0,8,7], -"classGpgFrontend_1_1DataObjectOperator.html#a9fc92c7d497f2a2057776adfca40e8ca":[2,0,0,8,10], -"classGpgFrontend_1_1DataObjectOperator.html#ae409c3562c3e08931daa17f5790c508b":[2,0,0,8,9], -"classGpgFrontend_1_1DataObjectOperator.html#ae6762d4f0f5ca2e83f7c1508cd25cc21":[2,0,0,8,5], -"classGpgFrontend_1_1FileOperator.html":[2,0,0,9], -"classGpgFrontend_1_1FileOperator.html#a08baef750a723ee709804120a34d19c9":[2,0,0,9,0], -"classGpgFrontend_1_1FileOperator.html#a28a3572dc01192b6a4d50b544181084c":[2,0,0,9,1], -"classGpgFrontend_1_1FileOperator.html#a2f21ef4a88448b1eddf756302913d338":[2,0,0,9,3], -"classGpgFrontend_1_1FileOperator.html#a51121c94dc32a83d7073fbe7138b603b":[2,0,0,9,4], -"classGpgFrontend_1_1FileOperator.html#ad4424bce4f22ae75a16c542dfb4ddf0a":[2,0,0,9,2], -"classGpgFrontend_1_1GenKeyInfo.html":[2,0,0,37], -"classGpgFrontend_1_1GenKeyInfo.html#a01baca0288fe2c4574a8b3d9ae8552d8":[2,0,0,37,62], -"classGpgFrontend_1_1GenKeyInfo.html#a03230bfec48cfdf9d6f615c08a07b717":[2,0,0,37,49], -"classGpgFrontend_1_1GenKeyInfo.html#a06f95a8d26da79bcbe7d51e266879a94":[2,0,0,37,23], -"classGpgFrontend_1_1GenKeyInfo.html#a0b1612421148b86919b7130ed148ca51":[2,0,0,37,12], -"classGpgFrontend_1_1GenKeyInfo.html#a0bda4b4161d805582869ec0e56ade07c":[2,0,0,37,7], -"classGpgFrontend_1_1GenKeyInfo.html#a168d6fe5252812f5984ba6d8046c7741":[2,0,0,37,15], -"classGpgFrontend_1_1GenKeyInfo.html#a1944c0da5cc25ca3c0df404d5b9a07e9":[2,0,0,37,67], -"classGpgFrontend_1_1GenKeyInfo.html#a1a01518b24d40d95e187ef73f4dcd52a":[2,0,0,37,35], -"classGpgFrontend_1_1GenKeyInfo.html#a2226ccb2b0a53b7a8d2d11507efe27d6":[2,0,0,37,46], -"classGpgFrontend_1_1GenKeyInfo.html#a28ed8a65243e5bc69403305752c2cdc9":[2,0,0,37,24], -"classGpgFrontend_1_1GenKeyInfo.html#a2a2128871ff307439be30105d3845be9":[2,0,0,37,30], -"classGpgFrontend_1_1GenKeyInfo.html#a2f156598d0f080ddf219f28f47c5addf":[2,0,0,37,51], -"classGpgFrontend_1_1GenKeyInfo.html#a34392244d8cd477a590d02f02567a665":[2,0,0,37,58], -"classGpgFrontend_1_1GenKeyInfo.html#a34eca1662ba8d4645751f3ee66582b04":[2,0,0,37,1], -"classGpgFrontend_1_1GenKeyInfo.html#a3885a3e81bdae51d324d4265403d664c":[2,0,0,37,55], -"classGpgFrontend_1_1GenKeyInfo.html#a3d8347402309098d8d41e97b38a9336d":[2,0,0,37,50], -"classGpgFrontend_1_1GenKeyInfo.html#a3e8a1d4943b283a6c6042e4e0bba02a8":[2,0,0,37,56], -"classGpgFrontend_1_1GenKeyInfo.html#a3ed156b4414de8696db53e0539627743":[2,0,0,37,48], -"classGpgFrontend_1_1GenKeyInfo.html#a40a42ad975499566de124296c19e6c55":[2,0,0,37,29], -"classGpgFrontend_1_1GenKeyInfo.html#a48c113454bd67cd0d918da0469924727":[2,0,0,37,57], -"classGpgFrontend_1_1GenKeyInfo.html#a4927a9091fa2b2f68f6b60ce78ab2fe9":[2,0,0,37,6], -"classGpgFrontend_1_1GenKeyInfo.html#a4d1962deb33d9848b9b43343bfa55045":[2,0,0,37,65], -"classGpgFrontend_1_1GenKeyInfo.html#a4ee4a0659e76376d9bfc527c334392e1":[2,0,0,37,17], -"classGpgFrontend_1_1GenKeyInfo.html#a4fa1fb60b3e623d3e96d45b8156b4819":[2,0,0,37,53], -"classGpgFrontend_1_1GenKeyInfo.html#a54aa9ef123265ff945af6a4ec091fd90":[2,0,0,37,63], -"classGpgFrontend_1_1GenKeyInfo.html#a6102b91607b07598e1c3f262d66bbcdd":[2,0,0,37,47], -"classGpgFrontend_1_1GenKeyInfo.html#a656c81d56f77350184f9a94db1a3ce05":[2,0,0,37,37], -"classGpgFrontend_1_1GenKeyInfo.html#a65ebc487e0e64c325f65474c812615f7":[2,0,0,37,41], -"classGpgFrontend_1_1GenKeyInfo.html#a6819b0ca3ef7712b85ae320030cde023":[2,0,0,37,16], -"classGpgFrontend_1_1GenKeyInfo.html#a6a65ba347156373b6cf98eb8e851d28d":[2,0,0,37,2], -"classGpgFrontend_1_1GenKeyInfo.html#a6e54dd17a9e16a80e100a1a367f6e41c":[2,0,0,37,54], -"classGpgFrontend_1_1GenKeyInfo.html#a742e5bcc903e8e01b69e568659fe3e20":[2,0,0,37,59], -"classGpgFrontend_1_1GenKeyInfo.html#a76721be08c18907762ba6f6ccc4afc8a":[2,0,0,37,4], -"classGpgFrontend_1_1GenKeyInfo.html#a7b8c6d162f1cb8a74e3ff150908270f5":[2,0,0,37,61], -"classGpgFrontend_1_1GenKeyInfo.html#a7eda73ff0625a635f041365c21531c60":[2,0,0,37,0], -"classGpgFrontend_1_1GenKeyInfo.html#a848181796a99bec8d32dc5eac240ee01":[2,0,0,37,28], -"classGpgFrontend_1_1GenKeyInfo.html#a864407216cbdbef9e7b35e6be694d3ef":[2,0,0,37,43], -"classGpgFrontend_1_1GenKeyInfo.html#a890ee16ef6088570360a073a6b531c89":[2,0,0,37,9], -"classGpgFrontend_1_1GenKeyInfo.html#a947886456f5699241b1c1b9332e4b29e":[2,0,0,37,36], -"classGpgFrontend_1_1GenKeyInfo.html#a965014232f6de22c6d33320231ca4454":[2,0,0,37,34], -"classGpgFrontend_1_1GenKeyInfo.html#a9e3cec33031de7d3d2728bd6883caece":[2,0,0,37,66], -"classGpgFrontend_1_1GenKeyInfo.html#aa3bfeda7fc7c83dc8d48ee2b80780c3a":[2,0,0,37,38], -"classGpgFrontend_1_1GenKeyInfo.html#aa8fdbf7db3cb7e7a013fcf9c18cf069a":[2,0,0,37,45], -"classGpgFrontend_1_1GenKeyInfo.html#aabdf981c65a0efde1e8905441b9b9c87":[2,0,0,37,18], -"classGpgFrontend_1_1GenKeyInfo.html#aac51d251682ed1bc1090416ebfeba4de":[2,0,0,37,32], -"classGpgFrontend_1_1GenKeyInfo.html#aaf8ab7c6564a2836837a537111d6f5b4":[2,0,0,37,20], -"classGpgFrontend_1_1GenKeyInfo.html#ab97cbf3c5d6e30a6c85e8ca82b1ccfe3":[2,0,0,37,64], -"classGpgFrontend_1_1GenKeyInfo.html#ab9f9775fd6363fba372bd0bcc2532892":[2,0,0,37,3], -"classGpgFrontend_1_1GenKeyInfo.html#abb3e1366dca0288bdc42123e55d77335":[2,0,0,37,8], -"classGpgFrontend_1_1GenKeyInfo.html#ac0dbb2d89b1e5f9b272679ba3f24314e":[2,0,0,37,13], -"classGpgFrontend_1_1GenKeyInfo.html#ac211a7a615805ae97ff284b46abfeab7":[2,0,0,37,10], -"classGpgFrontend_1_1GenKeyInfo.html#ac5f52f74566618c71a29bdc5e70fce2e":[2,0,0,37,33], -"classGpgFrontend_1_1GenKeyInfo.html#ac629312630a78e32ee36ba0ff30bc9ff":[2,0,0,37,5], -"classGpgFrontend_1_1GenKeyInfo.html#acd9f7742b739e1db60bd50489690dec1":[2,0,0,37,39], -"classGpgFrontend_1_1GenKeyInfo.html#ad04a906300bea028c6fb6b1b2da1d149":[2,0,0,37,22], -"classGpgFrontend_1_1GenKeyInfo.html#ad47ceeb1ccfa8862843034e51b4d8be7":[2,0,0,37,19], -"classGpgFrontend_1_1GenKeyInfo.html#ad899d9ac85bb4fe39613b3207fd676c6":[2,0,0,37,60], -"classGpgFrontend_1_1GenKeyInfo.html#ad972292c408cb83c08e739327795a5f0":[2,0,0,37,26], -"classGpgFrontend_1_1GenKeyInfo.html#adbcddd0fa0a273f9b77fe1297633dabc":[2,0,0,37,21], -"classGpgFrontend_1_1GenKeyInfo.html#adcd9c4f3e75f989810988e0bc81d401f":[2,0,0,37,31], -"classGpgFrontend_1_1GenKeyInfo.html#ae461a553176ad1ab0c1121ea6de6c8c2":[2,0,0,37,11], -"classGpgFrontend_1_1GenKeyInfo.html#ae744395012e4dcb9734ad5a30aa8ed75":[2,0,0,37,40], -"classGpgFrontend_1_1GenKeyInfo.html#aea247381c21896f5371bb813ca665329":[2,0,0,37,42], -"classGpgFrontend_1_1GenKeyInfo.html#aed17aae3218f74cea7273c9dd853a539":[2,0,0,37,52], -"classGpgFrontend_1_1GenKeyInfo.html#aeef7697c91b5b5998088979e09332380":[2,0,0,37,27], -"classGpgFrontend_1_1GenKeyInfo.html#af6a79124a4571ff7f37c1c5e6c1a9415":[2,0,0,37,25], -"classGpgFrontend_1_1GenKeyInfo.html#afb8315b6612c64b3921b72df98ebcc74":[2,0,0,37,14], -"classGpgFrontend_1_1GenKeyInfo.html#afe1760d4ead397f6096925290a38e1a4":[2,0,0,37,44], -"classGpgFrontend_1_1GlobalSettingStation.html":[2,0,0,10], -"classGpgFrontend_1_1GlobalSettingStation.html#a0b3780564305e9b210d66ef377c21565":[2,0,0,10,6], -"classGpgFrontend_1_1GlobalSettingStation.html#a1818e08063d6a886975f77354fc5d85c":[2,0,0,10,22], -"classGpgFrontend_1_1GlobalSettingStation.html#a1d8b9f91c75ef7a1d008a171f09f2c0e":[2,0,0,10,11], -"classGpgFrontend_1_1GlobalSettingStation.html#a1d94a126c78ac01ec01f10d2ce575388":[2,0,0,10,21], -"classGpgFrontend_1_1GlobalSettingStation.html#a1e1993b72d0ad09d247b643b4447e57c":[2,0,0,10,12], -"classGpgFrontend_1_1GlobalSettingStation.html#a25c1b45a2ccdc21dd2dcba58866169fb":[2,0,0,10,18], -"classGpgFrontend_1_1GlobalSettingStation.html#a385ae4ab6ad5b17742a5405fa693d789":[2,0,0,10,5], -"classGpgFrontend_1_1GlobalSettingStation.html#a4d04bb665571921421b853f18b8b300a":[2,0,0,10,15], -"classGpgFrontend_1_1GlobalSettingStation.html#a58fff8a42f98ad7989bffb8322344cd6":[2,0,0,10,17], -"classGpgFrontend_1_1GlobalSettingStation.html#a6459653a71cc8285fa554943c7fb3ca7":[2,0,0,10,19], -"classGpgFrontend_1_1GlobalSettingStation.html#a657a17d85d06a3455a2d3ed0782f76a2":[2,0,0,10,3], -"classGpgFrontend_1_1GlobalSettingStation.html#a678f8ba120f9ad050d0adfec4476d7ac":[2,0,0,10,20], -"classGpgFrontend_1_1GlobalSettingStation.html#a73d553587447165c5c7b7a9704771963":[2,0,0,10,2], -"classGpgFrontend_1_1GlobalSettingStation.html#a7da9b08291ef2391892f5c9375b8db23":[2,0,0,10,7], -"classGpgFrontend_1_1GlobalSettingStation.html#a819b3f4ea553fc1e839ef0ae230f0ea2":[2,0,0,10,13], -"classGpgFrontend_1_1GlobalSettingStation.html#aa93b21af9ac6649d5749c83c809f5b00":[2,0,0,10,10], -"classGpgFrontend_1_1GlobalSettingStation.html#ab618fef68cfd4ff6e42d4a4aa8ea94bb":[2,0,0,10,23], -"classGpgFrontend_1_1GlobalSettingStation.html#abdc6dda369d4214e43ffa2930f7386b0":[2,0,0,10,0], -"classGpgFrontend_1_1GlobalSettingStation.html#ac061ac8e5308f67ea52b98888bbb2e8d":[2,0,0,10,14], -"classGpgFrontend_1_1GlobalSettingStation.html#ad0600d475f6758503b1347722e2a933a":[2,0,0,10,16], -"classGpgFrontend_1_1GlobalSettingStation.html#ae9d1da3d01c4a834120968636596c3c3":[2,0,0,10,4], -"classGpgFrontend_1_1GlobalSettingStation.html#af484ca46c5df831a9dd76f3a88d66332":[2,0,0,10,9], -"classGpgFrontend_1_1GlobalSettingStation.html#af700161900e623a0ea14261d51616451":[2,0,0,10,1], -"classGpgFrontend_1_1GlobalSettingStation.html#afa99ddc25c0d5fd59a4c5f0e61d13830":[2,0,0,10,24], -"classGpgFrontend_1_1GlobalSettingStation.html#afc1aa3dec55ae4e741f92fce1140a2d0":[2,0,0,10,8], -"classGpgFrontend_1_1GpgAdvancedOperator.html":[2,0,0,11] +"classGpgFrontend_1_1CoreSignalStation.html":[2,0,0,8], +"classGpgFrontend_1_1CoreSignalStation.html#a0c5893909726b919ea733de9906cfb36":[2,0,0,8,0], +"classGpgFrontend_1_1CoreSignalStation.html#a36c316a2a76fdf7c3e74dfa5f8ed6b15":[2,0,0,8,3], +"classGpgFrontend_1_1CoreSignalStation.html#aac91061a578d4afe738495b5c6b3883f":[2,0,0,8,2], +"classGpgFrontend_1_1CoreSignalStation.html#af30315ec5659ca05557b4f21f5297b08":[2,0,0,8,1], +"classGpgFrontend_1_1DataObjectOperator.html":[2,0,0,9], +"classGpgFrontend_1_1DataObjectOperator.html#a1f5c8469197b382a8c0974d64114dfcd":[2,0,0,9,2], +"classGpgFrontend_1_1DataObjectOperator.html#a24c9cdbe9256e332ac93d6dc28c76b90":[2,0,0,9,11], +"classGpgFrontend_1_1DataObjectOperator.html#a3a8ae5c36fec01d0d5c3e5f9aed457a6":[2,0,0,9,0], +"classGpgFrontend_1_1DataObjectOperator.html#a3c195f8e4c30d95be14a6d43e9282601":[2,0,0,9,8], +"classGpgFrontend_1_1DataObjectOperator.html#a4bc3dbecd688c2ac1e01624a4d7b65b9":[2,0,0,9,4], +"classGpgFrontend_1_1DataObjectOperator.html#a56c0c031cd327207260c73d1885dbdca":[2,0,0,9,6], +"classGpgFrontend_1_1DataObjectOperator.html#a6190acb6a4b9dc4350cb346fb4a03a74":[2,0,0,9,1], +"classGpgFrontend_1_1DataObjectOperator.html#a6b357780482f0e0c021ad55a81eb37cf":[2,0,0,9,3], +"classGpgFrontend_1_1DataObjectOperator.html#a6d38d25c91c33c48d083ec4de051108a":[2,0,0,9,7], +"classGpgFrontend_1_1DataObjectOperator.html#a9fc92c7d497f2a2057776adfca40e8ca":[2,0,0,9,10], +"classGpgFrontend_1_1DataObjectOperator.html#ae409c3562c3e08931daa17f5790c508b":[2,0,0,9,9], +"classGpgFrontend_1_1DataObjectOperator.html#ae6762d4f0f5ca2e83f7c1508cd25cc21":[2,0,0,9,5], +"classGpgFrontend_1_1FileOperator.html":[2,0,0,10], +"classGpgFrontend_1_1FileOperator.html#a08baef750a723ee709804120a34d19c9":[2,0,0,10,0], +"classGpgFrontend_1_1FileOperator.html#a28a3572dc01192b6a4d50b544181084c":[2,0,0,10,1], +"classGpgFrontend_1_1FileOperator.html#a2f21ef4a88448b1eddf756302913d338":[2,0,0,10,3], +"classGpgFrontend_1_1FileOperator.html#a51121c94dc32a83d7073fbe7138b603b":[2,0,0,10,4], +"classGpgFrontend_1_1FileOperator.html#ad4424bce4f22ae75a16c542dfb4ddf0a":[2,0,0,10,2], +"classGpgFrontend_1_1GenKeyInfo.html":[2,0,0,38], +"classGpgFrontend_1_1GenKeyInfo.html#a01baca0288fe2c4574a8b3d9ae8552d8":[2,0,0,38,62], +"classGpgFrontend_1_1GenKeyInfo.html#a03230bfec48cfdf9d6f615c08a07b717":[2,0,0,38,49], +"classGpgFrontend_1_1GenKeyInfo.html#a06f95a8d26da79bcbe7d51e266879a94":[2,0,0,38,23], +"classGpgFrontend_1_1GenKeyInfo.html#a0b1612421148b86919b7130ed148ca51":[2,0,0,38,12], +"classGpgFrontend_1_1GenKeyInfo.html#a0bda4b4161d805582869ec0e56ade07c":[2,0,0,38,7], +"classGpgFrontend_1_1GenKeyInfo.html#a168d6fe5252812f5984ba6d8046c7741":[2,0,0,38,15], +"classGpgFrontend_1_1GenKeyInfo.html#a1944c0da5cc25ca3c0df404d5b9a07e9":[2,0,0,38,67], +"classGpgFrontend_1_1GenKeyInfo.html#a1a01518b24d40d95e187ef73f4dcd52a":[2,0,0,38,35], +"classGpgFrontend_1_1GenKeyInfo.html#a2226ccb2b0a53b7a8d2d11507efe27d6":[2,0,0,38,46], +"classGpgFrontend_1_1GenKeyInfo.html#a28ed8a65243e5bc69403305752c2cdc9":[2,0,0,38,24], +"classGpgFrontend_1_1GenKeyInfo.html#a2a2128871ff307439be30105d3845be9":[2,0,0,38,30], +"classGpgFrontend_1_1GenKeyInfo.html#a2f156598d0f080ddf219f28f47c5addf":[2,0,0,38,51], +"classGpgFrontend_1_1GenKeyInfo.html#a34392244d8cd477a590d02f02567a665":[2,0,0,38,58], +"classGpgFrontend_1_1GenKeyInfo.html#a34eca1662ba8d4645751f3ee66582b04":[2,0,0,38,1], +"classGpgFrontend_1_1GenKeyInfo.html#a3885a3e81bdae51d324d4265403d664c":[2,0,0,38,55], +"classGpgFrontend_1_1GenKeyInfo.html#a3d8347402309098d8d41e97b38a9336d":[2,0,0,38,50], +"classGpgFrontend_1_1GenKeyInfo.html#a3e8a1d4943b283a6c6042e4e0bba02a8":[2,0,0,38,56], +"classGpgFrontend_1_1GenKeyInfo.html#a3ed156b4414de8696db53e0539627743":[2,0,0,38,48], +"classGpgFrontend_1_1GenKeyInfo.html#a40a42ad975499566de124296c19e6c55":[2,0,0,38,29], +"classGpgFrontend_1_1GenKeyInfo.html#a48c113454bd67cd0d918da0469924727":[2,0,0,38,57], +"classGpgFrontend_1_1GenKeyInfo.html#a4927a9091fa2b2f68f6b60ce78ab2fe9":[2,0,0,38,6], +"classGpgFrontend_1_1GenKeyInfo.html#a4d1962deb33d9848b9b43343bfa55045":[2,0,0,38,65], +"classGpgFrontend_1_1GenKeyInfo.html#a4ee4a0659e76376d9bfc527c334392e1":[2,0,0,38,17], +"classGpgFrontend_1_1GenKeyInfo.html#a4fa1fb60b3e623d3e96d45b8156b4819":[2,0,0,38,53], +"classGpgFrontend_1_1GenKeyInfo.html#a54aa9ef123265ff945af6a4ec091fd90":[2,0,0,38,63], +"classGpgFrontend_1_1GenKeyInfo.html#a6102b91607b07598e1c3f262d66bbcdd":[2,0,0,38,47], +"classGpgFrontend_1_1GenKeyInfo.html#a656c81d56f77350184f9a94db1a3ce05":[2,0,0,38,37], +"classGpgFrontend_1_1GenKeyInfo.html#a65ebc487e0e64c325f65474c812615f7":[2,0,0,38,41], +"classGpgFrontend_1_1GenKeyInfo.html#a6819b0ca3ef7712b85ae320030cde023":[2,0,0,38,16], +"classGpgFrontend_1_1GenKeyInfo.html#a6a65ba347156373b6cf98eb8e851d28d":[2,0,0,38,2], +"classGpgFrontend_1_1GenKeyInfo.html#a6e54dd17a9e16a80e100a1a367f6e41c":[2,0,0,38,54], +"classGpgFrontend_1_1GenKeyInfo.html#a742e5bcc903e8e01b69e568659fe3e20":[2,0,0,38,59], +"classGpgFrontend_1_1GenKeyInfo.html#a76721be08c18907762ba6f6ccc4afc8a":[2,0,0,38,4], +"classGpgFrontend_1_1GenKeyInfo.html#a7b8c6d162f1cb8a74e3ff150908270f5":[2,0,0,38,61], +"classGpgFrontend_1_1GenKeyInfo.html#a7eda73ff0625a635f041365c21531c60":[2,0,0,38,0], +"classGpgFrontend_1_1GenKeyInfo.html#a848181796a99bec8d32dc5eac240ee01":[2,0,0,38,28], +"classGpgFrontend_1_1GenKeyInfo.html#a864407216cbdbef9e7b35e6be694d3ef":[2,0,0,38,43], +"classGpgFrontend_1_1GenKeyInfo.html#a890ee16ef6088570360a073a6b531c89":[2,0,0,38,9], +"classGpgFrontend_1_1GenKeyInfo.html#a947886456f5699241b1c1b9332e4b29e":[2,0,0,38,36], +"classGpgFrontend_1_1GenKeyInfo.html#a965014232f6de22c6d33320231ca4454":[2,0,0,38,34], +"classGpgFrontend_1_1GenKeyInfo.html#a9e3cec33031de7d3d2728bd6883caece":[2,0,0,38,66], +"classGpgFrontend_1_1GenKeyInfo.html#aa3bfeda7fc7c83dc8d48ee2b80780c3a":[2,0,0,38,38], +"classGpgFrontend_1_1GenKeyInfo.html#aa8fdbf7db3cb7e7a013fcf9c18cf069a":[2,0,0,38,45], +"classGpgFrontend_1_1GenKeyInfo.html#aabdf981c65a0efde1e8905441b9b9c87":[2,0,0,38,18], +"classGpgFrontend_1_1GenKeyInfo.html#aac51d251682ed1bc1090416ebfeba4de":[2,0,0,38,32], +"classGpgFrontend_1_1GenKeyInfo.html#aaf8ab7c6564a2836837a537111d6f5b4":[2,0,0,38,20], +"classGpgFrontend_1_1GenKeyInfo.html#ab97cbf3c5d6e30a6c85e8ca82b1ccfe3":[2,0,0,38,64], +"classGpgFrontend_1_1GenKeyInfo.html#ab9f9775fd6363fba372bd0bcc2532892":[2,0,0,38,3], +"classGpgFrontend_1_1GenKeyInfo.html#abb3e1366dca0288bdc42123e55d77335":[2,0,0,38,8], +"classGpgFrontend_1_1GenKeyInfo.html#ac0dbb2d89b1e5f9b272679ba3f24314e":[2,0,0,38,13], +"classGpgFrontend_1_1GenKeyInfo.html#ac211a7a615805ae97ff284b46abfeab7":[2,0,0,38,10], +"classGpgFrontend_1_1GenKeyInfo.html#ac5f52f74566618c71a29bdc5e70fce2e":[2,0,0,38,33], +"classGpgFrontend_1_1GenKeyInfo.html#ac629312630a78e32ee36ba0ff30bc9ff":[2,0,0,38,5], +"classGpgFrontend_1_1GenKeyInfo.html#acd9f7742b739e1db60bd50489690dec1":[2,0,0,38,39], +"classGpgFrontend_1_1GenKeyInfo.html#ad04a906300bea028c6fb6b1b2da1d149":[2,0,0,38,22], +"classGpgFrontend_1_1GenKeyInfo.html#ad47ceeb1ccfa8862843034e51b4d8be7":[2,0,0,38,19], +"classGpgFrontend_1_1GenKeyInfo.html#ad899d9ac85bb4fe39613b3207fd676c6":[2,0,0,38,60], +"classGpgFrontend_1_1GenKeyInfo.html#ad972292c408cb83c08e739327795a5f0":[2,0,0,38,26], +"classGpgFrontend_1_1GenKeyInfo.html#adbcddd0fa0a273f9b77fe1297633dabc":[2,0,0,38,21], +"classGpgFrontend_1_1GenKeyInfo.html#adcd9c4f3e75f989810988e0bc81d401f":[2,0,0,38,31], +"classGpgFrontend_1_1GenKeyInfo.html#ae461a553176ad1ab0c1121ea6de6c8c2":[2,0,0,38,11], +"classGpgFrontend_1_1GenKeyInfo.html#ae744395012e4dcb9734ad5a30aa8ed75":[2,0,0,38,40], +"classGpgFrontend_1_1GenKeyInfo.html#aea247381c21896f5371bb813ca665329":[2,0,0,38,42], +"classGpgFrontend_1_1GenKeyInfo.html#aed17aae3218f74cea7273c9dd853a539":[2,0,0,38,52], +"classGpgFrontend_1_1GenKeyInfo.html#aeef7697c91b5b5998088979e09332380":[2,0,0,38,27], +"classGpgFrontend_1_1GenKeyInfo.html#af6a79124a4571ff7f37c1c5e6c1a9415":[2,0,0,38,25], +"classGpgFrontend_1_1GenKeyInfo.html#afb8315b6612c64b3921b72df98ebcc74":[2,0,0,38,14], +"classGpgFrontend_1_1GenKeyInfo.html#afe1760d4ead397f6096925290a38e1a4":[2,0,0,38,44], +"classGpgFrontend_1_1GlobalSettingStation.html":[2,0,0,11], +"classGpgFrontend_1_1GlobalSettingStation.html#a0b3780564305e9b210d66ef377c21565":[2,0,0,11,12], +"classGpgFrontend_1_1GlobalSettingStation.html#a1818e08063d6a886975f77354fc5d85c":[2,0,0,11,29], +"classGpgFrontend_1_1GlobalSettingStation.html#a1d8b9f91c75ef7a1d008a171f09f2c0e":[2,0,0,11,18], +"classGpgFrontend_1_1GlobalSettingStation.html#a1d94a126c78ac01ec01f10d2ce575388":[2,0,0,11,28], +"classGpgFrontend_1_1GlobalSettingStation.html#a1e1993b72d0ad09d247b643b4447e57c":[2,0,0,11,19], +"classGpgFrontend_1_1GlobalSettingStation.html#a25c1b45a2ccdc21dd2dcba58866169fb":[2,0,0,11,25], +"classGpgFrontend_1_1GlobalSettingStation.html#a2b40c59a9fce37873dd3564f8e1bd906":[2,0,0,11,4], +"classGpgFrontend_1_1GlobalSettingStation.html#a3029ae27bcb2d845f61f7870f43f8c6f":[2,0,0,11,14], +"classGpgFrontend_1_1GlobalSettingStation.html#a369e57383a99bc673273c2819b8bebbb":[2,0,0,11,6], +"classGpgFrontend_1_1GlobalSettingStation.html#a385ae4ab6ad5b17742a5405fa693d789":[2,0,0,11,10], +"classGpgFrontend_1_1GlobalSettingStation.html#a393186ae479062b007a41485f608636f":[2,0,0,11,2], +"classGpgFrontend_1_1GlobalSettingStation.html#a43c472c40896308e7bbc14796b5740af":[2,0,0,11,3], +"classGpgFrontend_1_1GlobalSettingStation.html#a4d04bb665571921421b853f18b8b300a":[2,0,0,11,22], +"classGpgFrontend_1_1GlobalSettingStation.html#a4da1d828e5bb719025f5b8e279e0bd02":[2,0,0,11,11], +"classGpgFrontend_1_1GlobalSettingStation.html#a4eb35bd5306e8c393ad168e91826aed4":[2,0,0,11,5], +"classGpgFrontend_1_1GlobalSettingStation.html#a58fff8a42f98ad7989bffb8322344cd6":[2,0,0,11,24] }; diff --git a/docs/html/navtreeindex1.js b/docs/html/navtreeindex1.js index 75e28520..87380507 100644 --- a/docs/html/navtreeindex1.js +++ b/docs/html/navtreeindex1.js @@ -1,253 +1,253 @@ var NAVTREEINDEX1 = { -"classGpgFrontend_1_1GpgAdvancedOperator.html#a07c32ba25cf6153fbc8ee585c4ba377c":[2,0,0,11,6], -"classGpgFrontend_1_1GpgAdvancedOperator.html#a209f6d1d664ab672437198dc10ed8226":[2,0,0,11,3], -"classGpgFrontend_1_1GpgAdvancedOperator.html#a387ad457bb729f340f680d0b743733ad":[2,0,0,11,8], -"classGpgFrontend_1_1GpgAdvancedOperator.html#a46085a11235894deccd312fc259d5078":[2,0,0,11,5], -"classGpgFrontend_1_1GpgAdvancedOperator.html#a5801bf4ea7391cbcc60efd2513d41041":[2,0,0,11,4], -"classGpgFrontend_1_1GpgAdvancedOperator.html#a6876b6ee63ff7147c274e4f9538d29ce":[2,0,0,11,2], -"classGpgFrontend_1_1GpgAdvancedOperator.html#a71eb87ed095754ee1e9fa79125240f3e":[2,0,0,11,1], -"classGpgFrontend_1_1GpgAdvancedOperator.html#a9233156767f1d45272b95decd18241e3":[2,0,0,11,0], -"classGpgFrontend_1_1GpgAdvancedOperator.html#a9313410359ed9cff9ee66fa9b4b095ee":[2,0,0,11,7], -"classGpgFrontend_1_1GpgBasicOperator.html":[2,0,0,12], -"classGpgFrontend_1_1GpgBasicOperator.html#a08906cf2bc2ddad8489438610f388f8a":[2,0,0,12,4], -"classGpgFrontend_1_1GpgBasicOperator.html#a11845a9a3ea2941e14faa9130f0ac9ef":[2,0,0,12,2], -"classGpgFrontend_1_1GpgBasicOperator.html#a139be86330f88e5f833aa24263a3b2ae":[2,0,0,12,0], -"classGpgFrontend_1_1GpgBasicOperator.html#a32e1eac6bb0f322588ae75ae36a9884a":[2,0,0,12,3], -"classGpgFrontend_1_1GpgBasicOperator.html#a78f37b8d5afd6c0248665a4415f880cf":[2,0,0,12,6], -"classGpgFrontend_1_1GpgBasicOperator.html#a8f4ef57e941a066ad9d070eee51e2073":[2,0,0,12,5], -"classGpgFrontend_1_1GpgBasicOperator.html#a988d7e65e85fc7a578f26300332a65d3":[2,0,0,12,8], -"classGpgFrontend_1_1GpgBasicOperator.html#a9ea9e81194917e08f46eb657281b7953":[2,0,0,12,1], -"classGpgFrontend_1_1GpgBasicOperator.html#ad6ea3596ba7d7543fb1b8233d09996df":[2,0,0,12,7], -"classGpgFrontend_1_1GpgBasicOperator.html#af0347cb28ff73b2250395ceaa9001509":[2,0,0,12,9], -"classGpgFrontend_1_1GpgBasicOperator.html#afad990a43ab06a060a93db9948ebb740":[2,0,0,12,10], -"classGpgFrontend_1_1GpgCommandExecutor.html":[2,0,0,13], -"classGpgFrontend_1_1GpgCommandExecutor.html#a9025336aea731e48e9411dc96f6cbc28":[2,0,0,13,2], -"classGpgFrontend_1_1GpgCommandExecutor.html#a94240f423464600938bfcafa2b186c38":[2,0,0,13,0], -"classGpgFrontend_1_1GpgCommandExecutor.html#aefc4f18ec852b98c539d97da1c712a02":[2,0,0,13,3], -"classGpgFrontend_1_1GpgCommandExecutor.html#affa984ec4c2982c527761289f73c1ab4":[2,0,0,13,1], -"classGpgFrontend_1_1GpgConstants.html":[2,0,0,30], -"classGpgFrontend_1_1GpgConstants.html#a237006d6db30c7e3f8de171210eb35f2":[2,0,0,30,1], -"classGpgFrontend_1_1GpgConstants.html#a2c92d804e331fea2a57cba3028aa51ae":[2,0,0,30,0], -"classGpgFrontend_1_1GpgConstants.html#a36861cbbc85a53f4a42fa07153aa0150":[2,0,0,30,7], -"classGpgFrontend_1_1GpgConstants.html#a53310750d959947f316c793504e6eac1":[2,0,0,30,6], -"classGpgFrontend_1_1GpgConstants.html#a58558c2335021c7e6217dbd156d07705":[2,0,0,30,2], -"classGpgFrontend_1_1GpgConstants.html#a7f8ee639c08d4b477e6ab6ec87500f9b":[2,0,0,30,5], -"classGpgFrontend_1_1GpgConstants.html#aa3fa92fdc37cef4bba55b5e340299e9d":[2,0,0,30,3], -"classGpgFrontend_1_1GpgConstants.html#aafcb370531c8e84dec1e4d81ffeade1a":[2,0,0,30,8], -"classGpgFrontend_1_1GpgConstants.html#accb94e62d07af77123b79462971b4d55":[2,0,0,30,4], -"classGpgFrontend_1_1GpgContext.html":[2,0,0,32], -"classGpgFrontend_1_1GpgContext.html#a01e46d0718b61a224a52028b9da90468":[2,0,0,32,19], -"classGpgFrontend_1_1GpgContext.html#a2429d3f9daa189b4d5d8624c9f4d528b":[2,0,0,32,3], -"classGpgFrontend_1_1GpgContext.html#a3399fc60086ff5010a089bff48bbc63c":[2,0,0,32,12], -"classGpgFrontend_1_1GpgContext.html#a36e807be6873698b5f8d4218bdfe8732":[2,0,0,32,13], -"classGpgFrontend_1_1GpgContext.html#a3844cd0966134939e5c4be9a725e5271":[2,0,0,32,15], -"classGpgFrontend_1_1GpgContext.html#a39882b323569987592231f722a2ef147":[2,0,0,32,2], -"classGpgFrontend_1_1GpgContext.html#a4765cccf9f994a9c7b3d962a24bed77e":[2,0,0,32,17], -"classGpgFrontend_1_1GpgContext.html#a4a8f6ff37e45979159ab375b2c7d48c3":[2,0,0,32,7], -"classGpgFrontend_1_1GpgContext.html#a4fb92a23d989f514536a26509b4d0993":[2,0,0,32,21], -"classGpgFrontend_1_1GpgContext.html#a5b419175bd9927f3d449637db8ba6524":[2,0,0,32,10], -"classGpgFrontend_1_1GpgContext.html#a73c505a2f3d39d1638dc4d9a3e13a913":[2,0,0,32,8], -"classGpgFrontend_1_1GpgContext.html#a76fba43d1439c7811e1a9424d0c16d40":[2,0,0,32,5], -"classGpgFrontend_1_1GpgContext.html#a838e2ec5571dc810af7c075c28d630db":[2,0,0,32,20], -"classGpgFrontend_1_1GpgContext.html#aaf3f394ff1790897c315c3249b1f06fe":[2,0,0,32,11], -"classGpgFrontend_1_1GpgContext.html#aaf3f5b4528b35bf0dc7a50163224a9a3":[2,0,0,32,16], -"classGpgFrontend_1_1GpgContext.html#ac7c9b2212a77e7cede94d68243541b1b":[2,0,0,32,9], -"classGpgFrontend_1_1GpgContext.html#acc4234054002065dfbc5d5261a4950d4":[2,0,0,32,14], -"classGpgFrontend_1_1GpgContext.html#ad89cdcb4fd0d8ad759e59254e4b7281c":[2,0,0,32,18], -"classGpgFrontend_1_1GpgContext.html#ae89dee551354c1541337881898832725":[2,0,0,32,4], -"classGpgFrontend_1_1GpgContext.html#aeafe3f6d1d97d63aeefa428cce23bc59":[2,0,0,32,1], -"classGpgFrontend_1_1GpgContext.html#af46f09a4f5c77429c3e782b551812ec2":[2,0,0,32,6], -"classGpgFrontend_1_1GpgData.html":[2,0,0,39], -"classGpgFrontend_1_1GpgData.html#a20e2c42db476247b544012ebe677a8e2":[2,0,0,39,5], -"classGpgFrontend_1_1GpgData.html#a5e607c3bb69f998aaac761f400dd6440":[2,0,0,39,2], -"classGpgFrontend_1_1GpgData.html#ac3661a9365ad72b0883a2f62ef4647da":[2,0,0,39,1], -"classGpgFrontend_1_1GpgData.html#ae382a34ec551561315deca84c71c19c1":[2,0,0,39,4], -"classGpgFrontend_1_1GpgData.html#afca7a03bd71436c8b3c4f6e8c2acd700":[2,0,0,39,3], -"classGpgFrontend_1_1GpgDecryptResultAnalyse.html":[2,0,0,24], -"classGpgFrontend_1_1GpgDecryptResultAnalyse.html#a1aac1c1f77a12069479a47f54a934c44":[2,0,0,24,2], -"classGpgFrontend_1_1GpgDecryptResultAnalyse.html#a442438ae58cdd7220f0e4b0792e5a372":[2,0,0,24,0], -"classGpgFrontend_1_1GpgDecryptResultAnalyse.html#a4d3610af76ab14018ec1ca90953c69d4":[2,0,0,24,4], -"classGpgFrontend_1_1GpgDecryptResultAnalyse.html#a5963cadf8c63cb2c620ea7c09c7ebf2e":[2,0,0,24,3], -"classGpgFrontend_1_1GpgDecryptResultAnalyse.html#aa3491d7e9b6afdf74c4b27ddbf9723fa":[2,0,0,24,1], -"classGpgFrontend_1_1GpgEncryptResultAnalyse.html":[2,0,0,25], -"classGpgFrontend_1_1GpgEncryptResultAnalyse.html#a0801e32c8709da373f6715bc994a7747":[2,0,0,25,0], -"classGpgFrontend_1_1GpgEncryptResultAnalyse.html#a6b5301ccc9fad983c4fc53fe0a47d6b2":[2,0,0,25,3], -"classGpgFrontend_1_1GpgEncryptResultAnalyse.html#a8d2782f129f2b0023f79b84119de0e6b":[2,0,0,25,2], -"classGpgFrontend_1_1GpgEncryptResultAnalyse.html#afd2a380a0d6bf3f69ab84e4bdabbea27":[2,0,0,25,1], -"classGpgFrontend_1_1GpgFileOpera.html":[2,0,0,14], -"classGpgFrontend_1_1GpgFileOpera.html#a14cddfe822c9410cd9c301d08963b7e7":[2,0,0,14,7], -"classGpgFrontend_1_1GpgFileOpera.html#a234d939ae0b2c3f799dd01130fad9379":[2,0,0,14,3], -"classGpgFrontend_1_1GpgFileOpera.html#a350df1c07c054625c4755a78e6ca5ca8":[2,0,0,14,6], -"classGpgFrontend_1_1GpgFileOpera.html#a6353e1688b113e5746aced6aa7f3876e":[2,0,0,14,5], -"classGpgFrontend_1_1GpgFileOpera.html#a74eb3ba532a236d8ad284b41265b0ccd":[2,0,0,14,1], -"classGpgFrontend_1_1GpgFileOpera.html#a826efca057afb07157453b3b9e267b0f":[2,0,0,14,4], -"classGpgFrontend_1_1GpgFileOpera.html#a90949b4e9e6116784260cd0e416551db":[2,0,0,14,2], -"classGpgFrontend_1_1GpgFileOpera.html#aa81da3d72c4fbc57e7138bfec7731152":[2,0,0,14,0], -"classGpgFrontend_1_1GpgImportInformation.html":[2,0,0,17], -"classGpgFrontend_1_1GpgImportInformation.html#a0e946c24f6045b2454ac3296df2e299e":[2,0,0,17,4], -"classGpgFrontend_1_1GpgImportInformation.html#a19e37d28f4462caf2b3522d50ceaf897":[2,0,0,17,0], -"classGpgFrontend_1_1GpgImportInformation.html#a226f8d47609d1fd562d84c1f02fed02a":[2,0,0,17,5], -"classGpgFrontend_1_1GpgImportInformation.html#a2ca60bb922c73eec90b74a9827becfe9":[2,0,0,17,13], -"classGpgFrontend_1_1GpgImportInformation.html#a3c7ef95ff89df66e376bacdf09abb61b":[2,0,0,17,15], -"classGpgFrontend_1_1GpgImportInformation.html#a43096e07e00d7650be8e286d45899ed0":[2,0,0,17,10], -"classGpgFrontend_1_1GpgImportInformation.html#a47346d8f24587e024147fd3129d1233e":[2,0,0,17,14], -"classGpgFrontend_1_1GpgImportInformation.html#a4e8d490de713686b043ee899969965a6":[2,0,0,17,7], -"classGpgFrontend_1_1GpgImportInformation.html#a55756b7a0ba05f1086369e680a532021":[2,0,0,17,2], -"classGpgFrontend_1_1GpgImportInformation.html#a7ca790cc6e9b12c5c3fd9fcea3ec0f37":[2,0,0,17,12], -"classGpgFrontend_1_1GpgImportInformation.html#a8b98cf24d9fdddc7678b755b2f472a83":[2,0,0,17,6], -"classGpgFrontend_1_1GpgImportInformation.html#a8db7f3b11fa2825dc9939f029742c933":[2,0,0,17,8], -"classGpgFrontend_1_1GpgImportInformation.html#aa1e033e2dee0fd7b4e0fed537e24aa70":[2,0,0,17,9], -"classGpgFrontend_1_1GpgImportInformation.html#ab282d4f701403cd68eb02d1aad30be56":[2,0,0,17,1], -"classGpgFrontend_1_1GpgImportInformation.html#acc4095bfe874287bb8823be30a9fcb45":[2,0,0,17,11], -"classGpgFrontend_1_1GpgImportInformation.html#add4b1898e674e14b8f649e60b585db89":[2,0,0,17,3], -"classGpgFrontend_1_1GpgImportedKey.html":[2,0,0,16], -"classGpgFrontend_1_1GpgImportedKey.html#a356e729d0002ba280910de3a5fcc7f1e":[2,0,0,16,1], -"classGpgFrontend_1_1GpgImportedKey.html#aaeba0000ee69f4eec95fb5b109f7058e":[2,0,0,16,0], -"classGpgFrontend_1_1GpgInfo.html":[2,0,0,38], -"classGpgFrontend_1_1GpgInfo.html#a072503811cb59dad27040e4e8914d18b":[2,0,0,38,13], -"classGpgFrontend_1_1GpgInfo.html#a0c1dbdb54f880a620419fdbd8336dc5d":[2,0,0,38,8], -"classGpgFrontend_1_1GpgInfo.html#a2416ae0ab9bedc61782d16075750a9c0":[2,0,0,38,0], -"classGpgFrontend_1_1GpgInfo.html#a2fcd53b59bc251c38eb8d79cec946777":[2,0,0,38,11], -"classGpgFrontend_1_1GpgInfo.html#a45516e791eb3655e7f66bcf99067d3bb":[2,0,0,38,14], -"classGpgFrontend_1_1GpgInfo.html#a48659b780f8d0153ca0eb985a072b5ba":[2,0,0,38,1], -"classGpgFrontend_1_1GpgInfo.html#a7347d47006bdf41f1da979ea3289de7e":[2,0,0,38,6], -"classGpgFrontend_1_1GpgInfo.html#a8c7e75d67b2438c61bbe4cebe68a7029":[2,0,0,38,7], -"classGpgFrontend_1_1GpgInfo.html#aa8224398d82e584e13a7859362139d56":[2,0,0,38,15], -"classGpgFrontend_1_1GpgInfo.html#aae8f26ff084fb2541826efb7b20c3dc0":[2,0,0,38,4], -"classGpgFrontend_1_1GpgInfo.html#aaea5a9651daac0323495ce12c152dc23":[2,0,0,38,12], -"classGpgFrontend_1_1GpgInfo.html#abbb3d503b10073bebf86d79bbaeab4c9":[2,0,0,38,9], -"classGpgFrontend_1_1GpgInfo.html#ac8ecbf438d05dc434c77825dd38dfdf2":[2,0,0,38,3], -"classGpgFrontend_1_1GpgInfo.html#af6ca2e99ffc487b8e4aa251d3cb23191":[2,0,0,38,10], -"classGpgFrontend_1_1GpgInfo.html#af771ce437619235615538e28c9096788":[2,0,0,38,5], -"classGpgFrontend_1_1GpgInfo.html#af81f332808633b18e3f0105caa761754":[2,0,0,38,2], -"classGpgFrontend_1_1GpgKey.html":[2,0,0,40], -"classGpgFrontend_1_1GpgKey.html#a165b3f645e2c6a4bbd024199e1f1cc9b":[2,0,0,40,12], -"classGpgFrontend_1_1GpgKey.html#a1c21bc3b1788753f56272ad73052fc5f":[2,0,0,40,19], -"classGpgFrontend_1_1GpgKey.html#a1d6e415e77625c1281dac1cc5f33f804":[2,0,0,40,5], -"classGpgFrontend_1_1GpgKey.html#a1e9223bb1ad8fbb4e769680de39b3697":[2,0,0,40,4], -"classGpgFrontend_1_1GpgKey.html#a2d28e72cfb741deeadfe02ff456fb490":[2,0,0,40,31], -"classGpgFrontend_1_1GpgKey.html#a3327ad34ff14feb75f3fbfc2bfb7fc44":[2,0,0,40,16], -"classGpgFrontend_1_1GpgKey.html#a3532e20298b642f5d312712fa8a791df":[2,0,0,40,14], -"classGpgFrontend_1_1GpgKey.html#a371a24c4e9d3b99a36f76ff8c7f2d0e6":[2,0,0,40,25], -"classGpgFrontend_1_1GpgKey.html#a3b08060c07a9cc207eb8c98771bd4bc1":[2,0,0,40,2], -"classGpgFrontend_1_1GpgKey.html#a3fd5bfe6e9fd5f016b854fc92f19146e":[2,0,0,40,9], -"classGpgFrontend_1_1GpgKey.html#a4f50b2f13b3a5dc7298ee9665e7a5367":[2,0,0,40,41], -"classGpgFrontend_1_1GpgKey.html#a55a6485f6c2cc5bec0fdf02cd7e0d8ea":[2,0,0,40,10], -"classGpgFrontend_1_1GpgKey.html#a59e76d40f01e765f0544e5c6a2851be6":[2,0,0,40,24], -"classGpgFrontend_1_1GpgKey.html#a5b276fdeb438fe14ec2850d799401be6":[2,0,0,40,17], -"classGpgFrontend_1_1GpgKey.html#a60b342ca6e1062d4489d8ba8f7a5a605":[2,0,0,40,32], -"classGpgFrontend_1_1GpgKey.html#a635bbf8f08268cfdac1bc120981df877":[2,0,0,40,34], -"classGpgFrontend_1_1GpgKey.html#a637f2a5e9b9b7cafcdaada00c2f7de87":[2,0,0,40,36], -"classGpgFrontend_1_1GpgKey.html#a66711ffd7f4af58594b7de984a13c327":[2,0,0,40,23], -"classGpgFrontend_1_1GpgKey.html#a6b243df2320999ebcdaf9645531b925a":[2,0,0,40,39], -"classGpgFrontend_1_1GpgKey.html#a746699842f6c49687af0487a8b3b163d":[2,0,0,40,20], -"classGpgFrontend_1_1GpgKey.html#a7b1e0398bedaecbfa2757243e5f4f0ab":[2,0,0,40,11], -"classGpgFrontend_1_1GpgKey.html#a7bceca68800c3ada9280c29eaeb5affc":[2,0,0,40,15], -"classGpgFrontend_1_1GpgKey.html#a7eaf1e722d8a59f6a86d8e732217d89c":[2,0,0,40,22], -"classGpgFrontend_1_1GpgKey.html#a827962251cf47c41dbea56665ae4207b":[2,0,0,40,37], -"classGpgFrontend_1_1GpgKey.html#a888c0263f04bdd52967e092b9c73eb6d":[2,0,0,40,35], -"classGpgFrontend_1_1GpgKey.html#a8930f958f3ca1f5566f63e8c2273837e":[2,0,0,40,13], -"classGpgFrontend_1_1GpgKey.html#aa599159ab1041c2f5a5fbf09666489b9":[2,0,0,40,3], -"classGpgFrontend_1_1GpgKey.html#aaa66d803456152fed9ba4cf5bce7b99d":[2,0,0,40,27], -"classGpgFrontend_1_1GpgKey.html#aadac1b776764ee9d0ca4f8bb9f9e0741":[2,0,0,40,33], -"classGpgFrontend_1_1GpgKey.html#ac8b13b45e487cdc423b78d3017897f99":[2,0,0,40,21], -"classGpgFrontend_1_1GpgKey.html#ac90afba6a5aec0bc2c0f1e01de417ec8":[2,0,0,40,7], -"classGpgFrontend_1_1GpgKey.html#ad1784bcc872f42b87e48bcfa40dab4cd":[2,0,0,40,42], -"classGpgFrontend_1_1GpgKey.html#ad2440a2902c81192d5549fe951ddb130":[2,0,0,40,18], -"classGpgFrontend_1_1GpgKey.html#adc22a349796af0ff5dd4499624b6d03d":[2,0,0,40,38], -"classGpgFrontend_1_1GpgKey.html#ae1957e909d8dcbe48c5931d1cdff7a81":[2,0,0,40,1], -"classGpgFrontend_1_1GpgKey.html#ae370e41a7ea7307fbf4d28e0f2a67e0c":[2,0,0,40,26], -"classGpgFrontend_1_1GpgKey.html#ae58bc1fdcefaaf646f6b8740cb69eef6":[2,0,0,40,40], -"classGpgFrontend_1_1GpgKey.html#aeb316f8728b10e966eed6f0291794eed":[2,0,0,40,6], -"classGpgFrontend_1_1GpgKey.html#aec4e7e1845073f23cf55dc660c69c44a":[2,0,0,40,43], -"classGpgFrontend_1_1GpgKey.html#aefa0a44adb1b7c49553a85b545fdffe1":[2,0,0,40,28], -"classGpgFrontend_1_1GpgKey.html#af72de794e24876b0e22a8d318ec0f8ad":[2,0,0,40,8], -"classGpgFrontend_1_1GpgKey.html#afdffba6dfb6009a0b320623df7a26be0":[2,0,0,40,29], -"classGpgFrontend_1_1GpgKey.html#afedc843415bd4b59687e975006e470ed":[2,0,0,40,30], -"classGpgFrontend_1_1GpgKeyGetter.html":[2,0,0,15], -"classGpgFrontend_1_1GpgKeyGetter.html#a028fe69516a51c526bbd2ec4235053ad":[2,0,0,15,6], -"classGpgFrontend_1_1GpgKeyGetter.html#a7a8bc7c0f12a11e108051e4c824fc430":[2,0,0,15,8], -"classGpgFrontend_1_1GpgKeyGetter.html#a7ec8d8431a771c602cbfa946d13d6c74":[2,0,0,15,7], -"classGpgFrontend_1_1GpgKeyGetter.html#a81941e1f562dc22977a71d00dd10956a":[2,0,0,15,10], -"classGpgFrontend_1_1GpgKeyGetter.html#a8eeee9f6dd74dc24c24794ce63c62285":[2,0,0,15,0], -"classGpgFrontend_1_1GpgKeyGetter.html#a94243d09c9418c8ebf0c7cdab4a2b7f1":[2,0,0,15,4], -"classGpgFrontend_1_1GpgKeyGetter.html#a9567d5e08ae73c5bafcd1dc378fed066":[2,0,0,15,11], -"classGpgFrontend_1_1GpgKeyGetter.html#aa4aef315d82123726be879097d3df147":[2,0,0,15,9], -"classGpgFrontend_1_1GpgKeyGetter.html#aa5979c21af58b874b33c203752dcc805":[2,0,0,15,5], -"classGpgFrontend_1_1GpgKeyGetter.html#ab5196ef4ed5323fc2af70abf801ea260":[2,0,0,15,3], -"classGpgFrontend_1_1GpgKeyGetter.html#ad9a902ea54566d4583304b072c4add51":[2,0,0,15,2], -"classGpgFrontend_1_1GpgKeyGetter.html#ae1d7846ad2fa17ab90c72b3186ba5335":[2,0,0,15,12], -"classGpgFrontend_1_1GpgKeyGetter.html#afe78ac470287d70e7df51aae327b9f54":[2,0,0,15,1], -"classGpgFrontend_1_1GpgKeyImportExporter.html":[2,0,0,18], -"classGpgFrontend_1_1GpgKeyImportExporter.html#a0eede7c782d17b32d6c1f30cd8496561":[2,0,0,18,0], -"classGpgFrontend_1_1GpgKeyImportExporter.html#a51cb18aa7302d7a48ccd1ee17f060391":[2,0,0,18,2], -"classGpgFrontend_1_1GpgKeyImportExporter.html#a6a5e8d642ac5a3e98799af6495ef590b":[2,0,0,18,6], -"classGpgFrontend_1_1GpgKeyImportExporter.html#a8157afa844c8bf964ce83f5de71efc5a":[2,0,0,18,4], -"classGpgFrontend_1_1GpgKeyImportExporter.html#aa0a73314ef94f397e2ef53d40abc9731":[2,0,0,18,3], -"classGpgFrontend_1_1GpgKeyImportExporter.html#aa9fbda8f6c3fa36a503075d7a124fa3f":[2,0,0,18,5], -"classGpgFrontend_1_1GpgKeyImportExporter.html#ab7a9be5283047695cd47562775adf79d":[2,0,0,18,8], -"classGpgFrontend_1_1GpgKeyImportExporter.html#abf7c0442549ae8602e1249cdf0da55df":[2,0,0,18,7], -"classGpgFrontend_1_1GpgKeyImportExporter.html#ade0e4de4078b6589f863dbfc76786f0e":[2,0,0,18,9], -"classGpgFrontend_1_1GpgKeyImportExporter.html#ae7d61a8c39ef7e7f1562895dbf108e68":[2,0,0,18,1], -"classGpgFrontend_1_1GpgKeyManager.html":[2,0,0,19], -"classGpgFrontend_1_1GpgKeyManager.html#a073f96ccfa483a8856197610b8bdee9e":[2,0,0,19,11], -"classGpgFrontend_1_1GpgKeyManager.html#a0d4006daeccd574ddcc9e6c621739c48":[2,0,0,19,9], -"classGpgFrontend_1_1GpgKeyManager.html#a12138780c53add7589f78f056019e5e0":[2,0,0,19,10], -"classGpgFrontend_1_1GpgKeyManager.html#a1625abfbff168c476e76fa9425a6c37d":[2,0,0,19,8], -"classGpgFrontend_1_1GpgKeyManager.html#a210b717fd8ee63b064d77f32b0df4c5d":[2,0,0,19,5], -"classGpgFrontend_1_1GpgKeyManager.html#a4fea67ab4a5c4e768aa1b55f23f3c8b7":[2,0,0,19,4], -"classGpgFrontend_1_1GpgKeyManager.html#a60a8636d3463f0c1a17e6f384fed0985":[2,0,0,19,2], -"classGpgFrontend_1_1GpgKeyManager.html#aa2c0e804db1c4aaf3b861ee5ab54ebd8":[2,0,0,19,7], -"classGpgFrontend_1_1GpgKeyManager.html#abbd0d9893967a342b0f1062a856d0647":[2,0,0,19,1], -"classGpgFrontend_1_1GpgKeyManager.html#abcbe4e2e72ffa42fd5c2897a9418b4f7":[2,0,0,19,3], -"classGpgFrontend_1_1GpgKeyManager.html#af0709924bd70fee6a9ea4efbf85b689d":[2,0,0,19,6], -"classGpgFrontend_1_1GpgKeyOpera.html":[2,0,0,20], -"classGpgFrontend_1_1GpgKeyOpera.html#a01d6a920156a38a34c57d9c49c361079":[2,0,0,20,0], -"classGpgFrontend_1_1GpgKeyOpera.html#a12e6b05b23781861065d7e3243c9349e":[2,0,0,20,8], -"classGpgFrontend_1_1GpgKeyOpera.html#a151c47b997951e9162f8b036c3cb15e0":[2,0,0,20,1], -"classGpgFrontend_1_1GpgKeyOpera.html#a4cc3ac91613164d7dc61a016a2b4caea":[2,0,0,20,3], -"classGpgFrontend_1_1GpgKeyOpera.html#a76a7f59701add8a59d8835919dad2000":[2,0,0,20,7], -"classGpgFrontend_1_1GpgKeyOpera.html#a882d99e8407cc22fb8b6e61c531fbe85":[2,0,0,20,5], -"classGpgFrontend_1_1GpgKeyOpera.html#a8a06d0f7a600d4428359b653a68f717e":[2,0,0,20,2], -"classGpgFrontend_1_1GpgKeyOpera.html#a91a9a9f24f6b620ea7b906c529e3d9a4":[2,0,0,20,4], -"classGpgFrontend_1_1GpgKeyOpera.html#ab4086c8ccd6f1f926993e96b687dea69":[2,0,0,20,9], -"classGpgFrontend_1_1GpgKeyOpera.html#ab7e16d1f4cba23ea5b5b9f6009ce5ee2":[2,0,0,20,6], -"classGpgFrontend_1_1GpgKeySignature.html":[2,0,0,41], -"classGpgFrontend_1_1GpgKeySignature.html#a1725474a1c61c0a3d724dc2f999cb24a":[2,0,0,41,17], -"classGpgFrontend_1_1GpgKeySignature.html#a19fc1ca3733b576e12628e333e2c449e":[2,0,0,41,16], -"classGpgFrontend_1_1GpgKeySignature.html#a217a2a8b31e44d4c9b463470362a1522":[2,0,0,41,12], -"classGpgFrontend_1_1GpgKeySignature.html#a224130c0da22538adba625c197b32fff":[2,0,0,41,21], -"classGpgFrontend_1_1GpgKeySignature.html#a4277f6deb7c07aaba62fbe8e7867b1fe":[2,0,0,41,10], -"classGpgFrontend_1_1GpgKeySignature.html#a4a501aa3a549a6a6914e2aeed4ff302e":[2,0,0,41,5], -"classGpgFrontend_1_1GpgKeySignature.html#a4ae987707a6579cec3dfe540b3410bc6":[2,0,0,41,20], -"classGpgFrontend_1_1GpgKeySignature.html#a59ab21f52b88355ca36ff5ebd77093a6":[2,0,0,41,9], -"classGpgFrontend_1_1GpgKeySignature.html#a8a9c792c963ef610e511b7deb6829c0b":[2,0,0,41,1], -"classGpgFrontend_1_1GpgKeySignature.html#a8b025f50bc527b0bbe58bd016bb47772":[2,0,0,41,6], -"classGpgFrontend_1_1GpgKeySignature.html#a927602d294d02adde57193f5094ce689":[2,0,0,41,19], -"classGpgFrontend_1_1GpgKeySignature.html#a95254ea2c00829b9dc87adc4a317cde5":[2,0,0,41,14], -"classGpgFrontend_1_1GpgKeySignature.html#a9aa824b0a9e03dfbcc7849a7b526ef67":[2,0,0,41,18], -"classGpgFrontend_1_1GpgKeySignature.html#a9ba501d98265c9677d00e3dca3e8d903":[2,0,0,41,4], -"classGpgFrontend_1_1GpgKeySignature.html#a9c7253e7602e834ac3311cca0cbe84a7":[2,0,0,41,0], -"classGpgFrontend_1_1GpgKeySignature.html#ab4d7044f4e1ddcf0ae0d28be43f0fcb3":[2,0,0,41,2], -"classGpgFrontend_1_1GpgKeySignature.html#abb4571e79c921261c03f57980d502e72":[2,0,0,41,3], -"classGpgFrontend_1_1GpgKeySignature.html#abdff0ce4d5e8b7be0aa2e46e0003b22f":[2,0,0,41,8], -"classGpgFrontend_1_1GpgKeySignature.html#acd5e46397ebea3224761a6af15eea4fb":[2,0,0,41,11], -"classGpgFrontend_1_1GpgKeySignature.html#adc8ad65688a6dab0993cf655f5361df8":[2,0,0,41,7], -"classGpgFrontend_1_1GpgKeySignature.html#aec39e4f67f17358f26bbbeb4cf62b7f4":[2,0,0,41,15], -"classGpgFrontend_1_1GpgKeySignature.html#af2639fe6d2774ba286308f3a7b58ba73":[2,0,0,41,13], -"classGpgFrontend_1_1GpgResultAnalyse.html":[2,0,0,26], -"classGpgFrontend_1_1GpgResultAnalyse.html#a3664c37fe30b7006f50e18792957bf58":[2,0,0,26,2], -"classGpgFrontend_1_1GpgResultAnalyse.html#a7f13592b421c7b0d3853f15cece8d195":[2,0,0,26,5], -"classGpgFrontend_1_1GpgResultAnalyse.html#a80c80d597391d2d531345d3dd507b038":[2,0,0,26,1], -"classGpgFrontend_1_1GpgResultAnalyse.html#a8fc5d4f83e5c0aa0ac19f46c3ec1619e":[2,0,0,26,4], -"classGpgFrontend_1_1GpgResultAnalyse.html#aa3c9bdf1ea4c87476010ef32fd2fb426":[2,0,0,26,0], -"classGpgFrontend_1_1GpgResultAnalyse.html#aa9e35e573ea4c0ebdbb014d1afbaab9d":[2,0,0,26,3], -"classGpgFrontend_1_1GpgResultAnalyse.html#abb323cb23d9be5aa0d842d686bbad962":[2,0,0,26,8], -"classGpgFrontend_1_1GpgResultAnalyse.html#ad5160473724e6af2c21a4851c635cbc6":[2,0,0,26,7], -"classGpgFrontend_1_1GpgResultAnalyse.html#af82d2d107c9834daea98560f9bca2873":[2,0,0,26,6], -"classGpgFrontend_1_1GpgSignResultAnalyse.html":[2,0,0,27], -"classGpgFrontend_1_1GpgSignResultAnalyse.html#a3ddd2d52ad91fdf7f4c8740312570c8e":[2,0,0,27,0], -"classGpgFrontend_1_1GpgSignResultAnalyse.html#a6cd4794be82a4c34105d02a5e8de615b":[2,0,0,27,1], -"classGpgFrontend_1_1GpgSignResultAnalyse.html#ab625d0e70db612bc77bf6d403b3ac56a":[2,0,0,27,3] +"classGpgFrontend_1_1GlobalSettingStation.html#a6459653a71cc8285fa554943c7fb3ca7":[2,0,0,11,26], +"classGpgFrontend_1_1GlobalSettingStation.html#a657a17d85d06a3455a2d3ed0782f76a2":[2,0,0,11,8], +"classGpgFrontend_1_1GlobalSettingStation.html#a678f8ba120f9ad050d0adfec4476d7ac":[2,0,0,11,27], +"classGpgFrontend_1_1GlobalSettingStation.html#a73d553587447165c5c7b7a9704771963":[2,0,0,11,7], +"classGpgFrontend_1_1GlobalSettingStation.html#a7da9b08291ef2391892f5c9375b8db23":[2,0,0,11,13], +"classGpgFrontend_1_1GlobalSettingStation.html#a819b3f4ea553fc1e839ef0ae230f0ea2":[2,0,0,11,20], +"classGpgFrontend_1_1GlobalSettingStation.html#aa93b21af9ac6649d5749c83c809f5b00":[2,0,0,11,17], +"classGpgFrontend_1_1GlobalSettingStation.html#ab618fef68cfd4ff6e42d4a4aa8ea94bb":[2,0,0,11,30], +"classGpgFrontend_1_1GlobalSettingStation.html#abdc6dda369d4214e43ffa2930f7386b0":[2,0,0,11,0], +"classGpgFrontend_1_1GlobalSettingStation.html#ac061ac8e5308f67ea52b98888bbb2e8d":[2,0,0,11,21], +"classGpgFrontend_1_1GlobalSettingStation.html#ad0600d475f6758503b1347722e2a933a":[2,0,0,11,23], +"classGpgFrontend_1_1GlobalSettingStation.html#ae9d1da3d01c4a834120968636596c3c3":[2,0,0,11,9], +"classGpgFrontend_1_1GlobalSettingStation.html#af484ca46c5df831a9dd76f3a88d66332":[2,0,0,11,16], +"classGpgFrontend_1_1GlobalSettingStation.html#af700161900e623a0ea14261d51616451":[2,0,0,11,1], +"classGpgFrontend_1_1GlobalSettingStation.html#afa99ddc25c0d5fd59a4c5f0e61d13830":[2,0,0,11,31], +"classGpgFrontend_1_1GlobalSettingStation.html#afc1aa3dec55ae4e741f92fce1140a2d0":[2,0,0,11,15], +"classGpgFrontend_1_1GpgAdvancedOperator.html":[2,0,0,12], +"classGpgFrontend_1_1GpgAdvancedOperator.html#a07c32ba25cf6153fbc8ee585c4ba377c":[2,0,0,12,6], +"classGpgFrontend_1_1GpgAdvancedOperator.html#a209f6d1d664ab672437198dc10ed8226":[2,0,0,12,3], +"classGpgFrontend_1_1GpgAdvancedOperator.html#a387ad457bb729f340f680d0b743733ad":[2,0,0,12,8], +"classGpgFrontend_1_1GpgAdvancedOperator.html#a46085a11235894deccd312fc259d5078":[2,0,0,12,5], +"classGpgFrontend_1_1GpgAdvancedOperator.html#a5801bf4ea7391cbcc60efd2513d41041":[2,0,0,12,4], +"classGpgFrontend_1_1GpgAdvancedOperator.html#a6876b6ee63ff7147c274e4f9538d29ce":[2,0,0,12,2], +"classGpgFrontend_1_1GpgAdvancedOperator.html#a71eb87ed095754ee1e9fa79125240f3e":[2,0,0,12,1], +"classGpgFrontend_1_1GpgAdvancedOperator.html#a9233156767f1d45272b95decd18241e3":[2,0,0,12,0], +"classGpgFrontend_1_1GpgAdvancedOperator.html#a9313410359ed9cff9ee66fa9b4b095ee":[2,0,0,12,7], +"classGpgFrontend_1_1GpgBasicOperator.html":[2,0,0,13], +"classGpgFrontend_1_1GpgBasicOperator.html#a08906cf2bc2ddad8489438610f388f8a":[2,0,0,13,4], +"classGpgFrontend_1_1GpgBasicOperator.html#a11845a9a3ea2941e14faa9130f0ac9ef":[2,0,0,13,2], +"classGpgFrontend_1_1GpgBasicOperator.html#a139be86330f88e5f833aa24263a3b2ae":[2,0,0,13,0], +"classGpgFrontend_1_1GpgBasicOperator.html#a32e1eac6bb0f322588ae75ae36a9884a":[2,0,0,13,3], +"classGpgFrontend_1_1GpgBasicOperator.html#a78f37b8d5afd6c0248665a4415f880cf":[2,0,0,13,6], +"classGpgFrontend_1_1GpgBasicOperator.html#a8f4ef57e941a066ad9d070eee51e2073":[2,0,0,13,5], +"classGpgFrontend_1_1GpgBasicOperator.html#a988d7e65e85fc7a578f26300332a65d3":[2,0,0,13,8], +"classGpgFrontend_1_1GpgBasicOperator.html#a9ea9e81194917e08f46eb657281b7953":[2,0,0,13,1], +"classGpgFrontend_1_1GpgBasicOperator.html#ad6ea3596ba7d7543fb1b8233d09996df":[2,0,0,13,7], +"classGpgFrontend_1_1GpgBasicOperator.html#af0347cb28ff73b2250395ceaa9001509":[2,0,0,13,9], +"classGpgFrontend_1_1GpgBasicOperator.html#afad990a43ab06a060a93db9948ebb740":[2,0,0,13,10], +"classGpgFrontend_1_1GpgCommandExecutor.html":[2,0,0,14], +"classGpgFrontend_1_1GpgCommandExecutor.html#a9025336aea731e48e9411dc96f6cbc28":[2,0,0,14,2], +"classGpgFrontend_1_1GpgCommandExecutor.html#a94240f423464600938bfcafa2b186c38":[2,0,0,14,0], +"classGpgFrontend_1_1GpgCommandExecutor.html#aefc4f18ec852b98c539d97da1c712a02":[2,0,0,14,3], +"classGpgFrontend_1_1GpgCommandExecutor.html#affa984ec4c2982c527761289f73c1ab4":[2,0,0,14,1], +"classGpgFrontend_1_1GpgConstants.html":[2,0,0,31], +"classGpgFrontend_1_1GpgConstants.html#a237006d6db30c7e3f8de171210eb35f2":[2,0,0,31,1], +"classGpgFrontend_1_1GpgConstants.html#a2c92d804e331fea2a57cba3028aa51ae":[2,0,0,31,0], +"classGpgFrontend_1_1GpgConstants.html#a36861cbbc85a53f4a42fa07153aa0150":[2,0,0,31,7], +"classGpgFrontend_1_1GpgConstants.html#a53310750d959947f316c793504e6eac1":[2,0,0,31,6], +"classGpgFrontend_1_1GpgConstants.html#a58558c2335021c7e6217dbd156d07705":[2,0,0,31,2], +"classGpgFrontend_1_1GpgConstants.html#a7f8ee639c08d4b477e6ab6ec87500f9b":[2,0,0,31,5], +"classGpgFrontend_1_1GpgConstants.html#aa3fa92fdc37cef4bba55b5e340299e9d":[2,0,0,31,3], +"classGpgFrontend_1_1GpgConstants.html#aafcb370531c8e84dec1e4d81ffeade1a":[2,0,0,31,8], +"classGpgFrontend_1_1GpgConstants.html#accb94e62d07af77123b79462971b4d55":[2,0,0,31,4], +"classGpgFrontend_1_1GpgContext.html":[2,0,0,33], +"classGpgFrontend_1_1GpgContext.html#a01e46d0718b61a224a52028b9da90468":[2,0,0,33,19], +"classGpgFrontend_1_1GpgContext.html#a2429d3f9daa189b4d5d8624c9f4d528b":[2,0,0,33,3], +"classGpgFrontend_1_1GpgContext.html#a3399fc60086ff5010a089bff48bbc63c":[2,0,0,33,12], +"classGpgFrontend_1_1GpgContext.html#a36e807be6873698b5f8d4218bdfe8732":[2,0,0,33,13], +"classGpgFrontend_1_1GpgContext.html#a3844cd0966134939e5c4be9a725e5271":[2,0,0,33,15], +"classGpgFrontend_1_1GpgContext.html#a39882b323569987592231f722a2ef147":[2,0,0,33,2], +"classGpgFrontend_1_1GpgContext.html#a4765cccf9f994a9c7b3d962a24bed77e":[2,0,0,33,17], +"classGpgFrontend_1_1GpgContext.html#a4a8f6ff37e45979159ab375b2c7d48c3":[2,0,0,33,7], +"classGpgFrontend_1_1GpgContext.html#a4fb92a23d989f514536a26509b4d0993":[2,0,0,33,21], +"classGpgFrontend_1_1GpgContext.html#a5b419175bd9927f3d449637db8ba6524":[2,0,0,33,10], +"classGpgFrontend_1_1GpgContext.html#a73c505a2f3d39d1638dc4d9a3e13a913":[2,0,0,33,8], +"classGpgFrontend_1_1GpgContext.html#a76fba43d1439c7811e1a9424d0c16d40":[2,0,0,33,5], +"classGpgFrontend_1_1GpgContext.html#a838e2ec5571dc810af7c075c28d630db":[2,0,0,33,20], +"classGpgFrontend_1_1GpgContext.html#aaf3f394ff1790897c315c3249b1f06fe":[2,0,0,33,11], +"classGpgFrontend_1_1GpgContext.html#aaf3f5b4528b35bf0dc7a50163224a9a3":[2,0,0,33,16], +"classGpgFrontend_1_1GpgContext.html#ac7c9b2212a77e7cede94d68243541b1b":[2,0,0,33,9], +"classGpgFrontend_1_1GpgContext.html#acc4234054002065dfbc5d5261a4950d4":[2,0,0,33,14], +"classGpgFrontend_1_1GpgContext.html#ad89cdcb4fd0d8ad759e59254e4b7281c":[2,0,0,33,18], +"classGpgFrontend_1_1GpgContext.html#ae89dee551354c1541337881898832725":[2,0,0,33,4], +"classGpgFrontend_1_1GpgContext.html#aeafe3f6d1d97d63aeefa428cce23bc59":[2,0,0,33,1], +"classGpgFrontend_1_1GpgContext.html#af46f09a4f5c77429c3e782b551812ec2":[2,0,0,33,6], +"classGpgFrontend_1_1GpgData.html":[2,0,0,40], +"classGpgFrontend_1_1GpgData.html#a20e2c42db476247b544012ebe677a8e2":[2,0,0,40,5], +"classGpgFrontend_1_1GpgData.html#a5e607c3bb69f998aaac761f400dd6440":[2,0,0,40,2], +"classGpgFrontend_1_1GpgData.html#ac3661a9365ad72b0883a2f62ef4647da":[2,0,0,40,1], +"classGpgFrontend_1_1GpgData.html#ae382a34ec551561315deca84c71c19c1":[2,0,0,40,4], +"classGpgFrontend_1_1GpgData.html#afca7a03bd71436c8b3c4f6e8c2acd700":[2,0,0,40,3], +"classGpgFrontend_1_1GpgDecryptResultAnalyse.html":[2,0,0,25], +"classGpgFrontend_1_1GpgDecryptResultAnalyse.html#a1aac1c1f77a12069479a47f54a934c44":[2,0,0,25,2], +"classGpgFrontend_1_1GpgDecryptResultAnalyse.html#a442438ae58cdd7220f0e4b0792e5a372":[2,0,0,25,0], +"classGpgFrontend_1_1GpgDecryptResultAnalyse.html#a4d3610af76ab14018ec1ca90953c69d4":[2,0,0,25,4], +"classGpgFrontend_1_1GpgDecryptResultAnalyse.html#a5963cadf8c63cb2c620ea7c09c7ebf2e":[2,0,0,25,3], +"classGpgFrontend_1_1GpgDecryptResultAnalyse.html#aa3491d7e9b6afdf74c4b27ddbf9723fa":[2,0,0,25,1], +"classGpgFrontend_1_1GpgEncryptResultAnalyse.html":[2,0,0,26], +"classGpgFrontend_1_1GpgEncryptResultAnalyse.html#a0801e32c8709da373f6715bc994a7747":[2,0,0,26,0], +"classGpgFrontend_1_1GpgEncryptResultAnalyse.html#a6b5301ccc9fad983c4fc53fe0a47d6b2":[2,0,0,26,3], +"classGpgFrontend_1_1GpgEncryptResultAnalyse.html#a8d2782f129f2b0023f79b84119de0e6b":[2,0,0,26,2], +"classGpgFrontend_1_1GpgEncryptResultAnalyse.html#afd2a380a0d6bf3f69ab84e4bdabbea27":[2,0,0,26,1], +"classGpgFrontend_1_1GpgFileOpera.html":[2,0,0,15], +"classGpgFrontend_1_1GpgFileOpera.html#a14cddfe822c9410cd9c301d08963b7e7":[2,0,0,15,7], +"classGpgFrontend_1_1GpgFileOpera.html#a234d939ae0b2c3f799dd01130fad9379":[2,0,0,15,3], +"classGpgFrontend_1_1GpgFileOpera.html#a350df1c07c054625c4755a78e6ca5ca8":[2,0,0,15,6], +"classGpgFrontend_1_1GpgFileOpera.html#a6353e1688b113e5746aced6aa7f3876e":[2,0,0,15,5], +"classGpgFrontend_1_1GpgFileOpera.html#a74eb3ba532a236d8ad284b41265b0ccd":[2,0,0,15,1], +"classGpgFrontend_1_1GpgFileOpera.html#a826efca057afb07157453b3b9e267b0f":[2,0,0,15,4], +"classGpgFrontend_1_1GpgFileOpera.html#a90949b4e9e6116784260cd0e416551db":[2,0,0,15,2], +"classGpgFrontend_1_1GpgFileOpera.html#aa81da3d72c4fbc57e7138bfec7731152":[2,0,0,15,0], +"classGpgFrontend_1_1GpgImportInformation.html":[2,0,0,18], +"classGpgFrontend_1_1GpgImportInformation.html#a0e946c24f6045b2454ac3296df2e299e":[2,0,0,18,4], +"classGpgFrontend_1_1GpgImportInformation.html#a19e37d28f4462caf2b3522d50ceaf897":[2,0,0,18,0], +"classGpgFrontend_1_1GpgImportInformation.html#a226f8d47609d1fd562d84c1f02fed02a":[2,0,0,18,5], +"classGpgFrontend_1_1GpgImportInformation.html#a2ca60bb922c73eec90b74a9827becfe9":[2,0,0,18,13], +"classGpgFrontend_1_1GpgImportInformation.html#a3c7ef95ff89df66e376bacdf09abb61b":[2,0,0,18,15], +"classGpgFrontend_1_1GpgImportInformation.html#a43096e07e00d7650be8e286d45899ed0":[2,0,0,18,10], +"classGpgFrontend_1_1GpgImportInformation.html#a47346d8f24587e024147fd3129d1233e":[2,0,0,18,14], +"classGpgFrontend_1_1GpgImportInformation.html#a4e8d490de713686b043ee899969965a6":[2,0,0,18,7], +"classGpgFrontend_1_1GpgImportInformation.html#a55756b7a0ba05f1086369e680a532021":[2,0,0,18,2], +"classGpgFrontend_1_1GpgImportInformation.html#a7ca790cc6e9b12c5c3fd9fcea3ec0f37":[2,0,0,18,12], +"classGpgFrontend_1_1GpgImportInformation.html#a8b98cf24d9fdddc7678b755b2f472a83":[2,0,0,18,6], +"classGpgFrontend_1_1GpgImportInformation.html#a8db7f3b11fa2825dc9939f029742c933":[2,0,0,18,8], +"classGpgFrontend_1_1GpgImportInformation.html#aa1e033e2dee0fd7b4e0fed537e24aa70":[2,0,0,18,9], +"classGpgFrontend_1_1GpgImportInformation.html#ab282d4f701403cd68eb02d1aad30be56":[2,0,0,18,1], +"classGpgFrontend_1_1GpgImportInformation.html#acc4095bfe874287bb8823be30a9fcb45":[2,0,0,18,11], +"classGpgFrontend_1_1GpgImportInformation.html#add4b1898e674e14b8f649e60b585db89":[2,0,0,18,3], +"classGpgFrontend_1_1GpgImportedKey.html":[2,0,0,17], +"classGpgFrontend_1_1GpgImportedKey.html#a356e729d0002ba280910de3a5fcc7f1e":[2,0,0,17,1], +"classGpgFrontend_1_1GpgImportedKey.html#aaeba0000ee69f4eec95fb5b109f7058e":[2,0,0,17,0], +"classGpgFrontend_1_1GpgInfo.html":[2,0,0,39], +"classGpgFrontend_1_1GpgInfo.html#a072503811cb59dad27040e4e8914d18b":[2,0,0,39,13], +"classGpgFrontend_1_1GpgInfo.html#a0c1dbdb54f880a620419fdbd8336dc5d":[2,0,0,39,8], +"classGpgFrontend_1_1GpgInfo.html#a2416ae0ab9bedc61782d16075750a9c0":[2,0,0,39,0], +"classGpgFrontend_1_1GpgInfo.html#a2fcd53b59bc251c38eb8d79cec946777":[2,0,0,39,11], +"classGpgFrontend_1_1GpgInfo.html#a45516e791eb3655e7f66bcf99067d3bb":[2,0,0,39,14], +"classGpgFrontend_1_1GpgInfo.html#a48659b780f8d0153ca0eb985a072b5ba":[2,0,0,39,1], +"classGpgFrontend_1_1GpgInfo.html#a7347d47006bdf41f1da979ea3289de7e":[2,0,0,39,6], +"classGpgFrontend_1_1GpgInfo.html#a8c7e75d67b2438c61bbe4cebe68a7029":[2,0,0,39,7], +"classGpgFrontend_1_1GpgInfo.html#aa8224398d82e584e13a7859362139d56":[2,0,0,39,15], +"classGpgFrontend_1_1GpgInfo.html#aae8f26ff084fb2541826efb7b20c3dc0":[2,0,0,39,4], +"classGpgFrontend_1_1GpgInfo.html#aaea5a9651daac0323495ce12c152dc23":[2,0,0,39,12], +"classGpgFrontend_1_1GpgInfo.html#abbb3d503b10073bebf86d79bbaeab4c9":[2,0,0,39,9], +"classGpgFrontend_1_1GpgInfo.html#ac8ecbf438d05dc434c77825dd38dfdf2":[2,0,0,39,3], +"classGpgFrontend_1_1GpgInfo.html#af6ca2e99ffc487b8e4aa251d3cb23191":[2,0,0,39,10], +"classGpgFrontend_1_1GpgInfo.html#af771ce437619235615538e28c9096788":[2,0,0,39,5], +"classGpgFrontend_1_1GpgInfo.html#af81f332808633b18e3f0105caa761754":[2,0,0,39,2], +"classGpgFrontend_1_1GpgKey.html":[2,0,0,41], +"classGpgFrontend_1_1GpgKey.html#a165b3f645e2c6a4bbd024199e1f1cc9b":[2,0,0,41,12], +"classGpgFrontend_1_1GpgKey.html#a1c21bc3b1788753f56272ad73052fc5f":[2,0,0,41,20], +"classGpgFrontend_1_1GpgKey.html#a1d6e415e77625c1281dac1cc5f33f804":[2,0,0,41,5], +"classGpgFrontend_1_1GpgKey.html#a1e9223bb1ad8fbb4e769680de39b3697":[2,0,0,41,4], +"classGpgFrontend_1_1GpgKey.html#a2d28e72cfb741deeadfe02ff456fb490":[2,0,0,41,32], +"classGpgFrontend_1_1GpgKey.html#a3327ad34ff14feb75f3fbfc2bfb7fc44":[2,0,0,41,16], +"classGpgFrontend_1_1GpgKey.html#a3532e20298b642f5d312712fa8a791df":[2,0,0,41,14], +"classGpgFrontend_1_1GpgKey.html#a371a24c4e9d3b99a36f76ff8c7f2d0e6":[2,0,0,41,26], +"classGpgFrontend_1_1GpgKey.html#a3b08060c07a9cc207eb8c98771bd4bc1":[2,0,0,41,2], +"classGpgFrontend_1_1GpgKey.html#a3fd5bfe6e9fd5f016b854fc92f19146e":[2,0,0,41,9], +"classGpgFrontend_1_1GpgKey.html#a4ced7bda206a0d72a2548783198ae4fe":[2,0,0,41,17], +"classGpgFrontend_1_1GpgKey.html#a4f50b2f13b3a5dc7298ee9665e7a5367":[2,0,0,41,42], +"classGpgFrontend_1_1GpgKey.html#a55a6485f6c2cc5bec0fdf02cd7e0d8ea":[2,0,0,41,10], +"classGpgFrontend_1_1GpgKey.html#a59e76d40f01e765f0544e5c6a2851be6":[2,0,0,41,25], +"classGpgFrontend_1_1GpgKey.html#a5b276fdeb438fe14ec2850d799401be6":[2,0,0,41,18], +"classGpgFrontend_1_1GpgKey.html#a60b342ca6e1062d4489d8ba8f7a5a605":[2,0,0,41,33], +"classGpgFrontend_1_1GpgKey.html#a635bbf8f08268cfdac1bc120981df877":[2,0,0,41,35], +"classGpgFrontend_1_1GpgKey.html#a637f2a5e9b9b7cafcdaada00c2f7de87":[2,0,0,41,37], +"classGpgFrontend_1_1GpgKey.html#a66711ffd7f4af58594b7de984a13c327":[2,0,0,41,24], +"classGpgFrontend_1_1GpgKey.html#a6b243df2320999ebcdaf9645531b925a":[2,0,0,41,40], +"classGpgFrontend_1_1GpgKey.html#a746699842f6c49687af0487a8b3b163d":[2,0,0,41,21], +"classGpgFrontend_1_1GpgKey.html#a7b1e0398bedaecbfa2757243e5f4f0ab":[2,0,0,41,11], +"classGpgFrontend_1_1GpgKey.html#a7bceca68800c3ada9280c29eaeb5affc":[2,0,0,41,15], +"classGpgFrontend_1_1GpgKey.html#a7eaf1e722d8a59f6a86d8e732217d89c":[2,0,0,41,23], +"classGpgFrontend_1_1GpgKey.html#a827962251cf47c41dbea56665ae4207b":[2,0,0,41,38], +"classGpgFrontend_1_1GpgKey.html#a888c0263f04bdd52967e092b9c73eb6d":[2,0,0,41,36], +"classGpgFrontend_1_1GpgKey.html#a8930f958f3ca1f5566f63e8c2273837e":[2,0,0,41,13], +"classGpgFrontend_1_1GpgKey.html#aa599159ab1041c2f5a5fbf09666489b9":[2,0,0,41,3], +"classGpgFrontend_1_1GpgKey.html#aaa66d803456152fed9ba4cf5bce7b99d":[2,0,0,41,28], +"classGpgFrontend_1_1GpgKey.html#aadac1b776764ee9d0ca4f8bb9f9e0741":[2,0,0,41,34], +"classGpgFrontend_1_1GpgKey.html#ac8b13b45e487cdc423b78d3017897f99":[2,0,0,41,22], +"classGpgFrontend_1_1GpgKey.html#ac90afba6a5aec0bc2c0f1e01de417ec8":[2,0,0,41,7], +"classGpgFrontend_1_1GpgKey.html#ad1784bcc872f42b87e48bcfa40dab4cd":[2,0,0,41,43], +"classGpgFrontend_1_1GpgKey.html#ad2440a2902c81192d5549fe951ddb130":[2,0,0,41,19], +"classGpgFrontend_1_1GpgKey.html#adc22a349796af0ff5dd4499624b6d03d":[2,0,0,41,39], +"classGpgFrontend_1_1GpgKey.html#ae1957e909d8dcbe48c5931d1cdff7a81":[2,0,0,41,1], +"classGpgFrontend_1_1GpgKey.html#ae370e41a7ea7307fbf4d28e0f2a67e0c":[2,0,0,41,27], +"classGpgFrontend_1_1GpgKey.html#ae58bc1fdcefaaf646f6b8740cb69eef6":[2,0,0,41,41], +"classGpgFrontend_1_1GpgKey.html#aeb316f8728b10e966eed6f0291794eed":[2,0,0,41,6], +"classGpgFrontend_1_1GpgKey.html#aec4e7e1845073f23cf55dc660c69c44a":[2,0,0,41,44], +"classGpgFrontend_1_1GpgKey.html#aefa0a44adb1b7c49553a85b545fdffe1":[2,0,0,41,29], +"classGpgFrontend_1_1GpgKey.html#af72de794e24876b0e22a8d318ec0f8ad":[2,0,0,41,8], +"classGpgFrontend_1_1GpgKey.html#afdffba6dfb6009a0b320623df7a26be0":[2,0,0,41,30], +"classGpgFrontend_1_1GpgKey.html#afedc843415bd4b59687e975006e470ed":[2,0,0,41,31], +"classGpgFrontend_1_1GpgKeyGetter.html":[2,0,0,16], +"classGpgFrontend_1_1GpgKeyGetter.html#a028fe69516a51c526bbd2ec4235053ad":[2,0,0,16,6], +"classGpgFrontend_1_1GpgKeyGetter.html#a7a8bc7c0f12a11e108051e4c824fc430":[2,0,0,16,8], +"classGpgFrontend_1_1GpgKeyGetter.html#a7ec8d8431a771c602cbfa946d13d6c74":[2,0,0,16,7], +"classGpgFrontend_1_1GpgKeyGetter.html#a81941e1f562dc22977a71d00dd10956a":[2,0,0,16,10], +"classGpgFrontend_1_1GpgKeyGetter.html#a8eeee9f6dd74dc24c24794ce63c62285":[2,0,0,16,0], +"classGpgFrontend_1_1GpgKeyGetter.html#a94243d09c9418c8ebf0c7cdab4a2b7f1":[2,0,0,16,4], +"classGpgFrontend_1_1GpgKeyGetter.html#a9567d5e08ae73c5bafcd1dc378fed066":[2,0,0,16,11], +"classGpgFrontend_1_1GpgKeyGetter.html#aa4aef315d82123726be879097d3df147":[2,0,0,16,9], +"classGpgFrontend_1_1GpgKeyGetter.html#aa5979c21af58b874b33c203752dcc805":[2,0,0,16,5], +"classGpgFrontend_1_1GpgKeyGetter.html#ab5196ef4ed5323fc2af70abf801ea260":[2,0,0,16,3], +"classGpgFrontend_1_1GpgKeyGetter.html#ad9a902ea54566d4583304b072c4add51":[2,0,0,16,2], +"classGpgFrontend_1_1GpgKeyGetter.html#ae1d7846ad2fa17ab90c72b3186ba5335":[2,0,0,16,12], +"classGpgFrontend_1_1GpgKeyGetter.html#afe78ac470287d70e7df51aae327b9f54":[2,0,0,16,1], +"classGpgFrontend_1_1GpgKeyImportExporter.html":[2,0,0,19], +"classGpgFrontend_1_1GpgKeyImportExporter.html#a0eede7c782d17b32d6c1f30cd8496561":[2,0,0,19,0], +"classGpgFrontend_1_1GpgKeyImportExporter.html#a51cb18aa7302d7a48ccd1ee17f060391":[2,0,0,19,2], +"classGpgFrontend_1_1GpgKeyImportExporter.html#a6a5e8d642ac5a3e98799af6495ef590b":[2,0,0,19,6], +"classGpgFrontend_1_1GpgKeyImportExporter.html#a8157afa844c8bf964ce83f5de71efc5a":[2,0,0,19,4], +"classGpgFrontend_1_1GpgKeyImportExporter.html#aa0a73314ef94f397e2ef53d40abc9731":[2,0,0,19,3], +"classGpgFrontend_1_1GpgKeyImportExporter.html#aa9fbda8f6c3fa36a503075d7a124fa3f":[2,0,0,19,5], +"classGpgFrontend_1_1GpgKeyImportExporter.html#ab7a9be5283047695cd47562775adf79d":[2,0,0,19,8], +"classGpgFrontend_1_1GpgKeyImportExporter.html#abf7c0442549ae8602e1249cdf0da55df":[2,0,0,19,7], +"classGpgFrontend_1_1GpgKeyImportExporter.html#ade0e4de4078b6589f863dbfc76786f0e":[2,0,0,19,9], +"classGpgFrontend_1_1GpgKeyImportExporter.html#ae7d61a8c39ef7e7f1562895dbf108e68":[2,0,0,19,1], +"classGpgFrontend_1_1GpgKeyManager.html":[2,0,0,20], +"classGpgFrontend_1_1GpgKeyManager.html#a073f96ccfa483a8856197610b8bdee9e":[2,0,0,20,11], +"classGpgFrontend_1_1GpgKeyManager.html#a0d4006daeccd574ddcc9e6c621739c48":[2,0,0,20,9], +"classGpgFrontend_1_1GpgKeyManager.html#a12138780c53add7589f78f056019e5e0":[2,0,0,20,10], +"classGpgFrontend_1_1GpgKeyManager.html#a1625abfbff168c476e76fa9425a6c37d":[2,0,0,20,8], +"classGpgFrontend_1_1GpgKeyManager.html#a210b717fd8ee63b064d77f32b0df4c5d":[2,0,0,20,5], +"classGpgFrontend_1_1GpgKeyManager.html#a4fea67ab4a5c4e768aa1b55f23f3c8b7":[2,0,0,20,4], +"classGpgFrontend_1_1GpgKeyManager.html#a60a8636d3463f0c1a17e6f384fed0985":[2,0,0,20,2], +"classGpgFrontend_1_1GpgKeyManager.html#aa2c0e804db1c4aaf3b861ee5ab54ebd8":[2,0,0,20,7], +"classGpgFrontend_1_1GpgKeyManager.html#abbd0d9893967a342b0f1062a856d0647":[2,0,0,20,1], +"classGpgFrontend_1_1GpgKeyManager.html#abcbe4e2e72ffa42fd5c2897a9418b4f7":[2,0,0,20,3], +"classGpgFrontend_1_1GpgKeyManager.html#af0709924bd70fee6a9ea4efbf85b689d":[2,0,0,20,6], +"classGpgFrontend_1_1GpgKeyOpera.html":[2,0,0,21], +"classGpgFrontend_1_1GpgKeyOpera.html#a01d6a920156a38a34c57d9c49c361079":[2,0,0,21,0], +"classGpgFrontend_1_1GpgKeyOpera.html#a12e6b05b23781861065d7e3243c9349e":[2,0,0,21,8], +"classGpgFrontend_1_1GpgKeyOpera.html#a151c47b997951e9162f8b036c3cb15e0":[2,0,0,21,1], +"classGpgFrontend_1_1GpgKeyOpera.html#a4cc3ac91613164d7dc61a016a2b4caea":[2,0,0,21,3], +"classGpgFrontend_1_1GpgKeyOpera.html#a76a7f59701add8a59d8835919dad2000":[2,0,0,21,7], +"classGpgFrontend_1_1GpgKeyOpera.html#a882d99e8407cc22fb8b6e61c531fbe85":[2,0,0,21,5], +"classGpgFrontend_1_1GpgKeyOpera.html#a8a06d0f7a600d4428359b653a68f717e":[2,0,0,21,2], +"classGpgFrontend_1_1GpgKeyOpera.html#a91a9a9f24f6b620ea7b906c529e3d9a4":[2,0,0,21,4], +"classGpgFrontend_1_1GpgKeyOpera.html#ab4086c8ccd6f1f926993e96b687dea69":[2,0,0,21,9], +"classGpgFrontend_1_1GpgKeyOpera.html#ab7e16d1f4cba23ea5b5b9f6009ce5ee2":[2,0,0,21,6], +"classGpgFrontend_1_1GpgKeySignature.html":[2,0,0,42], +"classGpgFrontend_1_1GpgKeySignature.html#a1725474a1c61c0a3d724dc2f999cb24a":[2,0,0,42,17], +"classGpgFrontend_1_1GpgKeySignature.html#a19fc1ca3733b576e12628e333e2c449e":[2,0,0,42,16], +"classGpgFrontend_1_1GpgKeySignature.html#a217a2a8b31e44d4c9b463470362a1522":[2,0,0,42,12], +"classGpgFrontend_1_1GpgKeySignature.html#a224130c0da22538adba625c197b32fff":[2,0,0,42,21], +"classGpgFrontend_1_1GpgKeySignature.html#a4277f6deb7c07aaba62fbe8e7867b1fe":[2,0,0,42,10], +"classGpgFrontend_1_1GpgKeySignature.html#a4a501aa3a549a6a6914e2aeed4ff302e":[2,0,0,42,5], +"classGpgFrontend_1_1GpgKeySignature.html#a4ae987707a6579cec3dfe540b3410bc6":[2,0,0,42,20], +"classGpgFrontend_1_1GpgKeySignature.html#a59ab21f52b88355ca36ff5ebd77093a6":[2,0,0,42,9], +"classGpgFrontend_1_1GpgKeySignature.html#a8a9c792c963ef610e511b7deb6829c0b":[2,0,0,42,1], +"classGpgFrontend_1_1GpgKeySignature.html#a8b025f50bc527b0bbe58bd016bb47772":[2,0,0,42,6], +"classGpgFrontend_1_1GpgKeySignature.html#a927602d294d02adde57193f5094ce689":[2,0,0,42,19], +"classGpgFrontend_1_1GpgKeySignature.html#a95254ea2c00829b9dc87adc4a317cde5":[2,0,0,42,14], +"classGpgFrontend_1_1GpgKeySignature.html#a9aa824b0a9e03dfbcc7849a7b526ef67":[2,0,0,42,18], +"classGpgFrontend_1_1GpgKeySignature.html#a9ba501d98265c9677d00e3dca3e8d903":[2,0,0,42,4], +"classGpgFrontend_1_1GpgKeySignature.html#a9c7253e7602e834ac3311cca0cbe84a7":[2,0,0,42,0], +"classGpgFrontend_1_1GpgKeySignature.html#ab4d7044f4e1ddcf0ae0d28be43f0fcb3":[2,0,0,42,2], +"classGpgFrontend_1_1GpgKeySignature.html#abb4571e79c921261c03f57980d502e72":[2,0,0,42,3], +"classGpgFrontend_1_1GpgKeySignature.html#abdff0ce4d5e8b7be0aa2e46e0003b22f":[2,0,0,42,8] }; diff --git a/docs/html/navtreeindex2.js b/docs/html/navtreeindex2.js index 2098f34d..36103b66 100644 --- a/docs/html/navtreeindex2.js +++ b/docs/html/navtreeindex2.js @@ -1,137 +1,167 @@ var NAVTREEINDEX2 = { -"classGpgFrontend_1_1GpgSignResultAnalyse.html#abf0d7b3b601ac7498b661495c38d5bf1":[2,0,0,27,2], -"classGpgFrontend_1_1GpgSignature.html":[2,0,0,42], -"classGpgFrontend_1_1GpgSignature.html#a0796249b259af85c30873f5c41a01101":[2,0,0,42,7], -"classGpgFrontend_1_1GpgSignature.html#a09cb6b465e85dffcf7867e70a276e9ad":[2,0,0,42,13], -"classGpgFrontend_1_1GpgSignature.html#a0b2f5d9e08d407050a392ba0f7881986":[2,0,0,42,14], -"classGpgFrontend_1_1GpgSignature.html#a1b705f45de8f6d0ae97f1ffda28185b7":[2,0,0,42,5], -"classGpgFrontend_1_1GpgSignature.html#a1c4fbd2d10a769c1ed0b644f06e4f871":[2,0,0,42,16], -"classGpgFrontend_1_1GpgSignature.html#a222e57e5992e5e91ca36d8dcc77fd402":[2,0,0,42,6], -"classGpgFrontend_1_1GpgSignature.html#a3b143f6e13b71663d81fc0f326aad17f":[2,0,0,42,12], -"classGpgFrontend_1_1GpgSignature.html#a44f137a457ac109d145a1cdd8e544e3a":[2,0,0,42,2], -"classGpgFrontend_1_1GpgSignature.html#a627b5206311998dd3f45393344b195be":[2,0,0,42,8], -"classGpgFrontend_1_1GpgSignature.html#a859b4a3788c8490937f954d92686f490":[2,0,0,42,11], -"classGpgFrontend_1_1GpgSignature.html#aa6f0821b573bfcc81d4c0fbc23fdec29":[2,0,0,42,0], -"classGpgFrontend_1_1GpgSignature.html#ab7a4489b35d918503076b2659d14fafe":[2,0,0,42,1], -"classGpgFrontend_1_1GpgSignature.html#ab99e4004f1ad400fd25232312a8ea66b":[2,0,0,42,10], -"classGpgFrontend_1_1GpgSignature.html#aca9c1f1a92fddaecc7d601f1f25a90de":[2,0,0,42,15], -"classGpgFrontend_1_1GpgSignature.html#ace10a3ac7f4dc3888b2ad62157213f1c":[2,0,0,42,9], -"classGpgFrontend_1_1GpgSignature.html#aea05d301ccf75f4a3aec2be58541eca8":[2,0,0,42,3], -"classGpgFrontend_1_1GpgSignature.html#aeae075c7b9c628f558d6fedbc8b9233a":[2,0,0,42,4], -"classGpgFrontend_1_1GpgSubKey.html":[2,0,0,43], -"classGpgFrontend_1_1GpgSubKey.html#a04d9df643cd08200cd742dc243be6cd6":[2,0,0,43,14], -"classGpgFrontend_1_1GpgSubKey.html#a09b00ac6a3b934b816f9522f78e77d59":[2,0,0,43,7], -"classGpgFrontend_1_1GpgSubKey.html#a18d7a2f0a3cee32a123b780f2b8b8708":[2,0,0,43,9], -"classGpgFrontend_1_1GpgSubKey.html#a1c88420ec4756f2e5bda1b76ff2f7c2d":[2,0,0,43,23], -"classGpgFrontend_1_1GpgSubKey.html#a278abd1ba3abd90b05ed4ad494bc1e78":[2,0,0,43,0], -"classGpgFrontend_1_1GpgSubKey.html#a3c9605e6ccb7fa53d9c9013453d561fe":[2,0,0,43,2], -"classGpgFrontend_1_1GpgSubKey.html#a443f8ac5f47e5ac0ea3ac91edefe8c3c":[2,0,0,43,24], -"classGpgFrontend_1_1GpgSubKey.html#a48d3dfbd3aae9523ffbdb916aad8ad53":[2,0,0,43,8], -"classGpgFrontend_1_1GpgSubKey.html#a56938360f873949aa9ba3dbdaab519d1":[2,0,0,43,15], -"classGpgFrontend_1_1GpgSubKey.html#a59eba8a9d23429140e9a68126c9c7c5e":[2,0,0,43,1], -"classGpgFrontend_1_1GpgSubKey.html#a5e897d439606a35103a0b260be28c6a4":[2,0,0,43,5], -"classGpgFrontend_1_1GpgSubKey.html#a629f904a81c7c09ac9769b3fcf3b48f5":[2,0,0,43,10], -"classGpgFrontend_1_1GpgSubKey.html#a6696d67af322fa2125d99b50cae50417":[2,0,0,43,6], -"classGpgFrontend_1_1GpgSubKey.html#a6e8df85f8c1dea7705b761e68bb949ab":[2,0,0,43,4], -"classGpgFrontend_1_1GpgSubKey.html#a75abb60a2130efc7fad8ab8fb3157042":[2,0,0,43,12], -"classGpgFrontend_1_1GpgSubKey.html#a8fcbeae2ef3ad73a5aedee19f6de3e60":[2,0,0,43,20], -"classGpgFrontend_1_1GpgSubKey.html#a9cc81c515b6a197757b48dd334cc3344":[2,0,0,43,19], -"classGpgFrontend_1_1GpgSubKey.html#ab67395a986184cb9b20f3dc178fc52be":[2,0,0,43,16], -"classGpgFrontend_1_1GpgSubKey.html#ab9208165c74b93fa8c5b7a06cd808f56":[2,0,0,43,17], -"classGpgFrontend_1_1GpgSubKey.html#ac4187d50f525188c6aaea29a86f83bba":[2,0,0,43,21], -"classGpgFrontend_1_1GpgSubKey.html#ac686352b5ede5aa4dd74b3488c53891e":[2,0,0,43,13], -"classGpgFrontend_1_1GpgSubKey.html#acc9bb0f214c44802ad45d2557afebbae":[2,0,0,43,22], -"classGpgFrontend_1_1GpgSubKey.html#accb86b50755698b3e1e7fdfe06f44e84":[2,0,0,43,18], -"classGpgFrontend_1_1GpgSubKey.html#ad12e160dbb394a849d6cf31e614a76f5":[2,0,0,43,3], -"classGpgFrontend_1_1GpgSubKey.html#ad818aa66e47d6686eb8ff253b3c21814":[2,0,0,43,11], -"classGpgFrontend_1_1GpgTOFUInfo.html":[2,0,0,44], -"classGpgFrontend_1_1GpgTOFUInfo.html#a03f286ac6f16ec6d33eb3dcfd4e3f6d5":[2,0,0,44,7], -"classGpgFrontend_1_1GpgTOFUInfo.html#a34d1073bb25a8958e70016f3cd6b167f":[2,0,0,44,8], -"classGpgFrontend_1_1GpgTOFUInfo.html#a471a08bc906d74699f394e34d2581b78":[2,0,0,44,5], -"classGpgFrontend_1_1GpgTOFUInfo.html#a4e4ba35a4cb6b33fa0b9890ec374d1b3":[2,0,0,44,15], -"classGpgFrontend_1_1GpgTOFUInfo.html#a4f46d32bc9bf1a1a3bbc32461538a422":[2,0,0,44,4], -"classGpgFrontend_1_1GpgTOFUInfo.html#a681046a3916d0d0cdcf0852bfa76fdb0":[2,0,0,44,9], -"classGpgFrontend_1_1GpgTOFUInfo.html#a746cbcf731af6b19ade42debbf1e2c8f":[2,0,0,44,11], -"classGpgFrontend_1_1GpgTOFUInfo.html#a7607934f767ac1920e6bf6c363c97402":[2,0,0,44,13], -"classGpgFrontend_1_1GpgTOFUInfo.html#a788a439b206882c6317162878e2fe0b8":[2,0,0,44,10], -"classGpgFrontend_1_1GpgTOFUInfo.html#a80acb09347a74cc35776d58b9874cf37":[2,0,0,44,1], -"classGpgFrontend_1_1GpgTOFUInfo.html#a86f44d98d2109f0fe210604326393eb3":[2,0,0,44,0], -"classGpgFrontend_1_1GpgTOFUInfo.html#a8770062c9e0c3875083d2c92ebe8ccb0":[2,0,0,44,12], -"classGpgFrontend_1_1GpgTOFUInfo.html#aa953ff4b877b4b831d34e4a5678b0cd3":[2,0,0,44,3], -"classGpgFrontend_1_1GpgTOFUInfo.html#aaabb02aef76162ed59647445b4c1f6de":[2,0,0,44,2], -"classGpgFrontend_1_1GpgTOFUInfo.html#abc53f7ca1b737ed1a913ad2f90a346e4":[2,0,0,44,6], -"classGpgFrontend_1_1GpgTOFUInfo.html#aec03f07d2ae5d81887610ca42420462d":[2,0,0,44,14], -"classGpgFrontend_1_1GpgUID.html":[2,0,0,45], -"classGpgFrontend_1_1GpgUID.html#a0d1a061c131e5269923dea52be3b3be4":[2,0,0,45,6], -"classGpgFrontend_1_1GpgUID.html#a2a36376484f7c1a4a19377d24e47a0b2":[2,0,0,45,11], -"classGpgFrontend_1_1GpgUID.html#a32450fbf22c64cf522e9a090423344a2":[2,0,0,45,9], -"classGpgFrontend_1_1GpgUID.html#a35fdcef4ecf2598461bdc596ffc7957c":[2,0,0,45,1], -"classGpgFrontend_1_1GpgUID.html#a37031574c0a749bfedf1fd5f98c3c84f":[2,0,0,45,15], -"classGpgFrontend_1_1GpgUID.html#a388ad367d353edd5eeb6e529977c924c":[2,0,0,45,7], -"classGpgFrontend_1_1GpgUID.html#a467897d43a18b0cadd2e2e44384f6cdd":[2,0,0,45,12], -"classGpgFrontend_1_1GpgUID.html#a572cf652da288537bdc3f88b4fb1ab18":[2,0,0,45,5], -"classGpgFrontend_1_1GpgUID.html#a58ed67984063f0b87e35bc1782a1cc0a":[2,0,0,45,4], -"classGpgFrontend_1_1GpgUID.html#a7210ece9b898981dae83f8d29b1ca453":[2,0,0,45,3], -"classGpgFrontend_1_1GpgUID.html#a77ffebc8cf2b8aa7ae43f7f475982306":[2,0,0,45,13], -"classGpgFrontend_1_1GpgUID.html#a79928a4179a234d42c2275ff10ddc828":[2,0,0,45,14], -"classGpgFrontend_1_1GpgUID.html#acca1fff5f12a216b05f2a6186b1e436b":[2,0,0,45,8], -"classGpgFrontend_1_1GpgUID.html#ae1fb528a9d06d6e9f1feaf1bc291fe64":[2,0,0,45,2], -"classGpgFrontend_1_1GpgUID.html#ae4ba264bbdf1d9b83908f248d55c5809":[2,0,0,45,0], -"classGpgFrontend_1_1GpgUID.html#af7b5310b319378c30c488277e95ef601":[2,0,0,45,10], -"classGpgFrontend_1_1GpgUIDOperator.html":[2,0,0,21], -"classGpgFrontend_1_1GpgUIDOperator.html#a47f762666afbc806365877ff70947841":[2,0,0,21,3], -"classGpgFrontend_1_1GpgUIDOperator.html#a672bbf74abac9140233c4e1c7864d15d":[2,0,0,21,1], -"classGpgFrontend_1_1GpgUIDOperator.html#a7c0de570de59d4ebc6c0bed681119bf7":[2,0,0,21,2], -"classGpgFrontend_1_1GpgUIDOperator.html#ab74a830c858ab9ff135375743393a7c7":[2,0,0,21,0], -"classGpgFrontend_1_1GpgUIDOperator.html#acbdabec97df508382b0c9b1fffbf1dd5":[2,0,0,21,4], -"classGpgFrontend_1_1GpgUIDOperator.html#aee04c70b7802699eae70d7b26255f7ec":[2,0,0,21,5], -"classGpgFrontend_1_1GpgVerifyResultAnalyse.html":[2,0,0,28], -"classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a02933c39d5aa5e448ffd36dfc4bead28":[2,0,0,28,1], -"classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a09e7a3cc3bf3d64e5d2428cd3040d2b2":[2,0,0,28,6], -"classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a2063acf8262e2c600b14ed1948486ac3":[2,0,0,28,2], -"classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a57bf4a26466e07f7f0ecc19de3782104":[2,0,0,28,3], -"classGpgFrontend_1_1GpgVerifyResultAnalyse.html#ab1d67da5dbe5bd2d665f7121e5f5354b":[2,0,0,28,0], -"classGpgFrontend_1_1GpgVerifyResultAnalyse.html#acdb7839a5158f078b38d60f0fefc5155":[2,0,0,28,4], -"classGpgFrontend_1_1GpgVerifyResultAnalyse.html#ad9e53477ca77f8685ca2102bf0fc5d4c":[2,0,0,28,5], -"classGpgFrontend_1_1KeyPackageOperator.html":[2,0,0,22], -"classGpgFrontend_1_1KeyPackageOperator.html#a6d9cf022a1e0cf54c061495f59c1b4b9":[2,0,0,22,3], -"classGpgFrontend_1_1KeyPackageOperator.html#a825d987dacd8a99d9d87729e1861a152":[2,0,0,22,0], -"classGpgFrontend_1_1KeyPackageOperator.html#a89538b180a42eb7d6ae53583fe10ee07":[2,0,0,22,4], -"classGpgFrontend_1_1KeyPackageOperator.html#ade02f022e405e98377343c4667c206e9":[2,0,0,22,1], -"classGpgFrontend_1_1KeyPackageOperator.html#ae90b362a32b6f6014cda1dc232bd3f0e":[2,0,0,22,2], -"classGpgFrontend_1_1PassphraseGenerator.html":[2,0,0,23], -"classGpgFrontend_1_1PassphraseGenerator.html#a12ee6f9b7fff4883074321c7e0de3dfa":[2,0,0,23,3], -"classGpgFrontend_1_1PassphraseGenerator.html#a19ac4999bbd5fb7e6c42a4aef9606892":[2,0,0,23,2], -"classGpgFrontend_1_1PassphraseGenerator.html#a8b4ee1083343fba6d947b85cd66079b8":[2,0,0,23,1], -"classGpgFrontend_1_1PassphraseGenerator.html#ac82ef545a54468ad02253a61cc62e3cf":[2,0,0,23,0], -"classGpgFrontend_1_1SingletonFunctionObject.html":[2,0,0,36], -"classGpgFrontend_1_1SingletonFunctionObject.html#a02e76b42ab51d77588b01c7508bed258":[2,0,0,36,3], -"classGpgFrontend_1_1SingletonFunctionObject.html#a03ce3095a745ecbf5e6a032e7da4bc97":[2,0,0,36,12], -"classGpgFrontend_1_1SingletonFunctionObject.html#a083807ff8cec58dc0aa732844edaf518":[2,0,0,36,6], -"classGpgFrontend_1_1SingletonFunctionObject.html#a194e49b07d46345bdad386505d743a61":[2,0,0,36,0], -"classGpgFrontend_1_1SingletonFunctionObject.html#a4aa7f1eb1d3281bb1fccfcbb1b416251":[2,0,0,36,4], -"classGpgFrontend_1_1SingletonFunctionObject.html#a50e2b3794d6553f4231eaec72d9d0a50":[2,0,0,36,9], -"classGpgFrontend_1_1SingletonFunctionObject.html#a5f2f0474871971f86ff91fb6a2408621":[2,0,0,36,7], -"classGpgFrontend_1_1SingletonFunctionObject.html#a70484d7cfe9f9dcbcd5f8bb749250f36":[2,0,0,36,10], -"classGpgFrontend_1_1SingletonFunctionObject.html#a7090636bed6f4bad5b99f28f6872c645":[2,0,0,36,2], -"classGpgFrontend_1_1SingletonFunctionObject.html#a8296be8c449f88175285186831b995bc":[2,0,0,36,5], -"classGpgFrontend_1_1SingletonFunctionObject.html#aa99440b9177f5d0c18840f08a40d64b7":[2,0,0,36,8], -"classGpgFrontend_1_1SingletonFunctionObject.html#aabb190a60f7a5d4ded43cae16ab8f59e":[2,0,0,36,11], -"classGpgFrontend_1_1SingletonFunctionObject.html#aabc5fe8e5a372ac276a265286457cb9a":[2,0,0,36,1], -"classGpgFrontend_1_1SingletonFunctionObject.html#ab49b1d50252e1934691a9483a6df2106":[2,0,0,36,13], -"classGpgFrontend_1_1SingletonStorage.html":[2,0,0,34], -"classGpgFrontend_1_1SingletonStorage.html#a15161d0afafec602018a89266dab5641":[2,0,0,34,5], -"classGpgFrontend_1_1SingletonStorage.html#a3f09424ebdc097fbdab77564a7d723ea":[2,0,0,34,1], -"classGpgFrontend_1_1SingletonStorage.html#a4c16c32e549494e394a0ddd859890a02":[2,0,0,34,0], -"classGpgFrontend_1_1SingletonStorage.html#a6181f2b5af39c6b86de89e1ba9eeff1c":[2,0,0,34,4], -"classGpgFrontend_1_1SingletonStorage.html#ab0097bb648b2303d68a975c7cbea5a52":[2,0,0,34,3], -"classGpgFrontend_1_1SingletonStorage.html#adb22cc80a1ab040b6e4bce962625edfd":[2,0,0,34,2], -"classGpgFrontend_1_1SingletonStorageCollection.html":[2,0,0,35], -"classGpgFrontend_1_1SingletonStorageCollection.html#a6f933390c54b7f55d5ffb4624074725f":[2,0,0,35,1], -"classGpgFrontend_1_1SingletonStorageCollection.html#ab648cb257beb2475eb5fca6453c331f9":[2,0,0,35,3], -"classGpgFrontend_1_1SingletonStorageCollection.html#ac56d19e0d4b99e7b8a86a017721f3db1":[2,0,0,35,0], -"classGpgFrontend_1_1SingletonStorageCollection.html#ae28930630a2dce804cff5589155aadfc":[2,0,0,35,2], +"classGpgFrontend_1_1GpgKeySignature.html#acd5e46397ebea3224761a6af15eea4fb":[2,0,0,42,11], +"classGpgFrontend_1_1GpgKeySignature.html#adc8ad65688a6dab0993cf655f5361df8":[2,0,0,42,7], +"classGpgFrontend_1_1GpgKeySignature.html#aec39e4f67f17358f26bbbeb4cf62b7f4":[2,0,0,42,15], +"classGpgFrontend_1_1GpgKeySignature.html#af2639fe6d2774ba286308f3a7b58ba73":[2,0,0,42,13], +"classGpgFrontend_1_1GpgResultAnalyse.html":[2,0,0,27], +"classGpgFrontend_1_1GpgResultAnalyse.html#a3664c37fe30b7006f50e18792957bf58":[2,0,0,27,2], +"classGpgFrontend_1_1GpgResultAnalyse.html#a7f13592b421c7b0d3853f15cece8d195":[2,0,0,27,5], +"classGpgFrontend_1_1GpgResultAnalyse.html#a80c80d597391d2d531345d3dd507b038":[2,0,0,27,1], +"classGpgFrontend_1_1GpgResultAnalyse.html#a8fc5d4f83e5c0aa0ac19f46c3ec1619e":[2,0,0,27,4], +"classGpgFrontend_1_1GpgResultAnalyse.html#aa3c9bdf1ea4c87476010ef32fd2fb426":[2,0,0,27,0], +"classGpgFrontend_1_1GpgResultAnalyse.html#aa9e35e573ea4c0ebdbb014d1afbaab9d":[2,0,0,27,3], +"classGpgFrontend_1_1GpgResultAnalyse.html#abb323cb23d9be5aa0d842d686bbad962":[2,0,0,27,8], +"classGpgFrontend_1_1GpgResultAnalyse.html#ad5160473724e6af2c21a4851c635cbc6":[2,0,0,27,7], +"classGpgFrontend_1_1GpgResultAnalyse.html#af82d2d107c9834daea98560f9bca2873":[2,0,0,27,6], +"classGpgFrontend_1_1GpgSignResultAnalyse.html":[2,0,0,28], +"classGpgFrontend_1_1GpgSignResultAnalyse.html#a3ddd2d52ad91fdf7f4c8740312570c8e":[2,0,0,28,0], +"classGpgFrontend_1_1GpgSignResultAnalyse.html#a6cd4794be82a4c34105d02a5e8de615b":[2,0,0,28,1], +"classGpgFrontend_1_1GpgSignResultAnalyse.html#ab625d0e70db612bc77bf6d403b3ac56a":[2,0,0,28,3], +"classGpgFrontend_1_1GpgSignResultAnalyse.html#abf0d7b3b601ac7498b661495c38d5bf1":[2,0,0,28,2], +"classGpgFrontend_1_1GpgSignature.html":[2,0,0,43], +"classGpgFrontend_1_1GpgSignature.html#a0796249b259af85c30873f5c41a01101":[2,0,0,43,7], +"classGpgFrontend_1_1GpgSignature.html#a09cb6b465e85dffcf7867e70a276e9ad":[2,0,0,43,13], +"classGpgFrontend_1_1GpgSignature.html#a0b2f5d9e08d407050a392ba0f7881986":[2,0,0,43,14], +"classGpgFrontend_1_1GpgSignature.html#a1b705f45de8f6d0ae97f1ffda28185b7":[2,0,0,43,5], +"classGpgFrontend_1_1GpgSignature.html#a1c4fbd2d10a769c1ed0b644f06e4f871":[2,0,0,43,16], +"classGpgFrontend_1_1GpgSignature.html#a222e57e5992e5e91ca36d8dcc77fd402":[2,0,0,43,6], +"classGpgFrontend_1_1GpgSignature.html#a3b143f6e13b71663d81fc0f326aad17f":[2,0,0,43,12], +"classGpgFrontend_1_1GpgSignature.html#a44f137a457ac109d145a1cdd8e544e3a":[2,0,0,43,2], +"classGpgFrontend_1_1GpgSignature.html#a627b5206311998dd3f45393344b195be":[2,0,0,43,8], +"classGpgFrontend_1_1GpgSignature.html#a859b4a3788c8490937f954d92686f490":[2,0,0,43,11], +"classGpgFrontend_1_1GpgSignature.html#aa6f0821b573bfcc81d4c0fbc23fdec29":[2,0,0,43,0], +"classGpgFrontend_1_1GpgSignature.html#ab7a4489b35d918503076b2659d14fafe":[2,0,0,43,1], +"classGpgFrontend_1_1GpgSignature.html#ab99e4004f1ad400fd25232312a8ea66b":[2,0,0,43,10], +"classGpgFrontend_1_1GpgSignature.html#aca9c1f1a92fddaecc7d601f1f25a90de":[2,0,0,43,15], +"classGpgFrontend_1_1GpgSignature.html#ace10a3ac7f4dc3888b2ad62157213f1c":[2,0,0,43,9], +"classGpgFrontend_1_1GpgSignature.html#aea05d301ccf75f4a3aec2be58541eca8":[2,0,0,43,3], +"classGpgFrontend_1_1GpgSignature.html#aeae075c7b9c628f558d6fedbc8b9233a":[2,0,0,43,4], +"classGpgFrontend_1_1GpgSubKey.html":[2,0,0,44], +"classGpgFrontend_1_1GpgSubKey.html#a04d9df643cd08200cd742dc243be6cd6":[2,0,0,44,14], +"classGpgFrontend_1_1GpgSubKey.html#a09b00ac6a3b934b816f9522f78e77d59":[2,0,0,44,7], +"classGpgFrontend_1_1GpgSubKey.html#a18d7a2f0a3cee32a123b780f2b8b8708":[2,0,0,44,9], +"classGpgFrontend_1_1GpgSubKey.html#a1c88420ec4756f2e5bda1b76ff2f7c2d":[2,0,0,44,23], +"classGpgFrontend_1_1GpgSubKey.html#a278abd1ba3abd90b05ed4ad494bc1e78":[2,0,0,44,0], +"classGpgFrontend_1_1GpgSubKey.html#a3c9605e6ccb7fa53d9c9013453d561fe":[2,0,0,44,2], +"classGpgFrontend_1_1GpgSubKey.html#a443f8ac5f47e5ac0ea3ac91edefe8c3c":[2,0,0,44,24], +"classGpgFrontend_1_1GpgSubKey.html#a48d3dfbd3aae9523ffbdb916aad8ad53":[2,0,0,44,8], +"classGpgFrontend_1_1GpgSubKey.html#a56938360f873949aa9ba3dbdaab519d1":[2,0,0,44,15], +"classGpgFrontend_1_1GpgSubKey.html#a59eba8a9d23429140e9a68126c9c7c5e":[2,0,0,44,1], +"classGpgFrontend_1_1GpgSubKey.html#a5e897d439606a35103a0b260be28c6a4":[2,0,0,44,5], +"classGpgFrontend_1_1GpgSubKey.html#a629f904a81c7c09ac9769b3fcf3b48f5":[2,0,0,44,10], +"classGpgFrontend_1_1GpgSubKey.html#a6696d67af322fa2125d99b50cae50417":[2,0,0,44,6], +"classGpgFrontend_1_1GpgSubKey.html#a6e8df85f8c1dea7705b761e68bb949ab":[2,0,0,44,4], +"classGpgFrontend_1_1GpgSubKey.html#a75abb60a2130efc7fad8ab8fb3157042":[2,0,0,44,12], +"classGpgFrontend_1_1GpgSubKey.html#a8fcbeae2ef3ad73a5aedee19f6de3e60":[2,0,0,44,20], +"classGpgFrontend_1_1GpgSubKey.html#a9cc81c515b6a197757b48dd334cc3344":[2,0,0,44,19], +"classGpgFrontend_1_1GpgSubKey.html#ab67395a986184cb9b20f3dc178fc52be":[2,0,0,44,16], +"classGpgFrontend_1_1GpgSubKey.html#ab9208165c74b93fa8c5b7a06cd808f56":[2,0,0,44,17], +"classGpgFrontend_1_1GpgSubKey.html#ac4187d50f525188c6aaea29a86f83bba":[2,0,0,44,21], +"classGpgFrontend_1_1GpgSubKey.html#ac686352b5ede5aa4dd74b3488c53891e":[2,0,0,44,13], +"classGpgFrontend_1_1GpgSubKey.html#acc9bb0f214c44802ad45d2557afebbae":[2,0,0,44,22], +"classGpgFrontend_1_1GpgSubKey.html#accb86b50755698b3e1e7fdfe06f44e84":[2,0,0,44,18], +"classGpgFrontend_1_1GpgSubKey.html#ad12e160dbb394a849d6cf31e614a76f5":[2,0,0,44,3], +"classGpgFrontend_1_1GpgSubKey.html#ad818aa66e47d6686eb8ff253b3c21814":[2,0,0,44,11], +"classGpgFrontend_1_1GpgTOFUInfo.html":[2,0,0,45], +"classGpgFrontend_1_1GpgTOFUInfo.html#a03f286ac6f16ec6d33eb3dcfd4e3f6d5":[2,0,0,45,7], +"classGpgFrontend_1_1GpgTOFUInfo.html#a34d1073bb25a8958e70016f3cd6b167f":[2,0,0,45,8], +"classGpgFrontend_1_1GpgTOFUInfo.html#a471a08bc906d74699f394e34d2581b78":[2,0,0,45,5], +"classGpgFrontend_1_1GpgTOFUInfo.html#a4e4ba35a4cb6b33fa0b9890ec374d1b3":[2,0,0,45,15], +"classGpgFrontend_1_1GpgTOFUInfo.html#a4f46d32bc9bf1a1a3bbc32461538a422":[2,0,0,45,4], +"classGpgFrontend_1_1GpgTOFUInfo.html#a681046a3916d0d0cdcf0852bfa76fdb0":[2,0,0,45,9], +"classGpgFrontend_1_1GpgTOFUInfo.html#a746cbcf731af6b19ade42debbf1e2c8f":[2,0,0,45,11], +"classGpgFrontend_1_1GpgTOFUInfo.html#a7607934f767ac1920e6bf6c363c97402":[2,0,0,45,13], +"classGpgFrontend_1_1GpgTOFUInfo.html#a788a439b206882c6317162878e2fe0b8":[2,0,0,45,10], +"classGpgFrontend_1_1GpgTOFUInfo.html#a80acb09347a74cc35776d58b9874cf37":[2,0,0,45,1], +"classGpgFrontend_1_1GpgTOFUInfo.html#a86f44d98d2109f0fe210604326393eb3":[2,0,0,45,0], +"classGpgFrontend_1_1GpgTOFUInfo.html#a8770062c9e0c3875083d2c92ebe8ccb0":[2,0,0,45,12], +"classGpgFrontend_1_1GpgTOFUInfo.html#aa953ff4b877b4b831d34e4a5678b0cd3":[2,0,0,45,3], +"classGpgFrontend_1_1GpgTOFUInfo.html#aaabb02aef76162ed59647445b4c1f6de":[2,0,0,45,2], +"classGpgFrontend_1_1GpgTOFUInfo.html#abc53f7ca1b737ed1a913ad2f90a346e4":[2,0,0,45,6], +"classGpgFrontend_1_1GpgTOFUInfo.html#aec03f07d2ae5d81887610ca42420462d":[2,0,0,45,14], +"classGpgFrontend_1_1GpgUID.html":[2,0,0,46], +"classGpgFrontend_1_1GpgUID.html#a0d1a061c131e5269923dea52be3b3be4":[2,0,0,46,6], +"classGpgFrontend_1_1GpgUID.html#a2a36376484f7c1a4a19377d24e47a0b2":[2,0,0,46,11], +"classGpgFrontend_1_1GpgUID.html#a32450fbf22c64cf522e9a090423344a2":[2,0,0,46,9], +"classGpgFrontend_1_1GpgUID.html#a35fdcef4ecf2598461bdc596ffc7957c":[2,0,0,46,1], +"classGpgFrontend_1_1GpgUID.html#a37031574c0a749bfedf1fd5f98c3c84f":[2,0,0,46,15], +"classGpgFrontend_1_1GpgUID.html#a388ad367d353edd5eeb6e529977c924c":[2,0,0,46,7], +"classGpgFrontend_1_1GpgUID.html#a467897d43a18b0cadd2e2e44384f6cdd":[2,0,0,46,12], +"classGpgFrontend_1_1GpgUID.html#a572cf652da288537bdc3f88b4fb1ab18":[2,0,0,46,5], +"classGpgFrontend_1_1GpgUID.html#a58ed67984063f0b87e35bc1782a1cc0a":[2,0,0,46,4], +"classGpgFrontend_1_1GpgUID.html#a7210ece9b898981dae83f8d29b1ca453":[2,0,0,46,3], +"classGpgFrontend_1_1GpgUID.html#a77ffebc8cf2b8aa7ae43f7f475982306":[2,0,0,46,13], +"classGpgFrontend_1_1GpgUID.html#a79928a4179a234d42c2275ff10ddc828":[2,0,0,46,14], +"classGpgFrontend_1_1GpgUID.html#acca1fff5f12a216b05f2a6186b1e436b":[2,0,0,46,8], +"classGpgFrontend_1_1GpgUID.html#ae1fb528a9d06d6e9f1feaf1bc291fe64":[2,0,0,46,2], +"classGpgFrontend_1_1GpgUID.html#ae4ba264bbdf1d9b83908f248d55c5809":[2,0,0,46,0], +"classGpgFrontend_1_1GpgUID.html#af7b5310b319378c30c488277e95ef601":[2,0,0,46,10], +"classGpgFrontend_1_1GpgUIDOperator.html":[2,0,0,22], +"classGpgFrontend_1_1GpgUIDOperator.html#a47f762666afbc806365877ff70947841":[2,0,0,22,3], +"classGpgFrontend_1_1GpgUIDOperator.html#a672bbf74abac9140233c4e1c7864d15d":[2,0,0,22,1], +"classGpgFrontend_1_1GpgUIDOperator.html#a7c0de570de59d4ebc6c0bed681119bf7":[2,0,0,22,2], +"classGpgFrontend_1_1GpgUIDOperator.html#ab74a830c858ab9ff135375743393a7c7":[2,0,0,22,0], +"classGpgFrontend_1_1GpgUIDOperator.html#acbdabec97df508382b0c9b1fffbf1dd5":[2,0,0,22,4], +"classGpgFrontend_1_1GpgUIDOperator.html#aee04c70b7802699eae70d7b26255f7ec":[2,0,0,22,5], +"classGpgFrontend_1_1GpgVerifyResultAnalyse.html":[2,0,0,29], +"classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a02933c39d5aa5e448ffd36dfc4bead28":[2,0,0,29,1], +"classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a09e7a3cc3bf3d64e5d2428cd3040d2b2":[2,0,0,29,6], +"classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a2063acf8262e2c600b14ed1948486ac3":[2,0,0,29,2], +"classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a57bf4a26466e07f7f0ecc19de3782104":[2,0,0,29,3], +"classGpgFrontend_1_1GpgVerifyResultAnalyse.html#ab1d67da5dbe5bd2d665f7121e5f5354b":[2,0,0,29,0], +"classGpgFrontend_1_1GpgVerifyResultAnalyse.html#acdb7839a5158f078b38d60f0fefc5155":[2,0,0,29,4], +"classGpgFrontend_1_1GpgVerifyResultAnalyse.html#ad9e53477ca77f8685ca2102bf0fc5d4c":[2,0,0,29,5], +"classGpgFrontend_1_1KeyPackageOperator.html":[2,0,0,23], +"classGpgFrontend_1_1KeyPackageOperator.html#a6d9cf022a1e0cf54c061495f59c1b4b9":[2,0,0,23,3], +"classGpgFrontend_1_1KeyPackageOperator.html#a825d987dacd8a99d9d87729e1861a152":[2,0,0,23,0], +"classGpgFrontend_1_1KeyPackageOperator.html#a89538b180a42eb7d6ae53583fe10ee07":[2,0,0,23,4], +"classGpgFrontend_1_1KeyPackageOperator.html#ade02f022e405e98377343c4667c206e9":[2,0,0,23,1], +"classGpgFrontend_1_1KeyPackageOperator.html#ae90b362a32b6f6014cda1dc232bd3f0e":[2,0,0,23,2], +"classGpgFrontend_1_1PassphraseGenerator.html":[2,0,0,24], +"classGpgFrontend_1_1PassphraseGenerator.html#a12ee6f9b7fff4883074321c7e0de3dfa":[2,0,0,24,3], +"classGpgFrontend_1_1PassphraseGenerator.html#a19ac4999bbd5fb7e6c42a4aef9606892":[2,0,0,24,2], +"classGpgFrontend_1_1PassphraseGenerator.html#a8b4ee1083343fba6d947b85cd66079b8":[2,0,0,24,1], +"classGpgFrontend_1_1PassphraseGenerator.html#ac82ef545a54468ad02253a61cc62e3cf":[2,0,0,24,0], +"classGpgFrontend_1_1SingletonFunctionObject.html":[2,0,0,37], +"classGpgFrontend_1_1SingletonFunctionObject.html#a02e76b42ab51d77588b01c7508bed258":[2,0,0,37,3], +"classGpgFrontend_1_1SingletonFunctionObject.html#a03ce3095a745ecbf5e6a032e7da4bc97":[2,0,0,37,12], +"classGpgFrontend_1_1SingletonFunctionObject.html#a083807ff8cec58dc0aa732844edaf518":[2,0,0,37,6], +"classGpgFrontend_1_1SingletonFunctionObject.html#a194e49b07d46345bdad386505d743a61":[2,0,0,37,0], +"classGpgFrontend_1_1SingletonFunctionObject.html#a4aa7f1eb1d3281bb1fccfcbb1b416251":[2,0,0,37,4], +"classGpgFrontend_1_1SingletonFunctionObject.html#a50e2b3794d6553f4231eaec72d9d0a50":[2,0,0,37,9], +"classGpgFrontend_1_1SingletonFunctionObject.html#a5f2f0474871971f86ff91fb6a2408621":[2,0,0,37,7], +"classGpgFrontend_1_1SingletonFunctionObject.html#a70484d7cfe9f9dcbcd5f8bb749250f36":[2,0,0,37,10], +"classGpgFrontend_1_1SingletonFunctionObject.html#a7090636bed6f4bad5b99f28f6872c645":[2,0,0,37,2], +"classGpgFrontend_1_1SingletonFunctionObject.html#a8296be8c449f88175285186831b995bc":[2,0,0,37,5], +"classGpgFrontend_1_1SingletonFunctionObject.html#aa99440b9177f5d0c18840f08a40d64b7":[2,0,0,37,8], +"classGpgFrontend_1_1SingletonFunctionObject.html#aabb190a60f7a5d4ded43cae16ab8f59e":[2,0,0,37,11], +"classGpgFrontend_1_1SingletonFunctionObject.html#aabc5fe8e5a372ac276a265286457cb9a":[2,0,0,37,1], +"classGpgFrontend_1_1SingletonFunctionObject.html#ab49b1d50252e1934691a9483a6df2106":[2,0,0,37,13], +"classGpgFrontend_1_1SingletonStorage.html":[2,0,0,35], +"classGpgFrontend_1_1SingletonStorage.html#a15161d0afafec602018a89266dab5641":[2,0,0,35,5], +"classGpgFrontend_1_1SingletonStorage.html#a3f09424ebdc097fbdab77564a7d723ea":[2,0,0,35,1], +"classGpgFrontend_1_1SingletonStorage.html#a4c16c32e549494e394a0ddd859890a02":[2,0,0,35,0], +"classGpgFrontend_1_1SingletonStorage.html#a6181f2b5af39c6b86de89e1ba9eeff1c":[2,0,0,35,4], +"classGpgFrontend_1_1SingletonStorage.html#ab0097bb648b2303d68a975c7cbea5a52":[2,0,0,35,3], +"classGpgFrontend_1_1SingletonStorage.html#adb22cc80a1ab040b6e4bce962625edfd":[2,0,0,35,2], +"classGpgFrontend_1_1SingletonStorageCollection.html":[2,0,0,36], +"classGpgFrontend_1_1SingletonStorageCollection.html#a6f933390c54b7f55d5ffb4624074725f":[2,0,0,36,1], +"classGpgFrontend_1_1SingletonStorageCollection.html#ab648cb257beb2475eb5fca6453c331f9":[2,0,0,36,3], +"classGpgFrontend_1_1SingletonStorageCollection.html#ac56d19e0d4b99e7b8a86a017721f3db1":[2,0,0,36,0], +"classGpgFrontend_1_1SingletonStorageCollection.html#ae28930630a2dce804cff5589155aadfc":[2,0,0,36,2], +"classGpgFrontend_1_1ThreadSafeMap.html":[2,0,0,5], +"classGpgFrontend_1_1ThreadSafeMap.html#a11ef5fe7417c123d4bb5d0445e36f8c7":[2,0,0,5,7], +"classGpgFrontend_1_1ThreadSafeMap.html#a2058ecb5e51a52f0d1721aa7de6943ee":[2,0,0,5,9], +"classGpgFrontend_1_1ThreadSafeMap.html#a76a53b29aa6246066a28838f1edecbbc":[2,0,0,5,5], +"classGpgFrontend_1_1ThreadSafeMap.html#a7edfa6ed1e9ab39648df92416de860ef":[2,0,0,5,3], +"classGpgFrontend_1_1ThreadSafeMap.html#a8499e210ffb71c52cdeb309269127157":[2,0,0,5,6], +"classGpgFrontend_1_1ThreadSafeMap.html#a86951ca9a069cc520549757437b01332":[2,0,0,5,8], +"classGpgFrontend_1_1ThreadSafeMap.html#a894aa615f685990f88faaac4df4c1924":[2,0,0,5,2], +"classGpgFrontend_1_1ThreadSafeMap.html#acc5f153d80e6930caaa16315e938a044":[2,0,0,5,10], +"classGpgFrontend_1_1ThreadSafeMap.html#adf6a7f5770e39645bfc97b3f1a5ed93e":[2,0,0,5,4], +"classGpgFrontend_1_1ThreadSafeMap.html#ae47d44e31883547e285e5366db23a0fe":[2,0,0,5,1], +"classGpgFrontend_1_1ThreadSafeMap.html#af1a2463215950aab4068f0ac7aaf4be2":[2,0,0,5,0], "classGpgFrontend_1_1Thread_1_1CtxCheckTask.html":[2,0,0,0,0], "classGpgFrontend_1_1Thread_1_1CtxCheckTask.html#a1c94cb1290df40a9043fe2d1a9a231f2":[2,0,0,0,0,1], "classGpgFrontend_1_1Thread_1_1CtxCheckTask.html#a7eb264d11146110a8783a8a209ef9c2a":[2,0,0,0,0,2], @@ -219,35 +249,5 @@ var NAVTREEINDEX2 = "classGpgFrontend_1_1UI_1_1AppearanceTab.html#abff49b636449815a9ebff52f5c067712":[2,0,0,1,25,3], "classGpgFrontend_1_1UI_1_1ChoosePage.html":[2,0,0,1,34], "classGpgFrontend_1_1UI_1_1ChoosePage.html#a22bb223faa8f94e80b677b78b08e5d67":[2,0,0,1,34,3], -"classGpgFrontend_1_1UI_1_1ChoosePage.html#a243a82d13267b7252844fd7691c703f0":[2,0,0,1,34,1], -"classGpgFrontend_1_1UI_1_1ChoosePage.html#ae370e789009be3926410cb749c86907b":[2,0,0,1,34,0], -"classGpgFrontend_1_1UI_1_1ChoosePage.html#af0d7890fe65385b7785719b9cff0718b":[2,0,0,1,34,2], -"classGpgFrontend_1_1UI_1_1CommonUtils.html":[2,0,0,1,49], -"classGpgFrontend_1_1UI_1_1CommonUtils.html#a057526790f6b2f6288c3a35322c34d8d":[2,0,0,1,49,15], -"classGpgFrontend_1_1UI_1_1CommonUtils.html#a0c8bf56fc5371cd2c5e9d2a0f67bf72a":[2,0,0,1,49,14], -"classGpgFrontend_1_1UI_1_1CommonUtils.html#a1abc83bba95579aa94d0870181991a28":[2,0,0,1,49,5], -"classGpgFrontend_1_1UI_1_1CommonUtils.html#a1e7dff5252d5ec77c8450ad356891ebb":[2,0,0,1,49,7], -"classGpgFrontend_1_1UI_1_1CommonUtils.html#a35a47fc31b81b6c4f5899e8ab5c4c51a":[2,0,0,1,49,16], -"classGpgFrontend_1_1UI_1_1CommonUtils.html#a3bc26cc1e0f00f0ce2f95c0b6c8778d8":[2,0,0,1,49,18], -"classGpgFrontend_1_1UI_1_1CommonUtils.html#a4bc9e91daa0d3c4ee4141ba4bd8726bb":[2,0,0,1,49,6], -"classGpgFrontend_1_1UI_1_1CommonUtils.html#a4d2f10c2089c2bfb23be5c1f573af31f":[2,0,0,1,49,4], -"classGpgFrontend_1_1UI_1_1CommonUtils.html#a78f5c2696152e9326e845c76c94be965":[2,0,0,1,49,1], -"classGpgFrontend_1_1UI_1_1CommonUtils.html#a80350e7fe1cd696004c9aa2a43eab184":[2,0,0,1,49,9], -"classGpgFrontend_1_1UI_1_1CommonUtils.html#a86d3827a2e5df17747c58d00b2f5fe6e":[2,0,0,1,49,19], -"classGpgFrontend_1_1UI_1_1CommonUtils.html#a95cd625a2e0e74ee4d564843c6d16791":[2,0,0,1,49,12], -"classGpgFrontend_1_1UI_1_1CommonUtils.html#a99b5dad4b17d1e71120e2c7708ef47a0":[2,0,0,1,49,20], -"classGpgFrontend_1_1UI_1_1CommonUtils.html#aa533206591b0c57ea93b8f0cb7d795cd":[2,0,0,1,49,21], -"classGpgFrontend_1_1UI_1_1CommonUtils.html#aa69efbcd684e9a99cc5c47c23de8d38c":[2,0,0,1,49,8], -"classGpgFrontend_1_1UI_1_1CommonUtils.html#aadd249062c24f9b7fc545c03296bbb83":[2,0,0,1,49,0], -"classGpgFrontend_1_1UI_1_1CommonUtils.html#ab4ac26378d6a07757720163eb4b1cb0e":[2,0,0,1,49,11], -"classGpgFrontend_1_1UI_1_1CommonUtils.html#abb25baa60d62d6842028e174f7e341fe":[2,0,0,1,49,3], -"classGpgFrontend_1_1UI_1_1CommonUtils.html#aed529969f54e39e3f9da14ae6dd00d49":[2,0,0,1,49,2], -"classGpgFrontend_1_1UI_1_1CommonUtils.html#aef14c7eaaf8b73bd1b8f845a5484748e":[2,0,0,1,49,10], -"classGpgFrontend_1_1UI_1_1CommonUtils.html#af1b3538d3119c8564e83c7661f73f6ea":[2,0,0,1,49,17], -"classGpgFrontend_1_1UI_1_1CommonUtils.html#afc845c1c37487c99f78d8e66f6874f6d":[2,0,0,1,49,13], -"classGpgFrontend_1_1UI_1_1ConclusionPage.html":[2,0,0,1,36], -"classGpgFrontend_1_1UI_1_1ConclusionPage.html#a0d15495f048f75337b224e8e632a895a":[2,0,0,1,36,3], -"classGpgFrontend_1_1UI_1_1ConclusionPage.html#a0f3f3118456ccce7c2a6965cf68d2cf7":[2,0,0,1,36,1], -"classGpgFrontend_1_1UI_1_1ConclusionPage.html#a4ffc1744a257ced33fa00e1b0fbd3047":[2,0,0,1,36,2], -"classGpgFrontend_1_1UI_1_1ConclusionPage.html#afcd98b4735047807d384e6b3d3aea3a7":[2,0,0,1,36,0] +"classGpgFrontend_1_1UI_1_1ChoosePage.html#a243a82d13267b7252844fd7691c703f0":[2,0,0,1,34,1] }; diff --git a/docs/html/navtreeindex3.js b/docs/html/navtreeindex3.js index 06e988d2..957a687a 100644 --- a/docs/html/navtreeindex3.js +++ b/docs/html/navtreeindex3.js @@ -1,5 +1,38 @@ var NAVTREEINDEX3 = { +"classGpgFrontend_1_1UI_1_1ChoosePage.html#ae370e789009be3926410cb749c86907b":[2,0,0,1,34,0], +"classGpgFrontend_1_1UI_1_1ChoosePage.html#af0d7890fe65385b7785719b9cff0718b":[2,0,0,1,34,2], +"classGpgFrontend_1_1UI_1_1CommonUtils.html":[2,0,0,1,49], +"classGpgFrontend_1_1UI_1_1CommonUtils.html#a057526790f6b2f6288c3a35322c34d8d":[2,0,0,1,49,18], +"classGpgFrontend_1_1UI_1_1CommonUtils.html#a0c8bf56fc5371cd2c5e9d2a0f67bf72a":[2,0,0,1,49,17], +"classGpgFrontend_1_1UI_1_1CommonUtils.html#a0cf35e9d02ff3464cb83435a61d060c2":[2,0,0,1,49,6], +"classGpgFrontend_1_1UI_1_1CommonUtils.html#a1abc83bba95579aa94d0870181991a28":[2,0,0,1,49,8], +"classGpgFrontend_1_1UI_1_1CommonUtils.html#a1e7dff5252d5ec77c8450ad356891ebb":[2,0,0,1,49,10], +"classGpgFrontend_1_1UI_1_1CommonUtils.html#a35a47fc31b81b6c4f5899e8ab5c4c51a":[2,0,0,1,49,19], +"classGpgFrontend_1_1UI_1_1CommonUtils.html#a3bc26cc1e0f00f0ce2f95c0b6c8778d8":[2,0,0,1,49,21], +"classGpgFrontend_1_1UI_1_1CommonUtils.html#a4bc9e91daa0d3c4ee4141ba4bd8726bb":[2,0,0,1,49,9], +"classGpgFrontend_1_1UI_1_1CommonUtils.html#a4d2f10c2089c2bfb23be5c1f573af31f":[2,0,0,1,49,7], +"classGpgFrontend_1_1UI_1_1CommonUtils.html#a570b6d08ceb683f950e94d648bf334ea":[2,0,0,1,49,5], +"classGpgFrontend_1_1UI_1_1CommonUtils.html#a78f5c2696152e9326e845c76c94be965":[2,0,0,1,49,1], +"classGpgFrontend_1_1UI_1_1CommonUtils.html#a7a7b01b992c465ded7e25e54e3ebacec":[2,0,0,1,49,2], +"classGpgFrontend_1_1UI_1_1CommonUtils.html#a80350e7fe1cd696004c9aa2a43eab184":[2,0,0,1,49,12], +"classGpgFrontend_1_1UI_1_1CommonUtils.html#a86d3827a2e5df17747c58d00b2f5fe6e":[2,0,0,1,49,22], +"classGpgFrontend_1_1UI_1_1CommonUtils.html#a95cd625a2e0e74ee4d564843c6d16791":[2,0,0,1,49,15], +"classGpgFrontend_1_1UI_1_1CommonUtils.html#a99b5dad4b17d1e71120e2c7708ef47a0":[2,0,0,1,49,23], +"classGpgFrontend_1_1UI_1_1CommonUtils.html#aa533206591b0c57ea93b8f0cb7d795cd":[2,0,0,1,49,24], +"classGpgFrontend_1_1UI_1_1CommonUtils.html#aa69efbcd684e9a99cc5c47c23de8d38c":[2,0,0,1,49,11], +"classGpgFrontend_1_1UI_1_1CommonUtils.html#aadd249062c24f9b7fc545c03296bbb83":[2,0,0,1,49,0], +"classGpgFrontend_1_1UI_1_1CommonUtils.html#ab4ac26378d6a07757720163eb4b1cb0e":[2,0,0,1,49,14], +"classGpgFrontend_1_1UI_1_1CommonUtils.html#abb25baa60d62d6842028e174f7e341fe":[2,0,0,1,49,4], +"classGpgFrontend_1_1UI_1_1CommonUtils.html#aed529969f54e39e3f9da14ae6dd00d49":[2,0,0,1,49,3], +"classGpgFrontend_1_1UI_1_1CommonUtils.html#aef14c7eaaf8b73bd1b8f845a5484748e":[2,0,0,1,49,13], +"classGpgFrontend_1_1UI_1_1CommonUtils.html#af1b3538d3119c8564e83c7661f73f6ea":[2,0,0,1,49,20], +"classGpgFrontend_1_1UI_1_1CommonUtils.html#afc845c1c37487c99f78d8e66f6874f6d":[2,0,0,1,49,16], +"classGpgFrontend_1_1UI_1_1ConclusionPage.html":[2,0,0,1,36], +"classGpgFrontend_1_1UI_1_1ConclusionPage.html#a0d15495f048f75337b224e8e632a895a":[2,0,0,1,36,3], +"classGpgFrontend_1_1UI_1_1ConclusionPage.html#a0f3f3118456ccce7c2a6965cf68d2cf7":[2,0,0,1,36,1], +"classGpgFrontend_1_1UI_1_1ConclusionPage.html#a4ffc1744a257ced33fa00e1b0fbd3047":[2,0,0,1,36,2], +"classGpgFrontend_1_1UI_1_1ConclusionPage.html#afcd98b4735047807d384e6b3d3aea3a7":[2,0,0,1,36,0], "classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html":[2,0,0,1,9], "classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html#a0cd5f66604737ea344fc36dd2c308dbb":[2,0,0,1,9,3], "classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html#a3ae9ff221ddfeeee8bec5c218c8061ef":[2,0,0,1,9,1], @@ -193,61 +226,28 @@ var NAVTREEINDEX3 = "classGpgFrontend_1_1UI_1_1KeyList.html":[2,0,0,1,58], "classGpgFrontend_1_1UI_1_1KeyList.html#a0c3090591dff7b68bfb83c93d2c168e3":[2,0,0,1,58,4], "classGpgFrontend_1_1UI_1_1KeyList.html#a0ea28d6f108bad10aaa8844fa86db033":[2,0,0,1,58,3], -"classGpgFrontend_1_1UI_1_1KeyList.html#a152e66db4a0f033366f43b4ec89073f4":[2,0,0,1,58,27], -"classGpgFrontend_1_1UI_1_1KeyList.html#a19b3f64d41843bb267fcd6c9956fde88":[2,0,0,1,58,30], -"classGpgFrontend_1_1UI_1_1KeyList.html#a1bcca32b18c539a2ae83c30fc07db544":[2,0,0,1,58,13], +"classGpgFrontend_1_1UI_1_1KeyList.html#a152e66db4a0f033366f43b4ec89073f4":[2,0,0,1,58,28], +"classGpgFrontend_1_1UI_1_1KeyList.html#a19b3f64d41843bb267fcd6c9956fde88":[2,0,0,1,58,32], +"classGpgFrontend_1_1UI_1_1KeyList.html#a1bcca32b18c539a2ae83c30fc07db544":[2,0,0,1,58,14], "classGpgFrontend_1_1UI_1_1KeyList.html#a20c4a242f49123bd64982952fdad08e9":[2,0,0,1,58,5], "classGpgFrontend_1_1UI_1_1KeyList.html#a23ebf79be8de637560d41afd0433c35f":[2,0,0,1,58,8], -"classGpgFrontend_1_1UI_1_1KeyList.html#a31a4c067eed90830203862cb4adf951e":[2,0,0,1,58,17], -"classGpgFrontend_1_1UI_1_1KeyList.html#a4e5862299b0aebe07daf8fbc642a4c38":[2,0,0,1,58,11], -"classGpgFrontend_1_1UI_1_1KeyList.html#a68b595a2bb83dfafa61b3e467dd15689":[2,0,0,1,58,19], -"classGpgFrontend_1_1UI_1_1KeyList.html#a69e54f06d546d516a0dcdf1055b8028e":[2,0,0,1,58,24], -"classGpgFrontend_1_1UI_1_1KeyList.html#a6e97d359158f91217b9fe797410c74a6":[2,0,0,1,58,26], -"classGpgFrontend_1_1UI_1_1KeyList.html#a73ddb7feb1f70eac44e038c3dc925fec":[2,0,0,1,58,1], -"classGpgFrontend_1_1UI_1_1KeyList.html#a74ef918cd437730e111171660df06c81":[2,0,0,1,58,31], -"classGpgFrontend_1_1UI_1_1KeyList.html#a79416ec91e91f19712bf72aeb6440175":[2,0,0,1,58,16], +"classGpgFrontend_1_1UI_1_1KeyList.html#a31a4c067eed90830203862cb4adf951e":[2,0,0,1,58,18], +"classGpgFrontend_1_1UI_1_1KeyList.html#a4e5862299b0aebe07daf8fbc642a4c38":[2,0,0,1,58,12], +"classGpgFrontend_1_1UI_1_1KeyList.html#a68b595a2bb83dfafa61b3e467dd15689":[2,0,0,1,58,20], +"classGpgFrontend_1_1UI_1_1KeyList.html#a69e54f06d546d516a0dcdf1055b8028e":[2,0,0,1,58,25], +"classGpgFrontend_1_1UI_1_1KeyList.html#a6e97d359158f91217b9fe797410c74a6":[2,0,0,1,58,27], +"classGpgFrontend_1_1UI_1_1KeyList.html#a74ef918cd437730e111171660df06c81":[2,0,0,1,58,33], +"classGpgFrontend_1_1UI_1_1KeyList.html#a79416ec91e91f19712bf72aeb6440175":[2,0,0,1,58,17], "classGpgFrontend_1_1UI_1_1KeyList.html#a7c9d5cacdb42e1fbda5d3cc96e861418":[2,0,0,1,58,0], -"classGpgFrontend_1_1UI_1_1KeyList.html#a7d75246eee6368be295c9ab5fe5ef291":[2,0,0,1,58,21], -"classGpgFrontend_1_1UI_1_1KeyList.html#a7ead8845ceb7c9310e3f4742251e1d87":[2,0,0,1,58,9], -"classGpgFrontend_1_1UI_1_1KeyList.html#a81c2e36427371fa6ae6381870b9b5bdd":[2,0,0,1,58,12], +"classGpgFrontend_1_1UI_1_1KeyList.html#a7d75246eee6368be295c9ab5fe5ef291":[2,0,0,1,58,22], +"classGpgFrontend_1_1UI_1_1KeyList.html#a7ead8845ceb7c9310e3f4742251e1d87":[2,0,0,1,58,10], +"classGpgFrontend_1_1UI_1_1KeyList.html#a81c2e36427371fa6ae6381870b9b5bdd":[2,0,0,1,58,13], "classGpgFrontend_1_1UI_1_1KeyList.html#a82da61a76a08023b2ddbe2a6869f4190":[2,0,0,1,58,6], -"classGpgFrontend_1_1UI_1_1KeyList.html#a86a294a8baa9feaeb808f0af956ef522":[2,0,0,1,58,22], -"classGpgFrontend_1_1UI_1_1KeyList.html#a8aeb2eef64f57fbc2e7f06f433d1ccb2":[2,0,0,1,58,36], -"classGpgFrontend_1_1UI_1_1KeyList.html#a8d1e2fde8e54d111581adc701e3191bb":[2,0,0,1,58,32], -"classGpgFrontend_1_1UI_1_1KeyList.html#a947f4ce45285b58bbde94f4ae879ff7a":[2,0,0,1,58,23], +"classGpgFrontend_1_1UI_1_1KeyList.html#a84499e74d082e71e90a8526991c5331a":[2,0,0,1,58,29], +"classGpgFrontend_1_1UI_1_1KeyList.html#a86a294a8baa9feaeb808f0af956ef522":[2,0,0,1,58,23], +"classGpgFrontend_1_1UI_1_1KeyList.html#a8aeb2eef64f57fbc2e7f06f433d1ccb2":[2,0,0,1,58,38], +"classGpgFrontend_1_1UI_1_1KeyList.html#a8d1e2fde8e54d111581adc701e3191bb":[2,0,0,1,58,34], +"classGpgFrontend_1_1UI_1_1KeyList.html#a947f4ce45285b58bbde94f4ae879ff7a":[2,0,0,1,58,24], "classGpgFrontend_1_1UI_1_1KeyList.html#aa961e3ba3c48f84dea4bb7ab4f756886":[2,0,0,1,58,2], -"classGpgFrontend_1_1UI_1_1KeyList.html#aab3f4facfc850e7eeb917571ca89f4a5":[2,0,0,1,58,20], -"classGpgFrontend_1_1UI_1_1KeyList.html#aad57901bf84aaf7849e7cf7bb9f8fc99":[2,0,0,1,58,25], -"classGpgFrontend_1_1UI_1_1KeyList.html#ab0182646beb01850779260b3772bd8fe":[2,0,0,1,58,18], -"classGpgFrontend_1_1UI_1_1KeyList.html#ab4368b81402e2468a9e960de8fb7080f":[2,0,0,1,58,14], -"classGpgFrontend_1_1UI_1_1KeyList.html#ab64ba3049fac1aaa9fed4fb1c5919153":[2,0,0,1,58,15], -"classGpgFrontend_1_1UI_1_1KeyList.html#ac1e5046770c36f67aab34715e50c0a33":[2,0,0,1,58,10], -"classGpgFrontend_1_1UI_1_1KeyList.html#ac4629f2ffafe87215acc66f3cefc23d4":[2,0,0,1,58,29], -"classGpgFrontend_1_1UI_1_1KeyList.html#ac4d74ae5a34617b0be9915a43a2abdaa":[2,0,0,1,58,35], -"classGpgFrontend_1_1UI_1_1KeyList.html#ad3b6021ff2b2f03874bc9886bc08c152":[2,0,0,1,58,33], -"classGpgFrontend_1_1UI_1_1KeyList.html#ade6f1511cb60ceafcfe8e50a2ef28c73":[2,0,0,1,58,34], -"classGpgFrontend_1_1UI_1_1KeyList.html#ae3ad87e114432b0d659a0297d520d72f":[2,0,0,1,58,7], -"classGpgFrontend_1_1UI_1_1KeyList.html#ae9667bbf246913ea22413d46bcda675a":[2,0,0,1,58,28], -"classGpgFrontend_1_1UI_1_1KeyMgmt.html":[2,0,0,1,39], -"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a00fdf40c55943c8542eaebab041f02b8":[2,0,0,1,39,28], -"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a0380d65d9d12fb2b9d66c212287b8b92":[2,0,0,1,39,18], -"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a08ce0587e28ac312273fdb0988f63bbe":[2,0,0,1,39,27], -"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a0b139ae0d4baa234932cf228e94abd6b":[2,0,0,1,39,4], -"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a0b4b2f521362d8e24a9875d51b0f877c":[2,0,0,1,39,9], -"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a0eae43c328a32aedfa4a5a55cf328966":[2,0,0,1,39,25], -"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a137117a6c303eaf7bdca7a11edcc178c":[2,0,0,1,39,5], -"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a1d5091c7be671b5c0446b52bef3eeb48":[2,0,0,1,39,24], -"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a1ee904754ebe088ad002fb6c9b3f9000":[2,0,0,1,39,11], -"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a2166d56c56ad66fd415d6628cfffd9b7":[2,0,0,1,39,6], -"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a23cf6665537f2a96708e9d5423ce3bb8":[2,0,0,1,39,1], -"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a2bcdba46a4ace5bb9dd742759a00f4e3":[2,0,0,1,39,20], -"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a33e88ef94386833575afede7a7ff144a":[2,0,0,1,39,26], -"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a375530da2a3ff57e47b5f28af0bec09b":[2,0,0,1,39,10], -"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a6266d640cb37c14fbe2c96bdb9c15935":[2,0,0,1,39,36], -"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a6791486fd94567d504d48050c23476b5":[2,0,0,1,39,3], -"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a6ee90b63414038e9f840933a5b2c5e46":[2,0,0,1,39,2], -"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a75e6e38da08275188c7a78fb57fa6641":[2,0,0,1,39,22], -"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a7623fa63b3c24ee86d923b434dee9c7f":[2,0,0,1,39,33], -"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a876e257c8d8bb7e47ceb70e1da4f9da7":[2,0,0,1,39,35], -"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a905d55ac2c7de8579db9f5a7b91a0abf":[2,0,0,1,39,15] +"classGpgFrontend_1_1UI_1_1KeyList.html#aab3f4facfc850e7eeb917571ca89f4a5":[2,0,0,1,58,21] }; diff --git a/docs/html/navtreeindex4.js b/docs/html/navtreeindex4.js index b67a81bc..a5cb5d4a 100644 --- a/docs/html/navtreeindex4.js +++ b/docs/html/navtreeindex4.js @@ -1,5 +1,40 @@ var NAVTREEINDEX4 = { +"classGpgFrontend_1_1UI_1_1KeyList.html#aad57901bf84aaf7849e7cf7bb9f8fc99":[2,0,0,1,58,26], +"classGpgFrontend_1_1UI_1_1KeyList.html#ab0182646beb01850779260b3772bd8fe":[2,0,0,1,58,19], +"classGpgFrontend_1_1UI_1_1KeyList.html#ab4368b81402e2468a9e960de8fb7080f":[2,0,0,1,58,15], +"classGpgFrontend_1_1UI_1_1KeyList.html#ab64ba3049fac1aaa9fed4fb1c5919153":[2,0,0,1,58,16], +"classGpgFrontend_1_1UI_1_1KeyList.html#ab8663d18901d10c00dbcc0ba852b3bf4":[2,0,0,1,58,1], +"classGpgFrontend_1_1UI_1_1KeyList.html#ac1e5046770c36f67aab34715e50c0a33":[2,0,0,1,58,11], +"classGpgFrontend_1_1UI_1_1KeyList.html#ac4629f2ffafe87215acc66f3cefc23d4":[2,0,0,1,58,31], +"classGpgFrontend_1_1UI_1_1KeyList.html#ac4d74ae5a34617b0be9915a43a2abdaa":[2,0,0,1,58,37], +"classGpgFrontend_1_1UI_1_1KeyList.html#ad3b6021ff2b2f03874bc9886bc08c152":[2,0,0,1,58,35], +"classGpgFrontend_1_1UI_1_1KeyList.html#adc5099f326fdd4da9a82e34a68cb2fd7":[2,0,0,1,58,9], +"classGpgFrontend_1_1UI_1_1KeyList.html#ade6f1511cb60ceafcfe8e50a2ef28c73":[2,0,0,1,58,36], +"classGpgFrontend_1_1UI_1_1KeyList.html#ae3ad87e114432b0d659a0297d520d72f":[2,0,0,1,58,7], +"classGpgFrontend_1_1UI_1_1KeyList.html#ae9667bbf246913ea22413d46bcda675a":[2,0,0,1,58,30], +"classGpgFrontend_1_1UI_1_1KeyMgmt.html":[2,0,0,1,39], +"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a00fdf40c55943c8542eaebab041f02b8":[2,0,0,1,39,28], +"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a0380d65d9d12fb2b9d66c212287b8b92":[2,0,0,1,39,18], +"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a08ce0587e28ac312273fdb0988f63bbe":[2,0,0,1,39,27], +"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a0b139ae0d4baa234932cf228e94abd6b":[2,0,0,1,39,4], +"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a0b4b2f521362d8e24a9875d51b0f877c":[2,0,0,1,39,9], +"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a0eae43c328a32aedfa4a5a55cf328966":[2,0,0,1,39,25], +"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a137117a6c303eaf7bdca7a11edcc178c":[2,0,0,1,39,5], +"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a1d5091c7be671b5c0446b52bef3eeb48":[2,0,0,1,39,24], +"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a1ee904754ebe088ad002fb6c9b3f9000":[2,0,0,1,39,11], +"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a2166d56c56ad66fd415d6628cfffd9b7":[2,0,0,1,39,6], +"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a23cf6665537f2a96708e9d5423ce3bb8":[2,0,0,1,39,1], +"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a2bcdba46a4ace5bb9dd742759a00f4e3":[2,0,0,1,39,20], +"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a33e88ef94386833575afede7a7ff144a":[2,0,0,1,39,26], +"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a375530da2a3ff57e47b5f28af0bec09b":[2,0,0,1,39,10], +"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a6266d640cb37c14fbe2c96bdb9c15935":[2,0,0,1,39,36], +"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a6791486fd94567d504d48050c23476b5":[2,0,0,1,39,3], +"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a6ee90b63414038e9f840933a5b2c5e46":[2,0,0,1,39,2], +"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a75e6e38da08275188c7a78fb57fa6641":[2,0,0,1,39,22], +"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a7623fa63b3c24ee86d923b434dee9c7f":[2,0,0,1,39,33], +"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a876e257c8d8bb7e47ceb70e1da4f9da7":[2,0,0,1,39,35], +"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a905d55ac2c7de8579db9f5a7b91a0abf":[2,0,0,1,39,15], "classGpgFrontend_1_1UI_1_1KeyMgmt.html#aa10636ab18ccf63bcd3dfa60bdd9cbc7":[2,0,0,1,39,12], "classGpgFrontend_1_1UI_1_1KeyMgmt.html#aa5cd08927c720e1d545149e8318559c8":[2,0,0,1,39,14], "classGpgFrontend_1_1UI_1_1KeyMgmt.html#ab06b65fbb2581eb1245d45273ed3885a":[2,0,0,1,39,13], @@ -214,40 +249,5 @@ var NAVTREEINDEX4 = "classGpgFrontend_1_1UI_1_1KeyserverTab.html#a68f954c4b713956a87f7382b30f45612":[2,0,0,1,28,7], "classGpgFrontend_1_1UI_1_1KeyserverTab.html#a74f30a1f6314b6156f4df20652129c5d":[2,0,0,1,28,6], "classGpgFrontend_1_1UI_1_1KeyserverTab.html#a85b9bfdbd7ae71f0d74b9d6c32a194e1":[2,0,0,1,28,12], -"classGpgFrontend_1_1UI_1_1KeyserverTab.html#a8cbd6e448e187260730ab8301ad4892e":[2,0,0,1,28,2], -"classGpgFrontend_1_1UI_1_1KeyserverTab.html#a8fd9c3735ab43ecf2eb6df4c9b2ddd93":[2,0,0,1,28,1], -"classGpgFrontend_1_1UI_1_1KeyserverTab.html#aa3d3561d3bdf95de6486b2caa752616c":[2,0,0,1,28,0], -"classGpgFrontend_1_1UI_1_1KeyserverTab.html#aacb5e6e543708687185a993dd43050a3":[2,0,0,1,28,5], -"classGpgFrontend_1_1UI_1_1KeyserverTab.html#ac3f03e8a208f63776414df0ce37ead19":[2,0,0,1,28,11], -"classGpgFrontend_1_1UI_1_1KeyserverTab.html#ac946f4228b6e8784eebcbb63f285a702":[2,0,0,1,28,9], -"classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html":[2,0,0,1,46], -"classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a20f0147d670be7ab5c9d3051a900f508":[2,0,0,1,46,3], -"classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a257a806258d2e82961dd1227151d8269":[2,0,0,1,46,7], -"classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a2a34a0b2c9f99597cc9ac52ffbcf151a":[2,0,0,1,46,2], -"classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a4e4e873d8d75a215f574f8211b5896d8":[2,0,0,1,46,0], -"classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a4e4e873d8d75a215f574f8211b5896d8a5fe88955da96f064d23569112b2b6a13":[2,0,0,1,46,0,2], -"classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a4e4e873d8d75a215f574f8211b5896d8a63ce35ca3098ebd24e16ad592f14cd0d":[2,0,0,1,46,0,0], -"classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a4e4e873d8d75a215f574f8211b5896d8adbea1aa1d6372dbabc06c38ac1231f88":[2,0,0,1,46,0,1], -"classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a5c53b9ab82f93982e29a4fe3076c3419":[2,0,0,1,46,9], -"classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a870ec89c06c3a4789948ca60e45e437d":[2,0,0,1,46,5], -"classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a9c54f88adf75dd3402fef51ef5eeaea5":[2,0,0,1,46,6], -"classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#abbb10300a75086649faba44cf4d2ed61":[2,0,0,1,46,8], -"classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#ae25b5d59b53facc15648ab80ff19ed77":[2,0,0,1,46,1], -"classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#af9350e0a8d5993e5be0a5478fcb161be":[2,0,0,1,46,4], -"classGpgFrontend_1_1UI_1_1MainWindow.html":[2,0,0,1,40], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a01b85fb17c373d8f97ce439027c6d04e":[2,0,0,1,40,90], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a033d448541b44fa48b76dec828a4eb0e":[2,0,0,1,40,38], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a04668246525874760f47a340b4b7d8de":[2,0,0,1,40,6], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a05b838ad518857fed24864ecce40c203":[2,0,0,1,40,49], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a08ba4521f68c488b23b651e201011759":[2,0,0,1,40,11], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a091087c673fa86bcaaadbbfc7ec7caed":[2,0,0,1,40,20], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a09671c3aa26a750cfd6be6c092de8715":[2,0,0,1,40,65], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a0a6d0618f2835a6dcae707a4ca770a48":[2,0,0,1,40,43], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a0ab96012df041f2c2e47092db0600355":[2,0,0,1,40,4], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a0cb094e0409337cfd7dba1bb510ea96e":[2,0,0,1,40,63], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a0cded37ef6e07856bbe439b0e90db839":[2,0,0,1,40,117], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a0e9920cf0fc974ac2f70d3f039f009f2":[2,0,0,1,40,127], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a14bb12fa25620e1a93bd23c9f7c84081":[2,0,0,1,40,126], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a16bbfd12cd3a6f0df9e2c32cf7999e57":[2,0,0,1,40,97], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a16ddebec90a4bd0d13baa9d972c3445f":[2,0,0,1,40,36] +"classGpgFrontend_1_1UI_1_1KeyserverTab.html#a8cbd6e448e187260730ab8301ad4892e":[2,0,0,1,28,2] }; diff --git a/docs/html/navtreeindex5.js b/docs/html/navtreeindex5.js index 4d80230a..4a8e964e 100644 --- a/docs/html/navtreeindex5.js +++ b/docs/html/navtreeindex5.js @@ -1,119 +1,163 @@ var NAVTREEINDEX5 = { +"classGpgFrontend_1_1UI_1_1KeyserverTab.html#a8fd9c3735ab43ecf2eb6df4c9b2ddd93":[2,0,0,1,28,1], +"classGpgFrontend_1_1UI_1_1KeyserverTab.html#aa3d3561d3bdf95de6486b2caa752616c":[2,0,0,1,28,0], +"classGpgFrontend_1_1UI_1_1KeyserverTab.html#aacb5e6e543708687185a993dd43050a3":[2,0,0,1,28,5], +"classGpgFrontend_1_1UI_1_1KeyserverTab.html#ac3f03e8a208f63776414df0ce37ead19":[2,0,0,1,28,11], +"classGpgFrontend_1_1UI_1_1KeyserverTab.html#ac946f4228b6e8784eebcbb63f285a702":[2,0,0,1,28,9], +"classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html":[2,0,0,1,46], +"classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a20f0147d670be7ab5c9d3051a900f508":[2,0,0,1,46,3], +"classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a257a806258d2e82961dd1227151d8269":[2,0,0,1,46,7], +"classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a2a34a0b2c9f99597cc9ac52ffbcf151a":[2,0,0,1,46,2], +"classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a4e4e873d8d75a215f574f8211b5896d8":[2,0,0,1,46,0], +"classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a4e4e873d8d75a215f574f8211b5896d8a5fe88955da96f064d23569112b2b6a13":[2,0,0,1,46,0,2], +"classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a4e4e873d8d75a215f574f8211b5896d8a63ce35ca3098ebd24e16ad592f14cd0d":[2,0,0,1,46,0,0], +"classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a4e4e873d8d75a215f574f8211b5896d8adbea1aa1d6372dbabc06c38ac1231f88":[2,0,0,1,46,0,1], +"classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a5c53b9ab82f93982e29a4fe3076c3419":[2,0,0,1,46,9], +"classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a870ec89c06c3a4789948ca60e45e437d":[2,0,0,1,46,5], +"classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a9c54f88adf75dd3402fef51ef5eeaea5":[2,0,0,1,46,6], +"classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#abbb10300a75086649faba44cf4d2ed61":[2,0,0,1,46,8], +"classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#ae25b5d59b53facc15648ab80ff19ed77":[2,0,0,1,46,1], +"classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#af9350e0a8d5993e5be0a5478fcb161be":[2,0,0,1,46,4], +"classGpgFrontend_1_1UI_1_1MainWindow.html":[2,0,0,1,40], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a01aed2790d84479bd3a2551d1cc6fb91":[2,0,0,1,40,42], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a01b85fb17c373d8f97ce439027c6d04e":[2,0,0,1,40,97], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a033d448541b44fa48b76dec828a4eb0e":[2,0,0,1,40,44], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a04668246525874760f47a340b4b7d8de":[2,0,0,1,40,6], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a05b838ad518857fed24864ecce40c203":[2,0,0,1,40,55], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a08ba4521f68c488b23b651e201011759":[2,0,0,1,40,11], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a091087c673fa86bcaaadbbfc7ec7caed":[2,0,0,1,40,24], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a09671c3aa26a750cfd6be6c092de8715":[2,0,0,1,40,72], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a0a6d0618f2835a6dcae707a4ca770a48":[2,0,0,1,40,49], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a0ab96012df041f2c2e47092db0600355":[2,0,0,1,40,4], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a0cb094e0409337cfd7dba1bb510ea96e":[2,0,0,1,40,70], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a0cded37ef6e07856bbe439b0e90db839":[2,0,0,1,40,126], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a0e9920cf0fc974ac2f70d3f039f009f2":[2,0,0,1,40,136], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a14bb12fa25620e1a93bd23c9f7c84081":[2,0,0,1,40,135], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a16bbfd12cd3a6f0df9e2c32cf7999e57":[2,0,0,1,40,104], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a16ddebec90a4bd0d13baa9d972c3445f":[2,0,0,1,40,40], "classGpgFrontend_1_1UI_1_1MainWindow.html#a1759412cb7ee71600c4b6e3c6e752d2e":[2,0,0,1,40,3], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a19d24772c88b55070f139b97806c10ca":[2,0,0,1,40,111], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a19d24772c88b55070f139b97806c10ca":[2,0,0,1,40,119], "classGpgFrontend_1_1UI_1_1MainWindow.html#a1ab1f3f57f9969447491e63f54420585":[2,0,0,1,40,8], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a1d61ea803e6c825bd54f42ba9ae85919":[2,0,0,1,40,29], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a1e0d23d361b8e339ca85410db2bdfb64":[2,0,0,1,40,82], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a1e7923dacd93eb498d8532bb887739b0":[2,0,0,1,40,57], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a1ef17c566a764f707f43593a1f6b3c60":[2,0,0,1,40,70], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a210ab31f4d949a50507d0690c0d1598a":[2,0,0,1,40,13], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a22256763ef83ed35a81e446b553d8112":[2,0,0,1,40,114], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a23c517e1b4c63d03e0413bf3772ffb92":[2,0,0,1,40,17], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a2417c807356e3b876ecb2f572568670b":[2,0,0,1,40,80], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a24a0b0d974fc5f8fdda60c128a82d957":[2,0,0,1,40,30], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a24e58eb0b84709ea665db95e54da865b":[2,0,0,1,40,106], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a2518a8a17ebcc217c7cc34c9c3a411f8":[2,0,0,1,40,51], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a25a2e4017d77cffc8362bde9606fad30":[2,0,0,1,40,46], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a261fb867b194d5b16ad15ed2ff6c60ec":[2,0,0,1,40,19], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a276e843e2f5eda8934fb350fb6f89327":[2,0,0,1,40,50], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a29a811d4d440c79c1bd2cc2bb40cdf7e":[2,0,0,1,40,35], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a2bed0c3b032269c9eb82bc7c068852cb":[2,0,0,1,40,86], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a2c2f6c021219564846f1624f6bb5b9a2":[2,0,0,1,40,72], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a2fb0dc34218da4963e3c37fd60b334a7":[2,0,0,1,40,94], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a304efe91afa31b32725caa00c27475a4":[2,0,0,1,40,32], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a30fe95cf76936d382ee0b67a24688a7a":[2,0,0,1,40,16], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a313a5d7d0847114a6f11e4d7870edd86":[2,0,0,1,40,73], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a38f243880cfb9276545b08f0730811e7":[2,0,0,1,40,98], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a3982432b140738859415e487e2c5f5eb":[2,0,0,1,40,24], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a3c0a5305cf55fe5bee2f18298f983cad":[2,0,0,1,40,61], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a3cb7daedbef61c1be27635c9ebc9e689":[2,0,0,1,40,128], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a3f3d03b0ec22385bee559fbd2aeb881b":[2,0,0,1,40,39], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a3f51156763fc3d4cdfa747d037566bef":[2,0,0,1,40,68], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a472500fec64442b114e9ce9faf4b6a73":[2,0,0,1,40,100], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a1d61ea803e6c825bd54f42ba9ae85919":[2,0,0,1,40,33], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a1ddc7e6246dd5065bed0777dca4e6fb6":[2,0,0,1,40,118], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a1e0d23d361b8e339ca85410db2bdfb64":[2,0,0,1,40,89], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a1e7923dacd93eb498d8532bb887739b0":[2,0,0,1,40,64], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a1ef17c566a764f707f43593a1f6b3c60":[2,0,0,1,40,77], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a210ab31f4d949a50507d0690c0d1598a":[2,0,0,1,40,14], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a22256763ef83ed35a81e446b553d8112":[2,0,0,1,40,122], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a23c517e1b4c63d03e0413bf3772ffb92":[2,0,0,1,40,19], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a2417c807356e3b876ecb2f572568670b":[2,0,0,1,40,87], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a24a0b0d974fc5f8fdda60c128a82d957":[2,0,0,1,40,34], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a24e58eb0b84709ea665db95e54da865b":[2,0,0,1,40,113], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a2518a8a17ebcc217c7cc34c9c3a411f8":[2,0,0,1,40,57], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a25a2e4017d77cffc8362bde9606fad30":[2,0,0,1,40,52], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a261fb867b194d5b16ad15ed2ff6c60ec":[2,0,0,1,40,23], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a276e843e2f5eda8934fb350fb6f89327":[2,0,0,1,40,56], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a29a811d4d440c79c1bd2cc2bb40cdf7e":[2,0,0,1,40,39], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a2bed0c3b032269c9eb82bc7c068852cb":[2,0,0,1,40,93], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a2c2f6c021219564846f1624f6bb5b9a2":[2,0,0,1,40,79], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a2caccd72d474177e571c07dd47038e58":[2,0,0,1,40,17], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a2fb0dc34218da4963e3c37fd60b334a7":[2,0,0,1,40,101], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a304efe91afa31b32725caa00c27475a4":[2,0,0,1,40,36], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a30fe95cf76936d382ee0b67a24688a7a":[2,0,0,1,40,18], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a313a5d7d0847114a6f11e4d7870edd86":[2,0,0,1,40,80], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a34d67c0c4f63695751616b5f6624b674":[2,0,0,1,40,124], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a38f243880cfb9276545b08f0730811e7":[2,0,0,1,40,105], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a3982432b140738859415e487e2c5f5eb":[2,0,0,1,40,28], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a3c0a5305cf55fe5bee2f18298f983cad":[2,0,0,1,40,68], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a3cb7daedbef61c1be27635c9ebc9e689":[2,0,0,1,40,137], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a3f3d03b0ec22385bee559fbd2aeb881b":[2,0,0,1,40,45], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a3f51156763fc3d4cdfa747d037566bef":[2,0,0,1,40,75], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a472500fec64442b114e9ce9faf4b6a73":[2,0,0,1,40,107], "classGpgFrontend_1_1UI_1_1MainWindow.html#a473b679fa0dc3cdf4f6f98d6553fa0ec":[2,0,0,1,40,2], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a48368c77af7b1f4cb632870b8d914a28":[2,0,0,1,40,42], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a4a1edafb8c67b181ff3c29394147571d":[2,0,0,1,40,101], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a55926649e28a96318b89afba01b966bf":[2,0,0,1,40,34], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a5806e6f5e740e6aa311e0fa5f064302a":[2,0,0,1,40,112], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a5bbe43bdd25df9de8c1de23efd8d37a5":[2,0,0,1,40,64], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a5dce98bfc01ecbb0a90eaa2b304675ed":[2,0,0,1,40,85], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a48368c77af7b1f4cb632870b8d914a28":[2,0,0,1,40,48], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a4a1edafb8c67b181ff3c29394147571d":[2,0,0,1,40,108], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a4df2a05492bf237511d44c5e9cdd9413":[2,0,0,1,40,12], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a55926649e28a96318b89afba01b966bf":[2,0,0,1,40,38], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a5806e6f5e740e6aa311e0fa5f064302a":[2,0,0,1,40,120], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a5bbe43bdd25df9de8c1de23efd8d37a5":[2,0,0,1,40,71], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a5dce98bfc01ecbb0a90eaa2b304675ed":[2,0,0,1,40,92], "classGpgFrontend_1_1UI_1_1MainWindow.html#a5e95f62dac9fba1ead6ec69c145923db":[2,0,0,1,40,10], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a61140b959cbdc0922b528a9c52d0dfa2":[2,0,0,1,40,56], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a6154f5dbdc9cebc0644e5d1e25895df8":[2,0,0,1,40,83], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a62ea61c38e758022ba655c6faf54322b":[2,0,0,1,40,104], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a672f4ef07be6ad645613ecd49399700d":[2,0,0,1,40,62], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a61140b959cbdc0922b528a9c52d0dfa2":[2,0,0,1,40,63], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a6154f5dbdc9cebc0644e5d1e25895df8":[2,0,0,1,40,90], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a62ea61c38e758022ba655c6faf54322b":[2,0,0,1,40,111], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a672f4ef07be6ad645613ecd49399700d":[2,0,0,1,40,69], "classGpgFrontend_1_1UI_1_1MainWindow.html#a6c64a01f3b1d5ff7b42da6e29a4d2c0c":[2,0,0,1,40,1], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a6d681a306c137dc107088d60b09a925f":[2,0,0,1,40,77], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a70397629ae3ffe039051b80a099c7979":[2,0,0,1,40,129], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a70d2b2311708ab023466d343f2e914b1":[2,0,0,1,40,75], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a71402943f4ed19e3aba0556b23eaa8f8":[2,0,0,1,40,66], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a72b5cfa9bf4b94a53d9bc14d84e60d6d":[2,0,0,1,40,92], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a76bf3784d751db78ed13bd9962e14472":[2,0,0,1,40,22], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a79b83f536a7c4299eaa3d22e4e875227":[2,0,0,1,40,84], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a7a4b6490038470a8849231e48282da98":[2,0,0,1,40,14], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a7aa41c90105fd4c2931895d8dfb5ec45":[2,0,0,1,40,76], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a7f5a88922d06bee977335fb4b5f1d86d":[2,0,0,1,40,27], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a821247d738457c4ee046162aad6728f9":[2,0,0,1,40,18], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a8538940a9a5dea7ddf53c89acdeb83be":[2,0,0,1,40,88], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a85a98a1ec5418c110201980fa013d1fd":[2,0,0,1,40,15], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a874b505fbc1046f579a736683f5a7f65":[2,0,0,1,40,37], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a877ec5dd357907e9c334e7ff18bf2c5c":[2,0,0,1,40,99], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a88af746cd550792ab6095d2ebbd29b41":[2,0,0,1,40,122], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a89fa105ed54d2189d762668262d74c63":[2,0,0,1,40,87], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a8bcdcbe678b8dc0837fffda2ebfe79bf":[2,0,0,1,40,47], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a8d5ce6514ef3fa8ac3223176f5fa2701":[2,0,0,1,40,123], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a8d6fe32ab64797459443ed285d769745":[2,0,0,1,40,93], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a8f9dd7edba23321a13ed630cdef7fdcc":[2,0,0,1,40,105], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a6d681a306c137dc107088d60b09a925f":[2,0,0,1,40,84], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a70397629ae3ffe039051b80a099c7979":[2,0,0,1,40,138], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a70d2b2311708ab023466d343f2e914b1":[2,0,0,1,40,82], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a71402943f4ed19e3aba0556b23eaa8f8":[2,0,0,1,40,73], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a72b5cfa9bf4b94a53d9bc14d84e60d6d":[2,0,0,1,40,99], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a76bf3784d751db78ed13bd9962e14472":[2,0,0,1,40,26], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a79b83f536a7c4299eaa3d22e4e875227":[2,0,0,1,40,91], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a7a4b6490038470a8849231e48282da98":[2,0,0,1,40,15], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a7aa41c90105fd4c2931895d8dfb5ec45":[2,0,0,1,40,83], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a7ec169e4ce829f37c3605491ac617973":[2,0,0,1,40,21], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a7f5a88922d06bee977335fb4b5f1d86d":[2,0,0,1,40,31], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a821247d738457c4ee046162aad6728f9":[2,0,0,1,40,22], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a8538940a9a5dea7ddf53c89acdeb83be":[2,0,0,1,40,95], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a85a98a1ec5418c110201980fa013d1fd":[2,0,0,1,40,16], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a874b505fbc1046f579a736683f5a7f65":[2,0,0,1,40,41], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a877ec5dd357907e9c334e7ff18bf2c5c":[2,0,0,1,40,106], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a88af746cd550792ab6095d2ebbd29b41":[2,0,0,1,40,131], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a89fa105ed54d2189d762668262d74c63":[2,0,0,1,40,94], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a8bcdcbe678b8dc0837fffda2ebfe79bf":[2,0,0,1,40,53], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a8d5ce6514ef3fa8ac3223176f5fa2701":[2,0,0,1,40,132], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a8d6fe32ab64797459443ed285d769745":[2,0,0,1,40,100], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a8de27a8002376b61e32f617910846412":[2,0,0,1,40,20], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a8f9dd7edba23321a13ed630cdef7fdcc":[2,0,0,1,40,112], "classGpgFrontend_1_1UI_1_1MainWindow.html#a92a6d8d46e197e25eaacc3ad7ed289ab":[2,0,0,1,40,5], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a95b2c86afbefe47e79af87e56032e306":[2,0,0,1,40,54], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a9879061cfd321c6757c77f75d46dc7d8":[2,0,0,1,40,48], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a9dd292f55fba1fe62c83508fef7e43a1":[2,0,0,1,40,53], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a9e2ddb2135df42d76134bea168fbdce9":[2,0,0,1,40,25], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a9ec699536a35a37961a8c6da1e231ae3":[2,0,0,1,40,45], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a95b2c86afbefe47e79af87e56032e306":[2,0,0,1,40,61], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a9879061cfd321c6757c77f75d46dc7d8":[2,0,0,1,40,54], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a9dd292f55fba1fe62c83508fef7e43a1":[2,0,0,1,40,59], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a9e2ddb2135df42d76134bea168fbdce9":[2,0,0,1,40,29], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a9ec699536a35a37961a8c6da1e231ae3":[2,0,0,1,40,51], "classGpgFrontend_1_1UI_1_1MainWindow.html#a9fbd8a2f5b2b5869276db83a4ad20216":[2,0,0,1,40,7], -"classGpgFrontend_1_1UI_1_1MainWindow.html#aa498dfecac36590e4b60d50824dff58c":[2,0,0,1,40,125], -"classGpgFrontend_1_1UI_1_1MainWindow.html#aa92246123272e3e1085f22612aedf48f":[2,0,0,1,40,74], -"classGpgFrontend_1_1UI_1_1MainWindow.html#aa9c986dd95984811479ea93230c74b5d":[2,0,0,1,40,41], +"classGpgFrontend_1_1UI_1_1MainWindow.html#aa498dfecac36590e4b60d50824dff58c":[2,0,0,1,40,134], +"classGpgFrontend_1_1UI_1_1MainWindow.html#aa92246123272e3e1085f22612aedf48f":[2,0,0,1,40,81], +"classGpgFrontend_1_1UI_1_1MainWindow.html#aa9c986dd95984811479ea93230c74b5d":[2,0,0,1,40,47], "classGpgFrontend_1_1UI_1_1MainWindow.html#aaa1de043b71dbcf0e8d8c265b2a67bd3":[2,0,0,1,40,9], -"classGpgFrontend_1_1UI_1_1MainWindow.html#aabf3ddf6b624790369f164b4889c95be":[2,0,0,1,40,40], -"classGpgFrontend_1_1UI_1_1MainWindow.html#aac320aef3b49cd068544aac54b927f7a":[2,0,0,1,40,71], -"classGpgFrontend_1_1UI_1_1MainWindow.html#aad0c8d50952f4592eac7b7221b5d1ec5":[2,0,0,1,40,60], -"classGpgFrontend_1_1UI_1_1MainWindow.html#ab0019ca316b971c594c2f20f418256a6":[2,0,0,1,40,119], -"classGpgFrontend_1_1UI_1_1MainWindow.html#ab0f148559d830fcf10b5a1937b0a47dc":[2,0,0,1,40,113], -"classGpgFrontend_1_1UI_1_1MainWindow.html#ab23c7e67dd1f5295b3c49ad79dfd5919":[2,0,0,1,40,44], -"classGpgFrontend_1_1UI_1_1MainWindow.html#ab531823acdbfb117c82a9906ce2107b9":[2,0,0,1,40,78], -"classGpgFrontend_1_1UI_1_1MainWindow.html#ab570d33667a3f8fe189f2d81b81f85be":[2,0,0,1,40,110], -"classGpgFrontend_1_1UI_1_1MainWindow.html#ab67486a71126073e7c39ca12603198f4":[2,0,0,1,40,58], -"classGpgFrontend_1_1UI_1_1MainWindow.html#abe0683e48485f9fcff622d9519c37ed9":[2,0,0,1,40,107], -"classGpgFrontend_1_1UI_1_1MainWindow.html#abe38474d4e81726147f9df8a9721ce6e":[2,0,0,1,40,109], -"classGpgFrontend_1_1UI_1_1MainWindow.html#ac578922206608834c6c7ba862f02c0fa":[2,0,0,1,40,21], -"classGpgFrontend_1_1UI_1_1MainWindow.html#ac6a42e6e3af7e76f0bd2ecc62c9520cc":[2,0,0,1,40,115], -"classGpgFrontend_1_1UI_1_1MainWindow.html#acd41722ceedd20973b7d83852fab407b":[2,0,0,1,40,116], -"classGpgFrontend_1_1UI_1_1MainWindow.html#ad0a47aadbd6ae3a4bd0fe3372d247e7d":[2,0,0,1,40,89], -"classGpgFrontend_1_1UI_1_1MainWindow.html#ad27dcf3f534f13d8df71df680c4d177c":[2,0,0,1,40,52], -"classGpgFrontend_1_1UI_1_1MainWindow.html#ad6a2cecb2846b324604c4abd1fb7d11a":[2,0,0,1,40,79], -"classGpgFrontend_1_1UI_1_1MainWindow.html#ad7b22560df7e3bb38b660d3ffc84dc83":[2,0,0,1,40,102], -"classGpgFrontend_1_1UI_1_1MainWindow.html#ad874ce344cce9f87bfbb31e7bf88aebe":[2,0,0,1,40,55], -"classGpgFrontend_1_1UI_1_1MainWindow.html#ada8351319a2aaf032fc736f39bdcf9a5":[2,0,0,1,40,67], -"classGpgFrontend_1_1UI_1_1MainWindow.html#adaa66d9cdc51c946efc99bb94deda31c":[2,0,0,1,40,96], -"classGpgFrontend_1_1UI_1_1MainWindow.html#adb05de6b4fa1f1d57ed63be1280050e9":[2,0,0,1,40,95], -"classGpgFrontend_1_1UI_1_1MainWindow.html#adbac799672c43c90810366825d837e4e":[2,0,0,1,40,124], -"classGpgFrontend_1_1UI_1_1MainWindow.html#adfa3b3ae1de1fd04c5ea09e3c97c3e98":[2,0,0,1,40,12], -"classGpgFrontend_1_1UI_1_1MainWindow.html#ae11d01211c2914ecc148e13dd7de506e":[2,0,0,1,40,31], -"classGpgFrontend_1_1UI_1_1MainWindow.html#ae2587b35d14bc64bc13d4e8ca1dcd502":[2,0,0,1,40,120], -"classGpgFrontend_1_1UI_1_1MainWindow.html#ae28089efbd236708601470f30f26faaa":[2,0,0,1,40,33], -"classGpgFrontend_1_1UI_1_1MainWindow.html#ae2d89e2cc6c99ff0e16b396d2381f904":[2,0,0,1,40,28], -"classGpgFrontend_1_1UI_1_1MainWindow.html#aea9274389c3b049793fe5aa5a6adf63c":[2,0,0,1,40,23], -"classGpgFrontend_1_1UI_1_1MainWindow.html#af08c62c38a750382ee218191c8e13f4f":[2,0,0,1,40,81], -"classGpgFrontend_1_1UI_1_1MainWindow.html#af2b3e3a0e9894633e1839df289f5ffe0":[2,0,0,1,40,118], -"classGpgFrontend_1_1UI_1_1MainWindow.html#af763a506aed7d0fb2125d1859583b853":[2,0,0,1,40,121], -"classGpgFrontend_1_1UI_1_1MainWindow.html#af77f66b6b869f6ddb3d2caa3bc40bb09":[2,0,0,1,40,69], -"classGpgFrontend_1_1UI_1_1MainWindow.html#af93d72eaf58326f1f9e926752c6b1fc6":[2,0,0,1,40,26], -"classGpgFrontend_1_1UI_1_1MainWindow.html#af9640e5732c2595d0c094e7ff7e371ac":[2,0,0,1,40,108], -"classGpgFrontend_1_1UI_1_1MainWindow.html#afab1e0363a4b97ff68228cd4bd7cbc62":[2,0,0,1,40,103], -"classGpgFrontend_1_1UI_1_1MainWindow.html#afd243a5f00f86d65431081ead2cae153":[2,0,0,1,40,59], -"classGpgFrontend_1_1UI_1_1MainWindow.html#afd8473d161515bded88cc9474f2d12c1":[2,0,0,1,40,91], +"classGpgFrontend_1_1UI_1_1MainWindow.html#aabf3ddf6b624790369f164b4889c95be":[2,0,0,1,40,46], +"classGpgFrontend_1_1UI_1_1MainWindow.html#aac320aef3b49cd068544aac54b927f7a":[2,0,0,1,40,78], +"classGpgFrontend_1_1UI_1_1MainWindow.html#aad0c8d50952f4592eac7b7221b5d1ec5":[2,0,0,1,40,67], +"classGpgFrontend_1_1UI_1_1MainWindow.html#ab0019ca316b971c594c2f20f418256a6":[2,0,0,1,40,128], +"classGpgFrontend_1_1UI_1_1MainWindow.html#ab0f148559d830fcf10b5a1937b0a47dc":[2,0,0,1,40,121], +"classGpgFrontend_1_1UI_1_1MainWindow.html#ab23c7e67dd1f5295b3c49ad79dfd5919":[2,0,0,1,40,50], +"classGpgFrontend_1_1UI_1_1MainWindow.html#ab531823acdbfb117c82a9906ce2107b9":[2,0,0,1,40,85], +"classGpgFrontend_1_1UI_1_1MainWindow.html#ab570d33667a3f8fe189f2d81b81f85be":[2,0,0,1,40,117], +"classGpgFrontend_1_1UI_1_1MainWindow.html#ab67486a71126073e7c39ca12603198f4":[2,0,0,1,40,65], +"classGpgFrontend_1_1UI_1_1MainWindow.html#abe0683e48485f9fcff622d9519c37ed9":[2,0,0,1,40,114], +"classGpgFrontend_1_1UI_1_1MainWindow.html#abe38474d4e81726147f9df8a9721ce6e":[2,0,0,1,40,116], +"classGpgFrontend_1_1UI_1_1MainWindow.html#ac578922206608834c6c7ba862f02c0fa":[2,0,0,1,40,25], +"classGpgFrontend_1_1UI_1_1MainWindow.html#ac6a42e6e3af7e76f0bd2ecc62c9520cc":[2,0,0,1,40,123], +"classGpgFrontend_1_1UI_1_1MainWindow.html#acd41722ceedd20973b7d83852fab407b":[2,0,0,1,40,125], +"classGpgFrontend_1_1UI_1_1MainWindow.html#ace4433f21dbb4b1859b81c120b675e1d":[2,0,0,1,40,43], +"classGpgFrontend_1_1UI_1_1MainWindow.html#ad0a47aadbd6ae3a4bd0fe3372d247e7d":[2,0,0,1,40,96], +"classGpgFrontend_1_1UI_1_1MainWindow.html#ad27dcf3f534f13d8df71df680c4d177c":[2,0,0,1,40,58], +"classGpgFrontend_1_1UI_1_1MainWindow.html#ad6a2cecb2846b324604c4abd1fb7d11a":[2,0,0,1,40,86], +"classGpgFrontend_1_1UI_1_1MainWindow.html#ad7b22560df7e3bb38b660d3ffc84dc83":[2,0,0,1,40,109], +"classGpgFrontend_1_1UI_1_1MainWindow.html#ad874ce344cce9f87bfbb31e7bf88aebe":[2,0,0,1,40,62], +"classGpgFrontend_1_1UI_1_1MainWindow.html#ada8351319a2aaf032fc736f39bdcf9a5":[2,0,0,1,40,74], +"classGpgFrontend_1_1UI_1_1MainWindow.html#adaa66d9cdc51c946efc99bb94deda31c":[2,0,0,1,40,103], +"classGpgFrontend_1_1UI_1_1MainWindow.html#adb05de6b4fa1f1d57ed63be1280050e9":[2,0,0,1,40,102], +"classGpgFrontend_1_1UI_1_1MainWindow.html#adbac799672c43c90810366825d837e4e":[2,0,0,1,40,133], +"classGpgFrontend_1_1UI_1_1MainWindow.html#adfa3b3ae1de1fd04c5ea09e3c97c3e98":[2,0,0,1,40,13], +"classGpgFrontend_1_1UI_1_1MainWindow.html#ae11d01211c2914ecc148e13dd7de506e":[2,0,0,1,40,35], +"classGpgFrontend_1_1UI_1_1MainWindow.html#ae2587b35d14bc64bc13d4e8ca1dcd502":[2,0,0,1,40,129], +"classGpgFrontend_1_1UI_1_1MainWindow.html#ae28089efbd236708601470f30f26faaa":[2,0,0,1,40,37], +"classGpgFrontend_1_1UI_1_1MainWindow.html#ae2d89e2cc6c99ff0e16b396d2381f904":[2,0,0,1,40,32], +"classGpgFrontend_1_1UI_1_1MainWindow.html#ae9bc8395f2d2965c722442f4879902d8":[2,0,0,1,40,60], +"classGpgFrontend_1_1UI_1_1MainWindow.html#aea9274389c3b049793fe5aa5a6adf63c":[2,0,0,1,40,27], +"classGpgFrontend_1_1UI_1_1MainWindow.html#af08c62c38a750382ee218191c8e13f4f":[2,0,0,1,40,88], +"classGpgFrontend_1_1UI_1_1MainWindow.html#af2b3e3a0e9894633e1839df289f5ffe0":[2,0,0,1,40,127], +"classGpgFrontend_1_1UI_1_1MainWindow.html#af763a506aed7d0fb2125d1859583b853":[2,0,0,1,40,130], +"classGpgFrontend_1_1UI_1_1MainWindow.html#af77f66b6b869f6ddb3d2caa3bc40bb09":[2,0,0,1,40,76], +"classGpgFrontend_1_1UI_1_1MainWindow.html#af93d72eaf58326f1f9e926752c6b1fc6":[2,0,0,1,40,30], +"classGpgFrontend_1_1UI_1_1MainWindow.html#af9640e5732c2595d0c094e7ff7e371ac":[2,0,0,1,40,115], +"classGpgFrontend_1_1UI_1_1MainWindow.html#afab1e0363a4b97ff68228cd4bd7cbc62":[2,0,0,1,40,110], +"classGpgFrontend_1_1UI_1_1MainWindow.html#afd243a5f00f86d65431081ead2cae153":[2,0,0,1,40,66], +"classGpgFrontend_1_1UI_1_1MainWindow.html#afd8473d161515bded88cc9474f2d12c1":[2,0,0,1,40,98], "classGpgFrontend_1_1UI_1_1NetworkTab.html":[2,0,0,1,29], "classGpgFrontend_1_1UI_1_1NetworkTab.html#a1713e1268a364f51f57b3a2752efc641":[2,0,0,1,29,7], "classGpgFrontend_1_1UI_1_1NetworkTab.html#a1b0297158f13daec77645c88e5a8adcd":[2,0,0,1,29,6], @@ -188,6 +232,7 @@ var NAVTREEINDEX5 = "classGpgFrontend_1_1UI_1_1SettingsObject.html#ac11d19096b4e88cb288a208a4953af4d":[2,0,0,1,42,1], "classGpgFrontend_1_1UI_1_1SettingsObject.html#ae71336d240ace35756d1852a46271f6c":[2,0,0,1,42,2], "classGpgFrontend_1_1UI_1_1SignalStation.html":[2,0,0,1,41], +"classGpgFrontend_1_1UI_1_1SignalStation.html#a0aca1aa881195ee37b697e913cdc6ef3":[2,0,0,1,41,7], "classGpgFrontend_1_1UI_1_1SignalStation.html#a1581aaebc459f3eda06195c1e43f068f":[2,0,0,1,41,1], "classGpgFrontend_1_1UI_1_1SignalStation.html#a2347964648d48b5d88994b2f504b6642":[2,0,0,1,41,3], "classGpgFrontend_1_1UI_1_1SignalStation.html#a7b5fb2e2c0ad238313650a08ea648ce3":[2,0,0,1,41,5], @@ -195,8 +240,8 @@ var NAVTREEINDEX5 = "classGpgFrontend_1_1UI_1_1SignalStation.html#aaec7938466ed4b1e912b25038a253f84":[2,0,0,1,41,2], "classGpgFrontend_1_1UI_1_1SignalStation.html#abe381ce56a7b157a3760b2fd9c3b7419":[2,0,0,1,41,0], "classGpgFrontend_1_1UI_1_1SignalStation.html#ac2848f49568a15d96e68e5622476d328":[2,0,0,1,41,6], -"classGpgFrontend_1_1UI_1_1SignalStation.html#ac98e4fff1e400f810ecea9903ee880df":[2,0,0,1,41,8], -"classGpgFrontend_1_1UI_1_1SignalStation.html#afa0b1cced7430180fae67ad2303ce448":[2,0,0,1,41,7], +"classGpgFrontend_1_1UI_1_1SignalStation.html#ac98e4fff1e400f810ecea9903ee880df":[2,0,0,1,41,9], +"classGpgFrontend_1_1UI_1_1SignalStation.html#afa0b1cced7430180fae67ad2303ce448":[2,0,0,1,41,8], "classGpgFrontend_1_1UI_1_1SignersPicker.html":[2,0,0,1,30], "classGpgFrontend_1_1UI_1_1SignersPicker.html#a02c3ba737702894fc6d4ac1a1c543ccb":[2,0,0,1,30,0], "classGpgFrontend_1_1UI_1_1SignersPicker.html#a2e98dcdf647a2e0e6455998b018aed00":[2,0,0,1,30,1], @@ -204,50 +249,5 @@ var NAVTREEINDEX5 = "classGpgFrontend_1_1UI_1_1SignersPicker.html#a524ee72ddb4fe397d71c0d4b5eb69171":[2,0,0,1,30,3], "classGpgFrontend_1_1UI_1_1SignersPicker.html#aba7633983da57c7a7eb2710a1f33f7ac":[2,0,0,1,30,2], "classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html":[2,0,0,1,14], -"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a001803152c0e5bd9de7c7dd04cef8ad4":[2,0,0,1,14,24], -"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a029017ad2e025a43d21144f1b7427593":[2,0,0,1,14,1], -"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a06ae254026e0be902d28bb005a91fe0c":[2,0,0,1,14,23], -"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a10b30ea96e819657053c1d5752024547":[2,0,0,1,14,18], -"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a13229f07ef0ed594357df1918af50d3d":[2,0,0,1,14,7], -"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a1f4dda7500b3de7476e5d1e7bd5b550b":[2,0,0,1,14,9], -"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a3caed2c7bcce5850c338de956dfaecfa":[2,0,0,1,14,17], -"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a49d9f3bb2cfb17eb39dcd4dc0385234e":[2,0,0,1,14,10], -"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a4a5b77fb909e9a6a0e4da780c75f7535":[2,0,0,1,14,3], -"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a52a0aadc9b1e80bdcaaf1ad9d8997957":[2,0,0,1,14,6], -"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a5d67b8ed68062ef127ad92986a98e95a":[2,0,0,1,14,21], -"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a75f325b4a5aa8bcfcc411bdaf9279683":[2,0,0,1,14,15], -"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a8ab50d8f47489c57e382b3fe231ba9a7":[2,0,0,1,14,8], -"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a8f9d8baa7b576a4aa857818b87c26bcd":[2,0,0,1,14,0], -"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a90900b67eceb2d16af5de27f9f038f7f":[2,0,0,1,14,4], -"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a9cbb5bcf775a873a0d866a9aa0a5acd0":[2,0,0,1,14,25], -"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aa24064a5f585b23d71e1036958f31d7d":[2,0,0,1,14,2], -"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aa8bf228ba2a773c0d38f9e5c2f20539d":[2,0,0,1,14,14], -"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aa91db742b41d352ba9f88620d649afb3":[2,0,0,1,14,19], -"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aab426dec4b4655b215b09b490e05ad05":[2,0,0,1,14,11], -"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#ab06b11f407fbb407139235fc84325de2":[2,0,0,1,14,13], -"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#ab11f7f3e24f855d690f6f7d820ed7479":[2,0,0,1,14,22], -"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#ab7a4af76a1d56ad401274ecad80d16c5":[2,0,0,1,14,26], -"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#ac515dabcf6c094c5eeb2bf88aa3aa9d3":[2,0,0,1,14,20], -"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#acca1d633219d245edba9135c80a90610":[2,0,0,1,14,5], -"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aedef4e8784c8a3edb06b0f2821500552":[2,0,0,1,14,12], -"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#afa21ac4d45a6474afc1bc594486ed8e2":[2,0,0,1,14,16], -"classGpgFrontend_1_1UI_1_1TOFUInfoPage.html":[2,0,0,1,61], -"classGpgFrontend_1_1UI_1_1TOFUInfoPage.html#a9adc1666e3f57536594876520019e395":[2,0,0,1,61,0], -"classGpgFrontend_1_1UI_1_1TextEdit.html":[2,0,0,1,60], -"classGpgFrontend_1_1UI_1_1TextEdit.html#a02fa44ba0c56f3f6ae125f8490faf254":[2,0,0,1,60,26], -"classGpgFrontend_1_1UI_1_1TextEdit.html#a05c54658597b04c3976c72d3a5f9add9":[2,0,0,1,60,35], -"classGpgFrontend_1_1UI_1_1TextEdit.html#a0f1c7997b1cd56045091e5c9677f5d0e":[2,0,0,1,60,0], -"classGpgFrontend_1_1UI_1_1TextEdit.html#a12f65fbc4984c266a5df4505ecde7c42":[2,0,0,1,60,8], -"classGpgFrontend_1_1UI_1_1TextEdit.html#a15335d38187ddf580b7200d856768cfb":[2,0,0,1,60,19], -"classGpgFrontend_1_1UI_1_1TextEdit.html#a1bf57ebe1e32b12c48bb633b7dd7a4f1":[2,0,0,1,60,9], -"classGpgFrontend_1_1UI_1_1TextEdit.html#a1d8948316e9231f50809e6fb9b337546":[2,0,0,1,60,39], -"classGpgFrontend_1_1UI_1_1TextEdit.html#a32327f592965d8922eb7095af117336d":[2,0,0,1,60,33], -"classGpgFrontend_1_1UI_1_1TextEdit.html#a3599bd01636a873cf3437ab6b9d38780":[2,0,0,1,60,11], -"classGpgFrontend_1_1UI_1_1TextEdit.html#a3c17fdf3abf9c4fb6ce35cfb8f0f8fc4":[2,0,0,1,60,17], -"classGpgFrontend_1_1UI_1_1TextEdit.html#a3c976a5494d06c2186d94e7cc8ebe457":[2,0,0,1,60,5], -"classGpgFrontend_1_1UI_1_1TextEdit.html#a48351dc1529da3b8da311f65b735b5f1":[2,0,0,1,60,13], -"classGpgFrontend_1_1UI_1_1TextEdit.html#a4a81e69f6dc74ea649ca9a2358342fd5":[2,0,0,1,60,31], -"classGpgFrontend_1_1UI_1_1TextEdit.html#a576e06390e65576465297d2ab8d7d474":[2,0,0,1,60,29], -"classGpgFrontend_1_1UI_1_1TextEdit.html#a57a46ab5595622ae0b7bceef7d56bd7c":[2,0,0,1,60,18], -"classGpgFrontend_1_1UI_1_1TextEdit.html#a60c73cc66a48a38c13e7890de49e86c3":[2,0,0,1,60,20] +"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a001803152c0e5bd9de7c7dd04cef8ad4":[2,0,0,1,14,24] }; diff --git a/docs/html/navtreeindex6.js b/docs/html/navtreeindex6.js index 3e6df771..74895c85 100644 --- a/docs/html/navtreeindex6.js +++ b/docs/html/navtreeindex6.js @@ -1,29 +1,75 @@ var NAVTREEINDEX6 = { +"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a029017ad2e025a43d21144f1b7427593":[2,0,0,1,14,1], +"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a06ae254026e0be902d28bb005a91fe0c":[2,0,0,1,14,23], +"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a10b30ea96e819657053c1d5752024547":[2,0,0,1,14,18], +"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a13229f07ef0ed594357df1918af50d3d":[2,0,0,1,14,7], +"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a1f4dda7500b3de7476e5d1e7bd5b550b":[2,0,0,1,14,9], +"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a3caed2c7bcce5850c338de956dfaecfa":[2,0,0,1,14,17], +"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a49d9f3bb2cfb17eb39dcd4dc0385234e":[2,0,0,1,14,10], +"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a4a5b77fb909e9a6a0e4da780c75f7535":[2,0,0,1,14,3], +"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a52a0aadc9b1e80bdcaaf1ad9d8997957":[2,0,0,1,14,6], +"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a5d67b8ed68062ef127ad92986a98e95a":[2,0,0,1,14,21], +"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a75f325b4a5aa8bcfcc411bdaf9279683":[2,0,0,1,14,15], +"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a8ab50d8f47489c57e382b3fe231ba9a7":[2,0,0,1,14,8], +"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a8f9d8baa7b576a4aa857818b87c26bcd":[2,0,0,1,14,0], +"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a90900b67eceb2d16af5de27f9f038f7f":[2,0,0,1,14,4], +"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a9cbb5bcf775a873a0d866a9aa0a5acd0":[2,0,0,1,14,25], +"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aa24064a5f585b23d71e1036958f31d7d":[2,0,0,1,14,2], +"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aa8bf228ba2a773c0d38f9e5c2f20539d":[2,0,0,1,14,14], +"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aa91db742b41d352ba9f88620d649afb3":[2,0,0,1,14,19], +"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aab426dec4b4655b215b09b490e05ad05":[2,0,0,1,14,11], +"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#ab06b11f407fbb407139235fc84325de2":[2,0,0,1,14,13], +"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#ab11f7f3e24f855d690f6f7d820ed7479":[2,0,0,1,14,22], +"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#ab7a4af76a1d56ad401274ecad80d16c5":[2,0,0,1,14,26], +"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#ac515dabcf6c094c5eeb2bf88aa3aa9d3":[2,0,0,1,14,20], +"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#acca1d633219d245edba9135c80a90610":[2,0,0,1,14,5], +"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aedef4e8784c8a3edb06b0f2821500552":[2,0,0,1,14,12], +"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#afa21ac4d45a6474afc1bc594486ed8e2":[2,0,0,1,14,16], +"classGpgFrontend_1_1UI_1_1TOFUInfoPage.html":[2,0,0,1,61], +"classGpgFrontend_1_1UI_1_1TOFUInfoPage.html#a9adc1666e3f57536594876520019e395":[2,0,0,1,61,0], +"classGpgFrontend_1_1UI_1_1TextEdit.html":[2,0,0,1,60], +"classGpgFrontend_1_1UI_1_1TextEdit.html#a02fa44ba0c56f3f6ae125f8490faf254":[2,0,0,1,60,27], +"classGpgFrontend_1_1UI_1_1TextEdit.html#a05c54658597b04c3976c72d3a5f9add9":[2,0,0,1,60,36], +"classGpgFrontend_1_1UI_1_1TextEdit.html#a0f1c7997b1cd56045091e5c9677f5d0e":[2,0,0,1,60,0], +"classGpgFrontend_1_1UI_1_1TextEdit.html#a12f65fbc4984c266a5df4505ecde7c42":[2,0,0,1,60,8], +"classGpgFrontend_1_1UI_1_1TextEdit.html#a15335d38187ddf580b7200d856768cfb":[2,0,0,1,60,20], +"classGpgFrontend_1_1UI_1_1TextEdit.html#a1bf57ebe1e32b12c48bb633b7dd7a4f1":[2,0,0,1,60,9], +"classGpgFrontend_1_1UI_1_1TextEdit.html#a1d8948316e9231f50809e6fb9b337546":[2,0,0,1,60,40], +"classGpgFrontend_1_1UI_1_1TextEdit.html#a32327f592965d8922eb7095af117336d":[2,0,0,1,60,34], +"classGpgFrontend_1_1UI_1_1TextEdit.html#a3599bd01636a873cf3437ab6b9d38780":[2,0,0,1,60,11], +"classGpgFrontend_1_1UI_1_1TextEdit.html#a3c17fdf3abf9c4fb6ce35cfb8f0f8fc4":[2,0,0,1,60,17], +"classGpgFrontend_1_1UI_1_1TextEdit.html#a3c976a5494d06c2186d94e7cc8ebe457":[2,0,0,1,60,5], +"classGpgFrontend_1_1UI_1_1TextEdit.html#a48351dc1529da3b8da311f65b735b5f1":[2,0,0,1,60,13], +"classGpgFrontend_1_1UI_1_1TextEdit.html#a4a81e69f6dc74ea649ca9a2358342fd5":[2,0,0,1,60,32], +"classGpgFrontend_1_1UI_1_1TextEdit.html#a576e06390e65576465297d2ab8d7d474":[2,0,0,1,60,30], +"classGpgFrontend_1_1UI_1_1TextEdit.html#a57a46ab5595622ae0b7bceef7d56bd7c":[2,0,0,1,60,18], +"classGpgFrontend_1_1UI_1_1TextEdit.html#a60c73cc66a48a38c13e7890de49e86c3":[2,0,0,1,60,21], "classGpgFrontend_1_1UI_1_1TextEdit.html#a66b6f6633e7ac71e5fe8b7814a81cadf":[2,0,0,1,60,6], -"classGpgFrontend_1_1UI_1_1TextEdit.html#a6a02fce9dc4039c982d6dd19231517ee":[2,0,0,1,60,23], -"classGpgFrontend_1_1UI_1_1TextEdit.html#a6c814253dfc061bfdae0fa71c6196c55":[2,0,0,1,60,27], +"classGpgFrontend_1_1UI_1_1TextEdit.html#a6a02fce9dc4039c982d6dd19231517ee":[2,0,0,1,60,24], +"classGpgFrontend_1_1UI_1_1TextEdit.html#a6c814253dfc061bfdae0fa71c6196c55":[2,0,0,1,60,28], "classGpgFrontend_1_1UI_1_1TextEdit.html#a72014409d407c161b048e07c061b4cf9":[2,0,0,1,60,12], -"classGpgFrontend_1_1UI_1_1TextEdit.html#a725048d1c6de8ed7ba29062afa72767b":[2,0,0,1,60,38], +"classGpgFrontend_1_1UI_1_1TextEdit.html#a725048d1c6de8ed7ba29062afa72767b":[2,0,0,1,60,39], "classGpgFrontend_1_1UI_1_1TextEdit.html#a72ed46454c833adb038c36d8d4322d18":[2,0,0,1,60,3], -"classGpgFrontend_1_1UI_1_1TextEdit.html#a747d3740a88295e6c9565788d4cf56ec":[2,0,0,1,60,37], +"classGpgFrontend_1_1UI_1_1TextEdit.html#a747d3740a88295e6c9565788d4cf56ec":[2,0,0,1,60,38], "classGpgFrontend_1_1UI_1_1TextEdit.html#a7aa1230fbf796225bd6b83d381e11a3b":[2,0,0,1,60,2], -"classGpgFrontend_1_1UI_1_1TextEdit.html#a82fe98d45f54909ebea933b540367c39":[2,0,0,1,60,36], +"classGpgFrontend_1_1UI_1_1TextEdit.html#a7fc06cc343339ddf9a8ab0b006ba2aec":[2,0,0,1,60,19], +"classGpgFrontend_1_1UI_1_1TextEdit.html#a82fe98d45f54909ebea933b540367c39":[2,0,0,1,60,37], "classGpgFrontend_1_1UI_1_1TextEdit.html#a8fad090a19479a9fe89432300cca2b6c":[2,0,0,1,60,4], "classGpgFrontend_1_1UI_1_1TextEdit.html#aa21659aa7acba98dfd6286d69e00ab9b":[2,0,0,1,60,10], -"classGpgFrontend_1_1UI_1_1TextEdit.html#aa2230418dc8f72c400f5a90082a983c9":[2,0,0,1,60,21], +"classGpgFrontend_1_1UI_1_1TextEdit.html#aa2230418dc8f72c400f5a90082a983c9":[2,0,0,1,60,22], "classGpgFrontend_1_1UI_1_1TextEdit.html#aa30daf558cb85bbdcad55a805a106109":[2,0,0,1,60,1], -"classGpgFrontend_1_1UI_1_1TextEdit.html#ab24adc1adb3b9b29469992e4c444436e":[2,0,0,1,60,28], -"classGpgFrontend_1_1UI_1_1TextEdit.html#ac9e2fb3d6ebb721f03416aa2da5e1fd1":[2,0,0,1,60,32], -"classGpgFrontend_1_1UI_1_1TextEdit.html#ace0b8f4c161db9f4f5db5ecbfd7a91c0":[2,0,0,1,60,25], -"classGpgFrontend_1_1UI_1_1TextEdit.html#adca2bbfa746b5598f2a4f74026b84224":[2,0,0,1,60,22], +"classGpgFrontend_1_1UI_1_1TextEdit.html#ab24adc1adb3b9b29469992e4c444436e":[2,0,0,1,60,29], +"classGpgFrontend_1_1UI_1_1TextEdit.html#ac9e2fb3d6ebb721f03416aa2da5e1fd1":[2,0,0,1,60,33], +"classGpgFrontend_1_1UI_1_1TextEdit.html#ace0b8f4c161db9f4f5db5ecbfd7a91c0":[2,0,0,1,60,26], +"classGpgFrontend_1_1UI_1_1TextEdit.html#adca2bbfa746b5598f2a4f74026b84224":[2,0,0,1,60,23], "classGpgFrontend_1_1UI_1_1TextEdit.html#ae1e710c6722910b8d35df97aaabb3162":[2,0,0,1,60,14], "classGpgFrontend_1_1UI_1_1TextEdit.html#ae22ecadf31648f424eb8ab86bd28ef39":[2,0,0,1,60,16], -"classGpgFrontend_1_1UI_1_1TextEdit.html#ae2b3bf422789d56087face98b6a9e929":[2,0,0,1,60,24], +"classGpgFrontend_1_1UI_1_1TextEdit.html#ae2b3bf422789d56087face98b6a9e929":[2,0,0,1,60,25], "classGpgFrontend_1_1UI_1_1TextEdit.html#aeb2048d8028907d521f5f35c077832c2":[2,0,0,1,60,7], -"classGpgFrontend_1_1UI_1_1TextEdit.html#af1e364b513f566c743a5d36c19098762":[2,0,0,1,60,30], +"classGpgFrontend_1_1UI_1_1TextEdit.html#af1e364b513f566c743a5d36c19098762":[2,0,0,1,60,31], "classGpgFrontend_1_1UI_1_1TextEdit.html#af466ec2b8ab3f695d206efc0574bbe20":[2,0,0,1,60,15], -"classGpgFrontend_1_1UI_1_1TextEdit.html#afb9b7a7d88154d774b3d727d8e640cbb":[2,0,0,1,60,34], +"classGpgFrontend_1_1UI_1_1TextEdit.html#afb9b7a7d88154d774b3d727d8e640cbb":[2,0,0,1,60,35], "classGpgFrontend_1_1UI_1_1TranslatorsTab.html":[2,0,0,1,5], "classGpgFrontend_1_1UI_1_1TranslatorsTab.html#a89e5c7b9c17fb41b7c7bf461fb8ad99e":[2,0,0,1,5,0], "classGpgFrontend_1_1UI_1_1UpdateTab.html":[2,0,0,1,6], @@ -103,8 +149,8 @@ var NAVTREEINDEX6 = "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], "functions.html":[2,3,0,0], +"functions.html":[2,3,0], "functions_a.html":[2,3,0,1], "functions_b.html":[2,3,0,2], "functions_c.html":[2,3,0,3], @@ -154,100 +200,54 @@ 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,54], -"namespaceGpgFrontend.html#a1194ef197102807cf31a6e27fdd47e07":[1,0,0,92], -"namespaceGpgFrontend.html#a17ea01393928cb8638564cdd787151e4":[1,0,0,97], -"namespaceGpgFrontend.html#a1872f20a465ea6a482065996abab2c95":[1,0,0,65], -"namespaceGpgFrontend.html#a2470eb154743191c3454203f23d3a2f8":[1,0,0,53], -"namespaceGpgFrontend.html#a2a0394c8bdd277f5235f9875a1d69a99":[1,0,0,94], -"namespaceGpgFrontend.html#a2a6566f59b4be29e453a1edd93f6a337":[1,0,0,77], -"namespaceGpgFrontend.html#a3aa61e484a9f2e198119af82662fe68f":[1,0,0,91], -"namespaceGpgFrontend.html#a3c488625b949d2ac26315996b4b881e9":[1,0,0,58], -"namespaceGpgFrontend.html#a3d735ed2f15dbf638cfa508daba16e5b":[1,0,0,69], -"namespaceGpgFrontend.html#a4edac6df92596ba8eea3a8cdc1173684":[1,0,0,84], -"namespaceGpgFrontend.html#a5135069571678eda9c1f07d17ed9ac41":[1,0,0,95], -"namespaceGpgFrontend.html#a54baa8d3ea3843c907a7644a85cb9699":[1,0,0,75], -"namespaceGpgFrontend.html#a5a2f5fc1ad3de55e41a1b7a388821328":[1,0,0,86], -"namespaceGpgFrontend.html#a5c172444c7aacf11b2f8b2ebe72fb053":[1,0,0,87], -"namespaceGpgFrontend.html#a6df12217c02df87356b3276fa08df3b8":[1,0,0,55], -"namespaceGpgFrontend.html#a719a7945f8e6af4aa6446883a8847f48":[1,0,0,57], -"namespaceGpgFrontend.html#a734ec65953e9b8fe39b7d76b42c7d9e5":[1,0,0,49], -"namespaceGpgFrontend.html#a73f3e2217fb1d72dc75f266e11875f6d":[1,0,0,90], -"namespaceGpgFrontend.html#a74d7d03c9b8231bc13f199fb06204fca":[1,0,0,50], -"namespaceGpgFrontend.html#a77d0c0a6b959437c89b069df9a97c194":[1,0,0,60], -"namespaceGpgFrontend.html#a788cd2c216e4867a676920da22d4f49d":[1,0,0,61], -"namespaceGpgFrontend.html#a78f78409fbd7963376da60f7e5c0dba9":[1,0,0,51], -"namespaceGpgFrontend.html#a8454f6586944c55018f7745c22d281d2":[1,0,0,68], -"namespaceGpgFrontend.html#a88afb4fc90777c981345a4a702df8672":[1,0,0,72], -"namespaceGpgFrontend.html#a8d00b92300e229303fcf42e99fb77278":[1,0,0,73], -"namespaceGpgFrontend.html#a8fe8112cc97385961a3f6a18129ea789":[1,0,0,67], -"namespaceGpgFrontend.html#a93c0ac9e329baa602e0bfdee7ea1273f":[1,0,0,63], -"namespaceGpgFrontend.html#a953722e5ef4bbc71b42a4f821f00b737":[1,0,0,74], -"namespaceGpgFrontend.html#a99b4f5a3b9f7a379a79c37ba8fff93af":[1,0,0,56], -"namespaceGpgFrontend.html#a9e0e33d7737ab41ab80422134e659bb3":[1,0,0,96], -"namespaceGpgFrontend.html#aa8f86425050122fc627c1a793c2d1f80":[1,0,0,71], -"namespaceGpgFrontend.html#aaf7ddbd50cd4f16b7d2a997c03b20933":[1,0,0,76], -"namespaceGpgFrontend.html#aafb9aa0ba1d03afa09085b1b8136c55f":[1,0,0,89], -"namespaceGpgFrontend.html#ab0a0bf1c3231a455c85f5604f4ff219a":[1,0,0,48], -"namespaceGpgFrontend.html#ab19bf8acd65218045313b120cf72333e":[1,0,0,59], -"namespaceGpgFrontend.html#ab4a865228be071282d2a08e66ef6cb68":[1,0,0,88], -"namespaceGpgFrontend.html#ab9e8650a71965e35cb6a763dbf61a048":[1,0,0,62], -"namespaceGpgFrontend.html#abdc336cc966afe6c1523cb7751cac9f8":[1,0,0,66], -"namespaceGpgFrontend.html#ac35a1eb416146226f5c6446ab61dbc82":[1,0,0,64], -"namespaceGpgFrontend.html#ac494a4b0d91e08a70db77a399c9a0f30":[1,0,0,81], -"namespaceGpgFrontend.html#acb5dd82fc7d0428bafe34ed304dc15d1":[1,0,0,79], -"namespaceGpgFrontend.html#acff2cf5dd5b112b324fa6574ee935f79":[1,0,0,85], -"namespaceGpgFrontend.html#ad8f79b76997875f0588a77340a34d2a1":[1,0,0,70], -"namespaceGpgFrontend.html#ada6a044ece8975e35b2a229f65249713":[1,0,0,47], -"namespaceGpgFrontend.html#adf0fbe100c3ea1bf2f33bc0f55dfff17":[1,0,0,83], -"namespaceGpgFrontend.html#ae060b7e70b7898c1239f372b55bac640":[1,0,0,52], -"namespaceGpgFrontend.html#ae3f2947210ad3e11269ebac355f47492":[1,0,0,80], -"namespaceGpgFrontend.html#aeeebf38d3337a0772e682bddaff88ff4":[1,0,0,93], -"namespaceGpgFrontend.html#af909eb3cf2690d23939e394a461e48e9":[1,0,0,78], -"namespaceGpgFrontend.html#afdad4e5f4c3ac891c09216e245c0f48e":[1,0,0,82], -"namespaceGpgFrontend_1_1RawAPI.html":[1,0,0,0], -"namespaceGpgFrontend_1_1RawAPI.html#a1f2f6c82e9c904c3875a123a65564697":[1,0,0,0,2], -"namespaceGpgFrontend_1_1RawAPI.html#a2e388ecafc7b859eda84b4e3c4e2576f":[1,0,0,0,0], -"namespaceGpgFrontend_1_1RawAPI.html#aa2bc88cf78b8da893f1b5c7e2e8ccf42":[1,0,0,0,1], -"namespaceGpgFrontend_1_1Thread.html":[1,0,0,1], -"namespaceGpgFrontend_1_1UI.html":[1,0,0,2], -"namespaceGpgFrontend_1_1UI.html#a157c74e50283da9ed554cf7bf90afbee":[1,0,0,2,67], -"namespaceGpgFrontend_1_1UI.html#a204156a333cde4f705f0ace91cd3d333":[1,0,0,2,77], -"namespaceGpgFrontend_1_1UI.html#a3c971eeb5c620d08d6d92f0752ceaf9f":[1,0,0,2,73], -"namespaceGpgFrontend_1_1UI.html#a4dea2a35c4dbc3868317beb26d4508fc":[1,0,0,2,71], -"namespaceGpgFrontend_1_1UI.html#a4f6c9bfe9ecb5da132f2f6d2ba7eeb80":[1,0,0,2,64], -"namespaceGpgFrontend_1_1UI.html#a5470872566b41ce628f64039f34b964a":[1,0,0,2,72], -"namespaceGpgFrontend_1_1UI.html#a57d0a4dba23cd3d9b42222d40c710dc1":[1,0,0,2,76], -"namespaceGpgFrontend_1_1UI.html#a590a26051105940a6d6e0743b147e281":[1,0,0,2,79], -"namespaceGpgFrontend_1_1UI.html#a60b5887adabc74015700795dc3c07ae9":[1,0,0,2,75], -"namespaceGpgFrontend_1_1UI.html#a75ce194e83468251e5f443cedebd8e3c":[1,0,0,2,70], -"namespaceGpgFrontend_1_1UI.html#a834d05cb1918760d1a9c5a67aa3a7da3":[1,0,0,2,68], -"namespaceGpgFrontend_1_1UI.html#a9ab218dde057182cb4911c4792acd925":[1,0,0,2,66], -"namespaceGpgFrontend_1_1UI.html#a9e2d085812ef8fdd6f19ea94a241b4da":[1,0,0,2,78], -"namespaceGpgFrontend_1_1UI.html#aa346bd199cecc61b15ef406728b58770":[1,0,0,2,65], -"namespaceGpgFrontend_1_1UI.html#ab0311557c1d7bde9c56cbca85fefa6ad":[1,0,0,2,69], -"namespaceGpgFrontend_1_1UI.html#abd3c7c636954390d52150b4e6d38e1b3":[1,0,0,2,74], -"namespaceGpgFrontend_1_1UI.html#acbaebd342a317b1f067942e5144bb00d":[1,0,0,2,63], -"namespaceGpgFrontend_1_1UI.html#acbaebd342a317b1f067942e5144bb00da3af9444bf2929ab4b80b863da415cd69":[1,0,0,2,63,1], -"namespaceGpgFrontend_1_1UI.html#acbaebd342a317b1f067942e5144bb00da64c9ad5698bff378b442691d32b2efb6":[1,0,0,2,63,2], -"namespaceGpgFrontend_1_1UI.html#acbaebd342a317b1f067942e5144bb00dad42d12553e87485f9eada4819c9d3315":[1,0,0,2,63,3], -"namespaceGpgFrontend_1_1UI.html#acbaebd342a317b1f067942e5144bb00dad9f9b62d50036c2f35892e1ca67bdde2":[1,0,0,2,63,0], -"namespaceGpgFrontend_1_1UI.html#afaa12ab40cfca0bc8c9c8e2d24116a9d":[1,0,0,2,80], -"namespacemembers.html":[1,1,0], -"namespacemembers_enum.html":[1,1,2], -"namespacemembers_func.html":[1,1,1], -"namespaces.html":[1,0], -"pages.html":[], -"structGpgFrontend_1_1ArchiveStruct.html":[2,0,0,3], -"structGpgFrontend_1_1ArchiveStruct.html#a1ecfc9b7c9978678e8184745ea9f5c53":[2,0,0,3,4], -"structGpgFrontend_1_1ArchiveStruct.html#a223cd7e27abc6918325fbef9dc46f274":[2,0,0,3,3], -"structGpgFrontend_1_1ArchiveStruct.html#a9fc8525095022554d3a043687aa0a584":[2,0,0,3,0], -"structGpgFrontend_1_1ArchiveStruct.html#aa79e4e87c8d56b298295286476c6652e":[2,0,0,3,1], -"structGpgFrontend_1_1ArchiveStruct.html#ad5f08b098598491641e55941a128fb38":[2,0,0,3,2], -"structGpgFrontend_1_1GpgContextInitArgs.html":[2,0,0,31], -"structGpgFrontend_1_1GpgContextInitArgs.html#a0a1de4b848ff87da9a6650fdbac82fa7":[2,0,0,31,4], -"structGpgFrontend_1_1GpgContextInitArgs.html#a0ab27875287142f6c72bb7cc7e7bc271":[2,0,0,31,0] +"namespaceGpgFrontend.html#a02576f9b3647baec8e7f6dacf9411b46":[1,0,0,55], +"namespaceGpgFrontend.html#a1194ef197102807cf31a6e27fdd47e07":[1,0,0,93], +"namespaceGpgFrontend.html#a17ea01393928cb8638564cdd787151e4":[1,0,0,98], +"namespaceGpgFrontend.html#a1872f20a465ea6a482065996abab2c95":[1,0,0,66], +"namespaceGpgFrontend.html#a2470eb154743191c3454203f23d3a2f8":[1,0,0,54], +"namespaceGpgFrontend.html#a2a0394c8bdd277f5235f9875a1d69a99":[1,0,0,95], +"namespaceGpgFrontend.html#a2a6566f59b4be29e453a1edd93f6a337":[1,0,0,78], +"namespaceGpgFrontend.html#a3aa61e484a9f2e198119af82662fe68f":[1,0,0,92], +"namespaceGpgFrontend.html#a3c488625b949d2ac26315996b4b881e9":[1,0,0,59], +"namespaceGpgFrontend.html#a3d735ed2f15dbf638cfa508daba16e5b":[1,0,0,70], +"namespaceGpgFrontend.html#a4edac6df92596ba8eea3a8cdc1173684":[1,0,0,85], +"namespaceGpgFrontend.html#a5135069571678eda9c1f07d17ed9ac41":[1,0,0,96], +"namespaceGpgFrontend.html#a54baa8d3ea3843c907a7644a85cb9699":[1,0,0,76], +"namespaceGpgFrontend.html#a5a2f5fc1ad3de55e41a1b7a388821328":[1,0,0,87], +"namespaceGpgFrontend.html#a5c172444c7aacf11b2f8b2ebe72fb053":[1,0,0,88], +"namespaceGpgFrontend.html#a6df12217c02df87356b3276fa08df3b8":[1,0,0,56], +"namespaceGpgFrontend.html#a719a7945f8e6af4aa6446883a8847f48":[1,0,0,58], +"namespaceGpgFrontend.html#a734ec65953e9b8fe39b7d76b42c7d9e5":[1,0,0,50], +"namespaceGpgFrontend.html#a73f3e2217fb1d72dc75f266e11875f6d":[1,0,0,91], +"namespaceGpgFrontend.html#a74d7d03c9b8231bc13f199fb06204fca":[1,0,0,51], +"namespaceGpgFrontend.html#a77d0c0a6b959437c89b069df9a97c194":[1,0,0,61], +"namespaceGpgFrontend.html#a788cd2c216e4867a676920da22d4f49d":[1,0,0,62], +"namespaceGpgFrontend.html#a78f78409fbd7963376da60f7e5c0dba9":[1,0,0,52], +"namespaceGpgFrontend.html#a8454f6586944c55018f7745c22d281d2":[1,0,0,69], +"namespaceGpgFrontend.html#a88afb4fc90777c981345a4a702df8672":[1,0,0,73], +"namespaceGpgFrontend.html#a8d00b92300e229303fcf42e99fb77278":[1,0,0,74], +"namespaceGpgFrontend.html#a8fe8112cc97385961a3f6a18129ea789":[1,0,0,68], +"namespaceGpgFrontend.html#a93c0ac9e329baa602e0bfdee7ea1273f":[1,0,0,64], +"namespaceGpgFrontend.html#a953722e5ef4bbc71b42a4f821f00b737":[1,0,0,75], +"namespaceGpgFrontend.html#a99b4f5a3b9f7a379a79c37ba8fff93af":[1,0,0,57], +"namespaceGpgFrontend.html#a9e0e33d7737ab41ab80422134e659bb3":[1,0,0,97], +"namespaceGpgFrontend.html#aa8f86425050122fc627c1a793c2d1f80":[1,0,0,72], +"namespaceGpgFrontend.html#aaf7ddbd50cd4f16b7d2a997c03b20933":[1,0,0,77], +"namespaceGpgFrontend.html#aafb9aa0ba1d03afa09085b1b8136c55f":[1,0,0,90], +"namespaceGpgFrontend.html#ab0a0bf1c3231a455c85f5604f4ff219a":[1,0,0,49], +"namespaceGpgFrontend.html#ab19bf8acd65218045313b120cf72333e":[1,0,0,60], +"namespaceGpgFrontend.html#ab4a865228be071282d2a08e66ef6cb68":[1,0,0,89], +"namespaceGpgFrontend.html#ab9e8650a71965e35cb6a763dbf61a048":[1,0,0,63], +"namespaceGpgFrontend.html#abdc336cc966afe6c1523cb7751cac9f8":[1,0,0,67], +"namespaceGpgFrontend.html#ac35a1eb416146226f5c6446ab61dbc82":[1,0,0,65], +"namespaceGpgFrontend.html#ac494a4b0d91e08a70db77a399c9a0f30":[1,0,0,82], +"namespaceGpgFrontend.html#acb5dd82fc7d0428bafe34ed304dc15d1":[1,0,0,80], +"namespaceGpgFrontend.html#acff2cf5dd5b112b324fa6574ee935f79":[1,0,0,86], +"namespaceGpgFrontend.html#ad8f79b76997875f0588a77340a34d2a1":[1,0,0,71], +"namespaceGpgFrontend.html#ada6a044ece8975e35b2a229f65249713":[1,0,0,48], +"namespaceGpgFrontend.html#adf0fbe100c3ea1bf2f33bc0f55dfff17":[1,0,0,84], +"namespaceGpgFrontend.html#ae060b7e70b7898c1239f372b55bac640":[1,0,0,53] }; diff --git a/docs/html/navtreeindex7.js b/docs/html/navtreeindex7.js index 2b272f10..aeaceba9 100644 --- a/docs/html/navtreeindex7.js +++ b/docs/html/navtreeindex7.js @@ -1,36 +1,82 @@ var NAVTREEINDEX7 = { -"structGpgFrontend_1_1GpgContextInitArgs.html#a12e9e2e6ad393864a4b2d85727350edc":[2,0,0,31,2], -"structGpgFrontend_1_1GpgContextInitArgs.html#a25ca282a0a82ed7aa4cb677a86f53eef":[2,0,0,31,10], -"structGpgFrontend_1_1GpgContextInitArgs.html#a2b09f18f4f10ca44370ed204d19de122":[2,0,0,31,11], -"structGpgFrontend_1_1GpgContextInitArgs.html#a33cd883333581952ae49784ae86edae7":[2,0,0,31,9], -"structGpgFrontend_1_1GpgContextInitArgs.html#a646fd830375ccf3b69ea64ede0c76f52":[2,0,0,31,1], -"structGpgFrontend_1_1GpgContextInitArgs.html#a825d8c5daced5eb06be1a949ae0eadfd":[2,0,0,31,7], -"structGpgFrontend_1_1GpgContextInitArgs.html#a90fc544dd70fa9e3cf4951b9a54efc22":[2,0,0,31,6], -"structGpgFrontend_1_1GpgContextInitArgs.html#aa46e72b29dd89211f468047f45a7a31d":[2,0,0,31,3], -"structGpgFrontend_1_1GpgContextInitArgs.html#aa850fc1db1cc8f3daae78a0fcefb2fdb":[2,0,0,31,5], -"structGpgFrontend_1_1GpgContextInitArgs.html#ac2679300c14d3f0ce29625a267054e6b":[2,0,0,31,8], -"structGpgFrontend_1_1GpgContext_1_1__ctx__ref__deleter.html":[2,0,0,32,0], -"structGpgFrontend_1_1GpgContext_1_1__ctx__ref__deleter.html#a1975ed97838072cf98bd80eef72fd3a8":[2,0,0,32,0,0], -"structGpgFrontend_1_1GpgData_1_1__data__ref__deleter.html":[2,0,0,39,0], -"structGpgFrontend_1_1GpgData_1_1__data__ref__deleter.html#a1dec67f70f17e45e7f78a92414d05485":[2,0,0,39,0,0], -"structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html":[2,0,0,19,0], -"structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html#a032442a3b9e65411cca885dbc48fc051":[2,0,0,19,0,8], -"structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html#a190bdac3d0b71d25a1b7c933d54d803f":[2,0,0,19,0,9], -"structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html#a345c63f8868e3f674aa7b35977a54f28":[2,0,0,19,0,3], -"structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html#a36e09cfc03ac7c3a4a02ba91e2ab324a":[2,0,0,19,0,4], -"structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html#a51b6a0532770053d82898d51e8c6564f":[2,0,0,19,0,12], -"structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html#a742df2dfca6697d70fd0366c85a2e9ab":[2,0,0,19,0,2], -"structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html#a93424679542c04dbe0094d93789ec28e":[2,0,0,19,0,13], -"structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html#a94c9441aa2583ce99cb94a8b46a1740b":[2,0,0,19,0,0], -"structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html#a95521fc49f2e1d1a7304472dc1897375":[2,0,0,19,0,7], -"structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html#abf2b62099a5db5d878dacf2272d081cc":[2,0,0,19,0,6], -"structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html#ad5e858f2cd13d4aa52ab99aa76687f80":[2,0,0,19,0,5], -"structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html#ad7f02df3199da0fe15bf7af74e21002b":[2,0,0,19,0,11], -"structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html#aeb932ebd78e9c004e8539a0f403c6410":[2,0,0,19,0,10], -"structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html#afeda3da9e04fc8121946bcaa36fa6a7b":[2,0,0,19,0,1], -"structGpgFrontend_1_1GpgKey_1_1__key__ref__deleter.html":[2,0,0,40,0], -"structGpgFrontend_1_1GpgKey_1_1__key__ref__deleter.html#a9427ebabbbae929fe1489a2e8534c752":[2,0,0,40,0,0], +"namespaceGpgFrontend.html#ae3f2947210ad3e11269ebac355f47492":[1,0,0,81], +"namespaceGpgFrontend.html#aeeebf38d3337a0772e682bddaff88ff4":[1,0,0,94], +"namespaceGpgFrontend.html#af909eb3cf2690d23939e394a461e48e9":[1,0,0,79], +"namespaceGpgFrontend.html#afdad4e5f4c3ac891c09216e245c0f48e":[1,0,0,83], +"namespaceGpgFrontend_1_1RawAPI.html":[1,0,0,0], +"namespaceGpgFrontend_1_1RawAPI.html#a1f2f6c82e9c904c3875a123a65564697":[1,0,0,0,2], +"namespaceGpgFrontend_1_1RawAPI.html#a2e388ecafc7b859eda84b4e3c4e2576f":[1,0,0,0,0], +"namespaceGpgFrontend_1_1RawAPI.html#aa2bc88cf78b8da893f1b5c7e2e8ccf42":[1,0,0,0,1], +"namespaceGpgFrontend_1_1Thread.html":[1,0,0,1], +"namespaceGpgFrontend_1_1UI.html":[1,0,0,2], +"namespaceGpgFrontend_1_1UI.html#a157c74e50283da9ed554cf7bf90afbee":[1,0,0,2,67], +"namespaceGpgFrontend_1_1UI.html#a204156a333cde4f705f0ace91cd3d333":[1,0,0,2,77], +"namespaceGpgFrontend_1_1UI.html#a3c971eeb5c620d08d6d92f0752ceaf9f":[1,0,0,2,73], +"namespaceGpgFrontend_1_1UI.html#a4dea2a35c4dbc3868317beb26d4508fc":[1,0,0,2,71], +"namespaceGpgFrontend_1_1UI.html#a4f6c9bfe9ecb5da132f2f6d2ba7eeb80":[1,0,0,2,64], +"namespaceGpgFrontend_1_1UI.html#a5470872566b41ce628f64039f34b964a":[1,0,0,2,72], +"namespaceGpgFrontend_1_1UI.html#a57d0a4dba23cd3d9b42222d40c710dc1":[1,0,0,2,76], +"namespaceGpgFrontend_1_1UI.html#a590a26051105940a6d6e0743b147e281":[1,0,0,2,79], +"namespaceGpgFrontend_1_1UI.html#a60b5887adabc74015700795dc3c07ae9":[1,0,0,2,75], +"namespaceGpgFrontend_1_1UI.html#a75ce194e83468251e5f443cedebd8e3c":[1,0,0,2,70], +"namespaceGpgFrontend_1_1UI.html#a834d05cb1918760d1a9c5a67aa3a7da3":[1,0,0,2,68], +"namespaceGpgFrontend_1_1UI.html#a9ab218dde057182cb4911c4792acd925":[1,0,0,2,66], +"namespaceGpgFrontend_1_1UI.html#a9e2d085812ef8fdd6f19ea94a241b4da":[1,0,0,2,78], +"namespaceGpgFrontend_1_1UI.html#aa346bd199cecc61b15ef406728b58770":[1,0,0,2,65], +"namespaceGpgFrontend_1_1UI.html#ab0311557c1d7bde9c56cbca85fefa6ad":[1,0,0,2,69], +"namespaceGpgFrontend_1_1UI.html#abd3c7c636954390d52150b4e6d38e1b3":[1,0,0,2,74], +"namespaceGpgFrontend_1_1UI.html#acbaebd342a317b1f067942e5144bb00d":[1,0,0,2,63], +"namespaceGpgFrontend_1_1UI.html#acbaebd342a317b1f067942e5144bb00da3af9444bf2929ab4b80b863da415cd69":[1,0,0,2,63,1], +"namespaceGpgFrontend_1_1UI.html#acbaebd342a317b1f067942e5144bb00da64c9ad5698bff378b442691d32b2efb6":[1,0,0,2,63,2], +"namespaceGpgFrontend_1_1UI.html#acbaebd342a317b1f067942e5144bb00dad42d12553e87485f9eada4819c9d3315":[1,0,0,2,63,3], +"namespaceGpgFrontend_1_1UI.html#acbaebd342a317b1f067942e5144bb00dad9f9b62d50036c2f35892e1ca67bdde2":[1,0,0,2,63,0], +"namespaceGpgFrontend_1_1UI.html#afaa12ab40cfca0bc8c9c8e2d24116a9d":[1,0,0,2,80], +"namespacemembers.html":[1,1,0], +"namespacemembers_enum.html":[1,1,2], +"namespacemembers_func.html":[1,1,1], +"namespaces.html":[1,0], +"pages.html":[], +"structGpgFrontend_1_1ArchiveStruct.html":[2,0,0,3], +"structGpgFrontend_1_1ArchiveStruct.html#a1ecfc9b7c9978678e8184745ea9f5c53":[2,0,0,3,4], +"structGpgFrontend_1_1ArchiveStruct.html#a223cd7e27abc6918325fbef9dc46f274":[2,0,0,3,3], +"structGpgFrontend_1_1ArchiveStruct.html#a9fc8525095022554d3a043687aa0a584":[2,0,0,3,0], +"structGpgFrontend_1_1ArchiveStruct.html#aa79e4e87c8d56b298295286476c6652e":[2,0,0,3,1], +"structGpgFrontend_1_1ArchiveStruct.html#ad5f08b098598491641e55941a128fb38":[2,0,0,3,2], +"structGpgFrontend_1_1GpgContextInitArgs.html":[2,0,0,32], +"structGpgFrontend_1_1GpgContextInitArgs.html#a0a1de4b848ff87da9a6650fdbac82fa7":[2,0,0,32,4], +"structGpgFrontend_1_1GpgContextInitArgs.html#a0ab27875287142f6c72bb7cc7e7bc271":[2,0,0,32,0], +"structGpgFrontend_1_1GpgContextInitArgs.html#a12e9e2e6ad393864a4b2d85727350edc":[2,0,0,32,2], +"structGpgFrontend_1_1GpgContextInitArgs.html#a25ca282a0a82ed7aa4cb677a86f53eef":[2,0,0,32,10], +"structGpgFrontend_1_1GpgContextInitArgs.html#a2b09f18f4f10ca44370ed204d19de122":[2,0,0,32,11], +"structGpgFrontend_1_1GpgContextInitArgs.html#a33cd883333581952ae49784ae86edae7":[2,0,0,32,9], +"structGpgFrontend_1_1GpgContextInitArgs.html#a646fd830375ccf3b69ea64ede0c76f52":[2,0,0,32,1], +"structGpgFrontend_1_1GpgContextInitArgs.html#a825d8c5daced5eb06be1a949ae0eadfd":[2,0,0,32,7], +"structGpgFrontend_1_1GpgContextInitArgs.html#a90fc544dd70fa9e3cf4951b9a54efc22":[2,0,0,32,6], +"structGpgFrontend_1_1GpgContextInitArgs.html#aa46e72b29dd89211f468047f45a7a31d":[2,0,0,32,3], +"structGpgFrontend_1_1GpgContextInitArgs.html#aa850fc1db1cc8f3daae78a0fcefb2fdb":[2,0,0,32,5], +"structGpgFrontend_1_1GpgContextInitArgs.html#ac2679300c14d3f0ce29625a267054e6b":[2,0,0,32,8], +"structGpgFrontend_1_1GpgContext_1_1__ctx__ref__deleter.html":[2,0,0,33,0], +"structGpgFrontend_1_1GpgContext_1_1__ctx__ref__deleter.html#a1975ed97838072cf98bd80eef72fd3a8":[2,0,0,33,0,0], +"structGpgFrontend_1_1GpgData_1_1__data__ref__deleter.html":[2,0,0,40,0], +"structGpgFrontend_1_1GpgData_1_1__data__ref__deleter.html#a1dec67f70f17e45e7f78a92414d05485":[2,0,0,40,0,0], +"structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html":[2,0,0,20,0], +"structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html#a032442a3b9e65411cca885dbc48fc051":[2,0,0,20,0,8], +"structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html#a190bdac3d0b71d25a1b7c933d54d803f":[2,0,0,20,0,9], +"structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html#a345c63f8868e3f674aa7b35977a54f28":[2,0,0,20,0,3], +"structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html#a36e09cfc03ac7c3a4a02ba91e2ab324a":[2,0,0,20,0,4], +"structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html#a51b6a0532770053d82898d51e8c6564f":[2,0,0,20,0,12], +"structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html#a742df2dfca6697d70fd0366c85a2e9ab":[2,0,0,20,0,2], +"structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html#a93424679542c04dbe0094d93789ec28e":[2,0,0,20,0,13], +"structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html#a94c9441aa2583ce99cb94a8b46a1740b":[2,0,0,20,0,0], +"structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html#a95521fc49f2e1d1a7304472dc1897375":[2,0,0,20,0,7], +"structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html#abf2b62099a5db5d878dacf2272d081cc":[2,0,0,20,0,6], +"structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html#ad5e858f2cd13d4aa52ab99aa76687f80":[2,0,0,20,0,5], +"structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html#ad7f02df3199da0fe15bf7af74e21002b":[2,0,0,20,0,11], +"structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html#aeb932ebd78e9c004e8539a0f403c6410":[2,0,0,20,0,10], +"structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html#afeda3da9e04fc8121946bcaa36fa6a7b":[2,0,0,20,0,1], +"structGpgFrontend_1_1GpgKey_1_1__key__ref__deleter.html":[2,0,0,41,0], +"structGpgFrontend_1_1GpgKey_1_1__key__ref__deleter.html#a9427ebabbbae929fe1489a2e8534c752":[2,0,0,41,0,0], "structGpgFrontend_1_1Thread_1_1Task_1_1DataObject_1_1Destructor.html":[2,0,0,0,1,0,0], "structGpgFrontend_1_1Thread_1_1Task_1_1DataObject_1_1Destructor.html#aba3f92e7f17c8decee760e7bdec52126":[2,0,0,0,1,0,0,1], "structGpgFrontend_1_1Thread_1_1Task_1_1DataObject_1_1Destructor.html#ac30a4018fa2e6fd5702bbb21ff069ad4":[2,0,0,0,1,0,0,0], @@ -52,22 +98,28 @@ var NAVTREEINDEX7 = "structGpgFrontend_1_1UI_1_1KeyMenuAbility.html#a2ff7f5aeea6e8791d69cd0656489d6eb":[2,0,0,1,56,2], "structGpgFrontend_1_1UI_1_1KeyMenuAbility.html#a33bef35c7c6c67f6a2b0ed9dfda8fcad":[2,0,0,1,56,1], "structGpgFrontend_1_1UI_1_1KeyMenuAbility.html#a3e3f324385c69f3848297c5c60eb8012":[2,0,0,1,56,4], -"structGpgFrontend_1_1UI_1_1KeyMenuAbility.html#a632b87f5c86b4bb76e1af350f053107a":[2,0,0,1,56,6], +"structGpgFrontend_1_1UI_1_1KeyMenuAbility.html#a632b87f5c86b4bb76e1af350f053107a":[2,0,0,1,56,7], "structGpgFrontend_1_1UI_1_1KeyMenuAbility.html#aa256cb1cde47d898011f49bb8a6d9820":[2,0,0,1,56,0], -"structGpgFrontend_1_1UI_1_1KeyMenuAbility.html#af28d1d7fbfc66aea550f98db5a2a582b":[2,0,0,1,56,5], +"structGpgFrontend_1_1UI_1_1KeyMenuAbility.html#ac88b3fd3271c347593b75f33f134eb4d":[2,0,0,1,56,5], +"structGpgFrontend_1_1UI_1_1KeyMenuAbility.html#af28d1d7fbfc66aea550f98db5a2a582b":[2,0,0,1,56,6], "structGpgFrontend_1_1UI_1_1KeyTable.html":[2,0,0,1,57], -"structGpgFrontend_1_1UI_1_1KeyTable.html#a0719f023069e0f6e29db20b6cd0cf5ea":[2,0,0,1,57,5], -"structGpgFrontend_1_1UI_1_1KeyTable.html#a5bce4bf0dc41ac05390a4f93da8b8985":[2,0,0,1,57,10], -"structGpgFrontend_1_1UI_1_1KeyTable.html#a77eba4055ecb7d32fab06f65b80ae07e":[2,0,0,1,57,2], -"structGpgFrontend_1_1UI_1_1KeyTable.html#a880d24a22ef291667e6d6c76a487fc57":[2,0,0,1,57,8], -"structGpgFrontend_1_1UI_1_1KeyTable.html#a88606ba6954d60244faf38de419bfc47":[2,0,0,1,57,0], -"structGpgFrontend_1_1UI_1_1KeyTable.html#a9ef84e0b2d9146b962ca4ca79e7f0e9c":[2,0,0,1,57,1], -"structGpgFrontend_1_1UI_1_1KeyTable.html#aaac381e205c323444098803e0295060f":[2,0,0,1,57,3], -"structGpgFrontend_1_1UI_1_1KeyTable.html#ab0aee9ed16af04048f456abddb4dc007":[2,0,0,1,57,11], -"structGpgFrontend_1_1UI_1_1KeyTable.html#adb59ac00683aec02344804ae8c5670a5":[2,0,0,1,57,6], -"structGpgFrontend_1_1UI_1_1KeyTable.html#add3529625d70c3aa37f3d8cdc3bb8c63":[2,0,0,1,57,7], -"structGpgFrontend_1_1UI_1_1KeyTable.html#ae0713ebbc21e78995db9a856d746fe6c":[2,0,0,1,57,4], -"structGpgFrontend_1_1UI_1_1KeyTable.html#aeb37ccd5436993b7f1dd33667a36551e":[2,0,0,1,57,9], +"structGpgFrontend_1_1UI_1_1KeyTable.html#a053be2a4f9d8594128d5400f4cc215aa":[2,0,0,1,57,15], +"structGpgFrontend_1_1UI_1_1KeyTable.html#a0719f023069e0f6e29db20b6cd0cf5ea":[2,0,0,1,57,8], +"structGpgFrontend_1_1UI_1_1KeyTable.html#a1560962e3a6eac5f042ba4963f439f15":[2,0,0,1,57,12], +"structGpgFrontend_1_1UI_1_1KeyTable.html#a5bce4bf0dc41ac05390a4f93da8b8985":[2,0,0,1,57,14], +"structGpgFrontend_1_1UI_1_1KeyTable.html#a77eba4055ecb7d32fab06f65b80ae07e":[2,0,0,1,57,3], +"structGpgFrontend_1_1UI_1_1KeyTable.html#a9ef84e0b2d9146b962ca4ca79e7f0e9c":[2,0,0,1,57,2], +"structGpgFrontend_1_1UI_1_1KeyTable.html#aaac381e205c323444098803e0295060f":[2,0,0,1,57,4], +"structGpgFrontend_1_1UI_1_1KeyTable.html#aabc2e7dc05edc85834179da6ac4c846d":[2,0,0,1,57,6], +"structGpgFrontend_1_1UI_1_1KeyTable.html#aacf3e9cf2ec39a47033d274ccf35911a":[2,0,0,1,57,7], +"structGpgFrontend_1_1UI_1_1KeyTable.html#ab0aee9ed16af04048f456abddb4dc007":[2,0,0,1,57,16], +"structGpgFrontend_1_1UI_1_1KeyTable.html#ab54360c35b11c469d708b5f57030ed41":[2,0,0,1,57,9], +"structGpgFrontend_1_1UI_1_1KeyTable.html#adb59ac00683aec02344804ae8c5670a5":[2,0,0,1,57,10], +"structGpgFrontend_1_1UI_1_1KeyTable.html#add3529625d70c3aa37f3d8cdc3bb8c63":[2,0,0,1,57,11], +"structGpgFrontend_1_1UI_1_1KeyTable.html#ae0713ebbc21e78995db9a856d746fe6c":[2,0,0,1,57,5], +"structGpgFrontend_1_1UI_1_1KeyTable.html#ae78160011d93abc43a1ca0f28c2ad943":[2,0,0,1,57,1], +"structGpgFrontend_1_1UI_1_1KeyTable.html#ae99f56db14e21d673535cd34af74b22b":[2,0,0,1,57,0], +"structGpgFrontend_1_1UI_1_1KeyTable.html#aeb37ccd5436993b7f1dd33667a36551e":[2,0,0,1,57,13], "structGpgFrontend_1_1UI_1_1MainWindow_1_1CryptoMenu.html":[2,0,0,1,40,0], "structGpgFrontend_1_1UI_1_1MainWindow_1_1CryptoMenu.html#a093ff65776f48511a2af0959a007cf1f":[2,0,0,1,40,0,7], "structGpgFrontend_1_1UI_1_1MainWindow_1_1CryptoMenu.html#a0e1d3d999bd2699a2e332f4e07ead822":[2,0,0,1,40,0,3], @@ -93,6 +145,6 @@ var NAVTREEINDEX7 = "structGpgFrontend_1_1UI_1_1SoftwareVersion.html#acf891516bea76422e8144047eab6964a":[2,0,0,1,43,8], "structGpgFrontend_1_1UI_1_1SoftwareVersion.html#ae1989b6a34c76103f4bd06f35686d536":[2,0,0,1,43,3], "structGpgFrontend_1_1UI_1_1SoftwareVersion.html#aec79eefdc19c90e046cb48bca347ff1c":[2,0,0,1,43,1], -"structGpgFrontend_1_1__result__ref__deletor.html":[2,0,0,29], -"structGpgFrontend_1_1__result__ref__deletor.html#afc545b56a9d45cb1ed455e0d93c30880":[2,0,0,29,0] +"structGpgFrontend_1_1__result__ref__deletor.html":[2,0,0,30], +"structGpgFrontend_1_1__result__ref__deletor.html#afc545b56a9d45cb1ed455e0d93c30880":[2,0,0,30,0] }; diff --git a/docs/html/search/all_1.js b/docs/html/search/all_1.js index de7cfb56..caecfb23 100644 --- a/docs/html/search/all_1.js +++ b/docs/html/search/all_1.js @@ -4,7 +4,7 @@ var searchData= ['aboutdialog_8',['AboutDialog',['../classGpgFrontend_1_1UI_1_1AboutDialog.html#ab04683ab4c4d682af1e259705c60d85a',1,'GpgFrontend::UI::AboutDialog::AboutDialog()'],['../classGpgFrontend_1_1UI_1_1AboutDialog.html',1,'GpgFrontend::UI::AboutDialog']]], ['add_5fpgp_5fheader_5fact_5f_9',['add_pgp_header_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a95b2c86afbefe47e79af87e56032e306',1,'GpgFrontend::UI::MainWindow']]], ['additional_5fuid_5fbox_5f_10',['additional_uid_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a265ef140feec330e7341c1369c0aefab',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['addlistgrouptab_11',['AddListGroupTab',['../classGpgFrontend_1_1UI_1_1KeyList.html#a73ddb7feb1f70eac44e038c3dc925fec',1,'GpgFrontend::UI::KeyList']]], + ['addlistgrouptab_11',['AddListGroupTab',['../classGpgFrontend_1_1UI_1_1KeyList.html#ab8663d18901d10c00dbcc0ba852b3bf4',1,'GpgFrontend::UI::KeyList']]], ['addmenuaction_12',['AddMenuAction',['../classGpgFrontend_1_1UI_1_1KeyList.html#aa961e3ba3c48f84dea4bb7ab4f756886',1,'GpgFrontend::UI::KeyList']]], ['addoptionalaction_13',['AddOptionalAction',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a456f15315a03107f7757d84362c1af71',1,'GpgFrontend::UI::InfoBoardWidget']]], ['adduid_14',['AddUID',['../classGpgFrontend_1_1GpgUIDOperator.html#a672bbf74abac9140233c4e1c7864d15d',1,'GpgFrontend::GpgUIDOperator::AddUID(const GpgKey &key, const std::string &name, const std::string &comment, const std::string &email)'],['../classGpgFrontend_1_1GpgUIDOperator.html#a7c0de570de59d4ebc6c0bed681119bf7',1,'GpgFrontend::GpgUIDOperator::AddUID(const GpgKey &key, const std::string &uid)']]], diff --git a/docs/html/search/all_10.js b/docs/html/search/all_10.js index a369cea5..8a3bee4e 100644 --- a/docs/html/search/all_10.js +++ b/docs/html/search/all_10.js @@ -1,6 +1,6 @@ var searchData= [ - ['quit_5fact_5f_472',['quit_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#abe0683e48485f9fcff622d9519c37ed9',1,'GpgFrontend::UI::MainWindow']]], - ['quitdialog_473',['QuitDialog',['../classGpgFrontend_1_1UI_1_1QuitDialog.html',1,'GpgFrontend::UI::QuitDialog'],['../classGpgFrontend_1_1UI_1_1QuitDialog.html#a60419bf8e817db25128c2f941fc42a3d',1,'GpgFrontend::UI::QuitDialog::QuitDialog()']]], - ['quote_5fact_5f_474',['quote_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af9640e5732c2595d0c094e7ff7e371ac',1,'GpgFrontend::UI::MainWindow']]] + ['quit_5fact_5f_473',['quit_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#abe0683e48485f9fcff622d9519c37ed9',1,'GpgFrontend::UI::MainWindow']]], + ['quitdialog_474',['QuitDialog',['../classGpgFrontend_1_1UI_1_1QuitDialog.html',1,'GpgFrontend::UI::QuitDialog'],['../classGpgFrontend_1_1UI_1_1QuitDialog.html#a60419bf8e817db25128c2f941fc42a3d',1,'GpgFrontend::UI::QuitDialog::QuitDialog()']]], + ['quote_5fact_5f_475',['quote_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af9640e5732c2595d0c094e7ff7e371ac',1,'GpgFrontend::UI::MainWindow']]] ]; diff --git a/docs/html/search/all_11.js b/docs/html/search/all_11.js index d9481b97..6d4b97ff 100644 --- a/docs/html/search/all_11.js +++ b/docs/html/search/all_11.js @@ -1,25 +1,25 @@ var searchData= [ - ['rd_5f_475',['rd_',['../classGpgFrontend_1_1PassphraseGenerator.html#a12ee6f9b7fff4883074321c7e0de3dfa',1,'GpgFrontend::PassphraseGenerator::rd_()'],['../classGpgFrontend_1_1DataObjectOperator.html#a24c9cdbe9256e332ac93d6dc28c76b90',1,'GpgFrontend::DataObjectOperator::rd_()']]], - ['read2buffer_476',['Read2Buffer',['../classGpgFrontend_1_1GpgData.html#ae382a34ec551561315deca84c71c19c1',1,'GpgFrontend::GpgData']]], - ['read_5fall_5fdata_5fin_5ffile_477',['read_all_data_in_file',['../namespaceGpgFrontend.html#a73f3e2217fb1d72dc75f266e11875f6d',1,'GpgFrontend']]], - ['readdone_478',['ReadDone',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#ac1902b063decfeebe7f0908cbfe618ce',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['readfile_479',['ReadFile',['../classGpgFrontend_1_1FileOperator.html#a28a3572dc01192b6a4d50b544181084c',1,'GpgFrontend::FileOperator']]], - ['readfilestd_480',['ReadFileStd',['../classGpgFrontend_1_1FileOperator.html#ad4424bce4f22ae75a16c542dfb4ddf0a',1,'GpgFrontend::FileOperator']]], - ['redo_5fact_5f_481',['redo_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#abe38474d4e81726147f9df8a9721ce6e',1,'GpgFrontend::UI::MainWindow']]], - ['refresh_482',['Refresh',['../structGpgFrontend_1_1UI_1_1KeyTable.html#aaac381e205c323444098803e0295060f',1,'GpgFrontend::UI::KeyTable']]], - ['refresh_5finfo_5fboard_483',['refresh_info_board',['../namespaceGpgFrontend_1_1UI.html#a204156a333cde4f705f0ace91cd3d333',1,'GpgFrontend::UI']]], - ['refresh_5fkeys_5ffrom_5fkey_5fserver_484',['refresh_keys_from_key_server',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adfa3b3ae1de1fd04c5ea09e3c97c3e98',1,'GpgFrontend::UI::MainWindow']]], - ['refresh_5fwidgets_5fstate_485',['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_486',['ReleaseChannel',['../classGpgFrontend_1_1SingletonStorage.html#adb22cc80a1ab040b6e4bce962625edfd',1,'GpgFrontend::SingletonStorage::ReleaseChannel()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#ab49b1d50252e1934691a9483a6df2106',1,'GpgFrontend::SingletonFunctionObject::ReleaseChannel()']]], - ['reloadgpgcomponents_487',['ReloadGpgComponents',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a6876b6ee63ff7147c274e4f9538d29ce',1,'GpgFrontend::GpgAdvancedOperator']]], - ['resetconfigures_488',['ResetConfigures',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a209f6d1d664ab672437198dc10ed8226',1,'GpgFrontend::GpgAdvancedOperator']]], - ['resetoptionactionsmenu_489',['ResetOptionActionsMenu',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a7d7504339221bd680fb18698dd829b32',1,'GpgFrontend::UI::InfoBoardWidget']]], - ['resettempcachevalue_490',['ResetTempCacheValue',['../classGpgFrontend_1_1CoreCommonUtil.html#ae2df4542d0d7d15a542f9c664f1f295f',1,'GpgFrontend::CoreCommonUtil']]], - ['restartgpgcomponents_491',['RestartGpgComponents',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a5801bf4ea7391cbcc60efd2513d41041',1,'GpgFrontend::GpgAdvancedOperator']]], - ['restore_5fsettings_492',['restore_settings',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a210ab31f4d949a50507d0690c0d1598a',1,'GpgFrontend::UI::MainWindow']]], - ['revsign_493',['RevSign',['../classGpgFrontend_1_1GpgKeyManager.html#aa2c0e804db1c4aaf3b861ee5ab54ebd8',1,'GpgFrontend::GpgKeyManager']]], - ['revuid_494',['RevUID',['../classGpgFrontend_1_1GpgUIDOperator.html#a47f762666afbc806365877ff70947841',1,'GpgFrontend::GpgUIDOperator']]], - ['run_495',['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()']]], - ['rungpgfrontendui_496',['RunGpgFrontendUI',['../namespaceGpgFrontend_1_1UI.html#a9e2d085812ef8fdd6f19ea94a241b4da',1,'GpgFrontend::UI']]] + ['rd_5f_476',['rd_',['../classGpgFrontend_1_1PassphraseGenerator.html#a12ee6f9b7fff4883074321c7e0de3dfa',1,'GpgFrontend::PassphraseGenerator::rd_()'],['../classGpgFrontend_1_1DataObjectOperator.html#a24c9cdbe9256e332ac93d6dc28c76b90',1,'GpgFrontend::DataObjectOperator::rd_()']]], + ['read2buffer_477',['Read2Buffer',['../classGpgFrontend_1_1GpgData.html#ae382a34ec551561315deca84c71c19c1',1,'GpgFrontend::GpgData']]], + ['read_5fall_5fdata_5fin_5ffile_478',['read_all_data_in_file',['../namespaceGpgFrontend.html#a73f3e2217fb1d72dc75f266e11875f6d',1,'GpgFrontend']]], + ['readdone_479',['ReadDone',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#ac1902b063decfeebe7f0908cbfe618ce',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['readfile_480',['ReadFile',['../classGpgFrontend_1_1FileOperator.html#a28a3572dc01192b6a4d50b544181084c',1,'GpgFrontend::FileOperator']]], + ['readfilestd_481',['ReadFileStd',['../classGpgFrontend_1_1FileOperator.html#ad4424bce4f22ae75a16c542dfb4ddf0a',1,'GpgFrontend::FileOperator']]], + ['redo_5fact_5f_482',['redo_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#abe38474d4e81726147f9df8a9721ce6e',1,'GpgFrontend::UI::MainWindow']]], + ['refresh_483',['Refresh',['../structGpgFrontend_1_1UI_1_1KeyTable.html#aaac381e205c323444098803e0295060f',1,'GpgFrontend::UI::KeyTable']]], + ['refresh_5finfo_5fboard_484',['refresh_info_board',['../namespaceGpgFrontend_1_1UI.html#a204156a333cde4f705f0ace91cd3d333',1,'GpgFrontend::UI']]], + ['refresh_5fkeys_5ffrom_5fkey_5fserver_485',['refresh_keys_from_key_server',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adfa3b3ae1de1fd04c5ea09e3c97c3e98',1,'GpgFrontend::UI::MainWindow']]], + ['refresh_5fwidgets_5fstate_486',['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_487',['ReleaseChannel',['../classGpgFrontend_1_1SingletonStorage.html#adb22cc80a1ab040b6e4bce962625edfd',1,'GpgFrontend::SingletonStorage::ReleaseChannel()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#ab49b1d50252e1934691a9483a6df2106',1,'GpgFrontend::SingletonFunctionObject::ReleaseChannel()']]], + ['reloadgpgcomponents_488',['ReloadGpgComponents',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a6876b6ee63ff7147c274e4f9538d29ce',1,'GpgFrontend::GpgAdvancedOperator']]], + ['resetconfigures_489',['ResetConfigures',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a209f6d1d664ab672437198dc10ed8226',1,'GpgFrontend::GpgAdvancedOperator']]], + ['resetoptionactionsmenu_490',['ResetOptionActionsMenu',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a7d7504339221bd680fb18698dd829b32',1,'GpgFrontend::UI::InfoBoardWidget']]], + ['resettempcachevalue_491',['ResetTempCacheValue',['../classGpgFrontend_1_1CoreCommonUtil.html#ae2df4542d0d7d15a542f9c664f1f295f',1,'GpgFrontend::CoreCommonUtil']]], + ['restartgpgcomponents_492',['RestartGpgComponents',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a5801bf4ea7391cbcc60efd2513d41041',1,'GpgFrontend::GpgAdvancedOperator']]], + ['restore_5fsettings_493',['restore_settings',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a210ab31f4d949a50507d0690c0d1598a',1,'GpgFrontend::UI::MainWindow']]], + ['revsign_494',['RevSign',['../classGpgFrontend_1_1GpgKeyManager.html#aa2c0e804db1c4aaf3b861ee5ab54ebd8',1,'GpgFrontend::GpgKeyManager']]], + ['revuid_495',['RevUID',['../classGpgFrontend_1_1GpgUIDOperator.html#a47f762666afbc806365877ff70947841',1,'GpgFrontend::GpgUIDOperator']]], + ['run_496',['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()']]], + ['rungpgfrontendui_497',['RunGpgFrontendUI',['../namespaceGpgFrontend_1_1UI.html#a9e2d085812ef8fdd6f19ea94a241b4da',1,'GpgFrontend::UI']]] ]; diff --git a/docs/html/search/all_12.js b/docs/html/search/all_12.js index 916afcc8..6b2788df 100644 --- a/docs/html/search/all_12.js +++ b/docs/html/search/all_12.js @@ -1,10 +1,9 @@ var searchData= [ - ['save_5fact_5f_497',['save_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab0f148559d830fcf10b5a1937b0a47dc',1,'GpgFrontend::UI::MainWindow']]], - ['save_5fas_5fact_5f_498',['save_as_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a22256763ef83ed35a81e446b553d8112',1,'GpgFrontend::UI::MainWindow']]], - ['save_5ffile_499',['save_file',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a66b6f6633e7ac71e5fe8b7814a81cadf',1,'GpgFrontend::UI::TextEdit']]], - ['save_5fsettings_500',['save_settings',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7a4b6490038470a8849231e48282da98',1,'GpgFrontend::UI::MainWindow']]], - ['savecache_501',['SaveCache',['../classGpgFrontend_1_1CacheManager.html#a3cbc3238638dcd8b4722bfdf560c73fe',1,'GpgFrontend::CacheManager']]], + ['save_5fact_5f_498',['save_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab0f148559d830fcf10b5a1937b0a47dc',1,'GpgFrontend::UI::MainWindow']]], + ['save_5fas_5fact_5f_499',['save_as_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a22256763ef83ed35a81e446b553d8112',1,'GpgFrontend::UI::MainWindow']]], + ['save_5ffile_500',['save_file',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a66b6f6633e7ac71e5fe8b7814a81cadf',1,'GpgFrontend::UI::TextEdit']]], + ['save_5fsettings_501',['save_settings',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7a4b6490038470a8849231e48282da98',1,'GpgFrontend::UI::MainWindow']]], ['select_5fall_5fact_5f_502',['select_all_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ac6a42e6e3af7e76f0bd2ecc62c9520cc',1,'GpgFrontend::UI::MainWindow']]], ['sequency_5f_503',['sequency_',['../classGpgFrontend_1_1Thread_1_1Task.html#a71ed097a2c4b4b735fd385dfe87e6f57',1,'GpgFrontend::Thread::Task']]], ['set_5fbackground_504',['set_background',['../classGpgFrontend_1_1UI_1_1FindWidget.html#a0c531f2c673caed29225a323e750205f',1,'GpgFrontend::UI::FindWidget']]], @@ -40,7 +39,7 @@ var searchData= ['setpassphrasecb_534',['SetPassphraseCb',['../classGpgFrontend_1_1GpgContext.html#a3399fc60086ff5010a089bff48bbc63c',1,'GpgFrontend::GpgContext']]], ['setprimaryuid_535',['SetPrimaryUID',['../classGpgFrontend_1_1GpgUIDOperator.html#acbdabec97df508382b0c9b1fffbf1dd5',1,'GpgFrontend::GpgUIDOperator']]], ['setrtn_536',['SetRTN',['../classGpgFrontend_1_1Thread_1_1Task.html#aa6d702417bdd6a88c447ed6a457fa098',1,'GpgFrontend::Thread::Task']]], - ['setsettings_537',['SetSettings',['../classGpgFrontend_1_1UI_1_1GeneralTab.html#a7b26d8a088ce8f50b1fd0e719e38534b',1,'GpgFrontend::UI::GeneralTab::SetSettings()'],['../classGpgFrontend_1_1UI_1_1NetworkTab.html#a51cd114731899b6480cc1b6d5a80826a',1,'GpgFrontend::UI::NetworkTab::SetSettings()'],['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#a221117b56dda48956e44d96a08f6823b',1,'GpgFrontend::UI::KeyserverTab::SetSettings()'],['../classGpgFrontend_1_1UI_1_1AppearanceTab.html#a2fed39a2657407fcdb37d2431ef28e56',1,'GpgFrontend::UI::AppearanceTab::SetSettings()']]], + ['setsettings_537',['SetSettings',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html#a2fed39a2657407fcdb37d2431ef28e56',1,'GpgFrontend::UI::AppearanceTab::SetSettings()'],['../classGpgFrontend_1_1UI_1_1NetworkTab.html#a51cd114731899b6480cc1b6d5a80826a',1,'GpgFrontend::UI::NetworkTab::SetSettings()'],['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#a221117b56dda48956e44d96a08f6823b',1,'GpgFrontend::UI::KeyserverTab::SetSettings()'],['../classGpgFrontend_1_1UI_1_1GeneralTab.html#a7b26d8a088ce8f50b1fd0e719e38534b',1,'GpgFrontend::UI::GeneralTab::SetSettings()']]], ['setsigners_538',['SetSigners',['../classGpgFrontend_1_1GpgBasicOperator.html#ad6ea3596ba7d7543fb1b8233d09996df',1,'GpgFrontend::GpgBasicOperator']]], ['settempcachevalue_539',['SetTempCacheValue',['../classGpgFrontend_1_1CoreCommonUtil.html#abe5fa8731b0b672613505d59a576a3d7',1,'GpgFrontend::CoreCommonUtil']]], ['settingsdialog_540',['SettingsDialog',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html',1,'GpgFrontend::UI::SettingsDialog'],['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#a1b7ddc7861d1b4b9dc3810ed98023ffc',1,'GpgFrontend::UI::SettingsDialog::SettingsDialog()']]], @@ -75,124 +74,125 @@ var searchData= ['signfile_569',['SignFile',['../classGpgFrontend_1_1GpgFileOpera.html#a350df1c07c054625c4755a78e6ca5ca8',1,'GpgFrontend::GpgFileOpera']]], ['signkey_570',['SignKey',['../classGpgFrontend_1_1GpgKeyManager.html#a12138780c53add7589f78f056019e5e0',1,'GpgFrontend::GpgKeyManager']]], ['singletonfunctionobject_571',['SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend::SingletonFunctionObject< T >'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a02e76b42ab51d77588b01c7508bed258',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject()=default'],['../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#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_572',['SingletonFunctionObject< DataObjectOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20globalsettingstation_20_3e_573',['SingletonFunctionObject< GlobalSettingStation >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgadvancedoperator_20_3e_574',['SingletonFunctionObject< GpgAdvancedOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgbasicoperator_20_3e_575',['SingletonFunctionObject< GpgBasicOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgcommandexecutor_20_3e_576',['SingletonFunctionObject< GpgCommandExecutor >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgcontext_20_3e_577',['SingletonFunctionObject< GpgContext >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgfileopera_20_3e_578',['SingletonFunctionObject< GpgFileOpera >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgkeygetter_20_3e_579',['SingletonFunctionObject< GpgKeyGetter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgkeyimportexporter_20_3e_580',['SingletonFunctionObject< GpgKeyImportExporter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgkeymanager_20_3e_581',['SingletonFunctionObject< GpgKeyManager >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgkeyopera_20_3e_582',['SingletonFunctionObject< GpgKeyOpera >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpguidoperator_20_3e_583',['SingletonFunctionObject< GpgUIDOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20passphrasegenerator_20_3e_584',['SingletonFunctionObject< PassphraseGenerator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20taskrunnergetter_20_3e_585',['SingletonFunctionObject< TaskRunnerGetter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonstorage_586',['SingletonStorage',['../classGpgFrontend_1_1SingletonStorage.html',1,'GpgFrontend']]], - ['singletonstoragecollection_587',['SingletonStorageCollection',['../classGpgFrontend_1_1SingletonStorageCollection.html',1,'GpgFrontend']]], - ['slot_5factivated_5fkey_5ftype_588',['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_589',['slot_add_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a821247d738457c4ee046162aad6728f9',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fadd_5fuid_5fresult_590',['slot_add_uid_result',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a16f1ae88d6a417b614cfc6ae1852187c',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['slot_5fappend_5fselected_5fkeys_591',['slot_append_selected_keys',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a76bf3784d751db78ed13bd9962e14472',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fauthentication_5fbox_5fchanged_592',['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_593',['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_594',['slot_clean_double_line_breaks',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aea9274389c3b049793fe5aa5a6adf63c',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fcompress_5ffiles_595',['slot_compress_files',['../classGpgFrontend_1_1UI_1_1FilePage.html#a250b1950f874c1d11549cd5c0ea9693f',1,'GpgFrontend::UI::FilePage']]], - ['slot_5fcopy_5fdefault_5fuid_5fto_5fclipboard_596',['slot_copy_default_uid_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3982432b140738859415e487e2c5f5eb',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fcopy_5ffingerprint_597',['slot_copy_fingerprint',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#af8b600fbd7cd0fbb5b6183403bf870b2',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['slot_5fcopy_5fkey_5fid_5fto_5fclipboard_598',['slot_copy_key_id_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9e2ddb2135df42d76134bea168fbdce9',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fcopy_5fmail_5faddress_5fto_5fclipboard_599',['slot_copy_mail_address_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af93d72eaf58326f1f9e926752c6b1fc6',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fcreate_5fnew_5fuid_600',['slot_create_new_uid',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a4e115ce46a85c2f9e4e0e2427839fc7c',1,'GpgFrontend::UI::KeyNewUIDDialog']]], - ['slot_5fcut_5fpgp_5fheader_601',['slot_cut_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7f5a88922d06bee977335fb4b5f1d86d',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fdecrypt_602',['slot_decrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae2d89e2cc6c99ff0e16b396d2381f904',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fdecrypt_5fverify_603',['slot_decrypt_verify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1d61ea803e6c825bd54f42ba9ae85919',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fdisable_5ftab_5factions_604',['slot_disable_tab_actions',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a24a0b0d974fc5f8fdda60c128a82d957',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fdouble_5fclicked_605',['slot_double_clicked',['../classGpgFrontend_1_1UI_1_1KeyList.html#a69e54f06d546d516a0dcdf1055b8028e',1,'GpgFrontend::UI::KeyList']]], - ['slot_5fencrypt_606',['slot_encrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae11d01211c2914ecc148e13dd7de506e',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fencrypt_5fsign_607',['slot_encrypt_sign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a304efe91afa31b32725caa00c27475a4',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fencryption_5fbox_5fchanged_608',['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_609',['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_610',['slot_export_private_key',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a384f4250e58110da58c0e6996b42a8ab',1,'GpgFrontend::UI::KeyPairOperaTab']]], - ['slot_5ffile_5ftree_5fview_5fitem_5fclicked_611',['slot_file_tree_view_item_clicked',['../classGpgFrontend_1_1UI_1_1FilePage.html#a676917817d6f519e043742d1d87f97f1',1,'GpgFrontend::UI::FilePage']]], - ['slot_5ffile_5ftree_5fview_5fitem_5fdouble_5fclicked_612',['slot_file_tree_view_item_double_clicked',['../classGpgFrontend_1_1UI_1_1FilePage.html#ad3c54320bdafbbb2c06a20d6c7dea9d6',1,'GpgFrontend::UI::FilePage']]], - ['slot_5ffind_613',['slot_find',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae28089efbd236708601470f30f26faaa',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fformat_5fgpg_5fheader_614',['slot_format_gpg_header',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a45267bcfc8fc83851894061c0fe2a9c2',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['slot_5fimport_615',['slot_import',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ac9c14bbc97945c94fd02c8e067ccab06',1,'GpgFrontend::UI::KeyServerImportDialog']]], - ['slot_5fimport_5ffinished_616',['slot_import_finished',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a6f1c5238da7cd6f117bed8018469b37a',1,'GpgFrontend::UI::KeyServerImportDialog']]], - ['slot_5fimport_5fkey_5ffrom_5fedit_617',['slot_import_key_from_edit',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a55926649e28a96318b89afba01b966bf',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5finsert_5ftext_618',['slot_insert_text',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a184985104f23da8fdf2b9aaf7b27405b',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['slot_5fjump_5fpage_619',['slot_jump_page',['../classGpgFrontend_1_1UI_1_1ChoosePage.html#af0d7890fe65385b7785719b9cff0718b',1,'GpgFrontend::UI::ChoosePage']]], - ['slot_5fkey_5fgen_5faccept_620',['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_621',['slot_non_expired_checked',['../classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#adde2b33bd17f521f0630702987b1d274',1,'GpgFrontend::UI::KeySetExpireDateDialog']]], - ['slot_5fopen_5ffile_5ftab_622',['slot_open_file_tab',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a29a811d4d440c79c1bd2cc2bb40cdf7e',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fopen_5fkey_5fmanagement_623',['slot_open_key_management',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a16ddebec90a4bd0d13baa9d972c3445f',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fopen_5fsettings_5fdialog_624',['slot_open_settings_dialog',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a874b505fbc1046f579a736683f5a7f65',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fopen_5furl_625',['slot_open_url',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a51ff99077a75507365307f5dd783df99',1,'GpgFrontend::UI::HelpPage']]], - ['slot_5fprocess_5fnetwork_5freply_626',['slot_process_network_reply',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#af9350e0a8d5993e5be0a5478fcb161be',1,'GpgFrontend::UI::ListedKeyServerTestTask']]], - ['slot_5fremove_5ftab_627',['slot_remove_tab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a12f65fbc4984c266a5df4505ecde7c42',1,'GpgFrontend::UI::TextEdit']]], - ['slot_5fsave_5fstatus_5fto_5fcache_5ffor_5frevovery_628',['slot_save_status_to_cache_for_revovery',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a1bf57ebe1e32b12c48bb633b7dd7a4f1',1,'GpgFrontend::UI::TextEdit']]], - ['slot_5fset_5frestart_5fneeded_629',['slot_set_restart_needed',['../classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html#a2bb963a14733cf9b99736b6624c09d83',1,'GpgFrontend::UI::GnuPGControllerDialog::slot_set_restart_needed()'],['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#acc6b4386de554fce6fbb60ac6d201952',1,'GpgFrontend::UI::SettingsDialog::slot_set_restart_needed()']]], - ['slot_5fshow_5fkey_5fdetails_630',['slot_show_key_details',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a033d448541b44fa48b76dec828a4eb0e',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fshow_5fversion_5fstatus_631',['slot_show_version_status',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a1003bd969ecbc5deba940e39436968f4',1,'GpgFrontend::UI::UpdateTab']]], - ['slot_5fsign_632',['slot_sign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3f3d03b0ec22385bee559fbd2aeb881b',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fsign_5fkey_633',['slot_sign_key',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#a82f6bf641ff3b64341a0bdcf76571c43',1,'GpgFrontend::UI::KeyUIDSignDialog']]], - ['slot_5fsigning_5fbox_5fchanged_634',['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_635',['slot_start_wizard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aabf3ddf6b624790369f164b4889c95be',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fupdate_5fkey_5fstatus_636',['slot_update_key_status',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#ab4ac26378d6a07757720163eb4b1cb0e',1,'GpgFrontend::UI::CommonUtils']]], - ['slot_5fupload_5fkey_5fto_5fserver_637',['slot_upload_key_to_server',['../classGpgFrontend_1_1UI_1_1KeyUploadDialog.html#a0f724649ca953b888f07d69c97fe45b6',1,'GpgFrontend::UI::KeyUploadDialog']]], - ['slot_5fverify_638',['slot_verify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa9c986dd95984811479ea93230c74b5d',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fversion_5fupgrade_639',['slot_version_upgrade',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a48368c77af7b1f4cb632870b8d914a28',1,'GpgFrontend::UI::MainWindow']]], - ['slotclosetab_640',['SlotCloseTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa21659aa7acba98dfd6286d69e00ab9b',1,'GpgFrontend::UI::TextEdit']]], - ['slotcopy_641',['SlotCopy',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3599bd01636a873cf3437ab6b9d38780',1,'GpgFrontend::UI::TextEdit']]], - ['slotcurpagefiletreeview_642',['SlotCurPageFileTreeView',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a72014409d407c161b048e07c061b4cf9',1,'GpgFrontend::UI::TextEdit']]], - ['slotcurpagetextedit_643',['SlotCurPageTextEdit',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a48351dc1529da3b8da311f65b735b5f1',1,'GpgFrontend::UI::TextEdit']]], - ['slotcut_644',['SlotCut',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae1e710c6722910b8d35df97aaabb3162',1,'GpgFrontend::UI::TextEdit']]], - ['slotexecutecommand_645',['SlotExecuteCommand',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a95cd625a2e0e74ee4d564843c6d16791',1,'GpgFrontend::UI::CommonUtils']]], - ['slotexecutegpgcommand_646',['SlotExecuteGpgCommand',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#afc845c1c37487c99f78d8e66f6874f6d',1,'GpgFrontend::UI::CommonUtils']]], - ['slotfiledecrypt_647',['SlotFileDecrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0a6d0618f2835a6dcae707a4ca770a48',1,'GpgFrontend::UI::MainWindow']]], - ['slotfiledecryptverify_648',['SlotFileDecryptVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab23c7e67dd1f5295b3c49ad79dfd5919',1,'GpgFrontend::UI::MainWindow']]], - ['slotfileencrypt_649',['SlotFileEncrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9ec699536a35a37961a8c6da1e231ae3',1,'GpgFrontend::UI::MainWindow']]], - ['slotfileencryptsign_650',['SlotFileEncryptSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a25a2e4017d77cffc8362bde9606fad30',1,'GpgFrontend::UI::MainWindow']]], - ['slotfilesign_651',['SlotFileSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8bcdcbe678b8dc0837fffda2ebfe79bf',1,'GpgFrontend::UI::MainWindow']]], - ['slotfileverify_652',['SlotFileVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9879061cfd321c6757c77f75d46dc7d8',1,'GpgFrontend::UI::MainWindow']]], - ['slotfilltexteditwithtext_653',['SlotFillTextEditWithText',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af466ec2b8ab3f695d206efc0574bbe20',1,'GpgFrontend::UI::TextEdit']]], - ['slotimport_654',['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_655',['SlotImportKeyFromClipboard',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a0c8bf56fc5371cd2c5e9d2a0f67bf72a',1,'GpgFrontend::UI::CommonUtils']]], - ['slotimportkeyfromfile_656',['SlotImportKeyFromFile',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a057526790f6b2f6288c3a35322c34d8d',1,'GpgFrontend::UI::CommonUtils']]], - ['slotimportkeyfromkeyserver_657',['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_658',['SlotImportKeys',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a3bc26cc1e0f00f0ce2f95c0b6c8778d8',1,'GpgFrontend::UI::CommonUtils']]], - ['slotnewfiletab_659',['SlotNewFileTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae22ecadf31648f424eb8ab86bd28ef39',1,'GpgFrontend::UI::TextEdit']]], - ['slotnewhelptab_660',['slotNewHelpTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3c17fdf3abf9c4fb6ce35cfb8f0f8fc4',1,'GpgFrontend::UI::TextEdit']]], - ['slotnewtab_661',['SlotNewTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a57a46ab5595622ae0b7bceef7d56bd7c',1,'GpgFrontend::UI::TextEdit']]], - ['slotopen_662',['SlotOpen',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a15335d38187ddf580b7200d856768cfb',1,'GpgFrontend::UI::TextEdit']]], - ['slotopenfile_663',['SlotOpenFile',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a05b838ad518857fed24864ecce40c203',1,'GpgFrontend::UI::MainWindow::SlotOpenFile()'],['../classGpgFrontend_1_1UI_1_1TextEdit.html#a60c73cc66a48a38c13e7890de49e86c3',1,'GpgFrontend::UI::TextEdit::SlotOpenFile(const QString &path)']]], - ['slotpaste_664',['SlotPaste',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa2230418dc8f72c400f5a90082a983c9',1,'GpgFrontend::UI::TextEdit']]], - ['slotprint_665',['SlotPrint',['../classGpgFrontend_1_1UI_1_1TextEdit.html#adca2bbfa746b5598f2a4f74026b84224',1,'GpgFrontend::UI::TextEdit']]], - ['slotquote_666',['SlotQuote',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6a02fce9dc4039c982d6dd19231517ee',1,'GpgFrontend::UI::TextEdit']]], - ['slotredo_667',['SlotRedo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae2b3bf422789d56087face98b6a9e929',1,'GpgFrontend::UI::TextEdit']]], - ['slotrefresh_668',['SlotRefresh',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a68f984815100f4ce281b9794f193e516',1,'GpgFrontend::UI::InfoBoardWidget']]], - ['slotsave_669',['SlotSave',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ace0b8f4c161db9f4f5db5ecbfd7a91c0',1,'GpgFrontend::UI::TextEdit']]], - ['slotsaveas_670',['SlotSaveAs',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a02fa44ba0c56f3f6ae125f8490faf254',1,'GpgFrontend::UI::TextEdit']]], - ['slotselectall_671',['SlotSelectAll',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6c814253dfc061bfdae0fa71c6196c55',1,'GpgFrontend::UI::TextEdit']]], - ['slotsetrestartneeded_672',['SlotSetRestartNeeded',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a276e843e2f5eda8934fb350fb6f89327',1,'GpgFrontend::UI::MainWindow']]], - ['slotshowmodified_673',['SlotShowModified',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ab24adc1adb3b9b29469992e4c444436e',1,'GpgFrontend::UI::TextEdit']]], - ['slotswitchtabdown_674',['SlotSwitchTabDown',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a576e06390e65576465297d2ab8d7d474',1,'GpgFrontend::UI::TextEdit']]], - ['slotswitchtabup_675',['SlotSwitchTabUp',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af1e364b513f566c743a5d36c19098762',1,'GpgFrontend::UI::TextEdit']]], - ['slotundo_676',['SlotUndo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a4a81e69f6dc74ea649ca9a2358342fd5',1,'GpgFrontend::UI::TextEdit']]], - ['softwareversion_677',['SoftwareVersion',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html',1,'GpgFrontend::UI']]], - ['special_5fedit_5ftool_5fbar_5f_678',['special_edit_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af2b3e3a0e9894633e1839df289f5ffe0',1,'GpgFrontend::UI::MainWindow']]], - ['start_5fwizard_5fact_5f_679',['start_wizard_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab0019ca316b971c594c2f20f418256a6',1,'GpgFrontend::UI::MainWindow']]], - ['startdirmngr_680',['StartDirmngr',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a46085a11235894deccd312fc259d5078',1,'GpgFrontend::GpgAdvancedOperator']]], - ['startgpgagent_681',['StartGpgAgent',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a07c32ba25cf6153fbc8ee585c4ba377c',1,'GpgFrontend::GpgAdvancedOperator']]], - ['startkeyboxd_682',['StartKeyBoxd',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a9313410359ed9cff9ee66fa9b4b095ee',1,'GpgFrontend::GpgAdvancedOperator']]], - ['steganography_5fmenu_5f_683',['steganography_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af763a506aed7d0fb2125d1859583b853',1,'GpgFrontend::UI::MainWindow']]], - ['storages_5fmutex_5f_684',['storages_mutex_',['../classGpgFrontend_1_1SingletonStorageCollection.html#ab648cb257beb2475eb5fca6453c331f9',1,'GpgFrontend::SingletonStorageCollection']]], - ['stripped_5fname_685',['stripped_name',['../classGpgFrontend_1_1UI_1_1TextEdit.html#afb9b7a7d88154d774b3d727d8e640cbb',1,'GpgFrontend::UI::TextEdit']]], - ['subkeygeneratedialog_686',['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_687',['switch_tab_down_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a88af746cd550792ab6095d2ebbd29b41',1,'GpgFrontend::UI::MainWindow']]], - ['switch_5ftab_5fup_5fact_5f_688',['switch_tab_up_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8d5ce6514ef3fa8ac3223176f5fa2701',1,'GpgFrontend::UI::MainWindow']]], - ['switch_5fui_5fenabled_689',['switch_ui_enabled',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#ae3d97948f205e84f0604d4da634a4513',1,'GpgFrontend::UI::NetworkTab']]], - ['switch_5fui_5fproxy_5ftype_690',['switch_ui_proxy_type',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#a1b0297158f13daec77645c88e5a8adcd',1,'GpgFrontend::UI::NetworkTab']]], - ['syncsettings_691',['SyncSettings',['../classGpgFrontend_1_1GlobalSettingStation.html#ac061ac8e5308f67ea52b98888bbb2e8d',1,'GpgFrontend::GlobalSettingStation']]] + ['singletonfunctionobject_3c_20cachemanager_20_3e_572',['SingletonFunctionObject< CacheManager >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20dataobjectoperator_20_3e_573',['SingletonFunctionObject< DataObjectOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20globalsettingstation_20_3e_574',['SingletonFunctionObject< GlobalSettingStation >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgadvancedoperator_20_3e_575',['SingletonFunctionObject< GpgAdvancedOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgbasicoperator_20_3e_576',['SingletonFunctionObject< GpgBasicOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgcommandexecutor_20_3e_577',['SingletonFunctionObject< GpgCommandExecutor >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgcontext_20_3e_578',['SingletonFunctionObject< GpgContext >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgfileopera_20_3e_579',['SingletonFunctionObject< GpgFileOpera >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgkeygetter_20_3e_580',['SingletonFunctionObject< GpgKeyGetter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgkeyimportexporter_20_3e_581',['SingletonFunctionObject< GpgKeyImportExporter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgkeymanager_20_3e_582',['SingletonFunctionObject< GpgKeyManager >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgkeyopera_20_3e_583',['SingletonFunctionObject< GpgKeyOpera >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpguidoperator_20_3e_584',['SingletonFunctionObject< GpgUIDOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20passphrasegenerator_20_3e_585',['SingletonFunctionObject< PassphraseGenerator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20taskrunnergetter_20_3e_586',['SingletonFunctionObject< TaskRunnerGetter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonstorage_587',['SingletonStorage',['../classGpgFrontend_1_1SingletonStorage.html',1,'GpgFrontend']]], + ['singletonstoragecollection_588',['SingletonStorageCollection',['../classGpgFrontend_1_1SingletonStorageCollection.html',1,'GpgFrontend']]], + ['slot_5factivated_5fkey_5ftype_589',['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_590',['slot_add_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a821247d738457c4ee046162aad6728f9',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fadd_5fuid_5fresult_591',['slot_add_uid_result',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a16f1ae88d6a417b614cfc6ae1852187c',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['slot_5fappend_5fselected_5fkeys_592',['slot_append_selected_keys',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a76bf3784d751db78ed13bd9962e14472',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fauthentication_5fbox_5fchanged_593',['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_594',['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_595',['slot_clean_double_line_breaks',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aea9274389c3b049793fe5aa5a6adf63c',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fcompress_5ffiles_596',['slot_compress_files',['../classGpgFrontend_1_1UI_1_1FilePage.html#a250b1950f874c1d11549cd5c0ea9693f',1,'GpgFrontend::UI::FilePage']]], + ['slot_5fcopy_5fdefault_5fuid_5fto_5fclipboard_597',['slot_copy_default_uid_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3982432b140738859415e487e2c5f5eb',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fcopy_5ffingerprint_598',['slot_copy_fingerprint',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#af8b600fbd7cd0fbb5b6183403bf870b2',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['slot_5fcopy_5fkey_5fid_5fto_5fclipboard_599',['slot_copy_key_id_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9e2ddb2135df42d76134bea168fbdce9',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fcopy_5fmail_5faddress_5fto_5fclipboard_600',['slot_copy_mail_address_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af93d72eaf58326f1f9e926752c6b1fc6',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fcreate_5fnew_5fuid_601',['slot_create_new_uid',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a4e115ce46a85c2f9e4e0e2427839fc7c',1,'GpgFrontend::UI::KeyNewUIDDialog']]], + ['slot_5fcut_5fpgp_5fheader_602',['slot_cut_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7f5a88922d06bee977335fb4b5f1d86d',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fdecrypt_603',['slot_decrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae2d89e2cc6c99ff0e16b396d2381f904',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fdecrypt_5fverify_604',['slot_decrypt_verify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1d61ea803e6c825bd54f42ba9ae85919',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fdisable_5ftab_5factions_605',['slot_disable_tab_actions',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a24a0b0d974fc5f8fdda60c128a82d957',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fdouble_5fclicked_606',['slot_double_clicked',['../classGpgFrontend_1_1UI_1_1KeyList.html#a69e54f06d546d516a0dcdf1055b8028e',1,'GpgFrontend::UI::KeyList']]], + ['slot_5fencrypt_607',['slot_encrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae11d01211c2914ecc148e13dd7de506e',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fencrypt_5fsign_608',['slot_encrypt_sign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a304efe91afa31b32725caa00c27475a4',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fencryption_5fbox_5fchanged_609',['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_610',['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_611',['slot_export_private_key',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a384f4250e58110da58c0e6996b42a8ab',1,'GpgFrontend::UI::KeyPairOperaTab']]], + ['slot_5ffile_5ftree_5fview_5fitem_5fclicked_612',['slot_file_tree_view_item_clicked',['../classGpgFrontend_1_1UI_1_1FilePage.html#a676917817d6f519e043742d1d87f97f1',1,'GpgFrontend::UI::FilePage']]], + ['slot_5ffile_5ftree_5fview_5fitem_5fdouble_5fclicked_613',['slot_file_tree_view_item_double_clicked',['../classGpgFrontend_1_1UI_1_1FilePage.html#ad3c54320bdafbbb2c06a20d6c7dea9d6',1,'GpgFrontend::UI::FilePage']]], + ['slot_5ffind_614',['slot_find',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae28089efbd236708601470f30f26faaa',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fformat_5fgpg_5fheader_615',['slot_format_gpg_header',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a45267bcfc8fc83851894061c0fe2a9c2',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['slot_5fimport_616',['slot_import',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ac9c14bbc97945c94fd02c8e067ccab06',1,'GpgFrontend::UI::KeyServerImportDialog']]], + ['slot_5fimport_5ffinished_617',['slot_import_finished',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a6f1c5238da7cd6f117bed8018469b37a',1,'GpgFrontend::UI::KeyServerImportDialog']]], + ['slot_5fimport_5fkey_5ffrom_5fedit_618',['slot_import_key_from_edit',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a55926649e28a96318b89afba01b966bf',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5finsert_5ftext_619',['slot_insert_text',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a184985104f23da8fdf2b9aaf7b27405b',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['slot_5fjump_5fpage_620',['slot_jump_page',['../classGpgFrontend_1_1UI_1_1ChoosePage.html#af0d7890fe65385b7785719b9cff0718b',1,'GpgFrontend::UI::ChoosePage']]], + ['slot_5fkey_5fgen_5faccept_621',['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_622',['slot_non_expired_checked',['../classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#adde2b33bd17f521f0630702987b1d274',1,'GpgFrontend::UI::KeySetExpireDateDialog']]], + ['slot_5fopen_5ffile_5ftab_623',['slot_open_file_tab',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a29a811d4d440c79c1bd2cc2bb40cdf7e',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fopen_5fkey_5fmanagement_624',['slot_open_key_management',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a16ddebec90a4bd0d13baa9d972c3445f',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fopen_5fsettings_5fdialog_625',['slot_open_settings_dialog',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a874b505fbc1046f579a736683f5a7f65',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fopen_5furl_626',['slot_open_url',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a51ff99077a75507365307f5dd783df99',1,'GpgFrontend::UI::HelpPage']]], + ['slot_5fprocess_5fnetwork_5freply_627',['slot_process_network_reply',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#af9350e0a8d5993e5be0a5478fcb161be',1,'GpgFrontend::UI::ListedKeyServerTestTask']]], + ['slot_5fremove_5ftab_628',['slot_remove_tab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a12f65fbc4984c266a5df4505ecde7c42',1,'GpgFrontend::UI::TextEdit']]], + ['slot_5fsave_5fstatus_5fto_5fcache_5ffor_5frevovery_629',['slot_save_status_to_cache_for_revovery',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a1bf57ebe1e32b12c48bb633b7dd7a4f1',1,'GpgFrontend::UI::TextEdit']]], + ['slot_5fset_5frestart_5fneeded_630',['slot_set_restart_needed',['../classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html#a2bb963a14733cf9b99736b6624c09d83',1,'GpgFrontend::UI::GnuPGControllerDialog::slot_set_restart_needed()'],['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#acc6b4386de554fce6fbb60ac6d201952',1,'GpgFrontend::UI::SettingsDialog::slot_set_restart_needed()']]], + ['slot_5fshow_5fkey_5fdetails_631',['slot_show_key_details',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a033d448541b44fa48b76dec828a4eb0e',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fshow_5fversion_5fstatus_632',['slot_show_version_status',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a1003bd969ecbc5deba940e39436968f4',1,'GpgFrontend::UI::UpdateTab']]], + ['slot_5fsign_633',['slot_sign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3f3d03b0ec22385bee559fbd2aeb881b',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fsign_5fkey_634',['slot_sign_key',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#a82f6bf641ff3b64341a0bdcf76571c43',1,'GpgFrontend::UI::KeyUIDSignDialog']]], + ['slot_5fsigning_5fbox_5fchanged_635',['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_636',['slot_start_wizard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aabf3ddf6b624790369f164b4889c95be',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fupdate_5fkey_5fstatus_637',['slot_update_key_status',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#ab4ac26378d6a07757720163eb4b1cb0e',1,'GpgFrontend::UI::CommonUtils']]], + ['slot_5fupload_5fkey_5fto_5fserver_638',['slot_upload_key_to_server',['../classGpgFrontend_1_1UI_1_1KeyUploadDialog.html#a0f724649ca953b888f07d69c97fe45b6',1,'GpgFrontend::UI::KeyUploadDialog']]], + ['slot_5fverify_639',['slot_verify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa9c986dd95984811479ea93230c74b5d',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fversion_5fupgrade_640',['slot_version_upgrade',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a48368c77af7b1f4cb632870b8d914a28',1,'GpgFrontend::UI::MainWindow']]], + ['slotclosetab_641',['SlotCloseTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa21659aa7acba98dfd6286d69e00ab9b',1,'GpgFrontend::UI::TextEdit']]], + ['slotcopy_642',['SlotCopy',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3599bd01636a873cf3437ab6b9d38780',1,'GpgFrontend::UI::TextEdit']]], + ['slotcurpagefiletreeview_643',['SlotCurPageFileTreeView',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a72014409d407c161b048e07c061b4cf9',1,'GpgFrontend::UI::TextEdit']]], + ['slotcurpagetextedit_644',['SlotCurPageTextEdit',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a48351dc1529da3b8da311f65b735b5f1',1,'GpgFrontend::UI::TextEdit']]], + ['slotcut_645',['SlotCut',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae1e710c6722910b8d35df97aaabb3162',1,'GpgFrontend::UI::TextEdit']]], + ['slotexecutecommand_646',['SlotExecuteCommand',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a95cd625a2e0e74ee4d564843c6d16791',1,'GpgFrontend::UI::CommonUtils']]], + ['slotexecutegpgcommand_647',['SlotExecuteGpgCommand',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#afc845c1c37487c99f78d8e66f6874f6d',1,'GpgFrontend::UI::CommonUtils']]], + ['slotfiledecrypt_648',['SlotFileDecrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0a6d0618f2835a6dcae707a4ca770a48',1,'GpgFrontend::UI::MainWindow']]], + ['slotfiledecryptverify_649',['SlotFileDecryptVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab23c7e67dd1f5295b3c49ad79dfd5919',1,'GpgFrontend::UI::MainWindow']]], + ['slotfileencrypt_650',['SlotFileEncrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9ec699536a35a37961a8c6da1e231ae3',1,'GpgFrontend::UI::MainWindow']]], + ['slotfileencryptsign_651',['SlotFileEncryptSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a25a2e4017d77cffc8362bde9606fad30',1,'GpgFrontend::UI::MainWindow']]], + ['slotfilesign_652',['SlotFileSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8bcdcbe678b8dc0837fffda2ebfe79bf',1,'GpgFrontend::UI::MainWindow']]], + ['slotfileverify_653',['SlotFileVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9879061cfd321c6757c77f75d46dc7d8',1,'GpgFrontend::UI::MainWindow']]], + ['slotfilltexteditwithtext_654',['SlotFillTextEditWithText',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af466ec2b8ab3f695d206efc0574bbe20',1,'GpgFrontend::UI::TextEdit']]], + ['slotimport_655',['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_656',['SlotImportKeyFromClipboard',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a0c8bf56fc5371cd2c5e9d2a0f67bf72a',1,'GpgFrontend::UI::CommonUtils']]], + ['slotimportkeyfromfile_657',['SlotImportKeyFromFile',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a057526790f6b2f6288c3a35322c34d8d',1,'GpgFrontend::UI::CommonUtils']]], + ['slotimportkeyfromkeyserver_658',['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_659',['SlotImportKeys',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a3bc26cc1e0f00f0ce2f95c0b6c8778d8',1,'GpgFrontend::UI::CommonUtils']]], + ['slotnewfiletab_660',['SlotNewFileTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae22ecadf31648f424eb8ab86bd28ef39',1,'GpgFrontend::UI::TextEdit']]], + ['slotnewhelptab_661',['slotNewHelpTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3c17fdf3abf9c4fb6ce35cfb8f0f8fc4',1,'GpgFrontend::UI::TextEdit']]], + ['slotnewtab_662',['SlotNewTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a57a46ab5595622ae0b7bceef7d56bd7c',1,'GpgFrontend::UI::TextEdit']]], + ['slotopen_663',['SlotOpen',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a15335d38187ddf580b7200d856768cfb',1,'GpgFrontend::UI::TextEdit']]], + ['slotopenfile_664',['SlotOpenFile',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a05b838ad518857fed24864ecce40c203',1,'GpgFrontend::UI::MainWindow::SlotOpenFile()'],['../classGpgFrontend_1_1UI_1_1TextEdit.html#a60c73cc66a48a38c13e7890de49e86c3',1,'GpgFrontend::UI::TextEdit::SlotOpenFile(const QString &path)']]], + ['slotpaste_665',['SlotPaste',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa2230418dc8f72c400f5a90082a983c9',1,'GpgFrontend::UI::TextEdit']]], + ['slotprint_666',['SlotPrint',['../classGpgFrontend_1_1UI_1_1TextEdit.html#adca2bbfa746b5598f2a4f74026b84224',1,'GpgFrontend::UI::TextEdit']]], + ['slotquote_667',['SlotQuote',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6a02fce9dc4039c982d6dd19231517ee',1,'GpgFrontend::UI::TextEdit']]], + ['slotredo_668',['SlotRedo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae2b3bf422789d56087face98b6a9e929',1,'GpgFrontend::UI::TextEdit']]], + ['slotrefresh_669',['SlotRefresh',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a68f984815100f4ce281b9794f193e516',1,'GpgFrontend::UI::InfoBoardWidget']]], + ['slotsave_670',['SlotSave',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ace0b8f4c161db9f4f5db5ecbfd7a91c0',1,'GpgFrontend::UI::TextEdit']]], + ['slotsaveas_671',['SlotSaveAs',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a02fa44ba0c56f3f6ae125f8490faf254',1,'GpgFrontend::UI::TextEdit']]], + ['slotselectall_672',['SlotSelectAll',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6c814253dfc061bfdae0fa71c6196c55',1,'GpgFrontend::UI::TextEdit']]], + ['slotsetrestartneeded_673',['SlotSetRestartNeeded',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a276e843e2f5eda8934fb350fb6f89327',1,'GpgFrontend::UI::MainWindow']]], + ['slotshowmodified_674',['SlotShowModified',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ab24adc1adb3b9b29469992e4c444436e',1,'GpgFrontend::UI::TextEdit']]], + ['slotswitchtabdown_675',['SlotSwitchTabDown',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a576e06390e65576465297d2ab8d7d474',1,'GpgFrontend::UI::TextEdit']]], + ['slotswitchtabup_676',['SlotSwitchTabUp',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af1e364b513f566c743a5d36c19098762',1,'GpgFrontend::UI::TextEdit']]], + ['slotundo_677',['SlotUndo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a4a81e69f6dc74ea649ca9a2358342fd5',1,'GpgFrontend::UI::TextEdit']]], + ['softwareversion_678',['SoftwareVersion',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html',1,'GpgFrontend::UI']]], + ['special_5fedit_5ftool_5fbar_5f_679',['special_edit_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af2b3e3a0e9894633e1839df289f5ffe0',1,'GpgFrontend::UI::MainWindow']]], + ['start_5fwizard_5fact_5f_680',['start_wizard_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab0019ca316b971c594c2f20f418256a6',1,'GpgFrontend::UI::MainWindow']]], + ['startdirmngr_681',['StartDirmngr',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a46085a11235894deccd312fc259d5078',1,'GpgFrontend::GpgAdvancedOperator']]], + ['startgpgagent_682',['StartGpgAgent',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a07c32ba25cf6153fbc8ee585c4ba377c',1,'GpgFrontend::GpgAdvancedOperator']]], + ['startkeyboxd_683',['StartKeyBoxd',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a9313410359ed9cff9ee66fa9b4b095ee',1,'GpgFrontend::GpgAdvancedOperator']]], + ['steganography_5fmenu_5f_684',['steganography_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af763a506aed7d0fb2125d1859583b853',1,'GpgFrontend::UI::MainWindow']]], + ['storages_5fmutex_5f_685',['storages_mutex_',['../classGpgFrontend_1_1SingletonStorageCollection.html#ab648cb257beb2475eb5fca6453c331f9',1,'GpgFrontend::SingletonStorageCollection']]], + ['stripped_5fname_686',['stripped_name',['../classGpgFrontend_1_1UI_1_1TextEdit.html#afb9b7a7d88154d774b3d727d8e640cbb',1,'GpgFrontend::UI::TextEdit']]], + ['subkeygeneratedialog_687',['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_688',['switch_tab_down_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a88af746cd550792ab6095d2ebbd29b41',1,'GpgFrontend::UI::MainWindow']]], + ['switch_5ftab_5fup_5fact_5f_689',['switch_tab_up_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8d5ce6514ef3fa8ac3223176f5fa2701',1,'GpgFrontend::UI::MainWindow']]], + ['switch_5fui_5fenabled_690',['switch_ui_enabled',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#ae3d97948f205e84f0604d4da634a4513',1,'GpgFrontend::UI::NetworkTab']]], + ['switch_5fui_5fproxy_5ftype_691',['switch_ui_proxy_type',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#a1b0297158f13daec77645c88e5a8adcd',1,'GpgFrontend::UI::NetworkTab']]], + ['syncsettings_692',['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 2a68c385..3242b639 100644 --- a/docs/html/search/all_13.js +++ b/docs/html/search/all_13.js @@ -1,19 +1,21 @@ var searchData= [ - ['tabcount_692',['TabCount',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a05c54658597b04c3976c72d3a5f9add9',1,'GpgFrontend::UI::TextEdit']]], - ['takechargeofresult_693',['TakeChargeOfResult',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#acdb7839a5158f078b38d60f0fefc5155',1,'GpgFrontend::GpgVerifyResultAnalyse']]], - ['task_694',['Task',['../classGpgFrontend_1_1Thread_1_1Task.html',1,'GpgFrontend::Thread::Task'],['../classGpgFrontend_1_1Thread_1_1Task.html#a59047d6d26fdf78f9b43ddc189d84958',1,'GpgFrontend::Thread::Task::Task(TaskRunnable runnable, std::string name, DataObjectPtr data, TaskCallback callback=[](int, const std::shared_ptr< DataObject > &) {}, bool sequency=true)'],['../classGpgFrontend_1_1Thread_1_1Task.html#a79f935428d2e03585673226228a7ffff',1,'GpgFrontend::Thread::Task::Task(TaskRunnable runnable, std::string name=DEFAULT_TASK_NAME, DataObjectPtr data_object=nullptr, bool sequency=true)'],['../classGpgFrontend_1_1Thread_1_1Task.html#abdff056f5c96f00ac67bd1edcb5f0a48',1,'GpgFrontend::Thread::Task::Task(std::string name=DEFAULT_TASK_NAME)']]], - ['taskrunner_695',['TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html',1,'GpgFrontend::Thread::TaskRunner'],['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#ad3c8612cbe60112f9b14e616fb0a4acf',1,'GpgFrontend::Thread::TaskRunner::TaskRunner()']]], - ['taskrunnergetter_696',['TaskRunnerGetter',['../classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html',1,'GpgFrontend::Thread::TaskRunnerGetter'],['../classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html#a80794d81179f66f4b4ed3122a64f27cf',1,'GpgFrontend::Thread::TaskRunnerGetter::TaskRunnerGetter()']]], - ['tasks_697',['tasks',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a774775e9a91d33072b27dcf78cead6e2',1,'GpgFrontend::Thread::TaskRunner']]], - ['tasks_5fmutex_5f_698',['tasks_mutex_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a5e72f1ce00d41c225a4304f1ed20b3f1',1,'GpgFrontend::Thread::TaskRunner']]], - ['test_5fpassphrase_5fcb_699',['test_passphrase_cb',['../classGpgFrontend_1_1GpgContext.html#acc4234054002065dfbc5d5261a4950d4',1,'GpgFrontend::GpgContext']]], - ['test_5fstatus_5fcb_700',['test_status_cb',['../classGpgFrontend_1_1GpgContext.html#a3844cd0966134939e5c4be9a725e5271',1,'GpgFrontend::GpgContext']]], - ['testlistedkeyserverthread_701',['TestListedKeyServerThread',['../classTestListedKeyServerThread.html',1,'']]], - ['text_5fis_5fsigned_702',['text_is_signed',['../namespaceGpgFrontend.html#a2a0394c8bdd277f5235f9875a1d69a99',1,'GpgFrontend']]], - ['textedit_703',['TextEdit',['../classGpgFrontend_1_1UI_1_1TextEdit.html',1,'GpgFrontend::UI']]], - ['thread_5fpool_5f_704',['thread_pool_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a2bdc321dd0732ba7a72499b2dc12f7c9',1,'GpgFrontend::Thread::TaskRunner']]], - ['tofuinfopage_705',['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_706',['translate_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adbac799672c43c90810366825d837e4e',1,'GpgFrontend::UI::MainWindow']]], - ['translatorstab_707',['TranslatorsTab',['../classGpgFrontend_1_1UI_1_1TranslatorsTab.html',1,'GpgFrontend::UI::TranslatorsTab'],['../classGpgFrontend_1_1UI_1_1TranslatorsTab.html#a89e5c7b9c17fb41b7c7bf461fb8ad99e',1,'GpgFrontend::UI::TranslatorsTab::TranslatorsTab()']]] + ['tabcount_693',['TabCount',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a05c54658597b04c3976c72d3a5f9add9',1,'GpgFrontend::UI::TextEdit']]], + ['takechargeofresult_694',['TakeChargeOfResult',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#acdb7839a5158f078b38d60f0fefc5155',1,'GpgFrontend::GpgVerifyResultAnalyse']]], + ['task_695',['Task',['../classGpgFrontend_1_1Thread_1_1Task.html',1,'GpgFrontend::Thread::Task'],['../classGpgFrontend_1_1Thread_1_1Task.html#a59047d6d26fdf78f9b43ddc189d84958',1,'GpgFrontend::Thread::Task::Task(TaskRunnable runnable, std::string name, DataObjectPtr data, TaskCallback callback=[](int, const std::shared_ptr< DataObject > &) {}, bool sequency=true)'],['../classGpgFrontend_1_1Thread_1_1Task.html#a79f935428d2e03585673226228a7ffff',1,'GpgFrontend::Thread::Task::Task(TaskRunnable runnable, std::string name=DEFAULT_TASK_NAME, DataObjectPtr data_object=nullptr, bool sequency=true)'],['../classGpgFrontend_1_1Thread_1_1Task.html#abdff056f5c96f00ac67bd1edcb5f0a48',1,'GpgFrontend::Thread::Task::Task(std::string name=DEFAULT_TASK_NAME)']]], + ['taskrunner_696',['TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html',1,'GpgFrontend::Thread::TaskRunner'],['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#ad3c8612cbe60112f9b14e616fb0a4acf',1,'GpgFrontend::Thread::TaskRunner::TaskRunner()']]], + ['taskrunnergetter_697',['TaskRunnerGetter',['../classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html',1,'GpgFrontend::Thread::TaskRunnerGetter'],['../classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html#a80794d81179f66f4b4ed3122a64f27cf',1,'GpgFrontend::Thread::TaskRunnerGetter::TaskRunnerGetter()']]], + ['tasks_698',['tasks',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a774775e9a91d33072b27dcf78cead6e2',1,'GpgFrontend::Thread::TaskRunner']]], + ['tasks_5fmutex_5f_699',['tasks_mutex_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a5e72f1ce00d41c225a4304f1ed20b3f1',1,'GpgFrontend::Thread::TaskRunner']]], + ['test_5fpassphrase_5fcb_700',['test_passphrase_cb',['../classGpgFrontend_1_1GpgContext.html#acc4234054002065dfbc5d5261a4950d4',1,'GpgFrontend::GpgContext']]], + ['test_5fstatus_5fcb_701',['test_status_cb',['../classGpgFrontend_1_1GpgContext.html#a3844cd0966134939e5c4be9a725e5271',1,'GpgFrontend::GpgContext']]], + ['testlistedkeyserverthread_702',['TestListedKeyServerThread',['../classTestListedKeyServerThread.html',1,'']]], + ['text_5fis_5fsigned_703',['text_is_signed',['../namespaceGpgFrontend.html#a2a0394c8bdd277f5235f9875a1d69a99',1,'GpgFrontend']]], + ['textedit_704',['TextEdit',['../classGpgFrontend_1_1UI_1_1TextEdit.html',1,'GpgFrontend::UI']]], + ['thread_5fpool_5f_705',['thread_pool_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a2bdc321dd0732ba7a72499b2dc12f7c9',1,'GpgFrontend::Thread::TaskRunner']]], + ['threadsafemap_706',['ThreadSafeMap',['../classGpgFrontend_1_1ThreadSafeMap.html',1,'GpgFrontend']]], + ['threadsafemap_3c_20std_3a_3astring_2c_20nlohmann_3a_3ajson_20_3e_707',['ThreadSafeMap< std::string, nlohmann::json >',['../classGpgFrontend_1_1ThreadSafeMap.html',1,'GpgFrontend']]], + ['tofuinfopage_708',['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_709',['translate_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adbac799672c43c90810366825d837e4e',1,'GpgFrontend::UI::MainWindow']]], + ['translatorstab_710',['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 e43ca57f..cbfe118b 100644 --- a/docs/html/search/all_14.js +++ b/docs/html/search/all_14.js @@ -1,10 +1,10 @@ var searchData= [ - ['ui_5fcfg_5f_708',['ui_cfg_',['../classGpgFrontend_1_1GlobalSettingStation.html#a1818e08063d6a886975f77354fc5d85c',1,'GpgFrontend::GlobalSettingStation']]], - ['ui_5fconfig_5fdir_5fpath_5f_709',['ui_config_dir_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#ab618fef68cfd4ff6e42d4a4aa8ea94bb',1,'GpgFrontend::GlobalSettingStation']]], - ['ui_5fconfig_5fpath_5f_710',['ui_config_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#afa99ddc25c0d5fd59a4c5f0e61d13830',1,'GpgFrontend::GlobalSettingStation']]], - ['undo_5fact_5f_711',['undo_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa498dfecac36590e4b60d50824dff58c',1,'GpgFrontend::UI::MainWindow']]], - ['unsaveddocuments_712',['UnsavedDocuments',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a82fe98d45f54909ebea933b540367c39',1,'GpgFrontend::UI::TextEdit']]], - ['updatetab_713',['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_714',['upload_key_to_server',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad27dcf3f534f13d8df71df680c4d177c',1,'GpgFrontend::UI::MainWindow']]] + ['ui_5fcfg_5f_711',['ui_cfg_',['../classGpgFrontend_1_1GlobalSettingStation.html#a1818e08063d6a886975f77354fc5d85c',1,'GpgFrontend::GlobalSettingStation']]], + ['ui_5fconfig_5fdir_5fpath_5f_712',['ui_config_dir_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#ab618fef68cfd4ff6e42d4a4aa8ea94bb',1,'GpgFrontend::GlobalSettingStation']]], + ['ui_5fconfig_5fpath_5f_713',['ui_config_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#afa99ddc25c0d5fd59a4c5f0e61d13830',1,'GpgFrontend::GlobalSettingStation']]], + ['undo_5fact_5f_714',['undo_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa498dfecac36590e4b60d50824dff58c',1,'GpgFrontend::UI::MainWindow']]], + ['unsaveddocuments_715',['UnsavedDocuments',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a82fe98d45f54909ebea933b540367c39',1,'GpgFrontend::UI::TextEdit']]], + ['updatetab_716',['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_717',['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 59d1ade5..6dd923bc 100644 --- a/docs/html/search/all_15.js +++ b/docs/html/search/all_15.js @@ -1,12 +1,12 @@ var searchData= [ - ['verify_715',['Verify',['../classGpgFrontend_1_1GpgBasicOperator.html#af0347cb28ff73b2250395ceaa9001509',1,'GpgFrontend::GpgBasicOperator']]], - ['verify_5fact_5f_716',['verify_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a14bb12fa25620e1a93bd23c9f7c84081',1,'GpgFrontend::UI::MainWindow']]], - ['verifydetailsdialog_717',['VerifyDetailsDialog',['../classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html',1,'GpgFrontend::UI::VerifyDetailsDialog'],['../classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#ac73f0405e249f623ddd0de22b5130fda',1,'GpgFrontend::UI::VerifyDetailsDialog::VerifyDetailsDialog()']]], - ['verifyfile_718',['VerifyFile',['../classGpgFrontend_1_1GpgFileOpera.html#a14cddfe822c9410cd9c301d08963b7e7',1,'GpgFrontend::GpgFileOpera']]], - ['verifykeydetailbox_719',['VerifyKeyDetailBox',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html',1,'GpgFrontend::UI::VerifyKeyDetailBox'],['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#afbbe8e87786cca020c9aa8759eb041a0',1,'GpgFrontend::UI::VerifyKeyDetailBox::VerifyKeyDetailBox()']]], - ['version_5fcompare_720',['version_compare',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#ae1989b6a34c76103f4bd06f35686d536',1,'GpgFrontend::UI::SoftwareVersion']]], - ['versionchecktask_721',['VersionCheckTask',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html',1,'GpgFrontend::UI::VersionCheckTask'],['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9f7a810ae1aa78c2a61e86e7757da385',1,'GpgFrontend::UI::VersionCheckTask::VersionCheckTask()']]], - ['versionwithdrawn_722',['VersionWithDrawn',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a587a3fdb047a15c3771c2af5eebdbf4b',1,'GpgFrontend::UI::SoftwareVersion']]], - ['view_5fmenu_5f_723',['view_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0e9920cf0fc974ac2f70d3f039f009f2',1,'GpgFrontend::UI::MainWindow']]] + ['verify_718',['Verify',['../classGpgFrontend_1_1GpgBasicOperator.html#af0347cb28ff73b2250395ceaa9001509',1,'GpgFrontend::GpgBasicOperator']]], + ['verify_5fact_5f_719',['verify_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a14bb12fa25620e1a93bd23c9f7c84081',1,'GpgFrontend::UI::MainWindow']]], + ['verifydetailsdialog_720',['VerifyDetailsDialog',['../classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html',1,'GpgFrontend::UI::VerifyDetailsDialog'],['../classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#ac73f0405e249f623ddd0de22b5130fda',1,'GpgFrontend::UI::VerifyDetailsDialog::VerifyDetailsDialog()']]], + ['verifyfile_721',['VerifyFile',['../classGpgFrontend_1_1GpgFileOpera.html#a14cddfe822c9410cd9c301d08963b7e7',1,'GpgFrontend::GpgFileOpera']]], + ['verifykeydetailbox_722',['VerifyKeyDetailBox',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html',1,'GpgFrontend::UI::VerifyKeyDetailBox'],['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#afbbe8e87786cca020c9aa8759eb041a0',1,'GpgFrontend::UI::VerifyKeyDetailBox::VerifyKeyDetailBox()']]], + ['version_5fcompare_723',['version_compare',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#ae1989b6a34c76103f4bd06f35686d536',1,'GpgFrontend::UI::SoftwareVersion']]], + ['versionchecktask_724',['VersionCheckTask',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html',1,'GpgFrontend::UI::VersionCheckTask'],['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9f7a810ae1aa78c2a61e86e7757da385',1,'GpgFrontend::UI::VersionCheckTask::VersionCheckTask()']]], + ['versionwithdrawn_725',['VersionWithDrawn',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a587a3fdb047a15c3771c2af5eebdbf4b',1,'GpgFrontend::UI::SoftwareVersion']]], + ['view_5fmenu_5f_726',['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 4b7bbfda..7e253bf6 100644 --- a/docs/html/search/all_16.js +++ b/docs/html/search/all_16.js @@ -1,9 +1,9 @@ var searchData= [ - ['waitingdialog_724',['WaitingDialog',['../classGpgFrontend_1_1UI_1_1WaitingDialog.html',1,'GpgFrontend::UI::WaitingDialog'],['../classGpgFrontend_1_1UI_1_1WaitingDialog.html#a809d0ffc8208eb2ff5d8da76c8ee10dc',1,'GpgFrontend::UI::WaitingDialog::WaitingDialog()']]], - ['willcharsetchange_725',['WillCharsetChange',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a1c1c0174ed1ed9c5a90739eafc5c3267',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['wizard_726',['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_727',['write_buffer_to_file',['../namespaceGpgFrontend.html#a5135069571678eda9c1f07d17ed9ac41',1,'GpgFrontend']]], - ['writefile_728',['WriteFile',['../classGpgFrontend_1_1FileOperator.html#a2f21ef4a88448b1eddf756302913d338',1,'GpgFrontend::FileOperator']]], - ['writefilestd_729',['WriteFileStd',['../classGpgFrontend_1_1FileOperator.html#a51121c94dc32a83d7073fbe7138b603b',1,'GpgFrontend::FileOperator']]] + ['waitingdialog_727',['WaitingDialog',['../classGpgFrontend_1_1UI_1_1WaitingDialog.html',1,'GpgFrontend::UI::WaitingDialog'],['../classGpgFrontend_1_1UI_1_1WaitingDialog.html#a809d0ffc8208eb2ff5d8da76c8ee10dc',1,'GpgFrontend::UI::WaitingDialog::WaitingDialog()']]], + ['willcharsetchange_728',['WillCharsetChange',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a1c1c0174ed1ed9c5a90739eafc5c3267',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['wizard_729',['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_730',['write_buffer_to_file',['../namespaceGpgFrontend.html#a5135069571678eda9c1f07d17ed9ac41',1,'GpgFrontend']]], + ['writefile_731',['WriteFile',['../classGpgFrontend_1_1FileOperator.html#a2f21ef4a88448b1eddf756302913d338',1,'GpgFrontend::FileOperator']]], + ['writefilestd_732',['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 d23d32f6..5e9ba468 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_730',['zoom_in_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3cb7daedbef61c1be27635c9ebc9e689',1,'GpgFrontend::UI::MainWindow']]], - ['zoom_5fout_5fact_5f_731',['zoom_out_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a70397629ae3ffe039051b80a099c7979',1,'GpgFrontend::UI::MainWindow']]] + ['zoom_5fin_5fact_5f_733',['zoom_in_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3cb7daedbef61c1be27635c9ebc9e689',1,'GpgFrontend::UI::MainWindow']]], + ['zoom_5fout_5fact_5f_734',['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 595d7694..d724aac9 100644 --- a/docs/html/search/all_18.js +++ b/docs/html/search/all_18.js @@ -1,14 +1,14 @@ var searchData= [ - ['_7edataobject_732',['~DataObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a85bb3c482bf6f47edcd6593cca568a22',1,'GpgFrontend::Thread::Task::DataObject']]], - ['_7eglobalsettingstation_733',['~GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html#af700161900e623a0ea14261d51616451',1,'GpgFrontend::GlobalSettingStation']]], - ['_7egpgcontext_734',['~GpgContext',['../classGpgFrontend_1_1GpgContext.html#ae89dee551354c1541337881898832725',1,'GpgFrontend::GpgContext']]], - ['_7egpgfrontendapplication_735',['~GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a32f0e7dda69f7b1e3cc869340736c590',1,'GpgFrontend::UI::GpgFrontendApplication']]], - ['_7egpgkey_736',['~GpgKey',['../classGpgFrontend_1_1GpgKey.html#a1e9223bb1ad8fbb4e769680de39b3697',1,'GpgFrontend::GpgKey']]], - ['_7egpgkeysignature_737',['~GpgKeySignature',['../classGpgFrontend_1_1GpgKeySignature.html#ab4d7044f4e1ddcf0ae0d28be43f0fcb3',1,'GpgFrontend::GpgKeySignature']]], - ['_7egpgsignature_738',['~GpgSignature',['../classGpgFrontend_1_1GpgSignature.html#a44f137a457ac109d145a1cdd8e544e3a',1,'GpgFrontend::GpgSignature']]], - ['_7esettingsobject_739',['~SettingsObject',['../classGpgFrontend_1_1UI_1_1SettingsObject.html#ae71336d240ace35756d1852a46271f6c',1,'GpgFrontend::UI::SettingsObject']]], - ['_7esingletonfunctionobject_740',['~SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html#a8296be8c449f88175285186831b995bc',1,'GpgFrontend::SingletonFunctionObject']]], - ['_7etask_741',['~Task',['../classGpgFrontend_1_1Thread_1_1Task.html#a37766a505662b33ad14672c29e209ea8',1,'GpgFrontend::Thread::Task']]], - ['_7etaskrunner_742',['~TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#ac3e57b59d537e2a75e741d4a5418ae6d',1,'GpgFrontend::Thread::TaskRunner']]] + ['_7edataobject_735',['~DataObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a85bb3c482bf6f47edcd6593cca568a22',1,'GpgFrontend::Thread::Task::DataObject']]], + ['_7eglobalsettingstation_736',['~GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html#af700161900e623a0ea14261d51616451',1,'GpgFrontend::GlobalSettingStation']]], + ['_7egpgcontext_737',['~GpgContext',['../classGpgFrontend_1_1GpgContext.html#ae89dee551354c1541337881898832725',1,'GpgFrontend::GpgContext']]], + ['_7egpgfrontendapplication_738',['~GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a32f0e7dda69f7b1e3cc869340736c590',1,'GpgFrontend::UI::GpgFrontendApplication']]], + ['_7egpgkey_739',['~GpgKey',['../classGpgFrontend_1_1GpgKey.html#a1e9223bb1ad8fbb4e769680de39b3697',1,'GpgFrontend::GpgKey']]], + ['_7egpgkeysignature_740',['~GpgKeySignature',['../classGpgFrontend_1_1GpgKeySignature.html#ab4d7044f4e1ddcf0ae0d28be43f0fcb3',1,'GpgFrontend::GpgKeySignature']]], + ['_7egpgsignature_741',['~GpgSignature',['../classGpgFrontend_1_1GpgSignature.html#a44f137a457ac109d145a1cdd8e544e3a',1,'GpgFrontend::GpgSignature']]], + ['_7esettingsobject_742',['~SettingsObject',['../classGpgFrontend_1_1UI_1_1SettingsObject.html#ae71336d240ace35756d1852a46271f6c',1,'GpgFrontend::UI::SettingsObject']]], + ['_7esingletonfunctionobject_743',['~SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html#a8296be8c449f88175285186831b995bc',1,'GpgFrontend::SingletonFunctionObject']]], + ['_7etask_744',['~Task',['../classGpgFrontend_1_1Thread_1_1Task.html#a37766a505662b33ad14672c29e209ea8',1,'GpgFrontend::Thread::Task']]], + ['_7etaskrunner_745',['~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 e4370ac5..6a2e23f8 100644 --- a/docs/html/search/all_3.js +++ b/docs/html/search/all_3.js @@ -1,6 +1,6 @@ var searchData= [ - ['cachemanager_44',['CacheManager',['../classGpgFrontend_1_1CacheManager.html',1,'GpgFrontend']]], + ['cachemanager_44',['CacheManager',['../classGpgFrontend_1_1CacheManager.html#a311ae4d0cc4f4d9425b44789aea6090a',1,'GpgFrontend::CacheManager::CacheManager()'],['../classGpgFrontend_1_1CacheManager.html',1,'GpgFrontend::CacheManager']]], ['calculatehash_45',['CalculateHash',['../classGpgFrontend_1_1FileOperator.html#a08baef750a723ee709804120a34d19c9',1,'GpgFrontend::FileOperator']]], ['channel_5f_46',['channel_',['../classGpgFrontend_1_1ChannelObject.html#aee5f8a5575adbdf522da4dd195c091ee',1,'GpgFrontend::ChannelObject']]], ['channelobject_47',['ChannelObject',['../classGpgFrontend_1_1ChannelObject.html#aedbf32eddc701e521bd8e790ef208da0',1,'GpgFrontend::ChannelObject::ChannelObject() noexcept'],['../classGpgFrontend_1_1ChannelObject.html#a68ad2a19339e3cd50626fe0eaad17ccd',1,'GpgFrontend::ChannelObject::ChannelObject(int channel)'],['../classGpgFrontend_1_1ChannelObject.html',1,'GpgFrontend::ChannelObject']]], diff --git a/docs/html/search/all_7.js b/docs/html/search/all_7.js index ee27a981..31a22f25 100644 --- a/docs/html/search/all_7.js +++ b/docs/html/search/all_7.js @@ -17,14 +17,14 @@ var searchData= ['get_5fheap_5fptr_191',['get_heap_ptr',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a0e1ab5e5bf5ef647a30a5ee2884ac63a',1,'GpgFrontend::Thread::Task::DataObject']]], ['get_5fkey_5fin_5fcache_192',['get_key_in_cache',['../classGpgFrontend_1_1GpgKeyGetter.html#ab5196ef4ed5323fc2af70abf801ea260',1,'GpgFrontend::GpgKeyGetter']]], ['get_5fonly_5ffile_5fname_5fwith_5fpath_193',['get_only_file_name_with_path',['../namespaceGpgFrontend.html#a5a2f5fc1ad3de55e41a1b7a388821328',1,'GpgFrontend']]], - ['get_5frestart_5fneeded_194',['get_restart_needed',['../classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html#aaf89f54f2124617e836d31df29066529',1,'GpgFrontend::UI::GnuPGControllerDialog::get_restart_needed()'],['../classGpgFrontend_1_1UI_1_1MainWindow.html#a5e95f62dac9fba1ead6ec69c145923db',1,'GpgFrontend::UI::MainWindow::get_restart_needed()'],['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#a0d66e360dfbcf79403351459721c3981',1,'GpgFrontend::UI::SettingsDialog::get_restart_needed()']]], + ['get_5frestart_5fneeded_194',['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()'],['../classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html#aaf89f54f2124617e836d31df29066529',1,'GpgFrontend::UI::GnuPGControllerDialog::get_restart_needed()']]], ['get_5fselected_5fsubkey_195',['get_selected_subkey',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#aedc5f77d6bf9b780b96552a43b323feb',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], ['get_5fsign_5fselected_196',['get_sign_selected',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a2d7c328d726436061f19a287e481268d',1,'GpgFrontend::UI::KeyPairUIDTab']]], ['get_5fstatus_5fstring_197',['get_status_string',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#ae682853c7eccfd3a6be43765f162f5a4',1,'GpgFrontend::UI::KeyImportDetailDialog']]], ['get_5fuid_5fchecked_198',['get_uid_checked',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a7898b6fa328bfbc55ee2721bca4b2af1',1,'GpgFrontend::UI::KeyPairUIDTab']]], ['get_5fuid_5fselected_199',['get_uid_selected',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a161bc9787be40a32f487c79faaeb54bf',1,'GpgFrontend::UI::KeyPairUIDTab']]], ['getalgo_200',['GetAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#a6a65ba347156373b6cf98eb8e851d28d',1,'GpgFrontend::GenKeyInfo']]], - ['getallchannelid_201',['GetAllChannelId',['../classGpgFrontend_1_1SingletonFunctionObject.html#a5f2f0474871971f86ff91fb6a2408621',1,'GpgFrontend::SingletonFunctionObject::GetAllChannelId()'],['../classGpgFrontend_1_1SingletonStorage.html#a3f09424ebdc097fbdab77564a7d723ea',1,'GpgFrontend::SingletonStorage::GetAllChannelId()']]], + ['getallchannelid_201',['GetAllChannelId',['../classGpgFrontend_1_1SingletonStorage.html#a3f09424ebdc097fbdab77564a7d723ea',1,'GpgFrontend::SingletonStorage::GetAllChannelId()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a5f2f0474871971f86ff91fb6a2408621',1,'GpgFrontend::SingletonFunctionObject::GetAllChannelId()']]], ['getallprivatekeys_202',['GetAllPrivateKeys',['../classGpgFrontend_1_1UI_1_1KeyList.html#a7ead8845ceb7c9310e3f4742251e1d87',1,'GpgFrontend::UI::KeyList']]], ['getappdir_203',['GetAppDir',['../classGpgFrontend_1_1GlobalSettingStation.html#ae9d1da3d01c4a834120968636596c3c3',1,'GpgFrontend::GlobalSettingStation']]], ['getbrowser_204',['GetBrowser',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a92c31eea47b42be28c86431384b27846',1,'GpgFrontend::UI::HelpPage']]], @@ -32,22 +32,22 @@ var searchData= ['getchannel_206',['GetChannel',['../classGpgFrontend_1_1ChannelObject.html#a0e13a4bff1cfb679f68a3a2590a3b1b8',1,'GpgFrontend::ChannelObject::GetChannel()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#aa99440b9177f5d0c18840f08a40d64b7',1,'GpgFrontend::SingletonFunctionObject::GetChannel()']]], ['getchecked_207',['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()'],['../classGpgFrontend_1_1UI_1_1KeyList.html#a4e5862299b0aebe07daf8fbc642a4c38',1,'GpgFrontend::UI::KeyList::GetChecked(const KeyTable &key_table)']]], ['getcheckedsigners_208',['GetCheckedSigners',['../classGpgFrontend_1_1UI_1_1SignersPicker.html#a2e98dcdf647a2e0e6455998b018aed00',1,'GpgFrontend::UI::SignersPicker']]], - ['getcomment_209',['GetComment',['../classGpgFrontend_1_1GenKeyInfo.html#ab9f9775fd6363fba372bd0bcc2532892',1,'GpgFrontend::GenKeyInfo::GetComment()'],['../classGpgFrontend_1_1GpgUID.html#a572cf652da288537bdc3f88b4fb1ab18',1,'GpgFrontend::GpgUID::GetComment()'],['../classGpgFrontend_1_1GpgKeySignature.html#a8b025f50bc527b0bbe58bd016bb47772',1,'GpgFrontend::GpgKeySignature::GetComment()'],['../classGpgFrontend_1_1GpgKey.html#af72de794e24876b0e22a8d318ec0f8ad',1,'GpgFrontend::GpgKey::GetComment() const']]], + ['getcomment_209',['GetComment',['../classGpgFrontend_1_1GpgKey.html#af72de794e24876b0e22a8d318ec0f8ad',1,'GpgFrontend::GpgKey::GetComment()'],['../classGpgFrontend_1_1GpgUID.html#a572cf652da288537bdc3f88b4fb1ab18',1,'GpgFrontend::GpgUID::GetComment()'],['../classGpgFrontend_1_1GpgKeySignature.html#a8b025f50bc527b0bbe58bd016bb47772',1,'GpgFrontend::GpgKeySignature::GetComment()'],['../classGpgFrontend_1_1GenKeyInfo.html#ab9f9775fd6363fba372bd0bcc2532892',1,'GpgFrontend::GenKeyInfo::GetComment()']]], ['getcreatetime_210',['GetCreateTime',['../classGpgFrontend_1_1GpgKey.html#a3fd5bfe6e9fd5f016b854fc92f19146e',1,'GpgFrontend::GpgKey::GetCreateTime()'],['../classGpgFrontend_1_1GpgKeySignature.html#adc8ad65688a6dab0993cf655f5361df8',1,'GpgFrontend::GpgKeySignature::GetCreateTime()'],['../classGpgFrontend_1_1GpgSignature.html#a222e57e5992e5e91ca36d8dcc77fd402',1,'GpgFrontend::GpgSignature::GetCreateTime()'],['../classGpgFrontend_1_1GpgSubKey.html#a5e897d439606a35103a0b260be28c6a4',1,'GpgFrontend::GpgSubKey::GetCreateTime()']]], ['getdefaultchannel_211',['GetDefaultChannel',['../classGpgFrontend_1_1ChannelObject.html#aece9c525c49900734bc1bebf85b644ef',1,'GpgFrontend::ChannelObject::GetDefaultChannel()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a50e2b3794d6553f4231eaec72d9d0a50',1,'GpgFrontend::SingletonFunctionObject::GetDefaultChannel()']]], ['getdescription_212',['GetDescription',['../classGpgFrontend_1_1GpgTOFUInfo.html#a471a08bc906d74699f394e34d2581b78',1,'GpgFrontend::GpgTOFUInfo']]], - ['getemail_213',['GetEmail',['../classGpgFrontend_1_1GpgKey.html#a55a6485f6c2cc5bec0fdf02cd7e0d8ea',1,'GpgFrontend::GpgKey::GetEmail()'],['../classGpgFrontend_1_1GenKeyInfo.html#a76721be08c18907762ba6f6ccc4afc8a',1,'GpgFrontend::GenKeyInfo::GetEmail()'],['../classGpgFrontend_1_1GpgKeySignature.html#abdff0ce4d5e8b7be0aa2e46e0003b22f',1,'GpgFrontend::GpgKeySignature::GetEmail()'],['../classGpgFrontend_1_1GpgUID.html#a0d1a061c131e5269923dea52be3b3be4',1,'GpgFrontend::GpgUID::GetEmail()']]], + ['getemail_213',['GetEmail',['../classGpgFrontend_1_1GpgKeySignature.html#abdff0ce4d5e8b7be0aa2e46e0003b22f',1,'GpgFrontend::GpgKeySignature::GetEmail()'],['../classGpgFrontend_1_1GenKeyInfo.html#a76721be08c18907762ba6f6ccc4afc8a',1,'GpgFrontend::GenKeyInfo::GetEmail()'],['../classGpgFrontend_1_1GpgKey.html#a55a6485f6c2cc5bec0fdf02cd7e0d8ea',1,'GpgFrontend::GpgKey::GetEmail()'],['../classGpgFrontend_1_1GpgUID.html#a0d1a061c131e5269923dea52be3b3be4',1,'GpgFrontend::GpgUID::GetEmail()']]], ['getencrcount_214',['GetEncrCount',['../classGpgFrontend_1_1GpgTOFUInfo.html#abc53f7ca1b737ed1a913ad2f90a346e4',1,'GpgFrontend::GpgTOFUInfo']]], ['getencrlast_215',['GetEncrLast',['../classGpgFrontend_1_1GpgTOFUInfo.html#a03f286ac6f16ec6d33eb3dcfd4e3f6d5',1,'GpgFrontend::GpgTOFUInfo']]], ['getexpiretime_216',['GetExpireTime',['../classGpgFrontend_1_1GenKeyInfo.html#ac629312630a78e32ee36ba0ff30bc9ff',1,'GpgFrontend::GenKeyInfo::GetExpireTime()'],['../classGpgFrontend_1_1GpgKey.html#a7b1e0398bedaecbfa2757243e5f4f0ab',1,'GpgFrontend::GpgKey::GetExpireTime()'],['../classGpgFrontend_1_1GpgKeySignature.html#a59ab21f52b88355ca36ff5ebd77093a6',1,'GpgFrontend::GpgKeySignature::GetExpireTime()'],['../classGpgFrontend_1_1GpgSignature.html#a0796249b259af85c30873f5c41a01101',1,'GpgFrontend::GpgSignature::GetExpireTime()'],['../classGpgFrontend_1_1GpgSubKey.html#a6696d67af322fa2125d99b50cae50417',1,'GpgFrontend::GpgSubKey::GetExpireTime()']]], ['getfilepath_217',['GetFilePath',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aff81f0f98a399fa55b6b0ebf2230d4cf',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['getfingerprint_218',['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()']]], + ['getfingerprint_218',['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()']]], ['getfullid_219',['GetFullID',['../classGpgFrontend_1_1Thread_1_1Task.html#a3df2340426251e9145e5fe4419937e2a',1,'GpgFrontend::Thread::Task']]], ['gethashalgo_220',['GetHashAlgo',['../classGpgFrontend_1_1GpgSignature.html#ace10a3ac7f4dc3888b2ad62157213f1c',1,'GpgFrontend::GpgSignature']]], ['getid_221',['GetID',['../classGpgFrontend_1_1GpgSubKey.html#a48d3dfbd3aae9523ffbdb916aad8ad53',1,'GpgFrontend::GpgSubKey']]], ['getid_222',['GetId',['../classGpgFrontend_1_1GpgKey.html#a8930f958f3ca1f5566f63e8c2273837e',1,'GpgFrontend::GpgKey']]], ['getinfo_223',['GetInfo',['../classGpgFrontend_1_1GpgContext.html#a4a8f6ff37e45979159ab375b2c7d48c3',1,'GpgFrontend::GpgContext']]], - ['getinstance_224',['GetInstance',['../classGpgFrontend_1_1UI_1_1SignalStation.html#abe381ce56a7b157a3760b2fd9c3b7419',1,'GpgFrontend::UI::SignalStation::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()'],['../classGpgFrontend_1_1CoreSignalStation.html#a0c5893909726b919ea733de9906cfb36',1,'GpgFrontend::CoreSignalStation::GetInstance()'],['../classGpgFrontend_1_1CoreCommonUtil.html#a8588dfa6ccb57c055f022b13e2da1e7c',1,'GpgFrontend::CoreCommonUtil::GetInstance()'],['../classGpgFrontend_1_1UI_1_1CommonUtils.html#aed529969f54e39e3f9da14ae6dd00d49',1,'GpgFrontend::UI::CommonUtils::GetInstance()']]], + ['getinstance_224',['GetInstance',['../classGpgFrontend_1_1SingletonFunctionObject.html#a70484d7cfe9f9dcbcd5f8bb749250f36',1,'GpgFrontend::SingletonFunctionObject::GetInstance()'],['../classGpgFrontend_1_1UI_1_1CommonUtils.html#aed529969f54e39e3f9da14ae6dd00d49',1,'GpgFrontend::UI::CommonUtils::GetInstance()'],['../classGpgFrontend_1_1SingletonStorageCollection.html#ac56d19e0d4b99e7b8a86a017721f3db1',1,'GpgFrontend::SingletonStorageCollection::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_1CoreSignalStation.html#a0c5893909726b919ea733de9906cfb36',1,'GpgFrontend::CoreSignalStation::GetInstance()'],['../classGpgFrontend_1_1CoreCommonUtil.html#a8588dfa6ccb57c055f022b13e2da1e7c',1,'GpgFrontend::CoreCommonUtil::GetInstance()']]], ['getinvalid_225',['GetInvalid',['../classGpgFrontend_1_1GpgUID.html#a388ad367d353edd5eeb6e529977c924c',1,'GpgFrontend::GpgUID']]], ['getkey_226',['GetKey',['../classGpgFrontend_1_1GpgKeyGetter.html#a94243d09c9418c8ebf0c7cdab4a2b7f1',1,'GpgFrontend::GpgKeyGetter']]], ['getkeyid_227',['GetKeyID',['../classGpgFrontend_1_1GpgKeySignature.html#a4277f6deb7c07aaba62fbe8e7867b1fe',1,'GpgFrontend::GpgKeySignature']]], @@ -59,93 +59,94 @@ var searchData= ['getlatestversion_233',['getLatestVersion',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a7329657135624fc42ad80d821e11befe',1,'GpgFrontend::UI::UpdateTab']]], ['getlocaledir_234',['GetLocaleDir',['../classGpgFrontend_1_1GlobalSettingStation.html#a0b3780564305e9b210d66ef377c21565',1,'GpgFrontend::GlobalSettingStation']]], ['getlogdir_235',['GetLogDir',['../classGpgFrontend_1_1GlobalSettingStation.html#a7da9b08291ef2391892f5c9375b8db23',1,'GpgFrontend::GlobalSettingStation']]], - ['getname_236',['GetName',['../classGpgFrontend_1_1GpgKeySignature.html#acd5e46397ebea3224761a6af15eea4fb',1,'GpgFrontend::GpgKeySignature::GetName()'],['../classGpgFrontend_1_1GpgUID.html#acca1fff5f12a216b05f2a6186b1e436b',1,'GpgFrontend::GpgUID::GetName()'],['../classGpgFrontend_1_1GpgKey.html#a7bceca68800c3ada9280c29eaeb5affc',1,'GpgFrontend::GpgKey::GetName()'],['../classGpgFrontend_1_1GenKeyInfo.html#abb3e1366dca0288bdc42123e55d77335',1,'GpgFrontend::GenKeyInfo::GetName()']]], + ['getname_236',['GetName',['../classGpgFrontend_1_1GpgUID.html#acca1fff5f12a216b05f2a6186b1e436b',1,'GpgFrontend::GpgUID::GetName()'],['../classGpgFrontend_1_1GpgKeySignature.html#acd5e46397ebea3224761a6af15eea4fb',1,'GpgFrontend::GpgKeySignature::GetName()'],['../classGpgFrontend_1_1GpgKey.html#a7bceca68800c3ada9280c29eaeb5affc',1,'GpgFrontend::GpgKey::GetName()'],['../classGpgFrontend_1_1GenKeyInfo.html#abb3e1366dca0288bdc42123e55d77335',1,'GpgFrontend::GenKeyInfo::GetName()']]], ['getobjectsize_237',['GetObjectSize',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#aa35e6ad1ef3a5733fb338f3333b5c637',1,'GpgFrontend::Thread::Task::DataObject']]], ['getownertrust_238',['GetOwnerTrust',['../classGpgFrontend_1_1GpgKey.html#a3327ad34ff14feb75f3fbfc2bfb7fc44',1,'GpgFrontend::GpgKey']]], - ['getpassphrase_239',['GetPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#a890ee16ef6088570360a073a6b531c89',1,'GpgFrontend::GenKeyInfo']]], - ['getpolicy_240',['GetPolicy',['../classGpgFrontend_1_1GpgTOFUInfo.html#a34d1073bb25a8958e70016f3cd6b167f',1,'GpgFrontend::GpgTOFUInfo']]], - ['getprimarykeylength_241',['GetPrimaryKeyLength',['../classGpgFrontend_1_1GpgKey.html#a5b276fdeb438fe14ec2850d799401be6',1,'GpgFrontend::GpgKey']]], - ['getprivatechecked_242',['GetPrivateChecked',['../classGpgFrontend_1_1UI_1_1KeyList.html#a81c2e36427371fa6ae6381870b9b5bdd',1,'GpgFrontend::UI::KeyList']]], - ['getprotocol_243',['GetProtocol',['../classGpgFrontend_1_1GpgKey.html#ad2440a2902c81192d5549fe951ddb130',1,'GpgFrontend::GpgKey']]], - ['getpubkey_244',['GetPubkey',['../classGpgFrontend_1_1GpgKeyGetter.html#a7a8bc7c0f12a11e108051e4c824fc430',1,'GpgFrontend::GpgKeyGetter']]], - ['getpubkeyalgo_245',['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_246',['GetPublicKeyAlgo',['../classGpgFrontend_1_1GpgKey.html#a1c21bc3b1788753f56272ad73052fc5f',1,'GpgFrontend::GpgKey']]], - ['getresourcedir_247',['GetResourceDir',['../classGpgFrontend_1_1GlobalSettingStation.html#afc1aa3dec55ae4e741f92fce1140a2d0',1,'GpgFrontend::GlobalSettingStation']]], - ['getresultreport_248',['GetResultReport',['../classGpgFrontend_1_1GpgResultAnalyse.html#aa9e35e573ea4c0ebdbb014d1afbaab9d',1,'GpgFrontend::GpgResultAnalyse']]], - ['getrevoked_249',['GetRevoked',['../classGpgFrontend_1_1GpgUID.html#a32450fbf22c64cf522e9a090423344a2',1,'GpgFrontend::GpgUID']]], - ['getselected_250',['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_251',['GetSelectedKey',['../classGpgFrontend_1_1UI_1_1KeyList.html#ab4368b81402e2468a9e960de8fb7080f',1,'GpgFrontend::UI::KeyList']]], - ['getsequency_252',['GetSequency',['../classGpgFrontend_1_1Thread_1_1Task.html#a80f47accc0832e3aee686ee2879b431e',1,'GpgFrontend::Thread::Task']]], - ['getsignatures_253',['GetSignatures',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a2063acf8262e2c600b14ed1948486ac3',1,'GpgFrontend::GpgVerifyResultAnalyse::GetSignatures()'],['../classGpgFrontend_1_1GpgUID.html#af7b5310b319378c30c488277e95ef601',1,'GpgFrontend::GpgUID::GetSignatures()']]], - ['getsigncount_254',['GetSignCount',['../classGpgFrontend_1_1GpgTOFUInfo.html#a681046a3916d0d0cdcf0852bfa76fdb0',1,'GpgFrontend::GpgTOFUInfo']]], - ['getsigners_255',['GetSigners',['../classGpgFrontend_1_1GpgBasicOperator.html#a78f37b8d5afd6c0248665a4415f880cf',1,'GpgFrontend::GpgBasicOperator']]], - ['getsignfirst_256',['GetSignFirst',['../classGpgFrontend_1_1GpgTOFUInfo.html#a788a439b206882c6317162878e2fe0b8',1,'GpgFrontend::GpgTOFUInfo']]], - ['getsignlast_257',['GetSignLast',['../classGpgFrontend_1_1GpgTOFUInfo.html#a746cbcf731af6b19ade42debbf1e2c8f',1,'GpgFrontend::GpgTOFUInfo']]], - ['getsingletonstorage_258',['GetSingletonStorage',['../classGpgFrontend_1_1SingletonStorageCollection.html#a6f933390c54b7f55d5ffb4624074725f',1,'GpgFrontend::SingletonStorageCollection']]], - ['getsizechangestep_259',['GetSizeChangeStep',['../classGpgFrontend_1_1GenKeyInfo.html#ac211a7a615805ae97ff284b46abfeab7',1,'GpgFrontend::GenKeyInfo']]], - ['getstandalonedatabasedir_260',['GetStandaloneDatabaseDir',['../classGpgFrontend_1_1GlobalSettingStation.html#af484ca46c5df831a9dd76f3a88d66332',1,'GpgFrontend::GlobalSettingStation']]], - ['getstandalonegpgbindir_261',['GetStandaloneGpgBinDir',['../classGpgFrontend_1_1GlobalSettingStation.html#aa93b21af9ac6649d5749c83c809f5b00',1,'GpgFrontend::GlobalSettingStation']]], - ['getstatus_262',['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_263',['GetSubKeys',['../classGpgFrontend_1_1GpgKey.html#a746699842f6c49687af0487a8b3b163d',1,'GpgFrontend::GpgKey']]], - ['getsuggestmaxkeysize_264',['GetSuggestMaxKeySize',['../classGpgFrontend_1_1GenKeyInfo.html#ae461a553176ad1ab0c1121ea6de6c8c2',1,'GpgFrontend::GenKeyInfo']]], - ['getsuggestminkeysize_265',['GetSuggestMinKeySize',['../classGpgFrontend_1_1GenKeyInfo.html#a0b1612421148b86919b7130ed148ca51',1,'GpgFrontend::GenKeyInfo']]], - ['getsummary_266',['GetSummary',['../classGpgFrontend_1_1GpgSignature.html#a3b143f6e13b71663d81fc0f326aad17f',1,'GpgFrontend::GpgSignature']]], - ['getsupportedkeyalgo_267',['GetSupportedKeyAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#ac0dbb2d89b1e5f9b272679ba3f24314e',1,'GpgFrontend::GenKeyInfo']]], - ['getsupportedkeyalgostandalone_268',['GetSupportedKeyAlgoStandalone',['../classGpgFrontend_1_1GenKeyInfo.html#afb8315b6612c64b3921b72df98ebcc74',1,'GpgFrontend::GenKeyInfo']]], - ['getsupportedsubkeyalgo_269',['GetSupportedSubkeyAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#a168d6fe5252812f5984ba6d8046c7741',1,'GpgFrontend::GenKeyInfo']]], - ['getsupportedsubkeyalgostandalone_270',['GetSupportedSubkeyAlgoStandalone',['../classGpgFrontend_1_1GenKeyInfo.html#a6819b0ca3ef7712b85ae320030cde023',1,'GpgFrontend::GenKeyInfo']]], - ['gettabidstosave_271',['GetTabIdsToSave',['../classGpgFrontend_1_1UI_1_1QuitDialog.html#aec364c38056b6d92c172f8cdfb5f8e82',1,'GpgFrontend::UI::QuitDialog']]], - ['gettempcachevalue_272',['GetTempCacheValue',['../classGpgFrontend_1_1CoreCommonUtil.html#aa3e4003ca3248537973ea6cf42e9f040',1,'GpgFrontend::CoreCommonUtil']]], - ['gettextpage_273',['GetTextPage',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a6218e6e12bdba0228e4ab4276f7fed7a',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['gettofuinfos_274',['GetTofuInfos',['../classGpgFrontend_1_1GpgUID.html#a2a36376484f7c1a4a19377d24e47a0b2',1,'GpgFrontend::GpgUID']]], - ['getuid_275',['GetUID',['../classGpgFrontend_1_1GpgKeySignature.html#a95254ea2c00829b9dc87adc4a317cde5',1,'GpgFrontend::GpgKeySignature::GetUID()'],['../classGpgFrontend_1_1GpgUID.html#a467897d43a18b0cadd2e2e44384f6cdd',1,'GpgFrontend::GpgUID::GetUID()']]], - ['getuids_276',['GetUIDs',['../classGpgFrontend_1_1GpgKey.html#ac8b13b45e487cdc423b78d3017897f99',1,'GpgFrontend::GpgKey']]], - ['getuisettings_277',['GetUISettings',['../classGpgFrontend_1_1GlobalSettingStation.html#a1d8b9f91c75ef7a1d008a171f09f2c0e',1,'GpgFrontend::GlobalSettingStation']]], - ['getuserid_278',['GetUserid',['../classGpgFrontend_1_1GenKeyInfo.html#a4ee4a0659e76376d9bfc527c334392e1',1,'GpgFrontend::GenKeyInfo']]], - ['getuuid_279',['GetUUID',['../classGpgFrontend_1_1Thread_1_1Task.html#a50b91d27874af31ef13c493b00824ccf',1,'GpgFrontend::Thread::Task']]], - ['getvalidity_280',['GetValidity',['../classGpgFrontend_1_1GpgSignature.html#a09cb6b465e85dffcf7867e70a276e9ad',1,'GpgFrontend::GpgSignature::GetValidity()'],['../classGpgFrontend_1_1GpgTOFUInfo.html#a8770062c9e0c3875083d2c92ebe8ccb0',1,'GpgFrontend::GpgTOFUInfo::GetValidity()']]], - ['global_5fsetting_5fstation_5f_281',['global_setting_station_',['../classGpgFrontend_1_1DataObjectOperator.html#a3c195f8e4c30d95be14a6d43e9282601',1,'GpgFrontend::DataObjectOperator']]], - ['globalsettingstation_282',['GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html#abdc6dda369d4214e43ffa2930f7386b0',1,'GpgFrontend::GlobalSettingStation::GlobalSettingStation()'],['../classGpgFrontend_1_1GlobalSettingStation.html',1,'GpgFrontend::GlobalSettingStation']]], - ['gnupg_5fact_5f_283',['gnupg_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a79b83f536a7c4299eaa3d22e4e875227',1,'GpgFrontend::UI::MainWindow']]], - ['gnupgcontrollerdialog_284',['GnuPGControllerDialog',['../classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html#add69685b9c83ed03ed24d36f2badd835',1,'GpgFrontend::UI::GnuPGControllerDialog::GnuPGControllerDialog()'],['../classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html',1,'GpgFrontend::UI::GnuPGControllerDialog']]], - ['gnupghomepath_285',['GnuPGHomePath',['../classGpgFrontend_1_1GpgInfo.html#a0c1dbdb54f880a620419fdbd8336dc5d',1,'GpgFrontend::GpgInfo']]], - ['gnupgtab_286',['GnupgTab',['../classGpgFrontend_1_1UI_1_1GnupgTab.html#ab9d9e8af4494659f13b87804e7318a79',1,'GpgFrontend::UI::GnupgTab::GnupgTab()'],['../classGpgFrontend_1_1UI_1_1GnupgTab.html',1,'GpgFrontend::UI::GnupgTab']]], - ['gnupgversion_287',['GnupgVersion',['../classGpgFrontend_1_1GpgInfo.html#abbb3d503b10073bebf86d79bbaeab4c9',1,'GpgFrontend::GpgInfo']]], - ['good_288',['good',['../classGpgFrontend_1_1GpgContext.html#a73c505a2f3d39d1638dc4d9a3e13a913',1,'GpgFrontend::GpgContext']]], - ['gpg_5fmenu_5f_289',['gpg_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2bed0c3b032269c9eb82bc7c068852cb',1,'GpgFrontend::UI::MainWindow']]], - ['gpgadvancedoperator_290',['GpgAdvancedOperator',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a9233156767f1d45272b95decd18241e3',1,'GpgFrontend::GpgAdvancedOperator::GpgAdvancedOperator()'],['../classGpgFrontend_1_1GpgAdvancedOperator.html',1,'GpgFrontend::GpgAdvancedOperator']]], - ['gpgagentpath_291',['GpgAgentPath',['../classGpgFrontend_1_1GpgInfo.html#af6ca2e99ffc487b8e4aa251d3cb23191',1,'GpgFrontend::GpgInfo']]], - ['gpgbasicoperator_292',['GpgBasicOperator',['../classGpgFrontend_1_1GpgBasicOperator.html#a139be86330f88e5f833aa24263a3b2ae',1,'GpgFrontend::GpgBasicOperator::GpgBasicOperator()'],['../classGpgFrontend_1_1GpgBasicOperator.html',1,'GpgFrontend::GpgBasicOperator']]], - ['gpgcommandexecutor_293',['GpgCommandExecutor',['../classGpgFrontend_1_1GpgCommandExecutor.html#a94240f423464600938bfcafa2b186c38',1,'GpgFrontend::GpgCommandExecutor::GpgCommandExecutor()'],['../classGpgFrontend_1_1GpgCommandExecutor.html',1,'GpgFrontend::GpgCommandExecutor']]], - ['gpgconfpath_294',['GpgConfPath',['../classGpgFrontend_1_1GpgInfo.html#a2fcd53b59bc251c38eb8d79cec946777',1,'GpgFrontend::GpgInfo']]], - ['gpgconstants_295',['GpgConstants',['../classGpgFrontend_1_1GpgConstants.html',1,'GpgFrontend']]], - ['gpgcontext_296',['GpgContext',['../classGpgFrontend_1_1GpgContext.html#a39882b323569987592231f722a2ef147',1,'GpgFrontend::GpgContext::GpgContext(const GpgContextInitArgs &args={})'],['../classGpgFrontend_1_1GpgContext.html#a2429d3f9daa189b4d5d8624c9f4d528b',1,'GpgFrontend::GpgContext::GpgContext(int channel)'],['../classGpgFrontend_1_1GpgContext.html',1,'GpgFrontend::GpgContext']]], - ['gpgcontextinitargs_297',['GpgContextInitArgs',['../structGpgFrontend_1_1GpgContextInitArgs.html',1,'GpgFrontend']]], - ['gpgdata_298',['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)'],['../classGpgFrontend_1_1GpgData.html',1,'GpgFrontend::GpgData']]], - ['gpgdecryptresultanalyse_299',['GpgDecryptResultAnalyse',['../classGpgFrontend_1_1GpgDecryptResultAnalyse.html#a442438ae58cdd7220f0e4b0792e5a372',1,'GpgFrontend::GpgDecryptResultAnalyse::GpgDecryptResultAnalyse()'],['../classGpgFrontend_1_1GpgDecryptResultAnalyse.html',1,'GpgFrontend::GpgDecryptResultAnalyse']]], - ['gpgencryptresultanalyse_300',['GpgEncryptResultAnalyse',['../classGpgFrontend_1_1GpgEncryptResultAnalyse.html#a0801e32c8709da373f6715bc994a7747',1,'GpgFrontend::GpgEncryptResultAnalyse::GpgEncryptResultAnalyse()'],['../classGpgFrontend_1_1GpgEncryptResultAnalyse.html',1,'GpgFrontend::GpgEncryptResultAnalyse']]], - ['gpgfileopera_301',['GpgFileOpera',['../classGpgFrontend_1_1GpgFileOpera.html#aa81da3d72c4fbc57e7138bfec7731152',1,'GpgFrontend::GpgFileOpera::GpgFileOpera()'],['../classGpgFrontend_1_1GpgFileOpera.html',1,'GpgFrontend::GpgFileOpera']]], - ['gpgfrontend_302',['GpgFrontend',['../namespaceGpgFrontend.html',1,'']]], - ['gpgfrontend_20develop_20document_20main_20page_303',['GpgFrontend Develop Document Main Page',['../index.html',1,'']]], - ['gpgfrontendapplication_304',['GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html',1,'GpgFrontend::UI::GpgFrontendApplication'],['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#ac0290f06e08f2714f9727bb578df1298',1,'GpgFrontend::UI::GpgFrontendApplication::GpgFrontendApplication()']]], - ['gpgimportedkey_305',['GpgImportedKey',['../classGpgFrontend_1_1GpgImportedKey.html',1,'GpgFrontend']]], - ['gpgimportinformation_306',['GpgImportInformation',['../classGpgFrontend_1_1GpgImportInformation.html',1,'GpgFrontend::GpgImportInformation'],['../classGpgFrontend_1_1GpgImportInformation.html#ab282d4f701403cd68eb02d1aad30be56',1,'GpgFrontend::GpgImportInformation::GpgImportInformation()']]], - ['gpginfo_307',['GpgInfo',['../classGpgFrontend_1_1GpgInfo.html',1,'GpgFrontend']]], - ['gpgkey_308',['GpgKey',['../classGpgFrontend_1_1GpgKey.html',1,'GpgFrontend::GpgKey'],['../classGpgFrontend_1_1GpgKey.html#aeb316f8728b10e966eed6f0291794eed',1,'GpgFrontend::GpgKey::GpgKey(GpgKey &&k) noexcept'],['../classGpgFrontend_1_1GpgKey.html#a1d6e415e77625c1281dac1cc5f33f804',1,'GpgFrontend::GpgKey::GpgKey(const gpgme_key_t &key)=delete'],['../classGpgFrontend_1_1GpgKey.html#aa599159ab1041c2f5a5fbf09666489b9',1,'GpgFrontend::GpgKey::GpgKey(gpgme_key_t &&key)'],['../classGpgFrontend_1_1GpgKey.html#a3b08060c07a9cc207eb8c98771bd4bc1',1,'GpgFrontend::GpgKey::GpgKey()=default']]], - ['gpgkeygetter_309',['GpgKeyGetter',['../classGpgFrontend_1_1GpgKeyGetter.html',1,'GpgFrontend::GpgKeyGetter'],['../classGpgFrontend_1_1GpgKeyGetter.html#a8eeee9f6dd74dc24c24794ce63c62285',1,'GpgFrontend::GpgKeyGetter::GpgKeyGetter()']]], - ['gpgkeyimportexporter_310',['GpgKeyImportExporter',['../classGpgFrontend_1_1GpgKeyImportExporter.html',1,'GpgFrontend::GpgKeyImportExporter'],['../classGpgFrontend_1_1GpgKeyImportExporter.html#a0eede7c782d17b32d6c1f30cd8496561',1,'GpgFrontend::GpgKeyImportExporter::GpgKeyImportExporter()']]], - ['gpgkeymanager_311',['GpgKeyManager',['../classGpgFrontend_1_1GpgKeyManager.html',1,'GpgFrontend::GpgKeyManager'],['../classGpgFrontend_1_1GpgKeyManager.html#a210b717fd8ee63b064d77f32b0df4c5d',1,'GpgFrontend::GpgKeyManager::GpgKeyManager()']]], - ['gpgkeyopera_312',['GpgKeyOpera',['../classGpgFrontend_1_1GpgKeyOpera.html',1,'GpgFrontend::GpgKeyOpera'],['../classGpgFrontend_1_1GpgKeyOpera.html#a01d6a920156a38a34c57d9c49c361079',1,'GpgFrontend::GpgKeyOpera::GpgKeyOpera()']]], - ['gpgkeysignature_313',['GpgKeySignature',['../classGpgFrontend_1_1GpgKeySignature.html',1,'GpgFrontend::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_314',['GpgResultAnalyse',['../classGpgFrontend_1_1GpgResultAnalyse.html',1,'GpgFrontend::GpgResultAnalyse'],['../classGpgFrontend_1_1GpgResultAnalyse.html#aa3c9bdf1ea4c87476010ef32fd2fb426',1,'GpgFrontend::GpgResultAnalyse::GpgResultAnalyse()']]], - ['gpgsignature_315',['GpgSignature',['../classGpgFrontend_1_1GpgSignature.html',1,'GpgFrontend::GpgSignature'],['../classGpgFrontend_1_1GpgSignature.html#a1b705f45de8f6d0ae97f1ffda28185b7',1,'GpgFrontend::GpgSignature::GpgSignature(const GpgSignature &)=delete'],['../classGpgFrontend_1_1GpgSignature.html#aeae075c7b9c628f558d6fedbc8b9233a',1,'GpgFrontend::GpgSignature::GpgSignature(GpgSignature &&) noexcept'],['../classGpgFrontend_1_1GpgSignature.html#aea05d301ccf75f4a3aec2be58541eca8',1,'GpgFrontend::GpgSignature::GpgSignature(gpgme_signature_t sig)'],['../classGpgFrontend_1_1GpgSignature.html#ab7a4489b35d918503076b2659d14fafe',1,'GpgFrontend::GpgSignature::GpgSignature()']]], - ['gpgsignresultanalyse_316',['GpgSignResultAnalyse',['../classGpgFrontend_1_1GpgSignResultAnalyse.html',1,'GpgFrontend::GpgSignResultAnalyse'],['../classGpgFrontend_1_1GpgSignResultAnalyse.html#a3ddd2d52ad91fdf7f4c8740312570c8e',1,'GpgFrontend::GpgSignResultAnalyse::GpgSignResultAnalyse()']]], - ['gpgsubkey_317',['GpgSubKey',['../classGpgFrontend_1_1GpgSubKey.html',1,'GpgFrontend::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_318',['GpgTOFUInfo',['../classGpgFrontend_1_1GpgTOFUInfo.html',1,'GpgFrontend::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'],['../classGpgFrontend_1_1GpgTOFUInfo.html#a80acb09347a74cc35776d58b9874cf37',1,'GpgFrontend::GpgTOFUInfo::GpgTOFUInfo()']]], - ['gpguid_319',['GpgUID',['../classGpgFrontend_1_1GpgUID.html',1,'GpgFrontend::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#a35fdcef4ecf2598461bdc596ffc7957c',1,'GpgFrontend::GpgUID::GpgUID()'],['../classGpgFrontend_1_1GpgUID.html#a58ed67984063f0b87e35bc1782a1cc0a',1,'GpgFrontend::GpgUID::GpgUID(const GpgUID &)=delete']]], - ['gpguidoperator_320',['GpgUIDOperator',['../classGpgFrontend_1_1GpgUIDOperator.html',1,'GpgFrontend::GpgUIDOperator'],['../classGpgFrontend_1_1GpgUIDOperator.html#ab74a830c858ab9ff135375743393a7c7',1,'GpgFrontend::GpgUIDOperator::GpgUIDOperator()']]], - ['gpgverifyresultanalyse_321',['GpgVerifyResultAnalyse',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html',1,'GpgFrontend::GpgVerifyResultAnalyse'],['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#ab1d67da5dbe5bd2d665f7121e5f5354b',1,'GpgFrontend::GpgVerifyResultAnalyse::GpgVerifyResultAnalyse()']]], - ['rawapi_322',['RawAPI',['../namespaceGpgFrontend_1_1RawAPI.html',1,'GpgFrontend']]], - ['thread_323',['Thread',['../namespaceGpgFrontend_1_1Thread.html',1,'GpgFrontend']]], - ['ui_324',['UI',['../namespaceGpgFrontend_1_1UI.html',1,'GpgFrontend']]] + ['getownertrustlevel_239',['GetOwnerTrustLevel',['../classGpgFrontend_1_1GpgKey.html#a4ced7bda206a0d72a2548783198ae4fe',1,'GpgFrontend::GpgKey']]], + ['getpassphrase_240',['GetPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#a890ee16ef6088570360a073a6b531c89',1,'GpgFrontend::GenKeyInfo']]], + ['getpolicy_241',['GetPolicy',['../classGpgFrontend_1_1GpgTOFUInfo.html#a34d1073bb25a8958e70016f3cd6b167f',1,'GpgFrontend::GpgTOFUInfo']]], + ['getprimarykeylength_242',['GetPrimaryKeyLength',['../classGpgFrontend_1_1GpgKey.html#a5b276fdeb438fe14ec2850d799401be6',1,'GpgFrontend::GpgKey']]], + ['getprivatechecked_243',['GetPrivateChecked',['../classGpgFrontend_1_1UI_1_1KeyList.html#a81c2e36427371fa6ae6381870b9b5bdd',1,'GpgFrontend::UI::KeyList']]], + ['getprotocol_244',['GetProtocol',['../classGpgFrontend_1_1GpgKey.html#ad2440a2902c81192d5549fe951ddb130',1,'GpgFrontend::GpgKey']]], + ['getpubkey_245',['GetPubkey',['../classGpgFrontend_1_1GpgKeyGetter.html#a7a8bc7c0f12a11e108051e4c824fc430',1,'GpgFrontend::GpgKeyGetter']]], + ['getpubkeyalgo_246',['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_247',['GetPublicKeyAlgo',['../classGpgFrontend_1_1GpgKey.html#a1c21bc3b1788753f56272ad73052fc5f',1,'GpgFrontend::GpgKey']]], + ['getresourcedir_248',['GetResourceDir',['../classGpgFrontend_1_1GlobalSettingStation.html#afc1aa3dec55ae4e741f92fce1140a2d0',1,'GpgFrontend::GlobalSettingStation']]], + ['getresultreport_249',['GetResultReport',['../classGpgFrontend_1_1GpgResultAnalyse.html#aa9e35e573ea4c0ebdbb014d1afbaab9d',1,'GpgFrontend::GpgResultAnalyse']]], + ['getrevoked_250',['GetRevoked',['../classGpgFrontend_1_1GpgUID.html#a32450fbf22c64cf522e9a090423344a2',1,'GpgFrontend::GpgUID']]], + ['getselected_251',['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_252',['GetSelectedKey',['../classGpgFrontend_1_1UI_1_1KeyList.html#ab4368b81402e2468a9e960de8fb7080f',1,'GpgFrontend::UI::KeyList']]], + ['getsequency_253',['GetSequency',['../classGpgFrontend_1_1Thread_1_1Task.html#a80f47accc0832e3aee686ee2879b431e',1,'GpgFrontend::Thread::Task']]], + ['getsignatures_254',['GetSignatures',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a2063acf8262e2c600b14ed1948486ac3',1,'GpgFrontend::GpgVerifyResultAnalyse::GetSignatures()'],['../classGpgFrontend_1_1GpgUID.html#af7b5310b319378c30c488277e95ef601',1,'GpgFrontend::GpgUID::GetSignatures()']]], + ['getsigncount_255',['GetSignCount',['../classGpgFrontend_1_1GpgTOFUInfo.html#a681046a3916d0d0cdcf0852bfa76fdb0',1,'GpgFrontend::GpgTOFUInfo']]], + ['getsigners_256',['GetSigners',['../classGpgFrontend_1_1GpgBasicOperator.html#a78f37b8d5afd6c0248665a4415f880cf',1,'GpgFrontend::GpgBasicOperator']]], + ['getsignfirst_257',['GetSignFirst',['../classGpgFrontend_1_1GpgTOFUInfo.html#a788a439b206882c6317162878e2fe0b8',1,'GpgFrontend::GpgTOFUInfo']]], + ['getsignlast_258',['GetSignLast',['../classGpgFrontend_1_1GpgTOFUInfo.html#a746cbcf731af6b19ade42debbf1e2c8f',1,'GpgFrontend::GpgTOFUInfo']]], + ['getsingletonstorage_259',['GetSingletonStorage',['../classGpgFrontend_1_1SingletonStorageCollection.html#a6f933390c54b7f55d5ffb4624074725f',1,'GpgFrontend::SingletonStorageCollection']]], + ['getsizechangestep_260',['GetSizeChangeStep',['../classGpgFrontend_1_1GenKeyInfo.html#ac211a7a615805ae97ff284b46abfeab7',1,'GpgFrontend::GenKeyInfo']]], + ['getstandalonedatabasedir_261',['GetStandaloneDatabaseDir',['../classGpgFrontend_1_1GlobalSettingStation.html#af484ca46c5df831a9dd76f3a88d66332',1,'GpgFrontend::GlobalSettingStation']]], + ['getstandalonegpgbindir_262',['GetStandaloneGpgBinDir',['../classGpgFrontend_1_1GlobalSettingStation.html#aa93b21af9ac6649d5749c83c809f5b00',1,'GpgFrontend::GlobalSettingStation']]], + ['getstatus_263',['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_264',['GetSubKeys',['../classGpgFrontend_1_1GpgKey.html#a746699842f6c49687af0487a8b3b163d',1,'GpgFrontend::GpgKey']]], + ['getsuggestmaxkeysize_265',['GetSuggestMaxKeySize',['../classGpgFrontend_1_1GenKeyInfo.html#ae461a553176ad1ab0c1121ea6de6c8c2',1,'GpgFrontend::GenKeyInfo']]], + ['getsuggestminkeysize_266',['GetSuggestMinKeySize',['../classGpgFrontend_1_1GenKeyInfo.html#a0b1612421148b86919b7130ed148ca51',1,'GpgFrontend::GenKeyInfo']]], + ['getsummary_267',['GetSummary',['../classGpgFrontend_1_1GpgSignature.html#a3b143f6e13b71663d81fc0f326aad17f',1,'GpgFrontend::GpgSignature']]], + ['getsupportedkeyalgo_268',['GetSupportedKeyAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#ac0dbb2d89b1e5f9b272679ba3f24314e',1,'GpgFrontend::GenKeyInfo']]], + ['getsupportedkeyalgostandalone_269',['GetSupportedKeyAlgoStandalone',['../classGpgFrontend_1_1GenKeyInfo.html#afb8315b6612c64b3921b72df98ebcc74',1,'GpgFrontend::GenKeyInfo']]], + ['getsupportedsubkeyalgo_270',['GetSupportedSubkeyAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#a168d6fe5252812f5984ba6d8046c7741',1,'GpgFrontend::GenKeyInfo']]], + ['getsupportedsubkeyalgostandalone_271',['GetSupportedSubkeyAlgoStandalone',['../classGpgFrontend_1_1GenKeyInfo.html#a6819b0ca3ef7712b85ae320030cde023',1,'GpgFrontend::GenKeyInfo']]], + ['gettabidstosave_272',['GetTabIdsToSave',['../classGpgFrontend_1_1UI_1_1QuitDialog.html#aec364c38056b6d92c172f8cdfb5f8e82',1,'GpgFrontend::UI::QuitDialog']]], + ['gettempcachevalue_273',['GetTempCacheValue',['../classGpgFrontend_1_1CoreCommonUtil.html#aa3e4003ca3248537973ea6cf42e9f040',1,'GpgFrontend::CoreCommonUtil']]], + ['gettextpage_274',['GetTextPage',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a6218e6e12bdba0228e4ab4276f7fed7a',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['gettofuinfos_275',['GetTofuInfos',['../classGpgFrontend_1_1GpgUID.html#a2a36376484f7c1a4a19377d24e47a0b2',1,'GpgFrontend::GpgUID']]], + ['getuid_276',['GetUID',['../classGpgFrontend_1_1GpgKeySignature.html#a95254ea2c00829b9dc87adc4a317cde5',1,'GpgFrontend::GpgKeySignature::GetUID()'],['../classGpgFrontend_1_1GpgUID.html#a467897d43a18b0cadd2e2e44384f6cdd',1,'GpgFrontend::GpgUID::GetUID()']]], + ['getuids_277',['GetUIDs',['../classGpgFrontend_1_1GpgKey.html#ac8b13b45e487cdc423b78d3017897f99',1,'GpgFrontend::GpgKey']]], + ['getuisettings_278',['GetUISettings',['../classGpgFrontend_1_1GlobalSettingStation.html#a1d8b9f91c75ef7a1d008a171f09f2c0e',1,'GpgFrontend::GlobalSettingStation']]], + ['getuserid_279',['GetUserid',['../classGpgFrontend_1_1GenKeyInfo.html#a4ee4a0659e76376d9bfc527c334392e1',1,'GpgFrontend::GenKeyInfo']]], + ['getuuid_280',['GetUUID',['../classGpgFrontend_1_1Thread_1_1Task.html#a50b91d27874af31ef13c493b00824ccf',1,'GpgFrontend::Thread::Task']]], + ['getvalidity_281',['GetValidity',['../classGpgFrontend_1_1GpgSignature.html#a09cb6b465e85dffcf7867e70a276e9ad',1,'GpgFrontend::GpgSignature::GetValidity()'],['../classGpgFrontend_1_1GpgTOFUInfo.html#a8770062c9e0c3875083d2c92ebe8ccb0',1,'GpgFrontend::GpgTOFUInfo::GetValidity()']]], + ['global_5fsetting_5fstation_5f_282',['global_setting_station_',['../classGpgFrontend_1_1DataObjectOperator.html#a3c195f8e4c30d95be14a6d43e9282601',1,'GpgFrontend::DataObjectOperator']]], + ['globalsettingstation_283',['GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html#abdc6dda369d4214e43ffa2930f7386b0',1,'GpgFrontend::GlobalSettingStation::GlobalSettingStation()'],['../classGpgFrontend_1_1GlobalSettingStation.html',1,'GpgFrontend::GlobalSettingStation']]], + ['gnupg_5fact_5f_284',['gnupg_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a79b83f536a7c4299eaa3d22e4e875227',1,'GpgFrontend::UI::MainWindow']]], + ['gnupgcontrollerdialog_285',['GnuPGControllerDialog',['../classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html#add69685b9c83ed03ed24d36f2badd835',1,'GpgFrontend::UI::GnuPGControllerDialog::GnuPGControllerDialog()'],['../classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html',1,'GpgFrontend::UI::GnuPGControllerDialog']]], + ['gnupghomepath_286',['GnuPGHomePath',['../classGpgFrontend_1_1GpgInfo.html#a0c1dbdb54f880a620419fdbd8336dc5d',1,'GpgFrontend::GpgInfo']]], + ['gnupgtab_287',['GnupgTab',['../classGpgFrontend_1_1UI_1_1GnupgTab.html#ab9d9e8af4494659f13b87804e7318a79',1,'GpgFrontend::UI::GnupgTab::GnupgTab()'],['../classGpgFrontend_1_1UI_1_1GnupgTab.html',1,'GpgFrontend::UI::GnupgTab']]], + ['gnupgversion_288',['GnupgVersion',['../classGpgFrontend_1_1GpgInfo.html#abbb3d503b10073bebf86d79bbaeab4c9',1,'GpgFrontend::GpgInfo']]], + ['good_289',['good',['../classGpgFrontend_1_1GpgContext.html#a73c505a2f3d39d1638dc4d9a3e13a913',1,'GpgFrontend::GpgContext']]], + ['gpg_5fmenu_5f_290',['gpg_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2bed0c3b032269c9eb82bc7c068852cb',1,'GpgFrontend::UI::MainWindow']]], + ['gpgadvancedoperator_291',['GpgAdvancedOperator',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a9233156767f1d45272b95decd18241e3',1,'GpgFrontend::GpgAdvancedOperator::GpgAdvancedOperator()'],['../classGpgFrontend_1_1GpgAdvancedOperator.html',1,'GpgFrontend::GpgAdvancedOperator']]], + ['gpgagentpath_292',['GpgAgentPath',['../classGpgFrontend_1_1GpgInfo.html#af6ca2e99ffc487b8e4aa251d3cb23191',1,'GpgFrontend::GpgInfo']]], + ['gpgbasicoperator_293',['GpgBasicOperator',['../classGpgFrontend_1_1GpgBasicOperator.html#a139be86330f88e5f833aa24263a3b2ae',1,'GpgFrontend::GpgBasicOperator::GpgBasicOperator()'],['../classGpgFrontend_1_1GpgBasicOperator.html',1,'GpgFrontend::GpgBasicOperator']]], + ['gpgcommandexecutor_294',['GpgCommandExecutor',['../classGpgFrontend_1_1GpgCommandExecutor.html#a94240f423464600938bfcafa2b186c38',1,'GpgFrontend::GpgCommandExecutor::GpgCommandExecutor()'],['../classGpgFrontend_1_1GpgCommandExecutor.html',1,'GpgFrontend::GpgCommandExecutor']]], + ['gpgconfpath_295',['GpgConfPath',['../classGpgFrontend_1_1GpgInfo.html#a2fcd53b59bc251c38eb8d79cec946777',1,'GpgFrontend::GpgInfo']]], + ['gpgconstants_296',['GpgConstants',['../classGpgFrontend_1_1GpgConstants.html',1,'GpgFrontend']]], + ['gpgcontext_297',['GpgContext',['../classGpgFrontend_1_1GpgContext.html#a39882b323569987592231f722a2ef147',1,'GpgFrontend::GpgContext::GpgContext(const GpgContextInitArgs &args={})'],['../classGpgFrontend_1_1GpgContext.html#a2429d3f9daa189b4d5d8624c9f4d528b',1,'GpgFrontend::GpgContext::GpgContext(int channel)'],['../classGpgFrontend_1_1GpgContext.html',1,'GpgFrontend::GpgContext']]], + ['gpgcontextinitargs_298',['GpgContextInitArgs',['../structGpgFrontend_1_1GpgContextInitArgs.html',1,'GpgFrontend']]], + ['gpgdata_299',['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)'],['../classGpgFrontend_1_1GpgData.html',1,'GpgFrontend::GpgData']]], + ['gpgdecryptresultanalyse_300',['GpgDecryptResultAnalyse',['../classGpgFrontend_1_1GpgDecryptResultAnalyse.html#a442438ae58cdd7220f0e4b0792e5a372',1,'GpgFrontend::GpgDecryptResultAnalyse::GpgDecryptResultAnalyse()'],['../classGpgFrontend_1_1GpgDecryptResultAnalyse.html',1,'GpgFrontend::GpgDecryptResultAnalyse']]], + ['gpgencryptresultanalyse_301',['GpgEncryptResultAnalyse',['../classGpgFrontend_1_1GpgEncryptResultAnalyse.html#a0801e32c8709da373f6715bc994a7747',1,'GpgFrontend::GpgEncryptResultAnalyse::GpgEncryptResultAnalyse()'],['../classGpgFrontend_1_1GpgEncryptResultAnalyse.html',1,'GpgFrontend::GpgEncryptResultAnalyse']]], + ['gpgfileopera_302',['GpgFileOpera',['../classGpgFrontend_1_1GpgFileOpera.html#aa81da3d72c4fbc57e7138bfec7731152',1,'GpgFrontend::GpgFileOpera::GpgFileOpera()'],['../classGpgFrontend_1_1GpgFileOpera.html',1,'GpgFrontend::GpgFileOpera']]], + ['gpgfrontend_303',['GpgFrontend',['../namespaceGpgFrontend.html',1,'']]], + ['gpgfrontend_20develop_20document_20main_20page_304',['GpgFrontend Develop Document Main Page',['../index.html',1,'']]], + ['gpgfrontendapplication_305',['GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html',1,'GpgFrontend::UI::GpgFrontendApplication'],['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#ac0290f06e08f2714f9727bb578df1298',1,'GpgFrontend::UI::GpgFrontendApplication::GpgFrontendApplication()']]], + ['gpgimportedkey_306',['GpgImportedKey',['../classGpgFrontend_1_1GpgImportedKey.html',1,'GpgFrontend']]], + ['gpgimportinformation_307',['GpgImportInformation',['../classGpgFrontend_1_1GpgImportInformation.html',1,'GpgFrontend::GpgImportInformation'],['../classGpgFrontend_1_1GpgImportInformation.html#ab282d4f701403cd68eb02d1aad30be56',1,'GpgFrontend::GpgImportInformation::GpgImportInformation()']]], + ['gpginfo_308',['GpgInfo',['../classGpgFrontend_1_1GpgInfo.html',1,'GpgFrontend']]], + ['gpgkey_309',['GpgKey',['../classGpgFrontend_1_1GpgKey.html',1,'GpgFrontend::GpgKey'],['../classGpgFrontend_1_1GpgKey.html#aeb316f8728b10e966eed6f0291794eed',1,'GpgFrontend::GpgKey::GpgKey(GpgKey &&k) noexcept'],['../classGpgFrontend_1_1GpgKey.html#a1d6e415e77625c1281dac1cc5f33f804',1,'GpgFrontend::GpgKey::GpgKey(const gpgme_key_t &key)=delete'],['../classGpgFrontend_1_1GpgKey.html#aa599159ab1041c2f5a5fbf09666489b9',1,'GpgFrontend::GpgKey::GpgKey(gpgme_key_t &&key)'],['../classGpgFrontend_1_1GpgKey.html#a3b08060c07a9cc207eb8c98771bd4bc1',1,'GpgFrontend::GpgKey::GpgKey()=default']]], + ['gpgkeygetter_310',['GpgKeyGetter',['../classGpgFrontend_1_1GpgKeyGetter.html',1,'GpgFrontend::GpgKeyGetter'],['../classGpgFrontend_1_1GpgKeyGetter.html#a8eeee9f6dd74dc24c24794ce63c62285',1,'GpgFrontend::GpgKeyGetter::GpgKeyGetter()']]], + ['gpgkeyimportexporter_311',['GpgKeyImportExporter',['../classGpgFrontend_1_1GpgKeyImportExporter.html',1,'GpgFrontend::GpgKeyImportExporter'],['../classGpgFrontend_1_1GpgKeyImportExporter.html#a0eede7c782d17b32d6c1f30cd8496561',1,'GpgFrontend::GpgKeyImportExporter::GpgKeyImportExporter()']]], + ['gpgkeymanager_312',['GpgKeyManager',['../classGpgFrontend_1_1GpgKeyManager.html',1,'GpgFrontend::GpgKeyManager'],['../classGpgFrontend_1_1GpgKeyManager.html#a210b717fd8ee63b064d77f32b0df4c5d',1,'GpgFrontend::GpgKeyManager::GpgKeyManager()']]], + ['gpgkeyopera_313',['GpgKeyOpera',['../classGpgFrontend_1_1GpgKeyOpera.html',1,'GpgFrontend::GpgKeyOpera'],['../classGpgFrontend_1_1GpgKeyOpera.html#a01d6a920156a38a34c57d9c49c361079',1,'GpgFrontend::GpgKeyOpera::GpgKeyOpera()']]], + ['gpgkeysignature_314',['GpgKeySignature',['../classGpgFrontend_1_1GpgKeySignature.html',1,'GpgFrontend::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_315',['GpgResultAnalyse',['../classGpgFrontend_1_1GpgResultAnalyse.html',1,'GpgFrontend::GpgResultAnalyse'],['../classGpgFrontend_1_1GpgResultAnalyse.html#aa3c9bdf1ea4c87476010ef32fd2fb426',1,'GpgFrontend::GpgResultAnalyse::GpgResultAnalyse()']]], + ['gpgsignature_316',['GpgSignature',['../classGpgFrontend_1_1GpgSignature.html',1,'GpgFrontend::GpgSignature'],['../classGpgFrontend_1_1GpgSignature.html#a1b705f45de8f6d0ae97f1ffda28185b7',1,'GpgFrontend::GpgSignature::GpgSignature(const GpgSignature &)=delete'],['../classGpgFrontend_1_1GpgSignature.html#aeae075c7b9c628f558d6fedbc8b9233a',1,'GpgFrontend::GpgSignature::GpgSignature(GpgSignature &&) noexcept'],['../classGpgFrontend_1_1GpgSignature.html#aea05d301ccf75f4a3aec2be58541eca8',1,'GpgFrontend::GpgSignature::GpgSignature(gpgme_signature_t sig)'],['../classGpgFrontend_1_1GpgSignature.html#ab7a4489b35d918503076b2659d14fafe',1,'GpgFrontend::GpgSignature::GpgSignature()']]], + ['gpgsignresultanalyse_317',['GpgSignResultAnalyse',['../classGpgFrontend_1_1GpgSignResultAnalyse.html',1,'GpgFrontend::GpgSignResultAnalyse'],['../classGpgFrontend_1_1GpgSignResultAnalyse.html#a3ddd2d52ad91fdf7f4c8740312570c8e',1,'GpgFrontend::GpgSignResultAnalyse::GpgSignResultAnalyse()']]], + ['gpgsubkey_318',['GpgSubKey',['../classGpgFrontend_1_1GpgSubKey.html',1,'GpgFrontend::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_319',['GpgTOFUInfo',['../classGpgFrontend_1_1GpgTOFUInfo.html',1,'GpgFrontend::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'],['../classGpgFrontend_1_1GpgTOFUInfo.html#a80acb09347a74cc35776d58b9874cf37',1,'GpgFrontend::GpgTOFUInfo::GpgTOFUInfo()']]], + ['gpguid_320',['GpgUID',['../classGpgFrontend_1_1GpgUID.html',1,'GpgFrontend::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#a35fdcef4ecf2598461bdc596ffc7957c',1,'GpgFrontend::GpgUID::GpgUID()'],['../classGpgFrontend_1_1GpgUID.html#a58ed67984063f0b87e35bc1782a1cc0a',1,'GpgFrontend::GpgUID::GpgUID(const GpgUID &)=delete']]], + ['gpguidoperator_321',['GpgUIDOperator',['../classGpgFrontend_1_1GpgUIDOperator.html',1,'GpgFrontend::GpgUIDOperator'],['../classGpgFrontend_1_1GpgUIDOperator.html#ab74a830c858ab9ff135375743393a7c7',1,'GpgFrontend::GpgUIDOperator::GpgUIDOperator()']]], + ['gpgverifyresultanalyse_322',['GpgVerifyResultAnalyse',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html',1,'GpgFrontend::GpgVerifyResultAnalyse'],['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#ab1d67da5dbe5bd2d665f7121e5f5354b',1,'GpgFrontend::GpgVerifyResultAnalyse::GpgVerifyResultAnalyse()']]], + ['rawapi_323',['RawAPI',['../namespaceGpgFrontend_1_1RawAPI.html',1,'GpgFrontend']]], + ['thread_324',['Thread',['../namespaceGpgFrontend_1_1Thread.html',1,'GpgFrontend']]], + ['ui_325',['UI',['../namespaceGpgFrontend_1_1UI.html',1,'GpgFrontend']]] ]; diff --git a/docs/html/search/all_8.js b/docs/html/search/all_8.js index bcaa45ce..5ec28d18 100644 --- a/docs/html/search/all_8.js +++ b/docs/html/search/all_8.js @@ -1,6 +1,6 @@ var searchData= [ - ['hash_5fkey_5f_325',['hash_key_',['../classGpgFrontend_1_1DataObjectOperator.html#ae409c3562c3e08931daa17f5790c508b',1,'GpgFrontend::DataObjectOperator']]], - ['help_5fmenu_5f_326',['help_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a89fa105ed54d2189d762668262d74c63',1,'GpgFrontend::UI::MainWindow']]], - ['helppage_327',['HelpPage',['../classGpgFrontend_1_1UI_1_1HelpPage.html',1,'GpgFrontend::UI::HelpPage'],['../classGpgFrontend_1_1UI_1_1HelpPage.html#a1be8f5b79fef3d1d62ff4620b8535006',1,'GpgFrontend::UI::HelpPage::HelpPage()']]] + ['hash_5fkey_5f_326',['hash_key_',['../classGpgFrontend_1_1DataObjectOperator.html#ae409c3562c3e08931daa17f5790c508b',1,'GpgFrontend::DataObjectOperator']]], + ['help_5fmenu_5f_327',['help_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a89fa105ed54d2189d762668262d74c63',1,'GpgFrontend::UI::MainWindow']]], + ['helppage_328',['HelpPage',['../classGpgFrontend_1_1UI_1_1HelpPage.html',1,'GpgFrontend::UI::HelpPage'],['../classGpgFrontend_1_1UI_1_1HelpPage.html#a1be8f5b79fef3d1d62ff4620b8535006',1,'GpgFrontend::UI::HelpPage::HelpPage()']]] ]; diff --git a/docs/html/search/all_9.js b/docs/html/search/all_9.js index 7e1cec6d..e6494b4d 100644 --- a/docs/html/search/all_9.js +++ b/docs/html/search/all_9.js @@ -1,55 +1,55 @@ var searchData= [ - ['import_5fbutton_5f_328',['import_button_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8538940a9a5dea7ddf53c89acdeb83be',1,'GpgFrontend::UI::MainWindow']]], - ['import_5fkey_5ffrom_5fedit_5fact_5f_329',['import_key_from_edit_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a01b85fb17c373d8f97ce439027c6d04e',1,'GpgFrontend::UI::MainWindow']]], - ['import_5fkey_5ffrom_5fkeyserver_330',['import_key_from_keyserver',['../namespaceGpgFrontend_1_1UI.html#aa346bd199cecc61b15ef406728b58770',1,'GpgFrontend::UI']]], - ['import_5fkey_5fmenu_5f_331',['import_key_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8d6fe32ab64797459443ed285d769745',1,'GpgFrontend::UI::MainWindow']]], - ['import_5fkeys_332',['import_keys',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a3b818c2a3e5c32fc32425b17e63367e2',1,'GpgFrontend::UI::KeyServerImportDialog::import_keys()'],['../classGpgFrontend_1_1UI_1_1KeyList.html#ab64ba3049fac1aaa9fed4fb1c5919153',1,'GpgFrontend::UI::KeyList::import_keys()']]], - ['import_5funknown_5fkey_5ffrom_5fkeyserver_333',['import_unknown_key_from_keyserver',['../namespaceGpgFrontend_1_1UI.html#a9ab218dde057182cb4911c4792acd925',1,'GpgFrontend::UI']]], - ['importkey_334',['ImportKey',['../classGpgFrontend_1_1GpgKeyImportExporter.html#ab7a9be5283047695cd47562775adf79d',1,'GpgFrontend::GpgKeyImportExporter']]], - ['importkeypackage_335',['ImportKeyPackage',['../classGpgFrontend_1_1KeyPackageOperator.html#a89538b180a42eb7d6ae53583fe10ee07',1,'GpgFrontend::KeyPackageOperator']]], - ['infoboardstatus_336',['InfoBoardStatus',['../namespaceGpgFrontend_1_1UI.html#acbaebd342a317b1f067942e5144bb00d',1,'GpgFrontend::UI']]], - ['infoboardwidget_337',['InfoBoardWidget',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html',1,'GpgFrontend::UI::InfoBoardWidget'],['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#adeef521a8838bf2a1692c25d9b108010',1,'GpgFrontend::UI::InfoBoardWidget::InfoBoardWidget()']]], - ['infotab_338',['InfoTab',['../classGpgFrontend_1_1UI_1_1InfoTab.html',1,'GpgFrontend::UI::InfoTab'],['../classGpgFrontend_1_1UI_1_1InfoTab.html#a99d8b059ee28ea257981892e0b35d4cc',1,'GpgFrontend::UI::InfoTab::InfoTab()']]], - ['infovalid_339',['InfoValid',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#aec79eefdc19c90e046cb48bca347ff1c',1,'GpgFrontend::UI::SoftwareVersion']]], - ['init_340',['Init',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a08ba4521f68c488b23b651e201011759',1,'GpgFrontend::UI::MainWindow']]], - ['init_5fapp_5fsecure_5fkey_341',['init_app_secure_key',['../classGpgFrontend_1_1DataObjectOperator.html#a6b357780482f0e0c021ad55a81eb37cf',1,'GpgFrontend::DataObjectOperator']]], - ['init_5flocale_342',['init_locale',['../namespaceGpgFrontend_1_1UI.html#a157c74e50283da9ed554cf7bf90afbee',1,'GpgFrontend::UI']]], - ['initcoreloggingsystem_343',['InitCoreLoggingSystem',['../namespaceGpgFrontend.html#ab4a865228be071282d2a08e66ef6cb68',1,'GpgFrontend']]], - ['initgpgfrontendui_344',['InitGpgFrontendUI',['../namespaceGpgFrontend_1_1UI.html#ab0311557c1d7bde9c56cbca85fefa6ad',1,'GpgFrontend::UI']]], - ['instances_5fmap_5f_345',['instances_map_',['../classGpgFrontend_1_1SingletonStorage.html#a6181f2b5af39c6b86de89e1ba9eeff1c',1,'GpgFrontend::SingletonStorage']]], - ['instances_5fmutex_5f_346',['instances_mutex_',['../classGpgFrontend_1_1SingletonStorage.html#a15161d0afafec602018a89266dab5641',1,'GpgFrontend::SingletonStorage']]], - ['intropage_347',['IntroPage',['../classGpgFrontend_1_1UI_1_1IntroPage.html',1,'GpgFrontend::UI::IntroPage'],['../classGpgFrontend_1_1UI_1_1IntroPage.html#aed4220a7372b192ee4e8bc5024db922d',1,'GpgFrontend::UI::IntroPage::IntroPage()']]], - ['isallowauthentication_348',['IsAllowAuthentication',['../classGpgFrontend_1_1GenKeyInfo.html#aabdf981c65a0efde1e8905441b9b9c87',1,'GpgFrontend::GenKeyInfo']]], - ['isallowcertification_349',['IsAllowCertification',['../classGpgFrontend_1_1GenKeyInfo.html#ad47ceeb1ccfa8862843034e51b4d8be7',1,'GpgFrontend::GenKeyInfo']]], - ['isallowchangeauthentication_350',['IsAllowChangeAuthentication',['../classGpgFrontend_1_1GenKeyInfo.html#aaf8ab7c6564a2836837a537111d6f5b4',1,'GpgFrontend::GenKeyInfo']]], - ['isallowchangecertification_351',['IsAllowChangeCertification',['../classGpgFrontend_1_1GenKeyInfo.html#adbcddd0fa0a273f9b77fe1297633dabc',1,'GpgFrontend::GenKeyInfo']]], - ['isallowchangeencryption_352',['IsAllowChangeEncryption',['../classGpgFrontend_1_1GenKeyInfo.html#ad04a906300bea028c6fb6b1b2da1d149',1,'GpgFrontend::GenKeyInfo']]], - ['isallowchangesigning_353',['IsAllowChangeSigning',['../classGpgFrontend_1_1GenKeyInfo.html#a06f95a8d26da79bcbe7d51e266879a94',1,'GpgFrontend::GenKeyInfo']]], - ['isallowencryption_354',['IsAllowEncryption',['../classGpgFrontend_1_1GenKeyInfo.html#a28ed8a65243e5bc69403305752c2cdc9',1,'GpgFrontend::GenKeyInfo']]], - ['isallownopassphrase_355',['IsAllowNoPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#af6a79124a4571ff7f37c1c5e6c1a9415',1,'GpgFrontend::GenKeyInfo']]], - ['isallowsigning_356',['IsAllowSigning',['../classGpgFrontend_1_1GenKeyInfo.html#ad972292c408cb83c08e739327795a5f0',1,'GpgFrontend::GenKeyInfo']]], - ['iscardkey_357',['IsCardKey',['../classGpgFrontend_1_1GpgSubKey.html#ad818aa66e47d6686eb8ff253b3c21814',1,'GpgFrontend::GpgSubKey']]], - ['isdisabled_358',['IsDisabled',['../classGpgFrontend_1_1GpgSubKey.html#a75abb60a2130efc7fad8ab8fb3157042',1,'GpgFrontend::GpgSubKey::IsDisabled()'],['../classGpgFrontend_1_1GpgKey.html#a7eaf1e722d8a59f6a86d8e732217d89c',1,'GpgFrontend::GpgKey::IsDisabled()']]], - ['isdiscarded_359',['IsDiscarded',['../classGpgFrontend_1_1UI_1_1QuitDialog.html#a4c4bc06d1d168f01569ed83dcfd50d55',1,'GpgFrontend::UI::QuitDialog']]], - ['isexpired_360',['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_361',['IsExportable',['../classGpgFrontend_1_1GpgKeySignature.html#a19fc1ca3733b576e12628e333e2c449e',1,'GpgFrontend::GpgKeySignature']]], - ['isgood_362',['IsGood',['../classGpgFrontend_1_1GpgKey.html#a59e76d40f01e765f0544e5c6a2851be6',1,'GpgFrontend::GpgKey']]], - ['ishasactualauthenticationcapability_363',['IsHasActualAuthenticationCapability',['../classGpgFrontend_1_1GpgKey.html#a371a24c4e9d3b99a36f76ff8c7f2d0e6',1,'GpgFrontend::GpgKey']]], - ['ishasactualcertificationcapability_364',['IsHasActualCertificationCapability',['../classGpgFrontend_1_1GpgKey.html#ae370e41a7ea7307fbf4d28e0f2a67e0c',1,'GpgFrontend::GpgKey']]], - ['ishasactualencryptioncapability_365',['IsHasActualEncryptionCapability',['../classGpgFrontend_1_1GpgKey.html#aaa66d803456152fed9ba4cf5bce7b99d',1,'GpgFrontend::GpgKey']]], - ['ishasactualsigningcapability_366',['IsHasActualSigningCapability',['../classGpgFrontend_1_1GpgKey.html#aefa0a44adb1b7c49553a85b545fdffe1',1,'GpgFrontend::GpgKey']]], - ['ishasauthenticationcapability_367',['IsHasAuthenticationCapability',['../classGpgFrontend_1_1GpgKey.html#afdffba6dfb6009a0b320623df7a26be0',1,'GpgFrontend::GpgKey::IsHasAuthenticationCapability()'],['../classGpgFrontend_1_1GpgSubKey.html#a04d9df643cd08200cd742dc243be6cd6',1,'GpgFrontend::GpgSubKey::IsHasAuthenticationCapability()']]], - ['ishascardkey_368',['IsHasCardKey',['../classGpgFrontend_1_1GpgKey.html#afedc843415bd4b59687e975006e470ed',1,'GpgFrontend::GpgKey']]], - ['ishascertificationcapability_369',['IsHasCertificationCapability',['../classGpgFrontend_1_1GpgSubKey.html#a56938360f873949aa9ba3dbdaab519d1',1,'GpgFrontend::GpgSubKey::IsHasCertificationCapability()'],['../classGpgFrontend_1_1GpgKey.html#a2d28e72cfb741deeadfe02ff456fb490',1,'GpgFrontend::GpgKey::IsHasCertificationCapability()']]], - ['ishasencryptioncapability_370',['IsHasEncryptionCapability',['../classGpgFrontend_1_1GpgSubKey.html#ab67395a986184cb9b20f3dc178fc52be',1,'GpgFrontend::GpgSubKey::IsHasEncryptionCapability()'],['../classGpgFrontend_1_1GpgKey.html#a60b342ca6e1062d4489d8ba8f7a5a605',1,'GpgFrontend::GpgKey::IsHasEncryptionCapability() const']]], - ['ishasmasterkey_371',['IsHasMasterKey',['../classGpgFrontend_1_1GpgKey.html#aadac1b776764ee9d0ca4f8bb9f9e0741',1,'GpgFrontend::GpgKey']]], - ['ishassigningcapability_372',['IsHasSigningCapability',['../classGpgFrontend_1_1GpgSubKey.html#ab9208165c74b93fa8c5b7a06cd808f56',1,'GpgFrontend::GpgSubKey::IsHasSigningCapability()'],['../classGpgFrontend_1_1GpgKey.html#a635bbf8f08268cfdac1bc120981df877',1,'GpgFrontend::GpgKey::IsHasSigningCapability()']]], - ['isinvalid_373',['IsInvalid',['../classGpgFrontend_1_1GpgKeySignature.html#a1725474a1c61c0a3d724dc2f999cb24a',1,'GpgFrontend::GpgKeySignature']]], - ['isnonexpired_374',['IsNonExpired',['../classGpgFrontend_1_1GenKeyInfo.html#aeef7697c91b5b5998088979e09332380',1,'GpgFrontend::GenKeyInfo']]], - ['isnopassphrase_375',['IsNoPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#a848181796a99bec8d32dc5eac240ee01',1,'GpgFrontend::GenKeyInfo']]], - ['isprivatekey_376',['IsPrivateKey',['../classGpgFrontend_1_1GpgKey.html#a888c0263f04bdd52967e092b9c73eb6d',1,'GpgFrontend::GpgKey::IsPrivateKey()'],['../classGpgFrontend_1_1GpgSubKey.html#accb86b50755698b3e1e7fdfe06f44e84',1,'GpgFrontend::GpgSubKey::IsPrivateKey()']]], - ['isrevoked_377',['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_378',['IsSecretKey',['../classGpgFrontend_1_1GpgSubKey.html#a8fcbeae2ef3ad73a5aedee19f6de3e60',1,'GpgFrontend::GpgSubKey']]], - ['issubkey_379',['IsSubKey',['../classGpgFrontend_1_1GenKeyInfo.html#a40a42ad975499566de124296c19e6c55',1,'GpgFrontend::GenKeyInfo']]] + ['import_5fbutton_5f_329',['import_button_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8538940a9a5dea7ddf53c89acdeb83be',1,'GpgFrontend::UI::MainWindow']]], + ['import_5fkey_5ffrom_5fedit_5fact_5f_330',['import_key_from_edit_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a01b85fb17c373d8f97ce439027c6d04e',1,'GpgFrontend::UI::MainWindow']]], + ['import_5fkey_5ffrom_5fkeyserver_331',['import_key_from_keyserver',['../namespaceGpgFrontend_1_1UI.html#aa346bd199cecc61b15ef406728b58770',1,'GpgFrontend::UI']]], + ['import_5fkey_5fmenu_5f_332',['import_key_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8d6fe32ab64797459443ed285d769745',1,'GpgFrontend::UI::MainWindow']]], + ['import_5fkeys_333',['import_keys',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a3b818c2a3e5c32fc32425b17e63367e2',1,'GpgFrontend::UI::KeyServerImportDialog::import_keys()'],['../classGpgFrontend_1_1UI_1_1KeyList.html#ab64ba3049fac1aaa9fed4fb1c5919153',1,'GpgFrontend::UI::KeyList::import_keys()']]], + ['import_5funknown_5fkey_5ffrom_5fkeyserver_334',['import_unknown_key_from_keyserver',['../namespaceGpgFrontend_1_1UI.html#a9ab218dde057182cb4911c4792acd925',1,'GpgFrontend::UI']]], + ['importkey_335',['ImportKey',['../classGpgFrontend_1_1GpgKeyImportExporter.html#ab7a9be5283047695cd47562775adf79d',1,'GpgFrontend::GpgKeyImportExporter']]], + ['importkeypackage_336',['ImportKeyPackage',['../classGpgFrontend_1_1KeyPackageOperator.html#a89538b180a42eb7d6ae53583fe10ee07',1,'GpgFrontend::KeyPackageOperator']]], + ['infoboardstatus_337',['InfoBoardStatus',['../namespaceGpgFrontend_1_1UI.html#acbaebd342a317b1f067942e5144bb00d',1,'GpgFrontend::UI']]], + ['infoboardwidget_338',['InfoBoardWidget',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html',1,'GpgFrontend::UI::InfoBoardWidget'],['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#adeef521a8838bf2a1692c25d9b108010',1,'GpgFrontend::UI::InfoBoardWidget::InfoBoardWidget()']]], + ['infotab_339',['InfoTab',['../classGpgFrontend_1_1UI_1_1InfoTab.html',1,'GpgFrontend::UI::InfoTab'],['../classGpgFrontend_1_1UI_1_1InfoTab.html#a99d8b059ee28ea257981892e0b35d4cc',1,'GpgFrontend::UI::InfoTab::InfoTab()']]], + ['infovalid_340',['InfoValid',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#aec79eefdc19c90e046cb48bca347ff1c',1,'GpgFrontend::UI::SoftwareVersion']]], + ['init_341',['Init',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a08ba4521f68c488b23b651e201011759',1,'GpgFrontend::UI::MainWindow']]], + ['init_5fapp_5fsecure_5fkey_342',['init_app_secure_key',['../classGpgFrontend_1_1DataObjectOperator.html#a6b357780482f0e0c021ad55a81eb37cf',1,'GpgFrontend::DataObjectOperator']]], + ['init_5flocale_343',['init_locale',['../namespaceGpgFrontend_1_1UI.html#a157c74e50283da9ed554cf7bf90afbee',1,'GpgFrontend::UI']]], + ['initcoreloggingsystem_344',['InitCoreLoggingSystem',['../namespaceGpgFrontend.html#ab4a865228be071282d2a08e66ef6cb68',1,'GpgFrontend']]], + ['initgpgfrontendui_345',['InitGpgFrontendUI',['../namespaceGpgFrontend_1_1UI.html#ab0311557c1d7bde9c56cbca85fefa6ad',1,'GpgFrontend::UI']]], + ['instances_5fmap_5f_346',['instances_map_',['../classGpgFrontend_1_1SingletonStorage.html#a6181f2b5af39c6b86de89e1ba9eeff1c',1,'GpgFrontend::SingletonStorage']]], + ['instances_5fmutex_5f_347',['instances_mutex_',['../classGpgFrontend_1_1SingletonStorage.html#a15161d0afafec602018a89266dab5641',1,'GpgFrontend::SingletonStorage']]], + ['intropage_348',['IntroPage',['../classGpgFrontend_1_1UI_1_1IntroPage.html',1,'GpgFrontend::UI::IntroPage'],['../classGpgFrontend_1_1UI_1_1IntroPage.html#aed4220a7372b192ee4e8bc5024db922d',1,'GpgFrontend::UI::IntroPage::IntroPage()']]], + ['isallowauthentication_349',['IsAllowAuthentication',['../classGpgFrontend_1_1GenKeyInfo.html#aabdf981c65a0efde1e8905441b9b9c87',1,'GpgFrontend::GenKeyInfo']]], + ['isallowcertification_350',['IsAllowCertification',['../classGpgFrontend_1_1GenKeyInfo.html#ad47ceeb1ccfa8862843034e51b4d8be7',1,'GpgFrontend::GenKeyInfo']]], + ['isallowchangeauthentication_351',['IsAllowChangeAuthentication',['../classGpgFrontend_1_1GenKeyInfo.html#aaf8ab7c6564a2836837a537111d6f5b4',1,'GpgFrontend::GenKeyInfo']]], + ['isallowchangecertification_352',['IsAllowChangeCertification',['../classGpgFrontend_1_1GenKeyInfo.html#adbcddd0fa0a273f9b77fe1297633dabc',1,'GpgFrontend::GenKeyInfo']]], + ['isallowchangeencryption_353',['IsAllowChangeEncryption',['../classGpgFrontend_1_1GenKeyInfo.html#ad04a906300bea028c6fb6b1b2da1d149',1,'GpgFrontend::GenKeyInfo']]], + ['isallowchangesigning_354',['IsAllowChangeSigning',['../classGpgFrontend_1_1GenKeyInfo.html#a06f95a8d26da79bcbe7d51e266879a94',1,'GpgFrontend::GenKeyInfo']]], + ['isallowencryption_355',['IsAllowEncryption',['../classGpgFrontend_1_1GenKeyInfo.html#a28ed8a65243e5bc69403305752c2cdc9',1,'GpgFrontend::GenKeyInfo']]], + ['isallownopassphrase_356',['IsAllowNoPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#af6a79124a4571ff7f37c1c5e6c1a9415',1,'GpgFrontend::GenKeyInfo']]], + ['isallowsigning_357',['IsAllowSigning',['../classGpgFrontend_1_1GenKeyInfo.html#ad972292c408cb83c08e739327795a5f0',1,'GpgFrontend::GenKeyInfo']]], + ['iscardkey_358',['IsCardKey',['../classGpgFrontend_1_1GpgSubKey.html#ad818aa66e47d6686eb8ff253b3c21814',1,'GpgFrontend::GpgSubKey']]], + ['isdisabled_359',['IsDisabled',['../classGpgFrontend_1_1GpgSubKey.html#a75abb60a2130efc7fad8ab8fb3157042',1,'GpgFrontend::GpgSubKey::IsDisabled()'],['../classGpgFrontend_1_1GpgKey.html#a7eaf1e722d8a59f6a86d8e732217d89c',1,'GpgFrontend::GpgKey::IsDisabled()']]], + ['isdiscarded_360',['IsDiscarded',['../classGpgFrontend_1_1UI_1_1QuitDialog.html#a4c4bc06d1d168f01569ed83dcfd50d55',1,'GpgFrontend::UI::QuitDialog']]], + ['isexpired_361',['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_362',['IsExportable',['../classGpgFrontend_1_1GpgKeySignature.html#a19fc1ca3733b576e12628e333e2c449e',1,'GpgFrontend::GpgKeySignature']]], + ['isgood_363',['IsGood',['../classGpgFrontend_1_1GpgKey.html#a59e76d40f01e765f0544e5c6a2851be6',1,'GpgFrontend::GpgKey']]], + ['ishasactualauthenticationcapability_364',['IsHasActualAuthenticationCapability',['../classGpgFrontend_1_1GpgKey.html#a371a24c4e9d3b99a36f76ff8c7f2d0e6',1,'GpgFrontend::GpgKey']]], + ['ishasactualcertificationcapability_365',['IsHasActualCertificationCapability',['../classGpgFrontend_1_1GpgKey.html#ae370e41a7ea7307fbf4d28e0f2a67e0c',1,'GpgFrontend::GpgKey']]], + ['ishasactualencryptioncapability_366',['IsHasActualEncryptionCapability',['../classGpgFrontend_1_1GpgKey.html#aaa66d803456152fed9ba4cf5bce7b99d',1,'GpgFrontend::GpgKey']]], + ['ishasactualsigningcapability_367',['IsHasActualSigningCapability',['../classGpgFrontend_1_1GpgKey.html#aefa0a44adb1b7c49553a85b545fdffe1',1,'GpgFrontend::GpgKey']]], + ['ishasauthenticationcapability_368',['IsHasAuthenticationCapability',['../classGpgFrontend_1_1GpgKey.html#afdffba6dfb6009a0b320623df7a26be0',1,'GpgFrontend::GpgKey::IsHasAuthenticationCapability()'],['../classGpgFrontend_1_1GpgSubKey.html#a04d9df643cd08200cd742dc243be6cd6',1,'GpgFrontend::GpgSubKey::IsHasAuthenticationCapability()']]], + ['ishascardkey_369',['IsHasCardKey',['../classGpgFrontend_1_1GpgKey.html#afedc843415bd4b59687e975006e470ed',1,'GpgFrontend::GpgKey']]], + ['ishascertificationcapability_370',['IsHasCertificationCapability',['../classGpgFrontend_1_1GpgSubKey.html#a56938360f873949aa9ba3dbdaab519d1',1,'GpgFrontend::GpgSubKey::IsHasCertificationCapability()'],['../classGpgFrontend_1_1GpgKey.html#a2d28e72cfb741deeadfe02ff456fb490',1,'GpgFrontend::GpgKey::IsHasCertificationCapability()']]], + ['ishasencryptioncapability_371',['IsHasEncryptionCapability',['../classGpgFrontend_1_1GpgSubKey.html#ab67395a986184cb9b20f3dc178fc52be',1,'GpgFrontend::GpgSubKey::IsHasEncryptionCapability()'],['../classGpgFrontend_1_1GpgKey.html#a60b342ca6e1062d4489d8ba8f7a5a605',1,'GpgFrontend::GpgKey::IsHasEncryptionCapability() const']]], + ['ishasmasterkey_372',['IsHasMasterKey',['../classGpgFrontend_1_1GpgKey.html#aadac1b776764ee9d0ca4f8bb9f9e0741',1,'GpgFrontend::GpgKey']]], + ['ishassigningcapability_373',['IsHasSigningCapability',['../classGpgFrontend_1_1GpgSubKey.html#ab9208165c74b93fa8c5b7a06cd808f56',1,'GpgFrontend::GpgSubKey::IsHasSigningCapability()'],['../classGpgFrontend_1_1GpgKey.html#a635bbf8f08268cfdac1bc120981df877',1,'GpgFrontend::GpgKey::IsHasSigningCapability()']]], + ['isinvalid_374',['IsInvalid',['../classGpgFrontend_1_1GpgKeySignature.html#a1725474a1c61c0a3d724dc2f999cb24a',1,'GpgFrontend::GpgKeySignature']]], + ['isnonexpired_375',['IsNonExpired',['../classGpgFrontend_1_1GenKeyInfo.html#aeef7697c91b5b5998088979e09332380',1,'GpgFrontend::GenKeyInfo']]], + ['isnopassphrase_376',['IsNoPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#a848181796a99bec8d32dc5eac240ee01',1,'GpgFrontend::GenKeyInfo']]], + ['isprivatekey_377',['IsPrivateKey',['../classGpgFrontend_1_1GpgKey.html#a888c0263f04bdd52967e092b9c73eb6d',1,'GpgFrontend::GpgKey::IsPrivateKey()'],['../classGpgFrontend_1_1GpgSubKey.html#accb86b50755698b3e1e7fdfe06f44e84',1,'GpgFrontend::GpgSubKey::IsPrivateKey()']]], + ['isrevoked_378',['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_379',['IsSecretKey',['../classGpgFrontend_1_1GpgSubKey.html#a8fcbeae2ef3ad73a5aedee19f6de3e60',1,'GpgFrontend::GpgSubKey']]], + ['issubkey_380',['IsSubKey',['../classGpgFrontend_1_1GenKeyInfo.html#a40a42ad975499566de124296c19e6c55',1,'GpgFrontend::GenKeyInfo']]] ]; diff --git a/docs/html/search/all_a.js b/docs/html/search/all_a.js index 12de0a6b..f65ad8bd 100644 --- a/docs/html/search/all_a.js +++ b/docs/html/search/all_a.js @@ -1,41 +1,41 @@ var searchData= [ - ['key_5fbox_5f_380',['key_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aae9905764b5551208574a932fdfba29c',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['key_5fid_5fvar_5flabel_381',['key_id_var_label',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a65176245d280ae0734ef7b5b3f1c4cc4',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['key_5fid_5fvar_5flabel_5f_382',['key_id_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a2f634f4c83ab5dd2d088eb07e0d3b862',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], - ['key_5flist_5fdock_5f_383',['key_list_dock_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adaa66d9cdc51c946efc99bb94deda31c',1,'GpgFrontend::UI::MainWindow']]], - ['key_5fmenu_5f_384',['key_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a16bbfd12cd3a6f0df9e2c32cf7999e57',1,'GpgFrontend::UI::MainWindow']]], - ['key_5fsize_5fspin_5fbox_5f_385',['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_386',['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_387',['key_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a38f243880cfb9276545b08f0730811e7',1,'GpgFrontend::UI::MainWindow']]], - ['key_5ftype_5fcombo_5fbox_5f_388',['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_389',['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_390',['key_usage_group_box_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7b1b9cb46c0547c1e561e56d55616cf1',1,'GpgFrontend::UI::KeyGenDialog']]], - ['keyboxdpath_391',['KeyboxdPath',['../classGpgFrontend_1_1GpgInfo.html#a072503811cb59dad27040e4e8914d18b',1,'GpgFrontend::GpgInfo']]], - ['keydetailsdialog_392',['KeyDetailsDialog',['../classGpgFrontend_1_1UI_1_1KeyDetailsDialog.html',1,'GpgFrontend::UI']]], - ['keygendialog_393',['KeyGenDialog',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html',1,'GpgFrontend::UI::KeyGenDialog'],['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3aef8d2bb8e0d36842532726a6796ab9',1,'GpgFrontend::UI::KeyGenDialog::KeyGenDialog()']]], - ['keygenpage_394',['KeyGenPage',['../classGpgFrontend_1_1UI_1_1KeyGenPage.html',1,'GpgFrontend::UI::KeyGenPage'],['../classGpgFrontend_1_1UI_1_1KeyGenPage.html#a0eb5dad522c597dcd101c02f496e7e70',1,'GpgFrontend::UI::KeyGenPage::KeyGenPage()']]], - ['keyimportdetaildialog_395',['KeyImportDetailDialog',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html',1,'GpgFrontend::UI::KeyImportDetailDialog'],['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a0177cdaa19d1f83c9e519039aa7a8ce1',1,'GpgFrontend::UI::KeyImportDetailDialog::KeyImportDetailDialog()']]], - ['keylist_396',['KeyList',['../classGpgFrontend_1_1UI_1_1KeyList.html',1,'GpgFrontend::UI::KeyList'],['../classGpgFrontend_1_1UI_1_1KeyList.html#a7c9d5cacdb42e1fbda5d3cc96e861418',1,'GpgFrontend::UI::KeyList::KeyList()']]], - ['keylistcolumn_397',['KeyListColumn',['../structGpgFrontend_1_1UI_1_1KeyListColumn.html',1,'GpgFrontend::UI']]], - ['keylistrow_398',['KeyListRow',['../structGpgFrontend_1_1UI_1_1KeyListRow.html',1,'GpgFrontend::UI']]], - ['keymenuability_399',['KeyMenuAbility',['../structGpgFrontend_1_1UI_1_1KeyMenuAbility.html',1,'GpgFrontend::UI']]], - ['keymgmt_400',['KeyMgmt',['../classGpgFrontend_1_1UI_1_1KeyMgmt.html',1,'GpgFrontend::UI::KeyMgmt'],['../classGpgFrontend_1_1UI_1_1KeyMgmt.html#aefc27b57830cf14a85c2225664f89f64',1,'GpgFrontend::UI::KeyMgmt::KeyMgmt()']]], - ['keynewuiddialog_401',['KeyNewUIDDialog',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html',1,'GpgFrontend::UI::KeyNewUIDDialog'],['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a7226b139dc7a491e8ba780135654be27',1,'GpgFrontend::UI::KeyNewUIDDialog::KeyNewUIDDialog()']]], - ['keypackageoperator_402',['KeyPackageOperator',['../classGpgFrontend_1_1KeyPackageOperator.html',1,'GpgFrontend']]], - ['keypairdetailtab_403',['KeyPairDetailTab',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html',1,'GpgFrontend::UI::KeyPairDetailTab'],['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a76efd8f8d623813be1a329ad01972444',1,'GpgFrontend::UI::KeyPairDetailTab::KeyPairDetailTab()']]], - ['keypairoperatab_404',['KeyPairOperaTab',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html',1,'GpgFrontend::UI::KeyPairOperaTab'],['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#aad4e209d7b4eb0ac6623b2f12ce5ecc5',1,'GpgFrontend::UI::KeyPairOperaTab::KeyPairOperaTab()']]], - ['keypairsubkeytab_405',['KeyPairSubkeyTab',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html',1,'GpgFrontend::UI::KeyPairSubkeyTab'],['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a93abe5c0467c7c4a29e0c45437a10732',1,'GpgFrontend::UI::KeyPairSubkeyTab::KeyPairSubkeyTab()']]], - ['keypairuidtab_406',['KeyPairUIDTab',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html',1,'GpgFrontend::UI::KeyPairUIDTab'],['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#af18c4f08a127d919a316c7e27ba338d3',1,'GpgFrontend::UI::KeyPairUIDTab::KeyPairUIDTab()']]], - ['keypressevent_407',['keyPressEvent',['../classGpgFrontend_1_1UI_1_1FilePage.html#aea388ad7876e287f71e93085e6715495',1,'GpgFrontend::UI::FilePage::keyPressEvent()'],['../classGpgFrontend_1_1UI_1_1FindWidget.html#a6e2264a989c2bb2db6bc8980b43e65f0',1,'GpgFrontend::UI::FindWidget::keyPressEvent()']]], - ['keys_5fcache_5f_408',['keys_cache_',['../classGpgFrontend_1_1GpgKeyGetter.html#a9567d5e08ae73c5bafcd1dc378fed066',1,'GpgFrontend::GpgKeyGetter']]], - ['keys_5fcache_5fmutex_5f_409',['keys_cache_mutex_',['../classGpgFrontend_1_1GpgKeyGetter.html#ae1d7846ad2fa17ab90c72b3186ba5335',1,'GpgFrontend::GpgKeyGetter']]], - ['keyserverimportdialog_410',['KeyServerImportDialog',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html',1,'GpgFrontend::UI::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_411',['KeyServerImportTask',['../classGpgFrontend_1_1UI_1_1KeyServerImportTask.html',1,'GpgFrontend::UI::KeyServerImportTask'],['../classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a1640363b4b27cb3d256181ddc6cdc857',1,'GpgFrontend::UI::KeyServerImportTask::KeyServerImportTask()']]], - ['keyserversearchtask_412',['KeyServerSearchTask',['../classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html',1,'GpgFrontend::UI::KeyServerSearchTask'],['../classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#a168e21bdfa72f43f91187ab29ece5efa',1,'GpgFrontend::UI::KeyServerSearchTask::KeyServerSearchTask()']]], - ['keyservertab_413',['KeyserverTab',['../classGpgFrontend_1_1UI_1_1KeyserverTab.html',1,'GpgFrontend::UI::KeyserverTab'],['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#aa3d3561d3bdf95de6486b2caa752616c',1,'GpgFrontend::UI::KeyserverTab::KeyserverTab()']]], - ['keysetexpiredatedialog_414',['KeySetExpireDateDialog',['../classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html',1,'GpgFrontend::UI::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_415',['KeyTable',['../structGpgFrontend_1_1UI_1_1KeyTable.html',1,'GpgFrontend::UI::KeyTable'],['../structGpgFrontend_1_1UI_1_1KeyTable.html#a88606ba6954d60244faf38de419bfc47',1,'GpgFrontend::UI::KeyTable::KeyTable()']]], - ['keyuidsigndialog_416',['KeyUIDSignDialog',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html',1,'GpgFrontend::UI::KeyUIDSignDialog'],['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#aaa06ce342178802e76119bec6b26cc55',1,'GpgFrontend::UI::KeyUIDSignDialog::KeyUIDSignDialog()']]], - ['keyuploaddialog_417',['KeyUploadDialog',['../classGpgFrontend_1_1UI_1_1KeyUploadDialog.html',1,'GpgFrontend::UI::KeyUploadDialog'],['../classGpgFrontend_1_1UI_1_1KeyUploadDialog.html#a51f63e30f26f7923def91519d347c0cf',1,'GpgFrontend::UI::KeyUploadDialog::KeyUploadDialog()']]] + ['key_5fbox_5f_381',['key_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aae9905764b5551208574a932fdfba29c',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['key_5fid_5fvar_5flabel_382',['key_id_var_label',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a65176245d280ae0734ef7b5b3f1c4cc4',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['key_5fid_5fvar_5flabel_5f_383',['key_id_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a2f634f4c83ab5dd2d088eb07e0d3b862',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], + ['key_5flist_5fdock_5f_384',['key_list_dock_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adaa66d9cdc51c946efc99bb94deda31c',1,'GpgFrontend::UI::MainWindow']]], + ['key_5fmenu_5f_385',['key_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a16bbfd12cd3a6f0df9e2c32cf7999e57',1,'GpgFrontend::UI::MainWindow']]], + ['key_5fsize_5fspin_5fbox_5f_386',['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_387',['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_388',['key_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a38f243880cfb9276545b08f0730811e7',1,'GpgFrontend::UI::MainWindow']]], + ['key_5ftype_5fcombo_5fbox_5f_389',['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_390',['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_391',['key_usage_group_box_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7b1b9cb46c0547c1e561e56d55616cf1',1,'GpgFrontend::UI::KeyGenDialog']]], + ['keyboxdpath_392',['KeyboxdPath',['../classGpgFrontend_1_1GpgInfo.html#a072503811cb59dad27040e4e8914d18b',1,'GpgFrontend::GpgInfo']]], + ['keydetailsdialog_393',['KeyDetailsDialog',['../classGpgFrontend_1_1UI_1_1KeyDetailsDialog.html',1,'GpgFrontend::UI']]], + ['keygendialog_394',['KeyGenDialog',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html',1,'GpgFrontend::UI::KeyGenDialog'],['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3aef8d2bb8e0d36842532726a6796ab9',1,'GpgFrontend::UI::KeyGenDialog::KeyGenDialog()']]], + ['keygenpage_395',['KeyGenPage',['../classGpgFrontend_1_1UI_1_1KeyGenPage.html',1,'GpgFrontend::UI::KeyGenPage'],['../classGpgFrontend_1_1UI_1_1KeyGenPage.html#a0eb5dad522c597dcd101c02f496e7e70',1,'GpgFrontend::UI::KeyGenPage::KeyGenPage()']]], + ['keyimportdetaildialog_396',['KeyImportDetailDialog',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html',1,'GpgFrontend::UI::KeyImportDetailDialog'],['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a0177cdaa19d1f83c9e519039aa7a8ce1',1,'GpgFrontend::UI::KeyImportDetailDialog::KeyImportDetailDialog()']]], + ['keylist_397',['KeyList',['../classGpgFrontend_1_1UI_1_1KeyList.html',1,'GpgFrontend::UI::KeyList'],['../classGpgFrontend_1_1UI_1_1KeyList.html#a7c9d5cacdb42e1fbda5d3cc96e861418',1,'GpgFrontend::UI::KeyList::KeyList()']]], + ['keylistcolumn_398',['KeyListColumn',['../structGpgFrontend_1_1UI_1_1KeyListColumn.html',1,'GpgFrontend::UI']]], + ['keylistrow_399',['KeyListRow',['../structGpgFrontend_1_1UI_1_1KeyListRow.html',1,'GpgFrontend::UI']]], + ['keymenuability_400',['KeyMenuAbility',['../structGpgFrontend_1_1UI_1_1KeyMenuAbility.html',1,'GpgFrontend::UI']]], + ['keymgmt_401',['KeyMgmt',['../classGpgFrontend_1_1UI_1_1KeyMgmt.html',1,'GpgFrontend::UI::KeyMgmt'],['../classGpgFrontend_1_1UI_1_1KeyMgmt.html#aefc27b57830cf14a85c2225664f89f64',1,'GpgFrontend::UI::KeyMgmt::KeyMgmt()']]], + ['keynewuiddialog_402',['KeyNewUIDDialog',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html',1,'GpgFrontend::UI::KeyNewUIDDialog'],['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a7226b139dc7a491e8ba780135654be27',1,'GpgFrontend::UI::KeyNewUIDDialog::KeyNewUIDDialog()']]], + ['keypackageoperator_403',['KeyPackageOperator',['../classGpgFrontend_1_1KeyPackageOperator.html',1,'GpgFrontend']]], + ['keypairdetailtab_404',['KeyPairDetailTab',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html',1,'GpgFrontend::UI::KeyPairDetailTab'],['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a76efd8f8d623813be1a329ad01972444',1,'GpgFrontend::UI::KeyPairDetailTab::KeyPairDetailTab()']]], + ['keypairoperatab_405',['KeyPairOperaTab',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html',1,'GpgFrontend::UI::KeyPairOperaTab'],['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#aad4e209d7b4eb0ac6623b2f12ce5ecc5',1,'GpgFrontend::UI::KeyPairOperaTab::KeyPairOperaTab()']]], + ['keypairsubkeytab_406',['KeyPairSubkeyTab',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html',1,'GpgFrontend::UI::KeyPairSubkeyTab'],['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a93abe5c0467c7c4a29e0c45437a10732',1,'GpgFrontend::UI::KeyPairSubkeyTab::KeyPairSubkeyTab()']]], + ['keypairuidtab_407',['KeyPairUIDTab',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html',1,'GpgFrontend::UI::KeyPairUIDTab'],['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#af18c4f08a127d919a316c7e27ba338d3',1,'GpgFrontend::UI::KeyPairUIDTab::KeyPairUIDTab()']]], + ['keypressevent_408',['keyPressEvent',['../classGpgFrontend_1_1UI_1_1FilePage.html#aea388ad7876e287f71e93085e6715495',1,'GpgFrontend::UI::FilePage::keyPressEvent()'],['../classGpgFrontend_1_1UI_1_1FindWidget.html#a6e2264a989c2bb2db6bc8980b43e65f0',1,'GpgFrontend::UI::FindWidget::keyPressEvent()']]], + ['keys_5fcache_5f_409',['keys_cache_',['../classGpgFrontend_1_1GpgKeyGetter.html#a9567d5e08ae73c5bafcd1dc378fed066',1,'GpgFrontend::GpgKeyGetter']]], + ['keys_5fcache_5fmutex_5f_410',['keys_cache_mutex_',['../classGpgFrontend_1_1GpgKeyGetter.html#ae1d7846ad2fa17ab90c72b3186ba5335',1,'GpgFrontend::GpgKeyGetter']]], + ['keyserverimportdialog_411',['KeyServerImportDialog',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html',1,'GpgFrontend::UI::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_412',['KeyServerImportTask',['../classGpgFrontend_1_1UI_1_1KeyServerImportTask.html',1,'GpgFrontend::UI::KeyServerImportTask'],['../classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a1640363b4b27cb3d256181ddc6cdc857',1,'GpgFrontend::UI::KeyServerImportTask::KeyServerImportTask()']]], + ['keyserversearchtask_413',['KeyServerSearchTask',['../classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html',1,'GpgFrontend::UI::KeyServerSearchTask'],['../classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#a168e21bdfa72f43f91187ab29ece5efa',1,'GpgFrontend::UI::KeyServerSearchTask::KeyServerSearchTask()']]], + ['keyservertab_414',['KeyserverTab',['../classGpgFrontend_1_1UI_1_1KeyserverTab.html',1,'GpgFrontend::UI::KeyserverTab'],['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#aa3d3561d3bdf95de6486b2caa752616c',1,'GpgFrontend::UI::KeyserverTab::KeyserverTab()']]], + ['keysetexpiredatedialog_415',['KeySetExpireDateDialog',['../classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html',1,'GpgFrontend::UI::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_416',['KeyTable',['../structGpgFrontend_1_1UI_1_1KeyTable.html',1,'GpgFrontend::UI::KeyTable'],['../structGpgFrontend_1_1UI_1_1KeyTable.html#ae78160011d93abc43a1ca0f28c2ad943',1,'GpgFrontend::UI::KeyTable::KeyTable()']]], + ['keyuidsigndialog_417',['KeyUIDSignDialog',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html',1,'GpgFrontend::UI::KeyUIDSignDialog'],['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#aaa06ce342178802e76119bec6b26cc55',1,'GpgFrontend::UI::KeyUIDSignDialog::KeyUIDSignDialog()']]], + ['keyuploaddialog_418',['KeyUploadDialog',['../classGpgFrontend_1_1UI_1_1KeyUploadDialog.html',1,'GpgFrontend::UI::KeyUploadDialog'],['../classGpgFrontend_1_1UI_1_1KeyUploadDialog.html#a51f63e30f26f7923def91519d347c0cf',1,'GpgFrontend::UI::KeyUploadDialog::KeyUploadDialog()']]] ]; diff --git a/docs/html/search/all_b.js b/docs/html/search/all_b.js index 385947d4..7b80e07a 100644 --- a/docs/html/search/all_b.js +++ b/docs/html/search/all_b.js @@ -1,9 +1,9 @@ var searchData= [ - ['latest_5freply_5f_418',['latest_reply_',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#aed545ffa8128acb16bb28c067e032ec9',1,'GpgFrontend::UI::VersionCheckTask']]], - ['listedkeyservertesttask_419',['ListedKeyServerTestTask',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html',1,'GpgFrontend::UI::ListedKeyServerTestTask'],['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#ae25b5d59b53facc15648ab80ff19ed77',1,'GpgFrontend::UI::ListedKeyServerTestTask::ListedKeyServerTestTask()']]], - ['listlanguages_420',['ListLanguages',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#acd22ac2fd91704551e5317e2c549ae26',1,'GpgFrontend::UI::SettingsDialog']]], - ['loadfile_421',['LoadFile',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a72ed46454c833adb038c36d8d4322d18',1,'GpgFrontend::UI::TextEdit']]], - ['localized_5fhelp_422',['localized_help',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a49fbde87f2ef385b44225acd6ffbc84f',1,'GpgFrontend::UI::HelpPage']]], - ['lookupsettings_423',['LookupSettings',['../classGpgFrontend_1_1GlobalSettingStation.html#a819b3f4ea553fc1e839ef0ae230f0ea2',1,'GpgFrontend::GlobalSettingStation']]] + ['latest_5freply_5f_419',['latest_reply_',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#aed545ffa8128acb16bb28c067e032ec9',1,'GpgFrontend::UI::VersionCheckTask']]], + ['listedkeyservertesttask_420',['ListedKeyServerTestTask',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html',1,'GpgFrontend::UI::ListedKeyServerTestTask'],['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#ae25b5d59b53facc15648ab80ff19ed77',1,'GpgFrontend::UI::ListedKeyServerTestTask::ListedKeyServerTestTask()']]], + ['listlanguages_421',['ListLanguages',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#acd22ac2fd91704551e5317e2c549ae26',1,'GpgFrontend::UI::SettingsDialog']]], + ['loadfile_422',['LoadFile',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a72ed46454c833adb038c36d8d4322d18',1,'GpgFrontend::UI::TextEdit']]], + ['localized_5fhelp_423',['localized_help',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a49fbde87f2ef385b44225acd6ffbc84f',1,'GpgFrontend::UI::HelpPage']]], + ['lookupsettings_424',['LookupSettings',['../classGpgFrontend_1_1GlobalSettingStation.html#a819b3f4ea553fc1e839ef0ae230f0ea2',1,'GpgFrontend::GlobalSettingStation']]] ]; diff --git a/docs/html/search/all_c.js b/docs/html/search/all_c.js index 55df39bf..b5810d40 100644 --- a/docs/html/search/all_c.js +++ b/docs/html/search/all_c.js @@ -1,11 +1,11 @@ var searchData= [ - ['m_5ftext_5fpage_5f_424',['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_()']]], - ['mainwindow_425',['MainWindow',['../classGpgFrontend_1_1UI_1_1MainWindow.html',1,'GpgFrontend::UI']]], - ['markkeys_426',['MarkKeys',['../classGpgFrontend_1_1UI_1_1KeyList.html#a31a4c067eed90830203862cb4adf951e',1,'GpgFrontend::UI::KeyList']]], - ['maybe_5fsave_5fcurrent_5ftab_427',['maybe_save_current_tab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a8fad090a19479a9fe89432300cca2b6c',1,'GpgFrontend::UI::TextEdit']]], - ['maybesaveanytab_428',['MaybeSaveAnyTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3c976a5494d06c2186d94e7cc8ebe457',1,'GpgFrontend::UI::TextEdit']]], - ['modifypassword_429',['ModifyPassword',['../classGpgFrontend_1_1GpgKeyOpera.html#ab7e16d1f4cba23ea5b5b9f6009ce5ee2',1,'GpgFrontend::GpgKeyOpera']]], - ['modifytofupolicy_430',['ModifyTOFUPolicy',['../classGpgFrontend_1_1GpgKeyOpera.html#a76a7f59701add8a59d8835919dad2000',1,'GpgFrontend::GpgKeyOpera']]], - ['mt_5f_431',['mt_',['../classGpgFrontend_1_1DataObjectOperator.html#a9fc92c7d497f2a2057776adfca40e8ca',1,'GpgFrontend::DataObjectOperator::mt_()'],['../classGpgFrontend_1_1PassphraseGenerator.html#a19ac4999bbd5fb7e6c42a4aef9606892',1,'GpgFrontend::PassphraseGenerator::mt_()']]] + ['m_5ftext_5fpage_5f_425',['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_()']]], + ['mainwindow_426',['MainWindow',['../classGpgFrontend_1_1UI_1_1MainWindow.html',1,'GpgFrontend::UI']]], + ['markkeys_427',['MarkKeys',['../classGpgFrontend_1_1UI_1_1KeyList.html#a31a4c067eed90830203862cb4adf951e',1,'GpgFrontend::UI::KeyList']]], + ['maybe_5fsave_5fcurrent_5ftab_428',['maybe_save_current_tab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a8fad090a19479a9fe89432300cca2b6c',1,'GpgFrontend::UI::TextEdit']]], + ['maybesaveanytab_429',['MaybeSaveAnyTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3c976a5494d06c2186d94e7cc8ebe457',1,'GpgFrontend::UI::TextEdit']]], + ['modifypassword_430',['ModifyPassword',['../classGpgFrontend_1_1GpgKeyOpera.html#ab7e16d1f4cba23ea5b5b9f6009ce5ee2',1,'GpgFrontend::GpgKeyOpera']]], + ['modifytofupolicy_431',['ModifyTOFUPolicy',['../classGpgFrontend_1_1GpgKeyOpera.html#a76a7f59701add8a59d8835919dad2000',1,'GpgFrontend::GpgKeyOpera']]], + ['mt_5f_432',['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/all_d.js b/docs/html/search/all_d.js index 35a92acf..325a057d 100644 --- a/docs/html/search/all_d.js +++ b/docs/html/search/all_d.js @@ -1,14 +1,14 @@ var searchData= [ - ['name_5fedit_5f_432',['name_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7ed095cce29c658741ae0520049010c0',1,'GpgFrontend::UI::KeyGenDialog']]], - ['name_5fvar_5flabel_5f_433',['name_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a9d57be18c2091827c04ec8809f4154be',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['need_5fuser_5finput_5fpassphrase_434',['need_user_input_passphrase',['../classGpgFrontend_1_1GpgContext.html#ac7c9b2212a77e7cede94d68243541b1b',1,'GpgFrontend::GpgContext']]], - ['needupgrade_435',['NeedUpgrade',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#abc311fd0e15da1a04b995587ca74e1a6',1,'GpgFrontend::UI::SoftwareVersion']]], - ['networktab_436',['NetworkTab',['../classGpgFrontend_1_1UI_1_1NetworkTab.html',1,'GpgFrontend::UI::NetworkTab'],['../classGpgFrontend_1_1UI_1_1NetworkTab.html#a444d3630919c1f9c4db495a58acbb9a8',1,'GpgFrontend::UI::NetworkTab::NetworkTab()']]], - ['new_5fdefault_5fsettings_5fchannel_437',['new_default_settings_channel',['../namespaceGpgFrontend.html#aafb9aa0ba1d03afa09085b1b8136c55f',1,'GpgFrontend']]], - ['new_5ftab_5fact_5f_438',['new_tab_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a472500fec64442b114e9ce9faf4b6a73',1,'GpgFrontend::UI::MainWindow']]], - ['nextid_439',['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()']]], - ['no_5fpass_5fphrase_5fcheck_5fbox_5f_440',['no_pass_phrase_check_box_',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a001803152c0e5bd9de7c7dd04cef8ad4',1,'GpgFrontend::UI::SubkeyGenerateDialog']]], - ['notify_441',['notify',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a6f8ab335d89948c48cd634ab20ff9aa0',1,'GpgFrontend::UI::GpgFrontendApplication']]], - ['notifyfilesaved_442',['NotifyFileSaved',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a29b3d63ba9590e775f42c779c76102e5',1,'GpgFrontend::UI::PlainTextEditorPage']]] + ['name_5fedit_5f_433',['name_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7ed095cce29c658741ae0520049010c0',1,'GpgFrontend::UI::KeyGenDialog']]], + ['name_5fvar_5flabel_5f_434',['name_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a9d57be18c2091827c04ec8809f4154be',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['need_5fuser_5finput_5fpassphrase_435',['need_user_input_passphrase',['../classGpgFrontend_1_1GpgContext.html#ac7c9b2212a77e7cede94d68243541b1b',1,'GpgFrontend::GpgContext']]], + ['needupgrade_436',['NeedUpgrade',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#abc311fd0e15da1a04b995587ca74e1a6',1,'GpgFrontend::UI::SoftwareVersion']]], + ['networktab_437',['NetworkTab',['../classGpgFrontend_1_1UI_1_1NetworkTab.html',1,'GpgFrontend::UI::NetworkTab'],['../classGpgFrontend_1_1UI_1_1NetworkTab.html#a444d3630919c1f9c4db495a58acbb9a8',1,'GpgFrontend::UI::NetworkTab::NetworkTab()']]], + ['new_5fdefault_5fsettings_5fchannel_438',['new_default_settings_channel',['../namespaceGpgFrontend.html#aafb9aa0ba1d03afa09085b1b8136c55f',1,'GpgFrontend']]], + ['new_5ftab_5fact_5f_439',['new_tab_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a472500fec64442b114e9ce9faf4b6a73',1,'GpgFrontend::UI::MainWindow']]], + ['nextid_440',['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()']]], + ['no_5fpass_5fphrase_5fcheck_5fbox_5f_441',['no_pass_phrase_check_box_',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a001803152c0e5bd9de7c7dd04cef8ad4',1,'GpgFrontend::UI::SubkeyGenerateDialog']]], + ['notify_442',['notify',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a6f8ab335d89948c48cd634ab20ff9aa0',1,'GpgFrontend::UI::GpgFrontendApplication']]], + ['notifyfilesaved_443',['NotifyFileSaved',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a29b3d63ba9590e775f42c779c76102e5',1,'GpgFrontend::UI::PlainTextEditorPage']]] ]; diff --git a/docs/html/search/all_e.js b/docs/html/search/all_e.js index 24c6122b..d9c9337e 100644 --- a/docs/html/search/all_e.js +++ b/docs/html/search/all_e.js @@ -1,14 +1,14 @@ var searchData= [ - ['oncustomcontextmenu_443',['onCustomContextMenu',['../classGpgFrontend_1_1UI_1_1FilePage.html#aa80dc1b74a0ec65d06e5dffaa21cc785',1,'GpgFrontend::UI::FilePage']]], - ['open_5fact_5f_444',['open_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a4a1edafb8c67b181ff3c29394147571d',1,'GpgFrontend::UI::MainWindow']]], - ['open_5fkey_5fmanagement_5fact_5f_445',['open_key_management_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad7b22560df7e3bb38b660d3ffc84dc83',1,'GpgFrontend::UI::MainWindow']]], - ['open_5fsettings_5fact_5f_446',['open_settings_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#afab1e0363a4b97ff68228cd4bd7cbc62',1,'GpgFrontend::UI::MainWindow']]], - ['operator_20gpgme_5fctx_5ft_447',['operator gpgme_ctx_t',['../classGpgFrontend_1_1GpgContext.html#a5b419175bd9927f3d449637db8ba6524',1,'GpgFrontend::GpgContext']]], - ['operator_20gpgme_5fdata_5ft_448',['operator gpgme_data_t',['../classGpgFrontend_1_1GpgData.html#afca7a03bd71436c8b3c4f6e8c2acd700',1,'GpgFrontend::GpgData']]], - ['operator_20gpgme_5fkey_5ft_449',['operator gpgme_key_t',['../classGpgFrontend_1_1GpgKey.html#a827962251cf47c41dbea56665ae4207b',1,'GpgFrontend::GpgKey']]], - ['operator_3c_3d_450',['operator<=',['../classGpgFrontend_1_1GpgKey.html#adc22a349796af0ff5dd4499624b6d03d',1,'GpgFrontend::GpgKey']]], - ['operator_3d_451',['operator=',['../classGpgFrontend_1_1GpgKeySignature.html#a927602d294d02adde57193f5094ce689',1,'GpgFrontend::GpgKeySignature::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=(const GpgSignature &)=delete'],['../classGpgFrontend_1_1GpgSignature.html#aca9c1f1a92fddaecc7d601f1f25a90de',1,'GpgFrontend::GpgSignature::operator=(GpgSignature &&) noexcept'],['../classGpgFrontend_1_1GpgKeySignature.html#a4ae987707a6579cec3dfe540b3410bc6',1,'GpgFrontend::GpgKeySignature::operator=()'],['../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_452',['operator==',['../classGpgFrontend_1_1GpgKey.html#a4f50b2f13b3a5dc7298ee9665e7a5367',1,'GpgFrontend::GpgKey::operator==()'],['../classGpgFrontend_1_1GpgSubKey.html#a1c88420ec4756f2e5bda1b76ff2f7c2d',1,'GpgFrontend::GpgSubKey::operator==()']]], - ['owner_5fbox_5f_453',['owner_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#ad8c25061351d8e739b70d5466b87410e',1,'GpgFrontend::UI::KeyPairDetailTab']]] + ['oncustomcontextmenu_444',['onCustomContextMenu',['../classGpgFrontend_1_1UI_1_1FilePage.html#aa80dc1b74a0ec65d06e5dffaa21cc785',1,'GpgFrontend::UI::FilePage']]], + ['open_5fact_5f_445',['open_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a4a1edafb8c67b181ff3c29394147571d',1,'GpgFrontend::UI::MainWindow']]], + ['open_5fkey_5fmanagement_5fact_5f_446',['open_key_management_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad7b22560df7e3bb38b660d3ffc84dc83',1,'GpgFrontend::UI::MainWindow']]], + ['open_5fsettings_5fact_5f_447',['open_settings_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#afab1e0363a4b97ff68228cd4bd7cbc62',1,'GpgFrontend::UI::MainWindow']]], + ['operator_20gpgme_5fctx_5ft_448',['operator gpgme_ctx_t',['../classGpgFrontend_1_1GpgContext.html#a5b419175bd9927f3d449637db8ba6524',1,'GpgFrontend::GpgContext']]], + ['operator_20gpgme_5fdata_5ft_449',['operator gpgme_data_t',['../classGpgFrontend_1_1GpgData.html#afca7a03bd71436c8b3c4f6e8c2acd700',1,'GpgFrontend::GpgData']]], + ['operator_20gpgme_5fkey_5ft_450',['operator gpgme_key_t',['../classGpgFrontend_1_1GpgKey.html#a827962251cf47c41dbea56665ae4207b',1,'GpgFrontend::GpgKey']]], + ['operator_3c_3d_451',['operator<=',['../classGpgFrontend_1_1GpgKey.html#adc22a349796af0ff5dd4499624b6d03d',1,'GpgFrontend::GpgKey']]], + ['operator_3d_452',['operator=',['../classGpgFrontend_1_1GpgKeySignature.html#a927602d294d02adde57193f5094ce689',1,'GpgFrontend::GpgKeySignature::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=(const GpgSignature &)=delete'],['../classGpgFrontend_1_1GpgSignature.html#aca9c1f1a92fddaecc7d601f1f25a90de',1,'GpgFrontend::GpgSignature::operator=(GpgSignature &&) noexcept'],['../classGpgFrontend_1_1GpgKeySignature.html#a4ae987707a6579cec3dfe540b3410bc6',1,'GpgFrontend::GpgKeySignature::operator=()'],['../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_453',['operator==',['../classGpgFrontend_1_1GpgKey.html#a4f50b2f13b3a5dc7298ee9665e7a5367',1,'GpgFrontend::GpgKey::operator==()'],['../classGpgFrontend_1_1GpgSubKey.html#a1c88420ec4756f2e5bda1b76ff2f7c2d',1,'GpgFrontend::GpgSubKey::operator==()']]], + ['owner_5fbox_5f_454',['owner_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#ad8c25061351d8e739b70d5466b87410e',1,'GpgFrontend::UI::KeyPairDetailTab']]] ]; diff --git a/docs/html/search/all_f.js b/docs/html/search/all_f.js index 82dc331a..833d6b52 100644 --- a/docs/html/search/all_f.js +++ b/docs/html/search/all_f.js @@ -1,21 +1,21 @@ var searchData= [ - ['passphrasegenerator_454',['PassphraseGenerator',['../classGpgFrontend_1_1PassphraseGenerator.html',1,'GpgFrontend::PassphraseGenerator'],['../classGpgFrontend_1_1PassphraseGenerator.html#ac82ef545a54468ad02253a61cc62e3cf',1,'GpgFrontend::PassphraseGenerator::PassphraseGenerator()']]], - ['paste_5fact_5f_455',['paste_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a62ea61c38e758022ba655c6faf54322b',1,'GpgFrontend::UI::MainWindow']]], - ['pending_5ftasks_5f_456',['pending_tasks_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a6d92421bbbfcf3136335a5173d1b2a22',1,'GpgFrontend::Thread::TaskRunner']]], - ['pgp_5fcrypt_5fbegin_457',['PGP_CRYPT_BEGIN',['../classGpgFrontend_1_1GpgConstants.html#a237006d6db30c7e3f8de171210eb35f2',1,'GpgFrontend::GpgConstants']]], - ['plaintexteditorpage_458',['PlainTextEditorPage',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html',1,'GpgFrontend::UI::PlainTextEditorPage'],['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a8759224e57d4c322933ed3df6d96e5f1',1,'GpgFrontend::UI::PlainTextEditorPage::PlainTextEditorPage()']]], - ['popobject_459',['PopObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a5ef5ddec0b82017cc4ad7f34b9b13f64',1,'GpgFrontend::Thread::Task::DataObject']]], - ['post_5finit_5fctx_460',['post_init_ctx',['../classGpgFrontend_1_1GpgContext.html#aaf3f394ff1790897c315c3249b1f06fe',1,'GpgFrontend::GpgContext']]], - ['postscheduletask_461',['PostScheduleTask',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#aaddb0cdd8eb57aac08ca9caf8b8e6bac',1,'GpgFrontend::Thread::TaskRunner']]], - ['posttask_462',['PostTask',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a4fae01eb0a5b296b8c4c6bf8408f1c6b',1,'GpgFrontend::Thread::TaskRunner']]], - ['print_5fact_5f_463',['print_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8f9dd7edba23321a13ed630cdef7fdcc',1,'GpgFrontend::UI::MainWindow']]], - ['print_5frecipient_464',['print_recipient',['../classGpgFrontend_1_1GpgDecryptResultAnalyse.html#a1aac1c1f77a12069479a47f54a934c44',1,'GpgFrontend::GpgDecryptResultAnalyse']]], - ['print_5fsigner_465',['print_signer',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a57bf4a26466e07f7f0ecc19de3782104',1,'GpgFrontend::GpgVerifyResultAnalyse']]], - ['process_5fdirectory_5finto_5ftarball_466',['process_directory_into_tarball',['../namespaceGpgFrontend_1_1UI.html#a5470872566b41ce628f64039f34b964a',1,'GpgFrontend::UI']]], - ['process_5foperation_467',['process_operation',['../namespaceGpgFrontend_1_1UI.html#a3c971eeb5c620d08d6d92f0752ceaf9f',1,'GpgFrontend::UI']]], - ['process_5fresult_5fanalyse_468',['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_469',['process_tarball_into_directory',['../namespaceGpgFrontend_1_1UI.html#a57d0a4dba23cd3d9b42222d40c710dc1',1,'GpgFrontend::UI']]], - ['proxyconnectiontesttask_470',['ProxyConnectionTestTask',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask.html',1,'GpgFrontend::UI::ProxyConnectionTestTask'],['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask.html#a8036aaf9a2adcf033fc9f8e51da59956',1,'GpgFrontend::UI::ProxyConnectionTestTask::ProxyConnectionTestTask()']]], - ['proxyconnectiontestthread_471',['ProxyConnectionTestThread',['../classProxyConnectionTestThread.html',1,'']]] + ['passphrasegenerator_455',['PassphraseGenerator',['../classGpgFrontend_1_1PassphraseGenerator.html',1,'GpgFrontend::PassphraseGenerator'],['../classGpgFrontend_1_1PassphraseGenerator.html#ac82ef545a54468ad02253a61cc62e3cf',1,'GpgFrontend::PassphraseGenerator::PassphraseGenerator()']]], + ['paste_5fact_5f_456',['paste_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a62ea61c38e758022ba655c6faf54322b',1,'GpgFrontend::UI::MainWindow']]], + ['pending_5ftasks_5f_457',['pending_tasks_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a6d92421bbbfcf3136335a5173d1b2a22',1,'GpgFrontend::Thread::TaskRunner']]], + ['pgp_5fcrypt_5fbegin_458',['PGP_CRYPT_BEGIN',['../classGpgFrontend_1_1GpgConstants.html#a237006d6db30c7e3f8de171210eb35f2',1,'GpgFrontend::GpgConstants']]], + ['plaintexteditorpage_459',['PlainTextEditorPage',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html',1,'GpgFrontend::UI::PlainTextEditorPage'],['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a8759224e57d4c322933ed3df6d96e5f1',1,'GpgFrontend::UI::PlainTextEditorPage::PlainTextEditorPage()']]], + ['popobject_460',['PopObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a5ef5ddec0b82017cc4ad7f34b9b13f64',1,'GpgFrontend::Thread::Task::DataObject']]], + ['post_5finit_5fctx_461',['post_init_ctx',['../classGpgFrontend_1_1GpgContext.html#aaf3f394ff1790897c315c3249b1f06fe',1,'GpgFrontend::GpgContext']]], + ['postscheduletask_462',['PostScheduleTask',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#aaddb0cdd8eb57aac08ca9caf8b8e6bac',1,'GpgFrontend::Thread::TaskRunner']]], + ['posttask_463',['PostTask',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a4fae01eb0a5b296b8c4c6bf8408f1c6b',1,'GpgFrontend::Thread::TaskRunner']]], + ['print_5fact_5f_464',['print_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8f9dd7edba23321a13ed630cdef7fdcc',1,'GpgFrontend::UI::MainWindow']]], + ['print_5frecipient_465',['print_recipient',['../classGpgFrontend_1_1GpgDecryptResultAnalyse.html#a1aac1c1f77a12069479a47f54a934c44',1,'GpgFrontend::GpgDecryptResultAnalyse']]], + ['print_5fsigner_466',['print_signer',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a57bf4a26466e07f7f0ecc19de3782104',1,'GpgFrontend::GpgVerifyResultAnalyse']]], + ['process_5fdirectory_5finto_5ftarball_467',['process_directory_into_tarball',['../namespaceGpgFrontend_1_1UI.html#a5470872566b41ce628f64039f34b964a',1,'GpgFrontend::UI']]], + ['process_5foperation_468',['process_operation',['../namespaceGpgFrontend_1_1UI.html#a3c971eeb5c620d08d6d92f0752ceaf9f',1,'GpgFrontend::UI']]], + ['process_5fresult_5fanalyse_469',['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_470',['process_tarball_into_directory',['../namespaceGpgFrontend_1_1UI.html#a57d0a4dba23cd3d9b42222d40c710dc1',1,'GpgFrontend::UI']]], + ['proxyconnectiontesttask_471',['ProxyConnectionTestTask',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask.html',1,'GpgFrontend::UI::ProxyConnectionTestTask'],['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask.html#a8036aaf9a2adcf033fc9f8e51da59956',1,'GpgFrontend::UI::ProxyConnectionTestTask::ProxyConnectionTestTask()']]], + ['proxyconnectiontestthread_472',['ProxyConnectionTestThread',['../classProxyConnectionTestThread.html',1,'']]] ]; diff --git a/docs/html/search/classes_0.js b/docs/html/search/classes_0.js index b851ef93..970bd5af 100644 --- a/docs/html/search/classes_0.js +++ b/docs/html/search/classes_0.js @@ -1,7 +1,7 @@ var searchData= [ - ['_5fctx_5fref_5fdeleter_743',['_ctx_ref_deleter',['../structGpgFrontend_1_1GpgContext_1_1__ctx__ref__deleter.html',1,'GpgFrontend::GpgContext']]], - ['_5fdata_5fref_5fdeleter_744',['_data_ref_deleter',['../structGpgFrontend_1_1GpgData_1_1__data__ref__deleter.html',1,'GpgFrontend::GpgData']]], - ['_5fkey_5fref_5fdeleter_745',['_key_ref_deleter',['../structGpgFrontend_1_1GpgKey_1_1__key__ref__deleter.html',1,'GpgFrontend::GpgKey']]], - ['_5fresult_5fref_5fdeletor_746',['_result_ref_deletor',['../structGpgFrontend_1_1__result__ref__deletor.html',1,'GpgFrontend']]] + ['_5fctx_5fref_5fdeleter_746',['_ctx_ref_deleter',['../structGpgFrontend_1_1GpgContext_1_1__ctx__ref__deleter.html',1,'GpgFrontend::GpgContext']]], + ['_5fdata_5fref_5fdeleter_747',['_data_ref_deleter',['../structGpgFrontend_1_1GpgData_1_1__data__ref__deleter.html',1,'GpgFrontend::GpgData']]], + ['_5fkey_5fref_5fdeleter_748',['_key_ref_deleter',['../structGpgFrontend_1_1GpgKey_1_1__key__ref__deleter.html',1,'GpgFrontend::GpgKey']]], + ['_5fresult_5fref_5fdeletor_749',['_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 c65a1471..73cc3545 100644 --- a/docs/html/search/classes_1.js +++ b/docs/html/search/classes_1.js @@ -1,9 +1,9 @@ var searchData= [ - ['aboutdialog_747',['AboutDialog',['../classGpgFrontend_1_1UI_1_1AboutDialog.html',1,'GpgFrontend::UI']]], - ['advancedtab_748',['AdvancedTab',['../classGpgFrontend_1_1UI_1_1AdvancedTab.html',1,'GpgFrontend::UI']]], - ['appearancetab_749',['AppearanceTab',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html',1,'GpgFrontend::UI']]], - ['archivefileoperator_750',['ArchiveFileOperator',['../classGpgFrontend_1_1ArchiveFileOperator.html',1,'GpgFrontend']]], - ['archivestruct_751',['ArchiveStruct',['../structGpgFrontend_1_1ArchiveStruct.html',1,'GpgFrontend']]], - ['automatonhandelstruct_752',['AutomatonHandelStruct',['../structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html',1,'GpgFrontend::GpgKeyManager']]] + ['aboutdialog_750',['AboutDialog',['../classGpgFrontend_1_1UI_1_1AboutDialog.html',1,'GpgFrontend::UI']]], + ['advancedtab_751',['AdvancedTab',['../classGpgFrontend_1_1UI_1_1AdvancedTab.html',1,'GpgFrontend::UI']]], + ['appearancetab_752',['AppearanceTab',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html',1,'GpgFrontend::UI']]], + ['archivefileoperator_753',['ArchiveFileOperator',['../classGpgFrontend_1_1ArchiveFileOperator.html',1,'GpgFrontend']]], + ['archivestruct_754',['ArchiveStruct',['../structGpgFrontend_1_1ArchiveStruct.html',1,'GpgFrontend']]], + ['automatonhandelstruct_755',['AutomatonHandelStruct',['../structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html',1,'GpgFrontend::GpgKeyManager']]] ]; diff --git a/docs/html/search/classes_10.js b/docs/html/search/classes_10.js index ac7773b8..d88b893a 100644 --- a/docs/html/search/classes_10.js +++ b/docs/html/search/classes_10.js @@ -1,10 +1,12 @@ var searchData= [ - ['task_866',['Task',['../classGpgFrontend_1_1Thread_1_1Task.html',1,'GpgFrontend::Thread']]], - ['taskrunner_867',['TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html',1,'GpgFrontend::Thread']]], - ['taskrunnergetter_868',['TaskRunnerGetter',['../classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html',1,'GpgFrontend::Thread']]], - ['testlistedkeyserverthread_869',['TestListedKeyServerThread',['../classTestListedKeyServerThread.html',1,'']]], - ['textedit_870',['TextEdit',['../classGpgFrontend_1_1UI_1_1TextEdit.html',1,'GpgFrontend::UI']]], - ['tofuinfopage_871',['TOFUInfoPage',['../classGpgFrontend_1_1UI_1_1TOFUInfoPage.html',1,'GpgFrontend::UI']]], - ['translatorstab_872',['TranslatorsTab',['../classGpgFrontend_1_1UI_1_1TranslatorsTab.html',1,'GpgFrontend::UI']]] + ['task_870',['Task',['../classGpgFrontend_1_1Thread_1_1Task.html',1,'GpgFrontend::Thread']]], + ['taskrunner_871',['TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html',1,'GpgFrontend::Thread']]], + ['taskrunnergetter_872',['TaskRunnerGetter',['../classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html',1,'GpgFrontend::Thread']]], + ['testlistedkeyserverthread_873',['TestListedKeyServerThread',['../classTestListedKeyServerThread.html',1,'']]], + ['textedit_874',['TextEdit',['../classGpgFrontend_1_1UI_1_1TextEdit.html',1,'GpgFrontend::UI']]], + ['threadsafemap_875',['ThreadSafeMap',['../classGpgFrontend_1_1ThreadSafeMap.html',1,'GpgFrontend']]], + ['threadsafemap_3c_20std_3a_3astring_2c_20nlohmann_3a_3ajson_20_3e_876',['ThreadSafeMap< std::string, nlohmann::json >',['../classGpgFrontend_1_1ThreadSafeMap.html',1,'GpgFrontend']]], + ['tofuinfopage_877',['TOFUInfoPage',['../classGpgFrontend_1_1UI_1_1TOFUInfoPage.html',1,'GpgFrontend::UI']]], + ['translatorstab_878',['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 d1446c1d..c4edf5d2 100644 --- a/docs/html/search/classes_11.js +++ b/docs/html/search/classes_11.js @@ -1,4 +1,4 @@ var searchData= [ - ['updatetab_873',['UpdateTab',['../classGpgFrontend_1_1UI_1_1UpdateTab.html',1,'GpgFrontend::UI']]] + ['updatetab_879',['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 45380926..4e1f565c 100644 --- a/docs/html/search/classes_12.js +++ b/docs/html/search/classes_12.js @@ -1,6 +1,6 @@ var searchData= [ - ['verifydetailsdialog_874',['VerifyDetailsDialog',['../classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html',1,'GpgFrontend::UI']]], - ['verifykeydetailbox_875',['VerifyKeyDetailBox',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html',1,'GpgFrontend::UI']]], - ['versionchecktask_876',['VersionCheckTask',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html',1,'GpgFrontend::UI']]] + ['verifydetailsdialog_880',['VerifyDetailsDialog',['../classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html',1,'GpgFrontend::UI']]], + ['verifykeydetailbox_881',['VerifyKeyDetailBox',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html',1,'GpgFrontend::UI']]], + ['versionchecktask_882',['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 55d63788..8ecdfa8f 100644 --- a/docs/html/search/classes_13.js +++ b/docs/html/search/classes_13.js @@ -1,5 +1,5 @@ var searchData= [ - ['waitingdialog_877',['WaitingDialog',['../classGpgFrontend_1_1UI_1_1WaitingDialog.html',1,'GpgFrontend::UI']]], - ['wizard_878',['Wizard',['../classGpgFrontend_1_1UI_1_1Wizard.html',1,'GpgFrontend::UI']]] + ['waitingdialog_883',['WaitingDialog',['../classGpgFrontend_1_1UI_1_1WaitingDialog.html',1,'GpgFrontend::UI']]], + ['wizard_884',['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 a219ae1f..c50cbe45 100644 --- a/docs/html/search/classes_2.js +++ b/docs/html/search/classes_2.js @@ -1,14 +1,14 @@ var searchData= [ - ['cachemanager_753',['CacheManager',['../classGpgFrontend_1_1CacheManager.html',1,'GpgFrontend']]], - ['channelobject_754',['ChannelObject',['../classGpgFrontend_1_1ChannelObject.html',1,'GpgFrontend']]], - ['charsetoperator_755',['CharsetOperator',['../classGpgFrontend_1_1CharsetOperator.html',1,'GpgFrontend']]], - ['choosepage_756',['ChoosePage',['../classGpgFrontend_1_1UI_1_1ChoosePage.html',1,'GpgFrontend::UI']]], - ['class_757',['class',['../classclass.html',1,'']]], - ['commonutils_758',['CommonUtils',['../classGpgFrontend_1_1UI_1_1CommonUtils.html',1,'GpgFrontend::UI']]], - ['conclusionpage_759',['ConclusionPage',['../classGpgFrontend_1_1UI_1_1ConclusionPage.html',1,'GpgFrontend::UI']]], - ['corecommonutil_760',['CoreCommonUtil',['../classGpgFrontend_1_1CoreCommonUtil.html',1,'GpgFrontend']]], - ['coresignalstation_761',['CoreSignalStation',['../classGpgFrontend_1_1CoreSignalStation.html',1,'GpgFrontend']]], - ['cryptomenu_762',['CryptoMenu',['../structGpgFrontend_1_1UI_1_1MainWindow_1_1CryptoMenu.html',1,'GpgFrontend::UI::MainWindow']]], - ['ctxchecktask_763',['CtxCheckTask',['../classGpgFrontend_1_1Thread_1_1CtxCheckTask.html',1,'GpgFrontend::Thread']]] + ['cachemanager_756',['CacheManager',['../classGpgFrontend_1_1CacheManager.html',1,'GpgFrontend']]], + ['channelobject_757',['ChannelObject',['../classGpgFrontend_1_1ChannelObject.html',1,'GpgFrontend']]], + ['charsetoperator_758',['CharsetOperator',['../classGpgFrontend_1_1CharsetOperator.html',1,'GpgFrontend']]], + ['choosepage_759',['ChoosePage',['../classGpgFrontend_1_1UI_1_1ChoosePage.html',1,'GpgFrontend::UI']]], + ['class_760',['class',['../classclass.html',1,'']]], + ['commonutils_761',['CommonUtils',['../classGpgFrontend_1_1UI_1_1CommonUtils.html',1,'GpgFrontend::UI']]], + ['conclusionpage_762',['ConclusionPage',['../classGpgFrontend_1_1UI_1_1ConclusionPage.html',1,'GpgFrontend::UI']]], + ['corecommonutil_763',['CoreCommonUtil',['../classGpgFrontend_1_1CoreCommonUtil.html',1,'GpgFrontend']]], + ['coresignalstation_764',['CoreSignalStation',['../classGpgFrontend_1_1CoreSignalStation.html',1,'GpgFrontend']]], + ['cryptomenu_765',['CryptoMenu',['../structGpgFrontend_1_1UI_1_1MainWindow_1_1CryptoMenu.html',1,'GpgFrontend::UI::MainWindow']]], + ['ctxchecktask_766',['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 18e03f92..d48aa019 100644 --- a/docs/html/search/classes_3.js +++ b/docs/html/search/classes_3.js @@ -1,6 +1,6 @@ var searchData= [ - ['dataobject_764',['DataObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html',1,'GpgFrontend::Thread::Task']]], - ['dataobjectoperator_765',['DataObjectOperator',['../classGpgFrontend_1_1DataObjectOperator.html',1,'GpgFrontend']]], - ['destructor_766',['Destructor',['../structGpgFrontend_1_1Thread_1_1Task_1_1DataObject_1_1Destructor.html',1,'GpgFrontend::Thread::Task::DataObject']]] + ['dataobject_767',['DataObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html',1,'GpgFrontend::Thread::Task']]], + ['dataobjectoperator_768',['DataObjectOperator',['../classGpgFrontend_1_1DataObjectOperator.html',1,'GpgFrontend']]], + ['destructor_769',['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 bf9a767b..a37de755 100644 --- a/docs/html/search/classes_4.js +++ b/docs/html/search/classes_4.js @@ -1,4 +1,4 @@ var searchData= [ - ['exportkeypackagedialog_767',['ExportKeyPackageDialog',['../classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html',1,'GpgFrontend::UI']]] + ['exportkeypackagedialog_770',['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 456fa788..a3b11f64 100644 --- a/docs/html/search/classes_5.js +++ b/docs/html/search/classes_5.js @@ -1,7 +1,7 @@ var searchData= [ - ['fileoperator_768',['FileOperator',['../classGpgFrontend_1_1FileOperator.html',1,'GpgFrontend']]], - ['filepage_769',['FilePage',['../classGpgFrontend_1_1UI_1_1FilePage.html',1,'GpgFrontend::UI']]], - ['filereadtask_770',['FileReadTask',['../classGpgFrontend_1_1UI_1_1FileReadTask.html',1,'GpgFrontend::UI']]], - ['findwidget_771',['FindWidget',['../classGpgFrontend_1_1UI_1_1FindWidget.html',1,'GpgFrontend::UI']]] + ['fileoperator_771',['FileOperator',['../classGpgFrontend_1_1FileOperator.html',1,'GpgFrontend']]], + ['filepage_772',['FilePage',['../classGpgFrontend_1_1UI_1_1FilePage.html',1,'GpgFrontend::UI']]], + ['filereadtask_773',['FileReadTask',['../classGpgFrontend_1_1UI_1_1FileReadTask.html',1,'GpgFrontend::UI']]], + ['findwidget_774',['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 4e4462c0..5a22f651 100644 --- a/docs/html/search/classes_6.js +++ b/docs/html/search/classes_6.js @@ -1,38 +1,38 @@ var searchData= [ - ['generaldialog_772',['GeneralDialog',['../classGpgFrontend_1_1UI_1_1GeneralDialog.html',1,'GpgFrontend::UI']]], - ['generalmainwindow_773',['GeneralMainWindow',['../classGpgFrontend_1_1UI_1_1GeneralMainWindow.html',1,'GpgFrontend::UI']]], - ['generaltab_774',['GeneralTab',['../classGpgFrontend_1_1UI_1_1GeneralTab.html',1,'GpgFrontend::UI']]], - ['genkeyinfo_775',['GenKeyInfo',['../classGpgFrontend_1_1GenKeyInfo.html',1,'GpgFrontend']]], - ['globalsettingstation_776',['GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html',1,'GpgFrontend']]], - ['gnupgcontrollerdialog_777',['GnuPGControllerDialog',['../classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html',1,'GpgFrontend::UI']]], - ['gnupgtab_778',['GnupgTab',['../classGpgFrontend_1_1UI_1_1GnupgTab.html',1,'GpgFrontend::UI']]], - ['gpgadvancedoperator_779',['GpgAdvancedOperator',['../classGpgFrontend_1_1GpgAdvancedOperator.html',1,'GpgFrontend']]], - ['gpgbasicoperator_780',['GpgBasicOperator',['../classGpgFrontend_1_1GpgBasicOperator.html',1,'GpgFrontend']]], - ['gpgcommandexecutor_781',['GpgCommandExecutor',['../classGpgFrontend_1_1GpgCommandExecutor.html',1,'GpgFrontend']]], - ['gpgconstants_782',['GpgConstants',['../classGpgFrontend_1_1GpgConstants.html',1,'GpgFrontend']]], - ['gpgcontext_783',['GpgContext',['../classGpgFrontend_1_1GpgContext.html',1,'GpgFrontend']]], - ['gpgcontextinitargs_784',['GpgContextInitArgs',['../structGpgFrontend_1_1GpgContextInitArgs.html',1,'GpgFrontend']]], - ['gpgdata_785',['GpgData',['../classGpgFrontend_1_1GpgData.html',1,'GpgFrontend']]], - ['gpgdecryptresultanalyse_786',['GpgDecryptResultAnalyse',['../classGpgFrontend_1_1GpgDecryptResultAnalyse.html',1,'GpgFrontend']]], - ['gpgencryptresultanalyse_787',['GpgEncryptResultAnalyse',['../classGpgFrontend_1_1GpgEncryptResultAnalyse.html',1,'GpgFrontend']]], - ['gpgfileopera_788',['GpgFileOpera',['../classGpgFrontend_1_1GpgFileOpera.html',1,'GpgFrontend']]], - ['gpgfrontendapplication_789',['GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html',1,'GpgFrontend::UI']]], - ['gpgimportedkey_790',['GpgImportedKey',['../classGpgFrontend_1_1GpgImportedKey.html',1,'GpgFrontend']]], - ['gpgimportinformation_791',['GpgImportInformation',['../classGpgFrontend_1_1GpgImportInformation.html',1,'GpgFrontend']]], - ['gpginfo_792',['GpgInfo',['../classGpgFrontend_1_1GpgInfo.html',1,'GpgFrontend']]], - ['gpgkey_793',['GpgKey',['../classGpgFrontend_1_1GpgKey.html',1,'GpgFrontend']]], - ['gpgkeygetter_794',['GpgKeyGetter',['../classGpgFrontend_1_1GpgKeyGetter.html',1,'GpgFrontend']]], - ['gpgkeyimportexporter_795',['GpgKeyImportExporter',['../classGpgFrontend_1_1GpgKeyImportExporter.html',1,'GpgFrontend']]], - ['gpgkeymanager_796',['GpgKeyManager',['../classGpgFrontend_1_1GpgKeyManager.html',1,'GpgFrontend']]], - ['gpgkeyopera_797',['GpgKeyOpera',['../classGpgFrontend_1_1GpgKeyOpera.html',1,'GpgFrontend']]], - ['gpgkeysignature_798',['GpgKeySignature',['../classGpgFrontend_1_1GpgKeySignature.html',1,'GpgFrontend']]], - ['gpgresultanalyse_799',['GpgResultAnalyse',['../classGpgFrontend_1_1GpgResultAnalyse.html',1,'GpgFrontend']]], - ['gpgsignature_800',['GpgSignature',['../classGpgFrontend_1_1GpgSignature.html',1,'GpgFrontend']]], - ['gpgsignresultanalyse_801',['GpgSignResultAnalyse',['../classGpgFrontend_1_1GpgSignResultAnalyse.html',1,'GpgFrontend']]], - ['gpgsubkey_802',['GpgSubKey',['../classGpgFrontend_1_1GpgSubKey.html',1,'GpgFrontend']]], - ['gpgtofuinfo_803',['GpgTOFUInfo',['../classGpgFrontend_1_1GpgTOFUInfo.html',1,'GpgFrontend']]], - ['gpguid_804',['GpgUID',['../classGpgFrontend_1_1GpgUID.html',1,'GpgFrontend']]], - ['gpguidoperator_805',['GpgUIDOperator',['../classGpgFrontend_1_1GpgUIDOperator.html',1,'GpgFrontend']]], - ['gpgverifyresultanalyse_806',['GpgVerifyResultAnalyse',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html',1,'GpgFrontend']]] + ['generaldialog_775',['GeneralDialog',['../classGpgFrontend_1_1UI_1_1GeneralDialog.html',1,'GpgFrontend::UI']]], + ['generalmainwindow_776',['GeneralMainWindow',['../classGpgFrontend_1_1UI_1_1GeneralMainWindow.html',1,'GpgFrontend::UI']]], + ['generaltab_777',['GeneralTab',['../classGpgFrontend_1_1UI_1_1GeneralTab.html',1,'GpgFrontend::UI']]], + ['genkeyinfo_778',['GenKeyInfo',['../classGpgFrontend_1_1GenKeyInfo.html',1,'GpgFrontend']]], + ['globalsettingstation_779',['GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html',1,'GpgFrontend']]], + ['gnupgcontrollerdialog_780',['GnuPGControllerDialog',['../classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html',1,'GpgFrontend::UI']]], + ['gnupgtab_781',['GnupgTab',['../classGpgFrontend_1_1UI_1_1GnupgTab.html',1,'GpgFrontend::UI']]], + ['gpgadvancedoperator_782',['GpgAdvancedOperator',['../classGpgFrontend_1_1GpgAdvancedOperator.html',1,'GpgFrontend']]], + ['gpgbasicoperator_783',['GpgBasicOperator',['../classGpgFrontend_1_1GpgBasicOperator.html',1,'GpgFrontend']]], + ['gpgcommandexecutor_784',['GpgCommandExecutor',['../classGpgFrontend_1_1GpgCommandExecutor.html',1,'GpgFrontend']]], + ['gpgconstants_785',['GpgConstants',['../classGpgFrontend_1_1GpgConstants.html',1,'GpgFrontend']]], + ['gpgcontext_786',['GpgContext',['../classGpgFrontend_1_1GpgContext.html',1,'GpgFrontend']]], + ['gpgcontextinitargs_787',['GpgContextInitArgs',['../structGpgFrontend_1_1GpgContextInitArgs.html',1,'GpgFrontend']]], + ['gpgdata_788',['GpgData',['../classGpgFrontend_1_1GpgData.html',1,'GpgFrontend']]], + ['gpgdecryptresultanalyse_789',['GpgDecryptResultAnalyse',['../classGpgFrontend_1_1GpgDecryptResultAnalyse.html',1,'GpgFrontend']]], + ['gpgencryptresultanalyse_790',['GpgEncryptResultAnalyse',['../classGpgFrontend_1_1GpgEncryptResultAnalyse.html',1,'GpgFrontend']]], + ['gpgfileopera_791',['GpgFileOpera',['../classGpgFrontend_1_1GpgFileOpera.html',1,'GpgFrontend']]], + ['gpgfrontendapplication_792',['GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html',1,'GpgFrontend::UI']]], + ['gpgimportedkey_793',['GpgImportedKey',['../classGpgFrontend_1_1GpgImportedKey.html',1,'GpgFrontend']]], + ['gpgimportinformation_794',['GpgImportInformation',['../classGpgFrontend_1_1GpgImportInformation.html',1,'GpgFrontend']]], + ['gpginfo_795',['GpgInfo',['../classGpgFrontend_1_1GpgInfo.html',1,'GpgFrontend']]], + ['gpgkey_796',['GpgKey',['../classGpgFrontend_1_1GpgKey.html',1,'GpgFrontend']]], + ['gpgkeygetter_797',['GpgKeyGetter',['../classGpgFrontend_1_1GpgKeyGetter.html',1,'GpgFrontend']]], + ['gpgkeyimportexporter_798',['GpgKeyImportExporter',['../classGpgFrontend_1_1GpgKeyImportExporter.html',1,'GpgFrontend']]], + ['gpgkeymanager_799',['GpgKeyManager',['../classGpgFrontend_1_1GpgKeyManager.html',1,'GpgFrontend']]], + ['gpgkeyopera_800',['GpgKeyOpera',['../classGpgFrontend_1_1GpgKeyOpera.html',1,'GpgFrontend']]], + ['gpgkeysignature_801',['GpgKeySignature',['../classGpgFrontend_1_1GpgKeySignature.html',1,'GpgFrontend']]], + ['gpgresultanalyse_802',['GpgResultAnalyse',['../classGpgFrontend_1_1GpgResultAnalyse.html',1,'GpgFrontend']]], + ['gpgsignature_803',['GpgSignature',['../classGpgFrontend_1_1GpgSignature.html',1,'GpgFrontend']]], + ['gpgsignresultanalyse_804',['GpgSignResultAnalyse',['../classGpgFrontend_1_1GpgSignResultAnalyse.html',1,'GpgFrontend']]], + ['gpgsubkey_805',['GpgSubKey',['../classGpgFrontend_1_1GpgSubKey.html',1,'GpgFrontend']]], + ['gpgtofuinfo_806',['GpgTOFUInfo',['../classGpgFrontend_1_1GpgTOFUInfo.html',1,'GpgFrontend']]], + ['gpguid_807',['GpgUID',['../classGpgFrontend_1_1GpgUID.html',1,'GpgFrontend']]], + ['gpguidoperator_808',['GpgUIDOperator',['../classGpgFrontend_1_1GpgUIDOperator.html',1,'GpgFrontend']]], + ['gpgverifyresultanalyse_809',['GpgVerifyResultAnalyse',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html',1,'GpgFrontend']]] ]; diff --git a/docs/html/search/classes_7.js b/docs/html/search/classes_7.js index 3c5dfce3..1fb8452c 100644 --- a/docs/html/search/classes_7.js +++ b/docs/html/search/classes_7.js @@ -1,4 +1,4 @@ var searchData= [ - ['helppage_807',['HelpPage',['../classGpgFrontend_1_1UI_1_1HelpPage.html',1,'GpgFrontend::UI']]] + ['helppage_810',['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 408909c7..dfded4e7 100644 --- a/docs/html/search/classes_8.js +++ b/docs/html/search/classes_8.js @@ -1,6 +1,6 @@ var searchData= [ - ['infoboardwidget_808',['InfoBoardWidget',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html',1,'GpgFrontend::UI']]], - ['infotab_809',['InfoTab',['../classGpgFrontend_1_1UI_1_1InfoTab.html',1,'GpgFrontend::UI']]], - ['intropage_810',['IntroPage',['../classGpgFrontend_1_1UI_1_1IntroPage.html',1,'GpgFrontend::UI']]] + ['infoboardwidget_811',['InfoBoardWidget',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html',1,'GpgFrontend::UI']]], + ['infotab_812',['InfoTab',['../classGpgFrontend_1_1UI_1_1InfoTab.html',1,'GpgFrontend::UI']]], + ['intropage_813',['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 ab8b3ed8..2b37462a 100644 --- a/docs/html/search/classes_9.js +++ b/docs/html/search/classes_9.js @@ -1,26 +1,26 @@ var searchData= [ - ['keydetailsdialog_811',['KeyDetailsDialog',['../classGpgFrontend_1_1UI_1_1KeyDetailsDialog.html',1,'GpgFrontend::UI']]], - ['keygendialog_812',['KeyGenDialog',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html',1,'GpgFrontend::UI']]], - ['keygenpage_813',['KeyGenPage',['../classGpgFrontend_1_1UI_1_1KeyGenPage.html',1,'GpgFrontend::UI']]], - ['keyimportdetaildialog_814',['KeyImportDetailDialog',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html',1,'GpgFrontend::UI']]], - ['keylist_815',['KeyList',['../classGpgFrontend_1_1UI_1_1KeyList.html',1,'GpgFrontend::UI']]], - ['keylistcolumn_816',['KeyListColumn',['../structGpgFrontend_1_1UI_1_1KeyListColumn.html',1,'GpgFrontend::UI']]], - ['keylistrow_817',['KeyListRow',['../structGpgFrontend_1_1UI_1_1KeyListRow.html',1,'GpgFrontend::UI']]], - ['keymenuability_818',['KeyMenuAbility',['../structGpgFrontend_1_1UI_1_1KeyMenuAbility.html',1,'GpgFrontend::UI']]], - ['keymgmt_819',['KeyMgmt',['../classGpgFrontend_1_1UI_1_1KeyMgmt.html',1,'GpgFrontend::UI']]], - ['keynewuiddialog_820',['KeyNewUIDDialog',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html',1,'GpgFrontend::UI']]], - ['keypackageoperator_821',['KeyPackageOperator',['../classGpgFrontend_1_1KeyPackageOperator.html',1,'GpgFrontend']]], - ['keypairdetailtab_822',['KeyPairDetailTab',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html',1,'GpgFrontend::UI']]], - ['keypairoperatab_823',['KeyPairOperaTab',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html',1,'GpgFrontend::UI']]], - ['keypairsubkeytab_824',['KeyPairSubkeyTab',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html',1,'GpgFrontend::UI']]], - ['keypairuidtab_825',['KeyPairUIDTab',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html',1,'GpgFrontend::UI']]], - ['keyserverimportdialog_826',['KeyServerImportDialog',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html',1,'GpgFrontend::UI']]], - ['keyserverimporttask_827',['KeyServerImportTask',['../classGpgFrontend_1_1UI_1_1KeyServerImportTask.html',1,'GpgFrontend::UI']]], - ['keyserversearchtask_828',['KeyServerSearchTask',['../classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html',1,'GpgFrontend::UI']]], - ['keyservertab_829',['KeyserverTab',['../classGpgFrontend_1_1UI_1_1KeyserverTab.html',1,'GpgFrontend::UI']]], - ['keysetexpiredatedialog_830',['KeySetExpireDateDialog',['../classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html',1,'GpgFrontend::UI']]], - ['keytable_831',['KeyTable',['../structGpgFrontend_1_1UI_1_1KeyTable.html',1,'GpgFrontend::UI']]], - ['keyuidsigndialog_832',['KeyUIDSignDialog',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html',1,'GpgFrontend::UI']]], - ['keyuploaddialog_833',['KeyUploadDialog',['../classGpgFrontend_1_1UI_1_1KeyUploadDialog.html',1,'GpgFrontend::UI']]] + ['keydetailsdialog_814',['KeyDetailsDialog',['../classGpgFrontend_1_1UI_1_1KeyDetailsDialog.html',1,'GpgFrontend::UI']]], + ['keygendialog_815',['KeyGenDialog',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html',1,'GpgFrontend::UI']]], + ['keygenpage_816',['KeyGenPage',['../classGpgFrontend_1_1UI_1_1KeyGenPage.html',1,'GpgFrontend::UI']]], + ['keyimportdetaildialog_817',['KeyImportDetailDialog',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html',1,'GpgFrontend::UI']]], + ['keylist_818',['KeyList',['../classGpgFrontend_1_1UI_1_1KeyList.html',1,'GpgFrontend::UI']]], + ['keylistcolumn_819',['KeyListColumn',['../structGpgFrontend_1_1UI_1_1KeyListColumn.html',1,'GpgFrontend::UI']]], + ['keylistrow_820',['KeyListRow',['../structGpgFrontend_1_1UI_1_1KeyListRow.html',1,'GpgFrontend::UI']]], + ['keymenuability_821',['KeyMenuAbility',['../structGpgFrontend_1_1UI_1_1KeyMenuAbility.html',1,'GpgFrontend::UI']]], + ['keymgmt_822',['KeyMgmt',['../classGpgFrontend_1_1UI_1_1KeyMgmt.html',1,'GpgFrontend::UI']]], + ['keynewuiddialog_823',['KeyNewUIDDialog',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html',1,'GpgFrontend::UI']]], + ['keypackageoperator_824',['KeyPackageOperator',['../classGpgFrontend_1_1KeyPackageOperator.html',1,'GpgFrontend']]], + ['keypairdetailtab_825',['KeyPairDetailTab',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html',1,'GpgFrontend::UI']]], + ['keypairoperatab_826',['KeyPairOperaTab',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html',1,'GpgFrontend::UI']]], + ['keypairsubkeytab_827',['KeyPairSubkeyTab',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html',1,'GpgFrontend::UI']]], + ['keypairuidtab_828',['KeyPairUIDTab',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html',1,'GpgFrontend::UI']]], + ['keyserverimportdialog_829',['KeyServerImportDialog',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html',1,'GpgFrontend::UI']]], + ['keyserverimporttask_830',['KeyServerImportTask',['../classGpgFrontend_1_1UI_1_1KeyServerImportTask.html',1,'GpgFrontend::UI']]], + ['keyserversearchtask_831',['KeyServerSearchTask',['../classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html',1,'GpgFrontend::UI']]], + ['keyservertab_832',['KeyserverTab',['../classGpgFrontend_1_1UI_1_1KeyserverTab.html',1,'GpgFrontend::UI']]], + ['keysetexpiredatedialog_833',['KeySetExpireDateDialog',['../classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html',1,'GpgFrontend::UI']]], + ['keytable_834',['KeyTable',['../structGpgFrontend_1_1UI_1_1KeyTable.html',1,'GpgFrontend::UI']]], + ['keyuidsigndialog_835',['KeyUIDSignDialog',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html',1,'GpgFrontend::UI']]], + ['keyuploaddialog_836',['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 a7834aeb..1b32d780 100644 --- a/docs/html/search/classes_a.js +++ b/docs/html/search/classes_a.js @@ -1,4 +1,4 @@ var searchData= [ - ['listedkeyservertesttask_834',['ListedKeyServerTestTask',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html',1,'GpgFrontend::UI']]] + ['listedkeyservertesttask_837',['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 42459272..0c5c6c85 100644 --- a/docs/html/search/classes_b.js +++ b/docs/html/search/classes_b.js @@ -1,4 +1,4 @@ var searchData= [ - ['mainwindow_835',['MainWindow',['../classGpgFrontend_1_1UI_1_1MainWindow.html',1,'GpgFrontend::UI']]] + ['mainwindow_838',['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 f43fe2b7..f3c50d33 100644 --- a/docs/html/search/classes_c.js +++ b/docs/html/search/classes_c.js @@ -1,4 +1,4 @@ var searchData= [ - ['networktab_836',['NetworkTab',['../classGpgFrontend_1_1UI_1_1NetworkTab.html',1,'GpgFrontend::UI']]] + ['networktab_839',['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 41a642ff..c6f0a193 100644 --- a/docs/html/search/classes_d.js +++ b/docs/html/search/classes_d.js @@ -1,7 +1,7 @@ var searchData= [ - ['passphrasegenerator_837',['PassphraseGenerator',['../classGpgFrontend_1_1PassphraseGenerator.html',1,'GpgFrontend']]], - ['plaintexteditorpage_838',['PlainTextEditorPage',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html',1,'GpgFrontend::UI']]], - ['proxyconnectiontesttask_839',['ProxyConnectionTestTask',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask.html',1,'GpgFrontend::UI']]], - ['proxyconnectiontestthread_840',['ProxyConnectionTestThread',['../classProxyConnectionTestThread.html',1,'']]] + ['passphrasegenerator_840',['PassphraseGenerator',['../classGpgFrontend_1_1PassphraseGenerator.html',1,'GpgFrontend']]], + ['plaintexteditorpage_841',['PlainTextEditorPage',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html',1,'GpgFrontend::UI']]], + ['proxyconnectiontesttask_842',['ProxyConnectionTestTask',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask.html',1,'GpgFrontend::UI']]], + ['proxyconnectiontestthread_843',['ProxyConnectionTestThread',['../classProxyConnectionTestThread.html',1,'']]] ]; diff --git a/docs/html/search/classes_e.js b/docs/html/search/classes_e.js index be2ee7e7..860fefb4 100644 --- a/docs/html/search/classes_e.js +++ b/docs/html/search/classes_e.js @@ -1,4 +1,4 @@ var searchData= [ - ['quitdialog_841',['QuitDialog',['../classGpgFrontend_1_1UI_1_1QuitDialog.html',1,'GpgFrontend::UI']]] + ['quitdialog_844',['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 2d4e2f87..f4abf977 100644 --- a/docs/html/search/classes_f.js +++ b/docs/html/search/classes_f.js @@ -1,27 +1,28 @@ var searchData= [ - ['settingsdialog_842',['SettingsDialog',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html',1,'GpgFrontend::UI']]], - ['settingsobject_843',['SettingsObject',['../classGpgFrontend_1_1UI_1_1SettingsObject.html',1,'GpgFrontend::UI']]], - ['signalstation_844',['SignalStation',['../classGpgFrontend_1_1UI_1_1SignalStation.html',1,'GpgFrontend::UI']]], - ['signaturedetailsdialog_845',['SignatureDetailsDialog',['../classSignatureDetailsDialog.html',1,'']]], - ['signerspicker_846',['SignersPicker',['../classGpgFrontend_1_1UI_1_1SignersPicker.html',1,'GpgFrontend::UI']]], - ['singletonfunctionobject_847',['SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20dataobjectoperator_20_3e_848',['SingletonFunctionObject< DataObjectOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20globalsettingstation_20_3e_849',['SingletonFunctionObject< GlobalSettingStation >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgadvancedoperator_20_3e_850',['SingletonFunctionObject< GpgAdvancedOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgbasicoperator_20_3e_851',['SingletonFunctionObject< GpgBasicOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgcommandexecutor_20_3e_852',['SingletonFunctionObject< GpgCommandExecutor >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgcontext_20_3e_853',['SingletonFunctionObject< GpgContext >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgfileopera_20_3e_854',['SingletonFunctionObject< GpgFileOpera >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgkeygetter_20_3e_855',['SingletonFunctionObject< GpgKeyGetter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgkeyimportexporter_20_3e_856',['SingletonFunctionObject< GpgKeyImportExporter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgkeymanager_20_3e_857',['SingletonFunctionObject< GpgKeyManager >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgkeyopera_20_3e_858',['SingletonFunctionObject< GpgKeyOpera >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpguidoperator_20_3e_859',['SingletonFunctionObject< GpgUIDOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20passphrasegenerator_20_3e_860',['SingletonFunctionObject< PassphraseGenerator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20taskrunnergetter_20_3e_861',['SingletonFunctionObject< TaskRunnerGetter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonstorage_862',['SingletonStorage',['../classGpgFrontend_1_1SingletonStorage.html',1,'GpgFrontend']]], - ['singletonstoragecollection_863',['SingletonStorageCollection',['../classGpgFrontend_1_1SingletonStorageCollection.html',1,'GpgFrontend']]], - ['softwareversion_864',['SoftwareVersion',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html',1,'GpgFrontend::UI']]], - ['subkeygeneratedialog_865',['SubkeyGenerateDialog',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html',1,'GpgFrontend::UI']]] + ['settingsdialog_845',['SettingsDialog',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html',1,'GpgFrontend::UI']]], + ['settingsobject_846',['SettingsObject',['../classGpgFrontend_1_1UI_1_1SettingsObject.html',1,'GpgFrontend::UI']]], + ['signalstation_847',['SignalStation',['../classGpgFrontend_1_1UI_1_1SignalStation.html',1,'GpgFrontend::UI']]], + ['signaturedetailsdialog_848',['SignatureDetailsDialog',['../classSignatureDetailsDialog.html',1,'']]], + ['signerspicker_849',['SignersPicker',['../classGpgFrontend_1_1UI_1_1SignersPicker.html',1,'GpgFrontend::UI']]], + ['singletonfunctionobject_850',['SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20cachemanager_20_3e_851',['SingletonFunctionObject< CacheManager >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20dataobjectoperator_20_3e_852',['SingletonFunctionObject< DataObjectOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20globalsettingstation_20_3e_853',['SingletonFunctionObject< GlobalSettingStation >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgadvancedoperator_20_3e_854',['SingletonFunctionObject< GpgAdvancedOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgbasicoperator_20_3e_855',['SingletonFunctionObject< GpgBasicOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgcommandexecutor_20_3e_856',['SingletonFunctionObject< GpgCommandExecutor >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgcontext_20_3e_857',['SingletonFunctionObject< GpgContext >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgfileopera_20_3e_858',['SingletonFunctionObject< GpgFileOpera >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgkeygetter_20_3e_859',['SingletonFunctionObject< GpgKeyGetter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgkeyimportexporter_20_3e_860',['SingletonFunctionObject< GpgKeyImportExporter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgkeymanager_20_3e_861',['SingletonFunctionObject< GpgKeyManager >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgkeyopera_20_3e_862',['SingletonFunctionObject< GpgKeyOpera >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpguidoperator_20_3e_863',['SingletonFunctionObject< GpgUIDOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20passphrasegenerator_20_3e_864',['SingletonFunctionObject< PassphraseGenerator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20taskrunnergetter_20_3e_865',['SingletonFunctionObject< TaskRunnerGetter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonstorage_866',['SingletonStorage',['../classGpgFrontend_1_1SingletonStorage.html',1,'GpgFrontend']]], + ['singletonstoragecollection_867',['SingletonStorageCollection',['../classGpgFrontend_1_1SingletonStorageCollection.html',1,'GpgFrontend']]], + ['softwareversion_868',['SoftwareVersion',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html',1,'GpgFrontend::UI']]], + ['subkeygeneratedialog_869',['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 bd396dfc..a026a4a7 100644 --- a/docs/html/search/enums_0.js +++ b/docs/html/search/enums_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['infoboardstatus_1571',['InfoBoardStatus',['../namespaceGpgFrontend_1_1UI.html#acbaebd342a317b1f067942e5144bb00d',1,'GpgFrontend::UI']]] + ['infoboardstatus_1578',['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 406023cd..c0f66696 100644 --- a/docs/html/search/functions_0.js +++ b/docs/html/search/functions_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['_5fnew_5fresult_883',['_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_889',['_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 6d62d8ec..419349e5 100644 --- a/docs/html/search/functions_1.js +++ b/docs/html/search/functions_1.js @@ -1,15 +1,15 @@ var searchData= [ - ['aboutdialog_884',['AboutDialog',['../classGpgFrontend_1_1UI_1_1AboutDialog.html#ab04683ab4c4d682af1e259705c60d85a',1,'GpgFrontend::UI::AboutDialog']]], - ['addlistgrouptab_885',['AddListGroupTab',['../classGpgFrontend_1_1UI_1_1KeyList.html#a73ddb7feb1f70eac44e038c3dc925fec',1,'GpgFrontend::UI::KeyList']]], - ['addmenuaction_886',['AddMenuAction',['../classGpgFrontend_1_1UI_1_1KeyList.html#aa961e3ba3c48f84dea4bb7ab4f756886',1,'GpgFrontend::UI::KeyList']]], - ['addoptionalaction_887',['AddOptionalAction',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a456f15315a03107f7757d84362c1af71',1,'GpgFrontend::UI::InfoBoardWidget']]], - ['adduid_888',['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_889',['aes_256_cbc_decrypt',['../namespaceGpgFrontend_1_1RawAPI.html#a2e388ecafc7b859eda84b4e3c4e2576f',1,'GpgFrontend::RawAPI']]], - ['aes_5f256_5fcbc_5fencrypt_890',['aes_256_cbc_encrypt',['../namespaceGpgFrontend_1_1RawAPI.html#aa2bc88cf78b8da893f1b5c7e2e8ccf42',1,'GpgFrontend::RawAPI']]], - ['aes_5f256_5fcbc_5finit_891',['aes_256_cbc_init',['../namespaceGpgFrontend_1_1RawAPI.html#a1f2f6c82e9c904c3875a123a65564697',1,'GpgFrontend::RawAPI']]], - ['appearancetab_892',['AppearanceTab',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html#abfca670540bc0409b9be4459ee6a3b6c',1,'GpgFrontend::UI::AppearanceTab']]], - ['appendobject_893',['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_894',['AssociateTabWidget',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#adfa4acd435d2ec29f951f4e7e6a43f38',1,'GpgFrontend::UI::InfoBoardWidget']]], - ['associatetextedit_895',['AssociateTextEdit',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a4fd6f91eb435feb41ae93e44485646ab',1,'GpgFrontend::UI::InfoBoardWidget']]] + ['aboutdialog_890',['AboutDialog',['../classGpgFrontend_1_1UI_1_1AboutDialog.html#ab04683ab4c4d682af1e259705c60d85a',1,'GpgFrontend::UI::AboutDialog']]], + ['addlistgrouptab_891',['AddListGroupTab',['../classGpgFrontend_1_1UI_1_1KeyList.html#ab8663d18901d10c00dbcc0ba852b3bf4',1,'GpgFrontend::UI::KeyList']]], + ['addmenuaction_892',['AddMenuAction',['../classGpgFrontend_1_1UI_1_1KeyList.html#aa961e3ba3c48f84dea4bb7ab4f756886',1,'GpgFrontend::UI::KeyList']]], + ['addoptionalaction_893',['AddOptionalAction',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a456f15315a03107f7757d84362c1af71',1,'GpgFrontend::UI::InfoBoardWidget']]], + ['adduid_894',['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_895',['aes_256_cbc_decrypt',['../namespaceGpgFrontend_1_1RawAPI.html#a2e388ecafc7b859eda84b4e3c4e2576f',1,'GpgFrontend::RawAPI']]], + ['aes_5f256_5fcbc_5fencrypt_896',['aes_256_cbc_encrypt',['../namespaceGpgFrontend_1_1RawAPI.html#aa2bc88cf78b8da893f1b5c7e2e8ccf42',1,'GpgFrontend::RawAPI']]], + ['aes_5f256_5fcbc_5finit_897',['aes_256_cbc_init',['../namespaceGpgFrontend_1_1RawAPI.html#a1f2f6c82e9c904c3875a123a65564697',1,'GpgFrontend::RawAPI']]], + ['appearancetab_898',['AppearanceTab',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html#abfca670540bc0409b9be4459ee6a3b6c',1,'GpgFrontend::UI::AppearanceTab']]], + ['appendobject_899',['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_900',['AssociateTabWidget',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#adfa4acd435d2ec29f951f4e7e6a43f38',1,'GpgFrontend::UI::InfoBoardWidget']]], + ['associatetextedit_901',['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 8a56872b..f07559f7 100644 --- a/docs/html/search/functions_10.js +++ b/docs/html/search/functions_10.js @@ -1,4 +1,4 @@ var searchData= [ - ['quitdialog_1212',['QuitDialog',['../classGpgFrontend_1_1UI_1_1QuitDialog.html#a60419bf8e817db25128c2f941fc42a3d',1,'GpgFrontend::UI::QuitDialog']]] + ['quitdialog_1220',['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 49892c16..3fe46c0f 100644 --- a/docs/html/search/functions_11.js +++ b/docs/html/search/functions_11.js @@ -1,23 +1,23 @@ var searchData= [ - ['read2buffer_1213',['Read2Buffer',['../classGpgFrontend_1_1GpgData.html#ae382a34ec551561315deca84c71c19c1',1,'GpgFrontend::GpgData']]], - ['read_5fall_5fdata_5fin_5ffile_1214',['read_all_data_in_file',['../namespaceGpgFrontend.html#a73f3e2217fb1d72dc75f266e11875f6d',1,'GpgFrontend']]], - ['readdone_1215',['ReadDone',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#ac1902b063decfeebe7f0908cbfe618ce',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['readfile_1216',['ReadFile',['../classGpgFrontend_1_1FileOperator.html#a28a3572dc01192b6a4d50b544181084c',1,'GpgFrontend::FileOperator']]], - ['readfilestd_1217',['ReadFileStd',['../classGpgFrontend_1_1FileOperator.html#ad4424bce4f22ae75a16c542dfb4ddf0a',1,'GpgFrontend::FileOperator']]], - ['refresh_1218',['Refresh',['../structGpgFrontend_1_1UI_1_1KeyTable.html#aaac381e205c323444098803e0295060f',1,'GpgFrontend::UI::KeyTable']]], - ['refresh_5finfo_5fboard_1219',['refresh_info_board',['../namespaceGpgFrontend_1_1UI.html#a204156a333cde4f705f0ace91cd3d333',1,'GpgFrontend::UI']]], - ['refresh_5fkeys_5ffrom_5fkey_5fserver_1220',['refresh_keys_from_key_server',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adfa3b3ae1de1fd04c5ea09e3c97c3e98',1,'GpgFrontend::UI::MainWindow']]], - ['refresh_5fwidgets_5fstate_1221',['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_1222',['ReleaseChannel',['../classGpgFrontend_1_1SingletonStorage.html#adb22cc80a1ab040b6e4bce962625edfd',1,'GpgFrontend::SingletonStorage::ReleaseChannel()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#ab49b1d50252e1934691a9483a6df2106',1,'GpgFrontend::SingletonFunctionObject::ReleaseChannel()']]], - ['reloadgpgcomponents_1223',['ReloadGpgComponents',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a6876b6ee63ff7147c274e4f9538d29ce',1,'GpgFrontend::GpgAdvancedOperator']]], - ['resetconfigures_1224',['ResetConfigures',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a209f6d1d664ab672437198dc10ed8226',1,'GpgFrontend::GpgAdvancedOperator']]], - ['resetoptionactionsmenu_1225',['ResetOptionActionsMenu',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a7d7504339221bd680fb18698dd829b32',1,'GpgFrontend::UI::InfoBoardWidget']]], - ['resettempcachevalue_1226',['ResetTempCacheValue',['../classGpgFrontend_1_1CoreCommonUtil.html#ae2df4542d0d7d15a542f9c664f1f295f',1,'GpgFrontend::CoreCommonUtil']]], - ['restartgpgcomponents_1227',['RestartGpgComponents',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a5801bf4ea7391cbcc60efd2513d41041',1,'GpgFrontend::GpgAdvancedOperator']]], - ['restore_5fsettings_1228',['restore_settings',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a210ab31f4d949a50507d0690c0d1598a',1,'GpgFrontend::UI::MainWindow']]], - ['revsign_1229',['RevSign',['../classGpgFrontend_1_1GpgKeyManager.html#aa2c0e804db1c4aaf3b861ee5ab54ebd8',1,'GpgFrontend::GpgKeyManager']]], - ['revuid_1230',['RevUID',['../classGpgFrontend_1_1GpgUIDOperator.html#a47f762666afbc806365877ff70947841',1,'GpgFrontend::GpgUIDOperator']]], - ['run_1231',['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()']]], - ['rungpgfrontendui_1232',['RunGpgFrontendUI',['../namespaceGpgFrontend_1_1UI.html#a9e2d085812ef8fdd6f19ea94a241b4da',1,'GpgFrontend::UI']]] + ['read2buffer_1221',['Read2Buffer',['../classGpgFrontend_1_1GpgData.html#ae382a34ec551561315deca84c71c19c1',1,'GpgFrontend::GpgData']]], + ['read_5fall_5fdata_5fin_5ffile_1222',['read_all_data_in_file',['../namespaceGpgFrontend.html#a73f3e2217fb1d72dc75f266e11875f6d',1,'GpgFrontend']]], + ['readdone_1223',['ReadDone',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#ac1902b063decfeebe7f0908cbfe618ce',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['readfile_1224',['ReadFile',['../classGpgFrontend_1_1FileOperator.html#a28a3572dc01192b6a4d50b544181084c',1,'GpgFrontend::FileOperator']]], + ['readfilestd_1225',['ReadFileStd',['../classGpgFrontend_1_1FileOperator.html#ad4424bce4f22ae75a16c542dfb4ddf0a',1,'GpgFrontend::FileOperator']]], + ['refresh_1226',['Refresh',['../structGpgFrontend_1_1UI_1_1KeyTable.html#aaac381e205c323444098803e0295060f',1,'GpgFrontend::UI::KeyTable']]], + ['refresh_5finfo_5fboard_1227',['refresh_info_board',['../namespaceGpgFrontend_1_1UI.html#a204156a333cde4f705f0ace91cd3d333',1,'GpgFrontend::UI']]], + ['refresh_5fkeys_5ffrom_5fkey_5fserver_1228',['refresh_keys_from_key_server',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adfa3b3ae1de1fd04c5ea09e3c97c3e98',1,'GpgFrontend::UI::MainWindow']]], + ['refresh_5fwidgets_5fstate_1229',['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_1230',['ReleaseChannel',['../classGpgFrontend_1_1SingletonStorage.html#adb22cc80a1ab040b6e4bce962625edfd',1,'GpgFrontend::SingletonStorage::ReleaseChannel()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#ab49b1d50252e1934691a9483a6df2106',1,'GpgFrontend::SingletonFunctionObject::ReleaseChannel()']]], + ['reloadgpgcomponents_1231',['ReloadGpgComponents',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a6876b6ee63ff7147c274e4f9538d29ce',1,'GpgFrontend::GpgAdvancedOperator']]], + ['resetconfigures_1232',['ResetConfigures',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a209f6d1d664ab672437198dc10ed8226',1,'GpgFrontend::GpgAdvancedOperator']]], + ['resetoptionactionsmenu_1233',['ResetOptionActionsMenu',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a7d7504339221bd680fb18698dd829b32',1,'GpgFrontend::UI::InfoBoardWidget']]], + ['resettempcachevalue_1234',['ResetTempCacheValue',['../classGpgFrontend_1_1CoreCommonUtil.html#ae2df4542d0d7d15a542f9c664f1f295f',1,'GpgFrontend::CoreCommonUtil']]], + ['restartgpgcomponents_1235',['RestartGpgComponents',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a5801bf4ea7391cbcc60efd2513d41041',1,'GpgFrontend::GpgAdvancedOperator']]], + ['restore_5fsettings_1236',['restore_settings',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a210ab31f4d949a50507d0690c0d1598a',1,'GpgFrontend::UI::MainWindow']]], + ['revsign_1237',['RevSign',['../classGpgFrontend_1_1GpgKeyManager.html#aa2c0e804db1c4aaf3b861ee5ab54ebd8',1,'GpgFrontend::GpgKeyManager']]], + ['revuid_1238',['RevUID',['../classGpgFrontend_1_1GpgUIDOperator.html#a47f762666afbc806365877ff70947841',1,'GpgFrontend::GpgUIDOperator']]], + ['run_1239',['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()']]], + ['rungpgfrontendui_1240',['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 69afbc4e..e3efcd69 100644 --- a/docs/html/search/functions_12.js +++ b/docs/html/search/functions_12.js @@ -1,167 +1,166 @@ var searchData= [ - ['save_5ffile_1233',['save_file',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a66b6f6633e7ac71e5fe8b7814a81cadf',1,'GpgFrontend::UI::TextEdit']]], - ['save_5fsettings_1234',['save_settings',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7a4b6490038470a8849231e48282da98',1,'GpgFrontend::UI::MainWindow']]], - ['savecache_1235',['SaveCache',['../classGpgFrontend_1_1CacheManager.html#a3cbc3238638dcd8b4722bfdf560c73fe',1,'GpgFrontend::CacheManager']]], - ['set_5fbackground_1236',['set_background',['../classGpgFrontend_1_1UI_1_1FindWidget.html#a0c531f2c673caed29225a323e750205f',1,'GpgFrontend::UI::FindWidget']]], - ['set_5floading_1237',['set_loading',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ad4a75da57fa18bfcfaeb7fc601f1c8f6',1,'GpgFrontend::UI::KeyServerImportDialog']]], - ['set_5fmessage_1238',['set_message',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ab93fbf5e0626bffe398f5baa2bc00b1a',1,'GpgFrontend::UI::KeyServerImportDialog']]], - ['set_5fsignal_5fslot_1239',['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_1240',['set_status',['../classGpgFrontend_1_1GpgResultAnalyse.html#a7f13592b421c7b0d3853f15cece8d195',1,'GpgFrontend::GpgResultAnalyse']]], - ['setalgo_1241',['SetAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#adcd9c4f3e75f989810988e0bc81d401f',1,'GpgFrontend::GenKeyInfo']]], - ['setallowauthentication_1242',['SetAllowAuthentication',['../classGpgFrontend_1_1GenKeyInfo.html#aac51d251682ed1bc1090416ebfeba4de',1,'GpgFrontend::GenKeyInfo']]], - ['setallowcertification_1243',['SetAllowCertification',['../classGpgFrontend_1_1GenKeyInfo.html#ac5f52f74566618c71a29bdc5e70fce2e',1,'GpgFrontend::GenKeyInfo']]], - ['setallowencryption_1244',['SetAllowEncryption',['../classGpgFrontend_1_1GenKeyInfo.html#a965014232f6de22c6d33320231ca4454',1,'GpgFrontend::GenKeyInfo']]], - ['setallowsigning_1245',['SetAllowSigning',['../classGpgFrontend_1_1GenKeyInfo.html#a1a01518b24d40d95e187ef73f4dcd52a',1,'GpgFrontend::GenKeyInfo']]], - ['setchannel_1246',['SetChannel',['../classGpgFrontend_1_1ChannelObject.html#aa3b19cad6d873b314bba32a3dae85f09',1,'GpgFrontend::ChannelObject']]], - ['setchecked_1247',['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_1248',['SetColumnWidth',['../classGpgFrontend_1_1UI_1_1KeyList.html#aab3f4facfc850e7eeb917571ca89f4a5',1,'GpgFrontend::UI::KeyList']]], - ['setcomment_1249',['SetComment',['../classGpgFrontend_1_1GenKeyInfo.html#a947886456f5699241b1c1b9332e4b29e',1,'GpgFrontend::GenKeyInfo']]], - ['setcryptomenustatus_1250',['SetCryptoMenuStatus',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a85a98a1ec5418c110201980fa013d1fd',1,'GpgFrontend::UI::MainWindow']]], - ['setdoubleclickedaction_1251',['SetDoubleClickedAction',['../classGpgFrontend_1_1UI_1_1KeyList.html#a7d75246eee6368be295c9ab5fe5ef291',1,'GpgFrontend::UI::KeyList']]], - ['setemail_1252',['SetEmail',['../classGpgFrontend_1_1GenKeyInfo.html#a656c81d56f77350184f9a94db1a3ce05',1,'GpgFrontend::GenKeyInfo']]], - ['setexpire_1253',['SetExpire',['../classGpgFrontend_1_1GpgKeyManager.html#a1625abfbff168c476e76fa9425a6c37d',1,'GpgFrontend::GpgKeyManager::SetExpire()'],['../classGpgFrontend_1_1GpgKeyOpera.html#a12e6b05b23781861065d7e3243c9349e',1,'GpgFrontend::GpgKeyOpera::SetExpire()']]], - ['setexpiretime_1254',['SetExpireTime',['../classGpgFrontend_1_1GenKeyInfo.html#aa3bfeda7fc7c83dc8d48ee2b80780c3a',1,'GpgFrontend::GenKeyInfo']]], - ['setfilepath_1255',['SetFilePath',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aa9e82690824c82e7628ba4ace9d6e2fe',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['setfinishafterrun_1256',['SetFinishAfterRun',['../classGpgFrontend_1_1Thread_1_1Task.html#a689969e7d88ba7ad73a693a1b38aedd7',1,'GpgFrontend::Thread::Task']]], - ['setinfoboard_1257',['SetInfoBoard',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#ac936cfc8e1b3af65d0d71b74fb3f0b02',1,'GpgFrontend::UI::InfoBoardWidget']]], - ['setissubkey_1258',['SetIsSubKey',['../classGpgFrontend_1_1GenKeyInfo.html#acd9f7742b739e1db60bd50489690dec1',1,'GpgFrontend::GenKeyInfo']]], - ['setkeylength_1259',['SetKeyLength',['../classGpgFrontend_1_1GenKeyInfo.html#ae744395012e4dcb9734ad5a30aa8ed75',1,'GpgFrontend::GenKeyInfo']]], - ['setname_1260',['SetName',['../classGpgFrontend_1_1GenKeyInfo.html#a65ebc487e0e64c325f65474c812615f7',1,'GpgFrontend::GenKeyInfo']]], - ['setnonexpired_1261',['SetNonExpired',['../classGpgFrontend_1_1GenKeyInfo.html#aea247381c21896f5371bb813ca665329',1,'GpgFrontend::GenKeyInfo']]], - ['setnonpassphrase_1262',['SetNonPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#a864407216cbdbef9e7b35e6be694d3ef',1,'GpgFrontend::GenKeyInfo']]], - ['setobjectinchannel_1263',['SetObjectInChannel',['../classGpgFrontend_1_1SingletonStorage.html#ab0097bb648b2303d68a975c7cbea5a52',1,'GpgFrontend::SingletonStorage']]], - ['setownertrustlevel_1264',['SetOwnerTrustLevel',['../classGpgFrontend_1_1GpgKeyManager.html#a0d4006daeccd574ddcc9e6c621739c48',1,'GpgFrontend::GpgKeyManager']]], - ['setpassphrase_1265',['SetPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#afe1760d4ead397f6096925290a38e1a4',1,'GpgFrontend::GenKeyInfo']]], - ['setpassphrasecb_1266',['SetPassphraseCb',['../classGpgFrontend_1_1GpgContext.html#a3399fc60086ff5010a089bff48bbc63c',1,'GpgFrontend::GpgContext']]], - ['setprimaryuid_1267',['SetPrimaryUID',['../classGpgFrontend_1_1GpgUIDOperator.html#acbdabec97df508382b0c9b1fffbf1dd5',1,'GpgFrontend::GpgUIDOperator']]], - ['setrtn_1268',['SetRTN',['../classGpgFrontend_1_1Thread_1_1Task.html#aa6d702417bdd6a88c447ed6a457fa098',1,'GpgFrontend::Thread::Task']]], - ['setsettings_1269',['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_1270',['SetSigners',['../classGpgFrontend_1_1GpgBasicOperator.html#ad6ea3596ba7d7543fb1b8233d09996df',1,'GpgFrontend::GpgBasicOperator']]], - ['settempcachevalue_1271',['SetTempCacheValue',['../classGpgFrontend_1_1CoreCommonUtil.html#abe5fa8731b0b672613505d59a576a3d7',1,'GpgFrontend::CoreCommonUtil']]], - ['settingsdialog_1272',['SettingsDialog',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#a1b7ddc7861d1b4b9dc3810ed98023ffc',1,'GpgFrontend::UI::SettingsDialog']]], - ['settingsobject_1273',['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_1274',['show_verify_details',['../namespaceGpgFrontend_1_1UI.html#a590a26051105940a6d6e0743b147e281',1,'GpgFrontend::UI']]], - ['showevent_1275',['showEvent',['../classGpgFrontend_1_1UI_1_1AboutDialog.html#ab799cd5e07b06a8e953d72105c0a1083',1,'GpgFrontend::UI::AboutDialog']]], - ['shownotificationwidget_1276',['ShowNotificationWidget',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#af5dfdfd48ef64cc46e524ec70a22fe3a',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['sign_1277',['Sign',['../classGpgFrontend_1_1GpgBasicOperator.html#a988d7e65e85fc7a578f26300332a65d3',1,'GpgFrontend::GpgBasicOperator']]], - ['signaldeeprestartneeded_1278',['SignalDeepRestartNeeded',['../classGpgFrontend_1_1UI_1_1GeneralTab.html#afc107d56f13000aa28436a5e26a0876b',1,'GpgFrontend::UI::GeneralTab']]], - ['signalkeydatabaserefreshdone_1279',['SignalKeyDatabaseRefreshDone',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a1abc83bba95579aa94d0870181991a28',1,'GpgFrontend::UI::CommonUtils']]], - ['signalkeyserverimportresult_1280',['SignalKeyServerImportResult',['../classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a6b2c07d193fb28a57b1738fa493b2b3f',1,'GpgFrontend::UI::KeyServerImportTask']]], - ['signalkeyserverlisttestresult_1281',['SignalKeyServerListTestResult',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a20f0147d670be7ab5c9d3051a900f508',1,'GpgFrontend::UI::ListedKeyServerTestTask']]], - ['signalkeyserversearchresult_1282',['SignalKeyServerSearchResult',['../classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#ae478130476c95a8b220c3b0e6a7b88b4',1,'GpgFrontend::UI::KeyServerSearchTask']]], - ['signalopenhelp_1283',['SignalOpenHelp',['../classGpgFrontend_1_1UI_1_1Wizard.html#a8b5f5ddb1e6470cbf6c87cc6400031fb',1,'GpgFrontend::UI::Wizard']]], - ['signalpathchanged_1284',['SignalPathChanged',['../classGpgFrontend_1_1UI_1_1FilePage.html#aec462d16a2097024a4ced24012b905a7',1,'GpgFrontend::UI::FilePage']]], - ['signalproxyconnectiontestresult_1285',['SignalProxyConnectionTestResult',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask.html#a31cd14d72c6c28c811c9183f118f5873',1,'GpgFrontend::UI::ProxyConnectionTestTask']]], - ['signalrefreshinfoboard_1286',['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_1287',['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_1288',['SignalReplyFromUpdateServer',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a5e752e01539ccfdc6bbe41a404ddaa95',1,'GpgFrontend::UI::UpdateTab']]], - ['signalrestartneeded_1289',['SignalRestartNeeded',['../classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html#a35a707865fbcc95b6261e382a6ff171c',1,'GpgFrontend::UI::GnuPGControllerDialog']]], - ['signalrestartneeded_1290',['signalRestartNeeded',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html#abff49b636449815a9ebff52f5c067712',1,'GpgFrontend::UI::AppearanceTab']]], - ['signalrestartneeded_1291',['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()'],['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#a26449a77844d9db69a543ff88f10e347',1,'GpgFrontend::UI::KeyserverTab::SignalRestartNeeded()']]], - ['signaltaskend_1292',['SignalTaskEnd',['../classGpgFrontend_1_1Thread_1_1Task.html#abbbb68bcac48b6c31d6fe8ee1572f151',1,'GpgFrontend::Thread::Task']]], - ['signaltaskrunnableend_1293',['SignalTaskRunnableEnd',['../classGpgFrontend_1_1Thread_1_1Task.html#a125b7e71f21dadf10618e30ee0386b12',1,'GpgFrontend::Thread::Task']]], - ['signaluibytesdisplayed_1294',['SignalUIBytesDisplayed',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#afd3749488fdd3d1c53446fb8c833f3f4',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['signalupgradeversion_1295',['SignalUpgradeVersion',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a36c5597674253348477d78ad6af380ab',1,'GpgFrontend::UI::VersionCheckTask']]], - ['signerspicker_1296',['SignersPicker',['../classGpgFrontend_1_1UI_1_1SignersPicker.html#a02c3ba737702894fc6d4ac1a1c543ccb',1,'GpgFrontend::UI::SignersPicker']]], - ['signfile_1297',['SignFile',['../classGpgFrontend_1_1GpgFileOpera.html#a350df1c07c054625c4755a78e6ca5ca8',1,'GpgFrontend::GpgFileOpera']]], - ['signkey_1298',['SignKey',['../classGpgFrontend_1_1GpgKeyManager.html#a12138780c53add7589f78f056019e5e0',1,'GpgFrontend::GpgKeyManager']]], - ['singletonfunctionobject_1299',['SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html#a194e49b07d46345bdad386505d743a61',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(const 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#aabc5fe8e5a372ac276a265286457cb9a',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(T &&)=delete'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a02e76b42ab51d77588b01c7508bed258',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject()=default']]], - ['slot_5factivated_5fkey_5ftype_1300',['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_1301',['slot_add_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a821247d738457c4ee046162aad6728f9',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fadd_5fuid_5fresult_1302',['slot_add_uid_result',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a16f1ae88d6a417b614cfc6ae1852187c',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['slot_5fappend_5fselected_5fkeys_1303',['slot_append_selected_keys',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a76bf3784d751db78ed13bd9962e14472',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fauthentication_5fbox_5fchanged_1304',['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_1305',['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_1306',['slot_clean_double_line_breaks',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aea9274389c3b049793fe5aa5a6adf63c',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fcompress_5ffiles_1307',['slot_compress_files',['../classGpgFrontend_1_1UI_1_1FilePage.html#a250b1950f874c1d11549cd5c0ea9693f',1,'GpgFrontend::UI::FilePage']]], - ['slot_5fcopy_5fdefault_5fuid_5fto_5fclipboard_1308',['slot_copy_default_uid_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3982432b140738859415e487e2c5f5eb',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fcopy_5ffingerprint_1309',['slot_copy_fingerprint',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#af8b600fbd7cd0fbb5b6183403bf870b2',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['slot_5fcopy_5fkey_5fid_5fto_5fclipboard_1310',['slot_copy_key_id_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9e2ddb2135df42d76134bea168fbdce9',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fcopy_5fmail_5faddress_5fto_5fclipboard_1311',['slot_copy_mail_address_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af93d72eaf58326f1f9e926752c6b1fc6',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fcreate_5fnew_5fuid_1312',['slot_create_new_uid',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a4e115ce46a85c2f9e4e0e2427839fc7c',1,'GpgFrontend::UI::KeyNewUIDDialog']]], - ['slot_5fcut_5fpgp_5fheader_1313',['slot_cut_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7f5a88922d06bee977335fb4b5f1d86d',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fdecrypt_1314',['slot_decrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae2d89e2cc6c99ff0e16b396d2381f904',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fdecrypt_5fverify_1315',['slot_decrypt_verify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1d61ea803e6c825bd54f42ba9ae85919',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fdisable_5ftab_5factions_1316',['slot_disable_tab_actions',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a24a0b0d974fc5f8fdda60c128a82d957',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fdouble_5fclicked_1317',['slot_double_clicked',['../classGpgFrontend_1_1UI_1_1KeyList.html#a69e54f06d546d516a0dcdf1055b8028e',1,'GpgFrontend::UI::KeyList']]], - ['slot_5fencrypt_1318',['slot_encrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae11d01211c2914ecc148e13dd7de506e',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fencrypt_5fsign_1319',['slot_encrypt_sign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a304efe91afa31b32725caa00c27475a4',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fencryption_5fbox_5fchanged_1320',['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_1321',['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_1322',['slot_export_private_key',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a384f4250e58110da58c0e6996b42a8ab',1,'GpgFrontend::UI::KeyPairOperaTab']]], - ['slot_5ffile_5ftree_5fview_5fitem_5fclicked_1323',['slot_file_tree_view_item_clicked',['../classGpgFrontend_1_1UI_1_1FilePage.html#a676917817d6f519e043742d1d87f97f1',1,'GpgFrontend::UI::FilePage']]], - ['slot_5ffile_5ftree_5fview_5fitem_5fdouble_5fclicked_1324',['slot_file_tree_view_item_double_clicked',['../classGpgFrontend_1_1UI_1_1FilePage.html#ad3c54320bdafbbb2c06a20d6c7dea9d6',1,'GpgFrontend::UI::FilePage']]], - ['slot_5ffind_1325',['slot_find',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae28089efbd236708601470f30f26faaa',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fformat_5fgpg_5fheader_1326',['slot_format_gpg_header',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a45267bcfc8fc83851894061c0fe2a9c2',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['slot_5fimport_1327',['slot_import',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ac9c14bbc97945c94fd02c8e067ccab06',1,'GpgFrontend::UI::KeyServerImportDialog']]], - ['slot_5fimport_5ffinished_1328',['slot_import_finished',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a6f1c5238da7cd6f117bed8018469b37a',1,'GpgFrontend::UI::KeyServerImportDialog']]], - ['slot_5fimport_5fkey_5ffrom_5fedit_1329',['slot_import_key_from_edit',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a55926649e28a96318b89afba01b966bf',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5finsert_5ftext_1330',['slot_insert_text',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a184985104f23da8fdf2b9aaf7b27405b',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['slot_5fjump_5fpage_1331',['slot_jump_page',['../classGpgFrontend_1_1UI_1_1ChoosePage.html#af0d7890fe65385b7785719b9cff0718b',1,'GpgFrontend::UI::ChoosePage']]], - ['slot_5fkey_5fgen_5faccept_1332',['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_1333',['slot_non_expired_checked',['../classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#adde2b33bd17f521f0630702987b1d274',1,'GpgFrontend::UI::KeySetExpireDateDialog']]], - ['slot_5fopen_5ffile_5ftab_1334',['slot_open_file_tab',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a29a811d4d440c79c1bd2cc2bb40cdf7e',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fopen_5fkey_5fmanagement_1335',['slot_open_key_management',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a16ddebec90a4bd0d13baa9d972c3445f',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fopen_5fsettings_5fdialog_1336',['slot_open_settings_dialog',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a874b505fbc1046f579a736683f5a7f65',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fopen_5furl_1337',['slot_open_url',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a51ff99077a75507365307f5dd783df99',1,'GpgFrontend::UI::HelpPage']]], - ['slot_5fprocess_5fnetwork_5freply_1338',['slot_process_network_reply',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#af9350e0a8d5993e5be0a5478fcb161be',1,'GpgFrontend::UI::ListedKeyServerTestTask']]], - ['slot_5fremove_5ftab_1339',['slot_remove_tab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a12f65fbc4984c266a5df4505ecde7c42',1,'GpgFrontend::UI::TextEdit']]], - ['slot_5fsave_5fstatus_5fto_5fcache_5ffor_5frevovery_1340',['slot_save_status_to_cache_for_revovery',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a1bf57ebe1e32b12c48bb633b7dd7a4f1',1,'GpgFrontend::UI::TextEdit']]], - ['slot_5fset_5frestart_5fneeded_1341',['slot_set_restart_needed',['../classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html#a2bb963a14733cf9b99736b6624c09d83',1,'GpgFrontend::UI::GnuPGControllerDialog::slot_set_restart_needed()'],['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#acc6b4386de554fce6fbb60ac6d201952',1,'GpgFrontend::UI::SettingsDialog::slot_set_restart_needed()']]], - ['slot_5fshow_5fkey_5fdetails_1342',['slot_show_key_details',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a033d448541b44fa48b76dec828a4eb0e',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fshow_5fversion_5fstatus_1343',['slot_show_version_status',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a1003bd969ecbc5deba940e39436968f4',1,'GpgFrontend::UI::UpdateTab']]], - ['slot_5fsign_1344',['slot_sign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3f3d03b0ec22385bee559fbd2aeb881b',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fsign_5fkey_1345',['slot_sign_key',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#a82f6bf641ff3b64341a0bdcf76571c43',1,'GpgFrontend::UI::KeyUIDSignDialog']]], - ['slot_5fsigning_5fbox_5fchanged_1346',['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_1347',['slot_start_wizard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aabf3ddf6b624790369f164b4889c95be',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fupdate_5fkey_5fstatus_1348',['slot_update_key_status',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#ab4ac26378d6a07757720163eb4b1cb0e',1,'GpgFrontend::UI::CommonUtils']]], - ['slot_5fupload_5fkey_5fto_5fserver_1349',['slot_upload_key_to_server',['../classGpgFrontend_1_1UI_1_1KeyUploadDialog.html#a0f724649ca953b888f07d69c97fe45b6',1,'GpgFrontend::UI::KeyUploadDialog']]], - ['slot_5fverify_1350',['slot_verify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa9c986dd95984811479ea93230c74b5d',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fversion_5fupgrade_1351',['slot_version_upgrade',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a48368c77af7b1f4cb632870b8d914a28',1,'GpgFrontend::UI::MainWindow']]], - ['slotclosetab_1352',['SlotCloseTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa21659aa7acba98dfd6286d69e00ab9b',1,'GpgFrontend::UI::TextEdit']]], - ['slotcopy_1353',['SlotCopy',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3599bd01636a873cf3437ab6b9d38780',1,'GpgFrontend::UI::TextEdit']]], - ['slotcurpagefiletreeview_1354',['SlotCurPageFileTreeView',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a72014409d407c161b048e07c061b4cf9',1,'GpgFrontend::UI::TextEdit']]], - ['slotcurpagetextedit_1355',['SlotCurPageTextEdit',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a48351dc1529da3b8da311f65b735b5f1',1,'GpgFrontend::UI::TextEdit']]], - ['slotcut_1356',['SlotCut',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae1e710c6722910b8d35df97aaabb3162',1,'GpgFrontend::UI::TextEdit']]], - ['slotexecutecommand_1357',['SlotExecuteCommand',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a95cd625a2e0e74ee4d564843c6d16791',1,'GpgFrontend::UI::CommonUtils']]], - ['slotexecutegpgcommand_1358',['SlotExecuteGpgCommand',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#afc845c1c37487c99f78d8e66f6874f6d',1,'GpgFrontend::UI::CommonUtils']]], - ['slotfiledecrypt_1359',['SlotFileDecrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0a6d0618f2835a6dcae707a4ca770a48',1,'GpgFrontend::UI::MainWindow']]], - ['slotfiledecryptverify_1360',['SlotFileDecryptVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab23c7e67dd1f5295b3c49ad79dfd5919',1,'GpgFrontend::UI::MainWindow']]], - ['slotfileencrypt_1361',['SlotFileEncrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9ec699536a35a37961a8c6da1e231ae3',1,'GpgFrontend::UI::MainWindow']]], - ['slotfileencryptsign_1362',['SlotFileEncryptSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a25a2e4017d77cffc8362bde9606fad30',1,'GpgFrontend::UI::MainWindow']]], - ['slotfilesign_1363',['SlotFileSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8bcdcbe678b8dc0837fffda2ebfe79bf',1,'GpgFrontend::UI::MainWindow']]], - ['slotfileverify_1364',['SlotFileVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9879061cfd321c6757c77f75d46dc7d8',1,'GpgFrontend::UI::MainWindow']]], - ['slotfilltexteditwithtext_1365',['SlotFillTextEditWithText',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af466ec2b8ab3f695d206efc0574bbe20',1,'GpgFrontend::UI::TextEdit']]], - ['slotimport_1366',['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_1367',['SlotImportKeyFromClipboard',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a0c8bf56fc5371cd2c5e9d2a0f67bf72a',1,'GpgFrontend::UI::CommonUtils']]], - ['slotimportkeyfromfile_1368',['SlotImportKeyFromFile',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a057526790f6b2f6288c3a35322c34d8d',1,'GpgFrontend::UI::CommonUtils']]], - ['slotimportkeyfromkeyserver_1369',['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_1370',['SlotImportKeys',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a3bc26cc1e0f00f0ce2f95c0b6c8778d8',1,'GpgFrontend::UI::CommonUtils']]], - ['slotnewfiletab_1371',['SlotNewFileTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae22ecadf31648f424eb8ab86bd28ef39',1,'GpgFrontend::UI::TextEdit']]], - ['slotnewhelptab_1372',['slotNewHelpTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3c17fdf3abf9c4fb6ce35cfb8f0f8fc4',1,'GpgFrontend::UI::TextEdit']]], - ['slotnewtab_1373',['SlotNewTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a57a46ab5595622ae0b7bceef7d56bd7c',1,'GpgFrontend::UI::TextEdit']]], - ['slotopen_1374',['SlotOpen',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a15335d38187ddf580b7200d856768cfb',1,'GpgFrontend::UI::TextEdit']]], - ['slotopenfile_1375',['SlotOpenFile',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a05b838ad518857fed24864ecce40c203',1,'GpgFrontend::UI::MainWindow::SlotOpenFile()'],['../classGpgFrontend_1_1UI_1_1TextEdit.html#a60c73cc66a48a38c13e7890de49e86c3',1,'GpgFrontend::UI::TextEdit::SlotOpenFile(const QString &path)']]], - ['slotpaste_1376',['SlotPaste',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa2230418dc8f72c400f5a90082a983c9',1,'GpgFrontend::UI::TextEdit']]], - ['slotprint_1377',['SlotPrint',['../classGpgFrontend_1_1UI_1_1TextEdit.html#adca2bbfa746b5598f2a4f74026b84224',1,'GpgFrontend::UI::TextEdit']]], - ['slotquote_1378',['SlotQuote',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6a02fce9dc4039c982d6dd19231517ee',1,'GpgFrontend::UI::TextEdit']]], - ['slotredo_1379',['SlotRedo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae2b3bf422789d56087face98b6a9e929',1,'GpgFrontend::UI::TextEdit']]], - ['slotrefresh_1380',['SlotRefresh',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a68f984815100f4ce281b9794f193e516',1,'GpgFrontend::UI::InfoBoardWidget']]], - ['slotsave_1381',['SlotSave',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ace0b8f4c161db9f4f5db5ecbfd7a91c0',1,'GpgFrontend::UI::TextEdit']]], - ['slotsaveas_1382',['SlotSaveAs',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a02fa44ba0c56f3f6ae125f8490faf254',1,'GpgFrontend::UI::TextEdit']]], - ['slotselectall_1383',['SlotSelectAll',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6c814253dfc061bfdae0fa71c6196c55',1,'GpgFrontend::UI::TextEdit']]], - ['slotsetrestartneeded_1384',['SlotSetRestartNeeded',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a276e843e2f5eda8934fb350fb6f89327',1,'GpgFrontend::UI::MainWindow']]], - ['slotshowmodified_1385',['SlotShowModified',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ab24adc1adb3b9b29469992e4c444436e',1,'GpgFrontend::UI::TextEdit']]], - ['slotswitchtabdown_1386',['SlotSwitchTabDown',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a576e06390e65576465297d2ab8d7d474',1,'GpgFrontend::UI::TextEdit']]], - ['slotswitchtabup_1387',['SlotSwitchTabUp',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af1e364b513f566c743a5d36c19098762',1,'GpgFrontend::UI::TextEdit']]], - ['slotundo_1388',['SlotUndo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a4a81e69f6dc74ea649ca9a2358342fd5',1,'GpgFrontend::UI::TextEdit']]], - ['startdirmngr_1389',['StartDirmngr',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a46085a11235894deccd312fc259d5078',1,'GpgFrontend::GpgAdvancedOperator']]], - ['startgpgagent_1390',['StartGpgAgent',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a07c32ba25cf6153fbc8ee585c4ba377c',1,'GpgFrontend::GpgAdvancedOperator']]], - ['startkeyboxd_1391',['StartKeyBoxd',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a9313410359ed9cff9ee66fa9b4b095ee',1,'GpgFrontend::GpgAdvancedOperator']]], - ['stripped_5fname_1392',['stripped_name',['../classGpgFrontend_1_1UI_1_1TextEdit.html#afb9b7a7d88154d774b3d727d8e640cbb',1,'GpgFrontend::UI::TextEdit']]], - ['subkeygeneratedialog_1393',['SubkeyGenerateDialog',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a8f9d8baa7b576a4aa857818b87c26bcd',1,'GpgFrontend::UI::SubkeyGenerateDialog']]], - ['switch_5fui_5fenabled_1394',['switch_ui_enabled',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#ae3d97948f205e84f0604d4da634a4513',1,'GpgFrontend::UI::NetworkTab']]], - ['switch_5fui_5fproxy_5ftype_1395',['switch_ui_proxy_type',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#a1b0297158f13daec77645c88e5a8adcd',1,'GpgFrontend::UI::NetworkTab']]], - ['syncsettings_1396',['SyncSettings',['../classGpgFrontend_1_1GlobalSettingStation.html#ac061ac8e5308f67ea52b98888bbb2e8d',1,'GpgFrontend::GlobalSettingStation']]] + ['save_5ffile_1241',['save_file',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a66b6f6633e7ac71e5fe8b7814a81cadf',1,'GpgFrontend::UI::TextEdit']]], + ['save_5fsettings_1242',['save_settings',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7a4b6490038470a8849231e48282da98',1,'GpgFrontend::UI::MainWindow']]], + ['set_5fbackground_1243',['set_background',['../classGpgFrontend_1_1UI_1_1FindWidget.html#a0c531f2c673caed29225a323e750205f',1,'GpgFrontend::UI::FindWidget']]], + ['set_5floading_1244',['set_loading',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ad4a75da57fa18bfcfaeb7fc601f1c8f6',1,'GpgFrontend::UI::KeyServerImportDialog']]], + ['set_5fmessage_1245',['set_message',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ab93fbf5e0626bffe398f5baa2bc00b1a',1,'GpgFrontend::UI::KeyServerImportDialog']]], + ['set_5fsignal_5fslot_1246',['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_1247',['set_status',['../classGpgFrontend_1_1GpgResultAnalyse.html#a7f13592b421c7b0d3853f15cece8d195',1,'GpgFrontend::GpgResultAnalyse']]], + ['setalgo_1248',['SetAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#adcd9c4f3e75f989810988e0bc81d401f',1,'GpgFrontend::GenKeyInfo']]], + ['setallowauthentication_1249',['SetAllowAuthentication',['../classGpgFrontend_1_1GenKeyInfo.html#aac51d251682ed1bc1090416ebfeba4de',1,'GpgFrontend::GenKeyInfo']]], + ['setallowcertification_1250',['SetAllowCertification',['../classGpgFrontend_1_1GenKeyInfo.html#ac5f52f74566618c71a29bdc5e70fce2e',1,'GpgFrontend::GenKeyInfo']]], + ['setallowencryption_1251',['SetAllowEncryption',['../classGpgFrontend_1_1GenKeyInfo.html#a965014232f6de22c6d33320231ca4454',1,'GpgFrontend::GenKeyInfo']]], + ['setallowsigning_1252',['SetAllowSigning',['../classGpgFrontend_1_1GenKeyInfo.html#a1a01518b24d40d95e187ef73f4dcd52a',1,'GpgFrontend::GenKeyInfo']]], + ['setchannel_1253',['SetChannel',['../classGpgFrontend_1_1ChannelObject.html#aa3b19cad6d873b314bba32a3dae85f09',1,'GpgFrontend::ChannelObject']]], + ['setchecked_1254',['SetChecked',['../classGpgFrontend_1_1UI_1_1KeyList.html#a68b595a2bb83dfafa61b3e467dd15689',1,'GpgFrontend::UI::KeyList::SetChecked(KeyIdArgsListPtr key_ids)'],['../classGpgFrontend_1_1UI_1_1KeyList.html#ab0182646beb01850779260b3772bd8fe',1,'GpgFrontend::UI::KeyList::SetChecked(const KeyIdArgsListPtr &keyIds, const KeyTable &key_table)'],['../structGpgFrontend_1_1UI_1_1KeyTable.html#ae0713ebbc21e78995db9a856d746fe6c',1,'GpgFrontend::UI::KeyTable::SetChecked()']]], + ['setcolumnwidth_1255',['SetColumnWidth',['../classGpgFrontend_1_1UI_1_1KeyList.html#aab3f4facfc850e7eeb917571ca89f4a5',1,'GpgFrontend::UI::KeyList']]], + ['setcomment_1256',['SetComment',['../classGpgFrontend_1_1GenKeyInfo.html#a947886456f5699241b1c1b9332e4b29e',1,'GpgFrontend::GenKeyInfo']]], + ['setcryptomenustatus_1257',['SetCryptoMenuStatus',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a85a98a1ec5418c110201980fa013d1fd',1,'GpgFrontend::UI::MainWindow']]], + ['setdoubleclickedaction_1258',['SetDoubleClickedAction',['../classGpgFrontend_1_1UI_1_1KeyList.html#a7d75246eee6368be295c9ab5fe5ef291',1,'GpgFrontend::UI::KeyList']]], + ['setemail_1259',['SetEmail',['../classGpgFrontend_1_1GenKeyInfo.html#a656c81d56f77350184f9a94db1a3ce05',1,'GpgFrontend::GenKeyInfo']]], + ['setexpire_1260',['SetExpire',['../classGpgFrontend_1_1GpgKeyManager.html#a1625abfbff168c476e76fa9425a6c37d',1,'GpgFrontend::GpgKeyManager::SetExpire()'],['../classGpgFrontend_1_1GpgKeyOpera.html#a12e6b05b23781861065d7e3243c9349e',1,'GpgFrontend::GpgKeyOpera::SetExpire()']]], + ['setexpiretime_1261',['SetExpireTime',['../classGpgFrontend_1_1GenKeyInfo.html#aa3bfeda7fc7c83dc8d48ee2b80780c3a',1,'GpgFrontend::GenKeyInfo']]], + ['setfilepath_1262',['SetFilePath',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aa9e82690824c82e7628ba4ace9d6e2fe',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['setfinishafterrun_1263',['SetFinishAfterRun',['../classGpgFrontend_1_1Thread_1_1Task.html#a689969e7d88ba7ad73a693a1b38aedd7',1,'GpgFrontend::Thread::Task']]], + ['setinfoboard_1264',['SetInfoBoard',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#ac936cfc8e1b3af65d0d71b74fb3f0b02',1,'GpgFrontend::UI::InfoBoardWidget']]], + ['setissubkey_1265',['SetIsSubKey',['../classGpgFrontend_1_1GenKeyInfo.html#acd9f7742b739e1db60bd50489690dec1',1,'GpgFrontend::GenKeyInfo']]], + ['setkeylength_1266',['SetKeyLength',['../classGpgFrontend_1_1GenKeyInfo.html#ae744395012e4dcb9734ad5a30aa8ed75',1,'GpgFrontend::GenKeyInfo']]], + ['setname_1267',['SetName',['../classGpgFrontend_1_1GenKeyInfo.html#a65ebc487e0e64c325f65474c812615f7',1,'GpgFrontend::GenKeyInfo']]], + ['setnonexpired_1268',['SetNonExpired',['../classGpgFrontend_1_1GenKeyInfo.html#aea247381c21896f5371bb813ca665329',1,'GpgFrontend::GenKeyInfo']]], + ['setnonpassphrase_1269',['SetNonPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#a864407216cbdbef9e7b35e6be694d3ef',1,'GpgFrontend::GenKeyInfo']]], + ['setobjectinchannel_1270',['SetObjectInChannel',['../classGpgFrontend_1_1SingletonStorage.html#ab0097bb648b2303d68a975c7cbea5a52',1,'GpgFrontend::SingletonStorage']]], + ['setownertrustlevel_1271',['SetOwnerTrustLevel',['../classGpgFrontend_1_1GpgKeyManager.html#a0d4006daeccd574ddcc9e6c621739c48',1,'GpgFrontend::GpgKeyManager']]], + ['setpassphrase_1272',['SetPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#afe1760d4ead397f6096925290a38e1a4',1,'GpgFrontend::GenKeyInfo']]], + ['setpassphrasecb_1273',['SetPassphraseCb',['../classGpgFrontend_1_1GpgContext.html#a3399fc60086ff5010a089bff48bbc63c',1,'GpgFrontend::GpgContext']]], + ['setprimaryuid_1274',['SetPrimaryUID',['../classGpgFrontend_1_1GpgUIDOperator.html#acbdabec97df508382b0c9b1fffbf1dd5',1,'GpgFrontend::GpgUIDOperator']]], + ['setrtn_1275',['SetRTN',['../classGpgFrontend_1_1Thread_1_1Task.html#aa6d702417bdd6a88c447ed6a457fa098',1,'GpgFrontend::Thread::Task']]], + ['setsettings_1276',['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_1277',['SetSigners',['../classGpgFrontend_1_1GpgBasicOperator.html#ad6ea3596ba7d7543fb1b8233d09996df',1,'GpgFrontend::GpgBasicOperator']]], + ['settempcachevalue_1278',['SetTempCacheValue',['../classGpgFrontend_1_1CoreCommonUtil.html#abe5fa8731b0b672613505d59a576a3d7',1,'GpgFrontend::CoreCommonUtil']]], + ['settingsdialog_1279',['SettingsDialog',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#a1b7ddc7861d1b4b9dc3810ed98023ffc',1,'GpgFrontend::UI::SettingsDialog']]], + ['settingsobject_1280',['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_1281',['show_verify_details',['../namespaceGpgFrontend_1_1UI.html#a590a26051105940a6d6e0743b147e281',1,'GpgFrontend::UI']]], + ['showevent_1282',['showEvent',['../classGpgFrontend_1_1UI_1_1AboutDialog.html#ab799cd5e07b06a8e953d72105c0a1083',1,'GpgFrontend::UI::AboutDialog']]], + ['shownotificationwidget_1283',['ShowNotificationWidget',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#af5dfdfd48ef64cc46e524ec70a22fe3a',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['sign_1284',['Sign',['../classGpgFrontend_1_1GpgBasicOperator.html#a988d7e65e85fc7a578f26300332a65d3',1,'GpgFrontend::GpgBasicOperator']]], + ['signaldeeprestartneeded_1285',['SignalDeepRestartNeeded',['../classGpgFrontend_1_1UI_1_1GeneralTab.html#afc107d56f13000aa28436a5e26a0876b',1,'GpgFrontend::UI::GeneralTab']]], + ['signalkeydatabaserefreshdone_1286',['SignalKeyDatabaseRefreshDone',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a1abc83bba95579aa94d0870181991a28',1,'GpgFrontend::UI::CommonUtils']]], + ['signalkeyserverimportresult_1287',['SignalKeyServerImportResult',['../classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a6b2c07d193fb28a57b1738fa493b2b3f',1,'GpgFrontend::UI::KeyServerImportTask']]], + ['signalkeyserverlisttestresult_1288',['SignalKeyServerListTestResult',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a20f0147d670be7ab5c9d3051a900f508',1,'GpgFrontend::UI::ListedKeyServerTestTask']]], + ['signalkeyserversearchresult_1289',['SignalKeyServerSearchResult',['../classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#ae478130476c95a8b220c3b0e6a7b88b4',1,'GpgFrontend::UI::KeyServerSearchTask']]], + ['signalopenhelp_1290',['SignalOpenHelp',['../classGpgFrontend_1_1UI_1_1Wizard.html#a8b5f5ddb1e6470cbf6c87cc6400031fb',1,'GpgFrontend::UI::Wizard']]], + ['signalpathchanged_1291',['SignalPathChanged',['../classGpgFrontend_1_1UI_1_1FilePage.html#aec462d16a2097024a4ced24012b905a7',1,'GpgFrontend::UI::FilePage']]], + ['signalproxyconnectiontestresult_1292',['SignalProxyConnectionTestResult',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask.html#a31cd14d72c6c28c811c9183f118f5873',1,'GpgFrontend::UI::ProxyConnectionTestTask']]], + ['signalrefreshinfoboard_1293',['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_1294',['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_1295',['SignalReplyFromUpdateServer',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a5e752e01539ccfdc6bbe41a404ddaa95',1,'GpgFrontend::UI::UpdateTab']]], + ['signalrestartneeded_1296',['SignalRestartNeeded',['../classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html#a35a707865fbcc95b6261e382a6ff171c',1,'GpgFrontend::UI::GnuPGControllerDialog']]], + ['signalrestartneeded_1297',['signalRestartNeeded',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html#abff49b636449815a9ebff52f5c067712',1,'GpgFrontend::UI::AppearanceTab']]], + ['signalrestartneeded_1298',['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()'],['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#a26449a77844d9db69a543ff88f10e347',1,'GpgFrontend::UI::KeyserverTab::SignalRestartNeeded()']]], + ['signaltaskend_1299',['SignalTaskEnd',['../classGpgFrontend_1_1Thread_1_1Task.html#abbbb68bcac48b6c31d6fe8ee1572f151',1,'GpgFrontend::Thread::Task']]], + ['signaltaskrunnableend_1300',['SignalTaskRunnableEnd',['../classGpgFrontend_1_1Thread_1_1Task.html#a125b7e71f21dadf10618e30ee0386b12',1,'GpgFrontend::Thread::Task']]], + ['signaluibytesdisplayed_1301',['SignalUIBytesDisplayed',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#afd3749488fdd3d1c53446fb8c833f3f4',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['signalupgradeversion_1302',['SignalUpgradeVersion',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a36c5597674253348477d78ad6af380ab',1,'GpgFrontend::UI::VersionCheckTask']]], + ['signerspicker_1303',['SignersPicker',['../classGpgFrontend_1_1UI_1_1SignersPicker.html#a02c3ba737702894fc6d4ac1a1c543ccb',1,'GpgFrontend::UI::SignersPicker']]], + ['signfile_1304',['SignFile',['../classGpgFrontend_1_1GpgFileOpera.html#a350df1c07c054625c4755a78e6ca5ca8',1,'GpgFrontend::GpgFileOpera']]], + ['signkey_1305',['SignKey',['../classGpgFrontend_1_1GpgKeyManager.html#a12138780c53add7589f78f056019e5e0',1,'GpgFrontend::GpgKeyManager']]], + ['singletonfunctionobject_1306',['SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html#a194e49b07d46345bdad386505d743a61',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(const 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#aabc5fe8e5a372ac276a265286457cb9a',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(T &&)=delete'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a02e76b42ab51d77588b01c7508bed258',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject()=default']]], + ['slot_5factivated_5fkey_5ftype_1307',['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_1308',['slot_add_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a821247d738457c4ee046162aad6728f9',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fadd_5fuid_5fresult_1309',['slot_add_uid_result',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a16f1ae88d6a417b614cfc6ae1852187c',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['slot_5fappend_5fselected_5fkeys_1310',['slot_append_selected_keys',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a76bf3784d751db78ed13bd9962e14472',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fauthentication_5fbox_5fchanged_1311',['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_1312',['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_1313',['slot_clean_double_line_breaks',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aea9274389c3b049793fe5aa5a6adf63c',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fcompress_5ffiles_1314',['slot_compress_files',['../classGpgFrontend_1_1UI_1_1FilePage.html#a250b1950f874c1d11549cd5c0ea9693f',1,'GpgFrontend::UI::FilePage']]], + ['slot_5fcopy_5fdefault_5fuid_5fto_5fclipboard_1315',['slot_copy_default_uid_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3982432b140738859415e487e2c5f5eb',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fcopy_5ffingerprint_1316',['slot_copy_fingerprint',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#af8b600fbd7cd0fbb5b6183403bf870b2',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['slot_5fcopy_5fkey_5fid_5fto_5fclipboard_1317',['slot_copy_key_id_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9e2ddb2135df42d76134bea168fbdce9',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fcopy_5fmail_5faddress_5fto_5fclipboard_1318',['slot_copy_mail_address_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af93d72eaf58326f1f9e926752c6b1fc6',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fcreate_5fnew_5fuid_1319',['slot_create_new_uid',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a4e115ce46a85c2f9e4e0e2427839fc7c',1,'GpgFrontend::UI::KeyNewUIDDialog']]], + ['slot_5fcut_5fpgp_5fheader_1320',['slot_cut_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7f5a88922d06bee977335fb4b5f1d86d',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fdecrypt_1321',['slot_decrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae2d89e2cc6c99ff0e16b396d2381f904',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fdecrypt_5fverify_1322',['slot_decrypt_verify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1d61ea803e6c825bd54f42ba9ae85919',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fdisable_5ftab_5factions_1323',['slot_disable_tab_actions',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a24a0b0d974fc5f8fdda60c128a82d957',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fdouble_5fclicked_1324',['slot_double_clicked',['../classGpgFrontend_1_1UI_1_1KeyList.html#a69e54f06d546d516a0dcdf1055b8028e',1,'GpgFrontend::UI::KeyList']]], + ['slot_5fencrypt_1325',['slot_encrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae11d01211c2914ecc148e13dd7de506e',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fencrypt_5fsign_1326',['slot_encrypt_sign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a304efe91afa31b32725caa00c27475a4',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fencryption_5fbox_5fchanged_1327',['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_1328',['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_1329',['slot_export_private_key',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a384f4250e58110da58c0e6996b42a8ab',1,'GpgFrontend::UI::KeyPairOperaTab']]], + ['slot_5ffile_5ftree_5fview_5fitem_5fclicked_1330',['slot_file_tree_view_item_clicked',['../classGpgFrontend_1_1UI_1_1FilePage.html#a676917817d6f519e043742d1d87f97f1',1,'GpgFrontend::UI::FilePage']]], + ['slot_5ffile_5ftree_5fview_5fitem_5fdouble_5fclicked_1331',['slot_file_tree_view_item_double_clicked',['../classGpgFrontend_1_1UI_1_1FilePage.html#ad3c54320bdafbbb2c06a20d6c7dea9d6',1,'GpgFrontend::UI::FilePage']]], + ['slot_5ffind_1332',['slot_find',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae28089efbd236708601470f30f26faaa',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fformat_5fgpg_5fheader_1333',['slot_format_gpg_header',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a45267bcfc8fc83851894061c0fe2a9c2',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['slot_5fimport_1334',['slot_import',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ac9c14bbc97945c94fd02c8e067ccab06',1,'GpgFrontend::UI::KeyServerImportDialog']]], + ['slot_5fimport_5ffinished_1335',['slot_import_finished',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a6f1c5238da7cd6f117bed8018469b37a',1,'GpgFrontend::UI::KeyServerImportDialog']]], + ['slot_5fimport_5fkey_5ffrom_5fedit_1336',['slot_import_key_from_edit',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a55926649e28a96318b89afba01b966bf',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5finsert_5ftext_1337',['slot_insert_text',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a184985104f23da8fdf2b9aaf7b27405b',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['slot_5fjump_5fpage_1338',['slot_jump_page',['../classGpgFrontend_1_1UI_1_1ChoosePage.html#af0d7890fe65385b7785719b9cff0718b',1,'GpgFrontend::UI::ChoosePage']]], + ['slot_5fkey_5fgen_5faccept_1339',['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_1340',['slot_non_expired_checked',['../classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#adde2b33bd17f521f0630702987b1d274',1,'GpgFrontend::UI::KeySetExpireDateDialog']]], + ['slot_5fopen_5ffile_5ftab_1341',['slot_open_file_tab',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a29a811d4d440c79c1bd2cc2bb40cdf7e',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fopen_5fkey_5fmanagement_1342',['slot_open_key_management',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a16ddebec90a4bd0d13baa9d972c3445f',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fopen_5fsettings_5fdialog_1343',['slot_open_settings_dialog',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a874b505fbc1046f579a736683f5a7f65',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fopen_5furl_1344',['slot_open_url',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a51ff99077a75507365307f5dd783df99',1,'GpgFrontend::UI::HelpPage']]], + ['slot_5fprocess_5fnetwork_5freply_1345',['slot_process_network_reply',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#af9350e0a8d5993e5be0a5478fcb161be',1,'GpgFrontend::UI::ListedKeyServerTestTask']]], + ['slot_5fremove_5ftab_1346',['slot_remove_tab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a12f65fbc4984c266a5df4505ecde7c42',1,'GpgFrontend::UI::TextEdit']]], + ['slot_5fsave_5fstatus_5fto_5fcache_5ffor_5frevovery_1347',['slot_save_status_to_cache_for_revovery',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a1bf57ebe1e32b12c48bb633b7dd7a4f1',1,'GpgFrontend::UI::TextEdit']]], + ['slot_5fset_5frestart_5fneeded_1348',['slot_set_restart_needed',['../classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html#a2bb963a14733cf9b99736b6624c09d83',1,'GpgFrontend::UI::GnuPGControllerDialog::slot_set_restart_needed()'],['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#acc6b4386de554fce6fbb60ac6d201952',1,'GpgFrontend::UI::SettingsDialog::slot_set_restart_needed()']]], + ['slot_5fshow_5fkey_5fdetails_1349',['slot_show_key_details',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a033d448541b44fa48b76dec828a4eb0e',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fshow_5fversion_5fstatus_1350',['slot_show_version_status',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a1003bd969ecbc5deba940e39436968f4',1,'GpgFrontend::UI::UpdateTab']]], + ['slot_5fsign_1351',['slot_sign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3f3d03b0ec22385bee559fbd2aeb881b',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fsign_5fkey_1352',['slot_sign_key',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#a82f6bf641ff3b64341a0bdcf76571c43',1,'GpgFrontend::UI::KeyUIDSignDialog']]], + ['slot_5fsigning_5fbox_5fchanged_1353',['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_1354',['slot_start_wizard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aabf3ddf6b624790369f164b4889c95be',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fupdate_5fkey_5fstatus_1355',['slot_update_key_status',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#ab4ac26378d6a07757720163eb4b1cb0e',1,'GpgFrontend::UI::CommonUtils']]], + ['slot_5fupload_5fkey_5fto_5fserver_1356',['slot_upload_key_to_server',['../classGpgFrontend_1_1UI_1_1KeyUploadDialog.html#a0f724649ca953b888f07d69c97fe45b6',1,'GpgFrontend::UI::KeyUploadDialog']]], + ['slot_5fverify_1357',['slot_verify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa9c986dd95984811479ea93230c74b5d',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fversion_5fupgrade_1358',['slot_version_upgrade',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a48368c77af7b1f4cb632870b8d914a28',1,'GpgFrontend::UI::MainWindow']]], + ['slotclosetab_1359',['SlotCloseTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa21659aa7acba98dfd6286d69e00ab9b',1,'GpgFrontend::UI::TextEdit']]], + ['slotcopy_1360',['SlotCopy',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3599bd01636a873cf3437ab6b9d38780',1,'GpgFrontend::UI::TextEdit']]], + ['slotcurpagefiletreeview_1361',['SlotCurPageFileTreeView',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a72014409d407c161b048e07c061b4cf9',1,'GpgFrontend::UI::TextEdit']]], + ['slotcurpagetextedit_1362',['SlotCurPageTextEdit',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a48351dc1529da3b8da311f65b735b5f1',1,'GpgFrontend::UI::TextEdit']]], + ['slotcut_1363',['SlotCut',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae1e710c6722910b8d35df97aaabb3162',1,'GpgFrontend::UI::TextEdit']]], + ['slotexecutecommand_1364',['SlotExecuteCommand',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a95cd625a2e0e74ee4d564843c6d16791',1,'GpgFrontend::UI::CommonUtils']]], + ['slotexecutegpgcommand_1365',['SlotExecuteGpgCommand',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#afc845c1c37487c99f78d8e66f6874f6d',1,'GpgFrontend::UI::CommonUtils']]], + ['slotfiledecrypt_1366',['SlotFileDecrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0a6d0618f2835a6dcae707a4ca770a48',1,'GpgFrontend::UI::MainWindow']]], + ['slotfiledecryptverify_1367',['SlotFileDecryptVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab23c7e67dd1f5295b3c49ad79dfd5919',1,'GpgFrontend::UI::MainWindow']]], + ['slotfileencrypt_1368',['SlotFileEncrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9ec699536a35a37961a8c6da1e231ae3',1,'GpgFrontend::UI::MainWindow']]], + ['slotfileencryptsign_1369',['SlotFileEncryptSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a25a2e4017d77cffc8362bde9606fad30',1,'GpgFrontend::UI::MainWindow']]], + ['slotfilesign_1370',['SlotFileSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8bcdcbe678b8dc0837fffda2ebfe79bf',1,'GpgFrontend::UI::MainWindow']]], + ['slotfileverify_1371',['SlotFileVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9879061cfd321c6757c77f75d46dc7d8',1,'GpgFrontend::UI::MainWindow']]], + ['slotfilltexteditwithtext_1372',['SlotFillTextEditWithText',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af466ec2b8ab3f695d206efc0574bbe20',1,'GpgFrontend::UI::TextEdit']]], + ['slotimport_1373',['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_1374',['SlotImportKeyFromClipboard',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a0c8bf56fc5371cd2c5e9d2a0f67bf72a',1,'GpgFrontend::UI::CommonUtils']]], + ['slotimportkeyfromfile_1375',['SlotImportKeyFromFile',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a057526790f6b2f6288c3a35322c34d8d',1,'GpgFrontend::UI::CommonUtils']]], + ['slotimportkeyfromkeyserver_1376',['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_1377',['SlotImportKeys',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a3bc26cc1e0f00f0ce2f95c0b6c8778d8',1,'GpgFrontend::UI::CommonUtils']]], + ['slotnewfiletab_1378',['SlotNewFileTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae22ecadf31648f424eb8ab86bd28ef39',1,'GpgFrontend::UI::TextEdit']]], + ['slotnewhelptab_1379',['slotNewHelpTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3c17fdf3abf9c4fb6ce35cfb8f0f8fc4',1,'GpgFrontend::UI::TextEdit']]], + ['slotnewtab_1380',['SlotNewTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a57a46ab5595622ae0b7bceef7d56bd7c',1,'GpgFrontend::UI::TextEdit']]], + ['slotopen_1381',['SlotOpen',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a15335d38187ddf580b7200d856768cfb',1,'GpgFrontend::UI::TextEdit']]], + ['slotopenfile_1382',['SlotOpenFile',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a05b838ad518857fed24864ecce40c203',1,'GpgFrontend::UI::MainWindow::SlotOpenFile()'],['../classGpgFrontend_1_1UI_1_1TextEdit.html#a60c73cc66a48a38c13e7890de49e86c3',1,'GpgFrontend::UI::TextEdit::SlotOpenFile(const QString &path)']]], + ['slotpaste_1383',['SlotPaste',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa2230418dc8f72c400f5a90082a983c9',1,'GpgFrontend::UI::TextEdit']]], + ['slotprint_1384',['SlotPrint',['../classGpgFrontend_1_1UI_1_1TextEdit.html#adca2bbfa746b5598f2a4f74026b84224',1,'GpgFrontend::UI::TextEdit']]], + ['slotquote_1385',['SlotQuote',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6a02fce9dc4039c982d6dd19231517ee',1,'GpgFrontend::UI::TextEdit']]], + ['slotredo_1386',['SlotRedo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae2b3bf422789d56087face98b6a9e929',1,'GpgFrontend::UI::TextEdit']]], + ['slotrefresh_1387',['SlotRefresh',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a68f984815100f4ce281b9794f193e516',1,'GpgFrontend::UI::InfoBoardWidget']]], + ['slotsave_1388',['SlotSave',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ace0b8f4c161db9f4f5db5ecbfd7a91c0',1,'GpgFrontend::UI::TextEdit']]], + ['slotsaveas_1389',['SlotSaveAs',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a02fa44ba0c56f3f6ae125f8490faf254',1,'GpgFrontend::UI::TextEdit']]], + ['slotselectall_1390',['SlotSelectAll',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6c814253dfc061bfdae0fa71c6196c55',1,'GpgFrontend::UI::TextEdit']]], + ['slotsetrestartneeded_1391',['SlotSetRestartNeeded',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a276e843e2f5eda8934fb350fb6f89327',1,'GpgFrontend::UI::MainWindow']]], + ['slotshowmodified_1392',['SlotShowModified',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ab24adc1adb3b9b29469992e4c444436e',1,'GpgFrontend::UI::TextEdit']]], + ['slotswitchtabdown_1393',['SlotSwitchTabDown',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a576e06390e65576465297d2ab8d7d474',1,'GpgFrontend::UI::TextEdit']]], + ['slotswitchtabup_1394',['SlotSwitchTabUp',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af1e364b513f566c743a5d36c19098762',1,'GpgFrontend::UI::TextEdit']]], + ['slotundo_1395',['SlotUndo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a4a81e69f6dc74ea649ca9a2358342fd5',1,'GpgFrontend::UI::TextEdit']]], + ['startdirmngr_1396',['StartDirmngr',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a46085a11235894deccd312fc259d5078',1,'GpgFrontend::GpgAdvancedOperator']]], + ['startgpgagent_1397',['StartGpgAgent',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a07c32ba25cf6153fbc8ee585c4ba377c',1,'GpgFrontend::GpgAdvancedOperator']]], + ['startkeyboxd_1398',['StartKeyBoxd',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a9313410359ed9cff9ee66fa9b4b095ee',1,'GpgFrontend::GpgAdvancedOperator']]], + ['stripped_5fname_1399',['stripped_name',['../classGpgFrontend_1_1UI_1_1TextEdit.html#afb9b7a7d88154d774b3d727d8e640cbb',1,'GpgFrontend::UI::TextEdit']]], + ['subkeygeneratedialog_1400',['SubkeyGenerateDialog',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a8f9d8baa7b576a4aa857818b87c26bcd',1,'GpgFrontend::UI::SubkeyGenerateDialog']]], + ['switch_5fui_5fenabled_1401',['switch_ui_enabled',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#ae3d97948f205e84f0604d4da634a4513',1,'GpgFrontend::UI::NetworkTab']]], + ['switch_5fui_5fproxy_5ftype_1402',['switch_ui_proxy_type',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#a1b0297158f13daec77645c88e5a8adcd',1,'GpgFrontend::UI::NetworkTab']]], + ['syncsettings_1403',['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 441cdadb..6f739c1a 100644 --- a/docs/html/search/functions_13.js +++ b/docs/html/search/functions_13.js @@ -1,13 +1,13 @@ var searchData= [ - ['tabcount_1397',['TabCount',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a05c54658597b04c3976c72d3a5f9add9',1,'GpgFrontend::UI::TextEdit']]], - ['takechargeofresult_1398',['TakeChargeOfResult',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#acdb7839a5158f078b38d60f0fefc5155',1,'GpgFrontend::GpgVerifyResultAnalyse']]], - ['task_1399',['Task',['../classGpgFrontend_1_1Thread_1_1Task.html#abdff056f5c96f00ac67bd1edcb5f0a48',1,'GpgFrontend::Thread::Task::Task(std::string name=DEFAULT_TASK_NAME)'],['../classGpgFrontend_1_1Thread_1_1Task.html#a79f935428d2e03585673226228a7ffff',1,'GpgFrontend::Thread::Task::Task(TaskRunnable runnable, std::string name=DEFAULT_TASK_NAME, DataObjectPtr data_object=nullptr, bool sequency=true)'],['../classGpgFrontend_1_1Thread_1_1Task.html#a59047d6d26fdf78f9b43ddc189d84958',1,'GpgFrontend::Thread::Task::Task(TaskRunnable runnable, std::string name, DataObjectPtr data, TaskCallback callback=[](int, const std::shared_ptr< DataObject > &) {}, bool sequency=true)']]], - ['taskrunner_1400',['TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#ad3c8612cbe60112f9b14e616fb0a4acf',1,'GpgFrontend::Thread::TaskRunner']]], - ['taskrunnergetter_1401',['TaskRunnerGetter',['../classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html#a80794d81179f66f4b4ed3122a64f27cf',1,'GpgFrontend::Thread::TaskRunnerGetter']]], - ['test_5fpassphrase_5fcb_1402',['test_passphrase_cb',['../classGpgFrontend_1_1GpgContext.html#acc4234054002065dfbc5d5261a4950d4',1,'GpgFrontend::GpgContext']]], - ['test_5fstatus_5fcb_1403',['test_status_cb',['../classGpgFrontend_1_1GpgContext.html#a3844cd0966134939e5c4be9a725e5271',1,'GpgFrontend::GpgContext']]], - ['text_5fis_5fsigned_1404',['text_is_signed',['../namespaceGpgFrontend.html#a2a0394c8bdd277f5235f9875a1d69a99',1,'GpgFrontend']]], - ['tofuinfopage_1405',['TOFUInfoPage',['../classGpgFrontend_1_1UI_1_1TOFUInfoPage.html#a9adc1666e3f57536594876520019e395',1,'GpgFrontend::UI::TOFUInfoPage']]], - ['translatorstab_1406',['TranslatorsTab',['../classGpgFrontend_1_1UI_1_1TranslatorsTab.html#a89e5c7b9c17fb41b7c7bf461fb8ad99e',1,'GpgFrontend::UI::TranslatorsTab']]] + ['tabcount_1404',['TabCount',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a05c54658597b04c3976c72d3a5f9add9',1,'GpgFrontend::UI::TextEdit']]], + ['takechargeofresult_1405',['TakeChargeOfResult',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#acdb7839a5158f078b38d60f0fefc5155',1,'GpgFrontend::GpgVerifyResultAnalyse']]], + ['task_1406',['Task',['../classGpgFrontend_1_1Thread_1_1Task.html#abdff056f5c96f00ac67bd1edcb5f0a48',1,'GpgFrontend::Thread::Task::Task(std::string name=DEFAULT_TASK_NAME)'],['../classGpgFrontend_1_1Thread_1_1Task.html#a79f935428d2e03585673226228a7ffff',1,'GpgFrontend::Thread::Task::Task(TaskRunnable runnable, std::string name=DEFAULT_TASK_NAME, DataObjectPtr data_object=nullptr, bool sequency=true)'],['../classGpgFrontend_1_1Thread_1_1Task.html#a59047d6d26fdf78f9b43ddc189d84958',1,'GpgFrontend::Thread::Task::Task(TaskRunnable runnable, std::string name, DataObjectPtr data, TaskCallback callback=[](int, const std::shared_ptr< DataObject > &) {}, bool sequency=true)']]], + ['taskrunner_1407',['TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#ad3c8612cbe60112f9b14e616fb0a4acf',1,'GpgFrontend::Thread::TaskRunner']]], + ['taskrunnergetter_1408',['TaskRunnerGetter',['../classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html#a80794d81179f66f4b4ed3122a64f27cf',1,'GpgFrontend::Thread::TaskRunnerGetter']]], + ['test_5fpassphrase_5fcb_1409',['test_passphrase_cb',['../classGpgFrontend_1_1GpgContext.html#acc4234054002065dfbc5d5261a4950d4',1,'GpgFrontend::GpgContext']]], + ['test_5fstatus_5fcb_1410',['test_status_cb',['../classGpgFrontend_1_1GpgContext.html#a3844cd0966134939e5c4be9a725e5271',1,'GpgFrontend::GpgContext']]], + ['text_5fis_5fsigned_1411',['text_is_signed',['../namespaceGpgFrontend.html#a2a0394c8bdd277f5235f9875a1d69a99',1,'GpgFrontend']]], + ['tofuinfopage_1412',['TOFUInfoPage',['../classGpgFrontend_1_1UI_1_1TOFUInfoPage.html#a9adc1666e3f57536594876520019e395',1,'GpgFrontend::UI::TOFUInfoPage']]], + ['translatorstab_1413',['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 ce669c3f..1f3a06fd 100644 --- a/docs/html/search/functions_14.js +++ b/docs/html/search/functions_14.js @@ -1,6 +1,6 @@ var searchData= [ - ['unsaveddocuments_1407',['UnsavedDocuments',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a82fe98d45f54909ebea933b540367c39',1,'GpgFrontend::UI::TextEdit']]], - ['updatetab_1408',['UpdateTab',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a833c5f709607032bac530aacf389a117',1,'GpgFrontend::UI::UpdateTab']]], - ['upload_5fkey_5fto_5fserver_1409',['upload_key_to_server',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad27dcf3f534f13d8df71df680c4d177c',1,'GpgFrontend::UI::MainWindow']]] + ['unsaveddocuments_1414',['UnsavedDocuments',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a82fe98d45f54909ebea933b540367c39',1,'GpgFrontend::UI::TextEdit']]], + ['updatetab_1415',['UpdateTab',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a833c5f709607032bac530aacf389a117',1,'GpgFrontend::UI::UpdateTab']]], + ['upload_5fkey_5fto_5fserver_1416',['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 aa249e62..943c287c 100644 --- a/docs/html/search/functions_15.js +++ b/docs/html/search/functions_15.js @@ -1,10 +1,10 @@ var searchData= [ - ['verify_1410',['Verify',['../classGpgFrontend_1_1GpgBasicOperator.html#af0347cb28ff73b2250395ceaa9001509',1,'GpgFrontend::GpgBasicOperator']]], - ['verifydetailsdialog_1411',['VerifyDetailsDialog',['../classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#ac73f0405e249f623ddd0de22b5130fda',1,'GpgFrontend::UI::VerifyDetailsDialog']]], - ['verifyfile_1412',['VerifyFile',['../classGpgFrontend_1_1GpgFileOpera.html#a14cddfe822c9410cd9c301d08963b7e7',1,'GpgFrontend::GpgFileOpera']]], - ['verifykeydetailbox_1413',['VerifyKeyDetailBox',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#afbbe8e87786cca020c9aa8759eb041a0',1,'GpgFrontend::UI::VerifyKeyDetailBox']]], - ['version_5fcompare_1414',['version_compare',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#ae1989b6a34c76103f4bd06f35686d536',1,'GpgFrontend::UI::SoftwareVersion']]], - ['versionchecktask_1415',['VersionCheckTask',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9f7a810ae1aa78c2a61e86e7757da385',1,'GpgFrontend::UI::VersionCheckTask']]], - ['versionwithdrawn_1416',['VersionWithDrawn',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a587a3fdb047a15c3771c2af5eebdbf4b',1,'GpgFrontend::UI::SoftwareVersion']]] + ['verify_1417',['Verify',['../classGpgFrontend_1_1GpgBasicOperator.html#af0347cb28ff73b2250395ceaa9001509',1,'GpgFrontend::GpgBasicOperator']]], + ['verifydetailsdialog_1418',['VerifyDetailsDialog',['../classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#ac73f0405e249f623ddd0de22b5130fda',1,'GpgFrontend::UI::VerifyDetailsDialog']]], + ['verifyfile_1419',['VerifyFile',['../classGpgFrontend_1_1GpgFileOpera.html#a14cddfe822c9410cd9c301d08963b7e7',1,'GpgFrontend::GpgFileOpera']]], + ['verifykeydetailbox_1420',['VerifyKeyDetailBox',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#afbbe8e87786cca020c9aa8759eb041a0',1,'GpgFrontend::UI::VerifyKeyDetailBox']]], + ['version_5fcompare_1421',['version_compare',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#ae1989b6a34c76103f4bd06f35686d536',1,'GpgFrontend::UI::SoftwareVersion']]], + ['versionchecktask_1422',['VersionCheckTask',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9f7a810ae1aa78c2a61e86e7757da385',1,'GpgFrontend::UI::VersionCheckTask']]], + ['versionwithdrawn_1423',['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 0837eb1c..923a458c 100644 --- a/docs/html/search/functions_16.js +++ b/docs/html/search/functions_16.js @@ -1,9 +1,9 @@ var searchData= [ - ['waitingdialog_1417',['WaitingDialog',['../classGpgFrontend_1_1UI_1_1WaitingDialog.html#a809d0ffc8208eb2ff5d8da76c8ee10dc',1,'GpgFrontend::UI::WaitingDialog']]], - ['willcharsetchange_1418',['WillCharsetChange',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a1c1c0174ed1ed9c5a90739eafc5c3267',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['wizard_1419',['Wizard',['../classGpgFrontend_1_1UI_1_1Wizard.html#a448db8fe5ace96418ffd1f23b0142b10',1,'GpgFrontend::UI::Wizard']]], - ['write_5fbuffer_5fto_5ffile_1420',['write_buffer_to_file',['../namespaceGpgFrontend.html#a5135069571678eda9c1f07d17ed9ac41',1,'GpgFrontend']]], - ['writefile_1421',['WriteFile',['../classGpgFrontend_1_1FileOperator.html#a2f21ef4a88448b1eddf756302913d338',1,'GpgFrontend::FileOperator']]], - ['writefilestd_1422',['WriteFileStd',['../classGpgFrontend_1_1FileOperator.html#a51121c94dc32a83d7073fbe7138b603b',1,'GpgFrontend::FileOperator']]] + ['waitingdialog_1424',['WaitingDialog',['../classGpgFrontend_1_1UI_1_1WaitingDialog.html#a809d0ffc8208eb2ff5d8da76c8ee10dc',1,'GpgFrontend::UI::WaitingDialog']]], + ['willcharsetchange_1425',['WillCharsetChange',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a1c1c0174ed1ed9c5a90739eafc5c3267',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['wizard_1426',['Wizard',['../classGpgFrontend_1_1UI_1_1Wizard.html#a448db8fe5ace96418ffd1f23b0142b10',1,'GpgFrontend::UI::Wizard']]], + ['write_5fbuffer_5fto_5ffile_1427',['write_buffer_to_file',['../namespaceGpgFrontend.html#a5135069571678eda9c1f07d17ed9ac41',1,'GpgFrontend']]], + ['writefile_1428',['WriteFile',['../classGpgFrontend_1_1FileOperator.html#a2f21ef4a88448b1eddf756302913d338',1,'GpgFrontend::FileOperator']]], + ['writefilestd_1429',['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 71b79fed..b75dfb26 100644 --- a/docs/html/search/functions_17.js +++ b/docs/html/search/functions_17.js @@ -1,14 +1,14 @@ var searchData= [ - ['_7edataobject_1423',['~DataObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a85bb3c482bf6f47edcd6593cca568a22',1,'GpgFrontend::Thread::Task::DataObject']]], - ['_7eglobalsettingstation_1424',['~GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html#af700161900e623a0ea14261d51616451',1,'GpgFrontend::GlobalSettingStation']]], - ['_7egpgcontext_1425',['~GpgContext',['../classGpgFrontend_1_1GpgContext.html#ae89dee551354c1541337881898832725',1,'GpgFrontend::GpgContext']]], - ['_7egpgfrontendapplication_1426',['~GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a32f0e7dda69f7b1e3cc869340736c590',1,'GpgFrontend::UI::GpgFrontendApplication']]], - ['_7egpgkey_1427',['~GpgKey',['../classGpgFrontend_1_1GpgKey.html#a1e9223bb1ad8fbb4e769680de39b3697',1,'GpgFrontend::GpgKey']]], - ['_7egpgkeysignature_1428',['~GpgKeySignature',['../classGpgFrontend_1_1GpgKeySignature.html#ab4d7044f4e1ddcf0ae0d28be43f0fcb3',1,'GpgFrontend::GpgKeySignature']]], - ['_7egpgsignature_1429',['~GpgSignature',['../classGpgFrontend_1_1GpgSignature.html#a44f137a457ac109d145a1cdd8e544e3a',1,'GpgFrontend::GpgSignature']]], - ['_7esettingsobject_1430',['~SettingsObject',['../classGpgFrontend_1_1UI_1_1SettingsObject.html#ae71336d240ace35756d1852a46271f6c',1,'GpgFrontend::UI::SettingsObject']]], - ['_7esingletonfunctionobject_1431',['~SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html#a8296be8c449f88175285186831b995bc',1,'GpgFrontend::SingletonFunctionObject']]], - ['_7etask_1432',['~Task',['../classGpgFrontend_1_1Thread_1_1Task.html#a37766a505662b33ad14672c29e209ea8',1,'GpgFrontend::Thread::Task']]], - ['_7etaskrunner_1433',['~TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#ac3e57b59d537e2a75e741d4a5418ae6d',1,'GpgFrontend::Thread::TaskRunner']]] + ['_7edataobject_1430',['~DataObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a85bb3c482bf6f47edcd6593cca568a22',1,'GpgFrontend::Thread::Task::DataObject']]], + ['_7eglobalsettingstation_1431',['~GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html#af700161900e623a0ea14261d51616451',1,'GpgFrontend::GlobalSettingStation']]], + ['_7egpgcontext_1432',['~GpgContext',['../classGpgFrontend_1_1GpgContext.html#ae89dee551354c1541337881898832725',1,'GpgFrontend::GpgContext']]], + ['_7egpgfrontendapplication_1433',['~GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a32f0e7dda69f7b1e3cc869340736c590',1,'GpgFrontend::UI::GpgFrontendApplication']]], + ['_7egpgkey_1434',['~GpgKey',['../classGpgFrontend_1_1GpgKey.html#a1e9223bb1ad8fbb4e769680de39b3697',1,'GpgFrontend::GpgKey']]], + ['_7egpgkeysignature_1435',['~GpgKeySignature',['../classGpgFrontend_1_1GpgKeySignature.html#ab4d7044f4e1ddcf0ae0d28be43f0fcb3',1,'GpgFrontend::GpgKeySignature']]], + ['_7egpgsignature_1436',['~GpgSignature',['../classGpgFrontend_1_1GpgSignature.html#a44f137a457ac109d145a1cdd8e544e3a',1,'GpgFrontend::GpgSignature']]], + ['_7esettingsobject_1437',['~SettingsObject',['../classGpgFrontend_1_1UI_1_1SettingsObject.html#ae71336d240ace35756d1852a46271f6c',1,'GpgFrontend::UI::SettingsObject']]], + ['_7esingletonfunctionobject_1438',['~SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html#a8296be8c449f88175285186831b995bc',1,'GpgFrontend::SingletonFunctionObject']]], + ['_7etask_1439',['~Task',['../classGpgFrontend_1_1Thread_1_1Task.html#a37766a505662b33ad14672c29e209ea8',1,'GpgFrontend::Thread::Task']]], + ['_7etaskrunner_1440',['~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 3654c71c..815a3f37 100644 --- a/docs/html/search/functions_2.js +++ b/docs/html/search/functions_2.js @@ -1,4 +1,4 @@ var searchData= [ - ['beautify_5ffingerprint_896',['beautify_fingerprint',['../namespaceGpgFrontend.html#ac494a4b0d91e08a70db77a399c9a0f30',1,'GpgFrontend']]] + ['beautify_5ffingerprint_902',['beautify_fingerprint',['../namespaceGpgFrontend.html#ac494a4b0d91e08a70db77a399c9a0f30',1,'GpgFrontend']]] ]; diff --git a/docs/html/search/functions_3.js b/docs/html/search/functions_3.js index c3679338..a2ed962c 100644 --- a/docs/html/search/functions_3.js +++ b/docs/html/search/functions_3.js @@ -1,49 +1,50 @@ var searchData= [ - ['calculatehash_897',['CalculateHash',['../classGpgFrontend_1_1FileOperator.html#a08baef750a723ee709804120a34d19c9',1,'GpgFrontend::FileOperator']]], - ['channelobject_898',['ChannelObject',['../classGpgFrontend_1_1ChannelObject.html#aedbf32eddc701e521bd8e790ef208da0',1,'GpgFrontend::ChannelObject::ChannelObject() noexcept'],['../classGpgFrontend_1_1ChannelObject.html#a68ad2a19339e3cd50626fe0eaad17ccd',1,'GpgFrontend::ChannelObject::ChannelObject(int channel)']]], - ['check_899',['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_5fbinary_5fchacksum_900',['check_binary_chacksum',['../classGpgFrontend_1_1GpgContext.html#a76fba43d1439c7811e1a9424d0c16d40',1,'GpgFrontend::GpgContext']]], - ['check_5femail_5faddress_901',['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_902',['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_903',['check_gpg_error_2_err_code',['../namespaceGpgFrontend.html#a4edac6df92596ba8eea3a8cdc1173684',1,'GpgFrontend']]], - ['choosepage_904',['ChoosePage',['../classGpgFrontend_1_1UI_1_1ChoosePage.html#ae370e789009be3926410cb749c86907b',1,'GpgFrontend::UI::ChoosePage']]], - ['cleargpgpasswordcache_905',['ClearGpgPasswordCache',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a71eb87ed095754ee1e9fa79125240f3e',1,'GpgFrontend::GpgAdvancedOperator']]], - ['close_5fattachment_5fdock_906',['close_attachment_dock',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a473b679fa0dc3cdf4f6f98d6553fa0ec',1,'GpgFrontend::UI::MainWindow']]], - ['closeevent_907',['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_908',['CloseNoteByClass',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aee4f46e54f29da671838ed232e526700',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['commonutils_909',['CommonUtils',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a78f5c2696152e9326e845c76c94be965',1,'GpgFrontend::UI::CommonUtils']]], - ['conclusionpage_910',['ConclusionPage',['../classGpgFrontend_1_1UI_1_1ConclusionPage.html#afcd98b4735047807d384e6b3d3aea3a7',1,'GpgFrontend::UI::ConclusionPage']]], - ['containsprivatekeys_911',['ContainsPrivateKeys',['../classGpgFrontend_1_1UI_1_1KeyList.html#a20c4a242f49123bd64982952fdad08e9',1,'GpgFrontend::UI::KeyList']]], - ['contextmenuevent_912',['contextMenuEvent',['../classGpgFrontend_1_1UI_1_1KeyList.html#a82da61a76a08023b2ddbe2a6869f4190',1,'GpgFrontend::UI::KeyList::contextMenuEvent()'],['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#ad415e2dd5046c744b650b26c123130ff',1,'GpgFrontend::UI::KeyPairSubkeyTab::contextMenuEvent()'],['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a35d0b436cf13fa127dbba5b12f8f9144',1,'GpgFrontend::UI::KeyPairUIDTab::contextMenuEvent()'],['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#a8cbd6e448e187260730ab8301ad4892e',1,'GpgFrontend::UI::KeyserverTab::contextMenuEvent()']]], - ['copy_913',['Copy',['../classGpgFrontend_1_1GpgKey.html#ac90afba6a5aec0bc2c0f1e01de417ec8',1,'GpgFrontend::GpgKey']]], - ['create_5factions_914',['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_915',['create_attachment_dock',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a92a6d8d46e197e25eaacc3ad7ed289ab',1,'GpgFrontend::UI::MainWindow']]], - ['create_5fbasic_5finfo_5fgroup_5fbox_916',['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_917',['create_button',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a4c5d8a43fd8a6f1c217d83694dcc689c',1,'GpgFrontend::UI::KeyServerImportDialog']]], - ['create_5fbutton_5fbox_918',['create_button_box',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a9f5912ff99e3820d5fa6a58ed14a70c8',1,'GpgFrontend::UI::KeyImportDetailDialog']]], - ['create_5fcombobox_919',['create_comboBox',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ab9e2fe38d54c0f0d3d73907300faa513',1,'GpgFrontend::UI::KeyServerImportDialog']]], - ['create_5fdock_5fwindows_920',['create_dock_windows',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a04668246525874760f47a340b4b7d8de',1,'GpgFrontend::UI::MainWindow']]], - ['create_5fgeneral_5finfo_5fbox_921',['create_general_info_box',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#af88ee416b2227ce847a3b8123a23ce24',1,'GpgFrontend::UI::KeyImportDetailDialog']]], - ['create_5fkey_5finfo_5fgrid_922',['create_key_info_grid',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#a25b96a986a009d35847f94719ec327c1',1,'GpgFrontend::UI::VerifyKeyDetailBox']]], - ['create_5fkey_5fusage_5fgroup_5fbox_923',['create_key_usage_group_box',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aa24064a5f585b23d71e1036958f31d7d',1,'GpgFrontend::UI::SubkeyGenerateDialog::create_key_usage_group_box()'],['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a8e6554b47e0dd6c2025ccb0d1d0cb658',1,'GpgFrontend::UI::KeyGenDialog::create_key_usage_group_box()']]], - ['create_5fkeys_5ftable_924',['create_keys_table',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a9e37a653a982e671977d2101b72ae3b6',1,'GpgFrontend::UI::KeyImportDetailDialog::create_keys_table()'],['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a6f006d4702885fb41317d10d654dfa3c',1,'GpgFrontend::UI::KeyServerImportDialog::create_keys_table()']]], - ['create_5fmanage_5fuid_5fmenu_925',['create_manage_uid_menu',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a5c029e55323d54aa2306267cea1809ea',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['create_5fmenus_926',['create_menus',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9fbd8a2f5b2b5869276db83a4ad20216',1,'GpgFrontend::UI::MainWindow::create_menus()'],['../classGpgFrontend_1_1UI_1_1KeyMgmt.html#a6ee90b63414038e9f840933a5b2c5e46',1,'GpgFrontend::UI::KeyMgmt::create_menus()']]], - ['create_5fpopup_5fmenu_927',['create_popup_menu',['../classGpgFrontend_1_1UI_1_1FilePage.html#a73e4b62f4926b1aeb3f2183a1d05d871',1,'GpgFrontend::UI::FilePage']]], - ['create_5fsign_5flist_928',['create_sign_list',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a32dc14242d88ca168ae71e9a895d2b29',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['create_5fsign_5fpopup_5fmenu_929',['create_sign_popup_menu',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a7653654c81149c48e7e4d5f0c00c360f',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['create_5fstatus_5fbar_930',['create_status_bar',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1ab1f3f57f9969447491e63f54420585',1,'GpgFrontend::UI::MainWindow']]], - ['create_5fsubkey_5flist_931',['create_subkey_list',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a0503508ce7e11f497a05cdf6f536a253',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], - ['create_5fsubkey_5fopera_5fmenu_932',['create_subkey_opera_menu',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a324446276f111be455773381ee8b6739',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], - ['create_5ftool_5fbars_933',['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_934',['create_uid_list',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a0511f5714548920cf3563306536d0bd7',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['create_5fuid_5fpopup_5fmenu_935',['create_uid_popup_menu',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a2a87d3ed720a57a5d96a108c7a9827d7',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['createinstance_936',['CreateInstance',['../classGpgFrontend_1_1SingletonFunctionObject.html#a083807ff8cec58dc0aa732844edaf518',1,'GpgFrontend::SingletonFunctionObject']]], - ['createoperamenu_937',['CreateOperaMenu',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a4dcec352e412afe5c5491f941495090f',1,'GpgFrontend::UI::KeyPairOperaTab']]], - ['ctxchecktask_938',['CtxCheckTask',['../classGpgFrontend_1_1Thread_1_1CtxCheckTask.html#a9d5f0969bcedc5687e0a50ed3b36a869',1,'GpgFrontend::Thread::CtxCheckTask']]], - ['curfilepage_939',['CurFilePage',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa30daf558cb85bbdcad55a805a106109',1,'GpgFrontend::UI::TextEdit']]], - ['currentversionreleased_940',['CurrentVersionReleased',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a43663cd2d086299a0f0304f5bde9c663',1,'GpgFrontend::UI::SoftwareVersion']]], - ['curtextpage_941',['CurTextPage',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a7aa1230fbf796225bd6b83d381e11a3b',1,'GpgFrontend::UI::TextEdit']]], - ['custom_5fpassphrase_5fcb_942',['custom_passphrase_cb',['../classGpgFrontend_1_1GpgContext.html#af46f09a4f5c77429c3e782b551812ec2',1,'GpgFrontend::GpgContext']]] + ['cachemanager_903',['CacheManager',['../classGpgFrontend_1_1CacheManager.html#a311ae4d0cc4f4d9425b44789aea6090a',1,'GpgFrontend::CacheManager']]], + ['calculatehash_904',['CalculateHash',['../classGpgFrontend_1_1FileOperator.html#a08baef750a723ee709804120a34d19c9',1,'GpgFrontend::FileOperator']]], + ['channelobject_905',['ChannelObject',['../classGpgFrontend_1_1ChannelObject.html#aedbf32eddc701e521bd8e790ef208da0',1,'GpgFrontend::ChannelObject::ChannelObject() noexcept'],['../classGpgFrontend_1_1ChannelObject.html#a68ad2a19339e3cd50626fe0eaad17ccd',1,'GpgFrontend::ChannelObject::ChannelObject(int channel)']]], + ['check_906',['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_5fbinary_5fchacksum_907',['check_binary_chacksum',['../classGpgFrontend_1_1GpgContext.html#a76fba43d1439c7811e1a9424d0c16d40',1,'GpgFrontend::GpgContext']]], + ['check_5femail_5faddress_908',['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_909',['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_910',['check_gpg_error_2_err_code',['../namespaceGpgFrontend.html#a4edac6df92596ba8eea3a8cdc1173684',1,'GpgFrontend']]], + ['choosepage_911',['ChoosePage',['../classGpgFrontend_1_1UI_1_1ChoosePage.html#ae370e789009be3926410cb749c86907b',1,'GpgFrontend::UI::ChoosePage']]], + ['cleargpgpasswordcache_912',['ClearGpgPasswordCache',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a71eb87ed095754ee1e9fa79125240f3e',1,'GpgFrontend::GpgAdvancedOperator']]], + ['close_5fattachment_5fdock_913',['close_attachment_dock',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a473b679fa0dc3cdf4f6f98d6553fa0ec',1,'GpgFrontend::UI::MainWindow']]], + ['closeevent_914',['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_915',['CloseNoteByClass',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aee4f46e54f29da671838ed232e526700',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['commonutils_916',['CommonUtils',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a78f5c2696152e9326e845c76c94be965',1,'GpgFrontend::UI::CommonUtils']]], + ['conclusionpage_917',['ConclusionPage',['../classGpgFrontend_1_1UI_1_1ConclusionPage.html#afcd98b4735047807d384e6b3d3aea3a7',1,'GpgFrontend::UI::ConclusionPage']]], + ['containsprivatekeys_918',['ContainsPrivateKeys',['../classGpgFrontend_1_1UI_1_1KeyList.html#a20c4a242f49123bd64982952fdad08e9',1,'GpgFrontend::UI::KeyList']]], + ['contextmenuevent_919',['contextMenuEvent',['../classGpgFrontend_1_1UI_1_1KeyList.html#a82da61a76a08023b2ddbe2a6869f4190',1,'GpgFrontend::UI::KeyList::contextMenuEvent()'],['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#ad415e2dd5046c744b650b26c123130ff',1,'GpgFrontend::UI::KeyPairSubkeyTab::contextMenuEvent()'],['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a35d0b436cf13fa127dbba5b12f8f9144',1,'GpgFrontend::UI::KeyPairUIDTab::contextMenuEvent()'],['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#a8cbd6e448e187260730ab8301ad4892e',1,'GpgFrontend::UI::KeyserverTab::contextMenuEvent()']]], + ['copy_920',['Copy',['../classGpgFrontend_1_1GpgKey.html#ac90afba6a5aec0bc2c0f1e01de417ec8',1,'GpgFrontend::GpgKey']]], + ['create_5factions_921',['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_922',['create_attachment_dock',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a92a6d8d46e197e25eaacc3ad7ed289ab',1,'GpgFrontend::UI::MainWindow']]], + ['create_5fbasic_5finfo_5fgroup_5fbox_923',['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_924',['create_button',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a4c5d8a43fd8a6f1c217d83694dcc689c',1,'GpgFrontend::UI::KeyServerImportDialog']]], + ['create_5fbutton_5fbox_925',['create_button_box',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a9f5912ff99e3820d5fa6a58ed14a70c8',1,'GpgFrontend::UI::KeyImportDetailDialog']]], + ['create_5fcombobox_926',['create_comboBox',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ab9e2fe38d54c0f0d3d73907300faa513',1,'GpgFrontend::UI::KeyServerImportDialog']]], + ['create_5fdock_5fwindows_927',['create_dock_windows',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a04668246525874760f47a340b4b7d8de',1,'GpgFrontend::UI::MainWindow']]], + ['create_5fgeneral_5finfo_5fbox_928',['create_general_info_box',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#af88ee416b2227ce847a3b8123a23ce24',1,'GpgFrontend::UI::KeyImportDetailDialog']]], + ['create_5fkey_5finfo_5fgrid_929',['create_key_info_grid',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#a25b96a986a009d35847f94719ec327c1',1,'GpgFrontend::UI::VerifyKeyDetailBox']]], + ['create_5fkey_5fusage_5fgroup_5fbox_930',['create_key_usage_group_box',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aa24064a5f585b23d71e1036958f31d7d',1,'GpgFrontend::UI::SubkeyGenerateDialog::create_key_usage_group_box()'],['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a8e6554b47e0dd6c2025ccb0d1d0cb658',1,'GpgFrontend::UI::KeyGenDialog::create_key_usage_group_box()']]], + ['create_5fkeys_5ftable_931',['create_keys_table',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a9e37a653a982e671977d2101b72ae3b6',1,'GpgFrontend::UI::KeyImportDetailDialog::create_keys_table()'],['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a6f006d4702885fb41317d10d654dfa3c',1,'GpgFrontend::UI::KeyServerImportDialog::create_keys_table()']]], + ['create_5fmanage_5fuid_5fmenu_932',['create_manage_uid_menu',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a5c029e55323d54aa2306267cea1809ea',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['create_5fmenus_933',['create_menus',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9fbd8a2f5b2b5869276db83a4ad20216',1,'GpgFrontend::UI::MainWindow::create_menus()'],['../classGpgFrontend_1_1UI_1_1KeyMgmt.html#a6ee90b63414038e9f840933a5b2c5e46',1,'GpgFrontend::UI::KeyMgmt::create_menus()']]], + ['create_5fpopup_5fmenu_934',['create_popup_menu',['../classGpgFrontend_1_1UI_1_1FilePage.html#a73e4b62f4926b1aeb3f2183a1d05d871',1,'GpgFrontend::UI::FilePage']]], + ['create_5fsign_5flist_935',['create_sign_list',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a32dc14242d88ca168ae71e9a895d2b29',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['create_5fsign_5fpopup_5fmenu_936',['create_sign_popup_menu',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a7653654c81149c48e7e4d5f0c00c360f',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['create_5fstatus_5fbar_937',['create_status_bar',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1ab1f3f57f9969447491e63f54420585',1,'GpgFrontend::UI::MainWindow']]], + ['create_5fsubkey_5flist_938',['create_subkey_list',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a0503508ce7e11f497a05cdf6f536a253',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], + ['create_5fsubkey_5fopera_5fmenu_939',['create_subkey_opera_menu',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a324446276f111be455773381ee8b6739',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], + ['create_5ftool_5fbars_940',['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_941',['create_uid_list',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a0511f5714548920cf3563306536d0bd7',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['create_5fuid_5fpopup_5fmenu_942',['create_uid_popup_menu',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a2a87d3ed720a57a5d96a108c7a9827d7',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['createinstance_943',['CreateInstance',['../classGpgFrontend_1_1SingletonFunctionObject.html#a083807ff8cec58dc0aa732844edaf518',1,'GpgFrontend::SingletonFunctionObject']]], + ['createoperamenu_944',['CreateOperaMenu',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a4dcec352e412afe5c5491f941495090f',1,'GpgFrontend::UI::KeyPairOperaTab']]], + ['ctxchecktask_945',['CtxCheckTask',['../classGpgFrontend_1_1Thread_1_1CtxCheckTask.html#a9d5f0969bcedc5687e0a50ed3b36a869',1,'GpgFrontend::Thread::CtxCheckTask']]], + ['curfilepage_946',['CurFilePage',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa30daf558cb85bbdcad55a805a106109',1,'GpgFrontend::UI::TextEdit']]], + ['currentversionreleased_947',['CurrentVersionReleased',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a43663cd2d086299a0f0304f5bde9c663',1,'GpgFrontend::UI::SoftwareVersion']]], + ['curtextpage_948',['CurTextPage',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a7aa1230fbf796225bd6b83d381e11a3b',1,'GpgFrontend::UI::TextEdit']]], + ['custom_5fpassphrase_5fcb_949',['custom_passphrase_cb',['../classGpgFrontend_1_1GpgContext.html#af46f09a4f5c77429c3e782b551812ec2',1,'GpgFrontend::GpgContext']]] ]; diff --git a/docs/html/search/functions_4.js b/docs/html/search/functions_4.js index 5149aa53..3c882b1b 100644 --- a/docs/html/search/functions_4.js +++ b/docs/html/search/functions_4.js @@ -1,17 +1,17 @@ var searchData= [ - ['dataobjectoperator_943',['DataObjectOperator',['../classGpgFrontend_1_1DataObjectOperator.html#a3a8ae5c36fec01d0d5c3e5f9aed457a6',1,'GpgFrontend::DataObjectOperator']]], - ['decrypt_944',['Decrypt',['../classGpgFrontend_1_1GpgBasicOperator.html#a9ea9e81194917e08f46eb657281b7953',1,'GpgFrontend::GpgBasicOperator']]], - ['decryptfile_945',['DecryptFile',['../classGpgFrontend_1_1GpgFileOpera.html#a74eb3ba532a236d8ad284b41265b0ccd',1,'GpgFrontend::GpgFileOpera']]], - ['decryptverify_946',['DecryptVerify',['../classGpgFrontend_1_1GpgBasicOperator.html#a11845a9a3ea2941e14faa9130f0ac9ef',1,'GpgFrontend::GpgBasicOperator']]], - ['decryptverifyfile_947',['DecryptVerifyFile',['../classGpgFrontend_1_1GpgFileOpera.html#a90949b4e9e6116784260cd0e416551db',1,'GpgFrontend::GpgFileOpera']]], - ['delete_5fkeys_5fwith_5fwarning_948',['delete_keys_with_warning',['../classGpgFrontend_1_1UI_1_1KeyMgmt.html#a0b139ae0d4baa234932cf228e94abd6b',1,'GpgFrontend::UI::KeyMgmt']]], - ['delete_5fwidgets_5fin_5flayout_949',['delete_widgets_in_layout',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a852c1fe10c7d3153a2146bcea4dbe9ad',1,'GpgFrontend::UI::InfoBoardWidget']]], - ['deletekey_950',['DeleteKey',['../classGpgFrontend_1_1GpgKeyOpera.html#a151c47b997951e9162f8b036c3cb15e0',1,'GpgFrontend::GpgKeyOpera']]], - ['deletekeys_951',['DeleteKeys',['../classGpgFrontend_1_1GpgKeyOpera.html#a8a06d0f7a600d4428359b653a68f717e',1,'GpgFrontend::GpgKeyOpera']]], - ['detect_952',['Detect',['../classGpgFrontend_1_1CharsetOperator.html#a5a444a0fbd508f6af6a56f4151c21c1f',1,'GpgFrontend::CharsetOperator']]], - ['detect_5fcr_5flf_953',['detect_cr_lf',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#af08be6a1eaec76403b12dc6e42df546c',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['detect_5fencoding_954',['detect_encoding',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a14b7431a786ce59e98576e3680cb9a58',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['dragenterevent_955',['dragEnterEvent',['../classGpgFrontend_1_1UI_1_1KeyList.html#ae3ad87e114432b0d659a0297d520d72f',1,'GpgFrontend::UI::KeyList']]], - ['dropevent_956',['dropEvent',['../classGpgFrontend_1_1UI_1_1KeyList.html#a23ebf79be8de637560d41afd0433c35f',1,'GpgFrontend::UI::KeyList']]] + ['dataobjectoperator_950',['DataObjectOperator',['../classGpgFrontend_1_1DataObjectOperator.html#a3a8ae5c36fec01d0d5c3e5f9aed457a6',1,'GpgFrontend::DataObjectOperator']]], + ['decrypt_951',['Decrypt',['../classGpgFrontend_1_1GpgBasicOperator.html#a9ea9e81194917e08f46eb657281b7953',1,'GpgFrontend::GpgBasicOperator']]], + ['decryptfile_952',['DecryptFile',['../classGpgFrontend_1_1GpgFileOpera.html#a74eb3ba532a236d8ad284b41265b0ccd',1,'GpgFrontend::GpgFileOpera']]], + ['decryptverify_953',['DecryptVerify',['../classGpgFrontend_1_1GpgBasicOperator.html#a11845a9a3ea2941e14faa9130f0ac9ef',1,'GpgFrontend::GpgBasicOperator']]], + ['decryptverifyfile_954',['DecryptVerifyFile',['../classGpgFrontend_1_1GpgFileOpera.html#a90949b4e9e6116784260cd0e416551db',1,'GpgFrontend::GpgFileOpera']]], + ['delete_5fkeys_5fwith_5fwarning_955',['delete_keys_with_warning',['../classGpgFrontend_1_1UI_1_1KeyMgmt.html#a0b139ae0d4baa234932cf228e94abd6b',1,'GpgFrontend::UI::KeyMgmt']]], + ['delete_5fwidgets_5fin_5flayout_956',['delete_widgets_in_layout',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a852c1fe10c7d3153a2146bcea4dbe9ad',1,'GpgFrontend::UI::InfoBoardWidget']]], + ['deletekey_957',['DeleteKey',['../classGpgFrontend_1_1GpgKeyOpera.html#a151c47b997951e9162f8b036c3cb15e0',1,'GpgFrontend::GpgKeyOpera']]], + ['deletekeys_958',['DeleteKeys',['../classGpgFrontend_1_1GpgKeyOpera.html#a8a06d0f7a600d4428359b653a68f717e',1,'GpgFrontend::GpgKeyOpera']]], + ['detect_959',['Detect',['../classGpgFrontend_1_1CharsetOperator.html#a5a444a0fbd508f6af6a56f4151c21c1f',1,'GpgFrontend::CharsetOperator']]], + ['detect_5fcr_5flf_960',['detect_cr_lf',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#af08be6a1eaec76403b12dc6e42df546c',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['detect_5fencoding_961',['detect_encoding',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a14b7431a786ce59e98576e3680cb9a58',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['dragenterevent_962',['dragEnterEvent',['../classGpgFrontend_1_1UI_1_1KeyList.html#ae3ad87e114432b0d659a0297d520d72f',1,'GpgFrontend::UI::KeyList']]], + ['dropevent_963',['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 60e8c7b3..5f3a9bce 100644 --- a/docs/html/search/functions_5.js +++ b/docs/html/search/functions_5.js @@ -1,17 +1,17 @@ var searchData= [ - ['encrypt_957',['Encrypt',['../classGpgFrontend_1_1GpgBasicOperator.html#a32e1eac6bb0f322588ae75ae36a9884a',1,'GpgFrontend::GpgBasicOperator']]], - ['encryptfile_958',['EncryptFile',['../classGpgFrontend_1_1GpgFileOpera.html#a234d939ae0b2c3f799dd01130fad9379',1,'GpgFrontend::GpgFileOpera']]], - ['encryptfilesymmetric_959',['EncryptFileSymmetric',['../classGpgFrontend_1_1GpgFileOpera.html#a826efca057afb07157453b3b9e267b0f',1,'GpgFrontend::GpgFileOpera']]], - ['encryptsign_960',['EncryptSign',['../classGpgFrontend_1_1GpgBasicOperator.html#a08906cf2bc2ddad8489438610f388f8a',1,'GpgFrontend::GpgBasicOperator']]], - ['encryptsignfile_961',['EncryptSignFile',['../classGpgFrontend_1_1GpgFileOpera.html#a6353e1688b113e5746aced6aa7f3876e',1,'GpgFrontend::GpgFileOpera']]], - ['encryptsymmetric_962',['EncryptSymmetric',['../classGpgFrontend_1_1GpgBasicOperator.html#a8f4ef57e941a066ad9d070eee51e2073',1,'GpgFrontend::GpgBasicOperator']]], - ['execute_963',['Execute',['../classGpgFrontend_1_1GpgCommandExecutor.html#affa984ec4c2982c527761289f73c1ab4',1,'GpgFrontend::GpgCommandExecutor']]], - ['exportallkeys_964',['ExportAllKeys',['../classGpgFrontend_1_1GpgKeyImportExporter.html#ae7d61a8c39ef7e7f1562895dbf108e68',1,'GpgFrontend::GpgKeyImportExporter']]], - ['exportkey_965',['ExportKey',['../classGpgFrontend_1_1GpgKeyImportExporter.html#a51cb18aa7302d7a48ccd1ee17f060391',1,'GpgFrontend::GpgKeyImportExporter']]], - ['exportkeyopenssh_966',['ExportKeyOpenSSH',['../classGpgFrontend_1_1GpgKeyImportExporter.html#aa0a73314ef94f397e2ef53d40abc9731',1,'GpgFrontend::GpgKeyImportExporter']]], - ['exportkeypackagedialog_967',['ExportKeyPackageDialog',['../classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html#a7d1899302ef743671c3002d04f6c9dd8',1,'GpgFrontend::UI::ExportKeyPackageDialog']]], - ['exportkeys_968',['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_969',['ExportSecretKey',['../classGpgFrontend_1_1GpgKeyImportExporter.html#a6a5e8d642ac5a3e98799af6495ef590b',1,'GpgFrontend::GpgKeyImportExporter']]], - ['exportsecretkeyshortest_970',['ExportSecretKeyShortest',['../classGpgFrontend_1_1GpgKeyImportExporter.html#abf7c0442549ae8602e1249cdf0da55df',1,'GpgFrontend::GpgKeyImportExporter']]] + ['encrypt_964',['Encrypt',['../classGpgFrontend_1_1GpgBasicOperator.html#a32e1eac6bb0f322588ae75ae36a9884a',1,'GpgFrontend::GpgBasicOperator']]], + ['encryptfile_965',['EncryptFile',['../classGpgFrontend_1_1GpgFileOpera.html#a234d939ae0b2c3f799dd01130fad9379',1,'GpgFrontend::GpgFileOpera']]], + ['encryptfilesymmetric_966',['EncryptFileSymmetric',['../classGpgFrontend_1_1GpgFileOpera.html#a826efca057afb07157453b3b9e267b0f',1,'GpgFrontend::GpgFileOpera']]], + ['encryptsign_967',['EncryptSign',['../classGpgFrontend_1_1GpgBasicOperator.html#a08906cf2bc2ddad8489438610f388f8a',1,'GpgFrontend::GpgBasicOperator']]], + ['encryptsignfile_968',['EncryptSignFile',['../classGpgFrontend_1_1GpgFileOpera.html#a6353e1688b113e5746aced6aa7f3876e',1,'GpgFrontend::GpgFileOpera']]], + ['encryptsymmetric_969',['EncryptSymmetric',['../classGpgFrontend_1_1GpgBasicOperator.html#a8f4ef57e941a066ad9d070eee51e2073',1,'GpgFrontend::GpgBasicOperator']]], + ['execute_970',['Execute',['../classGpgFrontend_1_1GpgCommandExecutor.html#affa984ec4c2982c527761289f73c1ab4',1,'GpgFrontend::GpgCommandExecutor']]], + ['exportallkeys_971',['ExportAllKeys',['../classGpgFrontend_1_1GpgKeyImportExporter.html#ae7d61a8c39ef7e7f1562895dbf108e68',1,'GpgFrontend::GpgKeyImportExporter']]], + ['exportkey_972',['ExportKey',['../classGpgFrontend_1_1GpgKeyImportExporter.html#a51cb18aa7302d7a48ccd1ee17f060391',1,'GpgFrontend::GpgKeyImportExporter']]], + ['exportkeyopenssh_973',['ExportKeyOpenSSH',['../classGpgFrontend_1_1GpgKeyImportExporter.html#aa0a73314ef94f397e2ef53d40abc9731',1,'GpgFrontend::GpgKeyImportExporter']]], + ['exportkeypackagedialog_974',['ExportKeyPackageDialog',['../classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html#a7d1899302ef743671c3002d04f6c9dd8',1,'GpgFrontend::UI::ExportKeyPackageDialog']]], + ['exportkeys_975',['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_976',['ExportSecretKey',['../classGpgFrontend_1_1GpgKeyImportExporter.html#a6a5e8d642ac5a3e98799af6495ef590b',1,'GpgFrontend::GpgKeyImportExporter']]], + ['exportsecretkeyshortest_977',['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 70461324..95554e44 100644 --- a/docs/html/search/functions_6.js +++ b/docs/html/search/functions_6.js @@ -1,9 +1,9 @@ var searchData= [ - ['fetchkey_971',['FetchKey',['../classGpgFrontend_1_1GpgKeyGetter.html#afe78ac470287d70e7df51aae327b9f54',1,'GpgFrontend::GpgKeyGetter']]], - ['filepage_972',['FilePage',['../classGpgFrontend_1_1UI_1_1FilePage.html#a48fb14a3296f19f9b1c3b9b48c3a1bf3',1,'GpgFrontend::UI::FilePage']]], - ['findobjectinchannel_973',['FindObjectInChannel',['../classGpgFrontend_1_1SingletonStorage.html#a4c16c32e549494e394a0ddd859890a02',1,'GpgFrontend::SingletonStorage']]], - ['findwidget_974',['FindWidget',['../classGpgFrontend_1_1UI_1_1FindWidget.html#a495f281e72e5ddc10c8e944183b96dd9',1,'GpgFrontend::UI::FindWidget']]], - ['flushkeycache_975',['FlushKeyCache',['../classGpgFrontend_1_1GpgKeyGetter.html#ad9a902ea54566d4583304b072c4add51',1,'GpgFrontend::GpgKeyGetter']]], - ['free_5fheap_5fptr_976',['free_heap_ptr',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a17252d07835dab3772381639ec8473ea',1,'GpgFrontend::Thread::Task::DataObject']]] + ['fetchkey_978',['FetchKey',['../classGpgFrontend_1_1GpgKeyGetter.html#afe78ac470287d70e7df51aae327b9f54',1,'GpgFrontend::GpgKeyGetter']]], + ['filepage_979',['FilePage',['../classGpgFrontend_1_1UI_1_1FilePage.html#a48fb14a3296f19f9b1c3b9b48c3a1bf3',1,'GpgFrontend::UI::FilePage']]], + ['findobjectinchannel_980',['FindObjectInChannel',['../classGpgFrontend_1_1SingletonStorage.html#a4c16c32e549494e394a0ddd859890a02',1,'GpgFrontend::SingletonStorage']]], + ['findwidget_981',['FindWidget',['../classGpgFrontend_1_1UI_1_1FindWidget.html#a495f281e72e5ddc10c8e944183b96dd9',1,'GpgFrontend::UI::FindWidget']]], + ['flushkeycache_982',['FlushKeyCache',['../classGpgFrontend_1_1GpgKeyGetter.html#ad9a902ea54566d4583304b072c4add51',1,'GpgFrontend::GpgKeyGetter']]], + ['free_5fheap_5fptr_983',['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 0f078d5c..b9eaac05 100644 --- a/docs/html/search/functions_7.js +++ b/docs/html/search/functions_7.js @@ -1,135 +1,136 @@ var searchData= [ - ['generaldialog_977',['GeneralDialog',['../classGpgFrontend_1_1UI_1_1GeneralDialog.html#ac9de4c49668ffaeb6916c64f878a202c',1,'GpgFrontend::UI::GeneralDialog']]], - ['generalmainwindow_978',['GeneralMainWindow',['../classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a62b24183ebf9da18852084879bcb1013',1,'GpgFrontend::UI::GeneralMainWindow']]], - ['generaltab_979',['GeneralTab',['../classGpgFrontend_1_1UI_1_1GeneralTab.html#a214079dfbacdc6898146c8468611cf0c',1,'GpgFrontend::UI::GeneralTab']]], - ['generate_980',['Generate',['../classGpgFrontend_1_1PassphraseGenerator.html#a8b4ee1083343fba6d947b85cd66079b8',1,'GpgFrontend::PassphraseGenerator']]], - ['generate_5fkey_5fpackage_5fname_981',['generate_key_package_name',['../classGpgFrontend_1_1KeyPackageOperator.html#a825d987dacd8a99d9d87729e1861a152',1,'GpgFrontend::KeyPackageOperator']]], - ['generate_5fuuid_982',['generate_uuid',['../classGpgFrontend_1_1Thread_1_1Task.html#a96d087abb7cf99d16f778f1a93b4f9e5',1,'GpgFrontend::Thread::Task']]], - ['generatekey_983',['GenerateKey',['../classGpgFrontend_1_1GpgKeyOpera.html#a4cc3ac91613164d7dc61a016a2b4caea',1,'GpgFrontend::GpgKeyOpera']]], - ['generatekeypackage_984',['GenerateKeyPackage',['../classGpgFrontend_1_1KeyPackageOperator.html#ade02f022e405e98377343c4667c206e9',1,'GpgFrontend::KeyPackageOperator']]], - ['generatekeypackagename_985',['GenerateKeyPackageName',['../classGpgFrontend_1_1KeyPackageOperator.html#ae90b362a32b6f6014cda1dc232bd3f0e',1,'GpgFrontend::KeyPackageOperator']]], - ['generatepassphrase_986',['GeneratePassphrase',['../classGpgFrontend_1_1KeyPackageOperator.html#a6d9cf022a1e0cf54c061495f59c1b4b9',1,'GpgFrontend::KeyPackageOperator']]], - ['generaterevokecert_987',['GenerateRevokeCert',['../classGpgFrontend_1_1GpgKeyOpera.html#a91a9a9f24f6b620ea7b906c529e3d9a4',1,'GpgFrontend::GpgKeyOpera']]], - ['generatesubkey_988',['GenerateSubkey',['../classGpgFrontend_1_1GpgKeyOpera.html#a882d99e8407cc22fb8b6e61c531fbe85',1,'GpgFrontend::GpgKeyOpera']]], - ['genkeyinfo_989',['GenKeyInfo',['../classGpgFrontend_1_1GenKeyInfo.html#a34eca1662ba8d4645751f3ee66582b04',1,'GpgFrontend::GenKeyInfo']]], - ['get_5ffile_5fextension_990',['get_file_extension',['../namespaceGpgFrontend.html#acff2cf5dd5b112b324fa6574ee935f79',1,'GpgFrontend']]], - ['get_5fheap_5fptr_991',['get_heap_ptr',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a0e1ab5e5bf5ef647a30a5ee2884ac63a',1,'GpgFrontend::Thread::Task::DataObject']]], - ['get_5fkey_5fin_5fcache_992',['get_key_in_cache',['../classGpgFrontend_1_1GpgKeyGetter.html#ab5196ef4ed5323fc2af70abf801ea260',1,'GpgFrontend::GpgKeyGetter']]], - ['get_5fonly_5ffile_5fname_5fwith_5fpath_993',['get_only_file_name_with_path',['../namespaceGpgFrontend.html#a5a2f5fc1ad3de55e41a1b7a388821328',1,'GpgFrontend']]], - ['get_5frestart_5fneeded_994',['get_restart_needed',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a5e95f62dac9fba1ead6ec69c145923db',1,'GpgFrontend::UI::MainWindow::get_restart_needed()'],['../classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html#aaf89f54f2124617e836d31df29066529',1,'GpgFrontend::UI::GnuPGControllerDialog::get_restart_needed()'],['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#a0d66e360dfbcf79403351459721c3981',1,'GpgFrontend::UI::SettingsDialog::get_restart_needed()']]], - ['get_5fselected_5fsubkey_995',['get_selected_subkey',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#aedc5f77d6bf9b780b96552a43b323feb',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], - ['get_5fsign_5fselected_996',['get_sign_selected',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a2d7c328d726436061f19a287e481268d',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['get_5fstatus_5fstring_997',['get_status_string',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#ae682853c7eccfd3a6be43765f162f5a4',1,'GpgFrontend::UI::KeyImportDetailDialog']]], - ['get_5fuid_5fchecked_998',['get_uid_checked',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a7898b6fa328bfbc55ee2721bca4b2af1',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['get_5fuid_5fselected_999',['get_uid_selected',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a161bc9787be40a32f487c79faaeb54bf',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['getalgo_1000',['GetAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#a6a65ba347156373b6cf98eb8e851d28d',1,'GpgFrontend::GenKeyInfo']]], - ['getallchannelid_1001',['GetAllChannelId',['../classGpgFrontend_1_1SingletonFunctionObject.html#a5f2f0474871971f86ff91fb6a2408621',1,'GpgFrontend::SingletonFunctionObject::GetAllChannelId()'],['../classGpgFrontend_1_1SingletonStorage.html#a3f09424ebdc097fbdab77564a7d723ea',1,'GpgFrontend::SingletonStorage::GetAllChannelId()']]], - ['getallprivatekeys_1002',['GetAllPrivateKeys',['../classGpgFrontend_1_1UI_1_1KeyList.html#a7ead8845ceb7c9310e3f4742251e1d87',1,'GpgFrontend::UI::KeyList']]], - ['getappdir_1003',['GetAppDir',['../classGpgFrontend_1_1GlobalSettingStation.html#ae9d1da3d01c4a834120968636596c3c3',1,'GpgFrontend::GlobalSettingStation']]], - ['getbrowser_1004',['GetBrowser',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a92c31eea47b42be28c86431384b27846',1,'GpgFrontend::UI::HelpPage']]], - ['getcertsdir_1005',['GetCertsDir',['../classGpgFrontend_1_1GlobalSettingStation.html#a385ae4ab6ad5b17742a5405fa693d789',1,'GpgFrontend::GlobalSettingStation']]], - ['getchannel_1006',['GetChannel',['../classGpgFrontend_1_1ChannelObject.html#a0e13a4bff1cfb679f68a3a2590a3b1b8',1,'GpgFrontend::ChannelObject::GetChannel()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#aa99440b9177f5d0c18840f08a40d64b7',1,'GpgFrontend::SingletonFunctionObject::GetChannel()']]], - ['getchecked_1007',['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_1008',['GetCheckedSigners',['../classGpgFrontend_1_1UI_1_1SignersPicker.html#a2e98dcdf647a2e0e6455998b018aed00',1,'GpgFrontend::UI::SignersPicker']]], - ['getcomment_1009',['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_1010',['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_1011',['GetDefaultChannel',['../classGpgFrontend_1_1ChannelObject.html#aece9c525c49900734bc1bebf85b644ef',1,'GpgFrontend::ChannelObject::GetDefaultChannel()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a50e2b3794d6553f4231eaec72d9d0a50',1,'GpgFrontend::SingletonFunctionObject::GetDefaultChannel()']]], - ['getdescription_1012',['GetDescription',['../classGpgFrontend_1_1GpgTOFUInfo.html#a471a08bc906d74699f394e34d2581b78',1,'GpgFrontend::GpgTOFUInfo']]], - ['getemail_1013',['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_1014',['GetEncrCount',['../classGpgFrontend_1_1GpgTOFUInfo.html#abc53f7ca1b737ed1a913ad2f90a346e4',1,'GpgFrontend::GpgTOFUInfo']]], - ['getencrlast_1015',['GetEncrLast',['../classGpgFrontend_1_1GpgTOFUInfo.html#a03f286ac6f16ec6d33eb3dcfd4e3f6d5',1,'GpgFrontend::GpgTOFUInfo']]], - ['getexpiretime_1016',['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_1017',['GetFilePath',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aff81f0f98a399fa55b6b0ebf2230d4cf',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['getfingerprint_1018',['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()']]], - ['getfullid_1019',['GetFullID',['../classGpgFrontend_1_1Thread_1_1Task.html#a3df2340426251e9145e5fe4419937e2a',1,'GpgFrontend::Thread::Task']]], - ['gethashalgo_1020',['GetHashAlgo',['../classGpgFrontend_1_1GpgSignature.html#ace10a3ac7f4dc3888b2ad62157213f1c',1,'GpgFrontend::GpgSignature']]], - ['getid_1021',['GetID',['../classGpgFrontend_1_1GpgSubKey.html#a48d3dfbd3aae9523ffbdb916aad8ad53',1,'GpgFrontend::GpgSubKey']]], - ['getid_1022',['GetId',['../classGpgFrontend_1_1GpgKey.html#a8930f958f3ca1f5566f63e8c2273837e',1,'GpgFrontend::GpgKey']]], - ['getinfo_1023',['GetInfo',['../classGpgFrontend_1_1GpgContext.html#a4a8f6ff37e45979159ab375b2c7d48c3',1,'GpgFrontend::GpgContext']]], - ['getinstance_1024',['GetInstance',['../classGpgFrontend_1_1SingletonFunctionObject.html#a70484d7cfe9f9dcbcd5f8bb749250f36',1,'GpgFrontend::SingletonFunctionObject::GetInstance()'],['../classGpgFrontend_1_1SingletonStorageCollection.html#ac56d19e0d4b99e7b8a86a017721f3db1',1,'GpgFrontend::SingletonStorageCollection::GetInstance()'],['../classGpgFrontend_1_1UI_1_1CommonUtils.html#aed529969f54e39e3f9da14ae6dd00d49',1,'GpgFrontend::UI::CommonUtils::GetInstance()'],['../classGpgFrontend_1_1CoreSignalStation.html#a0c5893909726b919ea733de9906cfb36',1,'GpgFrontend::CoreSignalStation::GetInstance()'],['../classGpgFrontend_1_1UI_1_1SignalStation.html#abe381ce56a7b157a3760b2fd9c3b7419',1,'GpgFrontend::UI::SignalStation::GetInstance()'],['../classGpgFrontend_1_1CoreCommonUtil.html#a8588dfa6ccb57c055f022b13e2da1e7c',1,'GpgFrontend::CoreCommonUtil::GetInstance()'],['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a9b341a1a903cec0c70a6af4bb230905e',1,'GpgFrontend::UI::GpgFrontendApplication::GetInstance()']]], - ['getinvalid_1025',['GetInvalid',['../classGpgFrontend_1_1GpgUID.html#a388ad367d353edd5eeb6e529977c924c',1,'GpgFrontend::GpgUID']]], - ['getkey_1026',['GetKey',['../classGpgFrontend_1_1GpgKeyGetter.html#a94243d09c9418c8ebf0c7cdab4a2b7f1',1,'GpgFrontend::GpgKeyGetter']]], - ['getkeyid_1027',['GetKeyID',['../classGpgFrontend_1_1GpgKeySignature.html#a4277f6deb7c07aaba62fbe8e7867b1fe',1,'GpgFrontend::GpgKeySignature']]], - ['getkeylength_1028',['GetKeyLength',['../classGpgFrontend_1_1GpgSubKey.html#a18d7a2f0a3cee32a123b780f2b8b8708',1,'GpgFrontend::GpgSubKey::GetKeyLength()'],['../classGpgFrontend_1_1GenKeyInfo.html#a4927a9091fa2b2f68f6b60ce78ab2fe9',1,'GpgFrontend::GenKeyInfo::GetKeyLength()']]], - ['getkeys_1029',['GetKeys',['../classGpgFrontend_1_1GpgKeyGetter.html#aa5979c21af58b874b33c203752dcc805',1,'GpgFrontend::GpgKeyGetter']]], - ['getkeyscopy_1030',['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_1031',['GetKeySizeStr',['../classGpgFrontend_1_1GenKeyInfo.html#a0bda4b4161d805582869ec0e56ade07c',1,'GpgFrontend::GenKeyInfo']]], - ['getlastupdatetime_1032',['GetLastUpdateTime',['../classGpgFrontend_1_1GpgKey.html#a3532e20298b642f5d312712fa8a791df',1,'GpgFrontend::GpgKey']]], - ['getlatestversion_1033',['getLatestVersion',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a7329657135624fc42ad80d821e11befe',1,'GpgFrontend::UI::UpdateTab']]], - ['getlocaledir_1034',['GetLocaleDir',['../classGpgFrontend_1_1GlobalSettingStation.html#a0b3780564305e9b210d66ef377c21565',1,'GpgFrontend::GlobalSettingStation']]], - ['getlogdir_1035',['GetLogDir',['../classGpgFrontend_1_1GlobalSettingStation.html#a7da9b08291ef2391892f5c9375b8db23',1,'GpgFrontend::GlobalSettingStation']]], - ['getname_1036',['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_1037',['GetObjectSize',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#aa35e6ad1ef3a5733fb338f3333b5c637',1,'GpgFrontend::Thread::Task::DataObject']]], - ['getownertrust_1038',['GetOwnerTrust',['../classGpgFrontend_1_1GpgKey.html#a3327ad34ff14feb75f3fbfc2bfb7fc44',1,'GpgFrontend::GpgKey']]], - ['getpassphrase_1039',['GetPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#a890ee16ef6088570360a073a6b531c89',1,'GpgFrontend::GenKeyInfo']]], - ['getpolicy_1040',['GetPolicy',['../classGpgFrontend_1_1GpgTOFUInfo.html#a34d1073bb25a8958e70016f3cd6b167f',1,'GpgFrontend::GpgTOFUInfo']]], - ['getprimarykeylength_1041',['GetPrimaryKeyLength',['../classGpgFrontend_1_1GpgKey.html#a5b276fdeb438fe14ec2850d799401be6',1,'GpgFrontend::GpgKey']]], - ['getprivatechecked_1042',['GetPrivateChecked',['../classGpgFrontend_1_1UI_1_1KeyList.html#a81c2e36427371fa6ae6381870b9b5bdd',1,'GpgFrontend::UI::KeyList']]], - ['getprotocol_1043',['GetProtocol',['../classGpgFrontend_1_1GpgKey.html#ad2440a2902c81192d5549fe951ddb130',1,'GpgFrontend::GpgKey']]], - ['getpubkey_1044',['GetPubkey',['../classGpgFrontend_1_1GpgKeyGetter.html#a7a8bc7c0f12a11e108051e4c824fc430',1,'GpgFrontend::GpgKeyGetter']]], - ['getpubkeyalgo_1045',['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_1046',['GetPublicKeyAlgo',['../classGpgFrontend_1_1GpgKey.html#a1c21bc3b1788753f56272ad73052fc5f',1,'GpgFrontend::GpgKey']]], - ['getresourcedir_1047',['GetResourceDir',['../classGpgFrontend_1_1GlobalSettingStation.html#afc1aa3dec55ae4e741f92fce1140a2d0',1,'GpgFrontend::GlobalSettingStation']]], - ['getresultreport_1048',['GetResultReport',['../classGpgFrontend_1_1GpgResultAnalyse.html#aa9e35e573ea4c0ebdbb014d1afbaab9d',1,'GpgFrontend::GpgResultAnalyse']]], - ['getrevoked_1049',['GetRevoked',['../classGpgFrontend_1_1GpgUID.html#a32450fbf22c64cf522e9a090423344a2',1,'GpgFrontend::GpgUID']]], - ['getselected_1050',['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_1051',['GetSelectedKey',['../classGpgFrontend_1_1UI_1_1KeyList.html#ab4368b81402e2468a9e960de8fb7080f',1,'GpgFrontend::UI::KeyList']]], - ['getsequency_1052',['GetSequency',['../classGpgFrontend_1_1Thread_1_1Task.html#a80f47accc0832e3aee686ee2879b431e',1,'GpgFrontend::Thread::Task']]], - ['getsignatures_1053',['GetSignatures',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a2063acf8262e2c600b14ed1948486ac3',1,'GpgFrontend::GpgVerifyResultAnalyse::GetSignatures()'],['../classGpgFrontend_1_1GpgUID.html#af7b5310b319378c30c488277e95ef601',1,'GpgFrontend::GpgUID::GetSignatures()']]], - ['getsigncount_1054',['GetSignCount',['../classGpgFrontend_1_1GpgTOFUInfo.html#a681046a3916d0d0cdcf0852bfa76fdb0',1,'GpgFrontend::GpgTOFUInfo']]], - ['getsigners_1055',['GetSigners',['../classGpgFrontend_1_1GpgBasicOperator.html#a78f37b8d5afd6c0248665a4415f880cf',1,'GpgFrontend::GpgBasicOperator']]], - ['getsignfirst_1056',['GetSignFirst',['../classGpgFrontend_1_1GpgTOFUInfo.html#a788a439b206882c6317162878e2fe0b8',1,'GpgFrontend::GpgTOFUInfo']]], - ['getsignlast_1057',['GetSignLast',['../classGpgFrontend_1_1GpgTOFUInfo.html#a746cbcf731af6b19ade42debbf1e2c8f',1,'GpgFrontend::GpgTOFUInfo']]], - ['getsingletonstorage_1058',['GetSingletonStorage',['../classGpgFrontend_1_1SingletonStorageCollection.html#a6f933390c54b7f55d5ffb4624074725f',1,'GpgFrontend::SingletonStorageCollection']]], - ['getsizechangestep_1059',['GetSizeChangeStep',['../classGpgFrontend_1_1GenKeyInfo.html#ac211a7a615805ae97ff284b46abfeab7',1,'GpgFrontend::GenKeyInfo']]], - ['getstandalonedatabasedir_1060',['GetStandaloneDatabaseDir',['../classGpgFrontend_1_1GlobalSettingStation.html#af484ca46c5df831a9dd76f3a88d66332',1,'GpgFrontend::GlobalSettingStation']]], - ['getstandalonegpgbindir_1061',['GetStandaloneGpgBinDir',['../classGpgFrontend_1_1GlobalSettingStation.html#aa93b21af9ac6649d5749c83c809f5b00',1,'GpgFrontend::GlobalSettingStation']]], - ['getstatus_1062',['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_1063',['GetSubKeys',['../classGpgFrontend_1_1GpgKey.html#a746699842f6c49687af0487a8b3b163d',1,'GpgFrontend::GpgKey']]], - ['getsuggestmaxkeysize_1064',['GetSuggestMaxKeySize',['../classGpgFrontend_1_1GenKeyInfo.html#ae461a553176ad1ab0c1121ea6de6c8c2',1,'GpgFrontend::GenKeyInfo']]], - ['getsuggestminkeysize_1065',['GetSuggestMinKeySize',['../classGpgFrontend_1_1GenKeyInfo.html#a0b1612421148b86919b7130ed148ca51',1,'GpgFrontend::GenKeyInfo']]], - ['getsummary_1066',['GetSummary',['../classGpgFrontend_1_1GpgSignature.html#a3b143f6e13b71663d81fc0f326aad17f',1,'GpgFrontend::GpgSignature']]], - ['getsupportedkeyalgo_1067',['GetSupportedKeyAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#ac0dbb2d89b1e5f9b272679ba3f24314e',1,'GpgFrontend::GenKeyInfo']]], - ['getsupportedkeyalgostandalone_1068',['GetSupportedKeyAlgoStandalone',['../classGpgFrontend_1_1GenKeyInfo.html#afb8315b6612c64b3921b72df98ebcc74',1,'GpgFrontend::GenKeyInfo']]], - ['getsupportedsubkeyalgo_1069',['GetSupportedSubkeyAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#a168d6fe5252812f5984ba6d8046c7741',1,'GpgFrontend::GenKeyInfo']]], - ['getsupportedsubkeyalgostandalone_1070',['GetSupportedSubkeyAlgoStandalone',['../classGpgFrontend_1_1GenKeyInfo.html#a6819b0ca3ef7712b85ae320030cde023',1,'GpgFrontend::GenKeyInfo']]], - ['gettabidstosave_1071',['GetTabIdsToSave',['../classGpgFrontend_1_1UI_1_1QuitDialog.html#aec364c38056b6d92c172f8cdfb5f8e82',1,'GpgFrontend::UI::QuitDialog']]], - ['gettempcachevalue_1072',['GetTempCacheValue',['../classGpgFrontend_1_1CoreCommonUtil.html#aa3e4003ca3248537973ea6cf42e9f040',1,'GpgFrontend::CoreCommonUtil']]], - ['gettextpage_1073',['GetTextPage',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a6218e6e12bdba0228e4ab4276f7fed7a',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['gettofuinfos_1074',['GetTofuInfos',['../classGpgFrontend_1_1GpgUID.html#a2a36376484f7c1a4a19377d24e47a0b2',1,'GpgFrontend::GpgUID']]], - ['getuid_1075',['GetUID',['../classGpgFrontend_1_1GpgKeySignature.html#a95254ea2c00829b9dc87adc4a317cde5',1,'GpgFrontend::GpgKeySignature::GetUID()'],['../classGpgFrontend_1_1GpgUID.html#a467897d43a18b0cadd2e2e44384f6cdd',1,'GpgFrontend::GpgUID::GetUID()']]], - ['getuids_1076',['GetUIDs',['../classGpgFrontend_1_1GpgKey.html#ac8b13b45e487cdc423b78d3017897f99',1,'GpgFrontend::GpgKey']]], - ['getuisettings_1077',['GetUISettings',['../classGpgFrontend_1_1GlobalSettingStation.html#a1d8b9f91c75ef7a1d008a171f09f2c0e',1,'GpgFrontend::GlobalSettingStation']]], - ['getuserid_1078',['GetUserid',['../classGpgFrontend_1_1GenKeyInfo.html#a4ee4a0659e76376d9bfc527c334392e1',1,'GpgFrontend::GenKeyInfo']]], - ['getuuid_1079',['GetUUID',['../classGpgFrontend_1_1Thread_1_1Task.html#a50b91d27874af31ef13c493b00824ccf',1,'GpgFrontend::Thread::Task']]], - ['getvalidity_1080',['GetValidity',['../classGpgFrontend_1_1GpgSignature.html#a09cb6b465e85dffcf7867e70a276e9ad',1,'GpgFrontend::GpgSignature::GetValidity()'],['../classGpgFrontend_1_1GpgTOFUInfo.html#a8770062c9e0c3875083d2c92ebe8ccb0',1,'GpgFrontend::GpgTOFUInfo::GetValidity()']]], - ['globalsettingstation_1081',['GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html#abdc6dda369d4214e43ffa2930f7386b0',1,'GpgFrontend::GlobalSettingStation']]], - ['gnupgcontrollerdialog_1082',['GnuPGControllerDialog',['../classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html#add69685b9c83ed03ed24d36f2badd835',1,'GpgFrontend::UI::GnuPGControllerDialog']]], - ['gnupgtab_1083',['GnupgTab',['../classGpgFrontend_1_1UI_1_1GnupgTab.html#ab9d9e8af4494659f13b87804e7318a79',1,'GpgFrontend::UI::GnupgTab']]], - ['good_1084',['good',['../classGpgFrontend_1_1GpgContext.html#a73c505a2f3d39d1638dc4d9a3e13a913',1,'GpgFrontend::GpgContext']]], - ['gpgadvancedoperator_1085',['GpgAdvancedOperator',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a9233156767f1d45272b95decd18241e3',1,'GpgFrontend::GpgAdvancedOperator']]], - ['gpgbasicoperator_1086',['GpgBasicOperator',['../classGpgFrontend_1_1GpgBasicOperator.html#a139be86330f88e5f833aa24263a3b2ae',1,'GpgFrontend::GpgBasicOperator']]], - ['gpgcommandexecutor_1087',['GpgCommandExecutor',['../classGpgFrontend_1_1GpgCommandExecutor.html#a94240f423464600938bfcafa2b186c38',1,'GpgFrontend::GpgCommandExecutor']]], - ['gpgcontext_1088',['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_1089',['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_1090',['GpgDecryptResultAnalyse',['../classGpgFrontend_1_1GpgDecryptResultAnalyse.html#a442438ae58cdd7220f0e4b0792e5a372',1,'GpgFrontend::GpgDecryptResultAnalyse']]], - ['gpgencryptresultanalyse_1091',['GpgEncryptResultAnalyse',['../classGpgFrontend_1_1GpgEncryptResultAnalyse.html#a0801e32c8709da373f6715bc994a7747',1,'GpgFrontend::GpgEncryptResultAnalyse']]], - ['gpgfileopera_1092',['GpgFileOpera',['../classGpgFrontend_1_1GpgFileOpera.html#aa81da3d72c4fbc57e7138bfec7731152',1,'GpgFrontend::GpgFileOpera']]], - ['gpgfrontendapplication_1093',['GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#ac0290f06e08f2714f9727bb578df1298',1,'GpgFrontend::UI::GpgFrontendApplication']]], - ['gpgimportinformation_1094',['GpgImportInformation',['../classGpgFrontend_1_1GpgImportInformation.html#ab282d4f701403cd68eb02d1aad30be56',1,'GpgFrontend::GpgImportInformation']]], - ['gpgkey_1095',['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_1096',['GpgKeyGetter',['../classGpgFrontend_1_1GpgKeyGetter.html#a8eeee9f6dd74dc24c24794ce63c62285',1,'GpgFrontend::GpgKeyGetter']]], - ['gpgkeyimportexporter_1097',['GpgKeyImportExporter',['../classGpgFrontend_1_1GpgKeyImportExporter.html#a0eede7c782d17b32d6c1f30cd8496561',1,'GpgFrontend::GpgKeyImportExporter']]], - ['gpgkeymanager_1098',['GpgKeyManager',['../classGpgFrontend_1_1GpgKeyManager.html#a210b717fd8ee63b064d77f32b0df4c5d',1,'GpgFrontend::GpgKeyManager']]], - ['gpgkeyopera_1099',['GpgKeyOpera',['../classGpgFrontend_1_1GpgKeyOpera.html#a01d6a920156a38a34c57d9c49c361079',1,'GpgFrontend::GpgKeyOpera']]], - ['gpgkeysignature_1100',['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_1101',['GpgResultAnalyse',['../classGpgFrontend_1_1GpgResultAnalyse.html#aa3c9bdf1ea4c87476010ef32fd2fb426',1,'GpgFrontend::GpgResultAnalyse']]], - ['gpgsignature_1102',['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_1103',['GpgSignResultAnalyse',['../classGpgFrontend_1_1GpgSignResultAnalyse.html#a3ddd2d52ad91fdf7f4c8740312570c8e',1,'GpgFrontend::GpgSignResultAnalyse']]], - ['gpgsubkey_1104',['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_1105',['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_1106',['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_1107',['GpgUIDOperator',['../classGpgFrontend_1_1GpgUIDOperator.html#ab74a830c858ab9ff135375743393a7c7',1,'GpgFrontend::GpgUIDOperator']]], - ['gpgverifyresultanalyse_1108',['GpgVerifyResultAnalyse',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#ab1d67da5dbe5bd2d665f7121e5f5354b',1,'GpgFrontend::GpgVerifyResultAnalyse']]] + ['generaldialog_984',['GeneralDialog',['../classGpgFrontend_1_1UI_1_1GeneralDialog.html#ac9de4c49668ffaeb6916c64f878a202c',1,'GpgFrontend::UI::GeneralDialog']]], + ['generalmainwindow_985',['GeneralMainWindow',['../classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a62b24183ebf9da18852084879bcb1013',1,'GpgFrontend::UI::GeneralMainWindow']]], + ['generaltab_986',['GeneralTab',['../classGpgFrontend_1_1UI_1_1GeneralTab.html#a214079dfbacdc6898146c8468611cf0c',1,'GpgFrontend::UI::GeneralTab']]], + ['generate_987',['Generate',['../classGpgFrontend_1_1PassphraseGenerator.html#a8b4ee1083343fba6d947b85cd66079b8',1,'GpgFrontend::PassphraseGenerator']]], + ['generate_5fkey_5fpackage_5fname_988',['generate_key_package_name',['../classGpgFrontend_1_1KeyPackageOperator.html#a825d987dacd8a99d9d87729e1861a152',1,'GpgFrontend::KeyPackageOperator']]], + ['generate_5fuuid_989',['generate_uuid',['../classGpgFrontend_1_1Thread_1_1Task.html#a96d087abb7cf99d16f778f1a93b4f9e5',1,'GpgFrontend::Thread::Task']]], + ['generatekey_990',['GenerateKey',['../classGpgFrontend_1_1GpgKeyOpera.html#a4cc3ac91613164d7dc61a016a2b4caea',1,'GpgFrontend::GpgKeyOpera']]], + ['generatekeypackage_991',['GenerateKeyPackage',['../classGpgFrontend_1_1KeyPackageOperator.html#ade02f022e405e98377343c4667c206e9',1,'GpgFrontend::KeyPackageOperator']]], + ['generatekeypackagename_992',['GenerateKeyPackageName',['../classGpgFrontend_1_1KeyPackageOperator.html#ae90b362a32b6f6014cda1dc232bd3f0e',1,'GpgFrontend::KeyPackageOperator']]], + ['generatepassphrase_993',['GeneratePassphrase',['../classGpgFrontend_1_1KeyPackageOperator.html#a6d9cf022a1e0cf54c061495f59c1b4b9',1,'GpgFrontend::KeyPackageOperator']]], + ['generaterevokecert_994',['GenerateRevokeCert',['../classGpgFrontend_1_1GpgKeyOpera.html#a91a9a9f24f6b620ea7b906c529e3d9a4',1,'GpgFrontend::GpgKeyOpera']]], + ['generatesubkey_995',['GenerateSubkey',['../classGpgFrontend_1_1GpgKeyOpera.html#a882d99e8407cc22fb8b6e61c531fbe85',1,'GpgFrontend::GpgKeyOpera']]], + ['genkeyinfo_996',['GenKeyInfo',['../classGpgFrontend_1_1GenKeyInfo.html#a34eca1662ba8d4645751f3ee66582b04',1,'GpgFrontend::GenKeyInfo']]], + ['get_5ffile_5fextension_997',['get_file_extension',['../namespaceGpgFrontend.html#acff2cf5dd5b112b324fa6574ee935f79',1,'GpgFrontend']]], + ['get_5fheap_5fptr_998',['get_heap_ptr',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a0e1ab5e5bf5ef647a30a5ee2884ac63a',1,'GpgFrontend::Thread::Task::DataObject']]], + ['get_5fkey_5fin_5fcache_999',['get_key_in_cache',['../classGpgFrontend_1_1GpgKeyGetter.html#ab5196ef4ed5323fc2af70abf801ea260',1,'GpgFrontend::GpgKeyGetter']]], + ['get_5fonly_5ffile_5fname_5fwith_5fpath_1000',['get_only_file_name_with_path',['../namespaceGpgFrontend.html#a5a2f5fc1ad3de55e41a1b7a388821328',1,'GpgFrontend']]], + ['get_5frestart_5fneeded_1001',['get_restart_needed',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a5e95f62dac9fba1ead6ec69c145923db',1,'GpgFrontend::UI::MainWindow::get_restart_needed()'],['../classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html#aaf89f54f2124617e836d31df29066529',1,'GpgFrontend::UI::GnuPGControllerDialog::get_restart_needed()'],['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#a0d66e360dfbcf79403351459721c3981',1,'GpgFrontend::UI::SettingsDialog::get_restart_needed()']]], + ['get_5fselected_5fsubkey_1002',['get_selected_subkey',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#aedc5f77d6bf9b780b96552a43b323feb',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], + ['get_5fsign_5fselected_1003',['get_sign_selected',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a2d7c328d726436061f19a287e481268d',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['get_5fstatus_5fstring_1004',['get_status_string',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#ae682853c7eccfd3a6be43765f162f5a4',1,'GpgFrontend::UI::KeyImportDetailDialog']]], + ['get_5fuid_5fchecked_1005',['get_uid_checked',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a7898b6fa328bfbc55ee2721bca4b2af1',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['get_5fuid_5fselected_1006',['get_uid_selected',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a161bc9787be40a32f487c79faaeb54bf',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['getalgo_1007',['GetAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#a6a65ba347156373b6cf98eb8e851d28d',1,'GpgFrontend::GenKeyInfo']]], + ['getallchannelid_1008',['GetAllChannelId',['../classGpgFrontend_1_1SingletonFunctionObject.html#a5f2f0474871971f86ff91fb6a2408621',1,'GpgFrontend::SingletonFunctionObject::GetAllChannelId()'],['../classGpgFrontend_1_1SingletonStorage.html#a3f09424ebdc097fbdab77564a7d723ea',1,'GpgFrontend::SingletonStorage::GetAllChannelId()']]], + ['getallprivatekeys_1009',['GetAllPrivateKeys',['../classGpgFrontend_1_1UI_1_1KeyList.html#a7ead8845ceb7c9310e3f4742251e1d87',1,'GpgFrontend::UI::KeyList']]], + ['getappdir_1010',['GetAppDir',['../classGpgFrontend_1_1GlobalSettingStation.html#ae9d1da3d01c4a834120968636596c3c3',1,'GpgFrontend::GlobalSettingStation']]], + ['getbrowser_1011',['GetBrowser',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a92c31eea47b42be28c86431384b27846',1,'GpgFrontend::UI::HelpPage']]], + ['getcertsdir_1012',['GetCertsDir',['../classGpgFrontend_1_1GlobalSettingStation.html#a385ae4ab6ad5b17742a5405fa693d789',1,'GpgFrontend::GlobalSettingStation']]], + ['getchannel_1013',['GetChannel',['../classGpgFrontend_1_1ChannelObject.html#a0e13a4bff1cfb679f68a3a2590a3b1b8',1,'GpgFrontend::ChannelObject::GetChannel()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#aa99440b9177f5d0c18840f08a40d64b7',1,'GpgFrontend::SingletonFunctionObject::GetChannel()']]], + ['getchecked_1014',['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_1015',['GetCheckedSigners',['../classGpgFrontend_1_1UI_1_1SignersPicker.html#a2e98dcdf647a2e0e6455998b018aed00',1,'GpgFrontend::UI::SignersPicker']]], + ['getcomment_1016',['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_1017',['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_1018',['GetDefaultChannel',['../classGpgFrontend_1_1ChannelObject.html#aece9c525c49900734bc1bebf85b644ef',1,'GpgFrontend::ChannelObject::GetDefaultChannel()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a50e2b3794d6553f4231eaec72d9d0a50',1,'GpgFrontend::SingletonFunctionObject::GetDefaultChannel()']]], + ['getdescription_1019',['GetDescription',['../classGpgFrontend_1_1GpgTOFUInfo.html#a471a08bc906d74699f394e34d2581b78',1,'GpgFrontend::GpgTOFUInfo']]], + ['getemail_1020',['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_1021',['GetEncrCount',['../classGpgFrontend_1_1GpgTOFUInfo.html#abc53f7ca1b737ed1a913ad2f90a346e4',1,'GpgFrontend::GpgTOFUInfo']]], + ['getencrlast_1022',['GetEncrLast',['../classGpgFrontend_1_1GpgTOFUInfo.html#a03f286ac6f16ec6d33eb3dcfd4e3f6d5',1,'GpgFrontend::GpgTOFUInfo']]], + ['getexpiretime_1023',['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_1024',['GetFilePath',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aff81f0f98a399fa55b6b0ebf2230d4cf',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['getfingerprint_1025',['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()']]], + ['getfullid_1026',['GetFullID',['../classGpgFrontend_1_1Thread_1_1Task.html#a3df2340426251e9145e5fe4419937e2a',1,'GpgFrontend::Thread::Task']]], + ['gethashalgo_1027',['GetHashAlgo',['../classGpgFrontend_1_1GpgSignature.html#ace10a3ac7f4dc3888b2ad62157213f1c',1,'GpgFrontend::GpgSignature']]], + ['getid_1028',['GetId',['../classGpgFrontend_1_1GpgKey.html#a8930f958f3ca1f5566f63e8c2273837e',1,'GpgFrontend::GpgKey']]], + ['getid_1029',['GetID',['../classGpgFrontend_1_1GpgSubKey.html#a48d3dfbd3aae9523ffbdb916aad8ad53',1,'GpgFrontend::GpgSubKey']]], + ['getinfo_1030',['GetInfo',['../classGpgFrontend_1_1GpgContext.html#a4a8f6ff37e45979159ab375b2c7d48c3',1,'GpgFrontend::GpgContext']]], + ['getinstance_1031',['GetInstance',['../classGpgFrontend_1_1SingletonFunctionObject.html#a70484d7cfe9f9dcbcd5f8bb749250f36',1,'GpgFrontend::SingletonFunctionObject::GetInstance()'],['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a9b341a1a903cec0c70a6af4bb230905e',1,'GpgFrontend::UI::GpgFrontendApplication::GetInstance()'],['../classGpgFrontend_1_1SingletonStorageCollection.html#ac56d19e0d4b99e7b8a86a017721f3db1',1,'GpgFrontend::SingletonStorageCollection::GetInstance()'],['../classGpgFrontend_1_1UI_1_1SignalStation.html#abe381ce56a7b157a3760b2fd9c3b7419',1,'GpgFrontend::UI::SignalStation::GetInstance()'],['../classGpgFrontend_1_1CoreCommonUtil.html#a8588dfa6ccb57c055f022b13e2da1e7c',1,'GpgFrontend::CoreCommonUtil::GetInstance()'],['../classGpgFrontend_1_1UI_1_1CommonUtils.html#aed529969f54e39e3f9da14ae6dd00d49',1,'GpgFrontend::UI::CommonUtils::GetInstance()'],['../classGpgFrontend_1_1CoreSignalStation.html#a0c5893909726b919ea733de9906cfb36',1,'GpgFrontend::CoreSignalStation::GetInstance()']]], + ['getinvalid_1032',['GetInvalid',['../classGpgFrontend_1_1GpgUID.html#a388ad367d353edd5eeb6e529977c924c',1,'GpgFrontend::GpgUID']]], + ['getkey_1033',['GetKey',['../classGpgFrontend_1_1GpgKeyGetter.html#a94243d09c9418c8ebf0c7cdab4a2b7f1',1,'GpgFrontend::GpgKeyGetter']]], + ['getkeyid_1034',['GetKeyID',['../classGpgFrontend_1_1GpgKeySignature.html#a4277f6deb7c07aaba62fbe8e7867b1fe',1,'GpgFrontend::GpgKeySignature']]], + ['getkeylength_1035',['GetKeyLength',['../classGpgFrontend_1_1GpgSubKey.html#a18d7a2f0a3cee32a123b780f2b8b8708',1,'GpgFrontend::GpgSubKey::GetKeyLength()'],['../classGpgFrontend_1_1GenKeyInfo.html#a4927a9091fa2b2f68f6b60ce78ab2fe9',1,'GpgFrontend::GenKeyInfo::GetKeyLength()']]], + ['getkeys_1036',['GetKeys',['../classGpgFrontend_1_1GpgKeyGetter.html#aa5979c21af58b874b33c203752dcc805',1,'GpgFrontend::GpgKeyGetter']]], + ['getkeyscopy_1037',['GetKeysCopy',['../classGpgFrontend_1_1GpgKeyGetter.html#a028fe69516a51c526bbd2ec4235053ad',1,'GpgFrontend::GpgKeyGetter::GetKeysCopy(const KeyLinkListPtr &keys)'],['../classGpgFrontend_1_1GpgKeyGetter.html#a7ec8d8431a771c602cbfa946d13d6c74',1,'GpgFrontend::GpgKeyGetter::GetKeysCopy(const KeyListPtr &keys)']]], + ['getkeysizestr_1038',['GetKeySizeStr',['../classGpgFrontend_1_1GenKeyInfo.html#a0bda4b4161d805582869ec0e56ade07c',1,'GpgFrontend::GenKeyInfo']]], + ['getlastupdatetime_1039',['GetLastUpdateTime',['../classGpgFrontend_1_1GpgKey.html#a3532e20298b642f5d312712fa8a791df',1,'GpgFrontend::GpgKey']]], + ['getlatestversion_1040',['getLatestVersion',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a7329657135624fc42ad80d821e11befe',1,'GpgFrontend::UI::UpdateTab']]], + ['getlocaledir_1041',['GetLocaleDir',['../classGpgFrontend_1_1GlobalSettingStation.html#a0b3780564305e9b210d66ef377c21565',1,'GpgFrontend::GlobalSettingStation']]], + ['getlogdir_1042',['GetLogDir',['../classGpgFrontend_1_1GlobalSettingStation.html#a7da9b08291ef2391892f5c9375b8db23',1,'GpgFrontend::GlobalSettingStation']]], + ['getname_1043',['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_1044',['GetObjectSize',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#aa35e6ad1ef3a5733fb338f3333b5c637',1,'GpgFrontend::Thread::Task::DataObject']]], + ['getownertrust_1045',['GetOwnerTrust',['../classGpgFrontend_1_1GpgKey.html#a3327ad34ff14feb75f3fbfc2bfb7fc44',1,'GpgFrontend::GpgKey']]], + ['getownertrustlevel_1046',['GetOwnerTrustLevel',['../classGpgFrontend_1_1GpgKey.html#a4ced7bda206a0d72a2548783198ae4fe',1,'GpgFrontend::GpgKey']]], + ['getpassphrase_1047',['GetPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#a890ee16ef6088570360a073a6b531c89',1,'GpgFrontend::GenKeyInfo']]], + ['getpolicy_1048',['GetPolicy',['../classGpgFrontend_1_1GpgTOFUInfo.html#a34d1073bb25a8958e70016f3cd6b167f',1,'GpgFrontend::GpgTOFUInfo']]], + ['getprimarykeylength_1049',['GetPrimaryKeyLength',['../classGpgFrontend_1_1GpgKey.html#a5b276fdeb438fe14ec2850d799401be6',1,'GpgFrontend::GpgKey']]], + ['getprivatechecked_1050',['GetPrivateChecked',['../classGpgFrontend_1_1UI_1_1KeyList.html#a81c2e36427371fa6ae6381870b9b5bdd',1,'GpgFrontend::UI::KeyList']]], + ['getprotocol_1051',['GetProtocol',['../classGpgFrontend_1_1GpgKey.html#ad2440a2902c81192d5549fe951ddb130',1,'GpgFrontend::GpgKey']]], + ['getpubkey_1052',['GetPubkey',['../classGpgFrontend_1_1GpgKeyGetter.html#a7a8bc7c0f12a11e108051e4c824fc430',1,'GpgFrontend::GpgKeyGetter']]], + ['getpubkeyalgo_1053',['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_1054',['GetPublicKeyAlgo',['../classGpgFrontend_1_1GpgKey.html#a1c21bc3b1788753f56272ad73052fc5f',1,'GpgFrontend::GpgKey']]], + ['getresourcedir_1055',['GetResourceDir',['../classGpgFrontend_1_1GlobalSettingStation.html#afc1aa3dec55ae4e741f92fce1140a2d0',1,'GpgFrontend::GlobalSettingStation']]], + ['getresultreport_1056',['GetResultReport',['../classGpgFrontend_1_1GpgResultAnalyse.html#aa9e35e573ea4c0ebdbb014d1afbaab9d',1,'GpgFrontend::GpgResultAnalyse']]], + ['getrevoked_1057',['GetRevoked',['../classGpgFrontend_1_1GpgUID.html#a32450fbf22c64cf522e9a090423344a2',1,'GpgFrontend::GpgUID']]], + ['getselected_1058',['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_1059',['GetSelectedKey',['../classGpgFrontend_1_1UI_1_1KeyList.html#ab4368b81402e2468a9e960de8fb7080f',1,'GpgFrontend::UI::KeyList']]], + ['getsequency_1060',['GetSequency',['../classGpgFrontend_1_1Thread_1_1Task.html#a80f47accc0832e3aee686ee2879b431e',1,'GpgFrontend::Thread::Task']]], + ['getsignatures_1061',['GetSignatures',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a2063acf8262e2c600b14ed1948486ac3',1,'GpgFrontend::GpgVerifyResultAnalyse::GetSignatures()'],['../classGpgFrontend_1_1GpgUID.html#af7b5310b319378c30c488277e95ef601',1,'GpgFrontend::GpgUID::GetSignatures()']]], + ['getsigncount_1062',['GetSignCount',['../classGpgFrontend_1_1GpgTOFUInfo.html#a681046a3916d0d0cdcf0852bfa76fdb0',1,'GpgFrontend::GpgTOFUInfo']]], + ['getsigners_1063',['GetSigners',['../classGpgFrontend_1_1GpgBasicOperator.html#a78f37b8d5afd6c0248665a4415f880cf',1,'GpgFrontend::GpgBasicOperator']]], + ['getsignfirst_1064',['GetSignFirst',['../classGpgFrontend_1_1GpgTOFUInfo.html#a788a439b206882c6317162878e2fe0b8',1,'GpgFrontend::GpgTOFUInfo']]], + ['getsignlast_1065',['GetSignLast',['../classGpgFrontend_1_1GpgTOFUInfo.html#a746cbcf731af6b19ade42debbf1e2c8f',1,'GpgFrontend::GpgTOFUInfo']]], + ['getsingletonstorage_1066',['GetSingletonStorage',['../classGpgFrontend_1_1SingletonStorageCollection.html#a6f933390c54b7f55d5ffb4624074725f',1,'GpgFrontend::SingletonStorageCollection']]], + ['getsizechangestep_1067',['GetSizeChangeStep',['../classGpgFrontend_1_1GenKeyInfo.html#ac211a7a615805ae97ff284b46abfeab7',1,'GpgFrontend::GenKeyInfo']]], + ['getstandalonedatabasedir_1068',['GetStandaloneDatabaseDir',['../classGpgFrontend_1_1GlobalSettingStation.html#af484ca46c5df831a9dd76f3a88d66332',1,'GpgFrontend::GlobalSettingStation']]], + ['getstandalonegpgbindir_1069',['GetStandaloneGpgBinDir',['../classGpgFrontend_1_1GlobalSettingStation.html#aa93b21af9ac6649d5749c83c809f5b00',1,'GpgFrontend::GlobalSettingStation']]], + ['getstatus_1070',['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_1071',['GetSubKeys',['../classGpgFrontend_1_1GpgKey.html#a746699842f6c49687af0487a8b3b163d',1,'GpgFrontend::GpgKey']]], + ['getsuggestmaxkeysize_1072',['GetSuggestMaxKeySize',['../classGpgFrontend_1_1GenKeyInfo.html#ae461a553176ad1ab0c1121ea6de6c8c2',1,'GpgFrontend::GenKeyInfo']]], + ['getsuggestminkeysize_1073',['GetSuggestMinKeySize',['../classGpgFrontend_1_1GenKeyInfo.html#a0b1612421148b86919b7130ed148ca51',1,'GpgFrontend::GenKeyInfo']]], + ['getsummary_1074',['GetSummary',['../classGpgFrontend_1_1GpgSignature.html#a3b143f6e13b71663d81fc0f326aad17f',1,'GpgFrontend::GpgSignature']]], + ['getsupportedkeyalgo_1075',['GetSupportedKeyAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#ac0dbb2d89b1e5f9b272679ba3f24314e',1,'GpgFrontend::GenKeyInfo']]], + ['getsupportedkeyalgostandalone_1076',['GetSupportedKeyAlgoStandalone',['../classGpgFrontend_1_1GenKeyInfo.html#afb8315b6612c64b3921b72df98ebcc74',1,'GpgFrontend::GenKeyInfo']]], + ['getsupportedsubkeyalgo_1077',['GetSupportedSubkeyAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#a168d6fe5252812f5984ba6d8046c7741',1,'GpgFrontend::GenKeyInfo']]], + ['getsupportedsubkeyalgostandalone_1078',['GetSupportedSubkeyAlgoStandalone',['../classGpgFrontend_1_1GenKeyInfo.html#a6819b0ca3ef7712b85ae320030cde023',1,'GpgFrontend::GenKeyInfo']]], + ['gettabidstosave_1079',['GetTabIdsToSave',['../classGpgFrontend_1_1UI_1_1QuitDialog.html#aec364c38056b6d92c172f8cdfb5f8e82',1,'GpgFrontend::UI::QuitDialog']]], + ['gettempcachevalue_1080',['GetTempCacheValue',['../classGpgFrontend_1_1CoreCommonUtil.html#aa3e4003ca3248537973ea6cf42e9f040',1,'GpgFrontend::CoreCommonUtil']]], + ['gettextpage_1081',['GetTextPage',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a6218e6e12bdba0228e4ab4276f7fed7a',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['gettofuinfos_1082',['GetTofuInfos',['../classGpgFrontend_1_1GpgUID.html#a2a36376484f7c1a4a19377d24e47a0b2',1,'GpgFrontend::GpgUID']]], + ['getuid_1083',['GetUID',['../classGpgFrontend_1_1GpgKeySignature.html#a95254ea2c00829b9dc87adc4a317cde5',1,'GpgFrontend::GpgKeySignature::GetUID()'],['../classGpgFrontend_1_1GpgUID.html#a467897d43a18b0cadd2e2e44384f6cdd',1,'GpgFrontend::GpgUID::GetUID()']]], + ['getuids_1084',['GetUIDs',['../classGpgFrontend_1_1GpgKey.html#ac8b13b45e487cdc423b78d3017897f99',1,'GpgFrontend::GpgKey']]], + ['getuisettings_1085',['GetUISettings',['../classGpgFrontend_1_1GlobalSettingStation.html#a1d8b9f91c75ef7a1d008a171f09f2c0e',1,'GpgFrontend::GlobalSettingStation']]], + ['getuserid_1086',['GetUserid',['../classGpgFrontend_1_1GenKeyInfo.html#a4ee4a0659e76376d9bfc527c334392e1',1,'GpgFrontend::GenKeyInfo']]], + ['getuuid_1087',['GetUUID',['../classGpgFrontend_1_1Thread_1_1Task.html#a50b91d27874af31ef13c493b00824ccf',1,'GpgFrontend::Thread::Task']]], + ['getvalidity_1088',['GetValidity',['../classGpgFrontend_1_1GpgSignature.html#a09cb6b465e85dffcf7867e70a276e9ad',1,'GpgFrontend::GpgSignature::GetValidity()'],['../classGpgFrontend_1_1GpgTOFUInfo.html#a8770062c9e0c3875083d2c92ebe8ccb0',1,'GpgFrontend::GpgTOFUInfo::GetValidity()']]], + ['globalsettingstation_1089',['GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html#abdc6dda369d4214e43ffa2930f7386b0',1,'GpgFrontend::GlobalSettingStation']]], + ['gnupgcontrollerdialog_1090',['GnuPGControllerDialog',['../classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html#add69685b9c83ed03ed24d36f2badd835',1,'GpgFrontend::UI::GnuPGControllerDialog']]], + ['gnupgtab_1091',['GnupgTab',['../classGpgFrontend_1_1UI_1_1GnupgTab.html#ab9d9e8af4494659f13b87804e7318a79',1,'GpgFrontend::UI::GnupgTab']]], + ['good_1092',['good',['../classGpgFrontend_1_1GpgContext.html#a73c505a2f3d39d1638dc4d9a3e13a913',1,'GpgFrontend::GpgContext']]], + ['gpgadvancedoperator_1093',['GpgAdvancedOperator',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a9233156767f1d45272b95decd18241e3',1,'GpgFrontend::GpgAdvancedOperator']]], + ['gpgbasicoperator_1094',['GpgBasicOperator',['../classGpgFrontend_1_1GpgBasicOperator.html#a139be86330f88e5f833aa24263a3b2ae',1,'GpgFrontend::GpgBasicOperator']]], + ['gpgcommandexecutor_1095',['GpgCommandExecutor',['../classGpgFrontend_1_1GpgCommandExecutor.html#a94240f423464600938bfcafa2b186c38',1,'GpgFrontend::GpgCommandExecutor']]], + ['gpgcontext_1096',['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_1097',['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_1098',['GpgDecryptResultAnalyse',['../classGpgFrontend_1_1GpgDecryptResultAnalyse.html#a442438ae58cdd7220f0e4b0792e5a372',1,'GpgFrontend::GpgDecryptResultAnalyse']]], + ['gpgencryptresultanalyse_1099',['GpgEncryptResultAnalyse',['../classGpgFrontend_1_1GpgEncryptResultAnalyse.html#a0801e32c8709da373f6715bc994a7747',1,'GpgFrontend::GpgEncryptResultAnalyse']]], + ['gpgfileopera_1100',['GpgFileOpera',['../classGpgFrontend_1_1GpgFileOpera.html#aa81da3d72c4fbc57e7138bfec7731152',1,'GpgFrontend::GpgFileOpera']]], + ['gpgfrontendapplication_1101',['GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#ac0290f06e08f2714f9727bb578df1298',1,'GpgFrontend::UI::GpgFrontendApplication']]], + ['gpgimportinformation_1102',['GpgImportInformation',['../classGpgFrontend_1_1GpgImportInformation.html#ab282d4f701403cd68eb02d1aad30be56',1,'GpgFrontend::GpgImportInformation']]], + ['gpgkey_1103',['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_1104',['GpgKeyGetter',['../classGpgFrontend_1_1GpgKeyGetter.html#a8eeee9f6dd74dc24c24794ce63c62285',1,'GpgFrontend::GpgKeyGetter']]], + ['gpgkeyimportexporter_1105',['GpgKeyImportExporter',['../classGpgFrontend_1_1GpgKeyImportExporter.html#a0eede7c782d17b32d6c1f30cd8496561',1,'GpgFrontend::GpgKeyImportExporter']]], + ['gpgkeymanager_1106',['GpgKeyManager',['../classGpgFrontend_1_1GpgKeyManager.html#a210b717fd8ee63b064d77f32b0df4c5d',1,'GpgFrontend::GpgKeyManager']]], + ['gpgkeyopera_1107',['GpgKeyOpera',['../classGpgFrontend_1_1GpgKeyOpera.html#a01d6a920156a38a34c57d9c49c361079',1,'GpgFrontend::GpgKeyOpera']]], + ['gpgkeysignature_1108',['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_1109',['GpgResultAnalyse',['../classGpgFrontend_1_1GpgResultAnalyse.html#aa3c9bdf1ea4c87476010ef32fd2fb426',1,'GpgFrontend::GpgResultAnalyse']]], + ['gpgsignature_1110',['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_1111',['GpgSignResultAnalyse',['../classGpgFrontend_1_1GpgSignResultAnalyse.html#a3ddd2d52ad91fdf7f4c8740312570c8e',1,'GpgFrontend::GpgSignResultAnalyse']]], + ['gpgsubkey_1112',['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_1113',['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_1114',['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_1115',['GpgUIDOperator',['../classGpgFrontend_1_1GpgUIDOperator.html#ab74a830c858ab9ff135375743393a7c7',1,'GpgFrontend::GpgUIDOperator']]], + ['gpgverifyresultanalyse_1116',['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 064f70a8..a86fd4d9 100644 --- a/docs/html/search/functions_8.js +++ b/docs/html/search/functions_8.js @@ -1,4 +1,4 @@ var searchData= [ - ['helppage_1109',['HelpPage',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a1be8f5b79fef3d1d62ff4620b8535006',1,'GpgFrontend::UI::HelpPage']]] + ['helppage_1117',['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 7b2ad132..1727f0e6 100644 --- a/docs/html/search/functions_9.js +++ b/docs/html/search/functions_9.js @@ -1,49 +1,49 @@ var searchData= [ - ['import_5fkey_5ffrom_5fkeyserver_1110',['import_key_from_keyserver',['../namespaceGpgFrontend_1_1UI.html#aa346bd199cecc61b15ef406728b58770',1,'GpgFrontend::UI']]], - ['import_5fkeys_1111',['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_1112',['import_unknown_key_from_keyserver',['../namespaceGpgFrontend_1_1UI.html#a9ab218dde057182cb4911c4792acd925',1,'GpgFrontend::UI']]], - ['importkey_1113',['ImportKey',['../classGpgFrontend_1_1GpgKeyImportExporter.html#ab7a9be5283047695cd47562775adf79d',1,'GpgFrontend::GpgKeyImportExporter']]], - ['importkeypackage_1114',['ImportKeyPackage',['../classGpgFrontend_1_1KeyPackageOperator.html#a89538b180a42eb7d6ae53583fe10ee07',1,'GpgFrontend::KeyPackageOperator']]], - ['infoboardwidget_1115',['InfoBoardWidget',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#adeef521a8838bf2a1692c25d9b108010',1,'GpgFrontend::UI::InfoBoardWidget']]], - ['infotab_1116',['InfoTab',['../classGpgFrontend_1_1UI_1_1InfoTab.html#a99d8b059ee28ea257981892e0b35d4cc',1,'GpgFrontend::UI::InfoTab']]], - ['infovalid_1117',['InfoValid',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#aec79eefdc19c90e046cb48bca347ff1c',1,'GpgFrontend::UI::SoftwareVersion']]], - ['init_1118',['Init',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a08ba4521f68c488b23b651e201011759',1,'GpgFrontend::UI::MainWindow']]], - ['init_5fapp_5fsecure_5fkey_1119',['init_app_secure_key',['../classGpgFrontend_1_1DataObjectOperator.html#a6b357780482f0e0c021ad55a81eb37cf',1,'GpgFrontend::DataObjectOperator']]], - ['init_5flocale_1120',['init_locale',['../namespaceGpgFrontend_1_1UI.html#a157c74e50283da9ed554cf7bf90afbee',1,'GpgFrontend::UI']]], - ['initcoreloggingsystem_1121',['InitCoreLoggingSystem',['../namespaceGpgFrontend.html#ab4a865228be071282d2a08e66ef6cb68',1,'GpgFrontend']]], - ['initgpgfrontendui_1122',['InitGpgFrontendUI',['../namespaceGpgFrontend_1_1UI.html#ab0311557c1d7bde9c56cbca85fefa6ad',1,'GpgFrontend::UI']]], - ['intropage_1123',['IntroPage',['../classGpgFrontend_1_1UI_1_1IntroPage.html#aed4220a7372b192ee4e8bc5024db922d',1,'GpgFrontend::UI::IntroPage']]], - ['isallowauthentication_1124',['IsAllowAuthentication',['../classGpgFrontend_1_1GenKeyInfo.html#aabdf981c65a0efde1e8905441b9b9c87',1,'GpgFrontend::GenKeyInfo']]], - ['isallowcertification_1125',['IsAllowCertification',['../classGpgFrontend_1_1GenKeyInfo.html#ad47ceeb1ccfa8862843034e51b4d8be7',1,'GpgFrontend::GenKeyInfo']]], - ['isallowchangeauthentication_1126',['IsAllowChangeAuthentication',['../classGpgFrontend_1_1GenKeyInfo.html#aaf8ab7c6564a2836837a537111d6f5b4',1,'GpgFrontend::GenKeyInfo']]], - ['isallowchangecertification_1127',['IsAllowChangeCertification',['../classGpgFrontend_1_1GenKeyInfo.html#adbcddd0fa0a273f9b77fe1297633dabc',1,'GpgFrontend::GenKeyInfo']]], - ['isallowchangeencryption_1128',['IsAllowChangeEncryption',['../classGpgFrontend_1_1GenKeyInfo.html#ad04a906300bea028c6fb6b1b2da1d149',1,'GpgFrontend::GenKeyInfo']]], - ['isallowchangesigning_1129',['IsAllowChangeSigning',['../classGpgFrontend_1_1GenKeyInfo.html#a06f95a8d26da79bcbe7d51e266879a94',1,'GpgFrontend::GenKeyInfo']]], - ['isallowencryption_1130',['IsAllowEncryption',['../classGpgFrontend_1_1GenKeyInfo.html#a28ed8a65243e5bc69403305752c2cdc9',1,'GpgFrontend::GenKeyInfo']]], - ['isallownopassphrase_1131',['IsAllowNoPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#af6a79124a4571ff7f37c1c5e6c1a9415',1,'GpgFrontend::GenKeyInfo']]], - ['isallowsigning_1132',['IsAllowSigning',['../classGpgFrontend_1_1GenKeyInfo.html#ad972292c408cb83c08e739327795a5f0',1,'GpgFrontend::GenKeyInfo']]], - ['iscardkey_1133',['IsCardKey',['../classGpgFrontend_1_1GpgSubKey.html#ad818aa66e47d6686eb8ff253b3c21814',1,'GpgFrontend::GpgSubKey']]], - ['isdisabled_1134',['IsDisabled',['../classGpgFrontend_1_1GpgSubKey.html#a75abb60a2130efc7fad8ab8fb3157042',1,'GpgFrontend::GpgSubKey::IsDisabled()'],['../classGpgFrontend_1_1GpgKey.html#a7eaf1e722d8a59f6a86d8e732217d89c',1,'GpgFrontend::GpgKey::IsDisabled()']]], - ['isdiscarded_1135',['IsDiscarded',['../classGpgFrontend_1_1UI_1_1QuitDialog.html#a4c4bc06d1d168f01569ed83dcfd50d55',1,'GpgFrontend::UI::QuitDialog']]], - ['isexpired_1136',['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_1137',['IsExportable',['../classGpgFrontend_1_1GpgKeySignature.html#a19fc1ca3733b576e12628e333e2c449e',1,'GpgFrontend::GpgKeySignature']]], - ['isgood_1138',['IsGood',['../classGpgFrontend_1_1GpgKey.html#a59e76d40f01e765f0544e5c6a2851be6',1,'GpgFrontend::GpgKey']]], - ['ishasactualauthenticationcapability_1139',['IsHasActualAuthenticationCapability',['../classGpgFrontend_1_1GpgKey.html#a371a24c4e9d3b99a36f76ff8c7f2d0e6',1,'GpgFrontend::GpgKey']]], - ['ishasactualcertificationcapability_1140',['IsHasActualCertificationCapability',['../classGpgFrontend_1_1GpgKey.html#ae370e41a7ea7307fbf4d28e0f2a67e0c',1,'GpgFrontend::GpgKey']]], - ['ishasactualencryptioncapability_1141',['IsHasActualEncryptionCapability',['../classGpgFrontend_1_1GpgKey.html#aaa66d803456152fed9ba4cf5bce7b99d',1,'GpgFrontend::GpgKey']]], - ['ishasactualsigningcapability_1142',['IsHasActualSigningCapability',['../classGpgFrontend_1_1GpgKey.html#aefa0a44adb1b7c49553a85b545fdffe1',1,'GpgFrontend::GpgKey']]], - ['ishasauthenticationcapability_1143',['IsHasAuthenticationCapability',['../classGpgFrontend_1_1GpgKey.html#afdffba6dfb6009a0b320623df7a26be0',1,'GpgFrontend::GpgKey::IsHasAuthenticationCapability()'],['../classGpgFrontend_1_1GpgSubKey.html#a04d9df643cd08200cd742dc243be6cd6',1,'GpgFrontend::GpgSubKey::IsHasAuthenticationCapability()']]], - ['ishascardkey_1144',['IsHasCardKey',['../classGpgFrontend_1_1GpgKey.html#afedc843415bd4b59687e975006e470ed',1,'GpgFrontend::GpgKey']]], - ['ishascertificationcapability_1145',['IsHasCertificationCapability',['../classGpgFrontend_1_1GpgSubKey.html#a56938360f873949aa9ba3dbdaab519d1',1,'GpgFrontend::GpgSubKey::IsHasCertificationCapability()'],['../classGpgFrontend_1_1GpgKey.html#a2d28e72cfb741deeadfe02ff456fb490',1,'GpgFrontend::GpgKey::IsHasCertificationCapability()']]], - ['ishasencryptioncapability_1146',['IsHasEncryptionCapability',['../classGpgFrontend_1_1GpgSubKey.html#ab67395a986184cb9b20f3dc178fc52be',1,'GpgFrontend::GpgSubKey::IsHasEncryptionCapability()'],['../classGpgFrontend_1_1GpgKey.html#a60b342ca6e1062d4489d8ba8f7a5a605',1,'GpgFrontend::GpgKey::IsHasEncryptionCapability() const']]], - ['ishasmasterkey_1147',['IsHasMasterKey',['../classGpgFrontend_1_1GpgKey.html#aadac1b776764ee9d0ca4f8bb9f9e0741',1,'GpgFrontend::GpgKey']]], - ['ishassigningcapability_1148',['IsHasSigningCapability',['../classGpgFrontend_1_1GpgSubKey.html#ab9208165c74b93fa8c5b7a06cd808f56',1,'GpgFrontend::GpgSubKey::IsHasSigningCapability()'],['../classGpgFrontend_1_1GpgKey.html#a635bbf8f08268cfdac1bc120981df877',1,'GpgFrontend::GpgKey::IsHasSigningCapability()']]], - ['isinvalid_1149',['IsInvalid',['../classGpgFrontend_1_1GpgKeySignature.html#a1725474a1c61c0a3d724dc2f999cb24a',1,'GpgFrontend::GpgKeySignature']]], - ['isnonexpired_1150',['IsNonExpired',['../classGpgFrontend_1_1GenKeyInfo.html#aeef7697c91b5b5998088979e09332380',1,'GpgFrontend::GenKeyInfo']]], - ['isnopassphrase_1151',['IsNoPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#a848181796a99bec8d32dc5eac240ee01',1,'GpgFrontend::GenKeyInfo']]], - ['isprivatekey_1152',['IsPrivateKey',['../classGpgFrontend_1_1GpgKey.html#a888c0263f04bdd52967e092b9c73eb6d',1,'GpgFrontend::GpgKey::IsPrivateKey()'],['../classGpgFrontend_1_1GpgSubKey.html#accb86b50755698b3e1e7fdfe06f44e84',1,'GpgFrontend::GpgSubKey::IsPrivateKey()']]], - ['isrevoked_1153',['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_1154',['IsSecretKey',['../classGpgFrontend_1_1GpgSubKey.html#a8fcbeae2ef3ad73a5aedee19f6de3e60',1,'GpgFrontend::GpgSubKey']]], - ['issubkey_1155',['IsSubKey',['../classGpgFrontend_1_1GenKeyInfo.html#a40a42ad975499566de124296c19e6c55',1,'GpgFrontend::GenKeyInfo']]] + ['import_5fkey_5ffrom_5fkeyserver_1118',['import_key_from_keyserver',['../namespaceGpgFrontend_1_1UI.html#aa346bd199cecc61b15ef406728b58770',1,'GpgFrontend::UI']]], + ['import_5fkeys_1119',['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_1120',['import_unknown_key_from_keyserver',['../namespaceGpgFrontend_1_1UI.html#a9ab218dde057182cb4911c4792acd925',1,'GpgFrontend::UI']]], + ['importkey_1121',['ImportKey',['../classGpgFrontend_1_1GpgKeyImportExporter.html#ab7a9be5283047695cd47562775adf79d',1,'GpgFrontend::GpgKeyImportExporter']]], + ['importkeypackage_1122',['ImportKeyPackage',['../classGpgFrontend_1_1KeyPackageOperator.html#a89538b180a42eb7d6ae53583fe10ee07',1,'GpgFrontend::KeyPackageOperator']]], + ['infoboardwidget_1123',['InfoBoardWidget',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#adeef521a8838bf2a1692c25d9b108010',1,'GpgFrontend::UI::InfoBoardWidget']]], + ['infotab_1124',['InfoTab',['../classGpgFrontend_1_1UI_1_1InfoTab.html#a99d8b059ee28ea257981892e0b35d4cc',1,'GpgFrontend::UI::InfoTab']]], + ['infovalid_1125',['InfoValid',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#aec79eefdc19c90e046cb48bca347ff1c',1,'GpgFrontend::UI::SoftwareVersion']]], + ['init_1126',['Init',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a08ba4521f68c488b23b651e201011759',1,'GpgFrontend::UI::MainWindow']]], + ['init_5fapp_5fsecure_5fkey_1127',['init_app_secure_key',['../classGpgFrontend_1_1DataObjectOperator.html#a6b357780482f0e0c021ad55a81eb37cf',1,'GpgFrontend::DataObjectOperator']]], + ['init_5flocale_1128',['init_locale',['../namespaceGpgFrontend_1_1UI.html#a157c74e50283da9ed554cf7bf90afbee',1,'GpgFrontend::UI']]], + ['initcoreloggingsystem_1129',['InitCoreLoggingSystem',['../namespaceGpgFrontend.html#ab4a865228be071282d2a08e66ef6cb68',1,'GpgFrontend']]], + ['initgpgfrontendui_1130',['InitGpgFrontendUI',['../namespaceGpgFrontend_1_1UI.html#ab0311557c1d7bde9c56cbca85fefa6ad',1,'GpgFrontend::UI']]], + ['intropage_1131',['IntroPage',['../classGpgFrontend_1_1UI_1_1IntroPage.html#aed4220a7372b192ee4e8bc5024db922d',1,'GpgFrontend::UI::IntroPage']]], + ['isallowauthentication_1132',['IsAllowAuthentication',['../classGpgFrontend_1_1GenKeyInfo.html#aabdf981c65a0efde1e8905441b9b9c87',1,'GpgFrontend::GenKeyInfo']]], + ['isallowcertification_1133',['IsAllowCertification',['../classGpgFrontend_1_1GenKeyInfo.html#ad47ceeb1ccfa8862843034e51b4d8be7',1,'GpgFrontend::GenKeyInfo']]], + ['isallowchangeauthentication_1134',['IsAllowChangeAuthentication',['../classGpgFrontend_1_1GenKeyInfo.html#aaf8ab7c6564a2836837a537111d6f5b4',1,'GpgFrontend::GenKeyInfo']]], + ['isallowchangecertification_1135',['IsAllowChangeCertification',['../classGpgFrontend_1_1GenKeyInfo.html#adbcddd0fa0a273f9b77fe1297633dabc',1,'GpgFrontend::GenKeyInfo']]], + ['isallowchangeencryption_1136',['IsAllowChangeEncryption',['../classGpgFrontend_1_1GenKeyInfo.html#ad04a906300bea028c6fb6b1b2da1d149',1,'GpgFrontend::GenKeyInfo']]], + ['isallowchangesigning_1137',['IsAllowChangeSigning',['../classGpgFrontend_1_1GenKeyInfo.html#a06f95a8d26da79bcbe7d51e266879a94',1,'GpgFrontend::GenKeyInfo']]], + ['isallowencryption_1138',['IsAllowEncryption',['../classGpgFrontend_1_1GenKeyInfo.html#a28ed8a65243e5bc69403305752c2cdc9',1,'GpgFrontend::GenKeyInfo']]], + ['isallownopassphrase_1139',['IsAllowNoPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#af6a79124a4571ff7f37c1c5e6c1a9415',1,'GpgFrontend::GenKeyInfo']]], + ['isallowsigning_1140',['IsAllowSigning',['../classGpgFrontend_1_1GenKeyInfo.html#ad972292c408cb83c08e739327795a5f0',1,'GpgFrontend::GenKeyInfo']]], + ['iscardkey_1141',['IsCardKey',['../classGpgFrontend_1_1GpgSubKey.html#ad818aa66e47d6686eb8ff253b3c21814',1,'GpgFrontend::GpgSubKey']]], + ['isdisabled_1142',['IsDisabled',['../classGpgFrontend_1_1GpgSubKey.html#a75abb60a2130efc7fad8ab8fb3157042',1,'GpgFrontend::GpgSubKey::IsDisabled()'],['../classGpgFrontend_1_1GpgKey.html#a7eaf1e722d8a59f6a86d8e732217d89c',1,'GpgFrontend::GpgKey::IsDisabled()']]], + ['isdiscarded_1143',['IsDiscarded',['../classGpgFrontend_1_1UI_1_1QuitDialog.html#a4c4bc06d1d168f01569ed83dcfd50d55',1,'GpgFrontend::UI::QuitDialog']]], + ['isexpired_1144',['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_1145',['IsExportable',['../classGpgFrontend_1_1GpgKeySignature.html#a19fc1ca3733b576e12628e333e2c449e',1,'GpgFrontend::GpgKeySignature']]], + ['isgood_1146',['IsGood',['../classGpgFrontend_1_1GpgKey.html#a59e76d40f01e765f0544e5c6a2851be6',1,'GpgFrontend::GpgKey']]], + ['ishasactualauthenticationcapability_1147',['IsHasActualAuthenticationCapability',['../classGpgFrontend_1_1GpgKey.html#a371a24c4e9d3b99a36f76ff8c7f2d0e6',1,'GpgFrontend::GpgKey']]], + ['ishasactualcertificationcapability_1148',['IsHasActualCertificationCapability',['../classGpgFrontend_1_1GpgKey.html#ae370e41a7ea7307fbf4d28e0f2a67e0c',1,'GpgFrontend::GpgKey']]], + ['ishasactualencryptioncapability_1149',['IsHasActualEncryptionCapability',['../classGpgFrontend_1_1GpgKey.html#aaa66d803456152fed9ba4cf5bce7b99d',1,'GpgFrontend::GpgKey']]], + ['ishasactualsigningcapability_1150',['IsHasActualSigningCapability',['../classGpgFrontend_1_1GpgKey.html#aefa0a44adb1b7c49553a85b545fdffe1',1,'GpgFrontend::GpgKey']]], + ['ishasauthenticationcapability_1151',['IsHasAuthenticationCapability',['../classGpgFrontend_1_1GpgKey.html#afdffba6dfb6009a0b320623df7a26be0',1,'GpgFrontend::GpgKey::IsHasAuthenticationCapability()'],['../classGpgFrontend_1_1GpgSubKey.html#a04d9df643cd08200cd742dc243be6cd6',1,'GpgFrontend::GpgSubKey::IsHasAuthenticationCapability()']]], + ['ishascardkey_1152',['IsHasCardKey',['../classGpgFrontend_1_1GpgKey.html#afedc843415bd4b59687e975006e470ed',1,'GpgFrontend::GpgKey']]], + ['ishascertificationcapability_1153',['IsHasCertificationCapability',['../classGpgFrontend_1_1GpgSubKey.html#a56938360f873949aa9ba3dbdaab519d1',1,'GpgFrontend::GpgSubKey::IsHasCertificationCapability()'],['../classGpgFrontend_1_1GpgKey.html#a2d28e72cfb741deeadfe02ff456fb490',1,'GpgFrontend::GpgKey::IsHasCertificationCapability()']]], + ['ishasencryptioncapability_1154',['IsHasEncryptionCapability',['../classGpgFrontend_1_1GpgSubKey.html#ab67395a986184cb9b20f3dc178fc52be',1,'GpgFrontend::GpgSubKey::IsHasEncryptionCapability()'],['../classGpgFrontend_1_1GpgKey.html#a60b342ca6e1062d4489d8ba8f7a5a605',1,'GpgFrontend::GpgKey::IsHasEncryptionCapability() const']]], + ['ishasmasterkey_1155',['IsHasMasterKey',['../classGpgFrontend_1_1GpgKey.html#aadac1b776764ee9d0ca4f8bb9f9e0741',1,'GpgFrontend::GpgKey']]], + ['ishassigningcapability_1156',['IsHasSigningCapability',['../classGpgFrontend_1_1GpgSubKey.html#ab9208165c74b93fa8c5b7a06cd808f56',1,'GpgFrontend::GpgSubKey::IsHasSigningCapability()'],['../classGpgFrontend_1_1GpgKey.html#a635bbf8f08268cfdac1bc120981df877',1,'GpgFrontend::GpgKey::IsHasSigningCapability()']]], + ['isinvalid_1157',['IsInvalid',['../classGpgFrontend_1_1GpgKeySignature.html#a1725474a1c61c0a3d724dc2f999cb24a',1,'GpgFrontend::GpgKeySignature']]], + ['isnonexpired_1158',['IsNonExpired',['../classGpgFrontend_1_1GenKeyInfo.html#aeef7697c91b5b5998088979e09332380',1,'GpgFrontend::GenKeyInfo']]], + ['isnopassphrase_1159',['IsNoPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#a848181796a99bec8d32dc5eac240ee01',1,'GpgFrontend::GenKeyInfo']]], + ['isprivatekey_1160',['IsPrivateKey',['../classGpgFrontend_1_1GpgKey.html#a888c0263f04bdd52967e092b9c73eb6d',1,'GpgFrontend::GpgKey::IsPrivateKey()'],['../classGpgFrontend_1_1GpgSubKey.html#accb86b50755698b3e1e7fdfe06f44e84',1,'GpgFrontend::GpgSubKey::IsPrivateKey()']]], + ['isrevoked_1161',['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_1162',['IsSecretKey',['../classGpgFrontend_1_1GpgSubKey.html#a8fcbeae2ef3ad73a5aedee19f6de3e60',1,'GpgFrontend::GpgSubKey']]], + ['issubkey_1163',['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 ad718e2c..9a826580 100644 --- a/docs/html/search/functions_a.js +++ b/docs/html/search/functions_a.js @@ -1,22 +1,22 @@ var searchData= [ - ['keygendialog_1156',['KeyGenDialog',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3aef8d2bb8e0d36842532726a6796ab9',1,'GpgFrontend::UI::KeyGenDialog']]], - ['keygenpage_1157',['KeyGenPage',['../classGpgFrontend_1_1UI_1_1KeyGenPage.html#a0eb5dad522c597dcd101c02f496e7e70',1,'GpgFrontend::UI::KeyGenPage']]], - ['keyimportdetaildialog_1158',['KeyImportDetailDialog',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a0177cdaa19d1f83c9e519039aa7a8ce1',1,'GpgFrontend::UI::KeyImportDetailDialog']]], - ['keylist_1159',['KeyList',['../classGpgFrontend_1_1UI_1_1KeyList.html#a7c9d5cacdb42e1fbda5d3cc96e861418',1,'GpgFrontend::UI::KeyList']]], - ['keymgmt_1160',['KeyMgmt',['../classGpgFrontend_1_1UI_1_1KeyMgmt.html#aefc27b57830cf14a85c2225664f89f64',1,'GpgFrontend::UI::KeyMgmt']]], - ['keynewuiddialog_1161',['KeyNewUIDDialog',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a7226b139dc7a491e8ba780135654be27',1,'GpgFrontend::UI::KeyNewUIDDialog']]], - ['keypairdetailtab_1162',['KeyPairDetailTab',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a76efd8f8d623813be1a329ad01972444',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['keypairoperatab_1163',['KeyPairOperaTab',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#aad4e209d7b4eb0ac6623b2f12ce5ecc5',1,'GpgFrontend::UI::KeyPairOperaTab']]], - ['keypairsubkeytab_1164',['KeyPairSubkeyTab',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a93abe5c0467c7c4a29e0c45437a10732',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], - ['keypairuidtab_1165',['KeyPairUIDTab',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#af18c4f08a127d919a316c7e27ba338d3',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['keypressevent_1166',['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_1167',['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_1168',['KeyServerImportTask',['../classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a1640363b4b27cb3d256181ddc6cdc857',1,'GpgFrontend::UI::KeyServerImportTask']]], - ['keyserversearchtask_1169',['KeyServerSearchTask',['../classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#a168e21bdfa72f43f91187ab29ece5efa',1,'GpgFrontend::UI::KeyServerSearchTask']]], - ['keyservertab_1170',['KeyserverTab',['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#aa3d3561d3bdf95de6486b2caa752616c',1,'GpgFrontend::UI::KeyserverTab']]], - ['keysetexpiredatedialog_1171',['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_1172',['KeyTable',['../structGpgFrontend_1_1UI_1_1KeyTable.html#a88606ba6954d60244faf38de419bfc47',1,'GpgFrontend::UI::KeyTable']]], - ['keyuidsigndialog_1173',['KeyUIDSignDialog',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#aaa06ce342178802e76119bec6b26cc55',1,'GpgFrontend::UI::KeyUIDSignDialog']]], - ['keyuploaddialog_1174',['KeyUploadDialog',['../classGpgFrontend_1_1UI_1_1KeyUploadDialog.html#a51f63e30f26f7923def91519d347c0cf',1,'GpgFrontend::UI::KeyUploadDialog']]] + ['keygendialog_1164',['KeyGenDialog',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3aef8d2bb8e0d36842532726a6796ab9',1,'GpgFrontend::UI::KeyGenDialog']]], + ['keygenpage_1165',['KeyGenPage',['../classGpgFrontend_1_1UI_1_1KeyGenPage.html#a0eb5dad522c597dcd101c02f496e7e70',1,'GpgFrontend::UI::KeyGenPage']]], + ['keyimportdetaildialog_1166',['KeyImportDetailDialog',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a0177cdaa19d1f83c9e519039aa7a8ce1',1,'GpgFrontend::UI::KeyImportDetailDialog']]], + ['keylist_1167',['KeyList',['../classGpgFrontend_1_1UI_1_1KeyList.html#a7c9d5cacdb42e1fbda5d3cc96e861418',1,'GpgFrontend::UI::KeyList']]], + ['keymgmt_1168',['KeyMgmt',['../classGpgFrontend_1_1UI_1_1KeyMgmt.html#aefc27b57830cf14a85c2225664f89f64',1,'GpgFrontend::UI::KeyMgmt']]], + ['keynewuiddialog_1169',['KeyNewUIDDialog',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a7226b139dc7a491e8ba780135654be27',1,'GpgFrontend::UI::KeyNewUIDDialog']]], + ['keypairdetailtab_1170',['KeyPairDetailTab',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a76efd8f8d623813be1a329ad01972444',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['keypairoperatab_1171',['KeyPairOperaTab',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#aad4e209d7b4eb0ac6623b2f12ce5ecc5',1,'GpgFrontend::UI::KeyPairOperaTab']]], + ['keypairsubkeytab_1172',['KeyPairSubkeyTab',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a93abe5c0467c7c4a29e0c45437a10732',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], + ['keypairuidtab_1173',['KeyPairUIDTab',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#af18c4f08a127d919a316c7e27ba338d3',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['keypressevent_1174',['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_1175',['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_1176',['KeyServerImportTask',['../classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a1640363b4b27cb3d256181ddc6cdc857',1,'GpgFrontend::UI::KeyServerImportTask']]], + ['keyserversearchtask_1177',['KeyServerSearchTask',['../classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#a168e21bdfa72f43f91187ab29ece5efa',1,'GpgFrontend::UI::KeyServerSearchTask']]], + ['keyservertab_1178',['KeyserverTab',['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#aa3d3561d3bdf95de6486b2caa752616c',1,'GpgFrontend::UI::KeyserverTab']]], + ['keysetexpiredatedialog_1179',['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_1180',['KeyTable',['../structGpgFrontend_1_1UI_1_1KeyTable.html#ae78160011d93abc43a1ca0f28c2ad943',1,'GpgFrontend::UI::KeyTable']]], + ['keyuidsigndialog_1181',['KeyUIDSignDialog',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#aaa06ce342178802e76119bec6b26cc55',1,'GpgFrontend::UI::KeyUIDSignDialog']]], + ['keyuploaddialog_1182',['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 0e1d4150..e09bbdc3 100644 --- a/docs/html/search/functions_b.js +++ b/docs/html/search/functions_b.js @@ -1,8 +1,8 @@ var searchData= [ - ['listedkeyservertesttask_1175',['ListedKeyServerTestTask',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#ae25b5d59b53facc15648ab80ff19ed77',1,'GpgFrontend::UI::ListedKeyServerTestTask']]], - ['listlanguages_1176',['ListLanguages',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#acd22ac2fd91704551e5317e2c549ae26',1,'GpgFrontend::UI::SettingsDialog']]], - ['loadfile_1177',['LoadFile',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a72ed46454c833adb038c36d8d4322d18',1,'GpgFrontend::UI::TextEdit']]], - ['localized_5fhelp_1178',['localized_help',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a49fbde87f2ef385b44225acd6ffbc84f',1,'GpgFrontend::UI::HelpPage']]], - ['lookupsettings_1179',['LookupSettings',['../classGpgFrontend_1_1GlobalSettingStation.html#a819b3f4ea553fc1e839ef0ae230f0ea2',1,'GpgFrontend::GlobalSettingStation']]] + ['listedkeyservertesttask_1183',['ListedKeyServerTestTask',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#ae25b5d59b53facc15648ab80ff19ed77',1,'GpgFrontend::UI::ListedKeyServerTestTask']]], + ['listlanguages_1184',['ListLanguages',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#acd22ac2fd91704551e5317e2c549ae26',1,'GpgFrontend::UI::SettingsDialog']]], + ['loadfile_1185',['LoadFile',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a72ed46454c833adb038c36d8d4322d18',1,'GpgFrontend::UI::TextEdit']]], + ['localized_5fhelp_1186',['localized_help',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a49fbde87f2ef385b44225acd6ffbc84f',1,'GpgFrontend::UI::HelpPage']]], + ['lookupsettings_1187',['LookupSettings',['../classGpgFrontend_1_1GlobalSettingStation.html#a819b3f4ea553fc1e839ef0ae230f0ea2',1,'GpgFrontend::GlobalSettingStation']]] ]; diff --git a/docs/html/search/functions_c.js b/docs/html/search/functions_c.js index e900a2b2..ce9fa8dd 100644 --- a/docs/html/search/functions_c.js +++ b/docs/html/search/functions_c.js @@ -1,8 +1,8 @@ var searchData= [ - ['markkeys_1180',['MarkKeys',['../classGpgFrontend_1_1UI_1_1KeyList.html#a31a4c067eed90830203862cb4adf951e',1,'GpgFrontend::UI::KeyList']]], - ['maybe_5fsave_5fcurrent_5ftab_1181',['maybe_save_current_tab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a8fad090a19479a9fe89432300cca2b6c',1,'GpgFrontend::UI::TextEdit']]], - ['maybesaveanytab_1182',['MaybeSaveAnyTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3c976a5494d06c2186d94e7cc8ebe457',1,'GpgFrontend::UI::TextEdit']]], - ['modifypassword_1183',['ModifyPassword',['../classGpgFrontend_1_1GpgKeyOpera.html#ab7e16d1f4cba23ea5b5b9f6009ce5ee2',1,'GpgFrontend::GpgKeyOpera']]], - ['modifytofupolicy_1184',['ModifyTOFUPolicy',['../classGpgFrontend_1_1GpgKeyOpera.html#a76a7f59701add8a59d8835919dad2000',1,'GpgFrontend::GpgKeyOpera']]] + ['markkeys_1188',['MarkKeys',['../classGpgFrontend_1_1UI_1_1KeyList.html#a31a4c067eed90830203862cb4adf951e',1,'GpgFrontend::UI::KeyList']]], + ['maybe_5fsave_5fcurrent_5ftab_1189',['maybe_save_current_tab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a8fad090a19479a9fe89432300cca2b6c',1,'GpgFrontend::UI::TextEdit']]], + ['maybesaveanytab_1190',['MaybeSaveAnyTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3c976a5494d06c2186d94e7cc8ebe457',1,'GpgFrontend::UI::TextEdit']]], + ['modifypassword_1191',['ModifyPassword',['../classGpgFrontend_1_1GpgKeyOpera.html#ab7e16d1f4cba23ea5b5b9f6009ce5ee2',1,'GpgFrontend::GpgKeyOpera']]], + ['modifytofupolicy_1192',['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 4a4e3111..9ffc9284 100644 --- a/docs/html/search/functions_d.js +++ b/docs/html/search/functions_d.js @@ -1,10 +1,10 @@ var searchData= [ - ['need_5fuser_5finput_5fpassphrase_1185',['need_user_input_passphrase',['../classGpgFrontend_1_1GpgContext.html#ac7c9b2212a77e7cede94d68243541b1b',1,'GpgFrontend::GpgContext']]], - ['needupgrade_1186',['NeedUpgrade',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#abc311fd0e15da1a04b995587ca74e1a6',1,'GpgFrontend::UI::SoftwareVersion']]], - ['networktab_1187',['NetworkTab',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#a444d3630919c1f9c4db495a58acbb9a8',1,'GpgFrontend::UI::NetworkTab']]], - ['new_5fdefault_5fsettings_5fchannel_1188',['new_default_settings_channel',['../namespaceGpgFrontend.html#aafb9aa0ba1d03afa09085b1b8136c55f',1,'GpgFrontend']]], - ['nextid_1189',['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_1190',['notify',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a6f8ab335d89948c48cd634ab20ff9aa0',1,'GpgFrontend::UI::GpgFrontendApplication']]], - ['notifyfilesaved_1191',['NotifyFileSaved',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a29b3d63ba9590e775f42c779c76102e5',1,'GpgFrontend::UI::PlainTextEditorPage']]] + ['need_5fuser_5finput_5fpassphrase_1193',['need_user_input_passphrase',['../classGpgFrontend_1_1GpgContext.html#ac7c9b2212a77e7cede94d68243541b1b',1,'GpgFrontend::GpgContext']]], + ['needupgrade_1194',['NeedUpgrade',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#abc311fd0e15da1a04b995587ca74e1a6',1,'GpgFrontend::UI::SoftwareVersion']]], + ['networktab_1195',['NetworkTab',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#a444d3630919c1f9c4db495a58acbb9a8',1,'GpgFrontend::UI::NetworkTab']]], + ['new_5fdefault_5fsettings_5fchannel_1196',['new_default_settings_channel',['../namespaceGpgFrontend.html#aafb9aa0ba1d03afa09085b1b8136c55f',1,'GpgFrontend']]], + ['nextid_1197',['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_1198',['notify',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a6f8ab335d89948c48cd634ab20ff9aa0',1,'GpgFrontend::UI::GpgFrontendApplication']]], + ['notifyfilesaved_1199',['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 2c4a5e49..87a5d2e3 100644 --- a/docs/html/search/functions_e.js +++ b/docs/html/search/functions_e.js @@ -1,10 +1,10 @@ var searchData= [ - ['oncustomcontextmenu_1192',['onCustomContextMenu',['../classGpgFrontend_1_1UI_1_1FilePage.html#aa80dc1b74a0ec65d06e5dffaa21cc785',1,'GpgFrontend::UI::FilePage']]], - ['operator_20gpgme_5fctx_5ft_1193',['operator gpgme_ctx_t',['../classGpgFrontend_1_1GpgContext.html#a5b419175bd9927f3d449637db8ba6524',1,'GpgFrontend::GpgContext']]], - ['operator_20gpgme_5fdata_5ft_1194',['operator gpgme_data_t',['../classGpgFrontend_1_1GpgData.html#afca7a03bd71436c8b3c4f6e8c2acd700',1,'GpgFrontend::GpgData']]], - ['operator_20gpgme_5fkey_5ft_1195',['operator gpgme_key_t',['../classGpgFrontend_1_1GpgKey.html#a827962251cf47c41dbea56665ae4207b',1,'GpgFrontend::GpgKey']]], - ['operator_3c_3d_1196',['operator<=',['../classGpgFrontend_1_1GpgKey.html#adc22a349796af0ff5dd4499624b6d03d',1,'GpgFrontend::GpgKey']]], - ['operator_3d_1197',['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_1198',['operator==',['../classGpgFrontend_1_1GpgKey.html#a4f50b2f13b3a5dc7298ee9665e7a5367',1,'GpgFrontend::GpgKey::operator==()'],['../classGpgFrontend_1_1GpgSubKey.html#a1c88420ec4756f2e5bda1b76ff2f7c2d',1,'GpgFrontend::GpgSubKey::operator==()']]] + ['oncustomcontextmenu_1200',['onCustomContextMenu',['../classGpgFrontend_1_1UI_1_1FilePage.html#aa80dc1b74a0ec65d06e5dffaa21cc785',1,'GpgFrontend::UI::FilePage']]], + ['operator_20gpgme_5fctx_5ft_1201',['operator gpgme_ctx_t',['../classGpgFrontend_1_1GpgContext.html#a5b419175bd9927f3d449637db8ba6524',1,'GpgFrontend::GpgContext']]], + ['operator_20gpgme_5fdata_5ft_1202',['operator gpgme_data_t',['../classGpgFrontend_1_1GpgData.html#afca7a03bd71436c8b3c4f6e8c2acd700',1,'GpgFrontend::GpgData']]], + ['operator_20gpgme_5fkey_5ft_1203',['operator gpgme_key_t',['../classGpgFrontend_1_1GpgKey.html#a827962251cf47c41dbea56665ae4207b',1,'GpgFrontend::GpgKey']]], + ['operator_3c_3d_1204',['operator<=',['../classGpgFrontend_1_1GpgKey.html#adc22a349796af0ff5dd4499624b6d03d',1,'GpgFrontend::GpgKey']]], + ['operator_3d_1205',['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_1206',['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 9bf57d66..859bf554 100644 --- a/docs/html/search/functions_f.js +++ b/docs/html/search/functions_f.js @@ -1,16 +1,16 @@ var searchData= [ - ['passphrasegenerator_1199',['PassphraseGenerator',['../classGpgFrontend_1_1PassphraseGenerator.html#ac82ef545a54468ad02253a61cc62e3cf',1,'GpgFrontend::PassphraseGenerator']]], - ['plaintexteditorpage_1200',['PlainTextEditorPage',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a8759224e57d4c322933ed3df6d96e5f1',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['popobject_1201',['PopObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a5ef5ddec0b82017cc4ad7f34b9b13f64',1,'GpgFrontend::Thread::Task::DataObject']]], - ['post_5finit_5fctx_1202',['post_init_ctx',['../classGpgFrontend_1_1GpgContext.html#aaf3f394ff1790897c315c3249b1f06fe',1,'GpgFrontend::GpgContext']]], - ['postscheduletask_1203',['PostScheduleTask',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#aaddb0cdd8eb57aac08ca9caf8b8e6bac',1,'GpgFrontend::Thread::TaskRunner']]], - ['posttask_1204',['PostTask',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a4fae01eb0a5b296b8c4c6bf8408f1c6b',1,'GpgFrontend::Thread::TaskRunner']]], - ['print_5frecipient_1205',['print_recipient',['../classGpgFrontend_1_1GpgDecryptResultAnalyse.html#a1aac1c1f77a12069479a47f54a934c44',1,'GpgFrontend::GpgDecryptResultAnalyse']]], - ['print_5fsigner_1206',['print_signer',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a57bf4a26466e07f7f0ecc19de3782104',1,'GpgFrontend::GpgVerifyResultAnalyse']]], - ['process_5fdirectory_5finto_5ftarball_1207',['process_directory_into_tarball',['../namespaceGpgFrontend_1_1UI.html#a5470872566b41ce628f64039f34b964a',1,'GpgFrontend::UI']]], - ['process_5foperation_1208',['process_operation',['../namespaceGpgFrontend_1_1UI.html#a3c971eeb5c620d08d6d92f0752ceaf9f',1,'GpgFrontend::UI']]], - ['process_5fresult_5fanalyse_1209',['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_1210',['process_tarball_into_directory',['../namespaceGpgFrontend_1_1UI.html#a57d0a4dba23cd3d9b42222d40c710dc1',1,'GpgFrontend::UI']]], - ['proxyconnectiontesttask_1211',['ProxyConnectionTestTask',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask.html#a8036aaf9a2adcf033fc9f8e51da59956',1,'GpgFrontend::UI::ProxyConnectionTestTask']]] + ['passphrasegenerator_1207',['PassphraseGenerator',['../classGpgFrontend_1_1PassphraseGenerator.html#ac82ef545a54468ad02253a61cc62e3cf',1,'GpgFrontend::PassphraseGenerator']]], + ['plaintexteditorpage_1208',['PlainTextEditorPage',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a8759224e57d4c322933ed3df6d96e5f1',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['popobject_1209',['PopObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a5ef5ddec0b82017cc4ad7f34b9b13f64',1,'GpgFrontend::Thread::Task::DataObject']]], + ['post_5finit_5fctx_1210',['post_init_ctx',['../classGpgFrontend_1_1GpgContext.html#aaf3f394ff1790897c315c3249b1f06fe',1,'GpgFrontend::GpgContext']]], + ['postscheduletask_1211',['PostScheduleTask',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#aaddb0cdd8eb57aac08ca9caf8b8e6bac',1,'GpgFrontend::Thread::TaskRunner']]], + ['posttask_1212',['PostTask',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a4fae01eb0a5b296b8c4c6bf8408f1c6b',1,'GpgFrontend::Thread::TaskRunner']]], + ['print_5frecipient_1213',['print_recipient',['../classGpgFrontend_1_1GpgDecryptResultAnalyse.html#a1aac1c1f77a12069479a47f54a934c44',1,'GpgFrontend::GpgDecryptResultAnalyse']]], + ['print_5fsigner_1214',['print_signer',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a57bf4a26466e07f7f0ecc19de3782104',1,'GpgFrontend::GpgVerifyResultAnalyse']]], + ['process_5fdirectory_5finto_5ftarball_1215',['process_directory_into_tarball',['../namespaceGpgFrontend_1_1UI.html#a5470872566b41ce628f64039f34b964a',1,'GpgFrontend::UI']]], + ['process_5foperation_1216',['process_operation',['../namespaceGpgFrontend_1_1UI.html#a3c971eeb5c620d08d6d92f0752ceaf9f',1,'GpgFrontend::UI']]], + ['process_5fresult_5fanalyse_1217',['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_1218',['process_tarball_into_directory',['../namespaceGpgFrontend_1_1UI.html#a57d0a4dba23cd3d9b42222d40c710dc1',1,'GpgFrontend::UI']]], + ['proxyconnectiontesttask_1219',['ProxyConnectionTestTask',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask.html#a8036aaf9a2adcf033fc9f8e51da59956',1,'GpgFrontend::UI::ProxyConnectionTestTask']]] ]; diff --git a/docs/html/search/namespaces_0.js b/docs/html/search/namespaces_0.js index 40393ab7..7c76b764 100644 --- a/docs/html/search/namespaces_0.js +++ b/docs/html/search/namespaces_0.js @@ -1,7 +1,7 @@ var searchData= [ - ['gpgfrontend_879',['GpgFrontend',['../namespaceGpgFrontend.html',1,'']]], - ['rawapi_880',['RawAPI',['../namespaceGpgFrontend_1_1RawAPI.html',1,'GpgFrontend']]], - ['thread_881',['Thread',['../namespaceGpgFrontend_1_1Thread.html',1,'GpgFrontend']]], - ['ui_882',['UI',['../namespaceGpgFrontend_1_1UI.html',1,'GpgFrontend']]] + ['gpgfrontend_885',['GpgFrontend',['../namespaceGpgFrontend.html',1,'']]], + ['rawapi_886',['RawAPI',['../namespaceGpgFrontend_1_1RawAPI.html',1,'GpgFrontend']]], + ['thread_887',['Thread',['../namespaceGpgFrontend_1_1Thread.html',1,'GpgFrontend']]], + ['ui_888',['UI',['../namespaceGpgFrontend_1_1UI.html',1,'GpgFrontend']]] ]; diff --git a/docs/html/search/pages_0.js b/docs/html/search/pages_0.js index b0bee7e2..d9d4cc31 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_1572',['GpgFrontend Develop Document Main Page',['../index.html',1,'']]] + ['gpgfrontend_20develop_20document_20main_20page_1579',['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 d13206cf..46e37c18 100644 --- a/docs/html/search/variables_0.js +++ b/docs/html/search/variables_0.js @@ -1,5 +1,5 @@ var searchData= [ - ['_5fdefault_5fchannel_1434',['_default_channel',['../classGpgFrontend_1_1ChannelObject.html#a66295bb572e98fc2fad3afce763ac311',1,'GpgFrontend::ChannelObject']]], - ['_5finstance_1435',['_instance',['../classGpgFrontend_1_1CoreSignalStation.html#a36c316a2a76fdf7c3e74dfa5f8ed6b15',1,'GpgFrontend::CoreSignalStation']]] + ['_5fdefault_5fchannel_1441',['_default_channel',['../classGpgFrontend_1_1ChannelObject.html#a66295bb572e98fc2fad3afce763ac311',1,'GpgFrontend::ChannelObject']]], + ['_5finstance_1442',['_instance',['../classGpgFrontend_1_1CoreSignalStation.html#a36c316a2a76fdf7c3e74dfa5f8ed6b15',1,'GpgFrontend::CoreSignalStation']]] ]; diff --git a/docs/html/search/variables_1.js b/docs/html/search/variables_1.js index 5e8bb141..920b9ba0 100644 --- a/docs/html/search/variables_1.js +++ b/docs/html/search/variables_1.js @@ -1,20 +1,20 @@ var searchData= [ - ['about_5fact_5f_1436',['about_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9dd292f55fba1fe62c83508fef7e43a1',1,'GpgFrontend::UI::MainWindow']]], - ['add_5fpgp_5fheader_5fact_5f_1437',['add_pgp_header_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a95b2c86afbefe47e79af87e56032e306',1,'GpgFrontend::UI::MainWindow']]], - ['additional_5fuid_5fbox_5f_1438',['additional_uid_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a265ef140feec330e7341c1369c0aefab',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['algorithm_5fvar_5flabel_5f_1439',['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_1440',['app_configure_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a4d04bb665571921421b853f18b8b300a',1,'GpgFrontend::GlobalSettingStation']]], - ['app_5fdata_5fobjs_5fpath_5f_1441',['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_1442',['app_data_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a58fff8a42f98ad7989bffb8322344cd6',1,'GpgFrontend::GlobalSettingStation']]], - ['app_5flocale_5fpath_5f_1443',['app_locale_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a25c1b45a2ccdc21dd2dcba58866169fb',1,'GpgFrontend::GlobalSettingStation']]], - ['app_5flog_5fpath_5f_1444',['app_log_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a6459653a71cc8285fa554943c7fb3ca7',1,'GpgFrontend::GlobalSettingStation']]], - ['app_5fpath_5f_1445',['app_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a678f8ba120f9ad050d0adfec4476d7ac',1,'GpgFrontend::GlobalSettingStation']]], - ['app_5fresource_5fpath_5f_1446',['app_resource_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a1d94a126c78ac01ec01f10d2ce575388',1,'GpgFrontend::GlobalSettingStation']]], - ['app_5fsecure_5fkey_5fpath_5f_1447',['app_secure_key_path_',['../classGpgFrontend_1_1DataObjectOperator.html#a56c0c031cd327207260c73d1885dbdca',1,'GpgFrontend::DataObjectOperator']]], - ['app_5fsecure_5fpath_5f_1448',['app_secure_path_',['../classGpgFrontend_1_1DataObjectOperator.html#a6d38d25c91c33c48d083ec4de051108a',1,'GpgFrontend::DataObjectOperator']]], - ['append_5fselected_5fkeys_5fact_5f_1449',['append_selected_keys_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab67486a71126073e7c39ca12603198f4',1,'GpgFrontend::UI::MainWindow']]], - ['apppath_1450',['AppPath',['../classGpgFrontend_1_1GpgInfo.html#a2416ae0ab9bedc61782d16075750a9c0',1,'GpgFrontend::GpgInfo']]], - ['assuanpath_1451',['AssuanPath',['../classGpgFrontend_1_1GpgInfo.html#a48659b780f8d0153ca0eb985a072b5ba',1,'GpgFrontend::GpgInfo']]], - ['attachment_5fdock_5f_1452',['attachment_dock_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#afd243a5f00f86d65431081ead2cae153',1,'GpgFrontend::UI::MainWindow']]] + ['about_5fact_5f_1443',['about_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9dd292f55fba1fe62c83508fef7e43a1',1,'GpgFrontend::UI::MainWindow']]], + ['add_5fpgp_5fheader_5fact_5f_1444',['add_pgp_header_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a95b2c86afbefe47e79af87e56032e306',1,'GpgFrontend::UI::MainWindow']]], + ['additional_5fuid_5fbox_5f_1445',['additional_uid_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a265ef140feec330e7341c1369c0aefab',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['algorithm_5fvar_5flabel_5f_1446',['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_1447',['app_configure_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a4d04bb665571921421b853f18b8b300a',1,'GpgFrontend::GlobalSettingStation']]], + ['app_5fdata_5fobjs_5fpath_5f_1448',['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_1449',['app_data_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a58fff8a42f98ad7989bffb8322344cd6',1,'GpgFrontend::GlobalSettingStation']]], + ['app_5flocale_5fpath_5f_1450',['app_locale_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a25c1b45a2ccdc21dd2dcba58866169fb',1,'GpgFrontend::GlobalSettingStation']]], + ['app_5flog_5fpath_5f_1451',['app_log_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a6459653a71cc8285fa554943c7fb3ca7',1,'GpgFrontend::GlobalSettingStation']]], + ['app_5fpath_5f_1452',['app_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a678f8ba120f9ad050d0adfec4476d7ac',1,'GpgFrontend::GlobalSettingStation']]], + ['app_5fresource_5fpath_5f_1453',['app_resource_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a1d94a126c78ac01ec01f10d2ce575388',1,'GpgFrontend::GlobalSettingStation']]], + ['app_5fsecure_5fkey_5fpath_5f_1454',['app_secure_key_path_',['../classGpgFrontend_1_1DataObjectOperator.html#a56c0c031cd327207260c73d1885dbdca',1,'GpgFrontend::DataObjectOperator']]], + ['app_5fsecure_5fpath_5f_1455',['app_secure_path_',['../classGpgFrontend_1_1DataObjectOperator.html#a6d38d25c91c33c48d083ec4de051108a',1,'GpgFrontend::DataObjectOperator']]], + ['append_5fselected_5fkeys_5fact_5f_1456',['append_selected_keys_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab67486a71126073e7c39ca12603198f4',1,'GpgFrontend::UI::MainWindow']]], + ['apppath_1457',['AppPath',['../classGpgFrontend_1_1GpgInfo.html#a2416ae0ab9bedc61782d16075750a9c0',1,'GpgFrontend::GpgInfo']]], + ['assuanpath_1458',['AssuanPath',['../classGpgFrontend_1_1GpgInfo.html#a48659b780f8d0153ca0eb985a072b5ba',1,'GpgFrontend::GpgInfo']]], + ['attachment_5fdock_5f_1459',['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 1ca41402..f4713807 100644 --- a/docs/html/search/variables_10.js +++ b/docs/html/search/variables_10.js @@ -1,5 +1,5 @@ var searchData= [ - ['quit_5fact_5f_1542',['quit_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#abe0683e48485f9fcff622d9519c37ed9',1,'GpgFrontend::UI::MainWindow']]], - ['quote_5fact_5f_1543',['quote_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af9640e5732c2595d0c094e7ff7e371ac',1,'GpgFrontend::UI::MainWindow']]] + ['quit_5fact_5f_1549',['quit_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#abe0683e48485f9fcff622d9519c37ed9',1,'GpgFrontend::UI::MainWindow']]], + ['quote_5fact_5f_1550',['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 829a22e1..dffac836 100644 --- a/docs/html/search/variables_11.js +++ b/docs/html/search/variables_11.js @@ -1,5 +1,5 @@ var searchData= [ - ['rd_5f_1544',['rd_',['../classGpgFrontend_1_1DataObjectOperator.html#a24c9cdbe9256e332ac93d6dc28c76b90',1,'GpgFrontend::DataObjectOperator::rd_()'],['../classGpgFrontend_1_1PassphraseGenerator.html#a12ee6f9b7fff4883074321c7e0de3dfa',1,'GpgFrontend::PassphraseGenerator::rd_()']]], - ['redo_5fact_5f_1545',['redo_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#abe38474d4e81726147f9df8a9721ce6e',1,'GpgFrontend::UI::MainWindow']]] + ['rd_5f_1551',['rd_',['../classGpgFrontend_1_1DataObjectOperator.html#a24c9cdbe9256e332ac93d6dc28c76b90',1,'GpgFrontend::DataObjectOperator::rd_()'],['../classGpgFrontend_1_1PassphraseGenerator.html#a12ee6f9b7fff4883074321c7e0de3dfa',1,'GpgFrontend::PassphraseGenerator::rd_()']]], + ['redo_5fact_5f_1552',['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 d327baaf..a7e136c3 100644 --- a/docs/html/search/variables_12.js +++ b/docs/html/search/variables_12.js @@ -1,16 +1,16 @@ var searchData= [ - ['save_5fact_5f_1546',['save_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab0f148559d830fcf10b5a1937b0a47dc',1,'GpgFrontend::UI::MainWindow']]], - ['save_5fas_5fact_5f_1547',['save_as_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a22256763ef83ed35a81e446b553d8112',1,'GpgFrontend::UI::MainWindow']]], - ['select_5fall_5fact_5f_1548',['select_all_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ac6a42e6e3af7e76f0bd2ecc62c9520cc',1,'GpgFrontend::UI::MainWindow']]], - ['sequency_5f_1549',['sequency_',['../classGpgFrontend_1_1Thread_1_1Task.html#a71ed097a2c4b4b735fd385dfe87e6f57',1,'GpgFrontend::Thread::Task']]], - ['show_5fkey_5fdetails_5fact_5f_1550',['show_key_details_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#acd41722ceedd20973b7d83852fab407b',1,'GpgFrontend::UI::MainWindow']]], - ['sign_5fact_5f_1551',['sign_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0cded37ef6e07856bbe439b0e90db839',1,'GpgFrontend::UI::MainWindow']]], - ['sign_5fmarked_5f_1552',['sign_marked_',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a4f94e9ef7889a169bda5a47b7f657358',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['special_5fedit_5ftool_5fbar_5f_1553',['special_edit_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af2b3e3a0e9894633e1839df289f5ffe0',1,'GpgFrontend::UI::MainWindow']]], - ['start_5fwizard_5fact_5f_1554',['start_wizard_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab0019ca316b971c594c2f20f418256a6',1,'GpgFrontend::UI::MainWindow']]], - ['steganography_5fmenu_5f_1555',['steganography_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af763a506aed7d0fb2125d1859583b853',1,'GpgFrontend::UI::MainWindow']]], - ['storages_5fmutex_5f_1556',['storages_mutex_',['../classGpgFrontend_1_1SingletonStorageCollection.html#ab648cb257beb2475eb5fca6453c331f9',1,'GpgFrontend::SingletonStorageCollection']]], - ['switch_5ftab_5fdown_5fact_5f_1557',['switch_tab_down_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a88af746cd550792ab6095d2ebbd29b41',1,'GpgFrontend::UI::MainWindow']]], - ['switch_5ftab_5fup_5fact_5f_1558',['switch_tab_up_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8d5ce6514ef3fa8ac3223176f5fa2701',1,'GpgFrontend::UI::MainWindow']]] + ['save_5fact_5f_1553',['save_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab0f148559d830fcf10b5a1937b0a47dc',1,'GpgFrontend::UI::MainWindow']]], + ['save_5fas_5fact_5f_1554',['save_as_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a22256763ef83ed35a81e446b553d8112',1,'GpgFrontend::UI::MainWindow']]], + ['select_5fall_5fact_5f_1555',['select_all_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ac6a42e6e3af7e76f0bd2ecc62c9520cc',1,'GpgFrontend::UI::MainWindow']]], + ['sequency_5f_1556',['sequency_',['../classGpgFrontend_1_1Thread_1_1Task.html#a71ed097a2c4b4b735fd385dfe87e6f57',1,'GpgFrontend::Thread::Task']]], + ['show_5fkey_5fdetails_5fact_5f_1557',['show_key_details_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#acd41722ceedd20973b7d83852fab407b',1,'GpgFrontend::UI::MainWindow']]], + ['sign_5fact_5f_1558',['sign_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0cded37ef6e07856bbe439b0e90db839',1,'GpgFrontend::UI::MainWindow']]], + ['sign_5fmarked_5f_1559',['sign_marked_',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a4f94e9ef7889a169bda5a47b7f657358',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['special_5fedit_5ftool_5fbar_5f_1560',['special_edit_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af2b3e3a0e9894633e1839df289f5ffe0',1,'GpgFrontend::UI::MainWindow']]], + ['start_5fwizard_5fact_5f_1561',['start_wizard_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab0019ca316b971c594c2f20f418256a6',1,'GpgFrontend::UI::MainWindow']]], + ['steganography_5fmenu_5f_1562',['steganography_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af763a506aed7d0fb2125d1859583b853',1,'GpgFrontend::UI::MainWindow']]], + ['storages_5fmutex_5f_1563',['storages_mutex_',['../classGpgFrontend_1_1SingletonStorageCollection.html#ab648cb257beb2475eb5fca6453c331f9',1,'GpgFrontend::SingletonStorageCollection']]], + ['switch_5ftab_5fdown_5fact_5f_1564',['switch_tab_down_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a88af746cd550792ab6095d2ebbd29b41',1,'GpgFrontend::UI::MainWindow']]], + ['switch_5ftab_5fup_5fact_5f_1565',['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 c89cc0c8..0acc1411 100644 --- a/docs/html/search/variables_13.js +++ b/docs/html/search/variables_13.js @@ -1,7 +1,7 @@ var searchData= [ - ['tasks_1559',['tasks',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a774775e9a91d33072b27dcf78cead6e2',1,'GpgFrontend::Thread::TaskRunner']]], - ['tasks_5fmutex_5f_1560',['tasks_mutex_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a5e72f1ce00d41c225a4304f1ed20b3f1',1,'GpgFrontend::Thread::TaskRunner']]], - ['thread_5fpool_5f_1561',['thread_pool_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a2bdc321dd0732ba7a72499b2dc12f7c9',1,'GpgFrontend::Thread::TaskRunner']]], - ['translate_5fact_5f_1562',['translate_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adbac799672c43c90810366825d837e4e',1,'GpgFrontend::UI::MainWindow']]] + ['tasks_1566',['tasks',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a774775e9a91d33072b27dcf78cead6e2',1,'GpgFrontend::Thread::TaskRunner']]], + ['tasks_5fmutex_5f_1567',['tasks_mutex_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a5e72f1ce00d41c225a4304f1ed20b3f1',1,'GpgFrontend::Thread::TaskRunner']]], + ['thread_5fpool_5f_1568',['thread_pool_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a2bdc321dd0732ba7a72499b2dc12f7c9',1,'GpgFrontend::Thread::TaskRunner']]], + ['translate_5fact_5f_1569',['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 5ece09a3..6052f65a 100644 --- a/docs/html/search/variables_14.js +++ b/docs/html/search/variables_14.js @@ -1,7 +1,7 @@ var searchData= [ - ['ui_5fcfg_5f_1563',['ui_cfg_',['../classGpgFrontend_1_1GlobalSettingStation.html#a1818e08063d6a886975f77354fc5d85c',1,'GpgFrontend::GlobalSettingStation']]], - ['ui_5fconfig_5fdir_5fpath_5f_1564',['ui_config_dir_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#ab618fef68cfd4ff6e42d4a4aa8ea94bb',1,'GpgFrontend::GlobalSettingStation']]], - ['ui_5fconfig_5fpath_5f_1565',['ui_config_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#afa99ddc25c0d5fd59a4c5f0e61d13830',1,'GpgFrontend::GlobalSettingStation']]], - ['undo_5fact_5f_1566',['undo_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa498dfecac36590e4b60d50824dff58c',1,'GpgFrontend::UI::MainWindow']]] + ['ui_5fcfg_5f_1570',['ui_cfg_',['../classGpgFrontend_1_1GlobalSettingStation.html#a1818e08063d6a886975f77354fc5d85c',1,'GpgFrontend::GlobalSettingStation']]], + ['ui_5fconfig_5fdir_5fpath_5f_1571',['ui_config_dir_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#ab618fef68cfd4ff6e42d4a4aa8ea94bb',1,'GpgFrontend::GlobalSettingStation']]], + ['ui_5fconfig_5fpath_5f_1572',['ui_config_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#afa99ddc25c0d5fd59a4c5f0e61d13830',1,'GpgFrontend::GlobalSettingStation']]], + ['undo_5fact_5f_1573',['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 3cfabe2a..69629d85 100644 --- a/docs/html/search/variables_15.js +++ b/docs/html/search/variables_15.js @@ -1,5 +1,5 @@ var searchData= [ - ['verify_5fact_5f_1567',['verify_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a14bb12fa25620e1a93bd23c9f7c84081',1,'GpgFrontend::UI::MainWindow']]], - ['view_5fmenu_5f_1568',['view_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0e9920cf0fc974ac2f70d3f039f009f2',1,'GpgFrontend::UI::MainWindow']]] + ['verify_5fact_5f_1574',['verify_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a14bb12fa25620e1a93bd23c9f7c84081',1,'GpgFrontend::UI::MainWindow']]], + ['view_5fmenu_5f_1575',['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 f8b04623..fa5dfa9c 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_1569',['zoom_in_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3cb7daedbef61c1be27635c9ebc9e689',1,'GpgFrontend::UI::MainWindow']]], - ['zoom_5fout_5fact_5f_1570',['zoom_out_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a70397629ae3ffe039051b80a099c7979',1,'GpgFrontend::UI::MainWindow']]] + ['zoom_5fin_5fact_5f_1576',['zoom_in_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3cb7daedbef61c1be27635c9ebc9e689',1,'GpgFrontend::UI::MainWindow']]], + ['zoom_5fout_5fact_5f_1577',['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 67eaefa2..d0cf0df0 100644 --- a/docs/html/search/variables_2.js +++ b/docs/html/search/variables_2.js @@ -1,6 +1,6 @@ var searchData= [ - ['browser_5f_1453',['browser_',['../classGpgFrontend_1_1UI_1_1HelpPage.html#af4f61342fae06a49c95d8d20ca51ca2c',1,'GpgFrontend::UI::HelpPage']]], - ['browser_5fact_5f_1454',['browser_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3c0a5305cf55fe5bee2f18298f983cad',1,'GpgFrontend::UI::MainWindow']]], - ['button_5fbox_5f_1455',['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_1460',['browser_',['../classGpgFrontend_1_1UI_1_1HelpPage.html#af4f61342fae06a49c95d8d20ca51ca2c',1,'GpgFrontend::UI::HelpPage']]], + ['browser_5fact_5f_1461',['browser_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3c0a5305cf55fe5bee2f18298f983cad',1,'GpgFrontend::UI::MainWindow']]], + ['button_5fbox_5f_1462',['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 3e80d4ef..cb3218b7 100644 --- a/docs/html/search/variables_3.js +++ b/docs/html/search/variables_3.js @@ -1,21 +1,21 @@ var searchData= [ - ['channel_5f_1456',['channel_',['../classGpgFrontend_1_1ChannelObject.html#aee5f8a5575adbdf522da4dd195c091ee',1,'GpgFrontend::ChannelObject']]], - ['check_5fupdate_5fact_5f_1457',['check_update_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a672f4ef07be6ad645613ecd49399700d',1,'GpgFrontend::UI::MainWindow']]], - ['clean_5fdouble_5fline_5fbreaks_5fact_5f_1458',['clean_double_line_breaks_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0cb094e0409337cfd7dba1bb510ea96e',1,'GpgFrontend::UI::MainWindow']]], - ['close_5ftab_5fact_5f_1459',['close_tab_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a09671c3aa26a750cfd6be6c092de8715',1,'GpgFrontend::UI::MainWindow']]], - ['cmspath_1460',['CMSPath',['../classGpgFrontend_1_1GpgInfo.html#ac8ecbf438d05dc434c77825dd38dfdf2',1,'GpgFrontend::GpgInfo']]], - ['comment_5fedit_5f_1461',['comment_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3008e2a9879a8e122e422f67cf0018f8',1,'GpgFrontend::UI::KeyGenDialog']]], - ['comment_5fvar_5flabel_5f_1462',['comment_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a83b1290251a204def52677ae000a17ec',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['copy_5fact_5f_1463',['copy_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a71402943f4ed19e3aba0556b23eaa8f8',1,'GpgFrontend::UI::MainWindow']]], - ['copy_5fmail_5faddress_5fto_5fclipboard_5fact_5f_1464',['copy_mail_address_to_clipboard_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af77f66b6b869f6ddb3d2caa3bc40bb09',1,'GpgFrontend::UI::MainWindow']]], - ['count_5fpage_5f_1465',['count_page_',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a747d3740a88295e6c9565788d4cf56ec',1,'GpgFrontend::UI::TextEdit']]], - ['created_5fvar_5flabel_5f_1466',['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_1467',['crypt_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1ef17c566a764f707f43593a1f6b3c60',1,'GpgFrontend::UI::MainWindow']]], - ['crypt_5ftool_5fbar_5f_1468',['crypt_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aac320aef3b49cd068544aac54b927f7a',1,'GpgFrontend::UI::MainWindow']]], - ['ctx_5f_1469',['ctx_',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a387ad457bb729f340f680d0b743733ad',1,'GpgFrontend::GpgAdvancedOperator::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_1470',['ctx_mutex_',['../classGpgFrontend_1_1GpgKeyGetter.html#a81941e1f562dc22977a71d00dd10956a',1,'GpgFrontend::GpgKeyGetter']]], - ['current_5freply_5f_1471',['current_reply_',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9679bc6bcdf2e64ec82f6119620b6f2e',1,'GpgFrontend::UI::VersionCheckTask']]], - ['cut_5fact_5f_1472',['cut_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2c2f6c021219564846f1624f6bb5b9a2',1,'GpgFrontend::UI::MainWindow']]], - ['cut_5fpgp_5fheader_5fact_5f_1473',['cut_pgp_header_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a313a5d7d0847114a6f11e4d7870edd86',1,'GpgFrontend::UI::MainWindow']]] + ['channel_5f_1463',['channel_',['../classGpgFrontend_1_1ChannelObject.html#aee5f8a5575adbdf522da4dd195c091ee',1,'GpgFrontend::ChannelObject']]], + ['check_5fupdate_5fact_5f_1464',['check_update_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a672f4ef07be6ad645613ecd49399700d',1,'GpgFrontend::UI::MainWindow']]], + ['clean_5fdouble_5fline_5fbreaks_5fact_5f_1465',['clean_double_line_breaks_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0cb094e0409337cfd7dba1bb510ea96e',1,'GpgFrontend::UI::MainWindow']]], + ['close_5ftab_5fact_5f_1466',['close_tab_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a09671c3aa26a750cfd6be6c092de8715',1,'GpgFrontend::UI::MainWindow']]], + ['cmspath_1467',['CMSPath',['../classGpgFrontend_1_1GpgInfo.html#ac8ecbf438d05dc434c77825dd38dfdf2',1,'GpgFrontend::GpgInfo']]], + ['comment_5fedit_5f_1468',['comment_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3008e2a9879a8e122e422f67cf0018f8',1,'GpgFrontend::UI::KeyGenDialog']]], + ['comment_5fvar_5flabel_5f_1469',['comment_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a83b1290251a204def52677ae000a17ec',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['copy_5fact_5f_1470',['copy_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a71402943f4ed19e3aba0556b23eaa8f8',1,'GpgFrontend::UI::MainWindow']]], + ['copy_5fmail_5faddress_5fto_5fclipboard_5fact_5f_1471',['copy_mail_address_to_clipboard_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af77f66b6b869f6ddb3d2caa3bc40bb09',1,'GpgFrontend::UI::MainWindow']]], + ['count_5fpage_5f_1472',['count_page_',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a747d3740a88295e6c9565788d4cf56ec',1,'GpgFrontend::UI::TextEdit']]], + ['created_5fvar_5flabel_5f_1473',['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_1474',['crypt_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1ef17c566a764f707f43593a1f6b3c60',1,'GpgFrontend::UI::MainWindow']]], + ['crypt_5ftool_5fbar_5f_1475',['crypt_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aac320aef3b49cd068544aac54b927f7a',1,'GpgFrontend::UI::MainWindow']]], + ['ctx_5f_1476',['ctx_',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a387ad457bb729f340f680d0b743733ad',1,'GpgFrontend::GpgAdvancedOperator::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_1477',['ctx_mutex_',['../classGpgFrontend_1_1GpgKeyGetter.html#a81941e1f562dc22977a71d00dd10956a',1,'GpgFrontend::GpgKeyGetter']]], + ['current_5freply_5f_1478',['current_reply_',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9679bc6bcdf2e64ec82f6119620b6f2e',1,'GpgFrontend::UI::VersionCheckTask']]], + ['cut_5fact_5f_1479',['cut_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2c2f6c021219564846f1624f6bb5b9a2',1,'GpgFrontend::UI::MainWindow']]], + ['cut_5fpgp_5fheader_5fact_5f_1480',['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 5a5e3f29..b5e08843 100644 --- a/docs/html/search/variables_4.js +++ b/docs/html/search/variables_4.js @@ -1,9 +1,9 @@ var searchData= [ - ['databasepath_1474',['DatabasePath',['../classGpgFrontend_1_1GpgInfo.html#a7347d47006bdf41f1da979ea3289de7e',1,'GpgFrontend::GpgInfo']]], - ['date_5fedit_5f_1475',['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_1476',['decrypt_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa92246123272e3e1085f22612aedf48f',1,'GpgFrontend::UI::MainWindow']]], - ['decrypt_5fverify_5fact_5f_1477',['decrypt_verify_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a70d2b2311708ab023466d343f2e914b1',1,'GpgFrontend::UI::MainWindow']]], - ['default_5ftask_5fname_1478',['DEFAULT_TASK_NAME',['../classGpgFrontend_1_1Thread_1_1Task.html#a4a2cad8747108322152b41c049f99c72',1,'GpgFrontend::Thread::Task']]], - ['dirmngrpath_1479',['DirmngrPath',['../classGpgFrontend_1_1GpgInfo.html#a8c7e75d67b2438c61bbe4cebe68a7029',1,'GpgFrontend::GpgInfo']]] + ['databasepath_1481',['DatabasePath',['../classGpgFrontend_1_1GpgInfo.html#a7347d47006bdf41f1da979ea3289de7e',1,'GpgFrontend::GpgInfo']]], + ['date_5fedit_5f_1482',['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_1483',['decrypt_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa92246123272e3e1085f22612aedf48f',1,'GpgFrontend::UI::MainWindow']]], + ['decrypt_5fverify_5fact_5f_1484',['decrypt_verify_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a70d2b2311708ab023466d343f2e914b1',1,'GpgFrontend::UI::MainWindow']]], + ['default_5ftask_5fname_1485',['DEFAULT_TASK_NAME',['../classGpgFrontend_1_1Thread_1_1Task.html#a4a2cad8747108322152b41c049f99c72',1,'GpgFrontend::Thread::Task']]], + ['dirmngrpath_1486',['DirmngrPath',['../classGpgFrontend_1_1GpgInfo.html#a8c7e75d67b2438c61bbe4cebe68a7029',1,'GpgFrontend::GpgInfo']]] ]; diff --git a/docs/html/search/variables_5.js b/docs/html/search/variables_5.js index 7416f5a7..a5ef860f 100644 --- a/docs/html/search/variables_5.js +++ b/docs/html/search/variables_5.js @@ -1,14 +1,14 @@ var searchData= [ - ['edit_5f_1480',['edit_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7aa41c90105fd4c2931895d8dfb5ec45',1,'GpgFrontend::UI::MainWindow']]], - ['edit_5fmenu_5f_1481',['edit_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a6d681a306c137dc107088d60b09a925f',1,'GpgFrontend::UI::MainWindow']]], - ['edit_5ftool_5fbar_5f_1482',['edit_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab531823acdbfb117c82a9906ce2107b9',1,'GpgFrontend::UI::MainWindow']]], - ['email_5fedit_5f_1483',['email_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3453d1a8a4c0411472b2779d018abdc3',1,'GpgFrontend::UI::KeyGenDialog']]], - ['email_5fvar_5flabel_5f_1484',['email_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a8c71b37aa040da50cb0105489a42e60d',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['encrypt_5fact_5f_1485',['encrypt_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad6a2cecb2846b324604c4abd1fb7d11a',1,'GpgFrontend::UI::MainWindow']]], - ['encrypt_5fsign_5fact_5f_1486',['encrypt_sign_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2417c807356e3b876ecb2f572568670b',1,'GpgFrontend::UI::MainWindow']]], - ['error_5flabel_5f_1487',['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_1488',['error_messages_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a03a8e1c8f2c1887732d36a346185bb40',1,'GpgFrontend::UI::KeyGenDialog']]], - ['expire_5fcheck_5fbox_5f_1489',['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_1490',['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_1487',['edit_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7aa41c90105fd4c2931895d8dfb5ec45',1,'GpgFrontend::UI::MainWindow']]], + ['edit_5fmenu_5f_1488',['edit_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a6d681a306c137dc107088d60b09a925f',1,'GpgFrontend::UI::MainWindow']]], + ['edit_5ftool_5fbar_5f_1489',['edit_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab531823acdbfb117c82a9906ce2107b9',1,'GpgFrontend::UI::MainWindow']]], + ['email_5fedit_5f_1490',['email_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3453d1a8a4c0411472b2779d018abdc3',1,'GpgFrontend::UI::KeyGenDialog']]], + ['email_5fvar_5flabel_5f_1491',['email_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a8c71b37aa040da50cb0105489a42e60d',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['encrypt_5fact_5f_1492',['encrypt_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad6a2cecb2846b324604c4abd1fb7d11a',1,'GpgFrontend::UI::MainWindow']]], + ['encrypt_5fsign_5fact_5f_1493',['encrypt_sign_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2417c807356e3b876ecb2f572568670b',1,'GpgFrontend::UI::MainWindow']]], + ['error_5flabel_5f_1494',['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_1495',['error_messages_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a03a8e1c8f2c1887732d36a346185bb40',1,'GpgFrontend::UI::KeyGenDialog']]], + ['expire_5fcheck_5fbox_5f_1496',['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_1497',['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 d3a54755..96ef648c 100644 --- a/docs/html/search/variables_6.js +++ b/docs/html/search/variables_6.js @@ -1,11 +1,11 @@ var searchData= [ - ['file_5fmenu_5f_1491',['file_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af08c62c38a750382ee218191c8e13f4f',1,'GpgFrontend::UI::MainWindow']]], - ['file_5ftool_5fbar_5f_1492',['file_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1e0d23d361b8e339ca85410db2bdfb64',1,'GpgFrontend::UI::MainWindow']]], - ['find_5fact_5f_1493',['find_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a6154f5dbdc9cebc0644e5d1e25895df8',1,'GpgFrontend::UI::MainWindow']]], - ['find_5fedit_5f_1494',['find_edit_',['../classGpgFrontend_1_1UI_1_1FindWidget.html#af420832720942dd1e7cb3f3841c7cbfe',1,'GpgFrontend::UI::FindWidget']]], - ['fingerprint_5fbox_5f_1495',['fingerprint_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#ada1c21cf59f1f19dfd4ffe0391bc1594',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['fingerprint_5fvar_5flabel_5f_1496',['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_1497',['fpr_',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#a36bf3306b8564b49da04eee1dc653675',1,'GpgFrontend::UI::VerifyKeyDetailBox']]], - ['full_5ffile_5fpath_5f_1498',['full_file_path_',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#ae867b6329fcb1978479a9d70f7b017db',1,'GpgFrontend::UI::PlainTextEditorPage']]] + ['file_5fmenu_5f_1498',['file_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af08c62c38a750382ee218191c8e13f4f',1,'GpgFrontend::UI::MainWindow']]], + ['file_5ftool_5fbar_5f_1499',['file_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1e0d23d361b8e339ca85410db2bdfb64',1,'GpgFrontend::UI::MainWindow']]], + ['find_5fact_5f_1500',['find_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a6154f5dbdc9cebc0644e5d1e25895df8',1,'GpgFrontend::UI::MainWindow']]], + ['find_5fedit_5f_1501',['find_edit_',['../classGpgFrontend_1_1UI_1_1FindWidget.html#af420832720942dd1e7cb3f3841c7cbfe',1,'GpgFrontend::UI::FindWidget']]], + ['fingerprint_5fbox_5f_1502',['fingerprint_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#ada1c21cf59f1f19dfd4ffe0391bc1594',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['fingerprint_5fvar_5flabel_5f_1503',['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_1504',['fpr_',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#a36bf3306b8564b49da04eee1dc653675',1,'GpgFrontend::UI::VerifyKeyDetailBox']]], + ['full_5ffile_5fpath_5f_1505',['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 98a9d443..24333873 100644 --- a/docs/html/search/variables_7.js +++ b/docs/html/search/variables_7.js @@ -1,10 +1,10 @@ var searchData= [ - ['global_5fsetting_5fstation_5f_1499',['global_setting_station_',['../classGpgFrontend_1_1DataObjectOperator.html#a3c195f8e4c30d95be14a6d43e9282601',1,'GpgFrontend::DataObjectOperator']]], - ['gnupg_5fact_5f_1500',['gnupg_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a79b83f536a7c4299eaa3d22e4e875227',1,'GpgFrontend::UI::MainWindow']]], - ['gnupghomepath_1501',['GnuPGHomePath',['../classGpgFrontend_1_1GpgInfo.html#a0c1dbdb54f880a620419fdbd8336dc5d',1,'GpgFrontend::GpgInfo']]], - ['gnupgversion_1502',['GnupgVersion',['../classGpgFrontend_1_1GpgInfo.html#abbb3d503b10073bebf86d79bbaeab4c9',1,'GpgFrontend::GpgInfo']]], - ['gpg_5fmenu_5f_1503',['gpg_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2bed0c3b032269c9eb82bc7c068852cb',1,'GpgFrontend::UI::MainWindow']]], - ['gpgagentpath_1504',['GpgAgentPath',['../classGpgFrontend_1_1GpgInfo.html#af6ca2e99ffc487b8e4aa251d3cb23191',1,'GpgFrontend::GpgInfo']]], - ['gpgconfpath_1505',['GpgConfPath',['../classGpgFrontend_1_1GpgInfo.html#a2fcd53b59bc251c38eb8d79cec946777',1,'GpgFrontend::GpgInfo']]] + ['global_5fsetting_5fstation_5f_1506',['global_setting_station_',['../classGpgFrontend_1_1DataObjectOperator.html#a3c195f8e4c30d95be14a6d43e9282601',1,'GpgFrontend::DataObjectOperator']]], + ['gnupg_5fact_5f_1507',['gnupg_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a79b83f536a7c4299eaa3d22e4e875227',1,'GpgFrontend::UI::MainWindow']]], + ['gnupghomepath_1508',['GnuPGHomePath',['../classGpgFrontend_1_1GpgInfo.html#a0c1dbdb54f880a620419fdbd8336dc5d',1,'GpgFrontend::GpgInfo']]], + ['gnupgversion_1509',['GnupgVersion',['../classGpgFrontend_1_1GpgInfo.html#abbb3d503b10073bebf86d79bbaeab4c9',1,'GpgFrontend::GpgInfo']]], + ['gpg_5fmenu_5f_1510',['gpg_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2bed0c3b032269c9eb82bc7c068852cb',1,'GpgFrontend::UI::MainWindow']]], + ['gpgagentpath_1511',['GpgAgentPath',['../classGpgFrontend_1_1GpgInfo.html#af6ca2e99ffc487b8e4aa251d3cb23191',1,'GpgFrontend::GpgInfo']]], + ['gpgconfpath_1512',['GpgConfPath',['../classGpgFrontend_1_1GpgInfo.html#a2fcd53b59bc251c38eb8d79cec946777',1,'GpgFrontend::GpgInfo']]] ]; diff --git a/docs/html/search/variables_8.js b/docs/html/search/variables_8.js index ee635714..2c88c1bb 100644 --- a/docs/html/search/variables_8.js +++ b/docs/html/search/variables_8.js @@ -1,5 +1,5 @@ var searchData= [ - ['hash_5fkey_5f_1506',['hash_key_',['../classGpgFrontend_1_1DataObjectOperator.html#ae409c3562c3e08931daa17f5790c508b',1,'GpgFrontend::DataObjectOperator']]], - ['help_5fmenu_5f_1507',['help_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a89fa105ed54d2189d762668262d74c63',1,'GpgFrontend::UI::MainWindow']]] + ['hash_5fkey_5f_1513',['hash_key_',['../classGpgFrontend_1_1DataObjectOperator.html#ae409c3562c3e08931daa17f5790c508b',1,'GpgFrontend::DataObjectOperator']]], + ['help_5fmenu_5f_1514',['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 4aa31118..fd1b1180 100644 --- a/docs/html/search/variables_9.js +++ b/docs/html/search/variables_9.js @@ -1,8 +1,8 @@ var searchData= [ - ['import_5fbutton_5f_1508',['import_button_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8538940a9a5dea7ddf53c89acdeb83be',1,'GpgFrontend::UI::MainWindow']]], - ['import_5fkey_5ffrom_5fedit_5fact_5f_1509',['import_key_from_edit_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a01b85fb17c373d8f97ce439027c6d04e',1,'GpgFrontend::UI::MainWindow']]], - ['import_5fkey_5fmenu_5f_1510',['import_key_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8d6fe32ab64797459443ed285d769745',1,'GpgFrontend::UI::MainWindow']]], - ['instances_5fmap_5f_1511',['instances_map_',['../classGpgFrontend_1_1SingletonStorage.html#a6181f2b5af39c6b86de89e1ba9eeff1c',1,'GpgFrontend::SingletonStorage']]], - ['instances_5fmutex_5f_1512',['instances_mutex_',['../classGpgFrontend_1_1SingletonStorage.html#a15161d0afafec602018a89266dab5641',1,'GpgFrontend::SingletonStorage']]] + ['import_5fbutton_5f_1515',['import_button_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8538940a9a5dea7ddf53c89acdeb83be',1,'GpgFrontend::UI::MainWindow']]], + ['import_5fkey_5ffrom_5fedit_5fact_5f_1516',['import_key_from_edit_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a01b85fb17c373d8f97ce439027c6d04e',1,'GpgFrontend::UI::MainWindow']]], + ['import_5fkey_5fmenu_5f_1517',['import_key_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8d6fe32ab64797459443ed285d769745',1,'GpgFrontend::UI::MainWindow']]], + ['instances_5fmap_5f_1518',['instances_map_',['../classGpgFrontend_1_1SingletonStorage.html#a6181f2b5af39c6b86de89e1ba9eeff1c',1,'GpgFrontend::SingletonStorage']]], + ['instances_5fmutex_5f_1519',['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 79c895f4..3bb8f5ee 100644 --- a/docs/html/search/variables_a.js +++ b/docs/html/search/variables_a.js @@ -1,17 +1,17 @@ var searchData= [ - ['key_5fbox_5f_1513',['key_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aae9905764b5551208574a932fdfba29c',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['key_5fid_5fvar_5flabel_1514',['key_id_var_label',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a65176245d280ae0734ef7b5b3f1c4cc4',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['key_5fid_5fvar_5flabel_5f_1515',['key_id_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a2f634f4c83ab5dd2d088eb07e0d3b862',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], - ['key_5flist_5fdock_5f_1516',['key_list_dock_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adaa66d9cdc51c946efc99bb94deda31c',1,'GpgFrontend::UI::MainWindow']]], - ['key_5fmenu_5f_1517',['key_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a16bbfd12cd3a6f0df9e2c32cf7999e57',1,'GpgFrontend::UI::MainWindow']]], - ['key_5fsize_5fspin_5fbox_5f_1518',['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_1519',['key_size_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a1485e603de56152f45d96e0ce5c50d9b',1,'GpgFrontend::UI::KeyPairDetailTab::key_size_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a63e054f4a2d8e12c70d25d39bb55f876',1,'GpgFrontend::UI::KeyPairSubkeyTab::key_size_var_label_()']]], - ['key_5ftool_5fbar_5f_1520',['key_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a38f243880cfb9276545b08f0730811e7',1,'GpgFrontend::UI::MainWindow']]], - ['key_5ftype_5fcombo_5fbox_5f_1521',['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_1522',['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_1523',['key_usage_group_box_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7b1b9cb46c0547c1e561e56d55616cf1',1,'GpgFrontend::UI::KeyGenDialog']]], - ['keyboxdpath_1524',['KeyboxdPath',['../classGpgFrontend_1_1GpgInfo.html#a072503811cb59dad27040e4e8914d18b',1,'GpgFrontend::GpgInfo']]], - ['keys_5fcache_5f_1525',['keys_cache_',['../classGpgFrontend_1_1GpgKeyGetter.html#a9567d5e08ae73c5bafcd1dc378fed066',1,'GpgFrontend::GpgKeyGetter']]], - ['keys_5fcache_5fmutex_5f_1526',['keys_cache_mutex_',['../classGpgFrontend_1_1GpgKeyGetter.html#ae1d7846ad2fa17ab90c72b3186ba5335',1,'GpgFrontend::GpgKeyGetter']]] + ['key_5fbox_5f_1520',['key_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aae9905764b5551208574a932fdfba29c',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['key_5fid_5fvar_5flabel_1521',['key_id_var_label',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a65176245d280ae0734ef7b5b3f1c4cc4',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['key_5fid_5fvar_5flabel_5f_1522',['key_id_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a2f634f4c83ab5dd2d088eb07e0d3b862',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], + ['key_5flist_5fdock_5f_1523',['key_list_dock_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adaa66d9cdc51c946efc99bb94deda31c',1,'GpgFrontend::UI::MainWindow']]], + ['key_5fmenu_5f_1524',['key_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a16bbfd12cd3a6f0df9e2c32cf7999e57',1,'GpgFrontend::UI::MainWindow']]], + ['key_5fsize_5fspin_5fbox_5f_1525',['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_1526',['key_size_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a1485e603de56152f45d96e0ce5c50d9b',1,'GpgFrontend::UI::KeyPairDetailTab::key_size_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a63e054f4a2d8e12c70d25d39bb55f876',1,'GpgFrontend::UI::KeyPairSubkeyTab::key_size_var_label_()']]], + ['key_5ftool_5fbar_5f_1527',['key_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a38f243880cfb9276545b08f0730811e7',1,'GpgFrontend::UI::MainWindow']]], + ['key_5ftype_5fcombo_5fbox_5f_1528',['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_1529',['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_1530',['key_usage_group_box_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7b1b9cb46c0547c1e561e56d55616cf1',1,'GpgFrontend::UI::KeyGenDialog']]], + ['keyboxdpath_1531',['KeyboxdPath',['../classGpgFrontend_1_1GpgInfo.html#a072503811cb59dad27040e4e8914d18b',1,'GpgFrontend::GpgInfo']]], + ['keys_5fcache_5f_1532',['keys_cache_',['../classGpgFrontend_1_1GpgKeyGetter.html#a9567d5e08ae73c5bafcd1dc378fed066',1,'GpgFrontend::GpgKeyGetter']]], + ['keys_5fcache_5fmutex_5f_1533',['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 3a1c0c1c..22606b99 100644 --- a/docs/html/search/variables_b.js +++ b/docs/html/search/variables_b.js @@ -1,4 +1,4 @@ var searchData= [ - ['latest_5freply_5f_1527',['latest_reply_',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#aed545ffa8128acb16bb28c067e032ec9',1,'GpgFrontend::UI::VersionCheckTask']]] + ['latest_5freply_5f_1534',['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 0200c798..1182c017 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_1528',['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_1529',['mt_',['../classGpgFrontend_1_1DataObjectOperator.html#a9fc92c7d497f2a2057776adfca40e8ca',1,'GpgFrontend::DataObjectOperator::mt_()'],['../classGpgFrontend_1_1PassphraseGenerator.html#a19ac4999bbd5fb7e6c42a4aef9606892',1,'GpgFrontend::PassphraseGenerator::mt_()']]] + ['m_5ftext_5fpage_5f_1535',['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_1536',['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 ff59904f..e34e97fe 100644 --- a/docs/html/search/variables_d.js +++ b/docs/html/search/variables_d.js @@ -1,7 +1,7 @@ var searchData= [ - ['name_5fedit_5f_1530',['name_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7ed095cce29c658741ae0520049010c0',1,'GpgFrontend::UI::KeyGenDialog']]], - ['name_5fvar_5flabel_5f_1531',['name_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a9d57be18c2091827c04ec8809f4154be',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['new_5ftab_5fact_5f_1532',['new_tab_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a472500fec64442b114e9ce9faf4b6a73',1,'GpgFrontend::UI::MainWindow']]], - ['no_5fpass_5fphrase_5fcheck_5fbox_5f_1533',['no_pass_phrase_check_box_',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a001803152c0e5bd9de7c7dd04cef8ad4',1,'GpgFrontend::UI::SubkeyGenerateDialog']]] + ['name_5fedit_5f_1537',['name_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7ed095cce29c658741ae0520049010c0',1,'GpgFrontend::UI::KeyGenDialog']]], + ['name_5fvar_5flabel_5f_1538',['name_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a9d57be18c2091827c04ec8809f4154be',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['new_5ftab_5fact_5f_1539',['new_tab_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a472500fec64442b114e9ce9faf4b6a73',1,'GpgFrontend::UI::MainWindow']]], + ['no_5fpass_5fphrase_5fcheck_5fbox_5f_1540',['no_pass_phrase_check_box_',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a001803152c0e5bd9de7c7dd04cef8ad4',1,'GpgFrontend::UI::SubkeyGenerateDialog']]] ]; diff --git a/docs/html/search/variables_e.js b/docs/html/search/variables_e.js index 76caaa14..64be37a3 100644 --- a/docs/html/search/variables_e.js +++ b/docs/html/search/variables_e.js @@ -1,7 +1,7 @@ var searchData= [ - ['open_5fact_5f_1534',['open_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a4a1edafb8c67b181ff3c29394147571d',1,'GpgFrontend::UI::MainWindow']]], - ['open_5fkey_5fmanagement_5fact_5f_1535',['open_key_management_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad7b22560df7e3bb38b660d3ffc84dc83',1,'GpgFrontend::UI::MainWindow']]], - ['open_5fsettings_5fact_5f_1536',['open_settings_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#afab1e0363a4b97ff68228cd4bd7cbc62',1,'GpgFrontend::UI::MainWindow']]], - ['owner_5fbox_5f_1537',['owner_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#ad8c25061351d8e739b70d5466b87410e',1,'GpgFrontend::UI::KeyPairDetailTab']]] + ['open_5fact_5f_1541',['open_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a4a1edafb8c67b181ff3c29394147571d',1,'GpgFrontend::UI::MainWindow']]], + ['open_5fkey_5fmanagement_5fact_5f_1542',['open_key_management_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad7b22560df7e3bb38b660d3ffc84dc83',1,'GpgFrontend::UI::MainWindow']]], + ['open_5fsettings_5fact_5f_1543',['open_settings_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#afab1e0363a4b97ff68228cd4bd7cbc62',1,'GpgFrontend::UI::MainWindow']]], + ['owner_5fbox_5f_1544',['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 2d044a2d..c2506e1d 100644 --- a/docs/html/search/variables_f.js +++ b/docs/html/search/variables_f.js @@ -1,7 +1,7 @@ var searchData= [ - ['paste_5fact_5f_1538',['paste_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a62ea61c38e758022ba655c6faf54322b',1,'GpgFrontend::UI::MainWindow']]], - ['pending_5ftasks_5f_1539',['pending_tasks_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a6d92421bbbfcf3136335a5173d1b2a22',1,'GpgFrontend::Thread::TaskRunner']]], - ['pgp_5fcrypt_5fbegin_1540',['PGP_CRYPT_BEGIN',['../classGpgFrontend_1_1GpgConstants.html#a237006d6db30c7e3f8de171210eb35f2',1,'GpgFrontend::GpgConstants']]], - ['print_5fact_5f_1541',['print_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8f9dd7edba23321a13ed630cdef7fdcc',1,'GpgFrontend::UI::MainWindow']]] + ['paste_5fact_5f_1545',['paste_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a62ea61c38e758022ba655c6faf54322b',1,'GpgFrontend::UI::MainWindow']]], + ['pending_5ftasks_5f_1546',['pending_tasks_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a6d92421bbbfcf3136335a5173d1b2a22',1,'GpgFrontend::Thread::TaskRunner']]], + ['pgp_5fcrypt_5fbegin_1547',['PGP_CRYPT_BEGIN',['../classGpgFrontend_1_1GpgConstants.html#a237006d6db30c7e3f8de171210eb35f2',1,'GpgFrontend::GpgConstants']]], + ['print_5fact_5f_1548',['print_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8f9dd7edba23321a13ed630cdef7fdcc',1,'GpgFrontend::UI::MainWindow']]] ]; diff --git a/docs/html/structGpgFrontend_1_1UI_1_1KeyMenuAbility-members.html b/docs/html/structGpgFrontend_1_1UI_1_1KeyMenuAbility-members.html index ed41be85..d7ec141c 100644 --- a/docs/html/structGpgFrontend_1_1UI_1_1KeyMenuAbility-members.html +++ b/docs/html/structGpgFrontend_1_1UI_1_1KeyMenuAbility-members.html @@ -94,8 +94,9 @@ $(document).ready(function(){initNavTree('structGpgFrontend_1_1UI_1_1KeyMenuAbil
    CHECK_ALL (defined in GpgFrontend::UI::KeyMenuAbility)GpgFrontend::UI::KeyMenuAbilitystatic
    NONE (defined in GpgFrontend::UI::KeyMenuAbility)GpgFrontend::UI::KeyMenuAbilitystatic
    REFRESH (defined in GpgFrontend::UI::KeyMenuAbility)GpgFrontend::UI::KeyMenuAbilitystatic
    SYNC_PUBLIC_KEY (defined in GpgFrontend::UI::KeyMenuAbility)GpgFrontend::UI::KeyMenuAbilitystatic
    UNCHECK_ALL (defined in GpgFrontend::UI::KeyMenuAbility)GpgFrontend::UI::KeyMenuAbilitystatic
    SEARCH_BAR (defined in GpgFrontend::UI::KeyMenuAbility)GpgFrontend::UI::KeyMenuAbilitystatic
    SYNC_PUBLIC_KEY (defined in GpgFrontend::UI::KeyMenuAbility)GpgFrontend::UI::KeyMenuAbilitystatic
    UNCHECK_ALL (defined in GpgFrontend::UI::KeyMenuAbility)GpgFrontend::UI::KeyMenuAbilitystatic
    diff --git a/docs/html/structGpgFrontend_1_1UI_1_1KeyMenuAbility.html b/docs/html/structGpgFrontend_1_1UI_1_1KeyMenuAbility.html index a9097b6a..467665d4 100644 --- a/docs/html/structGpgFrontend_1_1UI_1_1KeyMenuAbility.html +++ b/docs/html/structGpgFrontend_1_1UI_1_1KeyMenuAbility.html @@ -95,7 +95,7 @@ Collaboration diagram for GpgFrontend::UI::KeyMenuAbility:
    Collaboration graph
    - +
    @@ -125,6 +125,9 @@ static constexpr AbilityType  + +
    static constexpr AbilityType CHECK_ALL = 1 << 5
     
    +static constexpr AbilityType SEARCH_BAR = 1 << 6
     

    The documentation for this struct was generated from the following file:
    • src/ui/widgets/KeyList.h
    • diff --git a/docs/html/structGpgFrontend_1_1UI_1_1KeyMenuAbility.js b/docs/html/structGpgFrontend_1_1UI_1_1KeyMenuAbility.js index caa99e3a..a262ee9d 100644 --- a/docs/html/structGpgFrontend_1_1UI_1_1KeyMenuAbility.js +++ b/docs/html/structGpgFrontend_1_1UI_1_1KeyMenuAbility.js @@ -5,6 +5,7 @@ var structGpgFrontend_1_1UI_1_1KeyMenuAbility = [ "CHECK_ALL", "structGpgFrontend_1_1UI_1_1KeyMenuAbility.html#a2ff7f5aeea6e8791d69cd0656489d6eb", null ], [ "NONE", "structGpgFrontend_1_1UI_1_1KeyMenuAbility.html#a1e9badf8cc20ca49b2374cdc705b7602", null ], [ "REFRESH", "structGpgFrontend_1_1UI_1_1KeyMenuAbility.html#a3e3f324385c69f3848297c5c60eb8012", null ], + [ "SEARCH_BAR", "structGpgFrontend_1_1UI_1_1KeyMenuAbility.html#ac88b3fd3271c347593b75f33f134eb4d", null ], [ "SYNC_PUBLIC_KEY", "structGpgFrontend_1_1UI_1_1KeyMenuAbility.html#af28d1d7fbfc66aea550f98db5a2a582b", null ], [ "UNCHECK_ALL", "structGpgFrontend_1_1UI_1_1KeyMenuAbility.html#a632b87f5c86b4bb76e1af350f053107a", null ] ]; \ No newline at end of file diff --git a/docs/html/structGpgFrontend_1_1UI_1_1KeyMenuAbility__coll__graph.map b/docs/html/structGpgFrontend_1_1UI_1_1KeyMenuAbility__coll__graph.map index aca1ec8f..2216f571 100644 --- a/docs/html/structGpgFrontend_1_1UI_1_1KeyMenuAbility__coll__graph.map +++ b/docs/html/structGpgFrontend_1_1UI_1_1KeyMenuAbility__coll__graph.map @@ -1,3 +1,3 @@ - + diff --git a/docs/html/structGpgFrontend_1_1UI_1_1KeyMenuAbility__coll__graph.md5 b/docs/html/structGpgFrontend_1_1UI_1_1KeyMenuAbility__coll__graph.md5 index 669b5581..dbe9b6ed 100644 --- a/docs/html/structGpgFrontend_1_1UI_1_1KeyMenuAbility__coll__graph.md5 +++ b/docs/html/structGpgFrontend_1_1UI_1_1KeyMenuAbility__coll__graph.md5 @@ -1 +1 @@ -bec8e6cb105cb5ffaa1940fd106d58d7 \ No newline at end of file +ff35be0b30b2596ec6828d51ea0f0cf2 \ No newline at end of file diff --git a/docs/html/structGpgFrontend_1_1UI_1_1KeyMenuAbility__coll__graph.png b/docs/html/structGpgFrontend_1_1UI_1_1KeyMenuAbility__coll__graph.png index ad4fd9e0..85e2d774 100644 Binary files a/docs/html/structGpgFrontend_1_1UI_1_1KeyMenuAbility__coll__graph.png and b/docs/html/structGpgFrontend_1_1UI_1_1KeyMenuAbility__coll__graph.png differ diff --git a/docs/html/structGpgFrontend_1_1UI_1_1KeyTable-members.html b/docs/html/structGpgFrontend_1_1UI_1_1KeyTable-members.html index a820ea90..1dc316c5 100644 --- a/docs/html/structGpgFrontend_1_1UI_1_1KeyTable-members.html +++ b/docs/html/structGpgFrontend_1_1UI_1_1KeyTable-members.html @@ -89,18 +89,23 @@ $(document).ready(function(){initNavTree('structGpgFrontend_1_1UI_1_1KeyTable.ht

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

      - - - - - - - - - - - - + + + + + + + + + + + + + + + + +
      buffered_keys_ (defined in GpgFrontend::UI::KeyTable)GpgFrontend::UI::KeyTable
      CheckALL() const (defined in GpgFrontend::UI::KeyTable)GpgFrontend::UI::KeyTable
      checked_key_ids_ (defined in GpgFrontend::UI::KeyTable)GpgFrontend::UI::KeyTable
      filter_ (defined in GpgFrontend::UI::KeyTable)GpgFrontend::UI::KeyTable
      GetChecked()GpgFrontend::UI::KeyTable
      info_type_ (defined in GpgFrontend::UI::KeyTable)GpgFrontend::UI::KeyTable
      key_list_ (defined in GpgFrontend::UI::KeyTable)GpgFrontend::UI::KeyTable
      KeyTable(QTableWidget *_key_list, KeyListRow::KeyType _select_type, KeyListColumn::InfoType _info_type, std::function< bool(const GpgKey &)> _filter=[](const GpgKey &) -> bool { return true;})GpgFrontend::UI::KeyTableinline
      Refresh(KeyLinkListPtr m_keys=nullptr)GpgFrontend::UI::KeyTable
      select_type_ (defined in GpgFrontend::UI::KeyTable)GpgFrontend::UI::KeyTable
      SetChecked(KeyIdArgsListPtr key_ids)GpgFrontend::UI::KeyTable
      UncheckALL() const (defined in GpgFrontend::UI::KeyTable)GpgFrontend::UI::KeyTable
      ability_ (defined in GpgFrontend::UI::KeyTable)GpgFrontend::UI::KeyTable
      buffered_keys_ (defined in GpgFrontend::UI::KeyTable)GpgFrontend::UI::KeyTable
      CheckALL() const (defined in GpgFrontend::UI::KeyTable)GpgFrontend::UI::KeyTable
      checked_key_ids_ (defined in GpgFrontend::UI::KeyTable)GpgFrontend::UI::KeyTable
      filter_ (defined in GpgFrontend::UI::KeyTable)GpgFrontend::UI::KeyTable
      GetChecked()GpgFrontend::UI::KeyTable
      info_type_ (defined in GpgFrontend::UI::KeyTable)GpgFrontend::UI::KeyTable
      key_list_ (defined in GpgFrontend::UI::KeyTable)GpgFrontend::UI::KeyTable
      KeyTable(QTableWidget *_key_list, KeyListRow::KeyType _select_type, KeyListColumn::InfoType _info_type, KeyTableFilter _filter=[](const GpgKey &, const KeyTable &) -> bool { return true;})GpgFrontend::UI::KeyTableinline
      KeyTableFilter typedef (defined in GpgFrontend::UI::KeyTable)GpgFrontend::UI::KeyTable
      keyword_ (defined in GpgFrontend::UI::KeyTable)GpgFrontend::UI::KeyTable
      Refresh(KeyLinkListPtr m_keys=nullptr)GpgFrontend::UI::KeyTable
      select_type_ (defined in GpgFrontend::UI::KeyTable)GpgFrontend::UI::KeyTable
      SetChecked(KeyIdArgsListPtr key_ids)GpgFrontend::UI::KeyTable
      SetFilterKeyword(std::string keyword) (defined in GpgFrontend::UI::KeyTable)GpgFrontend::UI::KeyTable
      SetMenuAbility(KeyMenuAbility::AbilityType ability) (defined in GpgFrontend::UI::KeyTable)GpgFrontend::UI::KeyTable
      UncheckALL() const (defined in GpgFrontend::UI::KeyTable)GpgFrontend::UI::KeyTable
      diff --git a/docs/html/structGpgFrontend_1_1UI_1_1KeyTable.html b/docs/html/structGpgFrontend_1_1UI_1_1KeyTable.html index 96d1481e..45074f04 100644 --- a/docs/html/structGpgFrontend_1_1UI_1_1KeyTable.html +++ b/docs/html/structGpgFrontend_1_1UI_1_1KeyTable.html @@ -83,6 +83,7 @@ $(document).ready(function(){initNavTree('structGpgFrontend_1_1UI_1_1KeyTable.ht
      @@ -95,23 +96,31 @@ Collaboration diagram for GpgFrontend::UI::KeyTable:
      Collaboration graph
      - + - - + + + +
      + + + +

      +Public Types

      +using KeyTableFilter = std::function< bool(const GpgKey &, const KeyTable &)>
       
      - - - + + + @@ -126,6 +135,12 @@ void  + + + +

      Public Member Functions

       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. More...
       
       KeyTable (QTableWidget *_key_list, KeyListRow::KeyType _select_type, KeyListColumn::InfoType _info_type, KeyTableFilter _filter=[](const GpgKey &, const KeyTable &) -> bool { return true;})
       Construct a new Key Table object. More...
       
      void Refresh (KeyLinkListPtr m_keys=nullptr)
       
      KeyIdArgsListPtr & GetChecked ()
      CheckALL () const
      void SetChecked (KeyIdArgsListPtr key_ids)
       Set the Checked object. More...
       
      +void SetMenuAbility (KeyMenuAbility::AbilityType ability)
       
      +void SetFilterKeyword (std::string keyword)
       
      @@ -141,16 +156,22 @@ KeyListColumn::InfoType  - - + + + + + +

      Public Attributes

      in
      std::vector< GpgKeybuffered_keys_
       
      -std::function< bool(const GpgKey &)> filter_
       
      +KeyTableFilter filter_
       
      KeyIdArgsListPtr checked_key_ids_
       
      +KeyMenuAbility::AbilityType ability_
       
      +std::string keyword_
       

      Constructor & Destructor Documentation

      - -

      ◆ KeyTable()

      + +

      ◆ KeyTable()

      @@ -179,8 +200,8 @@ KeyIdArgsListPtr checked_k - std::function< bool(const GpgKey &)>  - _filter = [](const GpgKey&) -> bool { return true; }  + KeyTableFilter  + _filter = [](const GpgKey&, const KeyTable&) -> bool { return true; }  diff --git a/docs/html/structGpgFrontend_1_1UI_1_1KeyTable.js b/docs/html/structGpgFrontend_1_1UI_1_1KeyTable.js index c3b0dc62..4e17e108 100644 --- a/docs/html/structGpgFrontend_1_1UI_1_1KeyTable.js +++ b/docs/html/structGpgFrontend_1_1UI_1_1KeyTable.js @@ -1,15 +1,20 @@ var structGpgFrontend_1_1UI_1_1KeyTable = [ - [ "KeyTable", "structGpgFrontend_1_1UI_1_1KeyTable.html#a88606ba6954d60244faf38de419bfc47", null ], + [ "KeyTableFilter", "structGpgFrontend_1_1UI_1_1KeyTable.html#ae99f56db14e21d673535cd34af74b22b", null ], + [ "KeyTable", "structGpgFrontend_1_1UI_1_1KeyTable.html#ae78160011d93abc43a1ca0f28c2ad943", null ], [ "CheckALL", "structGpgFrontend_1_1UI_1_1KeyTable.html#a9ef84e0b2d9146b962ca4ca79e7f0e9c", null ], [ "GetChecked", "structGpgFrontend_1_1UI_1_1KeyTable.html#a77eba4055ecb7d32fab06f65b80ae07e", null ], [ "Refresh", "structGpgFrontend_1_1UI_1_1KeyTable.html#aaac381e205c323444098803e0295060f", null ], [ "SetChecked", "structGpgFrontend_1_1UI_1_1KeyTable.html#ae0713ebbc21e78995db9a856d746fe6c", null ], + [ "SetFilterKeyword", "structGpgFrontend_1_1UI_1_1KeyTable.html#aabc2e7dc05edc85834179da6ac4c846d", null ], + [ "SetMenuAbility", "structGpgFrontend_1_1UI_1_1KeyTable.html#aacf3e9cf2ec39a47033d274ccf35911a", null ], [ "UncheckALL", "structGpgFrontend_1_1UI_1_1KeyTable.html#a0719f023069e0f6e29db20b6cd0cf5ea", null ], + [ "ability_", "structGpgFrontend_1_1UI_1_1KeyTable.html#ab54360c35b11c469d708b5f57030ed41", null ], [ "buffered_keys_", "structGpgFrontend_1_1UI_1_1KeyTable.html#adb59ac00683aec02344804ae8c5670a5", null ], [ "checked_key_ids_", "structGpgFrontend_1_1UI_1_1KeyTable.html#add3529625d70c3aa37f3d8cdc3bb8c63", null ], - [ "filter_", "structGpgFrontend_1_1UI_1_1KeyTable.html#a880d24a22ef291667e6d6c76a487fc57", null ], + [ "filter_", "structGpgFrontend_1_1UI_1_1KeyTable.html#a1560962e3a6eac5f042ba4963f439f15", null ], [ "info_type_", "structGpgFrontend_1_1UI_1_1KeyTable.html#aeb37ccd5436993b7f1dd33667a36551e", null ], [ "key_list_", "structGpgFrontend_1_1UI_1_1KeyTable.html#a5bce4bf0dc41ac05390a4f93da8b8985", null ], + [ "keyword_", "structGpgFrontend_1_1UI_1_1KeyTable.html#a053be2a4f9d8594128d5400f4cc215aa", null ], [ "select_type_", "structGpgFrontend_1_1UI_1_1KeyTable.html#ab0aee9ed16af04048f456abddb4dc007", null ] ]; \ No newline at end of file diff --git a/docs/html/structGpgFrontend_1_1UI_1_1KeyTable__coll__graph.map b/docs/html/structGpgFrontend_1_1UI_1_1KeyTable__coll__graph.map index b4a66dfc..64f69cf9 100644 --- a/docs/html/structGpgFrontend_1_1UI_1_1KeyTable__coll__graph.map +++ b/docs/html/structGpgFrontend_1_1UI_1_1KeyTable__coll__graph.map @@ -1,11 +1,13 @@ - + - + - - - - + + + + + + diff --git a/docs/html/structGpgFrontend_1_1UI_1_1KeyTable__coll__graph.md5 b/docs/html/structGpgFrontend_1_1UI_1_1KeyTable__coll__graph.md5 index e3ae2930..2744a8fd 100644 --- a/docs/html/structGpgFrontend_1_1UI_1_1KeyTable__coll__graph.md5 +++ b/docs/html/structGpgFrontend_1_1UI_1_1KeyTable__coll__graph.md5 @@ -1 +1 @@ -976517defa87e72e9ba0252f58801e4a \ No newline at end of file +06e2935bcc2eeb1659f65b5352a529b1 \ No newline at end of file diff --git a/docs/html/structGpgFrontend_1_1UI_1_1KeyTable__coll__graph.png b/docs/html/structGpgFrontend_1_1UI_1_1KeyTable__coll__graph.png index 959c9efb..cdda3a55 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/annotated.tex b/docs/latex/annotated.tex index 42d55c30..94404dbe 100644 --- a/docs/latex/annotated.tex +++ b/docs/latex/annotated.tex @@ -114,6 +114,7 @@ Here are the classes, structs, unions and interfaces with brief descriptions\+:\ \item\contentsline{section}{\mbox{\hyperlink{classGpgFrontend_1_1Thread_1_1TaskRunnerGetter}{Gpg\+Frontend\+::\+Thread\+::\+Task\+Runner\+Getter}} }{\pageref{classGpgFrontend_1_1Thread_1_1TaskRunnerGetter}}{} \item\contentsline{section}{\mbox{\hyperlink{classTestListedKeyServerThread}{Test\+Listed\+Key\+Server\+Thread}} }{\pageref{classTestListedKeyServerThread}}{} \item\contentsline{section}{\mbox{\hyperlink{classGpgFrontend_1_1UI_1_1TextEdit}{Gpg\+Frontend\+::\+UI\+::\+Text\+Edit}} \\*\mbox{\hyperlink{classGpgFrontend_1_1UI_1_1TextEdit}{Text\+Edit}} class }{\pageref{classGpgFrontend_1_1UI_1_1TextEdit}}{} +\item\contentsline{section}{\mbox{\hyperlink{classGpgFrontend_1_1ThreadSafeMap}{Gpg\+Frontend\+::\+Thread\+Safe\+Map$<$ Key, Value $>$}} }{\pageref{classGpgFrontend_1_1ThreadSafeMap}}{} \item\contentsline{section}{\mbox{\hyperlink{classGpgFrontend_1_1UI_1_1TOFUInfoPage}{Gpg\+Frontend\+::\+UI\+::\+TOFUInfo\+Page}} }{\pageref{classGpgFrontend_1_1UI_1_1TOFUInfoPage}}{} \item\contentsline{section}{\mbox{\hyperlink{classGpgFrontend_1_1UI_1_1TranslatorsTab}{Gpg\+Frontend\+::\+UI\+::\+Translators\+Tab}} \\*Class containing the translator tab of about dialog }{\pageref{classGpgFrontend_1_1UI_1_1TranslatorsTab}}{} \item\contentsline{section}{\mbox{\hyperlink{classGpgFrontend_1_1UI_1_1UpdateTab}{Gpg\+Frontend\+::\+UI\+::\+Update\+Tab}} \\*Class containing the main tab of about dialog }{\pageref{classGpgFrontend_1_1UI_1_1UpdateTab}}{} diff --git a/docs/latex/classGpgFrontend_1_1ArchiveFileOperator__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1ArchiveFileOperator__coll__graph.pdf index 802b09ff..3fe574f8 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_1CacheManager.tex b/docs/latex/classGpgFrontend_1_1CacheManager.tex index bd9929e5..a3677bbd 100644 --- a/docs/latex/classGpgFrontend_1_1CacheManager.tex +++ b/docs/latex/classGpgFrontend_1_1CacheManager.tex @@ -2,33 +2,80 @@ \label{classGpgFrontend_1_1CacheManager}\index{GpgFrontend::CacheManager@{GpgFrontend::CacheManager}} +Inheritance diagram for Gpg\+Frontend\+::Cache\+Manager\+: +\nopagebreak +\begin{figure}[H] +\begin{center} +\leavevmode +\includegraphics[height=550pt]{classGpgFrontend_1_1CacheManager__inherit__graph} +\end{center} +\end{figure} + + Collaboration diagram for Gpg\+Frontend\+::Cache\+Manager\+: \nopagebreak \begin{figure}[H] \begin{center} \leavevmode -\includegraphics[width=238pt]{classGpgFrontend_1_1CacheManager__coll__graph} +\includegraphics[height=550pt]{classGpgFrontend_1_1CacheManager__coll__graph} \end{center} \end{figure} -\doxysubsection*{Static Public Member Functions} +\doxysubsection*{Public Member Functions} \begin{DoxyCompactItemize} \item -static void \mbox{\hyperlink{classGpgFrontend_1_1CacheManager_a3cbc3238638dcd8b4722bfdf560c73fe}{Save\+Cache}} (std\+::string key, const nlohmann\+::json \&value) +\mbox{\hyperlink{classGpgFrontend_1_1CacheManager_a311ae4d0cc4f4d9425b44789aea6090a}{Cache\+Manager}} (int channel=\mbox{\hyperlink{classGpgFrontend_1_1SingletonFunctionObject_a50e2b3794d6553f4231eaec72d9d0a50}{Singleton\+Function\+Object\+::\+Get\+Default\+Channel}}()) \item -\mbox{\Hypertarget{classGpgFrontend_1_1CacheManager_aaac1a2b86867831713efa5f092abf985}\label{classGpgFrontend_1_1CacheManager_aaac1a2b86867831713efa5f092abf985}} -static nlohmann\+::json {\bfseries Load\+Cache} (std\+::string name) +\mbox{\Hypertarget{classGpgFrontend_1_1CacheManager_af61eef3700ff6a6790a42269b66e20e4}\label{classGpgFrontend_1_1CacheManager_af61eef3700ff6a6790a42269b66e20e4}} +void {\bfseries Save\+Cache} (std\+::string key, const nlohmann\+::json \&value, bool flush=false) \item -\mbox{\Hypertarget{classGpgFrontend_1_1CacheManager_ae5246d24c5dbafb8f9abb561217ea235}\label{classGpgFrontend_1_1CacheManager_ae5246d24c5dbafb8f9abb561217ea235}} -static void {\bfseries Clear\+All\+Cache} () +\mbox{\Hypertarget{classGpgFrontend_1_1CacheManager_a1176521fa6f3df1ed760c18af53ebcf5}\label{classGpgFrontend_1_1CacheManager_a1176521fa6f3df1ed760c18af53ebcf5}} +nlohmann\+::json {\bfseries Load\+Cache} (std\+::string key) +\item +\mbox{\Hypertarget{classGpgFrontend_1_1CacheManager_af1ee53c1ecc4b0835568ef4af34c1595}\label{classGpgFrontend_1_1CacheManager_af1ee53c1ecc4b0835568ef4af34c1595}} +nlohmann\+::json {\bfseries Load\+Cache} (std\+::string key, nlohmann\+::json default\+\_\+value) \end{DoxyCompactItemize} +\doxysubsection*{Private Member Functions} +\begin{DoxyCompactItemize} +\item +\mbox{\Hypertarget{classGpgFrontend_1_1CacheManager_a9dd86b465c144340312956366b989cee}\label{classGpgFrontend_1_1CacheManager_a9dd86b465c144340312956366b989cee}} +std\+::string {\bfseries get\+\_\+data\+\_\+object\+\_\+key} (std\+::string key) +\item +\mbox{\Hypertarget{classGpgFrontend_1_1CacheManager_a6e05751e92f8f0011bfcb755ccbb8003}\label{classGpgFrontend_1_1CacheManager_a6e05751e92f8f0011bfcb755ccbb8003}} +nlohmann\+::json {\bfseries load\+\_\+cache\+\_\+storage} (std\+::string key, nlohmann\+::json default\+\_\+value) +\item +\mbox{\Hypertarget{classGpgFrontend_1_1CacheManager_a8fdeea326fe6ba46d02ac2b9fbdde58c}\label{classGpgFrontend_1_1CacheManager_a8fdeea326fe6ba46d02ac2b9fbdde58c}} +void {\bfseries load\+\_\+all\+\_\+cache\+\_\+storage} () +\item +\mbox{\Hypertarget{classGpgFrontend_1_1CacheManager_a2cce51cf81b62dfb10b2195a0375f9b2}\label{classGpgFrontend_1_1CacheManager_a2cce51cf81b62dfb10b2195a0375f9b2}} +void {\bfseries flush\+\_\+cache\+\_\+storage} () +\item +\mbox{\Hypertarget{classGpgFrontend_1_1CacheManager_ab974c30ff13b899ca647d6ff97f7c34d}\label{classGpgFrontend_1_1CacheManager_ab974c30ff13b899ca647d6ff97f7c34d}} +void {\bfseries register\+\_\+cache\+\_\+key} (std\+::string key) +\end{DoxyCompactItemize} +\doxysubsection*{Private Attributes} +\begin{DoxyCompactItemize} +\item +\mbox{\Hypertarget{classGpgFrontend_1_1CacheManager_aec8664877393054794453f56373520cc}\label{classGpgFrontend_1_1CacheManager_aec8664877393054794453f56373520cc}} +\mbox{\hyperlink{classGpgFrontend_1_1ThreadSafeMap}{Thread\+Safe\+Map}}$<$ std\+::string, nlohmann\+::json $>$ {\bfseries cache\+\_\+storage\+\_\+} +\item +\mbox{\Hypertarget{classGpgFrontend_1_1CacheManager_af961e0b1f041bac37d5c16929da9d515}\label{classGpgFrontend_1_1CacheManager_af961e0b1f041bac37d5c16929da9d515}} +nlohmann\+::json {\bfseries key\+\_\+storage\+\_\+} +\item +\mbox{\Hypertarget{classGpgFrontend_1_1CacheManager_af4d6094e1c9fc5487e174ab876925a2b}\label{classGpgFrontend_1_1CacheManager_af4d6094e1c9fc5487e174ab876925a2b}} +QTimer $\ast$ {\bfseries m\+\_\+timer\+\_\+} +\item +\mbox{\Hypertarget{classGpgFrontend_1_1CacheManager_a10682dce9d34272f3b99d1abbb48fb0d}\label{classGpgFrontend_1_1CacheManager_a10682dce9d34272f3b99d1abbb48fb0d}} +const std\+::string {\bfseries drk\+\_\+key\+\_\+} = \char`\"{}\+\_\+\+\_\+cache\+\_\+manage\+\_\+data\+\_\+register\+\_\+key\+\_\+list\char`\"{} +\end{DoxyCompactItemize} +\doxysubsection*{Additional Inherited Members} -\doxysubsection{Member Function Documentation} -\mbox{\Hypertarget{classGpgFrontend_1_1CacheManager_a3cbc3238638dcd8b4722bfdf560c73fe}\label{classGpgFrontend_1_1CacheManager_a3cbc3238638dcd8b4722bfdf560c73fe}} -\index{GpgFrontend::CacheManager@{GpgFrontend::CacheManager}!SaveCache@{SaveCache}} -\index{SaveCache@{SaveCache}!GpgFrontend::CacheManager@{GpgFrontend::CacheManager}} -\doxysubsubsection{\texorpdfstring{SaveCache()}{SaveCache()}} -{\footnotesize\ttfamily void Gpg\+Frontend\+::\+Cache\+Manager\+::\+Save\+Cache (\begin{DoxyParamCaption}\item[{std\+::string}]{key, }\item[{const nlohmann\+::json \&}]{value }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} +\doxysubsection{Constructor \& Destructor Documentation} +\mbox{\Hypertarget{classGpgFrontend_1_1CacheManager_a311ae4d0cc4f4d9425b44789aea6090a}\label{classGpgFrontend_1_1CacheManager_a311ae4d0cc4f4d9425b44789aea6090a}} +\index{GpgFrontend::CacheManager@{GpgFrontend::CacheManager}!CacheManager@{CacheManager}} +\index{CacheManager@{CacheManager}!GpgFrontend::CacheManager@{GpgFrontend::CacheManager}} +\doxysubsubsection{\texorpdfstring{CacheManager()}{CacheManager()}} +{\footnotesize\ttfamily Gpg\+Frontend\+::\+Cache\+Manager\+::\+Cache\+Manager (\begin{DoxyParamCaption}\item[{int}]{channel = {\ttfamily \mbox{\hyperlink{classGpgFrontend_1_1SingletonFunctionObject_a50e2b3794d6553f4231eaec72d9d0a50}{Singleton\+Function\+Object\+::\+Get\+Default\+Channel}}()} }\end{DoxyParamCaption})} Copyright (C) 2021 Saturneric @@ -46,10 +93,6 @@ All the source code of \mbox{\hyperlink{namespaceGpgFrontend}{Gpg\+Frontend}} wa SPDX-\/\+License-\/\+Identifier\+: GPL-\/3.\+0-\/or-\/later -References Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Data\+Object\+Operator $>$\+::\+Get\+Instance(). - - - The documentation for this class was generated from the following files\+:\begin{DoxyCompactItemize} \item src/core/function/Cache\+Manager.\+h\item diff --git a/docs/latex/classGpgFrontend_1_1CacheManager__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1CacheManager__coll__graph.md5 index 03ce9218..d6246bd7 100644 --- a/docs/latex/classGpgFrontend_1_1CacheManager__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1CacheManager__coll__graph.md5 @@ -1 +1 @@ -ab999b5079abf1e5aba4c0035606f5da \ No newline at end of file +6705043a5eeb786502d6bb0a135a9355 \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1CacheManager__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1CacheManager__coll__graph.pdf index 306c40df..c5e886ba 100644 Binary files a/docs/latex/classGpgFrontend_1_1CacheManager__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1CacheManager__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1CacheManager__inherit__graph.md5 b/docs/latex/classGpgFrontend_1_1CacheManager__inherit__graph.md5 new file mode 100644 index 00000000..997d4b16 --- /dev/null +++ b/docs/latex/classGpgFrontend_1_1CacheManager__inherit__graph.md5 @@ -0,0 +1 @@ +8215f6a788ced560e59e04247bfe9ee6 \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1CacheManager__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1CacheManager__inherit__graph.pdf new file mode 100644 index 00000000..6e295bad Binary files /dev/null and b/docs/latex/classGpgFrontend_1_1CacheManager__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1ChannelObject__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1ChannelObject__coll__graph.pdf index 52a3806c..544b9658 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.md5 b/docs/latex/classGpgFrontend_1_1ChannelObject__inherit__graph.md5 index 1505df64..376f79b2 100644 --- a/docs/latex/classGpgFrontend_1_1ChannelObject__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1ChannelObject__inherit__graph.md5 @@ -1 +1 @@ -78b143b371f4ced9cac5b69c2b351f6d \ No newline at end of file +c930f53b70db9fe7e3145adade30b77b \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1ChannelObject__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1ChannelObject__inherit__graph.pdf index 313f96a1..554e6c76 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 494df42d..86a14049 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 a71cecc7..d8e68566 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 76f0c438..e5ccc685 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_1CoreSignalStation__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1CoreSignalStation__coll__graph.pdf index 44c98386..03a6544b 100644 Binary files a/docs/latex/classGpgFrontend_1_1CoreSignalStation__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1CoreSignalStation__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1CoreSignalStation__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1CoreSignalStation__inherit__graph.pdf index af51608e..ddb7b691 100644 Binary files a/docs/latex/classGpgFrontend_1_1CoreSignalStation__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1CoreSignalStation__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1DataObjectOperator__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1DataObjectOperator__coll__graph.md5 index 3e33bc49..118d00b0 100644 --- a/docs/latex/classGpgFrontend_1_1DataObjectOperator__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1DataObjectOperator__coll__graph.md5 @@ -1 +1 @@ -94202f3dfac8b1dc2a0d1e4c328ebeb6 \ No newline at end of file +cb5750544117c4ceeda82057e077dac0 \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1DataObjectOperator__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1DataObjectOperator__coll__graph.pdf index a0274545..031afc32 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 e7682883..5b6b4181 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 13385154..1b1ff374 100644 Binary files a/docs/latex/classGpgFrontend_1_1FileOperator__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1FileOperator__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GenKeyInfo__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GenKeyInfo__coll__graph.pdf index ed5afd65..34e6b359 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 59216e62..c1d2fdfd 100644 --- a/docs/latex/classGpgFrontend_1_1GlobalSettingStation.tex +++ b/docs/latex/classGpgFrontend_1_1GlobalSettingStation.tex @@ -53,6 +53,18 @@ std\+::filesystem\+::path \mbox{\hyperlink{classGpgFrontend_1_1GlobalSettingStat \begin{DoxyCompactList}\small\item\em Get the Resource Dir object. \end{DoxyCompactList}\item std\+::filesystem\+::path \mbox{\hyperlink{classGpgFrontend_1_1GlobalSettingStation_a385ae4ab6ad5b17742a5405fa693d789}{Get\+Certs\+Dir}} () const \begin{DoxyCompactList}\small\item\em Get the Certs Dir object. \end{DoxyCompactList}\item +\mbox{\Hypertarget{classGpgFrontend_1_1GlobalSettingStation_a3029ae27bcb2d845f61f7870f43f8c6f}\label{classGpgFrontend_1_1GlobalSettingStation_a3029ae27bcb2d845f61f7870f43f8c6f}} +std\+::string {\bfseries Get\+Log\+Files\+Size} () const +\item +\mbox{\Hypertarget{classGpgFrontend_1_1GlobalSettingStation_a4da1d828e5bb719025f5b8e279e0bd02}\label{classGpgFrontend_1_1GlobalSettingStation_a4da1d828e5bb719025f5b8e279e0bd02}} +std\+::string {\bfseries Get\+Data\+Objects\+Files\+Size} () const +\item +\mbox{\Hypertarget{classGpgFrontend_1_1GlobalSettingStation_a43c472c40896308e7bbc14796b5740af}\label{classGpgFrontend_1_1GlobalSettingStation_a43c472c40896308e7bbc14796b5740af}} +void {\bfseries Clear\+All\+Log\+Files} () const +\item +\mbox{\Hypertarget{classGpgFrontend_1_1GlobalSettingStation_a393186ae479062b007a41485f608636f}\label{classGpgFrontend_1_1GlobalSettingStation_a393186ae479062b007a41485f608636f}} +void {\bfseries Clear\+All\+Data\+Objects} () const +\item void \mbox{\hyperlink{classGpgFrontend_1_1GlobalSettingStation_ac061ac8e5308f67ea52b98888bbb2e8d}{Sync\+Settings}} () noexcept \begin{DoxyCompactList}\small\item\em sync the settings to the file \end{DoxyCompactList}\end{DoxyCompactItemize} \doxysubsection*{Private Member Functions} @@ -60,6 +72,15 @@ void \mbox{\hyperlink{classGpgFrontend_1_1GlobalSettingStation_ac061ac8e5308f67e \item \mbox{\Hypertarget{classGpgFrontend_1_1GlobalSettingStation_a1e1993b72d0ad09d247b643b4447e57c}\label{classGpgFrontend_1_1GlobalSettingStation_a1e1993b72d0ad09d247b643b4447e57c}} void {\bfseries init\+\_\+app\+\_\+secure\+\_\+key} () +\item +\mbox{\Hypertarget{classGpgFrontend_1_1GlobalSettingStation_a4eb35bd5306e8c393ad168e91826aed4}\label{classGpgFrontend_1_1GlobalSettingStation_a4eb35bd5306e8c393ad168e91826aed4}} +int64\+\_\+t {\bfseries get\+\_\+files\+\_\+size\+\_\+at\+\_\+path} (std\+::filesystem\+::path path, std\+::string filename\+\_\+pattern) const +\item +\mbox{\Hypertarget{classGpgFrontend_1_1GlobalSettingStation_a369e57383a99bc673273c2819b8bebbb}\label{classGpgFrontend_1_1GlobalSettingStation_a369e57383a99bc673273c2819b8bebbb}} +std\+::string {\bfseries get\+\_\+human\+\_\+readable\+\_\+size} (int64\+\_\+t size) const +\item +\mbox{\Hypertarget{classGpgFrontend_1_1GlobalSettingStation_a2b40c59a9fce37873dd3564f8e1bd906}\label{classGpgFrontend_1_1GlobalSettingStation_a2b40c59a9fce37873dd3564f8e1bd906}} +void {\bfseries delete\+\_\+all\+\_\+files} (std\+::filesystem\+::path path, std\+::string filename\+\_\+pattern) const \end{DoxyCompactItemize} \doxysubsection*{Private Attributes} \begin{DoxyCompactItemize} @@ -288,7 +309,7 @@ Referenced by Global\+Setting\+Station(). {\bfseries Initial value\+:} \begin{DoxyCode}{0} \DoxyCodeLine{=} -\DoxyCodeLine{ \mbox{\hyperlink{classGpgFrontend_1_1GlobalSettingStation_a58fff8a42f98ad7989bffb8322344cd6}{app\_data\_path\_}} / \textcolor{stringliteral}{"{}objs"{}}} +\DoxyCodeLine{ \mbox{\hyperlink{classGpgFrontend_1_1GlobalSettingStation_a58fff8a42f98ad7989bffb8322344cd6}{app\_data\_path\_}} / \textcolor{stringliteral}{"{}data\_objs"{}}} \end{DoxyCode} diff --git a/docs/latex/classGpgFrontend_1_1GlobalSettingStation__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1GlobalSettingStation__coll__graph.md5 index 341909cf..c2640e9d 100644 --- a/docs/latex/classGpgFrontend_1_1GlobalSettingStation__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1GlobalSettingStation__coll__graph.md5 @@ -1 +1 @@ -baa5e223600bf508a726e5a78f491e7a \ No newline at end of file +0b38ebbd4227ed47a6529c376e413577 \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1GlobalSettingStation__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GlobalSettingStation__coll__graph.pdf index fd066b5d..56f6ad84 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.md5 b/docs/latex/classGpgFrontend_1_1GlobalSettingStation__inherit__graph.md5 index 341909cf..c2640e9d 100644 --- a/docs/latex/classGpgFrontend_1_1GlobalSettingStation__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1GlobalSettingStation__inherit__graph.md5 @@ -1 +1 @@ -baa5e223600bf508a726e5a78f491e7a \ No newline at end of file +0b38ebbd4227ed47a6529c376e413577 \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1GlobalSettingStation__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GlobalSettingStation__inherit__graph.pdf index fd066b5d..56f6ad84 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_1GpgAdvancedOperator__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgAdvancedOperator__coll__graph.pdf index b87f8dc3..672b1169 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgAdvancedOperator__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgAdvancedOperator__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgAdvancedOperator__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgAdvancedOperator__inherit__graph.pdf index 3c8c4ab1..7adbda8b 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgAdvancedOperator__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgAdvancedOperator__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 35652169..4ea69084 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 defdd7df..631827a7 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 73bef2d4..c85d3967 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 eadd9a02..f336cd1c 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 024ccd00..e2ccb644 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 27df0445..85fca1c6 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 1d14001e..d626c3a1 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 fe7671f6..d82407ff 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 9aaa723a..423a55d8 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 2ba7f52a..e4c30cc7 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 4af8fa86..9f169519 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 1bec8482..ce51033b 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 60ecbbbe..9abf19b7 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 60ecbbbe..9abf19b7 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 6fb9bd16..426d83e5 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 e29b8b14..46da9313 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 fbe68fed..1b62e493 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 d5493528..a3a75794 100644 --- a/docs/latex/classGpgFrontend_1_1GpgKey.tex +++ b/docs/latex/classGpgFrontend_1_1GpgKey.tex @@ -34,6 +34,8 @@ std\+::string \mbox{\hyperlink{classGpgFrontend_1_1GpgKey_ad2440a2902c81192d5549 \item std\+::string \mbox{\hyperlink{classGpgFrontend_1_1GpgKey_a3327ad34ff14feb75f3fbfc2bfb7fc44}{Get\+Owner\+Trust}} () const \item +int \mbox{\hyperlink{classGpgFrontend_1_1GpgKey_a4ced7bda206a0d72a2548783198ae4fe}{Get\+Owner\+Trust\+Level}} () const +\item std\+::string \mbox{\hyperlink{classGpgFrontend_1_1GpgKey_a1c21bc3b1788753f56272ad73052fc5f}{Get\+Public\+Key\+Algo}} () const \item boost\+::posix\+\_\+time\+::ptime \mbox{\hyperlink{classGpgFrontend_1_1GpgKey_a3532e20298b642f5d312712fa8a791df}{Get\+Last\+Update\+Time}} () const @@ -288,6 +290,15 @@ Referenced by Gpg\+Frontend\+::\+UI\+::\+Verify\+Key\+Detail\+Box\+::create\+\_\ \begin{DoxyReturn}{Returns} std\+::string \end{DoxyReturn} +\mbox{\Hypertarget{classGpgFrontend_1_1GpgKey_a4ced7bda206a0d72a2548783198ae4fe}\label{classGpgFrontend_1_1GpgKey_a4ced7bda206a0d72a2548783198ae4fe}} +\index{GpgFrontend::GpgKey@{GpgFrontend::GpgKey}!GetOwnerTrustLevel@{GetOwnerTrustLevel}} +\index{GetOwnerTrustLevel@{GetOwnerTrustLevel}!GpgFrontend::GpgKey@{GpgFrontend::GpgKey}} +\doxysubsubsection{\texorpdfstring{GetOwnerTrustLevel()}{GetOwnerTrustLevel()}} +{\footnotesize\ttfamily int Gpg\+Frontend\+::\+Gpg\+Key\+::\+Get\+Owner\+Trust\+Level (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption}) const} + +\begin{DoxyReturn}{Returns} +int +\end{DoxyReturn} \mbox{\Hypertarget{classGpgFrontend_1_1GpgKey_a5b276fdeb438fe14ec2850d799401be6}\label{classGpgFrontend_1_1GpgKey_a5b276fdeb438fe14ec2850d799401be6}} \index{GpgFrontend::GpgKey@{GpgFrontend::GpgKey}!GetPrimaryKeyLength@{GetPrimaryKeyLength}} \index{GetPrimaryKeyLength@{GetPrimaryKeyLength}!GpgFrontend::GpgKey@{GpgFrontend::GpgKey}} diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyGetter__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1GpgKeyGetter__coll__graph.md5 index 75646bb1..0493b49a 100644 --- a/docs/latex/classGpgFrontend_1_1GpgKeyGetter__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1GpgKeyGetter__coll__graph.md5 @@ -1 +1 @@ -93a1ba94ff9416de80138bf340e0d37b \ No newline at end of file +bfcb3df4ec97b2f0dfa315a2f9d5a563 \ 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 b968b652..5ec515a1 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 0d4ac62e..bfa8b3e6 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 72f83bdd..ea386323 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 21023a20..b3ff5a29 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 d772676f..327415a8 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 615f0abf..dc2dbce9 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 7fb9c71d..f0f65edf 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 f4505fbb..176bc419 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 4dba3913..f098af78 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgKeySignature__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgKeySignature__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgKey__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1GpgKey__coll__graph.md5 index 841c005c..5508820e 100644 --- a/docs/latex/classGpgFrontend_1_1GpgKey__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1GpgKey__coll__graph.md5 @@ -1 +1 @@ -ce0b43b170e5c2d599a0f554a50af15c \ No newline at end of file +3297e969434bf8163fc809b6dc936df5 \ 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 94a65bed..29de32d2 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 97b0059a..889693f2 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 44eb3698..5ac9eabd 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 3eef444e..687ba809 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 e338a5fa..87a3f455 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 a4733325..559efea8 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 64c11514..beaacffd 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 13ac2a06..75beccb7 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 c0159e8c..7bdf81a3 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 b2a90c3d..f7c73c1b 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 298cc191..ed84ebf5 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 d38d67cf..5e1553ec 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 6c912c1b..c55770f8 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 b55a3688..b319797b 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 45a8890a..1b7e0f2b 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 45a8890a..1b7e0f2b 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 41044ee0..d428b311 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.md5 b/docs/latex/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.md5 index 71753f5b..7f4a7bb1 100644 --- a/docs/latex/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.md5 @@ -1 +1 @@ -9626564b0c0c831bfd6a4e864b6e77ff \ No newline at end of file +5d2cb6220c0a11001c7ef26264159bd8 \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.pdf index c4d384a2..66ea16d6 100644 Binary files a/docs/latex/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1SingletonStorageCollection__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1SingletonStorageCollection__coll__graph.pdf index 0ee013da..9fadc53e 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 9da5ecc4..26632c8b 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_1ThreadSafeMap.tex b/docs/latex/classGpgFrontend_1_1ThreadSafeMap.tex new file mode 100644 index 00000000..600d3ef0 --- /dev/null +++ b/docs/latex/classGpgFrontend_1_1ThreadSafeMap.tex @@ -0,0 +1,69 @@ +\hypertarget{classGpgFrontend_1_1ThreadSafeMap}{}\doxysection{Gpg\+Frontend\+::Thread\+Safe\+Map$<$ Key, Value $>$ Class Template Reference} +\label{classGpgFrontend_1_1ThreadSafeMap}\index{GpgFrontend::ThreadSafeMap$<$ Key, Value $>$@{GpgFrontend::ThreadSafeMap$<$ Key, Value $>$}} + + +Inheritance diagram for Gpg\+Frontend\+::Thread\+Safe\+Map$<$ Key, Value $>$\+: +\nopagebreak +\begin{figure}[H] +\begin{center} +\leavevmode +\includegraphics[width=279pt]{classGpgFrontend_1_1ThreadSafeMap__inherit__graph} +\end{center} +\end{figure} + + +Collaboration diagram for Gpg\+Frontend\+::Thread\+Safe\+Map$<$ Key, Value $>$\+: +\nopagebreak +\begin{figure}[H] +\begin{center} +\leavevmode +\includegraphics[width=349pt]{classGpgFrontend_1_1ThreadSafeMap__coll__graph} +\end{center} +\end{figure} +\doxysubsection*{Public Types} +\begin{DoxyCompactItemize} +\item +\mbox{\Hypertarget{classGpgFrontend_1_1ThreadSafeMap_ae47d44e31883547e285e5366db23a0fe}\label{classGpgFrontend_1_1ThreadSafeMap_ae47d44e31883547e285e5366db23a0fe}} +using {\bfseries Map\+Type} = std\+::map$<$ Key, Value $>$ +\item +\mbox{\Hypertarget{classGpgFrontend_1_1ThreadSafeMap_af1a2463215950aab4068f0ac7aaf4be2}\label{classGpgFrontend_1_1ThreadSafeMap_af1a2463215950aab4068f0ac7aaf4be2}} +using {\bfseries Iterator\+Type} = typename Map\+Type\+::iterator +\end{DoxyCompactItemize} +\doxysubsection*{Public Member Functions} +\begin{DoxyCompactItemize} +\item +\mbox{\Hypertarget{classGpgFrontend_1_1ThreadSafeMap_a8499e210ffb71c52cdeb309269127157}\label{classGpgFrontend_1_1ThreadSafeMap_a8499e210ffb71c52cdeb309269127157}} +void {\bfseries insert} (const Key \&key, const Value \&value) +\item +\mbox{\Hypertarget{classGpgFrontend_1_1ThreadSafeMap_a76a53b29aa6246066a28838f1edecbbc}\label{classGpgFrontend_1_1ThreadSafeMap_a76a53b29aa6246066a28838f1edecbbc}} +std\+::optional$<$ Value $>$ {\bfseries get} (const Key \&key) +\item +\mbox{\Hypertarget{classGpgFrontend_1_1ThreadSafeMap_adf6a7f5770e39645bfc97b3f1a5ed93e}\label{classGpgFrontend_1_1ThreadSafeMap_adf6a7f5770e39645bfc97b3f1a5ed93e}} +bool {\bfseries exists} (const Key \&key) +\item +\mbox{\Hypertarget{classGpgFrontend_1_1ThreadSafeMap_a894aa615f685990f88faaac4df4c1924}\label{classGpgFrontend_1_1ThreadSafeMap_a894aa615f685990f88faaac4df4c1924}} +Iterator\+Type {\bfseries begin} () +\item +\mbox{\Hypertarget{classGpgFrontend_1_1ThreadSafeMap_a7edfa6ed1e9ab39648df92416de860ef}\label{classGpgFrontend_1_1ThreadSafeMap_a7edfa6ed1e9ab39648df92416de860ef}} +Iterator\+Type {\bfseries end} () +\item +\mbox{\Hypertarget{classGpgFrontend_1_1ThreadSafeMap_a11ef5fe7417c123d4bb5d0445e36f8c7}\label{classGpgFrontend_1_1ThreadSafeMap_a11ef5fe7417c123d4bb5d0445e36f8c7}} +\mbox{\hyperlink{classGpgFrontend_1_1ThreadSafeMap}{Thread\+Safe\+Map}} \& {\bfseries mirror} () +\end{DoxyCompactItemize} +\doxysubsection*{Private Attributes} +\begin{DoxyCompactItemize} +\item +\mbox{\Hypertarget{classGpgFrontend_1_1ThreadSafeMap_a2058ecb5e51a52f0d1721aa7de6943ee}\label{classGpgFrontend_1_1ThreadSafeMap_a2058ecb5e51a52f0d1721aa7de6943ee}} +Map\+Type {\bfseries map\+\_\+mirror\+\_\+} +\item +\mbox{\Hypertarget{classGpgFrontend_1_1ThreadSafeMap_a86951ca9a069cc520549757437b01332}\label{classGpgFrontend_1_1ThreadSafeMap_a86951ca9a069cc520549757437b01332}} +Map\+Type {\bfseries map\+\_\+} +\item +\mbox{\Hypertarget{classGpgFrontend_1_1ThreadSafeMap_acc5f153d80e6930caaa16315e938a044}\label{classGpgFrontend_1_1ThreadSafeMap_acc5f153d80e6930caaa16315e938a044}} +std\+::shared\+\_\+mutex {\bfseries mutex\+\_\+} +\end{DoxyCompactItemize} + + +The documentation for this class was generated from the following file\+:\begin{DoxyCompactItemize} +\item +src/core/function/Cache\+Manager.\+h\end{DoxyCompactItemize} diff --git a/docs/latex/classGpgFrontend_1_1ThreadSafeMap__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1ThreadSafeMap__coll__graph.md5 new file mode 100644 index 00000000..15694f8b --- /dev/null +++ b/docs/latex/classGpgFrontend_1_1ThreadSafeMap__coll__graph.md5 @@ -0,0 +1 @@ +b98b1c29dbb96a1d1711a8327fb3ea07 \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1ThreadSafeMap__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1ThreadSafeMap__coll__graph.pdf new file mode 100644 index 00000000..e7ca0a33 Binary files /dev/null and b/docs/latex/classGpgFrontend_1_1ThreadSafeMap__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1ThreadSafeMap__inherit__graph.md5 b/docs/latex/classGpgFrontend_1_1ThreadSafeMap__inherit__graph.md5 new file mode 100644 index 00000000..f327c7cb --- /dev/null +++ b/docs/latex/classGpgFrontend_1_1ThreadSafeMap__inherit__graph.md5 @@ -0,0 +1 @@ +accbdf4c35ffd477d3bcb9835cb0ca46 \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1ThreadSafeMap__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1ThreadSafeMap__inherit__graph.pdf new file mode 100644 index 00000000..55da5061 Binary files /dev/null and b/docs/latex/classGpgFrontend_1_1ThreadSafeMap__inherit__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 4f35e44d..b197865f 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 7af274b1..694294cd 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 74f8d2b0..3d0d9f3e 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 3b4baa1e..0f6b6998 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 71d107ee..ec5d1f14 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 0dae96ca..9349287c 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 468061f0..a6e214c8 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 bbe8d7d4..de1c4f96 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 bbd93ca8..f7412c8c 100644 Binary files a/docs/latex/classGpgFrontend_1_1Thread_1_1Task__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1Thread_1_1Task__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.pdf index 8e382cd0..50c7deb2 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.pdf index 6129e9a2..2d9a904c 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 6d9432af..17dcb012 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 6d9432af..17dcb012 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1AdvancedTab__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1AdvancedTab__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1AppearanceTab__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1AppearanceTab__coll__graph.pdf index 541d258f..09ceac14 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1AppearanceTab__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1AppearanceTab__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1AppearanceTab__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1AppearanceTab__inherit__graph.pdf index cedda6b9..6d05cb96 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 735d64fb..210cf3ec 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 735d64fb..210cf3ec 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.tex b/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils.tex index 59944065..f89ddcde 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils.tex @@ -75,6 +75,15 @@ void {\bfseries Signal\+Restart\+Application} (int) \begin{DoxyCompactList}\small\item\em Construct a new Common Utils object. \end{DoxyCompactList}\item \mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1CommonUtils_abb25baa60d62d6842028e174f7e341fe}\label{classGpgFrontend_1_1UI_1_1CommonUtils_abb25baa60d62d6842028e174f7e341fe}} bool {\bfseries is\+Application\+Need\+Restart} () +\item +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1CommonUtils_a570b6d08ceb683f950e94d648bf334ea}\label{classGpgFrontend_1_1UI_1_1CommonUtils_a570b6d08ceb683f950e94d648bf334ea}} +bool {\bfseries Key\+Existsin\+Favourite\+List} (const \mbox{\hyperlink{classGpgFrontend_1_1GpgKey}{Gpg\+Key}} \&key) +\item +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1CommonUtils_a7a7b01b992c465ded7e25e54e3ebacec}\label{classGpgFrontend_1_1UI_1_1CommonUtils_a7a7b01b992c465ded7e25e54e3ebacec}} +void {\bfseries Add\+Key2\+Favourtie} (const \mbox{\hyperlink{classGpgFrontend_1_1GpgKey}{Gpg\+Key}} \&key) +\item +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1CommonUtils_a0cf35e9d02ff3464cb83435a61d060c2}\label{classGpgFrontend_1_1UI_1_1CommonUtils_a0cf35e9d02ff3464cb83435a61d060c2}} +void {\bfseries Remove\+Key\+From\+Favourite} (const \mbox{\hyperlink{classGpgFrontend_1_1GpgKey}{Gpg\+Key}} \&key) \end{DoxyCompactItemize} \doxysubsection*{Static Public Member Functions} \begin{DoxyCompactItemize} @@ -120,7 +129,7 @@ Common\+Utils$\ast$ \end{DoxyReturn} -Referenced by Gpg\+Frontend\+::\+UI\+::\+Key\+Mgmt\+::create\+\_\+actions(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::create\+\_\+actions(), Gpg\+Frontend\+::\+UI\+::\+Init\+Gpg\+Frontend\+UI(), Gpg\+Frontend\+::\+UI\+::\+Run\+Gpg\+Frontend\+UI(), and Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::slot\+\_\+import\+\_\+key\+\_\+from\+\_\+edit(). +Referenced by Gpg\+Frontend\+::\+UI\+::\+Key\+Mgmt\+::create\+\_\+actions(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::create\+\_\+actions(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::create\+\_\+dock\+\_\+windows(), Gpg\+Frontend\+::\+UI\+::\+Init\+Gpg\+Frontend\+UI(), Gpg\+Frontend\+::\+UI\+::\+Run\+Gpg\+Frontend\+UI(), and Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::slot\+\_\+import\+\_\+key\+\_\+from\+\_\+edit(). \mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1CommonUtils_a95cd625a2e0e74ee4d564843c6d16791}\label{classGpgFrontend_1_1UI_1_1CommonUtils_a95cd625a2e0e74ee4d564843c6d16791}} \index{GpgFrontend::UI::CommonUtils@{GpgFrontend::UI::CommonUtils}!SlotExecuteCommand@{SlotExecuteCommand}} diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__coll__graph.md5 index c34baa6a..5f1178fd 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__coll__graph.md5 @@ -1 +1 @@ -f270930dffbddb301080ef9812e57881 \ No newline at end of file +5d7967d057764d9f8a9a536e143c5f0f \ No newline at end of file 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 ea81eba5..bbe449e7 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.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__inherit__graph.md5 index 9aa199ce..e6b6646e 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__inherit__graph.md5 @@ -1 +1 @@ -6accfcf19f646d1bbefcd49de3693f4a \ No newline at end of file +c535fea664997d09e9055225aa0044bb \ No newline at end of file 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 63b6cbcf..214d80db 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 d4ecb856..0b747a9b 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 d4ecb856..0b747a9b 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ConclusionPage__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ConclusionPage__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.pdf index 255a3b48..70b5ed93 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.pdf index 09621be3..a76ca8cd 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 2fd9b00f..67b4bbcd 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 76d95f22..6171ccef 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 f1cba2b0..a04941e8 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 6716acf3..18a3ab68 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 4b3a2a75..d37c9097 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 3c04d126..258ef759 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__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.pdf index 13e9ed37..dae7dfb5 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.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.pdf index 37cb6eca..62c6c28e 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__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralMainWindow__coll__graph.pdf index 1538489e..168a0004 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.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralMainWindow__inherit__graph.md5 index 68375ec5..e7f04290 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralMainWindow__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralMainWindow__inherit__graph.md5 @@ -1 +1 @@ -7bb292e28a31dc8a8ba7bde1f832b6da \ No newline at end of file +6bf2715cc80ec8a9aa368f7d03d726f3 \ No newline at end of file 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 3af01344..be118eb6 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 dcbdd0d9..e97e4b35 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralTab.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralTab.tex @@ -70,7 +70,7 @@ 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(), and Gpg\+Frontend\+::\+UI\+::\+Settings\+Dialog\+::\+List\+Languages(). diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralTab__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralTab__coll__graph.md5 index 2c2eabb8..346ca508 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralTab__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralTab__coll__graph.md5 @@ -1 +1 @@ -a6364f24d2dd3f6147e4df04092fdf08 \ No newline at end of file +6a68f74553d8af9a5861874372b8b219 \ 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 79eacd10..833f8c43 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 f829e7af..6aa11384 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_1GnuPGControllerDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__coll__graph.pdf index 346c7611..970ab01e 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__inherit__graph.pdf index d86f5f8a..8779ca10 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GnupgTab__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GnupgTab__coll__graph.pdf index 73fd447a..b82bdd9c 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GnupgTab__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GnupgTab__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GnupgTab__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GnupgTab__inherit__graph.pdf index f21a3696..b5a77eef 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 63975c84..65478b3c 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 63975c84..65478b3c 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 3f357140..854bbce1 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 3f357140..854bbce1 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 365550f9..b0921980 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 6fc5bcd8..704da64e 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 890d4bc6..9fd7aeeb 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 890d4bc6..9fd7aeeb 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 5164cad1..19757e58 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 5164cad1..19757e58 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1IntroPage__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1IntroPage__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.pdf index 27e21248..edd51a6b 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.pdf index 823b739f..647e1740 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.pdf index 2571613b..e1985749 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.pdf index 735ece95..f9392844 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 94c22c5d..341cf69c 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 94c22c5d..341cf69c 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenPage__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenPage__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.pdf index 00c56a71..b1e7fc6d 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.pdf index fcf9ca6e..6235ad22 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.tex b/docs/latex/classGpgFrontend_1_1UI_1_1KeyList.tex index 9aabe6bd..807ec6b1 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyList.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyList.tex @@ -25,6 +25,9 @@ Collaboration diagram for Gpg\+Frontend\+::UI\+::Key\+List\+: \item \mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1KeyList_a152e66db4a0f033366f43b4ec89073f4}\label{classGpgFrontend_1_1UI_1_1KeyList_a152e66db4a0f033366f43b4ec89073f4}} void {\bfseries Slot\+Refresh} () +\item +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1KeyList_a84499e74d082e71e90a8526991c5331a}\label{classGpgFrontend_1_1UI_1_1KeyList_a84499e74d082e71e90a8526991c5331a}} +void {\bfseries Slot\+Refresh\+UI} () \end{DoxyCompactItemize} \doxysubsection*{Signals} \begin{DoxyCompactItemize} @@ -39,7 +42,7 @@ void {\bfseries Signal\+Refresh\+Database} () \item \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1KeyList_a7c9d5cacdb42e1fbda5d3cc96e861418}{Key\+List}} (Key\+Menu\+Ability\+::\+Ability\+Type menu\+\_\+ability, QWidget $\ast$parent=nullptr) \begin{DoxyCompactList}\small\item\em Construct a new Key List object. \end{DoxyCompactList}\item -void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1KeyList_a73ddb7feb1f70eac44e038c3dc925fec}{Add\+List\+Group\+Tab}} (const QString \&name, Key\+List\+Row\+::\+Key\+Type select\+Type=Key\+List\+Row\+::\+SECRET\+\_\+\+OR\+\_\+\+PUBLIC\+\_\+\+KEY, Key\+List\+Column\+::\+Info\+Type info\+Type=Key\+List\+Column\+::\+ALL, const std\+::function$<$ bool(const \mbox{\hyperlink{classGpgFrontend_1_1GpgKey}{Gpg\+Key}} \&)$>$ \&filter=\mbox{[}$\,$\mbox{]}(const \mbox{\hyperlink{classGpgFrontend_1_1GpgKey}{Gpg\+Key}} \&) -\/$>$ bool \{ return true;\}) +void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1KeyList_ab8663d18901d10c00dbcc0ba852b3bf4}{Add\+List\+Group\+Tab}} (const QString \&name, const QString \&id, Key\+List\+Row\+::\+Key\+Type select\+Type=Key\+List\+Row\+::\+SECRET\+\_\+\+OR\+\_\+\+PUBLIC\+\_\+\+KEY, Key\+List\+Column\+::\+Info\+Type info\+Type=Key\+List\+Column\+::\+ALL, const Key\+Table\+::\+Key\+Table\+Filter filter=\mbox{[}$\,$\mbox{]}(const \mbox{\hyperlink{classGpgFrontend_1_1GpgKey}{Gpg\+Key}} \&, const \mbox{\hyperlink{structGpgFrontend_1_1UI_1_1KeyTable}{Key\+Table}} \&) -\/$>$ bool \{ return true;\}) \item void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1KeyList_a7d75246eee6368be295c9ab5fe5ef291}{Set\+Double\+Clicked\+Action}} (std\+::function$<$ void(const \mbox{\hyperlink{classGpgFrontend_1_1GpgKey}{Gpg\+Key}} \&, QWidget $\ast$)$>$ action) \begin{DoxyCompactList}\small\item\em Set the Double Clicked Action object. \end{DoxyCompactList}\item @@ -106,6 +109,9 @@ void {\bfseries uncheck\+\_\+all} () \item \mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1KeyList_a0c3090591dff7b68bfb83c93d2c168e3}\label{classGpgFrontend_1_1UI_1_1KeyList_a0c3090591dff7b68bfb83c93d2c168e3}} void {\bfseries check\+\_\+all} () +\item +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1KeyList_adc5099f326fdd4da9a82e34a68cb2fd7}\label{classGpgFrontend_1_1UI_1_1KeyList_adc5099f326fdd4da9a82e34a68cb2fd7}} +void {\bfseries filter\+\_\+by\+\_\+keyword} () \end{DoxyCompactItemize} \doxysubsection*{Private Attributes} \begin{DoxyCompactItemize} @@ -157,11 +163,11 @@ Construct a new Key List object. \doxysubsection{Member Function Documentation} -\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1KeyList_a73ddb7feb1f70eac44e038c3dc925fec}\label{classGpgFrontend_1_1UI_1_1KeyList_a73ddb7feb1f70eac44e038c3dc925fec}} +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1KeyList_ab8663d18901d10c00dbcc0ba852b3bf4}\label{classGpgFrontend_1_1UI_1_1KeyList_ab8663d18901d10c00dbcc0ba852b3bf4}} \index{GpgFrontend::UI::KeyList@{GpgFrontend::UI::KeyList}!AddListGroupTab@{AddListGroupTab}} \index{AddListGroupTab@{AddListGroupTab}!GpgFrontend::UI::KeyList@{GpgFrontend::UI::KeyList}} \doxysubsubsection{\texorpdfstring{AddListGroupTab()}{AddListGroupTab()}} -{\footnotesize\ttfamily void Gpg\+Frontend\+::\+UI\+::\+Key\+List\+::\+Add\+List\+Group\+Tab (\begin{DoxyParamCaption}\item[{const QString \&}]{name, }\item[{Key\+List\+Row\+::\+Key\+Type}]{select\+Type = {\ttfamily KeyListRow\+:\+:SECRET\+\_\+OR\+\_\+PUBLIC\+\_\+KEY}, }\item[{Key\+List\+Column\+::\+Info\+Type}]{info\+Type = {\ttfamily KeyListColumn\+:\+:ALL}, }\item[{const std\+::function$<$ bool(const \mbox{\hyperlink{classGpgFrontend_1_1GpgKey}{Gpg\+Key}} \&)$>$ \&}]{filter = {\ttfamily \mbox{[}\mbox{]}(const~\mbox{\hyperlink{classGpgFrontend_1_1GpgKey}{Gpg\+Key}}\&)~-\/$>$~bool~\{~return~true;~\}} }\end{DoxyParamCaption})} +{\footnotesize\ttfamily void Gpg\+Frontend\+::\+UI\+::\+Key\+List\+::\+Add\+List\+Group\+Tab (\begin{DoxyParamCaption}\item[{const QString \&}]{name, }\item[{const QString \&}]{id, }\item[{Key\+List\+Row\+::\+Key\+Type}]{select\+Type = {\ttfamily KeyListRow\+:\+:SECRET\+\_\+OR\+\_\+PUBLIC\+\_\+KEY}, }\item[{Key\+List\+Column\+::\+Info\+Type}]{info\+Type = {\ttfamily KeyListColumn\+:\+:ALL}, }\item[{const Key\+Table\+::\+Key\+Table\+Filter}]{filter = {\ttfamily \mbox{[}\mbox{]}(const~\mbox{\hyperlink{classGpgFrontend_1_1GpgKey}{Gpg\+Key}}\&,~const~\mbox{\hyperlink{structGpgFrontend_1_1UI_1_1KeyTable}{Key\+Table}}\&)~-\/$>$~bool~\{~return~true;~\}} }\end{DoxyParamCaption})} \begin{DoxyParams}{Parameters} diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyList__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyList__coll__graph.md5 index 15c04056..92c4e09a 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyList__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyList__coll__graph.md5 @@ -1 +1 @@ -f5e0e59a7bda94c8916a18075b6b541d \ No newline at end of file +37db8c9d2b39e7ae66a1fe692af573fd \ 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 bc7c71e1..1dc09c80 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.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyList__inherit__graph.md5 index b5f51add..73f84397 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyList__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyList__inherit__graph.md5 @@ -1 +1 @@ -b41bccd349fed38997430b35f2503db6 \ No newline at end of file +593c4c485f8f0b3993e223541046f6aa \ No newline at end of file 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 06b70169..2285ea6a 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyList__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyList__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.md5 index 6e6bd7c4..a3ba4ddc 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.md5 @@ -1 +1 @@ -d52c9f5d9255360ec3471ad049351e7e \ No newline at end of file +28716ee3ae1cc90c1257c9c9d338f735 \ 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 81542d6e..7cdf16e7 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 e9d0fc25..f34d3b88 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.md5 index b2720eb6..4ff75064 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.md5 @@ -1 +1 @@ -a1a2ca849121ab1b088526f5ec1680c6 \ No newline at end of file +9e9f69da8d46ab2812d31d615179c5cf \ 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 a59fa163..4a7c6d24 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.pdf index aaddff34..3a641bc0 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 40936a95..efcf4134 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 @@ -691c75d8d919dcf54ca706a8de0d74ae \ No newline at end of file +d945d223aceff0f3f7c2d2901cb8c702 \ 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 0b11cca7..004a1daf 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 c73db74e..dfb09e5c 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 5a9e4b62..3de46760 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 @@ -113ab550a95ca98fd8783b6453d12724 \ No newline at end of file +45647f24ec7799f03af39919277fc440 \ 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 3003151a..7b8ab44f 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 f85b2907..8bb0c62b 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__coll__graph.md5 index e5e455ce..8eabfa89 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__coll__graph.md5 @@ -1 +1 @@ -7368f83b6e0a1866e781471480569b80 \ No newline at end of file +42b2c738542cfdef712a5ced4600bda0 \ 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 4d09881f..390f6a1d 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 889fe1db..fb4743ca 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__coll__graph.md5 index 03939e0f..24f71298 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__coll__graph.md5 @@ -1 +1 @@ -17df790941200c9381d490957ba4dd23 \ No newline at end of file +34f030857b425bdb5c51c2b133ae4411 \ 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 b8048363..23f7d363 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 5dab5923..59ad8be1 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.pdf index 27be9022..cd87bcdc 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.pdf index 85e97e24..9231d3c7 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 8c77dfc1..f179a841 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 49bc70a7..514b55c8 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 652dee88..e93c2457 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 a67c471c..833a579a 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__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.md5 index 91030695..a01fa8cc 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.md5 @@ -1 +1 @@ -68cde4720d1c494cd970f97841832320 \ No newline at end of file +e7529b6f3414b246196970b3d9bc4e2d \ 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 6b143134..efcf6ee5 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.pdf index 73cd8f52..91136a48 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.tex b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.tex index cc67fe03..fabb18e9 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.tex @@ -17,7 +17,7 @@ Collaboration diagram for Gpg\+Frontend\+::UI\+::Key\+UIDSign\+Dialog\+: \begin{figure}[H] \begin{center} \leavevmode -\includegraphics[height=550pt]{classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph} +\includegraphics[width=350pt]{classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph} \end{center} \end{figure} \doxysubsection*{Signals} diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.md5 index c218718a..616584a5 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.md5 @@ -1 +1 @@ -cce49195bbd430ce164d2a71dbf6bd85 \ No newline at end of file +4d38d4a9419f8be1fafd0a60152b7ea7 \ 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 79491e45..5431aca8 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.pdf index 234577d3..e72e79fe 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.pdf index ec08b6aa..cda2039d 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.pdf index a9c63edf..4a30a263 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 d32a3b25..933eb9d7 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 43688a9f..69c23964 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 26060416..07b883e8 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 363108db..3a54fd5b 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 767ac382..f1cacdb4 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow.tex @@ -55,6 +55,12 @@ void {\bfseries Signal\+Loaded} () \item \mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1MainWindow_a23c517e1b4c63d03e0413bf3772ffb92}\label{classGpgFrontend_1_1UI_1_1MainWindow_a23c517e1b4c63d03e0413bf3772ffb92}} void {\bfseries Signal\+Restart\+Application} (int) +\item +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1MainWindow_a8de27a8002376b61e32f617910846412}\label{classGpgFrontend_1_1UI_1_1MainWindow_a8de27a8002376b61e32f617910846412}} +void {\bfseries Signal\+UIRefresh} () +\item +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1MainWindow_a2caccd72d474177e571c07dd47038e58}\label{classGpgFrontend_1_1UI_1_1MainWindow_a2caccd72d474177e571c07dd47038e58}} +void {\bfseries Signal\+Key\+Database\+Refresh} () \end{DoxyCompactItemize} \doxysubsection*{Public Member Functions} \begin{DoxyCompactItemize} @@ -127,6 +133,15 @@ void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1MainWindow_a821247d738457c4ee046 void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1MainWindow_a24a0b0d974fc5f8fdda60c128a82d957}{slot\+\_\+disable\+\_\+tab\+\_\+actions}} (int number) \item void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1MainWindow_a48368c77af7b1f4cb632870b8d914a28}{slot\+\_\+version\+\_\+upgrade}} (const \mbox{\hyperlink{structGpgFrontend_1_1UI_1_1SoftwareVersion}{Software\+Version}} \&version) +\item +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1MainWindow_a7ec169e4ce829f37c3605491ac617973}\label{classGpgFrontend_1_1UI_1_1MainWindow_a7ec169e4ce829f37c3605491ac617973}} +void {\bfseries slot\+\_\+add\+\_\+key\+\_\+2\+\_\+favourite} () +\item +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1MainWindow_a01aed2790d84479bd3a2551d1cc6fb91}\label{classGpgFrontend_1_1UI_1_1MainWindow_a01aed2790d84479bd3a2551d1cc6fb91}} +void {\bfseries slot\+\_\+remove\+\_\+key\+\_\+from\+\_\+favourite} () +\item +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1MainWindow_ace4433f21dbb4b1859b81c120b675e1d}\label{classGpgFrontend_1_1UI_1_1MainWindow_ace4433f21dbb4b1859b81c120b675e1d}} +void {\bfseries slot\+\_\+set\+\_\+owner\+\_\+trust\+\_\+level\+\_\+of\+\_\+key} () \end{DoxyCompactItemize} \doxysubsection*{Private Member Functions} \begin{DoxyCompactItemize} @@ -147,6 +162,9 @@ void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1MainWindow_a473b679fa0dc3cdf4f6f \item void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1MainWindow_a210ab31f4d949a50507d0690c0d1598a}{restore\+\_\+settings}} () \item +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1MainWindow_a4df2a05492bf237511d44c5e9cdd9413}\label{classGpgFrontend_1_1UI_1_1MainWindow_a4df2a05492bf237511d44c5e9cdd9413}} +void {\bfseries recover\+\_\+editor\+\_\+unsaved\+\_\+pages\+\_\+from\+\_\+cache} () +\item void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1MainWindow_a7a4b6490038470a8849231e48282da98}{save\+\_\+settings}} () \item \mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1MainWindow_a5e95f62dac9fba1ead6ec69c145923db}\label{classGpgFrontend_1_1UI_1_1MainWindow_a5e95f62dac9fba1ead6ec69c145923db}} @@ -297,6 +315,15 @@ QAction $\ast$ {\bfseries copy\+\_\+key\+\_\+id\+\_\+to\+\_\+clipboard\+\_\+act\ \mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1MainWindow_ada8351319a2aaf032fc736f39bdcf9a5}\label{classGpgFrontend_1_1UI_1_1MainWindow_ada8351319a2aaf032fc736f39bdcf9a5}} QAction $\ast$ {\bfseries copy\+\_\+key\+\_\+default\+\_\+uid\+\_\+to\+\_\+clipboard\+\_\+act\+\_\+} \{\} \item +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1MainWindow_ae9bc8395f2d2965c722442f4879902d8}\label{classGpgFrontend_1_1UI_1_1MainWindow_ae9bc8395f2d2965c722442f4879902d8}} +QAction $\ast$ {\bfseries add\+\_\+key\+\_\+2\+\_\+favourtie\+\_\+act\+\_\+} \{\} +\item +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1MainWindow_a1ddc7e6246dd5065bed0777dca4e6fb6}\label{classGpgFrontend_1_1UI_1_1MainWindow_a1ddc7e6246dd5065bed0777dca4e6fb6}} +QAction $\ast$ {\bfseries remove\+\_\+key\+\_\+from\+\_\+favourtie\+\_\+act\+\_\+} \{\} +\item +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1MainWindow_a34d67c0c4f63695751616b5f6624b674}\label{classGpgFrontend_1_1UI_1_1MainWindow_a34d67c0c4f63695751616b5f6624b674}} +QAction $\ast$ {\bfseries set\+\_\+owner\+\_\+trust\+\_\+of\+\_\+key\+\_\+act\+\_\+} \{\} +\item \mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1MainWindow_ad7b22560df7e3bb38b660d3ffc84dc83}\label{classGpgFrontend_1_1UI_1_1MainWindow_ad7b22560df7e3bb38b660d3ffc84dc83}} QAction $\ast$ \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1MainWindow_ad7b22560df7e3bb38b660d3ffc84dc83}{open\+\_\+key\+\_\+management\+\_\+act\+\_\+}} \{\} \begin{DoxyCompactList}\small\item\em Action to open key management. \end{DoxyCompactList}\item @@ -429,7 +456,7 @@ Create attachment dock window. \mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1Main Create keylist-\/ and attachment-\/dockwindows. -References Gpg\+Frontend\+::\+UI\+::\+Key\+List\+::\+Add\+List\+Group\+Tab(), Gpg\+Frontend\+::\+Gpg\+Key\+::\+Is\+Disabled(), Gpg\+Frontend\+::\+Gpg\+Key\+::\+Is\+Expired(), Gpg\+Frontend\+::\+Gpg\+Key\+::\+Is\+Private\+Key(), Gpg\+Frontend\+::\+Gpg\+Key\+::\+Is\+Revoked(), key\+\_\+list\+\_\+dock\+\_\+, and view\+\_\+menu\+\_\+. +References Gpg\+Frontend\+::\+UI\+::\+Key\+List\+::\+Add\+List\+Group\+Tab(), Gpg\+Frontend\+::\+UI\+::\+Common\+Utils\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Gpg\+Key\+::\+Is\+Disabled(), Gpg\+Frontend\+::\+Gpg\+Key\+::\+Is\+Expired(), Gpg\+Frontend\+::\+Gpg\+Key\+::\+Is\+Private\+Key(), Gpg\+Frontend\+::\+Gpg\+Key\+::\+Is\+Revoked(), key\+\_\+list\+\_\+dock\+\_\+, and view\+\_\+menu\+\_\+. \mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1MainWindow_a9fbd8a2f5b2b5869276db83a4ad20216}\label{classGpgFrontend_1_1UI_1_1MainWindow_a9fbd8a2f5b2b5869276db83a4ad20216}} \index{GpgFrontend::UI::MainWindow@{GpgFrontend::UI::MainWindow}!create\_menus@{create\_menus}} 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 3d2dbe01..9cc0bc7f 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 @@ -0f84409636ecb6a2aa12ebdb826bd454 \ No newline at end of file +ff390277ed480cc5be665b1b2385c707 \ 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 15e6a414..55eb89cf 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.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__inherit__graph.md5 index 1ed4a47f..e11042c6 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__inherit__graph.md5 @@ -1 +1 @@ -e62d658b8c56152ce6b4fa8a62e95c14 \ No newline at end of file +47a2e1c88aa773980f8bb37ccc79e4f4 \ No newline at end of file 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 fd3a6138..af51912b 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 e1c8c49e..118f07ea 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 f5827b8c..0d7f6d3d 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1NetworkTab__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1NetworkTab__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1PlainTextEditorPage__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1PlainTextEditorPage__coll__graph.pdf index 90e9fbe2..4fe80e21 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 68c7fe4a..96560637 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_1ProxyConnectionTestTask__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask__coll__graph.pdf index e0a62707..2a1b744e 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask__inherit__graph.pdf index 0b6426d5..ad19d2fc 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.pdf index ea17f69b..6d2a64c1 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.pdf index 0be2acee..ac64c419 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.md5 index 626314ba..d6c5028f 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.md5 @@ -1 +1 @@ -f538dd7dfeca616062987da0c9c86f2e \ No newline at end of file +0fc6925c75ea6ad423540cca4d0cdd4b \ 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 a0d6b9ad..af314ad7 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.pdf index 0a6d027b..ccdee24f 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SettingsObject__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SettingsObject__coll__graph.pdf index 1d1662d6..ec402a72 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 63d105f9..57f38aab 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.tex b/docs/latex/classGpgFrontend_1_1UI_1_1SignalStation.tex index 3082dcc2..aef293f0 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1SignalStation.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1SignalStation.tex @@ -29,6 +29,9 @@ void {\bfseries Signal\+Key\+Database\+Refresh} () \mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1SignalStation_aaec7938466ed4b1e912b25038a253f84}\label{classGpgFrontend_1_1UI_1_1SignalStation_aaec7938466ed4b1e912b25038a253f84}} void {\bfseries Signal\+Key\+Database\+Refresh\+Done} () \item +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1SignalStation_a0aca1aa881195ee37b697e913cdc6ef3}\label{classGpgFrontend_1_1UI_1_1SignalStation_a0aca1aa881195ee37b697e913cdc6ef3}} +void {\bfseries Signal\+UIRefresh} () +\item void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1SignalStation_a94d4c7d79e0deb7026083689bc5dc2ad}{Signal\+Refresh\+Info\+Board}} (const QString \&text, \mbox{\hyperlink{namespaceGpgFrontend_1_1UI_acbaebd342a317b1f067942e5144bb00d}{Info\+Board\+Status}} verify\+\_\+label\+\_\+status) \item void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1SignalStation_a7b5fb2e2c0ad238313650a08ea648ce3}{Signal\+Refresh\+Status\+Bar}} (const QString \&message, int timeout) 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 f0c2e513..579ff32d 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 cb439ae2..4b8fcb0e 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SignalStation__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SignalStation__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.md5 index 2e79bbc1..7de44bbe 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.md5 @@ -1 +1 @@ -636e788814ad3bde009946e8e8c61073 \ No newline at end of file +0f7266f057e563fcc5f18ea828aff489 \ 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 6fe497c1..b0e38516 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.pdf index 17cec8ce..10dde269 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.md5 index b4e57468..ff07cb95 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 @@ -e774e9ad507035b6b4708699629450f0 \ No newline at end of file +e072fb630f64db3da0f316d70303fb5b \ 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 ba7f3c4f..f00f1c1f 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.pdf index 3a38806e..a36a095b 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 43b544a8..a24affba 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 43b544a8..a24affba 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.tex b/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit.tex index 1bf862b5..3912f225 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit.tex @@ -50,6 +50,9 @@ void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1TextEdit_adca2bbfa746b5598f2a4f7 \item void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1TextEdit_a57a46ab5595622ae0b7bceef7d56bd7c}{Slot\+New\+Tab}} () \item +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1TextEdit_a7fc06cc343339ddf9a8ab0b006ba2aec}\label{classGpgFrontend_1_1UI_1_1TextEdit_a7fc06cc343339ddf9a8ab0b006ba2aec}} +void {\bfseries Slot\+New\+Tab\+With\+Content} (std\+::string title, const std\+::string \&content) +\item void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1TextEdit_a60c73cc66a48a38c13e7890de49e86c3}{Slot\+Open\+File}} (const QString \&path) \item void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1TextEdit_a3c17fdf3abf9c4fb6ce35cfb8f0f8fc4}{slot\+New\+Help\+Tab}} (const QString \&title, const QString \&path) const diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__coll__graph.md5 index a908999d..37fb5441 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__coll__graph.md5 @@ -1 +1 @@ -e2f2e35f400a92d89edd42de689a6806 \ No newline at end of file +199f8486930665bfb36a97fcd2b9ecaa \ No newline at end of file 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 c88f2d5b..f553e0ce 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.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__inherit__graph.md5 index a908999d..37fb5441 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__inherit__graph.md5 @@ -1 +1 @@ -e2f2e35f400a92d89edd42de689a6806 \ No newline at end of file +199f8486930665bfb36a97fcd2b9ecaa \ No newline at end of file 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 c88f2d5b..f553e0ce 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 5c85bc7d..bf2dfc7c 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 5c85bc7d..bf2dfc7c 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 7072a847..7c229b7a 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 7072a847..7c229b7a 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1UpdateTab__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1UpdateTab__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.pdf index 1790395f..764150b0 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 dca953ca..1c63cc3d 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 69d5e608..f6b66c85 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 fa687ab5..9660ae59 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 0cc909ee..883eb74f 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 b75fc615..d02759ff 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 0c483fcc..d84f044e 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 0c483fcc..d84f044e 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 5262161b..5b9460eb 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 5262161b..5b9460eb 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 1e121acf..7b0847b1 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 223b67d8..99433159 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 223b67d8..99433159 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 df9a23b8..c308d047 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 9240a0de..c1f5e748 100644 Binary files a/docs/latex/classclass__coll__graph.pdf and b/docs/latex/classclass__coll__graph.pdf differ diff --git a/docs/latex/hierarchy.tex b/docs/latex/hierarchy.tex index 76dbdd2f..9879e944 100644 --- a/docs/latex/hierarchy.tex +++ b/docs/latex/hierarchy.tex @@ -7,7 +7,6 @@ This inheritance list is sorted roughly, but not completely, alphabetically\+:\b \item \contentsline{section}{Gpg\+Frontend\+::Archive\+File\+Operator}{\pageref{classGpgFrontend_1_1ArchiveFileOperator}}{} \item \contentsline{section}{Gpg\+Frontend\+::Archive\+Struct}{\pageref{structGpgFrontend_1_1ArchiveStruct}}{} \item \contentsline{section}{Gpg\+Frontend\+::Gpg\+Key\+Manager\+::Automaton\+Handel\+Struct}{\pageref{structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct}}{} -\item \contentsline{section}{Gpg\+Frontend\+::Cache\+Manager}{\pageref{classGpgFrontend_1_1CacheManager}}{} \item \contentsline{section}{Gpg\+Frontend\+::Channel\+Object}{\pageref{classGpgFrontend_1_1ChannelObject}}{} \begin{DoxyCompactList} \item \contentsline{section}{Gpg\+Frontend\+::Singleton\+Function\+Object$<$ Gpg\+UIDOperator $>$}{\pageref{classGpgFrontend_1_1SingletonFunctionObject}}{} @@ -42,6 +41,10 @@ This inheritance list is sorted roughly, but not completely, alphabetically\+:\b \begin{DoxyCompactList} \item \contentsline{section}{Gpg\+Frontend\+::Gpg\+Key\+Getter}{\pageref{classGpgFrontend_1_1GpgKeyGetter}}{} \end{DoxyCompactList} +\item \contentsline{section}{Gpg\+Frontend\+::Singleton\+Function\+Object$<$ Cache\+Manager $>$}{\pageref{classGpgFrontend_1_1SingletonFunctionObject}}{} +\begin{DoxyCompactList} +\item \contentsline{section}{Gpg\+Frontend\+::Cache\+Manager}{\pageref{classGpgFrontend_1_1CacheManager}}{} +\end{DoxyCompactList} \item \contentsline{section}{Gpg\+Frontend\+::Singleton\+Function\+Object$<$ Gpg\+Basic\+Operator $>$}{\pageref{classGpgFrontend_1_1SingletonFunctionObject}}{} \begin{DoxyCompactList} \item \contentsline{section}{Gpg\+Frontend\+::Gpg\+Basic\+Operator}{\pageref{classGpgFrontend_1_1GpgBasicOperator}}{} @@ -140,6 +143,7 @@ This inheritance list is sorted roughly, but not completely, alphabetically\+:\b \end{DoxyCompactList} \end{DoxyCompactList} \item QObject\begin{DoxyCompactList} +\item \contentsline{section}{Gpg\+Frontend\+::Cache\+Manager}{\pageref{classGpgFrontend_1_1CacheManager}}{} \item \contentsline{section}{Gpg\+Frontend\+::Core\+Common\+Util}{\pageref{classGpgFrontend_1_1CoreCommonUtil}}{} \item \contentsline{section}{Gpg\+Frontend\+::Core\+Signal\+Station}{\pageref{classGpgFrontend_1_1CoreSignalStation}}{} \item \contentsline{section}{Gpg\+Frontend\+::Gpg\+Context}{\pageref{classGpgFrontend_1_1GpgContext}}{} @@ -198,4 +202,6 @@ This inheritance list is sorted roughly, but not completely, alphabetically\+:\b \item \contentsline{section}{Gpg\+Frontend\+::Singleton\+Storage\+Collection}{\pageref{classGpgFrontend_1_1SingletonStorageCollection}}{} \item \contentsline{section}{Gpg\+Frontend\+::UI\+::Software\+Version}{\pageref{structGpgFrontend_1_1UI_1_1SoftwareVersion}}{} \item \contentsline{section}{Test\+Listed\+Key\+Server\+Thread}{\pageref{classTestListedKeyServerThread}}{} +\item \contentsline{section}{Gpg\+Frontend\+::Thread\+Safe\+Map$<$ Key, Value $>$}{\pageref{classGpgFrontend_1_1ThreadSafeMap}}{} +\item \contentsline{section}{Gpg\+Frontend\+::Thread\+Safe\+Map$<$ std\+::string, nlohmann\+::json $>$}{\pageref{classGpgFrontend_1_1ThreadSafeMap}}{} \end{DoxyCompactList} diff --git a/docs/latex/namespaceGpgFrontend.tex b/docs/latex/namespaceGpgFrontend.tex index c1002706..d9bf9bc7 100644 --- a/docs/latex/namespaceGpgFrontend.tex +++ b/docs/latex/namespaceGpgFrontend.tex @@ -18,6 +18,8 @@ struct \mbox{\hyperlink{structGpgFrontend_1_1ArchiveStruct}{Archive\+Struct}} \item class \mbox{\hyperlink{classGpgFrontend_1_1ArchiveFileOperator}{Archive\+File\+Operator}} \item +class \mbox{\hyperlink{classGpgFrontend_1_1ThreadSafeMap}{Thread\+Safe\+Map}} +\item class \mbox{\hyperlink{classGpgFrontend_1_1CacheManager}{Cache\+Manager}} \item class \mbox{\hyperlink{classGpgFrontend_1_1CharsetOperator}{Charset\+Operator}} diff --git a/docs/latex/refman.tex b/docs/latex/refman.tex index bd287847..83d5f9fa 100644 --- a/docs/latex/refman.tex +++ b/docs/latex/refman.tex @@ -299,6 +299,7 @@ \input{classGpgFrontend_1_1Thread_1_1TaskRunnerGetter} \input{classTestListedKeyServerThread} \input{classGpgFrontend_1_1UI_1_1TextEdit} +\input{classGpgFrontend_1_1ThreadSafeMap} \input{classGpgFrontend_1_1UI_1_1TOFUInfoPage} \input{classGpgFrontend_1_1UI_1_1TranslatorsTab} \input{classGpgFrontend_1_1UI_1_1UpdateTab} diff --git a/docs/latex/structGpgFrontend_1_1ArchiveStruct__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1ArchiveStruct__coll__graph.pdf index ed32a562..cd983f5e 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 fbf5ea30..c97dad13 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 2cbe12b1..e826960f 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 77ca9eef..b37bcbf4 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_1GpgKeyManager_1_1AutomatonHandelStruct__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct__coll__graph.pdf index 90664e5a..dd841eb4 100644 Binary files a/docs/latex/structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct__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 3af4f471..74ca3187 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 4580f3f9..d1298998 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 f7c730bd..a41d362f 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 c57d822e..87485367 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.tex b/docs/latex/structGpgFrontend_1_1UI_1_1KeyMenuAbility.tex index a9cdfc2f..9d0011be 100644 --- a/docs/latex/structGpgFrontend_1_1UI_1_1KeyMenuAbility.tex +++ b/docs/latex/structGpgFrontend_1_1UI_1_1KeyMenuAbility.tex @@ -36,6 +36,9 @@ static constexpr Ability\+Type {\bfseries UNCHECK\+\_\+\+ALL} = 1 $<$$<$ 3 \item \mbox{\Hypertarget{structGpgFrontend_1_1UI_1_1KeyMenuAbility_a2ff7f5aeea6e8791d69cd0656489d6eb}\label{structGpgFrontend_1_1UI_1_1KeyMenuAbility_a2ff7f5aeea6e8791d69cd0656489d6eb}} static constexpr Ability\+Type {\bfseries CHECK\+\_\+\+ALL} = 1 $<$$<$ 5 +\item +\mbox{\Hypertarget{structGpgFrontend_1_1UI_1_1KeyMenuAbility_ac88b3fd3271c347593b75f33f134eb4d}\label{structGpgFrontend_1_1UI_1_1KeyMenuAbility_ac88b3fd3271c347593b75f33f134eb4d}} +static constexpr Ability\+Type {\bfseries SEARCH\+\_\+\+BAR} = 1 $<$$<$ 6 \end{DoxyCompactItemize} diff --git a/docs/latex/structGpgFrontend_1_1UI_1_1KeyMenuAbility__coll__graph.md5 b/docs/latex/structGpgFrontend_1_1UI_1_1KeyMenuAbility__coll__graph.md5 index 669b5581..dbe9b6ed 100644 --- a/docs/latex/structGpgFrontend_1_1UI_1_1KeyMenuAbility__coll__graph.md5 +++ b/docs/latex/structGpgFrontend_1_1UI_1_1KeyMenuAbility__coll__graph.md5 @@ -1 +1 @@ -bec8e6cb105cb5ffaa1940fd106d58d7 \ No newline at end of file +ff35be0b30b2596ec6828d51ea0f0cf2 \ No newline at end of file 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 75340b09..0e5c9aa5 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.tex b/docs/latex/structGpgFrontend_1_1UI_1_1KeyTable.tex index e2952a0d..ae3b292b 100644 --- a/docs/latex/structGpgFrontend_1_1UI_1_1KeyTable.tex +++ b/docs/latex/structGpgFrontend_1_1UI_1_1KeyTable.tex @@ -10,10 +10,16 @@ Collaboration diagram for Gpg\+Frontend\+::UI\+::Key\+Table\+: \includegraphics[height=550pt]{structGpgFrontend_1_1UI_1_1KeyTable__coll__graph} \end{center} \end{figure} +\doxysubsection*{Public Types} +\begin{DoxyCompactItemize} +\item +\mbox{\Hypertarget{structGpgFrontend_1_1UI_1_1KeyTable_ae99f56db14e21d673535cd34af74b22b}\label{structGpgFrontend_1_1UI_1_1KeyTable_ae99f56db14e21d673535cd34af74b22b}} +using {\bfseries Key\+Table\+Filter} = std\+::function$<$ bool(const \mbox{\hyperlink{classGpgFrontend_1_1GpgKey}{Gpg\+Key}} \&, const \mbox{\hyperlink{structGpgFrontend_1_1UI_1_1KeyTable}{Key\+Table}} \&)$>$ +\end{DoxyCompactItemize} \doxysubsection*{Public Member Functions} \begin{DoxyCompactItemize} \item -\mbox{\hyperlink{structGpgFrontend_1_1UI_1_1KeyTable_a88606ba6954d60244faf38de419bfc47}{Key\+Table}} (QTable\+Widget $\ast$\+\_\+key\+\_\+list, Key\+List\+Row\+::\+Key\+Type \+\_\+select\+\_\+type, Key\+List\+Column\+::\+Info\+Type \+\_\+info\+\_\+type, std\+::function$<$ bool(const \mbox{\hyperlink{classGpgFrontend_1_1GpgKey}{Gpg\+Key}} \&)$>$ \+\_\+filter=\mbox{[}$\,$\mbox{]}(const \mbox{\hyperlink{classGpgFrontend_1_1GpgKey}{Gpg\+Key}} \&) -\/$>$ bool \{ return true;\}) +\mbox{\hyperlink{structGpgFrontend_1_1UI_1_1KeyTable_ae78160011d93abc43a1ca0f28c2ad943}{Key\+Table}} (QTable\+Widget $\ast$\+\_\+key\+\_\+list, Key\+List\+Row\+::\+Key\+Type \+\_\+select\+\_\+type, Key\+List\+Column\+::\+Info\+Type \+\_\+info\+\_\+type, Key\+Table\+Filter \+\_\+filter=\mbox{[}$\,$\mbox{]}(const \mbox{\hyperlink{classGpgFrontend_1_1GpgKey}{Gpg\+Key}} \&, const \mbox{\hyperlink{structGpgFrontend_1_1UI_1_1KeyTable}{Key\+Table}} \&) -\/$>$ bool \{ return true;\}) \begin{DoxyCompactList}\small\item\em Construct a new Key Table object. \end{DoxyCompactList}\item void \mbox{\hyperlink{structGpgFrontend_1_1UI_1_1KeyTable_aaac381e205c323444098803e0295060f}{Refresh}} (Key\+Link\+List\+Ptr m\+\_\+keys=nullptr) \item @@ -26,7 +32,13 @@ void {\bfseries Uncheck\+ALL} () const void {\bfseries Check\+ALL} () const \item void \mbox{\hyperlink{structGpgFrontend_1_1UI_1_1KeyTable_ae0713ebbc21e78995db9a856d746fe6c}{Set\+Checked}} (Key\+Id\+Args\+List\+Ptr key\+\_\+ids) -\begin{DoxyCompactList}\small\item\em Set the Checked object. \end{DoxyCompactList}\end{DoxyCompactItemize} +\begin{DoxyCompactList}\small\item\em Set the Checked object. \end{DoxyCompactList}\item +\mbox{\Hypertarget{structGpgFrontend_1_1UI_1_1KeyTable_aacf3e9cf2ec39a47033d274ccf35911a}\label{structGpgFrontend_1_1UI_1_1KeyTable_aacf3e9cf2ec39a47033d274ccf35911a}} +void {\bfseries Set\+Menu\+Ability} (Key\+Menu\+Ability\+::\+Ability\+Type ability) +\item +\mbox{\Hypertarget{structGpgFrontend_1_1UI_1_1KeyTable_aabc2e7dc05edc85834179da6ac4c846d}\label{structGpgFrontend_1_1UI_1_1KeyTable_aabc2e7dc05edc85834179da6ac4c846d}} +void {\bfseries Set\+Filter\+Keyword} (std\+::string keyword) +\end{DoxyCompactItemize} \doxysubsection*{Public Attributes} \begin{DoxyCompactItemize} \item @@ -42,20 +54,26 @@ Key\+List\+Column\+::\+Info\+Type {\bfseries info\+\_\+type\+\_\+} \mbox{\Hypertarget{structGpgFrontend_1_1UI_1_1KeyTable_adb59ac00683aec02344804ae8c5670a5}\label{structGpgFrontend_1_1UI_1_1KeyTable_adb59ac00683aec02344804ae8c5670a5}} std\+::vector$<$ \mbox{\hyperlink{classGpgFrontend_1_1GpgKey}{Gpg\+Key}} $>$ {\bfseries buffered\+\_\+keys\+\_\+} \item -\mbox{\Hypertarget{structGpgFrontend_1_1UI_1_1KeyTable_a880d24a22ef291667e6d6c76a487fc57}\label{structGpgFrontend_1_1UI_1_1KeyTable_a880d24a22ef291667e6d6c76a487fc57}} -std\+::function$<$ bool(const \mbox{\hyperlink{classGpgFrontend_1_1GpgKey}{Gpg\+Key}} \&)$>$ {\bfseries filter\+\_\+} +\mbox{\Hypertarget{structGpgFrontend_1_1UI_1_1KeyTable_a1560962e3a6eac5f042ba4963f439f15}\label{structGpgFrontend_1_1UI_1_1KeyTable_a1560962e3a6eac5f042ba4963f439f15}} +Key\+Table\+Filter {\bfseries filter\+\_\+} \item \mbox{\Hypertarget{structGpgFrontend_1_1UI_1_1KeyTable_add3529625d70c3aa37f3d8cdc3bb8c63}\label{structGpgFrontend_1_1UI_1_1KeyTable_add3529625d70c3aa37f3d8cdc3bb8c63}} Key\+Id\+Args\+List\+Ptr {\bfseries checked\+\_\+key\+\_\+ids\+\_\+} +\item +\mbox{\Hypertarget{structGpgFrontend_1_1UI_1_1KeyTable_ab54360c35b11c469d708b5f57030ed41}\label{structGpgFrontend_1_1UI_1_1KeyTable_ab54360c35b11c469d708b5f57030ed41}} +Key\+Menu\+Ability\+::\+Ability\+Type {\bfseries ability\+\_\+} +\item +\mbox{\Hypertarget{structGpgFrontend_1_1UI_1_1KeyTable_a053be2a4f9d8594128d5400f4cc215aa}\label{structGpgFrontend_1_1UI_1_1KeyTable_a053be2a4f9d8594128d5400f4cc215aa}} +std\+::string {\bfseries keyword\+\_\+} \end{DoxyCompactItemize} \doxysubsection{Constructor \& Destructor Documentation} -\mbox{\Hypertarget{structGpgFrontend_1_1UI_1_1KeyTable_a88606ba6954d60244faf38de419bfc47}\label{structGpgFrontend_1_1UI_1_1KeyTable_a88606ba6954d60244faf38de419bfc47}} +\mbox{\Hypertarget{structGpgFrontend_1_1UI_1_1KeyTable_ae78160011d93abc43a1ca0f28c2ad943}\label{structGpgFrontend_1_1UI_1_1KeyTable_ae78160011d93abc43a1ca0f28c2ad943}} \index{GpgFrontend::UI::KeyTable@{GpgFrontend::UI::KeyTable}!KeyTable@{KeyTable}} \index{KeyTable@{KeyTable}!GpgFrontend::UI::KeyTable@{GpgFrontend::UI::KeyTable}} \doxysubsubsection{\texorpdfstring{KeyTable()}{KeyTable()}} -{\footnotesize\ttfamily Gpg\+Frontend\+::\+UI\+::\+Key\+Table\+::\+Key\+Table (\begin{DoxyParamCaption}\item[{QTable\+Widget $\ast$}]{\+\_\+key\+\_\+list, }\item[{Key\+List\+Row\+::\+Key\+Type}]{\+\_\+select\+\_\+type, }\item[{Key\+List\+Column\+::\+Info\+Type}]{\+\_\+info\+\_\+type, }\item[{std\+::function$<$ bool(const \mbox{\hyperlink{classGpgFrontend_1_1GpgKey}{Gpg\+Key}} \&)$>$}]{\+\_\+filter = {\ttfamily \mbox{[}\mbox{]}(const~\mbox{\hyperlink{classGpgFrontend_1_1GpgKey}{Gpg\+Key}}\&)~-\/$>$~bool~\{~return~true;~\}} }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [inline]}} +{\footnotesize\ttfamily Gpg\+Frontend\+::\+UI\+::\+Key\+Table\+::\+Key\+Table (\begin{DoxyParamCaption}\item[{QTable\+Widget $\ast$}]{\+\_\+key\+\_\+list, }\item[{Key\+List\+Row\+::\+Key\+Type}]{\+\_\+select\+\_\+type, }\item[{Key\+List\+Column\+::\+Info\+Type}]{\+\_\+info\+\_\+type, }\item[{Key\+Table\+Filter}]{\+\_\+filter = {\ttfamily \mbox{[}\mbox{]}(const~\mbox{\hyperlink{classGpgFrontend_1_1GpgKey}{Gpg\+Key}}\&,~const~\mbox{\hyperlink{structGpgFrontend_1_1UI_1_1KeyTable}{Key\+Table}}\&)~-\/$>$~bool~\{~return~true;~\}} }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [inline]}} diff --git a/docs/latex/structGpgFrontend_1_1UI_1_1KeyTable__coll__graph.md5 b/docs/latex/structGpgFrontend_1_1UI_1_1KeyTable__coll__graph.md5 index 62c66fa8..8ee137f4 100644 --- a/docs/latex/structGpgFrontend_1_1UI_1_1KeyTable__coll__graph.md5 +++ b/docs/latex/structGpgFrontend_1_1UI_1_1KeyTable__coll__graph.md5 @@ -1 +1 @@ -2b913c19bdd6e87d915367fe81b9e538 \ No newline at end of file +725412e56f77b1e13e00664be6c00a1e \ 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 d9c84813..862fbed7 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 232a4aea..77d25f53 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 c6ebb1a5..adbbe055 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 5cb1663c..1bd9c9a0 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