diff --git a/docs/html/AboutDialog_8h_source.html b/docs/html/AboutDialog_8h_source.html
index b4d3c852..9c67f065 100644
--- a/docs/html/AboutDialog_8h_source.html
+++ b/docs/html/AboutDialog_8h_source.html
@@ -119,49 +119,48 @@ $(document).ready(function(){initNavTree('AboutDialog_8h_source.html',''); initR
80 QLabel* upgrade_label_;
82 QString current_version_;
- 83 QPushButton* download_button_;
-
-
- 91 explicit UpdateTab (QWidget* parent =
nullptr );
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 130 explicit AboutDialog (
int defaultIndex, QWidget* parent);
-
-
-
-
-
-
-
-
-
-
-
-Class for handling the about dialog.
Definition: AboutDialog.h:120
-AboutDialog(int defaultIndex, QWidget *parent)
Construct a new About Dialog object.
Definition: AboutDialog.cpp:39
-void showEvent(QShowEvent *ev) override
Definition: AboutDialog.cpp:74
+
+
+ 90 explicit UpdateTab (QWidget* parent =
nullptr );
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 129 explicit AboutDialog (
int defaultIndex, QWidget* parent);
+
+
+
+
+
+
+
+
+
+
+
+Class for handling the about dialog.
Definition: AboutDialog.h:119
+AboutDialog(int defaultIndex, QWidget *parent)
Construct a new About Dialog object.
Definition: AboutDialog.cpp:41
+void showEvent(QShowEvent *ev) override
Definition: AboutDialog.cpp:76
Definition: GeneralDialog.h:35
Class containing the main tab of about dialog.
Definition: AboutDialog.h:43
-InfoTab(QWidget *parent=nullptr)
Construct a new Info Tab object.
Definition: AboutDialog.cpp:79
+InfoTab(QWidget *parent=nullptr)
Construct a new Info Tab object.
Definition: AboutDialog.cpp:81
Class containing the translator tab of about dialog.
Definition: AboutDialog.h:59
-TranslatorsTab(QWidget *parent=nullptr)
Construct a new Translators Tab object.
Definition: AboutDialog.cpp:119
+TranslatorsTab(QWidget *parent=nullptr)
Construct a new Translators Tab object.
Definition: AboutDialog.cpp:122
Class containing the main tab of about dialog.
Definition: AboutDialog.h:75
-void slot_show_version_status(const SoftwareVersion &version)
Definition: AboutDialog.cpp:218
+void slot_show_version_status(const SoftwareVersion &version)
Definition: AboutDialog.cpp:221
void SignalReplyFromUpdateServer(QByteArray data)
-void getLatestVersion()
Get the Latest Version object.
Definition: AboutDialog.cpp:203
-UpdateTab(QWidget *parent=nullptr)
Construct a new Update Tab object.
Definition: AboutDialog.cpp:151
+void getLatestVersion()
Get the Latest Version object.
Definition: AboutDialog.cpp:206
+UpdateTab(QWidget *parent=nullptr)
Construct a new Update Tab object.
Definition: AboutDialog.cpp:154
Definition: FileReadTask.cpp:29
Definition: SoftwareVersion.h:39
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
-
+
-
-
- 36 static void SaveCache (std::string key,
const nlohmann::json &value);
+ 34 #include "core/GpgFunctionObject.h"
+
+
- 38 static nlohmann::json LoadCache(std::string name);
-
- 40 static void ClearAllCache();
-
-
-
-
-
-Definition: CacheManager.h:34
-static void SaveCache(std::string key, const nlohmann::json &value)
Definition: CacheManager.cpp:37
+ 38 template <
typename Key,
typename Value>
+
+
+ 41 using MapType = std::map<Key, Value>;
+ 42 using IteratorType =
typename MapType::iterator;
+
+ 44 void insert(
const Key& key,
const Value& value) {
+ 45 std::unique_lock lock(mutex_);
+
+
+
+ 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()) {
+
+
+
+
+
+ 58 bool exists(
const Key& key) {
+ 59 std::shared_lock lock(mutex_);
+ 60 return map_.count(key) > 0;
+
+
+ 63 IteratorType begin() {
return map_mirror_.begin(); }
+
+ 65 IteratorType end() {
return map_mirror_.end(); }
+
+
+ 68 std::shared_lock lock(mutex_);
+
+
+
+
+
+
+
+ 76 mutable std::shared_mutex mutex_;
+
+
+
+
+
+
+
+
+
+ 86 void SaveCache(std::string key,
const nlohmann::json& value,
+
+
+ 89 nlohmann::json LoadCache(std::string key);
+
+ 91 nlohmann::json LoadCache(std::string key, nlohmann::json default_value);
+
+
+ 94 std::string get_data_object_key(std::string key);
+
+ 96 nlohmann::json load_cache_storage(std::string key,
+ 97 nlohmann::json default_value);
+
+ 99 void load_all_cache_storage();
+
+ 101 void flush_cache_storage();
+
+ 103 void register_cache_key(std::string key);
+
+
+ 106 nlohmann::json key_storage_;
+
+ 108 const std::string drk_key_ =
"__cache_manage_data_register_key_list" ;
+
+
+
+
+
+Definition: CacheManager.h:81
+Definition: GpgFunctionObject.h:150
+static int GetDefaultChannel()
Get the Default Channel object.
Definition: GpgFunctionObject.h:251
+Definition: CacheManager.h:39
Definition: CoreCommonUtil.cpp:31
diff --git a/docs/html/CoreCommonUtil_8h_source.html b/docs/html/CoreCommonUtil_8h_source.html
index bdec518e..312e2edb 100644
--- a/docs/html/CoreCommonUtil_8h_source.html
+++ b/docs/html/CoreCommonUtil_8h_source.html
@@ -103,11 +103,11 @@ $(document).ready(function(){initNavTree('CoreCommonUtil_8h_source.html',''); in
- 55 void SetTempCacheValue(
const std::string,
const std::string);
+ 55 void SetTempCacheValue(
const std::string &,
const std::string &);
- 63 std::string GetTempCacheValue(
const std::string);
+ 63 std::string GetTempCacheValue(
const std::string &);
- 70 void ResetTempCacheValue(
const std::string);
+ 70 void ResetTempCacheValue(
const std::string &);
diff --git a/docs/html/DataObjectOperator_8h_source.html b/docs/html/DataObjectOperator_8h_source.html
index 9068c6ce..ad6a8097 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
- 32 #include "core/GpgFrontendCore.h"
- 33 #include "core/GpgFunctionObject.h"
- 34 #include "core/function/GlobalSettingStation.h"
-
-
-
-
-
-
-
-
-
- 49 std::string SaveDataObj(
const std::string &_key,
const nlohmann::json &value);
-
- 51 std::optional<nlohmann::json> GetDataObject(
const std::string &_key);
-
- 53 std::optional<nlohmann::json> GetDataObjectByRef(
const std::string &_ref);
-
-
- 60 void init_app_secure_key();
-
-
-
- 64 std::filesystem::path app_secure_path_ =
- 65 global_setting_station_.GetAppConfigPath() /
-
- 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" ;
-
- 74 std::random_device
rd_ ;
- 75 std::mt19937 mt_ = std::mt19937(rd_());
-
-
-
-
-
-
-Definition: DataObjectOperator.h:39
-std::random_device rd_
Random device.
Definition: DataObjectOperator.h:74
-QByteArray hash_key_
Hash key.
Definition: DataObjectOperator.h:76
-Definition: GlobalSettingStation.h:43
+ 32 #include "core/GpgFunctionObject.h"
+ 33 #include "core/function/GlobalSettingStation.h"
+
+
+
+
+
+
+
+
+
+ 48 std::string SaveDataObj(
const std::string &_key,
const nlohmann::json &value);
+
+ 50 std::optional<nlohmann::json> GetDataObject(
const std::string &_key);
+
+ 52 std::optional<nlohmann::json> GetDataObjectByRef(
const std::string &_ref);
+
+
+ 59 void init_app_secure_key();
+
+
+
+ 63 std::filesystem::path app_secure_path_ =
+ 64 global_setting_station_.GetAppConfigPath() /
+
+ 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" ;
+
+ 73 std::random_device
rd_ ;
+ 74 std::mt19937 mt_ = std::mt19937(rd_());
+
+
+
+
+
+
+Definition: DataObjectOperator.h:38
+std::random_device rd_
Random device.
Definition: DataObjectOperator.h:73
+QByteArray hash_key_
Hash key.
Definition: DataObjectOperator.h:75
+Definition: GlobalSettingStation.h:45
Definition: GpgFunctionObject.h:150
static int GetDefaultChannel()
Get the Default Channel object.
Definition: GpgFunctionObject.h:251
static GlobalSettingStation & GetInstance(int channel=GpgFrontend::GPGFRONTEND_DEFAULT_CHANNEL)
Get the Instance object.
Definition: GpgFunctionObject.h:172
diff --git a/docs/html/FilePage_8h_source.html b/docs/html/FilePage_8h_source.html
index d2d6295a..f5be8f86 100644
--- a/docs/html/FilePage_8h_source.html
+++ b/docs/html/FilePage_8h_source.html
@@ -124,53 +124,55 @@ $(document).ready(function(){initNavTree('FilePage_8h_source.html',''); initResi
111 void slot_open_item();
- 117 void slot_rename_item();
+ 117 void slot_open_item_by_system_application();
- 123 void slot_delete_item();
+ 123 void slot_rename_item();
- 129 void slot_calculate_hash();
+ 129 void slot_delete_item();
-
+ 135 void slot_calculate_hash();
- 141 void slot_create_empty_file();
+
-
+ 147 void slot_create_empty_file();
-
-
-
-
-
-
-
-
- 171 std::shared_ptr<Ui_FilePage> ui_;
-
- 173 QFileSystemModel* dir_model_;
- 174 QCompleter* path_edit_completer_;
- 175 QStringListModel* path_complete_model_;
+
+
+
+
+
+
+
+
+
- 177 std::filesystem::path m_path_;
- 178 std::filesystem::path selected_path_;
-
- 180 QMenu* popup_menu_{};
- 181 QMenu* option_popup_menu_{};
- 182 QWidget* first_parent_{};
-
-
-
-
-
+ 177 std::shared_ptr<Ui_FilePage> ui_;
+
+ 179 QFileSystemModel* dir_model_;
+ 180 QCompleter* path_edit_completer_;
+ 181 QStringListModel* path_complete_model_;
+
+ 183 std::filesystem::path m_path_;
+ 184 std::filesystem::path selected_path_;
+
+ 186 QMenu* popup_menu_{};
+ 187 QMenu* option_popup_menu_{};
+ 188 QWidget* first_parent_{};
+
+
+
+
+
Definition: FilePage.h:43
-void slot_compress_files()
compress directory into gpg-zip
Definition: FilePage.cpp:457
+void slot_compress_files()
compress directory into gpg-zip
Definition: FilePage.cpp:478
void SignalRefreshInfoBoard(const QString &text, InfoBoardStatus verify_label_status)
QString GetSelected() const
Get the Selected object.
Definition: FilePage.cpp:187
FilePage(QWidget *parent=nullptr)
Construct a new File Page object.
Definition: FilePage.cpp:41
void slot_file_tree_view_item_clicked(const QModelIndex &index)
Definition: FilePage.cpp:101
void create_popup_menu()
Create a popup menu object.
Definition: FilePage.cpp:222
-void onCustomContextMenu(const QPoint &point)
Definition: FilePage.cpp:292
+void onCustomContextMenu(const QPoint &point)
Definition: FilePage.cpp:301
void slot_file_tree_view_item_double_clicked(const QModelIndex &index)
Definition: FilePage.cpp:176
-void keyPressEvent(QKeyEvent *event) override
Definition: FilePage.cpp:443
+void keyPressEvent(QKeyEvent *event) override
Definition: FilePage.cpp:464
void SignalPathChanged(const QString &path)
Definition: FileReadTask.cpp:29
InfoBoardStatus
Definition: InfoBoardWidget.h:43
diff --git a/docs/html/GeneralDialog_8h_source.html b/docs/html/GeneralDialog_8h_source.html
index 95e1d6f1..e3fe2872 100644
--- a/docs/html/GeneralDialog_8h_source.html
+++ b/docs/html/GeneralDialog_8h_source.html
@@ -127,27 +127,33 @@ $(document).ready(function(){initNavTree('GeneralDialog_8h_source.html',''); ini
- 52 void movePos2CenterOfScreen();
+ 52 void setPosCenterOfScreen();
- 58 void movePos2CenterOfParent();
+ 58 void movePosition2CenterOfParent();
-
- 64 void slot_restore_settings() noexcept;
+ 64 [[nodiscard]]
bool isRectRestored();
- 69 void slot_save_settings() noexcept;
-
-
-
-
-
-
-
-
-
-
-
+ 70 void showEvent(QShowEvent* event)
override ;
+
+
+ 76 void slot_restore_settings() noexcept;
+
+ 81 void slot_save_settings() noexcept;
+
+
+ 87 void update_rect_cache();
+
+
+
+
+
+ 93 bool rect_restored_ =
false ;
+
+
+
+
Definition: GeneralDialog.h:35
-GeneralDialog(std::string name, QWidget *parent=nullptr)
Definition: GeneralDialog.cpp:35
+GeneralDialog(std::string name, QWidget *parent=nullptr)
Definition: GeneralDialog.cpp:32
Definition: FileReadTask.cpp:29
diff --git a/docs/html/GlobalSettingStation_8h_source.html b/docs/html/GlobalSettingStation_8h_source.html
index 4fd38f14..89f1d099 100644
--- a/docs/html/GlobalSettingStation_8h_source.html
+++ b/docs/html/GlobalSettingStation_8h_source.html
@@ -90,115 +90,144 @@ $(document).ready(function(){initNavTree('GlobalSettingStation_8h_source.html','
29 #ifndef GPGFRONTEND_GLOBALSETTINGSTATION_H
30 #define GPGFRONTEND_GLOBALSETTINGSTATION_H
- 32 #include "GpgFrontendBuildInstallInfo.h"
- 33 #include "core/GpgFrontendCore.h"
- 34 #include "core/GpgFunctionObject.h"
-
-
+
+
+ 34 #include "GpgFrontendBuildInstallInfo.h"
+ 35 #include "core/GpgFrontendCore.h"
+ 36 #include "core/GpgFunctionObject.h"
-
-
-
-
-
-
-
-
- 63 libconfig::Setting &GetUISettings() noexcept {
return ui_cfg_.getRoot(); }
-
- 70 [[nodiscard]] std::filesystem::path
GetAppDir ()
const {
return app_path_; }
-
- 72 [[nodiscard]] std::filesystem::path GetAppDataPath()
const {
- 73 return app_data_path_;
-
-
- 81 [[nodiscard]] std::filesystem::path
GetLogDir ()
const {
-
-
-
-
- 91 auto db_path = app_configure_path_ /
"db" ;
- 92 if (!std::filesystem::exists(db_path)) {
- 93 std::filesystem::create_directory(db_path);
-
-
-
-
- 98 [[nodiscard]] std::filesystem::path GetAppConfigPath()
const {
- 99 return app_configure_path_;
-
-
-
- 108 return app_resource_path_ /
"gpg1.4" /
"gpg" ;
-
-
-
- 117 return app_locale_path_;
+
+
+
+
+
+
+
+
+
+
+ 65 libconfig::Setting &GetUISettings() noexcept;
+
+
+ 73 T LookupSettings(std::
string path, T default_value) noexcept {
+ 74 T value = default_value;
+
+ 76 value =
static_cast< T
> (GetUISettings().lookup(path));
+
+ 78 SPDLOG_WARN(
"setting not found: {}" , path);
+
+
+
+
+ 88 [[nodiscard]] std::filesystem::path
GetAppDir ()
const {
return app_path_; }
+
+ 90 [[nodiscard]] std::filesystem::path GetAppDataPath()
const {
+ 91 return app_data_path_;
+
+
+ 99 [[nodiscard]] std::filesystem::path
GetLogDir ()
const {
+ 100 return app_log_path_;
+
+
+
+ 109 auto db_path = app_configure_path_ /
"db" ;
+ 110 if (!std::filesystem::exists(db_path)) {
+ 111 std::filesystem::create_directory(db_path);
+
+
+
+
+ 116 [[nodiscard]] std::filesystem::path GetAppConfigPath()
const {
+ 117 return app_configure_path_;
-
- 126 return app_resource_path_;
+
+ 126 return app_resource_path_ /
"gpg1.4" /
"gpg" ;
-
- 135 return app_resource_path_ /
"certs" ;
+
+ 135 return app_locale_path_;
- 142 void SyncSettings() noexcept;
-
-
- 145 std::filesystem::path app_path_ = QCoreApplication::applicationDirPath()
-
- 147 std::filesystem::path app_data_path_ =
- 148 QStandardPaths::writableLocation(QStandardPaths::AppLocalDataLocation)
-
- 150 std::filesystem::path app_log_path_ =
- 151 app_data_path_ / "logs";
- 152 std::filesystem::path app_data_objs_path_ =
- 153 app_data_path_ / "objs";
-
- 155 #ifdef LINUX_INSTALL_BUILD
- 156 std::filesystem::path app_resource_path_ =
- 157 std::filesystem::path(APP_LOCALSTATE_PATH) /
-
-
- 160 std::filesystem::path app_resource_path_ =
- 161 RESOURCE_DIR_BOOST_PATH(app_path_);
-
+
+ 144 return app_resource_path_;
+
+
+
+ 153 return app_resource_path_ /
"certs" ;
+
+
+ 156 [[nodiscard]] std::string GetLogFilesSize()
const ;
+
+ 158 [[nodiscard]] std::string GetDataObjectsFilesSize()
const ;
+
+ 160 void ClearAllLogFiles()
const ;
+
+ 162 void ClearAllDataObjects()
const ;
- 164 #ifdef LINUX_INSTALL_BUILD
- 165 std::filesystem::path app_locale_path_ =
- 166 std::string(APP_LOCALE_PATH);
-
- 168 std::filesystem::path app_locale_path_ =
- 169 app_resource_path_ /
"locales" ;
-
-
- 172 std::filesystem::path app_configure_path_ =
- 173 QStandardPaths::writableLocation(QStandardPaths::AppConfigLocation)
-
- 175 std::filesystem::path ui_config_dir_path_ =
- 176 app_configure_path_ /
"conf" ;
- 177 std::filesystem::path ui_config_path_ =
- 178 ui_config_dir_path_ /
"main.cfg" ;
-
-
-
- 186 void init_app_secure_key();
-
-
+ 168 void SyncSettings() noexcept;
+
+
+ 171 std::filesystem::path app_path_ = QCoreApplication::applicationDirPath()
+
+ 173 std::filesystem::path app_data_path_ =
+ 174 QStandardPaths::writableLocation(QStandardPaths::AppLocalDataLocation)
+
+ 176 std::filesystem::path app_log_path_ =
+ 177 app_data_path_ / "logs";
+ 178 std::filesystem::path app_data_objs_path_ =
+ 179 app_data_path_ / "data_objs";
+
+ 181 #ifdef LINUX_INSTALL_BUILD
+ 182 std::filesystem::path app_resource_path_ =
+ 183 std::filesystem::path(APP_LOCALSTATE_PATH) /
+
+
+ 186 std::filesystem::path app_resource_path_ =
+ 187 RESOURCE_DIR_BOOST_PATH(app_path_);
+
-
-Definition: GlobalSettingStation.h:43
-std::filesystem::path GetLocaleDir() const
Get the Locale Dir object.
Definition: GlobalSettingStation.h:116
-libconfig::Config ui_cfg_
UI Configure File.
Definition: GlobalSettingStation.h:180
-std::filesystem::path GetCertsDir() const
Get the Certs Dir object.
Definition: GlobalSettingStation.h:134
-std::filesystem::path GetLogDir() const
Get the Log Dir object.
Definition: GlobalSettingStation.h:81
-std::filesystem::path GetStandaloneGpgBinDir() const
Get the Standalone Gpg Bin Dir object.
Definition: GlobalSettingStation.h:107
-std::filesystem::path GetAppDir() const
Get the App Dir object.
Definition: GlobalSettingStation.h:70
-std::filesystem::path GetStandaloneDatabaseDir() const
Get the Standalone Database Dir object.
Definition: GlobalSettingStation.h:90
+ 190 #ifdef LINUX_INSTALL_BUILD
+ 191 std::filesystem::path app_locale_path_ =
+ 192 std::string(APP_LOCALE_PATH);
+
+ 194 std::filesystem::path app_locale_path_ =
+ 195 app_resource_path_ /
"locales" ;
+
+
+ 198 std::filesystem::path app_configure_path_ =
+ 199 QStandardPaths::writableLocation(QStandardPaths::AppConfigLocation)
+
+ 201 std::filesystem::path ui_config_dir_path_ =
+ 202 app_configure_path_ /
"conf" ;
+ 203 std::filesystem::path ui_config_path_ =
+ 204 ui_config_dir_path_ /
"main.cfg" ;
+
+
+
+ 212 void init_app_secure_key();
+
+ 218 int64_t get_files_size_at_path(std::filesystem::path path,
+ 219 std::string filename_pattern)
const ;
+
+ 225 std::string get_human_readable_size(int64_t size)
const ;
+
+ 231 void delete_all_files(std::filesystem::path path,
+ 232 std::string filename_pattern)
const ;
+
+
+
+
+Definition: GlobalSettingStation.h:45
+std::filesystem::path GetLocaleDir() const
Get the Locale Dir object.
Definition: GlobalSettingStation.h:134
+libconfig::Config ui_cfg_
UI Configure File.
Definition: GlobalSettingStation.h:206
+std::filesystem::path GetCertsDir() const
Get the Certs Dir object.
Definition: GlobalSettingStation.h:152
+std::filesystem::path GetLogDir() const
Get the Log Dir object.
Definition: GlobalSettingStation.h:99
+std::filesystem::path GetStandaloneGpgBinDir() const
Get the Standalone Gpg Bin Dir object.
Definition: GlobalSettingStation.h:125
+std::filesystem::path GetAppDir() const
Get the App Dir object.
Definition: GlobalSettingStation.h:88
+std::filesystem::path GetStandaloneDatabaseDir() const
Get the Standalone Database Dir object.
Definition: GlobalSettingStation.h:108
~GlobalSettingStation() noexcept override
Destroy the Global Setting Station object.
-std::filesystem::path GetResourceDir() const
Get the Resource Dir object.
Definition: GlobalSettingStation.h:125
+std::filesystem::path GetResourceDir() const
Get the Resource Dir object.
Definition: GlobalSettingStation.h:143
Definition: GpgFunctionObject.h:150
static int GetDefaultChannel()
Get the Default Channel object.
Definition: GpgFunctionObject.h:251
Definition: CoreCommonUtil.cpp:31
diff --git a/docs/html/GnuPGControllerDialog_8h_source.html b/docs/html/GnuPGControllerDialog_8h_source.html
new file mode 100644
index 00000000..68c0eaeb
--- /dev/null
+++ b/docs/html/GnuPGControllerDialog_8h_source.html
@@ -0,0 +1,155 @@
+
+
+
+
+
+
+
+GpgFrontend Project: src/ui/dialog/gnupg/GnuPGControllerDialog.h Source File
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ GpgFrontend Project
+
+ A Free, Powerful, Easy-to-Use, Compact, Cross-Platform, and Installation-Free OpenPGP(pgp) Crypto Tool.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
29 #ifndef GPGFRONTEND_GNUPGCONTROLLERDIALOGLOG_H
+
30 #define GPGFRONTEND_GNUPGCONTROLLERDIALOGLOG_H
+
+
+
33 #include "ui/GpgFrontendUI.h"
+
34 #include "ui/dialog/GeneralDialog.h"
+
+
36 class Ui_GnuPGControllerDialog;
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
79 void slot_update_custom_key_database_path_label(
int state);
+
+
85 void slot_update_custom_gnupg_install_path_label(
int state);
+
+
+
88 std::shared_ptr<Ui_GnuPGControllerDialog> ui_;
+
89 int restart_needed_{0};
+
+
+
+
+
+
101 void apply_settings();
+
+
103 bool check_custom_gnupg_path(std::string);
+
+
105 bool check_custom_gnupg_key_database_path(std::string);
+
+
+
+
+
Definition: GeneralDialog.h:35
+
Definition: GnuPGControllerDialog.h:39
+
void slot_set_restart_needed(int)
Definition: GnuPGControllerDialog.cpp:369
+
void SignalRestartNeeded(int)
+
int get_restart_needed() const
Get the Restart Needed object.
Definition: GnuPGControllerDialog.cpp:365
+
GnuPGControllerDialog(QWidget *parent=nullptr)
Construct a new General Tab object.
Definition: GnuPGControllerDialog.cpp:38
+
Definition: FileReadTask.cpp:29
+
+
+
+
+
+
diff --git a/docs/html/GpgAdvancedOperator_8h_source.html b/docs/html/GpgAdvancedOperator_8h_source.html
index 52a35d05..a643a8ee 100644
--- a/docs/html/GpgAdvancedOperator_8h_source.html
+++ b/docs/html/GpgAdvancedOperator_8h_source.html
@@ -155,7 +155,7 @@ $(document).ready(function(){initNavTree('GpgAdvancedOperator_8h_source.html',''
Definition: GpgAdvancedOperator.h:42
-Definition: GpgContext.h:64
+Definition: GpgContext.h:71
Definition: GpgFunctionObject.h:150
static int GetDefaultChannel()
Get the Default Channel object.
Definition: GpgFunctionObject.h:251
static GpgContext & GetInstance(int channel=GpgFrontend::GPGFRONTEND_DEFAULT_CHANNEL)
Get the Instance object.
Definition: GpgFunctionObject.h:172
diff --git a/docs/html/GpgBasicOperator_8h_source.html b/docs/html/GpgBasicOperator_8h_source.html
index 986c11f6..f31119d3 100644
--- a/docs/html/GpgBasicOperator_8h_source.html
+++ b/docs/html/GpgBasicOperator_8h_source.html
@@ -140,7 +140,7 @@ $(document).ready(function(){initNavTree('GpgBasicOperator_8h_source.html','');
Basic operation collection.
Definition: GpgBasicOperator.h:44
-Definition: GpgContext.h:64
+Definition: GpgContext.h:71
Definition: GpgFunctionObject.h:150
static int GetDefaultChannel()
Get the Default Channel object.
Definition: GpgFunctionObject.h:251
static GpgContext & GetInstance(int channel=GpgFrontend::GPGFRONTEND_DEFAULT_CHANNEL)
Get the Instance object.
Definition: GpgFunctionObject.h:172
diff --git a/docs/html/GpgCommandExecutor_8h_source.html b/docs/html/GpgCommandExecutor_8h_source.html
index 958fa5ec..edd28558 100644
--- a/docs/html/GpgCommandExecutor_8h_source.html
+++ b/docs/html/GpgCommandExecutor_8h_source.html
@@ -126,7 +126,7 @@ $(document).ready(function(){initNavTree('GpgCommandExecutor_8h_source.html','')
Extra commands related to GPG.
Definition: GpgCommandExecutor.h:47
-Definition: GpgContext.h:64
+Definition: GpgContext.h:71
Definition: GpgFunctionObject.h:150
static int GetDefaultChannel()
Get the Default Channel object.
Definition: GpgFunctionObject.h:251
static GpgContext & GetInstance(int channel=GpgFrontend::GPGFRONTEND_DEFAULT_CHANNEL)
Get the Instance object.
Definition: GpgFunctionObject.h:172
diff --git a/docs/html/GpgContext_8h_source.html b/docs/html/GpgContext_8h_source.html
index 88709bc2..e028949a 100644
--- a/docs/html/GpgContext_8h_source.html
+++ b/docs/html/GpgContext_8h_source.html
@@ -93,90 +93,97 @@ $(document).ready(function(){initNavTree('GpgContext_8h_source.html',''); initRe
- 35 #include "GpgConstants.h"
- 36 #include "GpgFunctionObject.h"
-
-
+ 35 #include "GpgFunctionObject.h"
+
+
+
-
-
-
-
- 48 bool independent_database =
false ;
- 49 std::string db_path = {};
- 50 bool gpg_alone =
false ;
- 51 std::string gpg_path = {};
+
+
+ 46 bool independent_database =
false ;
+ 47 std::string db_path = {};
+
+ 49 bool gpg_alone =
false ;
+ 50 std::string gpg_path = {};
+
52 bool test_mode =
false ;
-
-
-
-
-
-
-
-
-
-
-
-
+ 54 bool offline_mode =
false ;
+ 55 bool auto_import_missing_key =
false ;
+
+ 57 bool custom_gpgconf =
false ;
+ 58 std::string custom_gpgconf_path;
+
+ 60 bool use_pinentry =
false ;
+
+
+
+
+
+
+
+
+
+
-
-
- 93 [[nodiscard]]
bool good()
const ;
-
- 100 [[nodiscard]]
const GpgInfo & GetInfo(
bool refresh =
false );
+
+
+
+
+ 100 [[nodiscard]]
bool good()
const ;
- 107 operator gpgme_ctx_t()
const {
return _ctx_ref.get(); }
+ 107 [[nodiscard]]
const GpgInfo & GetInfo(
bool refresh =
false );
-
-
- 111 GpgContextInitArgs args_{};
- 112 bool extend_info_loaded_ =
false ;
- 113 std::shared_mutex preload_lock_{};
-
- 119 void post_init_ctx();
-
- 126 std::string need_user_input_passphrase();
+ 114 operator gpgme_ctx_t()
const {
return _ctx_ref.get(); }
+
+
+
+ 118 GpgContextInitArgs args_{};
+ 119 bool extend_info_loaded_ =
false ;
+ 120 std::shared_mutex preload_lock_{};
+
+ 126 void post_init_ctx();
- 132 std::optional<std::string> check_binary_chacksum(std::filesystem::path);
-
-
- 139 void operator()(gpgme_ctx_t _ctx);
-
-
- 142 using CtxRefHandler =
- 143 std::unique_ptr<struct gpgme_context, _ctx_ref_deleter>;
- 144 CtxRefHandler _ctx_ref =
nullptr ;
-
-
-
- 152 void SignalNeedUserInputPassphrase();
+ 133 std::string need_user_input_passphrase();
+
+ 139 std::optional<std::string> check_binary_chacksum(std::filesystem::path);
+
+
+ 146 void operator()(gpgme_ctx_t _ctx);
+
+
+ 149 using CtxRefHandler =
+ 150 std::unique_ptr<struct gpgme_context, _ctx_ref_deleter>;
+ 151 CtxRefHandler _ctx_ref =
nullptr ;
+
-
- 165 static gpgme_error_t test_passphrase_cb(
void * opaque,
const char * uid_hint,
- 166 const char * passphrase_info,
- 167 int last_was_bad,
int fd);
-
- 179 static gpgme_error_t custom_passphrase_cb(
void * opaque,
const char * uid_hint,
- 180 const char * passphrase_info,
- 181 int last_was_bad,
int fd);
-
- 191 static gpgme_error_t test_status_cb(
void * hook,
const char * keyword,
-
-
- 199 void SetPassphraseCb(gpgme_passphrase_cb_t func)
const ;
-
-
-
-
-Definition: GpgContext.h:64
+
+ 159 void SignalNeedUserInputPassphrase();
+
+
+ 172 static gpgme_error_t test_passphrase_cb(
void * opaque,
const char * uid_hint,
+ 173 const char * passphrase_info,
+ 174 int last_was_bad,
int fd);
+
+ 186 static gpgme_error_t custom_passphrase_cb(
void * opaque,
const char * uid_hint,
+ 187 const char * passphrase_info,
+ 188 int last_was_bad,
int fd);
+
+ 198 static gpgme_error_t test_status_cb(
void * hook,
const char * keyword,
+
+
+ 206 void SetPassphraseCb(gpgme_passphrase_cb_t func)
const ;
+
+
+
+
+Definition: GpgContext.h:71
~GpgContext() override=default
Destroy the Gpg Context object.
Use to record some info about gnupg.
Definition: GpgInfo.h:40
Definition: GpgFunctionObject.h:150
Definition: CoreCommonUtil.cpp:31
-Definition: GpgContext.h:46
-Definition: GpgContext.h:138
+Definition: GpgContext.h:44
+Definition: GpgContext.h:145
diff --git a/docs/html/GpgCoreInit_8h_source.html b/docs/html/GpgCoreInit_8h_source.html
index bf8db170..5f37d180 100644
--- a/docs/html/GpgCoreInit_8h_source.html
+++ b/docs/html/GpgCoreInit_8h_source.html
@@ -111,8 +111,8 @@ $(document).ready(function(){initNavTree('GpgCoreInit_8h_source.html',''); initR
Definition: CoreCommonUtil.cpp:31
-void new_default_settings_channel(int channel)
Definition: GpgCoreInit.cpp:158
-void InitCoreLoggingSystem()
setup logging system and do proper initialization
Definition: GpgCoreInit.cpp:46
+void new_default_settings_channel(int channel)
Definition: GpgCoreInit.cpp:247
+void InitCoreLoggingSystem()
setup logging system and do proper initialization
Definition: GpgCoreInit.cpp:53
diff --git a/docs/html/GpgData_8h_source.html b/docs/html/GpgData_8h_source.html
index 38340d11..f041e461 100644
--- a/docs/html/GpgData_8h_source.html
+++ b/docs/html/GpgData_8h_source.html
@@ -119,7 +119,7 @@ $(document).ready(function(){initNavTree('GpgData_8h_source.html',''); initResiz
GpgData()
Construct a new Gpg Data object.
Definition: GpgData.cpp:31
-ByteArrayPtr Read2Buffer()
Definition: GpgData.cpp:55
+ByteArrayPtr Read2Buffer()
Definition: GpgData.cpp:56
Definition: CoreCommonUtil.cpp:31
diff --git a/docs/html/GpgFrontendUIInit_8h_source.html b/docs/html/GpgFrontendUIInit_8h_source.html
index 5de18345..c4d73787 100644
--- a/docs/html/GpgFrontendUIInit_8h_source.html
+++ b/docs/html/GpgFrontendUIInit_8h_source.html
@@ -106,8 +106,8 @@ $(document).ready(function(){initNavTree('GpgFrontendUIInit_8h_source.html','');
Definition: FileReadTask.cpp:29
-int RunGpgFrontendUI(QApplication *app)
run main window
Definition: GpgFrontendUIInit.cpp:121
-void InitGpgFrontendUI(QApplication *app)
init the UI library
Definition: GpgFrontendUIInit.cpp:52
+int RunGpgFrontendUI(QApplication *app)
run main window
Definition: GpgFrontendUIInit.cpp:183
+void InitGpgFrontendUI(QApplication *app)
init the UI library
Definition: GpgFrontendUIInit.cpp:56
diff --git a/docs/html/GpgKeyGetter_8h_source.html b/docs/html/GpgKeyGetter_8h_source.html
index 340892fb..fc4f21d2 100644
--- a/docs/html/GpgKeyGetter_8h_source.html
+++ b/docs/html/GpgKeyGetter_8h_source.html
@@ -134,7 +134,7 @@ $(document).ready(function(){initNavTree('GpgKeyGetter_8h_source.html',''); init
-Definition: GpgContext.h:64
+Definition: GpgContext.h:71
Definition: GpgKeyGetter.h:46
std::mutex ctx_mutex_
shared mutex for the keys cache
Definition: GpgKeyGetter.h:121
std::map< std::string, GpgKey > keys_cache_
cache the keys with key id
Definition: GpgKeyGetter.h:127
diff --git a/docs/html/GpgKeyImportExporter_8h_source.html b/docs/html/GpgKeyImportExporter_8h_source.html
index c5050b4c..15d3b24d 100644
--- a/docs/html/GpgKeyImportExporter_8h_source.html
+++ b/docs/html/GpgKeyImportExporter_8h_source.html
@@ -164,7 +164,7 @@ $(document).ready(function(){initNavTree('GpgKeyImportExporter_8h_source.html','
-Definition: GpgContext.h:64
+Definition: GpgContext.h:71
Definition: GpgKeyImportExporter.h:45
Definition: GpgKeyImportExporter.h:90
diff --git a/docs/html/GpgKeyManager_8h_source.html b/docs/html/GpgKeyManager_8h_source.html
index 24c3df17..ae05609b 100644
--- a/docs/html/GpgKeyManager_8h_source.html
+++ b/docs/html/GpgKeyManager_8h_source.html
@@ -90,43 +90,99 @@ $(document).ready(function(){initNavTree('GpgKeyManager_8h_source.html',''); ini
29 #ifndef GPGFRONTEND_ZH_CN_TS_GPGKEYMANAGER_H
30 #define GPGFRONTEND_ZH_CN_TS_GPGKEYMANAGER_H
- 32 #include "core/GpgContext.h"
- 33 #include "core/GpgFunctionObject.h"
- 34 #include "core/GpgModel.h"
-
-
-
-
-
-
-
-
-
- 60 bool SignKey(
const GpgKey & target, KeyArgsList& keys,
const std::string& uid,
- 61 const std::unique_ptr<boost::posix_time::ptime>& expires);
-
-
- 72 const GpgFrontend::SignIdArgsListPtr& signature_id);
-
- 83 bool SetExpire(
const GpgKey & key, std::unique_ptr<GpgSubKey>& subkey,
- 84 std::unique_ptr<boost::posix_time::ptime>& expires);
-
-
-
-
-
-
-
-
-
-Definition: GpgContext.h:64
-Definition: GpgKeyManager.h:43
+
+
+
+ 35 #include "core/GpgContext.h"
+ 36 #include "core/GpgFunctionObject.h"
+ 37 #include "core/GpgModel.h"
+
+
+
+
+
+
+
+
+
+ 63 bool SignKey(
const GpgKey & target, KeyArgsList& keys,
const std::string& uid,
+ 64 const std::unique_ptr<boost::posix_time::ptime>& expires);
+
+
+ 75 const GpgFrontend::SignIdArgsListPtr& signature_id);
+
+ 86 bool SetExpire(
const GpgKey & key, std::unique_ptr<GpgSubKey>& subkey,
+ 87 std::unique_ptr<boost::posix_time::ptime>& expires);
+
+ 94 bool SetOwnerTrustLevel(
const GpgKey & key,
int trust_level);
+
+
+ 97 static gpgme_error_t interactor_cb_fnc(
void * handle,
const char * status,
+ 98 const char * args,
int fd);
+
+ 100 using Command = std::string;
+ 101 using AutomatonState =
enum {
+
+
+
+
+
+
+
+
+
+
+
+ 113 using AutomatonActionHandler =
+
+ 115 using AutomatonNextStateHandler =
+ 116 std::function<AutomatonState(AutomatonState, std::string, std::string)>;
+
+
+ 119 void SetStatus(AutomatonState next_state) { current_state_ = next_state; }
+ 120 AutomatonState CuurentStatus() {
return current_state_; }
+ 121 void SetHandler(AutomatonNextStateHandler next_state_handler,
+ 122 AutomatonActionHandler action_handler) {
+ 123 next_state_handler_ = next_state_handler;
+ 124 action_handler_ = action_handler;
+
+ 126 AutomatonState NextState(std::string gpg_status, std::string args) {
+ 127 return next_state_handler_(current_state_, gpg_status, args);
+
+ 129 Command Action() {
return action_handler_(*
this , current_state_); }
+
+ 131 void SetSuccess(
bool success) { success_ = success; }
+
+ 133 bool Success() {
return success_; }
+
+ 135 std::string KeyFpr() {
return key_fpr_; }
+
+
+
+
+ 140 AutomatonState current_state_ = AS_START;
+ 141 AutomatonNextStateHandler next_state_handler_;
+ 142 AutomatonActionHandler action_handler_;
+ 143 bool success_ =
false ;
+ 144 std::string key_fpr_;
+
+
+
+
+
+
+
+
+
+Definition: GpgContext.h:71
+Definition: GpgKeyManager.h:46
Definition: GpgFunctionObject.h:150
static int GetDefaultChannel()
Get the Default Channel object.
Definition: GpgFunctionObject.h:251
static GpgContext & GetInstance(int channel=GpgFrontend::GPGFRONTEND_DEFAULT_CHANNEL)
Get the Instance object.
Definition: GpgFunctionObject.h:172
int GetChannel() const
Get the Channel object.
Definition: GpgFunctionObject.h:258
Definition: CoreCommonUtil.cpp:31
+Definition: GpgKeyManager.h:118
diff --git a/docs/html/GpgKeyOpera_8h_source.html b/docs/html/GpgKeyOpera_8h_source.html
index a4740514..81de9993 100644
--- a/docs/html/GpgKeyOpera_8h_source.html
+++ b/docs/html/GpgKeyOpera_8h_source.html
@@ -110,8 +110,8 @@ $(document).ready(function(){initNavTree('GpgKeyOpera_8h_source.html',''); initR
80 GpgError SetExpire(
const GpgKey & key,
const SubkeyId& subkey_fpr,
81 std::unique_ptr<boost::posix_time::ptime>& expires);
- 89 static void GenerateRevokeCert(
const GpgKey & key,
- 90 const std::string& output_file_name);
+ 89 void GenerateRevokeCert(
const GpgKey & key,
+ 90 const std::string& output_file_name);
98 GpgFrontend::GpgError ModifyPassword(
const GpgKey & key);
@@ -130,7 +130,7 @@ $(document).ready(function(){initNavTree('GpgKeyOpera_8h_source.html',''); initR
-Definition: GpgContext.h:64
+Definition: GpgContext.h:71
Definition: GpgKeyOpera.h:48
Definition: GpgFunctionObject.h:150
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
100 [[nodiscard]] std::string GetOwnerTrust()
const ;
- 107 [[nodiscard]] std::string GetPublicKeyAlgo()
const ;
+ 107 [[nodiscard]]
int GetOwnerTrustLevel()
const ;
- 114 [[nodiscard]] boost::posix_time::ptime GetLastUpdateTime()
const ;
+ 114 [[nodiscard]] std::string GetPublicKeyAlgo()
const ;
- 121 [[nodiscard]] boost::posix_time::ptime GetExpireTime()
const ;
+ 121 [[nodiscard]] boost::posix_time::ptime GetLastUpdateTime()
const ;
- 128 [[nodiscard]] boost::posix_time::ptime GetCreateTime()
const ;
+ 128 [[nodiscard]] boost::posix_time::ptime GetExpireTime()
const ;
- 135 [[nodiscard]]
unsigned int GetPrimaryKeyLength()
const ;
+ 135 [[nodiscard]] boost::posix_time::ptime GetCreateTime()
const ;
- 143 [[nodiscard]]
bool IsHasEncryptionCapability()
const ;
-
- 152 [[nodiscard]]
bool IsHasActualEncryptionCapability()
const ;
-
- 160 [[nodiscard]]
bool IsHasSigningCapability()
const ;
-
- 168 [[nodiscard]]
bool IsHasActualSigningCapability()
const ;
-
- 176 [[nodiscard]]
bool IsHasCertificationCapability()
const ;
-
- 184 [[nodiscard]]
bool IsHasActualCertificationCapability()
const ;
-
- 192 [[nodiscard]]
bool IsHasAuthenticationCapability()
const ;
-
- 200 [[nodiscard]]
bool IsHasActualAuthenticationCapability()
const ;
-
- 208 [[nodiscard]]
bool IsHasCardKey()
const ;
-
- 216 [[nodiscard]]
bool IsPrivateKey()
const ;
-
- 224 [[nodiscard]]
bool IsExpired()
const ;
-
- 232 [[nodiscard]]
bool IsRevoked()
const ;
-
- 240 [[nodiscard]]
bool IsDisabled()
const ;
-
- 248 [[nodiscard]]
bool IsHasMasterKey()
const ;
-
- 255 [[nodiscard]] std::unique_ptr<std::vector<GpgSubKey>> GetSubKeys()
const ;
+ 142 [[nodiscard]]
unsigned int GetPrimaryKeyLength()
const ;
+
+ 150 [[nodiscard]]
bool IsHasEncryptionCapability()
const ;
+
+ 159 [[nodiscard]]
bool IsHasActualEncryptionCapability()
const ;
+
+ 167 [[nodiscard]]
bool IsHasSigningCapability()
const ;
+
+ 175 [[nodiscard]]
bool IsHasActualSigningCapability()
const ;
+
+ 183 [[nodiscard]]
bool IsHasCertificationCapability()
const ;
+
+ 191 [[nodiscard]]
bool IsHasActualCertificationCapability()
const ;
+
+ 199 [[nodiscard]]
bool IsHasAuthenticationCapability()
const ;
+
+ 207 [[nodiscard]]
bool IsHasActualAuthenticationCapability()
const ;
+
+ 215 [[nodiscard]]
bool IsHasCardKey()
const ;
+
+ 223 [[nodiscard]]
bool IsPrivateKey()
const ;
+
+ 231 [[nodiscard]]
bool IsExpired()
const ;
+
+ 239 [[nodiscard]]
bool IsRevoked()
const ;
+
+ 247 [[nodiscard]]
bool IsDisabled()
const ;
+
+ 255 [[nodiscard]]
bool IsHasMasterKey()
const ;
- 262 [[nodiscard]] std::unique_ptr<std::vector<GpgUID>> GetUIDs()
const ;
+ 262 [[nodiscard]] std::unique_ptr<std::vector<GpgSubKey>> GetSubKeys()
const ;
-
-
- 275 explicit GpgKey (gpgme_key_t&& key);
+ 269 [[nodiscard]] std::unique_ptr<std::vector<GpgUID>> GetUIDs()
const ;
+
+
-
-
-
+ 282 explicit GpgKey (gpgme_key_t&& key);
+
+
-
+
-
-
-
-
- 320 bool operator==(
const GpgKey & o)
const ;
-
- 329 bool operator<=(
const GpgKey & o)
const ;
-
- 336 explicit operator gpgme_key_t()
const ;
+
+
+
+
+
+
+ 327 bool operator==(
const GpgKey & o)
const ;
+
+ 336 bool operator<=(
const GpgKey & o)
const ;
- 343 [[nodiscard]]
GpgKey Copy()
const ;
+ 343 explicit operator gpgme_key_t()
const ;
-
-
- 351 void operator()(gpgme_key_t _key);
-
-
- 354 using KeyRefHandler =
- 355 std::unique_ptr<struct _gpgme_key, _key_ref_deleter>;
-
- 357 KeyRefHandler key_ref_ =
nullptr ;
-
- 359 mutable std::mutex gpgme_key_opera_mutex;
-
-
-
+ 350 [[nodiscard]]
GpgKey Copy()
const ;
+
+
+
+ 358 void operator()(gpgme_key_t _key);
+
+
+ 361 using KeyRefHandler =
+ 362 std::unique_ptr<struct _gpgme_key, _key_ref_deleter>;
-
+ 364 KeyRefHandler key_ref_ =
nullptr ;
+
+ 366 mutable std::mutex gpgme_key_opera_mutex;
+
+
+
+
+
GpgKey(const gpgme_key_t &key)=delete
Construct a new Gpg Key object.
~GpgKey()=default
Destroy the Gpg Key objects.
GpgKey()=default
Construct a new Gpg Key object.
GpgKey & operator=(const gpgme_key_t &key)=delete
Definition: CoreCommonUtil.cpp:31
-
+
diff --git a/docs/html/GpgUIDOperator_8h_source.html b/docs/html/GpgUIDOperator_8h_source.html
index 79720290..ab80fca2 100644
--- a/docs/html/GpgUIDOperator_8h_source.html
+++ b/docs/html/GpgUIDOperator_8h_source.html
@@ -117,7 +117,7 @@ $(document).ready(function(){initNavTree('GpgUIDOperator_8h_source.html',''); in
-Definition: GpgContext.h:64
+Definition: GpgContext.h:71
Definition: GpgUIDOperator.h:41
Definition: GpgFunctionObject.h:150
diff --git a/docs/html/KeyImportDetailDialog_8h_source.html b/docs/html/KeyImportDetailDialog_8h_source.html
index e856fce0..226e075a 100644
--- a/docs/html/KeyImportDetailDialog_8h_source.html
+++ b/docs/html/KeyImportDetailDialog_8h_source.html
@@ -126,9 +126,9 @@ $(document).ready(function(){initNavTree('KeyImportDetailDialog_8h_source.html',
Definition: GeneralDialog.h:35
Definition: KeyImportDetailDialog.h:43
KeyImportDetailDialog(GpgImportInformation result, bool automatic, QWidget *parent=nullptr)
Construct a new Key Import Detail Dialog object.
Definition: KeyImportDetailDialog.cpp:34
-void create_keys_table()
Create a keys table object.
Definition: KeyImportDetailDialog.cpp:131
-void create_button_box()
Create a button box object.
Definition: KeyImportDetailDialog.cpp:197
-static QString get_status_string(int keyStatus)
Get the status string object.
Definition: KeyImportDetailDialog.cpp:165
+void create_keys_table()
Create a keys table object.
Definition: KeyImportDetailDialog.cpp:130
+void create_button_box()
Create a button box object.
Definition: KeyImportDetailDialog.cpp:196
+static QString get_status_string(int keyStatus)
Get the status string object.
Definition: KeyImportDetailDialog.cpp:164
void create_general_info_box()
Create a general info box object.
Definition: KeyImportDetailDialog.cpp:77
Definition: FileReadTask.cpp:29
diff --git a/docs/html/KeyList_8h_source.html b/docs/html/KeyList_8h_source.html
index d565c544..c685745a 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
-
-
- 34 #include "core/GpgContext.h"
- 35 #include "ui/dialog/import_export/KeyImportDetailDialog.h"
-
-
-
-
-
-
- 46 using KeyType =
unsigned int;
-
- 48 static const KeyType SECRET_OR_PUBLIC_KEY = 0;
- 49 static const KeyType ONLY_SECRET_KEY = 1;
-
-
-
- 57 using InfoType =
unsigned int;
-
- 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;
-
-
-
- 73 using AbilityType =
unsigned int;
-
- 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;
-
-
-
- 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_;
-
-
- 104 QTableWidget* _key_list, KeyListRow::KeyType _select_type,
- 105 KeyListColumn::InfoType _info_type,
- 106 std::function<
bool (
const GpgKey &)> _filter = [](
const GpgKey &) ->
bool {
-
-
- 109 : key_list_(_key_list),
- 110 select_type_(_select_type),
- 111 info_type_(_info_type),
- 112 filter_(std::move(_filter)) {}
-
- 119 void Refresh (KeyLinkListPtr m_keys =
nullptr );
-
-
-
- 132 void UncheckALL()
const ;
+
+
+
+ 35 #include "core/GpgContext.h"
+ 36 #include "ui/dialog/import_export/KeyImportDetailDialog.h"
+
+
+
+
+
+
+ 47 using KeyType =
unsigned int;
+
+ 49 static const KeyType SECRET_OR_PUBLIC_KEY = 0;
+ 50 static const KeyType ONLY_SECRET_KEY = 1;
+
+
+
+ 58 using InfoType =
unsigned int;
+
+ 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;
+
+
+
+ 74 using AbilityType =
unsigned int;
+
+ 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;
+
+
+
+ 90 using KeyTableFilter = std::function<bool(
const GpgKey &,
const KeyTable &)>;
+
+ 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_;
+
+
+
+ 110 QTableWidget* _key_list, KeyListRow::KeyType _select_type,
+ 111 KeyListColumn::InfoType _info_type,
+ 112 KeyTableFilter _filter = [](
const GpgKey &,
const KeyTable &) ->
bool {
+
+
+ 115 : key_list_(_key_list),
+ 116 select_type_(_select_type),
+ 117 info_type_(_info_type),
+ 118 filter_(std::move(_filter)) {}
+
+ 125 void Refresh (KeyLinkListPtr m_keys =
nullptr );
+
+
- 138 void CheckALL()
const ;
+ 138 void UncheckALL()
const ;
-
-
-
-
-
-
-
- 162 explicit KeyList (KeyMenuAbility::AbilityType menu_ability,
- 163 QWidget* parent =
nullptr );
-
-
-
- 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 ; });
-
-
- 186 std::function<
void (
const GpgKey &, QWidget*)> action);
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 251 static void SetChecked (
const KeyIdArgsListPtr& keyIds,
-
-
-
-
-
-
- 273 [[maybe_unused]]
static void MarkKeys (QStringList* keyIds);
-
-
-
-
-
-
- 296 void SignalRefreshDatabase();
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 332 std::mutex buffered_key_list_mutex_;
-
- 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;
-
-
+ 144 void CheckALL()
const ;
+
+
+
+ 157 void SetMenuAbility(KeyMenuAbility::AbilityType ability);
+
+ 163 void SetFilterKeyword(std::string keyword);
+
+
+
+
+
+
+ 180 explicit KeyList (KeyMenuAbility::AbilityType menu_ability,
+ 181 QWidget* parent =
nullptr );
+
+
+ 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 =
+
+
+
+ 204 std::function<
void (
const GpgKey &, QWidget*)> action);
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 269 static void SetChecked (
const KeyIdArgsListPtr& keyIds,
+
+
+
+
+
+
+ 291 [[maybe_unused]]
static void MarkKeys (QStringList* keyIds);
+
+
+
+
+
+
+ 314 void SignalRefreshDatabase();
+
+
+
+
+
+ 328 void SlotRefreshUI();
+
+
+
+
+
-
-
- 355 void slot_refresh_ui();
-
- 361 void slot_sync_with_key_server();
-
-
-
-
-
-
- 383 void dropEvent (QDropEvent* event)
override ;
-
-
-
-
-
+
+
+
+
+ 360 void filter_by_keyword();
+
+ 362 std::mutex buffered_key_list_mutex_;
+
+ 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;
+
+
+
+
+
+ 385 void slot_refresh_ui();
+
+ 391 void slot_sync_with_key_server();
+
+
+
+
+
+
+ 413 void dropEvent (QDropEvent* event)
override ;
+
+
+
+
+
-Definition: KeyList.h:152
-KeyIdArgsListPtr GetSelected()
Get the Selected object.
Definition: KeyList.cpp:253
-bool ContainsPrivateKeys()
Definition: KeyList.cpp:270
-void dropEvent(QDropEvent *event) override
Definition: KeyList.cpp:302
-static void MarkKeys(QStringList *keyIds)
Definition: KeyList.cpp:380
-void SetChecked(KeyIdArgsListPtr key_ids)
Set the Checked object.
Definition: KeyList.cpp:239
-void slot_double_clicked(const QModelIndex &index)
Definition: KeyList.cpp:391
-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:99
-KeyList(KeyMenuAbility::AbilityType menu_ability, QWidget *parent=nullptr)
Construct a new Key List object.
Definition: KeyList.cpp:44
-void SetDoubleClickedAction(std::function< void(const GpgKey &, QWidget *)> action)
Set the Double Clicked Action object.
Definition: KeyList.cpp:402
-KeyIdArgsListPtr GetAllPrivateKeys()
Get the All Private Keys object.
Definition: KeyList.cpp:195
-KeyIdArgsListPtr GetPrivateChecked()
Get the Private Checked object.
Definition: KeyList.cpp:209
-void contextMenuEvent(QContextMenuEvent *event) override
Definition: KeyList.cpp:289
+Definition: KeyList.h:170
+KeyIdArgsListPtr GetSelected()
Get the Selected object.
Definition: KeyList.cpp:275
+bool ContainsPrivateKeys()
Definition: KeyList.cpp:292
+void dropEvent(QDropEvent *event) override
Definition: KeyList.cpp:348
+static void MarkKeys(QStringList *keyIds)
Definition: KeyList.cpp:422
+void SetChecked(KeyIdArgsListPtr key_ids)
Set the Checked object.
Definition: KeyList.cpp:261
+void slot_double_clicked(const QModelIndex &index)
Definition: KeyList.cpp:435
+KeyList(KeyMenuAbility::AbilityType menu_ability, QWidget *parent=nullptr)
Construct a new Key List object.
Definition: KeyList.cpp:46
+void SetDoubleClickedAction(std::function< void(const GpgKey &, QWidget *)> action)
Set the Double Clicked Action object.
Definition: KeyList.cpp:446
+KeyIdArgsListPtr GetAllPrivateKeys()
Get the All Private Keys object.
Definition: KeyList.cpp:217
+KeyIdArgsListPtr GetPrivateChecked()
Get the Private Checked object.
Definition: KeyList.cpp:231
+void contextMenuEvent(QContextMenuEvent *event) override
Definition: KeyList.cpp:311
void SignalRefreshStatusBar(const QString &message, int timeout)
-void AddMenuAction(QAction *act)
Definition: KeyList.cpp:300
-void SetColumnWidth(int row, int size)
Set the Column Width object.
Definition: KeyList.cpp:282
-std::string GetSelectedKey()
Get the Selected Key object.
Definition: KeyList.cpp:407
-void import_keys(const QByteArray &inBuffer)
Definition: KeyList.cpp:384
-KeyIdArgsListPtr GetChecked()
Get the Checked object.
Definition: KeyList.cpp:181
-void dragEnterEvent(QDragEnterEvent *event) override
Definition: KeyList.cpp:373
+void AddMenuAction(QAction *act)
Definition: KeyList.cpp:346
+void SetColumnWidth(int row, int size)
Set the Column Width object.
Definition: KeyList.cpp:304
+std::string GetSelectedKey()
Get the Selected Key object.
Definition: KeyList.cpp:451
+void import_keys(const QByteArray &inBuffer)
Definition: KeyList.cpp:428
+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
+KeyIdArgsListPtr GetChecked()
Get the Checked object.
Definition: KeyList.cpp:203
+void dragEnterEvent(QDragEnterEvent *event) override
Definition: KeyList.cpp:415
Definition: FileReadTask.cpp:29
-
-
-
-
-KeyIdArgsListPtr & GetChecked()
Get the Checked object.
Definition: KeyList.cpp:499
-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
-void Refresh(KeyLinkListPtr m_keys=nullptr)
Definition: KeyList.cpp:518
-void SetChecked(KeyIdArgsListPtr key_ids)
Set the Checked object.
Definition: KeyList.cpp:514
+
+
+
+
+KeyIdArgsListPtr & GetChecked()
Get the Checked object.
Definition: KeyList.cpp:558
+void Refresh(KeyLinkListPtr m_keys=nullptr)
Definition: KeyList.cpp:576
+void SetChecked(KeyIdArgsListPtr key_ids)
Set the Checked object.
Definition: KeyList.cpp:572
+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 826b47a4..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
Definition: GeneralMainWindow.h:39
-Definition: KeyList.h:152
+Definition: KeyList.h:170
-void delete_keys_with_warning(GpgFrontend::KeyIdArgsListPtr uidList)
Definition: KeyMgmt.cpp:283
-void create_actions()
Create a actions object.
Definition: KeyMgmt.cpp:124
-void create_tool_bars()
Create a tool bars object.
Definition: KeyMgmt.cpp:243
-void create_menus()
Create a menus object.
Definition: KeyMgmt.cpp:220
+void delete_keys_with_warning(GpgFrontend::KeyIdArgsListPtr uidList)
Definition: KeyMgmt.cpp:285
+void create_actions()
Create a actions object.
Definition: KeyMgmt.cpp:128
+void create_tool_bars()
Create a tool bars object.
Definition: KeyMgmt.cpp:252
+void create_menus()
Create a menus object.
Definition: KeyMgmt.cpp:229
KeyMgmt(QWidget *parent=nullptr)
Construct a new Key Mgmt object.
Definition: KeyMgmt.cpp:46
Definition: KeyServerImportDialog.h:46
Definition: FileReadTask.cpp:29
diff --git a/docs/html/KeyPairDetailTab_8h_source.html b/docs/html/KeyPairDetailTab_8h_source.html
index f9912cde..34f2c337 100644
--- a/docs/html/KeyPairDetailTab_8h_source.html
+++ b/docs/html/KeyPairDetailTab_8h_source.html
@@ -130,18 +130,19 @@ $(document).ready(function(){initNavTree('KeyPairDetailTab_8h_source.html','');
79 QLabel* usage_var_label_;
80 QLabel* actual_usage_var_label_;
81 QLabel* primary_key_exist_var_label_;
-
-
-
-
-
-
- 94 QWidget* parent =
nullptr );
-
-
-
-
-
+ 82 QLabel* owner_trust_var_label_;
+
+
+
+
+
+
+ 95 QWidget* parent =
nullptr );
+
+
+
+
+
Definition: KeyPairDetailTab.h:38
QLabel * key_size_var_label_
Label containing the keys key size.
Definition: KeyPairDetailTab.h:72
@@ -158,7 +159,7 @@ $(document).ready(function(){initNavTree('KeyPairDetailTab_8h_source.html','');
QGroupBox * owner_box_
Groupbox containing owner information.
Definition: KeyPairDetailTab.h:63
QGroupBox * fingerprint_box_
Groupbox containing fingerprint information.
Definition: KeyPairDetailTab.h:65
QLabel * expire_var_label_
Label containing the keys expiration date.
Definition: KeyPairDetailTab.h:73
-void slot_copy_fingerprint()
Definition: KeyPairDetailTab.cpp:165
+void slot_copy_fingerprint()
Definition: KeyPairDetailTab.cpp:168
Definition: FileReadTask.cpp:29
diff --git a/docs/html/KeyPairOperaTab_8h_source.html b/docs/html/KeyPairOperaTab_8h_source.html
index bf22fbb3..859671c2 100644
--- a/docs/html/KeyPairOperaTab_8h_source.html
+++ b/docs/html/KeyPairOperaTab_8h_source.html
@@ -101,39 +101,44 @@ $(document).ready(function(){initNavTree('KeyPairOperaTab_8h_source.html',''); i
-
-
-
+
+ 56 void SignalKeyDatabaseRefresh();
- 62 void slot_export_short_private_key();
-
- 68 void slot_export_public_key();
-
- 74 void slot_modify_edit_datetime();
-
- 80 void slot_modify_password();
-
- 86 void slot_upload_key_to_server();
-
- 92 void slot_update_key_from_server();
-
- 98 void slot_gen_revoke_cert();
-
- 104 void slot_modify_tofu_policy();
-
-
-
- 108 QMenu* key_server_opera_menu_{};
- 109 QMenu* secret_key_export_opera_menu_{};
-
-
+
+
+
+
+ 69 void slot_export_short_private_key();
+
+ 75 void slot_export_public_key();
+
+ 81 void slot_modify_edit_datetime();
+
+ 87 void slot_modify_password();
+
+ 93 void slot_upload_key_to_server();
+
+ 99 void slot_update_key_from_server();
+
+ 105 void slot_gen_revoke_cert();
+
+ 111 void slot_modify_tofu_policy();
-
+ 117 void slot_set_owner_trust_level();
+
+
+
+ 121 QMenu* key_server_opera_menu_{};
+ 122 QMenu* secret_key_export_opera_menu_{};
+
+
+
+
Definition: KeyPairOperaTab.h:34
-void slot_export_private_key()
Definition: KeyPairOperaTab.cpp:217
-void CreateOperaMenu()
Create a Opera Menu object.
Definition: KeyPairOperaTab.cpp:103
-KeyPairOperaTab(const std::string &key_id, QWidget *parent)
Construct a new Key Pair Opera Tab object.
Definition: KeyPairOperaTab.cpp:38
+void slot_export_private_key()
Definition: KeyPairOperaTab.cpp:255
+void CreateOperaMenu()
Create a Opera Menu object.
Definition: KeyPairOperaTab.cpp:130
+KeyPairOperaTab(const std::string &key_id, QWidget *parent)
Construct a new Key Pair Opera Tab object.
Definition: KeyPairOperaTab.cpp:40
Definition: FileReadTask.cpp:29
diff --git a/docs/html/KeyPairUIDTab_8h_source.html b/docs/html/KeyPairUIDTab_8h_source.html
index e08ef90b..398c468f 100644
--- a/docs/html/KeyPairUIDTab_8h_source.html
+++ b/docs/html/KeyPairUIDTab_8h_source.html
@@ -169,16 +169,16 @@ $(document).ready(function(){initNavTree('KeyPairUIDTab_8h_source.html',''); ini
Definition: KeyPairUIDTab.h:39
-void create_uid_list()
Create a uid list object.
Definition: KeyPairUIDTab.cpp:119
-UIDArgsListPtr get_uid_selected()
Get the uid selected object.
Definition: KeyPairUIDTab.cpp:445
-static void slot_add_uid_result(int result)
Definition: KeyPairUIDTab.cpp:362
-void create_uid_popup_menu()
Create a uid popup menu object.
Definition: KeyPairUIDTab.cpp:466
-SignIdArgsListPtr get_sign_selected()
Get the sign selected object.
Definition: KeyPairUIDTab.cpp:455
-void create_sign_list()
Create a sign list object.
Definition: KeyPairUIDTab.cpp:143
-void contextMenuEvent(QContextMenuEvent *event) override
Definition: KeyPairUIDTab.cpp:486
-void create_manage_uid_menu()
Create a manage uid menu object.
Definition: KeyPairUIDTab.cpp:339
-void create_sign_popup_menu()
Create a sign popup menu object.
Definition: KeyPairUIDTab.cpp:541
-UIDArgsListPtr get_uid_checked()
Get the uid checked object.
Definition: KeyPairUIDTab.cpp:330
+void create_uid_list()
Create a uid list object.
Definition: KeyPairUIDTab.cpp:118
+UIDArgsListPtr get_uid_selected()
Get the uid selected object.
Definition: KeyPairUIDTab.cpp:444
+static void slot_add_uid_result(int result)
Definition: KeyPairUIDTab.cpp:361
+void create_uid_popup_menu()
Create a uid popup menu object.
Definition: KeyPairUIDTab.cpp:465
+SignIdArgsListPtr get_sign_selected()
Get the sign selected object.
Definition: KeyPairUIDTab.cpp:454
+void create_sign_list()
Create a sign list object.
Definition: KeyPairUIDTab.cpp:142
+void contextMenuEvent(QContextMenuEvent *event) override
Definition: KeyPairUIDTab.cpp:485
+void create_manage_uid_menu()
Create a manage uid menu object.
Definition: KeyPairUIDTab.cpp:338
+void create_sign_popup_menu()
Create a sign popup menu object.
Definition: KeyPairUIDTab.cpp:540
+UIDArgsListPtr get_uid_checked()
Get the uid checked object.
Definition: KeyPairUIDTab.cpp:329
KeyPairUIDTab(const std::string &key_id, QWidget *parent)
Construct a new Key Pair U I D Tab object.
Definition: KeyPairUIDTab.cpp:37
Definition: FileReadTask.cpp:29
diff --git a/docs/html/KeyServerImportDialog_8h_source.html b/docs/html/KeyServerImportDialog_8h_source.html
index 838149ff..077ef5d2 100644
--- a/docs/html/KeyServerImportDialog_8h_source.html
+++ b/docs/html/KeyServerImportDialog_8h_source.html
@@ -164,16 +164,16 @@ $(document).ready(function(){initNavTree('KeyServerImportDialog_8h_source.html',
Definition: GeneralDialog.h:35
Definition: KeyServerImportDialog.h:46
-void SlotImport(const KeyIdArgsListPtr &keys)
Definition: KeyServerImportDialog.cpp:426
-void import_keys(ByteArrayPtr in_data)
Definition: KeyServerImportDialog.cpp:526
+void SlotImport(const KeyIdArgsListPtr &keys)
Definition: KeyServerImportDialog.cpp:440
+void import_keys(ByteArrayPtr in_data)
Definition: KeyServerImportDialog.cpp:540
QPushButton * create_button(const QString &text, const char *member)
Create a button object.
-void create_keys_table()
Create a keys table object.
Definition: KeyServerImportDialog.cpp:187
-void slot_import_finished(QNetworkReply::NetworkError error, QByteArray buffer)
Definition: KeyServerImportDialog.cpp:475
+void create_keys_table()
Create a keys table object.
Definition: KeyServerImportDialog.cpp:197
+void slot_import_finished(QNetworkReply::NetworkError error, QByteArray buffer)
Definition: KeyServerImportDialog.cpp:489
KeyServerImportDialog(bool automatic, QWidget *parent)
Construct a new Key Server Import Dialog object.
Definition: KeyServerImportDialog.cpp:44
-void set_message(const QString &text, bool error)
Set the message object.
Definition: KeyServerImportDialog.cpp:209
-QComboBox * create_comboBox()
Create a comboBox object.
Definition: KeyServerImportDialog.cpp:157
-void slot_import()
import key(s) for the key table selection
Definition: KeyServerImportDialog.cpp:413
-void set_loading(bool status)
Set the loading object.
Definition: KeyServerImportDialog.cpp:544
+void set_message(const QString &text, bool error)
Set the message object.
Definition: KeyServerImportDialog.cpp:219
+QComboBox * create_comboBox()
Create a comboBox object.
Definition: KeyServerImportDialog.cpp:167
+void slot_import()
import key(s) for the key table selection
Definition: KeyServerImportDialog.cpp:427
+void set_loading(bool status)
Set the loading object.
Definition: KeyServerImportDialog.cpp:558
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','');
Definition: GeneralDialog.h:35
-Definition: KeyList.h:152
+Definition: KeyList.h:170
Definition: KeyUIDSignDialog.h:37
void slot_sign_key(bool clicked)
Definition: KeyUIDSignDialog.cpp:106
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/KeygenDialog_8h_source.html b/docs/html/KeygenDialog_8h_source.html
index 1b1dddcc..7dfd2d3d 100644
--- a/docs/html/KeygenDialog_8h_source.html
+++ b/docs/html/KeygenDialog_8h_source.html
@@ -131,61 +131,62 @@ $(document).ready(function(){initNavTree('KeygenDialog_8h_source.html',''); init
104 QDateTime max_date_time_;
-
- 111 void generate_key_dialog();
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+ 106 bool use_pinentry_ =
false ;
+
+ 112 void generate_key_dialog();
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Definition: GeneralDialog.h:35
Definition: KeygenDialog.h:41
-QGroupBox * create_basic_info_group_box()
Create a basic info group box object.
Definition: KeygenDialog.cpp:366
+QGroupBox * create_basic_info_group_box()
Create a basic info group box object.
Definition: KeygenDialog.cpp:367
QStringList error_messages_
Definition: KeygenDialog.h:87
-void slot_signing_box_changed(int state)
Definition: KeygenDialog.cpp:249
+void slot_signing_box_changed(int state)
Definition: KeygenDialog.cpp:250
QCheckBox * expire_check_box_
Checkbox, if key should expire.
Definition: KeygenDialog.h:100
QDateTimeEdit * date_edit_
Date edit for expiration date.
Definition: KeygenDialog.h:99
QComboBox * key_type_combo_box_
Combobox for Key type.
Definition: KeygenDialog.h:98
QLineEdit * comment_edit_
Line edit for the keys comment.
Definition: KeygenDialog.h:95
QLineEdit * email_edit_
Line edit for the keys email.
Definition: KeygenDialog.h:94
-KeyGenDialog(QWidget *parent=nullptr)
Definition: KeygenDialog.cpp:39
-void slot_certification_box_changed(int state)
Definition: KeygenDialog.cpp:257
-void refresh_widgets_state()
Definition: KeygenDialog.cpp:282
-void slot_expire_box_changed()
Definition: KeygenDialog.cpp:200
+KeyGenDialog(QWidget *parent=nullptr)
Definition: KeygenDialog.cpp:41
+void slot_certification_box_changed(int state)
Definition: KeygenDialog.cpp:258
+void refresh_widgets_state()
Definition: KeygenDialog.cpp:283
+void slot_expire_box_changed()
Definition: KeygenDialog.cpp:201
QGroupBox * key_usage_group_box_
Definition: KeygenDialog.h:102
QLineEdit * name_edit_
Line edit for the keys name.
Definition: KeygenDialog.h:93
QLabel * error_label_
Label containing error message.
Definition: KeygenDialog.h:92
-QGroupBox * create_key_usage_group_box()
Create a key usage group box object.
Definition: KeygenDialog.cpp:208
-void slot_authentication_box_changed(int state)
Definition: KeygenDialog.cpp:265
-void set_signal_slot()
Set the signal slot object.
Definition: KeygenDialog.cpp:334
+QGroupBox * create_key_usage_group_box()
Create a key usage group box object.
Definition: KeygenDialog.cpp:209
+void slot_authentication_box_changed(int state)
Definition: KeygenDialog.cpp:266
+void set_signal_slot()
Set the signal slot object.
Definition: KeygenDialog.cpp:335
QDialogButtonBox * button_box_
Box for standard buttons.
Definition: KeygenDialog.h:91
QSpinBox * key_size_spin_box_
Spinbox for the keys size (in bit)
Definition: KeygenDialog.h:97
std::vector< QCheckBox * > key_usage_check_boxes_
ENCR, SIGN, CERT, AUTH.
Definition: KeygenDialog.h:105
-void slot_activated_key_type(int index)
Definition: KeygenDialog.cpp:273
-void slot_encryption_box_changed(int state)
Definition: KeygenDialog.cpp:241
-bool check_email_address(const QString &str)
Definition: KeygenDialog.cpp:362
+void slot_activated_key_type(int index)
Definition: KeygenDialog.cpp:274
+void slot_encryption_box_changed(int state)
Definition: KeygenDialog.cpp:242
+bool check_email_address(const QString &str)
Definition: KeygenDialog.cpp:363
void slot_key_gen_accept()
Definition: KeygenDialog.cpp:91
Definition: FileReadTask.cpp:29
diff --git a/docs/html/MainWindow_8h_source.html b/docs/html/MainWindow_8h_source.html
index 0eb969f3..d527f7e6 100644
--- a/docs/html/MainWindow_8h_source.html
+++ b/docs/html/MainWindow_8h_source.html
@@ -133,290 +133,328 @@ $(document).ready(function(){initNavTree('MainWindow_8h_source.html',''); initRe
-
-
- 100 void SlotSetStatusBarText(const QString& text);
-
-
-
+ 98 void SignalRestartApplication(
int );
+
+ 103 void SignalUIRefresh();
+
+ 108 void SignalKeyDatabaseRefresh();
-
+ 115 void SlotSetStatusBarText(const QString& text);
-
-
-
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+ 246 void slot_append_keys_create_datetime();
-
+ 252 void slot_append_keys_expire_datetime();
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 337 QMenu* email_menu_{};
-
-
-
-
-
-
-
-
-
-
-
-
-
- 351 QDockWidget* info_board_dock_{};
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 373 QAction* clean_gpg_password_cache_act_{};
- 374 QAction* reload_components_act_{};
- 375 QAction* restart_components_act_{};
+ 258 void slot_append_keys_fingerprint();
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 323 void slot_add_key_2_favourite();
+
+ 328 void slot_remove_key_from_favourite();
+
+ 333 void slot_set_owner_trust_level_of_key();
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 401 QAction* import_key_from_file_act_{};
- 402 QAction* import_key_from_clipboard_act_{};
- 403 QAction* import_key_from_key_server_act_{};
+ 380 void recover_editor_unsaved_pages_from_cache();
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 402 QMenu* email_menu_{};
+
- 405 QLabel* status_bar_icon_{};
-
- 407 KeyList* m_key_list_{};
- 408 InfoBoardWidget* info_board_{};
-
- 410 bool attachment_dock_created_{};
- 411 int restart_needed_{0};
- 412 bool prohibit_update_checking_ =
false ;
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+ 416 QDockWidget* info_board_dock_{};
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 438 QAction* gnupg_controller_open_act_{};
+ 439 QAction* clean_gpg_password_cache_act_{};
+ 440 QAction* reload_components_act_{};
+ 441 QAction* restart_components_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_{};
+
+
+ 451 QAction* copy_key_id_to_clipboard_act_{};
+ 452 QAction* copy_key_default_uid_to_clipboard_act_{};
+
+ 454 QAction* add_key_2_favourtie_act_{};
+ 455 QAction* remove_key_from_favourtie_act_{};
+ 456 QAction* set_owner_trust_of_key_act_{};
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 478 QAction* import_key_from_file_act_{};
+ 479 QAction* import_key_from_clipboard_act_{};
+ 480 QAction* import_key_from_key_server_act_{};
+
+ 482 QLabel* status_bar_icon_{};
+
+ 484 KeyList* m_key_list_{};
+ 485 InfoBoardWidget* info_board_{};
+
+ 487 bool attachment_dock_created_{};
+ 488 int restart_needed_{0};
+ 489 bool prohibit_update_checking_ =
false ;
+
+
+
+
+
Definition: GeneralMainWindow.h:39
Definition: MainWindow.h:53
-QAction * import_key_from_edit_act_
Action to import key from edit.
Definition: MainWindow.h:369
-void slot_show_key_details()
Definition: MainWindowSlotFunction.cpp:632
-void create_dock_windows()
Definition: MainWindowUI.cpp:537
-void SlotOpenFile(QString &path)
Definition: MainWindowSlotFunction.cpp:660
-void Init() noexcept
Definition: MainWindow.cpp:45
-QAction * close_tab_act_
Action to print.
Definition: MainWindow.h:361
-void SlotFileDecrypt()
Definition: MainWindowFileSlotFunction.cpp:292
-void create_actions()
Definition: MainWindowUI.cpp:35
-QAction * clean_double_line_breaks_act_
Definition: MainWindow.h:370
-QAction * sign_act_
Action to sign text.
Definition: MainWindow.h:367
-QMenu * view_menu_
Submenu for view operations.
Definition: MainWindow.h:334
-QAction * verify_act_
Action to verify text.
Definition: MainWindow.h:368
-QMenu * key_menu_
Submenu for key-operations.
Definition: MainWindow.h:333
+QAction * import_key_from_edit_act_
Action to import key from edit.
Definition: MainWindow.h:434
+void slot_show_key_details()
Definition: MainWindowSlotFunction.cpp:739
+void create_dock_windows()
Definition: MainWindowUI.cpp:604
+void SlotOpenFile(QString &path)
Definition: MainWindowSlotFunction.cpp:837
+void Init() noexcept
Definition: MainWindow.cpp:51
+QAction * close_tab_act_
Action to print.
Definition: MainWindow.h:426
+void SlotFileDecrypt()
Definition: MainWindowFileSlotFunction.cpp:287
+void create_actions()
Definition: MainWindowUI.cpp:37
+QAction * clean_double_line_breaks_act_
Definition: MainWindow.h:435
+QAction * sign_act_
Action to sign text.
Definition: MainWindow.h:432
+QMenu * view_menu_
Submenu for view operations.
Definition: MainWindow.h:399
+QAction * verify_act_
Action to verify text.
Definition: MainWindow.h:433
+QMenu * key_menu_
Submenu for key-operations.
Definition: MainWindow.h:398
void slot_open_key_management()
Definition: MainWindowSlotUI.cpp:53
-void closeEvent(QCloseEvent *event) override
Definition: MainWindow.cpp:269
-void create_status_bar()
Definition: MainWindowUI.cpp:521
-void slot_decrypt_verify()
Definition: MainWindowSlotFunction.cpp:513
-QToolBar * file_tool_bar_
Toolbar holding file actions.
Definition: MainWindow.h:342
-QMenu * crypt_menu_
Submenu for crypt-operations.
Definition: MainWindow.h:330
-void restore_settings()
Definition: MainWindow.cpp:164
-QAction * save_as_act_
Action to save file as.
Definition: MainWindow.h:359
-QAction * encrypt_sign_act_
Action to encrypt and sign text.
Definition: MainWindow.h:364
+void closeEvent(QCloseEvent *event) override
Definition: MainWindow.cpp:322
+void create_status_bar()
Definition: MainWindowUI.cpp:588
+void slot_decrypt_verify()
Definition: MainWindowSlotFunction.cpp:517
+QToolBar * file_tool_bar_
Toolbar holding file actions.
Definition: MainWindow.h:407
+QMenu * crypt_menu_
Submenu for crypt-operations.
Definition: MainWindow.h:395
+void restore_settings()
Definition: MainWindow.cpp:187
+QAction * save_as_act_
Action to save file as.
Definition: MainWindow.h:424
+QAction * encrypt_sign_act_
Action to encrypt and sign text.
Definition: MainWindow.h:429
void slot_disable_tab_actions(int number)
Definition: MainWindowSlotUI.cpp:61
-void SlotFileEncryptSign()
Definition: MainWindowFileSlotFunction.cpp:553
+void SlotFileEncryptSign()
Definition: MainWindowFileSlotFunction.cpp:538
void SlotSetRestartNeeded(int)
Definition: MainWindowSlotUI.cpp:184
void slot_open_file_tab()
Definition: MainWindowSlotUI.cpp:59
-QMenu * gpg_menu_
Submenu for help-operations.
Definition: MainWindow.h:331
-QAction * cut_act_
Action to cut text.
Definition: MainWindow.h:384
-void slot_encrypt_sign()
Definition: MainWindowSlotFunction.cpp:391
-QAction * cut_pgp_header_act_
Action for cutting the PGP header.
Definition: MainWindow.h:399
-QToolBar * key_tool_bar_
Toolbar holding key operations.
Definition: MainWindow.h:346
-QAction * browser_act_
Action to open file browser.
Definition: MainWindow.h:357
-QAction * zoom_in_act_
Action to zoom in.
Definition: MainWindow.h:390
-void slot_sign()
Definition: MainWindowSlotFunction.cpp:170
-QAction * new_tab_act_
Action to create new tab.
Definition: MainWindow.h:353
-void close_attachment_dock()
Definition: MainWindow.cpp:260
-void slot_version_upgrade(const SoftwareVersion &version)
Definition: MainWindowSlotFunction.cpp:662
-QAction * open_act_
Action to open file.
Definition: MainWindow.h:356
+QMenu * gpg_menu_
Submenu for help-operations.
Definition: MainWindow.h:396
+QAction * cut_act_
Action to cut text.
Definition: MainWindow.h:461
+void slot_encrypt_sign()
Definition: MainWindowSlotFunction.cpp:395
+QAction * cut_pgp_header_act_
Action for cutting the PGP header.
Definition: MainWindow.h:476
+QToolBar * key_tool_bar_
Toolbar holding key operations.
Definition: MainWindow.h:411
+void slot_copy_default_uid_to_clipboard()
Definition: MainWindowSlotFunction.cpp:713
+QAction * browser_act_
Action to open file browser.
Definition: MainWindow.h:422
+QAction * zoom_in_act_
Action to zoom in.
Definition: MainWindow.h:467
+void slot_sign()
Definition: MainWindowSlotFunction.cpp:174
+QAction * new_tab_act_
Action to create new tab.
Definition: MainWindow.h:418
+void close_attachment_dock()
Definition: MainWindow.cpp:313
+void slot_version_upgrade(const SoftwareVersion &version)
Definition: MainWindowSlotFunction.cpp:839
+QAction * open_act_
Action to open file.
Definition: MainWindow.h:421
void slot_import_key_from_edit()
Definition: MainWindowSlotUI.cpp:47
int get_restart_needed() const
return true, if restart is needed
Definition: MainWindowSlotUI.cpp:189
-QAction * find_act_
Action to find text.
Definition: MainWindow.h:387
-QAction * paste_act_
Action to paste text.
Definition: MainWindow.h:385
-QAction * check_update_act_
Action to open about dialog.
Definition: MainWindow.h:393
-QMenu * edit_menu_
Submenu for text-operations.
Definition: MainWindow.h:329
-QAction * zoom_out_act_
Action to zoom out.
Definition: MainWindow.h:391
-QAction * decrypt_verify_act_
Action to encrypt and sign text.
Definition: MainWindow.h:365
-QAction * copy_act_
Action to copy text.
Definition: MainWindow.h:382
-void slot_append_selected_keys()
Definition: MainWindowSlotFunction.cpp:606
-QAction * gnupg_act_
Action to open about dialog.
Definition: MainWindow.h:395
-void save_settings()
Definition: MainWindow.cpp:235
-TextEdit * edit_
Tabwidget holding the edit-windows.
Definition: MainWindow.h:327
+QAction * find_act_
Action to find text.
Definition: MainWindow.h:464
+QAction * paste_act_
Action to paste text.
Definition: MainWindow.h:462
+QAction * check_update_act_
Action to open about dialog.
Definition: MainWindow.h:470
+QMenu * edit_menu_
Submenu for text-operations.
Definition: MainWindow.h:394
+QAction * zoom_out_act_
Action to zoom out.
Definition: MainWindow.h:468
+QAction * decrypt_verify_act_
Action to encrypt and sign text.
Definition: MainWindow.h:430
+QAction * copy_act_
Action to copy text.
Definition: MainWindow.h:459
+void slot_append_selected_keys()
Definition: MainWindowSlotFunction.cpp:610
+QAction * gnupg_act_
Action to open about dialog.
Definition: MainWindow.h:472
+void save_settings()
Definition: MainWindow.cpp:292
+TextEdit * edit_
Tabwidget holding the edit-windows.
Definition: MainWindow.h:392
void slot_cut_pgp_header()
Definition: MainWindowSlotUI.cpp:160
void slot_add_pgp_header()
Definition: MainWindowSlotUI.cpp:146
-QToolButton * import_button_
Tool button for import dropdown menu in toolbar.
Definition: MainWindow.h:348
+QToolButton * import_button_
Tool button for import dropdown menu in toolbar.
Definition: MainWindow.h:413
void SetCryptoMenuStatus(CryptoMenu::OperationType type)
Definition: MainWindowSlotUI.cpp:191
void slot_open_settings_dialog()
Definition: MainWindowSlotUI.cpp:103
-QAction * switch_tab_down_act_
Action to switch tab down.
Definition: MainWindow.h:355
-QMenu * help_menu_
Submenu for help-operations.
Definition: MainWindow.h:332
-void SlotFileSign()
Definition: MainWindowFileSlotFunction.cpp:365
-QAction * switch_tab_up_act_
Action to switch tab up.
Definition: MainWindow.h:354
-QMenu * import_key_menu_
Submenu for import operations.
Definition: MainWindow.h:335
-QAction * print_act_
Action to print.
Definition: MainWindow.h:360
+QAction * switch_tab_down_act_
Action to switch tab down.
Definition: MainWindow.h:420
+QMenu * help_menu_
Submenu for help-operations.
Definition: MainWindow.h:397
+void SlotFileSign()
Definition: MainWindowFileSlotFunction.cpp:360
+QAction * switch_tab_up_act_
Action to switch tab up.
Definition: MainWindow.h:419
+QMenu * import_key_menu_
Submenu for import operations.
Definition: MainWindow.h:400
+QAction * print_act_
Action to print.
Definition: MainWindow.h:425
void create_attachment_dock()
-QAction * add_pgp_header_act_
Action for adding the PGP header.
Definition: MainWindow.h:400
-void SlotFileVerify()
Definition: MainWindowFileSlotFunction.cpp:460
-QAction * about_act_
Action to open about dialog.
Definition: MainWindow.h:392
+QAction * add_pgp_header_act_
Action for adding the PGP header.
Definition: MainWindow.h:477
+void SlotFileVerify()
Definition: MainWindowFileSlotFunction.cpp:450
+QAction * about_act_
Action to open about dialog.
Definition: MainWindow.h:469
+void slot_copy_key_id_to_clipboard()
Definition: MainWindowSlotFunction.cpp:726
void SlotFileEncrypt()
Definition: MainWindowFileSlotFunction.cpp:155
-void create_menus()
Definition: MainWindowUI.cpp:400
-QAction * undo_act_
Action to undo last action.
Definition: MainWindow.h:388
-QAction * decrypt_act_
Action to decrypt text.
Definition: MainWindow.h:366
-void slot_verify()
Definition: MainWindowSlotFunction.cpp:324
-void create_tool_bars()
Definition: MainWindowUI.cpp:472
+void create_menus()
Definition: MainWindowUI.cpp:465
+QAction * undo_act_
Action to undo last action.
Definition: MainWindow.h:465
+QAction * decrypt_act_
Action to decrypt text.
Definition: MainWindow.h:431
+void slot_verify()
Definition: MainWindowSlotFunction.cpp:328
+void create_tool_bars()
Definition: MainWindowUI.cpp:539
void slot_start_wizard()
Definition: MainWindowSlotUI.cpp:41
-QToolBar * crypt_tool_bar_
Toolbar holding crypt actions.
Definition: MainWindow.h:341
-QAction * start_wizard_act_
Action to open the wizard.
Definition: MainWindow.h:398
-QAction * save_act_
Action to save file.
Definition: MainWindow.h:358
-void SlotFileDecryptVerify()
Definition: MainWindowFileSlotFunction.cpp:684
-QToolBar * edit_tool_bar_
Toolbar holding edit actions.
Definition: MainWindow.h:343
-QAction * append_selected_keys_act_
Action to append selected keys to edit.
Definition: MainWindow.h:378
-QAction * quit_act_
Action to quit application.
Definition: MainWindow.h:362
-QAction * redo_act_
Action to redo last action.
Definition: MainWindow.h:389
-QAction * select_all_act_
Action to select whole text.
Definition: MainWindow.h:386
-QAction * show_key_details_act_
Action to open key-details dialog.
Definition: MainWindow.h:397
-void upload_key_to_server()
Definition: MainWindowSlotFunction.cpp:653
-QAction * encrypt_act_
Action to encrypt text.
Definition: MainWindow.h:363
-QAction * open_key_management_act_
Action to open key management.
Definition: MainWindow.h:381
-QDockWidget * key_list_dock_
Encrypt Dock.
Definition: MainWindow.h:349
-QAction * translate_act_
Action to open about dialog.
Definition: MainWindow.h:394
-void refresh_keys_from_key_server()
Definition: MainWindowSlotFunction.cpp:644
-void slot_encrypt()
Definition: MainWindowSlotFunction.cpp:48
-void slot_find()
Definition: MainWindowSlotFunction.cpp:591
-void slot_decrypt()
Definition: MainWindowSlotFunction.cpp:256
+QToolBar * crypt_tool_bar_
Toolbar holding crypt actions.
Definition: MainWindow.h:406
+QAction * start_wizard_act_
Action to open the wizard.
Definition: MainWindow.h:475
+QAction * save_act_
Action to save file.
Definition: MainWindow.h:423
+void SlotFileDecryptVerify()
Definition: MainWindowFileSlotFunction.cpp:664
+QToolBar * edit_tool_bar_
Toolbar holding edit actions.
Definition: MainWindow.h:408
+QAction * append_selected_keys_act_
Action to append selected keys to edit.
Definition: MainWindow.h:444
+QAction * quit_act_
Action to quit application.
Definition: MainWindow.h:427
+QAction * redo_act_
Action to redo last action.
Definition: MainWindow.h:466
+QAction * select_all_act_
Action to select whole text.
Definition: MainWindow.h:463
+QAction * show_key_details_act_
Action to open key-details dialog.
Definition: MainWindow.h:474
+void upload_key_to_server()
Definition: MainWindowSlotFunction.cpp:830
+QAction * encrypt_act_
Action to encrypt text.
Definition: MainWindow.h:428
+QAction * open_key_management_act_
Action to open key management.
Definition: MainWindow.h:458
+QDockWidget * key_list_dock_
Encrypt Dock.
Definition: MainWindow.h:414
+QAction * translate_act_
Action to open about dialog.
Definition: MainWindow.h:471
+void refresh_keys_from_key_server()
Definition: MainWindowSlotFunction.cpp:771
+void slot_encrypt()
Definition: MainWindowSlotFunction.cpp:52
+void slot_find()
Definition: MainWindowSlotFunction.cpp:595
+void slot_decrypt()
Definition: MainWindowSlotFunction.cpp:260
void slot_clean_double_line_breaks()
Definition: MainWindowSlotUI.cpp:136
-QMenu * file_menu_
Submenu for file-operations.
Definition: MainWindow.h:328
-QToolBar * special_edit_tool_bar_
Toolbar holding special edit actions.
Definition: MainWindow.h:345
-QMenu * steganography_menu_
Submenu for steganography operations.
Definition: MainWindow.h:340
-QAction * copy_mail_address_to_clipboard_act_
Definition: MainWindow.h:379
-void slot_copy_mail_address_to_clipboard()
Definition: MainWindowSlotFunction.cpp:619
-QAction * quote_act_
Action to quote text.
Definition: MainWindow.h:383
-QAction * open_settings_act_
Action to open settings dialog.
Definition: MainWindow.h:396
-QDockWidget * attachment_dock_
Attachment Dock.
Definition: MainWindow.h:350
+QMenu * file_menu_
Submenu for file-operations.
Definition: MainWindow.h:393
+QToolBar * special_edit_tool_bar_
Toolbar holding special edit actions.
Definition: MainWindow.h:410
+QMenu * steganography_menu_
Submenu for steganography operations.
Definition: MainWindow.h:405
+QAction * copy_mail_address_to_clipboard_act_
Definition: MainWindow.h:449
+void slot_copy_mail_address_to_clipboard()
Definition: MainWindowSlotFunction.cpp:700
+QAction * quote_act_
Action to quote text.
Definition: MainWindow.h:460
+QAction * open_settings_act_
Action to open settings dialog.
Definition: MainWindow.h:473
+QDockWidget * attachment_dock_
Attachment Dock.
Definition: MainWindow.h:415
TextEdit class.
Definition: TextEdit.h:41
Definition: FileReadTask.cpp:29
Definition: MainWindow.h:60
diff --git a/docs/html/ProxyConnectionTestThread_8h_source.html b/docs/html/ProxyConnectionTestTask_8h_source.html
similarity index 65%
rename from docs/html/ProxyConnectionTestThread_8h_source.html
rename to docs/html/ProxyConnectionTestTask_8h_source.html
index e5fbe7c2..7de8877b 100644
--- a/docs/html/ProxyConnectionTestThread_8h_source.html
+++ b/docs/html/ProxyConnectionTestTask_8h_source.html
@@ -5,7 +5,7 @@
-GpgFrontend Project: src/ui/thread/ProxyConnectionTestThread.h Source File
+GpgFrontend Project: src/ui/thread/ProxyConnectionTestTask.h Source File
@@ -63,7 +63,7 @@ $(function() {
@@ -83,7 +83,7 @@ $(document).ready(function(){initNavTree('ProxyConnectionTestThread_8h_source.ht
@@ -98,40 +98,42 @@ $(document).ready(function(){initNavTree('ProxyConnectionTestThread_8h_source.ht
-
+
-
-
53 QWidget* parent =
nullptr )
-
54 : QThread(parent), url_(std::move(url)), timeout_(timeout) {}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
70 void slot_process_network_reply(QNetworkReply* reply);
+
+
+
+
+
+
76 QNetworkAccessManager* network_manager_;
+
-
-
Definition: ProxyConnectionTestThread.h:42
-
void run() override
Definition: ProxyConnectionTestThread.cpp:29
-
ProxyConnectionTestThread(QString url, int timeout, QWidget *parent=nullptr)
Construct a new Proxy Connection Test Thread object.
Definition: ProxyConnectionTestThread.h:52
-
void SignalProxyConnectionTestResult(const QString &result)
-
Definition: ProxyConnectionTestThread.h:30
+
+
+
+
+
Definition: ProxyConnectionTestTask.h:42
+
void SignalProxyConnectionTestResult(const QString &result)
+
ProxyConnectionTestTask(QString url, int timeout)
Construct a new Proxy Connection Test Thread object.
Definition: ProxyConnectionTestTask.cpp:29
+
Definition: ProxyConnectionTestTask.h:30
Definition: FileReadTask.cpp:29
diff --git a/docs/html/SettingsGeneral_8h_source.html b/docs/html/SettingsGeneral_8h_source.html
index 3bd3741c..4d0b85a8 100644
--- a/docs/html/SettingsGeneral_8h_source.html
+++ b/docs/html/SettingsGeneral_8h_source.html
@@ -128,24 +128,17 @@ $(document).ready(function(){initNavTree('SettingsGeneral_8h_source.html',''); i
95 #ifdef MULTI_LANG_SUPPORT
100 void slot_language_changed();
-
- 106 void slot_update_custom_key_database_path_label(
int state);
-
- 112 void slot_update_custom_gnupg_install_path_label(
int state);
-
- 118 void slot_gnupg_stettings_changed();
-
-
-
-
-
-
+
+
+
+
+
Definition: SettingsGeneral.h:43
GeneralTab(QWidget *parent=nullptr)
Construct a new General Tab object.
Definition: SettingsGeneral.cpp:42
-void SetSettings()
Set the Settings object.
Definition: SettingsGeneral.cpp:178
+void SetSettings()
Set the Settings object.
Definition: SettingsGeneral.cpp:118
void SignalRestartNeeded(bool needed)
void SignalDeepRestartNeeded(bool needed)
-Definition: KeyList.h:152
+Definition: KeyList.h:170
Definition: FileReadTask.cpp:29
diff --git a/docs/html/SettingsKeyServer_8h_source.html b/docs/html/SettingsKeyServer_8h_source.html
index 0b8aa9be..0ca4d379 100644
--- a/docs/html/SettingsKeyServer_8h_source.html
+++ b/docs/html/SettingsKeyServer_8h_source.html
@@ -134,7 +134,7 @@ $(document).ready(function(){initNavTree('SettingsKeyServer_8h_source.html','');
Definition: SettingsKeyServer.h:41
void SetSettings()
Set the Settings object.
Definition: SettingsKeyServer.cpp:117
void SignalRestartNeeded(bool needed)
-void contextMenuEvent(QContextMenuEvent *event) override
Definition: SettingsKeyServer.cpp:289
+void contextMenuEvent(QContextMenuEvent *event) override
Definition: SettingsKeyServer.cpp:294
KeyserverTab(QWidget *parent=nullptr)
Construct a new Keyserver Tab object.
Definition: SettingsKeyServer.cpp:40
Definition: FileReadTask.cpp:29
diff --git a/docs/html/SettingsNetwork_8h_source.html b/docs/html/SettingsNetwork_8h_source.html
index 908cb99f..9334bde6 100644
--- a/docs/html/SettingsNetwork_8h_source.html
+++ b/docs/html/SettingsNetwork_8h_source.html
@@ -123,10 +123,10 @@ $(document).ready(function(){initNavTree('SettingsNetwork_8h_source.html',''); i
Definition: SettingsNetwork.h:37
-void switch_ui_proxy_type(const QString &type_text)
Definition: SettingsNetwork.cpp:313
+void switch_ui_proxy_type(const QString &type_text)
Definition: SettingsNetwork.cpp:360
NetworkTab(QWidget *parent=nullptr)
Construct a new Network Tab object.
Definition: SettingsNetwork.cpp:35
-void SetSettings()
Set the Settings object.
Definition: SettingsNetwork.cpp:72
-void switch_ui_enabled(bool enabled)
Definition: SettingsNetwork.cpp:303
+void SetSettings()
Set the Settings object.
Definition: SettingsNetwork.cpp:99
+void switch_ui_enabled(bool enabled)
Definition: SettingsNetwork.cpp:350
Definition: FileReadTask.cpp:29
diff --git a/docs/html/SignalStation_8h_source.html b/docs/html/SignalStation_8h_source.html
index bfd0d528..47b0d3c6 100644
--- a/docs/html/SignalStation_8h_source.html
+++ b/docs/html/SignalStation_8h_source.html
@@ -107,19 +107,23 @@ $(document).ready(function(){initNavTree('SignalStation_8h_source.html',''); ini
64 void SignalKeyDatabaseRefreshDone();
-
-
-
-
-
- 87 void SignalUserInputPassphraseDone(QString passparase);
+ 70 void SignalUIRefresh();
+
+
+
+
+
- 93 void SignalNeedUserInputPassphrase();
-
-
-
-
-
+ 93 void SignalUserInputPassphraseDone(QString passparase);
+
+ 99 void SignalNeedUserInputPassphrase();
+
+ 105 void SignalRestartApplication(
int );
+
+
+
+
+
Definition: SignalStation.h:41
void SignalRefreshStatusBar(const QString &message, int timeout)
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
Definition: GeneralDialog.h:35
-Definition: KeyList.h:152
+Definition: KeyList.h:170
Definition: SignersPicker.h:42
SignersPicker(QWidget *parent=nullptr)
Construct a new Signers Picker object.
Definition: SignersPicker.cpp:34
-GpgFrontend::KeyIdArgsListPtr GetCheckedSigners()
Get the Checked Signers object.
Definition: SignersPicker.cpp:77
-bool GetStatus() const
Definition: SignersPicker.cpp:81
+GpgFrontend::KeyIdArgsListPtr GetCheckedSigners()
Get the Checked Signers object.
Definition: SignersPicker.cpp:76
+bool GetStatus() const
Definition: SignersPicker.cpp:80
Definition: FileReadTask.cpp:29
diff --git a/docs/html/SubkeyGenerateDialog_8h_source.html b/docs/html/SubkeyGenerateDialog_8h_source.html
index c8dc57ed..f40ab9dc 100644
--- a/docs/html/SubkeyGenerateDialog_8h_source.html
+++ b/docs/html/SubkeyGenerateDialog_8h_source.html
@@ -123,56 +123,57 @@ $(document).ready(function(){initNavTree('SubkeyGenerateDialog_8h_source.html','
76 QDateTime max_date_time_;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+ 77 bool use_pinentry_ =
false ;
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Definition: GeneralDialog.h:35
Definition: SubkeyGenerateDialog.h:40
QCheckBox * no_pass_phrase_check_box_
Checkbox, if key should expire.
Definition: SubkeyGenerateDialog.h:72
-QGroupBox * create_basic_info_group_box()
Create a basic info group box object.
Definition: SubkeyGenerateDialog.cpp:126
-void slot_authentication_box_changed(int state)
Definition: SubkeyGenerateDialog.cpp:367
-void slot_encryption_box_changed(int state)
Definition: SubkeyGenerateDialog.cpp:343
-void slot_expire_box_changed()
Definition: SubkeyGenerateDialog.cpp:202
-void refresh_widgets_state()
Definition: SubkeyGenerateDialog.cpp:210
-void slot_activated_key_type(int index)
Definition: SubkeyGenerateDialog.cpp:375
+QGroupBox * create_basic_info_group_box()
Create a basic info group box object.
Definition: SubkeyGenerateDialog.cpp:124
+void slot_authentication_box_changed(int state)
Definition: SubkeyGenerateDialog.cpp:370
+void slot_encryption_box_changed(int state)
Definition: SubkeyGenerateDialog.cpp:346
+void slot_expire_box_changed()
Definition: SubkeyGenerateDialog.cpp:204
+void refresh_widgets_state()
Definition: SubkeyGenerateDialog.cpp:212
+void slot_activated_key_type(int index)
Definition: SubkeyGenerateDialog.cpp:378
std::vector< QCheckBox * > key_usage_check_boxes_
ENCR, SIGN, CERT, AUTH.
Definition: SubkeyGenerateDialog.h:75
QLabel * error_label_
Label containing error message.
Definition: SubkeyGenerateDialog.h:67
-void slot_certification_box_changed(int state)
Definition: SubkeyGenerateDialog.cpp:359
+void slot_certification_box_changed(int state)
Definition: SubkeyGenerateDialog.cpp:362
SubkeyGenerateDialog(const KeyId &key_id, QWidget *parent)
Construct a new Subkey Generate Dialog object.
Definition: SubkeyGenerateDialog.cpp:40
-void set_signal_slot()
Set the signal slot object.
Definition: SubkeyGenerateDialog.cpp:174
-QGroupBox * create_key_usage_group_box()
Create a key usage group box object.
Definition: SubkeyGenerateDialog.cpp:93
+void set_signal_slot()
Set the signal slot object.
Definition: SubkeyGenerateDialog.cpp:176
+QGroupBox * create_key_usage_group_box()
Create a key usage group box object.
Definition: SubkeyGenerateDialog.cpp:91
QDateTimeEdit * date_edit_
Date edit for expiration date.
Definition: SubkeyGenerateDialog.h:70
QSpinBox * key_size_spin_box_
Spinbox for the keys size (in bit)
Definition: SubkeyGenerateDialog.h:68
-void slot_key_gen_accept()
Definition: SubkeyGenerateDialog.cpp:257
+void slot_key_gen_accept()
Definition: SubkeyGenerateDialog.cpp:259
QDialogButtonBox * button_box_
Box for standard buttons.
Definition: SubkeyGenerateDialog.h:66
QComboBox * key_type_combo_box_
Combobox for Key tpe.
Definition: SubkeyGenerateDialog.h:69
-void slot_signing_box_changed(int state)
Definition: SubkeyGenerateDialog.cpp:351
+void slot_signing_box_changed(int state)
Definition: SubkeyGenerateDialog.cpp:354
QCheckBox * expire_check_box_
Checkbox, if key should expire.
Definition: SubkeyGenerateDialog.h:71
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
-
-
- 164 void slotNewHelpTab (
const QString& title,
const QString& path)
const ;
-
-
-
-
+ 157 void SlotNewTabWithContent(std::string title,
const std::string& content);
+
+
+
+ 170 void slotNewHelpTab (
const QString& title,
const QString& path)
const ;
+
+
-
+
-
+
-
+
-
- 196 uint text_page_data_modified_count_ = 0;
-
-
-
-
-
-
-
-
-
- 217 void slot_file_page_path_changed(
const QString& path)
const ;
+
+
+
+ 202 uint text_page_data_modified_count_ = 0;
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+ 223 void slot_file_page_path_changed(
const QString& path)
const ;
+
+
+
+
+
+
+
+
+
+
+
+
-
+
- 266 void SlotZoomIn()
const ;
+
- 272 void SlotZoomOut()
const ;
+ 272 void SlotZoomIn()
const ;
-
+ 278 void SlotZoomOut()
const ;
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
Definition: FilePage.h:43
Class for handling a single tab of the tabwidget.
Definition: PlainTextEditorPage.h:45
TextEdit class.
Definition: TextEdit.h:41
-bool SlotSaveAs()
Definition: TextEdit.cpp:201
-int TabCount() const
Definition: TextEdit.cpp:372
-void slot_remove_tab(int index)
Definition: TextEdit.cpp:225
-void SlotOpen()
Definition: TextEdit.cpp:120
-void slot_save_status_to_cache_for_revovery()
Definition: TextEdit.cpp:601
-void SlotCopy() const
Definition: TextEdit.cpp:527
-void slotNewHelpTab(const QString &title, const QString &path) const
Definition: TextEdit.cpp:73
-bool MaybeSaveAnyTab()
Definition: TextEdit.cpp:304
-PlainTextEditorPage * SlotCurPageTextEdit() const
Definition: TextEdit.cpp:374
-void SlotUndo() const
Definition: TextEdit.cpp:545
-void SlotSwitchTabDown() const
Definition: TextEdit.cpp:489
-void SlotNewTab()
Definition: TextEdit.cpp:59
-void SlotOpenFile(const QString &path)
Definition: TextEdit.cpp:89
-bool save_file(const QString &fileName)
Saves the content of currentTab to the file filename.
Definition: TextEdit.cpp:146
-void SlotQuote() const
Definition: TextEdit.cpp:385
-void SlotSelectAll() const
select all in current text page
Definition: TextEdit.cpp:581
-FilePage * SlotCurPageFileTreeView() const
Definition: TextEdit.cpp:380
-void LoadFile(const QString &fileName)
Definition: TextEdit.cpp:415
-int count_page_
int containing the number of added tabs
Definition: TextEdit.h:213
-PlainTextEditorPage * CurTextPage() const
Definition: TextEdit.cpp:359
-QHash< int, QString > UnsavedDocuments() const
Definition: TextEdit.cpp:500
-bool maybe_save_current_tab(bool askToSave)
Definition: TextEdit.cpp:258
-void SlotCloseTab()
Definition: TextEdit.cpp:218
-void SlotPaste() const
Definition: TextEdit.cpp:537
-FilePage * CurFilePage() const
Definition: TextEdit.cpp:363
-void SlotShowModified(bool) const
Definition: TextEdit.cpp:462
-void SlotSave()
Definition: TextEdit.cpp:130
-void SlotPrint()
Definition: TextEdit.cpp:440
-void SlotCut() const
Definition: TextEdit.cpp:519
-void SlotNewFileTab() const
Definition: TextEdit.cpp:79
-void SlotRedo() const
redo last change in current text page
Definition: TextEdit.cpp:553
-void SlotSwitchTabUp() const
Definition: TextEdit.cpp:482
-void SlotFillTextEditWithText(const QString &text) const
Definition: TextEdit.cpp:407
-static QString stripped_name(const QString &full_file_name)
Definition: TextEdit.cpp:436
+bool SlotSaveAs()
Definition: TextEdit.cpp:231
+int TabCount() const
Definition: TextEdit.cpp:402
+void slot_remove_tab(int index)
Definition: TextEdit.cpp:255
+void SlotOpen()
Definition: TextEdit.cpp:150
+void slot_save_status_to_cache_for_revovery()
Definition: TextEdit.cpp:631
+void SlotCopy() const
Definition: TextEdit.cpp:557
+void slotNewHelpTab(const QString &title, const QString &path) const
Definition: TextEdit.cpp:103
+bool MaybeSaveAnyTab()
Definition: TextEdit.cpp:334
+PlainTextEditorPage * SlotCurPageTextEdit() const
Definition: TextEdit.cpp:404
+void SlotUndo() const
Definition: TextEdit.cpp:575
+void SlotSwitchTabDown() const
Definition: TextEdit.cpp:519
+void SlotNewTab()
Definition: TextEdit.cpp:62
+void SlotOpenFile(const QString &path)
Definition: TextEdit.cpp:119
+bool save_file(const QString &fileName)
Saves the content of currentTab to the file filename.
Definition: TextEdit.cpp:176
+void SlotQuote() const
Definition: TextEdit.cpp:415
+void SlotSelectAll() const
select all in current text page
Definition: TextEdit.cpp:611
+FilePage * SlotCurPageFileTreeView() const
Definition: TextEdit.cpp:410
+void LoadFile(const QString &fileName)
Definition: TextEdit.cpp:445
+int count_page_
int containing the number of added tabs
Definition: TextEdit.h:219
+PlainTextEditorPage * CurTextPage() const
Definition: TextEdit.cpp:389
+QHash< int, QString > UnsavedDocuments() const
Definition: TextEdit.cpp:530
+bool maybe_save_current_tab(bool askToSave)
Definition: TextEdit.cpp:288
+void SlotCloseTab()
Definition: TextEdit.cpp:248
+void SlotPaste() const
Definition: TextEdit.cpp:567
+FilePage * CurFilePage() const
Definition: TextEdit.cpp:393
+void SlotShowModified(bool) const
Definition: TextEdit.cpp:492
+void SlotSave()
Definition: TextEdit.cpp:160
+void SlotPrint()
Definition: TextEdit.cpp:470
+void SlotCut() const
Definition: TextEdit.cpp:549
+void SlotNewFileTab() const
Definition: TextEdit.cpp:109
+void SlotRedo() const
redo last change in current text page
Definition: TextEdit.cpp:583
+void SlotSwitchTabUp() const
Definition: TextEdit.cpp:512
+void SlotFillTextEditWithText(const QString &text) const
Definition: TextEdit.cpp:437
+static QString stripped_name(const QString &full_file_name)
Definition: TextEdit.cpp:466
Definition: FileReadTask.cpp:29
diff --git a/docs/html/UserInterfaceUtils_8h_source.html b/docs/html/UserInterfaceUtils_8h_source.html
index ce409c1f..108ebca3 100644
--- a/docs/html/UserInterfaceUtils_8h_source.html
+++ b/docs/html/UserInterfaceUtils_8h_source.html
@@ -92,114 +92,129 @@ $(document).ready(function(){initNavTree('UserInterfaceUtils_8h_source.html','')
32 #include "core/GpgModel.h"
33 #include "core/function/result_analyse/GpgVerifyResultAnalyse.h"
- 34 #include "ui/GpgFrontendUI.h"
-
-
- 37 class GpgResultAnalyse;
-
-
-
-
- 42 class InfoBoardWidget;
-
-
-
- 54 GpgError error,
const GpgVerifyResult& verify_result);
-
-
- 63 QWidget* parent,
const GpgVerifyResultAnalyse& verify_res);
-
-
- 73 const std::string& report_text);
-
-
- 83 const GpgResultAnalyse& result_analyse);
-
-
- 94 const GpgResultAnalyse& result_analyse_a,
- 95 const GpgResultAnalyse& result_analyse_b);
-
-
- 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 );
-
-
- 118 const std::string& key_server);
-
-
-
-
- 131 using ImportCallbackFunctiopn = std::function<void(
- 132 const std::string&,
const std::string&,
size_t ,
size_t )>;
-
-
-
-
-
-
- 152 void SignalKeyStatusUpdated();
+ 34 #include "core/model/GpgKey.h"
+ 35 #include "ui/GpgFrontendUI.h"
+
+
+ 38 class GpgResultAnalyse;
+
+
+
+
+ 43 class InfoBoardWidget;
+
+
+
+ 55 GpgError error,
const GpgVerifyResult& verify_result);
+
+
+ 64 QWidget* parent,
const GpgVerifyResultAnalyse& verify_res);
+
+
+ 74 const std::string& report_text);
+
+
+ 84 const GpgResultAnalyse& result_analyse);
+
+
+ 95 const GpgResultAnalyse& result_analyse_a,
+ 96 const GpgResultAnalyse& result_analyse_b);
+
+
+ 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 );
+
+
+ 119 const std::string& key_server);
+
+
+
+
+ 132 using ImportCallbackFunctiopn = std::function<void(
+ 133 const std::string&,
const std::string&,
size_t ,
size_t )>;
+
+
+
+
+
+ 152 bool isApplicationNeedRestart();
- 158 void SignalGnupgNotInstall();
+ 158 bool KeyExistsinFavouriteList(
const GpgKey & key);
-
+ 164 void AddKey2Favourtie(
const GpgKey & key);
- 170 void SignalNeedUserInputPassphrase();
+ 170 void RemoveKeyFromFavourite(
const GpgKey & key);
- 176 void SignalUserInputPassphraseDone(QString passphrase);
-
-
- 185 void SlotImportKeys (QWidget* parent,
const std::string& in_buffer);
-
-
-
-
-
-
-
-
- 216 const GpgFrontend::KeyIdArgsList& key_ids,
- 217 const GpgFrontend::UI::CommonUtils::ImportCallbackFunctiopn& callback);
-
-
- 226 const QStringList& arguments,
- 227 const std::function<
void (QProcess*)>& interact_func);
-
-
- 236 const std::function<
void (QProcess*)>& interact_func);
-
-
-
-
-
- 250 void slot_popup_passphrase_input_dialog();
-
-
- 253 static std::unique_ptr<CommonUtils> instance_;
-
-
-
-
-
-Definition: UserInterfaceUtils.h:124
-void SlotImportKeyFromFile(QWidget *parent)
Definition: UserInterfaceUtils.cpp:194
-void SlotImportKeyFromClipboard(QWidget *parent)
Definition: UserInterfaceUtils.cpp:215
+
+ 177 void SignalKeyStatusUpdated();
+
+ 183 void SignalGnupgNotInstall();
+
+
+
+ 195 void SignalNeedUserInputPassphrase();
+
+ 201 void SignalUserInputPassphraseDone(QString passphrase);
+
+ 207 void SignalRestartApplication(
int );
+
+
+ 216 void SlotImportKeys (QWidget* parent,
const std::string& in_buffer);
+
+
+
+
+
+
+
+
+ 247 const GpgFrontend::KeyIdArgsList& key_ids,
+ 248 const GpgFrontend::UI::CommonUtils::ImportCallbackFunctiopn& callback);
+
+
+ 257 const QStringList& arguments,
+ 258 const std::function<
void (QProcess*)>& interact_func);
+
+
+ 267 const std::function<
void (QProcess*)>& interact_func);
+
+ 273 void SlotRestartApplication(
int );
+
+
+
+
+
+ 287 void slot_popup_passphrase_input_dialog();
+
+
+ 290 static std::unique_ptr<CommonUtils> instance_;
+ 291 bool application_need_to_restart_at_once_ =
false ;
+
+
+
+
+
+
+Definition: UserInterfaceUtils.h:125
+void SlotImportKeyFromFile(QWidget *parent)
Definition: UserInterfaceUtils.cpp:231
+void SlotImportKeyFromClipboard(QWidget *parent)
Definition: UserInterfaceUtils.cpp:252
void SignalKeyDatabaseRefreshDone()
emit when the key database is refreshed
-void SlotImportKeys(QWidget *parent, const std::string &in_buffer)
Definition: UserInterfaceUtils.cpp:186
-CommonUtils()
Construct a new Common Utils object.
Definition: UserInterfaceUtils.cpp:150
-void SlotExecuteCommand(const std::string &cmd, const QStringList &arguments, const std::function< void(QProcess *)> &interact_func)
Definition: UserInterfaceUtils.cpp:221
-void slot_update_key_status()
update the key status when signal is emitted
Definition: UserInterfaceUtils.cpp:400
-static CommonUtils * GetInstance()
Get the Instance object.
Definition: UserInterfaceUtils.cpp:143
-void SlotImportKeyFromKeyServer(QWidget *parent)
Definition: UserInterfaceUtils.cpp:210
-void SlotExecuteGpgCommand(const QStringList &arguments, const std::function< void(QProcess *)> &interact_func)
Definition: UserInterfaceUtils.cpp:253
+void SlotImportKeys(QWidget *parent, const std::string &in_buffer)
Definition: UserInterfaceUtils.cpp:223
+CommonUtils()
Construct a new Common Utils object.
Definition: UserInterfaceUtils.cpp:156
+void SlotExecuteCommand(const std::string &cmd, const QStringList &arguments, const std::function< void(QProcess *)> &interact_func)
Definition: UserInterfaceUtils.cpp:258
+void slot_update_key_status()
update the key status when signal is emitted
Definition: UserInterfaceUtils.cpp:435
+static CommonUtils * GetInstance()
Get the Instance object.
Definition: UserInterfaceUtils.cpp:149
+void SlotImportKeyFromKeyServer(QWidget *parent)
Definition: UserInterfaceUtils.cpp:247
+void SlotExecuteGpgCommand(const QStringList &arguments, const std::function< void(QProcess *)> &interact_func)
Definition: UserInterfaceUtils.cpp:290
Definition: FileReadTask.cpp:29
-void refresh_info_board(InfoBoardWidget *info_board, int status, const std::string &report_text)
Definition: UserInterfaceUtils.cpp:86
-void process_operation(QWidget *parent, const std::string &waiting_title, const Thread::Task::TaskRunnable func, const Thread::Task::TaskCallback callback, Thread::Task::DataObjectPtr data_object)
Definition: UserInterfaceUtils.cpp:116
-void show_verify_details(QWidget *parent, InfoBoardWidget *info_board, GpgError error, const GpgVerifyResult &verify_result)
Definition: UserInterfaceUtils.cpp:54
-void import_unknown_key_from_keyserver(QWidget *parent, const GpgVerifyResultAnalyse &verify_res)
Definition: UserInterfaceUtils.cpp:63
+void refresh_info_board(InfoBoardWidget *info_board, int status, const std::string &report_text)
Definition: UserInterfaceUtils.cpp:89
+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
+void show_verify_details(QWidget *parent, InfoBoardWidget *info_board, GpgError error, const GpgVerifyResult &verify_result)
Definition: UserInterfaceUtils.cpp:57
+void import_unknown_key_from_keyserver(QWidget *parent, const GpgVerifyResultAnalyse &verify_res)
Definition: UserInterfaceUtils.cpp:66
void import_key_from_keyserver(QWidget *parent, const std::string &key_id, const std::string &key_server)
-void process_result_analyse(TextEdit *edit, InfoBoardWidget *info_board, const GpgResultAnalyse &result_analyse)
Definition: UserInterfaceUtils.cpp:98
+void process_result_analyse(TextEdit *edit, InfoBoardWidget *info_board, const GpgResultAnalyse &result_analyse)
Definition: UserInterfaceUtils.cpp:101
Definition: CoreCommonUtil.cpp:31
diff --git a/docs/html/VerifyDetailsDialog_8h_source.html b/docs/html/VerifyDetailsDialog_8h_source.html
index d2b3e6b2..662a1bd0 100644
--- a/docs/html/VerifyDetailsDialog_8h_source.html
+++ b/docs/html/VerifyDetailsDialog_8h_source.html
@@ -106,20 +106,18 @@ $(document).ready(function(){initNavTree('VerifyDetailsDialog_8h_source.html',''
-
- 64 QHBoxLayout* main_layout_;
-
- 66 QByteArray* input_data_{};
- 67 QByteArray* input_signature_{};
- 68 QDialogButtonBox* button_box_{};
- 69 GpgVerifyResult m_result_;
-
-
-
-
-
-
-Definition: KeyList.h:152
+ 63 QHBoxLayout* main_layout_;
+
+ 65 QByteArray* input_data_{};
+ 66 QByteArray* input_signature_{};
+ 67 QDialogButtonBox* button_box_{};
+ 68 GpgVerifyResult m_result_;
+
+
+
+
+
+
Definition: VerifyDetailsDialog.h:41
VerifyDetailsDialog(QWidget *parent, GpgError error, GpgVerifyResult result)
Construct a new Verify Details Dialog object.
Definition: VerifyDetailsDialog.cpp:35
Definition: FileReadTask.cpp:29
diff --git a/docs/html/VerifyKeyDetailBox_8h_source.html b/docs/html/VerifyKeyDetailBox_8h_source.html
index dcc6f308..35ac41d5 100644
--- a/docs/html/VerifyKeyDetailBox_8h_source.html
+++ b/docs/html/VerifyKeyDetailBox_8h_source.html
@@ -114,9 +114,9 @@ $(document).ready(function(){initNavTree('VerifyKeyDetailBox_8h_source.html','')
Definition: GpgSignature.h:43
Definition: VerifyKeyDetailBox.h:40
-QGridLayout * create_key_info_grid(const GpgSignature &signature)
Create a key info grid object.
Definition: VerifyKeyDetailBox.cpp:166
+QGridLayout * create_key_info_grid(const GpgSignature &signature)
Create a key info grid object.
Definition: VerifyKeyDetailBox.cpp:173
std::string fpr_
fingerprint of the key
Definition: VerifyKeyDetailBox.h:68
-VerifyKeyDetailBox(const GpgSignature &signature, QWidget *parent)
Construct a new Verify Key Detail Box object.
Definition: VerifyKeyDetailBox.cpp:35
+VerifyKeyDetailBox(const GpgSignature &signature, QWidget *parent)
Construct a new Verify Key Detail Box object.
Definition: VerifyKeyDetailBox.cpp:36
Definition: FileReadTask.cpp:29
diff --git a/docs/html/WaitingDialog_8h_source.html b/docs/html/WaitingDialog_8h_source.html
index d3105db5..72cfe699 100644
--- a/docs/html/WaitingDialog_8h_source.html
+++ b/docs/html/WaitingDialog_8h_source.html
@@ -91,20 +91,22 @@ $(document).ready(function(){initNavTree('WaitingDialog_8h_source.html',''); ini
30 #define __UI_WAITING_DIALOG_H__
32 #include "ui/GpgFrontendUI.h"
-
-
-
-
-
-
-
-
-
-
-
-
-Definition: WaitingDialog.h:40
-WaitingDialog(const QString &title, QWidget *parent)
Construct a new Waiting Dialog object.
Definition: WaitingDialog.cpp:33
+ 33 #include "ui/dialog/GeneralDialog.h"
+
+
+
+
+
+
+
+
+
+
+
+
+Definition: GeneralDialog.h:35
+Definition: WaitingDialog.h:41
+WaitingDialog(const QString &title, QWidget *parent)
Construct a new Waiting Dialog object.
Definition: WaitingDialog.cpp:35
Definition: FileReadTask.cpp:29
diff --git a/docs/html/Wizard_8h_source.html b/docs/html/Wizard_8h_source.html
index ae16f049..58a730a1 100644
--- a/docs/html/Wizard_8h_source.html
+++ b/docs/html/Wizard_8h_source.html
@@ -170,18 +170,18 @@ $(document).ready(function(){initNavTree('Wizard_8h_source.html',''); initResiza
-int nextId() const override
Definition: Wizard.cpp:178
-ChoosePage(QWidget *parent=nullptr)
Construct a new Choose Page object.
Definition: Wizard.cpp:123
-void slot_jump_page(const QString &page)
Definition: Wizard.cpp:180
+int nextId() const override
Definition: Wizard.cpp:177
+ChoosePage(QWidget *parent=nullptr)
Construct a new Choose Page object.
Definition: Wizard.cpp:118
+void slot_jump_page(const QString &page)
Definition: Wizard.cpp:179
-int nextId() const override
Definition: Wizard.cpp:265
-ConclusionPage(QWidget *parent=nullptr)
Construct a new Conclusion Page object.
Definition: Wizard.cpp:229
+int nextId() const override
Definition: Wizard.cpp:264
+ConclusionPage(QWidget *parent=nullptr)
Construct a new Conclusion Page object.
Definition: Wizard.cpp:228
-int nextId() const override
Definition: Wizard.cpp:121
-IntroPage(QWidget *parent=nullptr)
Construct a new Intro Page object.
Definition: Wizard.cpp:84
+int nextId() const override
Definition: Wizard.cpp:116
+IntroPage(QWidget *parent=nullptr)
Construct a new Intro Page object.
Definition: Wizard.cpp:79
-KeyGenPage(QWidget *parent=nullptr)
Construct a new Key Gen Page object.
Definition: Wizard.cpp:189
-int nextId() const override
Definition: Wizard.cpp:222
+KeyGenPage(QWidget *parent=nullptr)
Construct a new Key Gen Page object.
Definition: Wizard.cpp:188
+int nextId() const override
Definition: Wizard.cpp:221
Wizard(QWidget *parent=nullptr)
Construct a new Wizard object.
Definition: Wizard.cpp:35
void SignalOpenHelp(QString page)
diff --git a/docs/html/annotated.html b/docs/html/annotated.html
index f68f1f59..f6279b6c 100644
--- a/docs/html/annotated.html
+++ b/docs/html/annotated.html
@@ -100,117 +100,120 @@ $(document).ready(function(){initNavTree('annotated.html',''); initResizable();
C FileReadTask
C VerifyDetailsDialog
C GeneralDialog
- C InfoTab Class containing the main tab of about dialog
- C TranslatorsTab Class containing the translator tab of about dialog
- C UpdateTab Class containing the main tab of about dialog
- C AboutDialog Class for handling the about dialog
- C GnupgTab
- C ExportKeyPackageDialog
- C KeyImportDetailDialog
- C KeyServerImportDialog
- C KeyUploadDialog
- C KeyGenDialog
- C SubkeyGenerateDialog
- C KeyDetailsDialog
- C KeyNewUIDDialog
- C KeyPairDetailTab
- C KeyPairOperaTab
- C KeyPairSubkeyTab
- C KeyPairUIDTab
- C KeySetExpireDateDialog
- C KeyUIDSignDialog
- C QuitDialog
- C AdvancedTab
- C AppearanceTab
- C SettingsDialog
- C GeneralTab
- C KeyserverTab
- C NetworkTab
- C SignersPicker
- C WaitingDialog
- C Wizard
- C IntroPage
- C ChoosePage
- C KeyGenPage
- C ConclusionPage
- C GpgFrontendApplication
- C GeneralMainWindow
- C KeyMgmt
- ► C MainWindow
- C CryptoMenu
- C SignalStation
- C SettingsObject The SettingsObject class This class is used to store settings for the application securely
- C SoftwareVersion
- C KeyServerImportTask
- C KeyServerSearchTask
- C ListedKeyServerTestTask
- C ProxyConnectionTestThread
- C VersionCheckTask
- C CommonUtils
- C FilePage
- C FindWidget Class for handling the find widget shown at buttom of a textedit-page
- C HelpPage
- C InfoBoardWidget Class for handling the verify label shown at bottom of a textedit-page
- C KeyListRow
- C KeyListColumn
- C KeyMenuAbility
- C KeyTable
- C KeyList
- C PlainTextEditorPage Class for handling a single tab of the tabwidget
- C TextEdit TextEdit class
- C TOFUInfoPage
- C VerifyKeyDetailBox
+ C GnuPGControllerDialog
+ C InfoTab Class containing the main tab of about dialog
+ C TranslatorsTab Class containing the translator tab of about dialog
+ C UpdateTab Class containing the main tab of about dialog
+ C AboutDialog Class for handling the about dialog
+ C GnupgTab
+ C ExportKeyPackageDialog
+ C KeyImportDetailDialog
+ C KeyServerImportDialog
+ C KeyUploadDialog
+ C KeyGenDialog
+ C SubkeyGenerateDialog
+ C KeyDetailsDialog
+ C KeyNewUIDDialog
+ C KeyPairDetailTab
+ C KeyPairOperaTab
+ C KeyPairSubkeyTab
+ C KeyPairUIDTab
+ C KeySetExpireDateDialog
+ C KeyUIDSignDialog
+ C QuitDialog
+ C AdvancedTab
+ C AppearanceTab
+ C SettingsDialog
+ C GeneralTab
+ C KeyserverTab
+ C NetworkTab
+ C SignersPicker
+ C WaitingDialog
+ C Wizard
+ C IntroPage
+ C ChoosePage
+ C KeyGenPage
+ C ConclusionPage
+ C GpgFrontendApplication
+ C GeneralMainWindow
+ C KeyMgmt
+ ► C MainWindow
+ C CryptoMenu
+ C SignalStation
+ C SettingsObject The SettingsObject class This class is used to store settings for the application securely
+ C SoftwareVersion
+ C KeyServerImportTask
+ C KeyServerSearchTask
+ C ListedKeyServerTestTask
+ C ProxyConnectionTestTask
+ C VersionCheckTask
+ C CommonUtils
+ C FilePage
+ C FindWidget Class for handling the find widget shown at buttom of a textedit-page
+ C HelpPage
+ C InfoBoardWidget Class for handling the verify label shown at bottom of a textedit-page
+ C KeyListRow
+ C KeyListColumn
+ C KeyMenuAbility
+ C KeyTable
+ C KeyList
+ C PlainTextEditorPage Class for handling a single tab of the tabwidget
+ C TextEdit TextEdit class
+ C TOFUInfoPage
+ C VerifyKeyDetailBox
C CoreCommonUtil
C ArchiveStruct
C ArchiveFileOperator
- C CacheManager
- C CharsetOperator
- C CoreSignalStation
- C DataObjectOperator
- C FileOperator File operations
- C GlobalSettingStation
- C GpgAdvancedOperator
- C GpgBasicOperator Basic operation collection
- C GpgCommandExecutor Extra commands related to GPG
- C GpgFileOpera
- C GpgKeyGetter
- C GpgImportedKey
- C GpgImportInformation
- C GpgKeyImportExporter
- C GpgKeyManager
- C GpgKeyOpera
- C GpgUIDOperator
- C KeyPackageOperator Give the possibility to import or export a key package
- C PassphraseGenerator The PassphraseGenerator class
- C GpgDecryptResultAnalyse
- C GpgEncryptResultAnalyse
- C GpgResultAnalyse
- C GpgSignResultAnalyse
- C GpgVerifyResultAnalyse
- C _result_ref_deletor Result Deleter
- C GpgConstants
- C GpgContextInitArgs
- ► C GpgContext
- C _ctx_ref_deleter
- C ChannelObject Object which in channel system
- C SingletonStorage
- C SingletonStorageCollection
- C SingletonFunctionObject
- C GenKeyInfo
- C GpgInfo Use to record some info about gnupg
- ► C GpgData
- C _data_ref_deleter
- ► C GpgKey
- C _key_ref_deleter
- C GpgKeySignature
- C GpgSignature
- C GpgSubKey
- C GpgTOFUInfo
- C GpgUID
- C class Executive files related to the basic operations that are provided by GpgBasicOperator
- C ProxyConnectionTestThread
- C SignatureDetailsDialog
- C TestListedKeyServerThread
+ C ThreadSafeMap
+ C CacheManager
+ C CharsetOperator
+ C CoreSignalStation
+ C DataObjectOperator
+ C FileOperator File operations
+ C GlobalSettingStation
+ C GpgAdvancedOperator
+ C GpgBasicOperator Basic operation collection
+ C GpgCommandExecutor Extra commands related to GPG
+ C GpgFileOpera
+ C GpgKeyGetter
+ C GpgImportedKey
+ C GpgImportInformation
+ C GpgKeyImportExporter
+ ► C GpgKeyManager
+ C AutomatonHandelStruct
+ C GpgKeyOpera
+ C GpgUIDOperator
+ C KeyPackageOperator Give the possibility to import or export a key package
+ C PassphraseGenerator The PassphraseGenerator class
+ C GpgDecryptResultAnalyse
+ C GpgEncryptResultAnalyse
+ C GpgResultAnalyse
+ C GpgSignResultAnalyse
+ C GpgVerifyResultAnalyse
+ C _result_ref_deletor Result Deleter
+ C GpgConstants
+ C GpgContextInitArgs
+ ► C GpgContext
+ C _ctx_ref_deleter
+ C ChannelObject Object which in channel system
+ C SingletonStorage
+ C SingletonStorageCollection
+ C SingletonFunctionObject
+ C GenKeyInfo
+ C GpgInfo Use to record some info about gnupg
+ ► C GpgData
+ C _data_ref_deleter
+ ► C GpgKey
+ C _key_ref_deleter
+ C GpgKeySignature
+ C GpgSignature
+ C GpgSubKey
+ C GpgTOFUInfo
+ C GpgUID
+ C class Executive files related to the basic operations that are provided by GpgBasicOperator
+ C ProxyConnectionTestThread
+ C SignatureDetailsDialog
+ C TestListedKeyServerThread
diff --git a/docs/html/annotated_dup.js b/docs/html/annotated_dup.js
index c9859118..fe3dbf2d 100644
--- a/docs/html/annotated_dup.js
+++ b/docs/html/annotated_dup.js
@@ -11,6 +11,7 @@ var annotated_dup =
[ "FileReadTask", "classGpgFrontend_1_1UI_1_1FileReadTask.html", "classGpgFrontend_1_1UI_1_1FileReadTask" ],
[ "VerifyDetailsDialog", "classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html", "classGpgFrontend_1_1UI_1_1VerifyDetailsDialog" ],
[ "GeneralDialog", "classGpgFrontend_1_1UI_1_1GeneralDialog.html", "classGpgFrontend_1_1UI_1_1GeneralDialog" ],
+ [ "GnuPGControllerDialog", "classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html", "classGpgFrontend_1_1UI_1_1GnuPGControllerDialog" ],
[ "InfoTab", "classGpgFrontend_1_1UI_1_1InfoTab.html", "classGpgFrontend_1_1UI_1_1InfoTab" ],
[ "TranslatorsTab", "classGpgFrontend_1_1UI_1_1TranslatorsTab.html", "classGpgFrontend_1_1UI_1_1TranslatorsTab" ],
[ "UpdateTab", "classGpgFrontend_1_1UI_1_1UpdateTab.html", "classGpgFrontend_1_1UI_1_1UpdateTab" ],
@@ -54,7 +55,7 @@ var annotated_dup =
[ "KeyServerImportTask", "classGpgFrontend_1_1UI_1_1KeyServerImportTask.html", "classGpgFrontend_1_1UI_1_1KeyServerImportTask" ],
[ "KeyServerSearchTask", "classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html", "classGpgFrontend_1_1UI_1_1KeyServerSearchTask" ],
[ "ListedKeyServerTestTask", "classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html", "classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask" ],
- [ "ProxyConnectionTestThread", "classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.html", "classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread" ],
+ [ "ProxyConnectionTestTask", "classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask.html", "classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask" ],
[ "VersionCheckTask", "classGpgFrontend_1_1UI_1_1VersionCheckTask.html", "classGpgFrontend_1_1UI_1_1VersionCheckTask" ],
[ "CommonUtils", "classGpgFrontend_1_1UI_1_1CommonUtils.html", "classGpgFrontend_1_1UI_1_1CommonUtils" ],
[ "FilePage", "classGpgFrontend_1_1UI_1_1FilePage.html", "classGpgFrontend_1_1UI_1_1FilePage" ],
@@ -74,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.
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'
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+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)
+
+
+
+
+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"
+
+
-
-
-
◆ SaveCache()
+
+
+
◆ 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:
diff --git a/docs/html/classGpgFrontend_1_1CacheManager.js b/docs/html/classGpgFrontend_1_1CacheManager.js
index 2d428cf8..e220461d 100644
--- a/docs/html/classGpgFrontend_1_1CacheManager.js
+++ b/docs/html/classGpgFrontend_1_1CacheManager.js
@@ -1,6 +1,16 @@
var classGpgFrontend_1_1CacheManager =
[
- [ "ClearAllCache", "classGpgFrontend_1_1CacheManager.html#ae5246d24c5dbafb8f9abb561217ea235", null ],
- [ "LoadCache", "classGpgFrontend_1_1CacheManager.html#aaac1a2b86867831713efa5f092abf985", null ],
- [ "SaveCache", "classGpgFrontend_1_1CacheManager.html#a3cbc3238638dcd8b4722bfdf560c73fe", null ]
+ [ "CacheManager", "classGpgFrontend_1_1CacheManager.html#a311ae4d0cc4f4d9425b44789aea6090a", null ],
+ [ "flush_cache_storage", "classGpgFrontend_1_1CacheManager.html#a2cce51cf81b62dfb10b2195a0375f9b2", null ],
+ [ "get_data_object_key", "classGpgFrontend_1_1CacheManager.html#a9dd86b465c144340312956366b989cee", null ],
+ [ "load_all_cache_storage", "classGpgFrontend_1_1CacheManager.html#a8fdeea326fe6ba46d02ac2b9fbdde58c", null ],
+ [ "load_cache_storage", "classGpgFrontend_1_1CacheManager.html#a6e05751e92f8f0011bfcb755ccbb8003", null ],
+ [ "LoadCache", "classGpgFrontend_1_1CacheManager.html#a1176521fa6f3df1ed760c18af53ebcf5", null ],
+ [ "LoadCache", "classGpgFrontend_1_1CacheManager.html#af1ee53c1ecc4b0835568ef4af34c1595", null ],
+ [ "register_cache_key", "classGpgFrontend_1_1CacheManager.html#ab974c30ff13b899ca647d6ff97f7c34d", null ],
+ [ "SaveCache", "classGpgFrontend_1_1CacheManager.html#af61eef3700ff6a6790a42269b66e20e4", null ],
+ [ "cache_storage_", "classGpgFrontend_1_1CacheManager.html#aec8664877393054794453f56373520cc", null ],
+ [ "drk_key_", "classGpgFrontend_1_1CacheManager.html#a10682dce9d34272f3b99d1abbb48fb0d", null ],
+ [ "key_storage_", "classGpgFrontend_1_1CacheManager.html#af961e0b1f041bac37d5c16929da9d515", null ],
+ [ "m_timer_", "classGpgFrontend_1_1CacheManager.html#af4d6094e1c9fc5487e174ab876925a2b", null ]
];
\ No newline at end of file
diff --git a/docs/html/classGpgFrontend_1_1CacheManager__coll__graph.map b/docs/html/classGpgFrontend_1_1CacheManager__coll__graph.map
index bd1e1f31..0204170b 100644
--- a/docs/html/classGpgFrontend_1_1CacheManager__coll__graph.map
+++ b/docs/html/classGpgFrontend_1_1CacheManager__coll__graph.map
@@ -1,3 +1,16 @@
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/html/classGpgFrontend_1_1CacheManager__coll__graph.md5 b/docs/html/classGpgFrontend_1_1CacheManager__coll__graph.md5
index 03ce9218..cb51dea1 100644
--- a/docs/html/classGpgFrontend_1_1CacheManager__coll__graph.md5
+++ b/docs/html/classGpgFrontend_1_1CacheManager__coll__graph.md5
@@ -1 +1 @@
-ab999b5079abf1e5aba4c0035606f5da
\ No newline at end of file
+b3e687840219690156616592ad0a1131
\ No newline at end of file
diff --git a/docs/html/classGpgFrontend_1_1CacheManager__coll__graph.png b/docs/html/classGpgFrontend_1_1CacheManager__coll__graph.png
index 98442c14..3d188351 100644
Binary files a/docs/html/classGpgFrontend_1_1CacheManager__coll__graph.png and b/docs/html/classGpgFrontend_1_1CacheManager__coll__graph.png differ
diff --git a/docs/html/classGpgFrontend_1_1CacheManager__inherit__graph.map b/docs/html/classGpgFrontend_1_1CacheManager__inherit__graph.map
new file mode 100644
index 00000000..65735e2f
--- /dev/null
+++ b/docs/html/classGpgFrontend_1_1CacheManager__inherit__graph.map
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/docs/html/classGpgFrontend_1_1CacheManager__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1CacheManager__inherit__graph.md5
new file mode 100644
index 00000000..ffe960ba
--- /dev/null
+++ b/docs/html/classGpgFrontend_1_1CacheManager__inherit__graph.md5
@@ -0,0 +1 @@
+38d338047e3a84bc26ee786569b08568
\ No newline at end of file
diff --git a/docs/html/classGpgFrontend_1_1CacheManager__inherit__graph.png b/docs/html/classGpgFrontend_1_1CacheManager__inherit__graph.png
new file mode 100644
index 00000000..a7405863
Binary files /dev/null and b/docs/html/classGpgFrontend_1_1CacheManager__inherit__graph.png differ
diff --git a/docs/html/classGpgFrontend_1_1ChannelObject.html b/docs/html/classGpgFrontend_1_1ChannelObject.html
index 9234b7ea..d6ed04ea 100644
--- a/docs/html/classGpgFrontend_1_1ChannelObject.html
+++ b/docs/html/classGpgFrontend_1_1ChannelObject.html
@@ -102,36 +102,38 @@ Inheritance diagram for GpgFrontend::ChannelObject:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/html/classGpgFrontend_1_1CoreCommonUtil.html b/docs/html/classGpgFrontend_1_1CoreCommonUtil.html
index b536ebd2..8982e903 100644
--- a/docs/html/classGpgFrontend_1_1CoreCommonUtil.html
+++ b/docs/html/classGpgFrontend_1_1CoreCommonUtil.html
@@ -128,16 +128,16 @@ void SignalGnupgNotInstall
-
-void SetTempCacheValue (const std::string, const std::string)
- set a temp cache under a certain key
-
-std::string GetTempCacheValue (const std::string)
- after get the temp cache, its value will be imediately ease in storage More...
-
-void ResetTempCacheValue (const std::string)
- imediately ease temp cache in storage More...
-
+
+void SetTempCacheValue (const std::string &, const std::string &)
+ set a temp cache under a certain key
+
+std::string GetTempCacheValue (const std::string &)
+ after get the temp cache, its value will be imediately ease in storage More...
+
+void ResetTempCacheValue (const std::string &)
+ imediately ease temp cache in storage More...
+
@@ -159,8 +159,8 @@ static std::unique_ptr<
-
-◆ GetTempCacheValue()
+
+◆ GetTempCacheValue()
(
-
const std::string
+
const std::string &
key )
@@ -182,8 +182,8 @@ static std::unique_ptr<
-
◆ ResetTempCacheValue()
+
+
◆ ResetTempCacheValue()
diff --git a/docs/html/classGpgFrontend_1_1GpgKey.html b/docs/html/classGpgFrontend_1_1GpgKey.html
index 6984cb4b..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:
-
+
@@ -128,6 +128,8 @@ Public Member Functions
std::string GetOwnerTrust () const
+int GetOwnerTrustLevel () const
+
std::string GetPublicKeyAlgo () const
boost::posix_time::ptime GetLastUpdateTime () const
@@ -438,7 +440,7 @@ std::mutex gpgme_key_opera
@@ -458,7 +460,7 @@ std::mutex gpgme_key_opera
Returns std::string
-
Referenced by GpgFrontend::GpgKeyImportExporter::ExportKey() , GpgFrontend::GpgKeyImportExporter::ExportKeyOpenSSH() , GpgFrontend::GpgKeyImportExporter::ExportSecretKey() , GpgFrontend::GpgKeyImportExporter::ExportSecretKeyShortest() , GpgFrontend::GpgKeyOpera::GenerateSubkey() , GpgFrontend::UI::KeyUIDSignDialog::KeyUIDSignDialog() , operator<=() , operator==() , GpgFrontend::GpgKeyOpera::SetExpire() , and GpgFrontend::UI::KeyPairOperaTab::slot_export_private_key() .
+
Referenced by GpgFrontend::GpgKeyImportExporter::ExportKey() , GpgFrontend::GpgKeyImportExporter::ExportKeyOpenSSH() , GpgFrontend::GpgKeyImportExporter::ExportSecretKey() , GpgFrontend::GpgKeyImportExporter::ExportSecretKeyShortest() , GpgFrontend::GpgKeyOpera::GenerateSubkey() , GpgFrontend::UI::KeyUIDSignDialog::KeyUIDSignDialog() , operator<=() , operator==() , GpgFrontend::GpgKeyOpera::SetExpire() , GpgFrontend::GpgKeyManager::SetOwnerTrustLevel() , and GpgFrontend::UI::KeyPairOperaTab::slot_export_private_key() .
@@ -516,6 +518,24 @@ std::mutex gpgme_key_opera
+
+
+◆ GetOwnerTrustLevel()
+
+
+
+
+
+ int GpgFrontend::GpgKey::GetOwnerTrustLevel
+ (
+ )
+ const
+
+
+
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.html b/docs/html/classGpgFrontend_1_1GpgKeyGetter.html
index e1051b9e..6fc0d42e 100644
--- a/docs/html/classGpgFrontend_1_1GpgKeyGetter.html
+++ b/docs/html/classGpgFrontend_1_1GpgKeyGetter.html
@@ -107,15 +107,15 @@ Collaboration diagram for GpgFrontend::GpgKeyGetter:
-
-
+
+
-
-
+
+
-
-
+
+
@@ -126,10 +126,10 @@ Collaboration diagram for GpgFrontend::GpgKeyGetter:
-
+
-
-
+
+
@@ -391,7 +391,7 @@ virtual Returns GpgKey
-Referenced by GpgFrontend::UI::VerifyKeyDetailBox::create_key_info_grid() , GpgFrontend::UI::KeyImportDetailDialog::create_keys_table() , GpgFrontend::UI::KeyMgmt::delete_keys_with_warning() , GpgFrontend::GpgKeyOpera::DeleteKeys() , GpgFrontend::GpgDecryptResultAnalyse::print_recipient() , GpgFrontend::GpgVerifyResultAnalyse::print_signer() , GpgFrontend::UI::MainWindow::slot_copy_mail_address_to_clipboard() , GpgFrontend::UI::KeyList::slot_double_clicked() , and GpgFrontend::UI::MainWindow::slot_show_key_details() .
+Referenced by GpgFrontend::UI::VerifyKeyDetailBox::create_key_info_grid() , GpgFrontend::UI::KeyImportDetailDialog::create_keys_table() , GpgFrontend::UI::KeyMgmt::delete_keys_with_warning() , GpgFrontend::GpgKeyOpera::DeleteKeys() , GpgFrontend::GpgDecryptResultAnalyse::print_recipient() , GpgFrontend::GpgVerifyResultAnalyse::print_signer() , GpgFrontend::UI::MainWindow::slot_copy_default_uid_to_clipboard() , GpgFrontend::UI::MainWindow::slot_copy_key_id_to_clipboard() , GpgFrontend::UI::MainWindow::slot_copy_mail_address_to_clipboard() , GpgFrontend::UI::KeyList::slot_double_clicked() , and GpgFrontend::UI::MainWindow::slot_show_key_details() .
diff --git a/docs/html/classGpgFrontend_1_1GpgKeyGetter__coll__graph.map b/docs/html/classGpgFrontend_1_1GpgKeyGetter__coll__graph.map
index 839a4c63..036fb9e7 100644
--- a/docs/html/classGpgFrontend_1_1GpgKeyGetter__coll__graph.map
+++ b/docs/html/classGpgFrontend_1_1GpgKeyGetter__coll__graph.map
@@ -1,13 +1,13 @@
-
-
+
+
-
-
+
+
-
-
+
+
@@ -18,9 +18,9 @@
-
+
-
-
+
+
diff --git a/docs/html/classGpgFrontend_1_1GpgKeyGetter__coll__graph.md5 b/docs/html/classGpgFrontend_1_1GpgKeyGetter__coll__graph.md5
index 3c0f05e5..44c1fc5f 100644
--- a/docs/html/classGpgFrontend_1_1GpgKeyGetter__coll__graph.md5
+++ b/docs/html/classGpgFrontend_1_1GpgKeyGetter__coll__graph.md5
@@ -1 +1 @@
-9dc7f5a5d12644040fbe96cd0a28372e
\ 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 212ddc36..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_1GpgKeyImportExporter.html b/docs/html/classGpgFrontend_1_1GpgKeyImportExporter.html
index d9f62fb1..42ac68c3 100644
--- a/docs/html/classGpgFrontend_1_1GpgKeyImportExporter.html
+++ b/docs/html/classGpgFrontend_1_1GpgKeyImportExporter.html
@@ -106,25 +106,25 @@ Collaboration diagram for GpgFrontend::GpgKeyImportExporter:
-
-
+
+
-
-
-
-
-
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
@@ -508,8 +508,6 @@ false
References GpgFrontend::SingletonFunctionObject< GpgKeyGetter >::GetInstance() , GpgFrontend::GpgKeyGetter::GetKeys() , and GpgFrontend::GpgData::Read2Buffer() .
-Referenced by GpgFrontend::UI::MainWindow::slot_append_selected_keys() .
-
diff --git a/docs/html/classGpgFrontend_1_1GpgKeyImportExporter__coll__graph.map b/docs/html/classGpgFrontend_1_1GpgKeyImportExporter__coll__graph.map
index 71df54ec..d81adaab 100644
--- a/docs/html/classGpgFrontend_1_1GpgKeyImportExporter__coll__graph.map
+++ b/docs/html/classGpgFrontend_1_1GpgKeyImportExporter__coll__graph.map
@@ -1,22 +1,22 @@
-
-
+
+
-
-
-
-
-
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
diff --git a/docs/html/classGpgFrontend_1_1GpgKeyImportExporter__coll__graph.md5 b/docs/html/classGpgFrontend_1_1GpgKeyImportExporter__coll__graph.md5
index 56a38fcf..d4492ab7 100644
--- a/docs/html/classGpgFrontend_1_1GpgKeyImportExporter__coll__graph.md5
+++ b/docs/html/classGpgFrontend_1_1GpgKeyImportExporter__coll__graph.md5
@@ -1 +1 @@
-2660fd35f50c1ae2a9660f7f41483d3c
\ No newline at end of file
+50734d77c845d6c8b6983a75f5e73cef
\ No newline at end of file
diff --git a/docs/html/classGpgFrontend_1_1GpgKeyImportExporter__coll__graph.png b/docs/html/classGpgFrontend_1_1GpgKeyImportExporter__coll__graph.png
index 1baa3176..0ea512e3 100644
Binary files a/docs/html/classGpgFrontend_1_1GpgKeyImportExporter__coll__graph.png and b/docs/html/classGpgFrontend_1_1GpgKeyImportExporter__coll__graph.png differ
diff --git a/docs/html/classGpgFrontend_1_1GpgKeyManager-members.html b/docs/html/classGpgFrontend_1_1GpgKeyManager-members.html
index 027df348..d47dec13 100644
--- a/docs/html/classGpgFrontend_1_1GpgKeyManager-members.html
+++ b/docs/html/classGpgFrontend_1_1GpgKeyManager-members.html
@@ -90,9 +90,13 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1GpgKeyManager.html
This is the complete list of members for GpgFrontend::GpgKeyManager , including all inherited members.
_default_channel GpgFrontend::ChannelObject private static
- channel_ GpgFrontend::ChannelObject private
- ChannelObject () noexceptGpgFrontend::ChannelObject
- ChannelObject (int channel)GpgFrontend::ChannelObject
+ AutomatonActionHandler typedef (defined in GpgFrontend::GpgKeyManager )GpgFrontend::GpgKeyManager private
+ AutomatonNextStateHandler typedef (defined in GpgFrontend::GpgKeyManager )GpgFrontend::GpgKeyManager private
+ AutomatonState typedef (defined in GpgFrontend::GpgKeyManager )GpgFrontend::GpgKeyManager private
+ channel_ GpgFrontend::ChannelObject private
+ ChannelObject () noexceptGpgFrontend::ChannelObject
+ ChannelObject (int channel)GpgFrontend::ChannelObject
+ Command typedef (defined in GpgFrontend::GpgKeyManager )GpgFrontend::GpgKeyManager private
CreateInstance (int channel, std::function< std::unique_ptr< ChannelObject >(void)> factory)GpgFrontend::SingletonFunctionObject< GpgKeyManager > inline static
ctx_ (defined in GpgFrontend::GpgKeyManager )GpgFrontend::GpgKeyManager private
GetAllChannelId ()GpgFrontend::SingletonFunctionObject< GpgKeyManager > inline static
@@ -100,12 +104,14 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1GpgKeyManager.html
GetDefaultChannel ()GpgFrontend::SingletonFunctionObject< GpgKeyManager > inline static
GetInstance (int channel=GpgFrontend::GPGFRONTEND_DEFAULT_CHANNEL)GpgFrontend::SingletonFunctionObject< GpgKeyManager > inline static
GpgKeyManager (int channel=SingletonFunctionObject::GetDefaultChannel())GpgFrontend::GpgKeyManager explicit
- operator= (const SingletonFunctionObject< GpgKeyManager > &)=deleteGpgFrontend::SingletonFunctionObject< GpgKeyManager >
- operator= (const GpgKeyManager &)=delete (defined in GpgFrontend::SingletonFunctionObject< GpgKeyManager > )GpgFrontend::SingletonFunctionObject< GpgKeyManager >
- ReleaseChannel (int channel)GpgFrontend::SingletonFunctionObject< GpgKeyManager > inline static
- RevSign (const GpgFrontend::GpgKey &key, const GpgFrontend::SignIdArgsListPtr &signature_id)GpgFrontend::GpgKeyManager
- SetChannel (int channel)GpgFrontend::ChannelObject
- SetExpire (const GpgKey &key, std::unique_ptr< GpgSubKey > &subkey, std::unique_ptr< boost::posix_time::ptime > &expires)GpgFrontend::GpgKeyManager
+ interactor_cb_fnc (void *handle, const char *status, const char *args, int fd) (defined in GpgFrontend::GpgKeyManager )GpgFrontend::GpgKeyManager private static
+ operator= (const SingletonFunctionObject< GpgKeyManager > &)=deleteGpgFrontend::SingletonFunctionObject< GpgKeyManager >
+ operator= (const GpgKeyManager &)=delete (defined in GpgFrontend::SingletonFunctionObject< GpgKeyManager > )GpgFrontend::SingletonFunctionObject< GpgKeyManager >
+ ReleaseChannel (int channel)GpgFrontend::SingletonFunctionObject< GpgKeyManager > inline static
+ RevSign (const GpgFrontend::GpgKey &key, const GpgFrontend::SignIdArgsListPtr &signature_id)GpgFrontend::GpgKeyManager
+ SetChannel (int channel)GpgFrontend::ChannelObject
+ SetExpire (const GpgKey &key, std::unique_ptr< GpgSubKey > &subkey, std::unique_ptr< boost::posix_time::ptime > &expires)GpgFrontend::GpgKeyManager
+ SetOwnerTrustLevel (const GpgKey &key, int trust_level)GpgFrontend::GpgKeyManager
SignKey (const GpgKey &target, KeyArgsList &keys, const std::string &uid, const std::unique_ptr< boost::posix_time::ptime > &expires)GpgFrontend::GpgKeyManager
SingletonFunctionObject (const SingletonFunctionObject< GpgKeyManager > &)=deleteGpgFrontend::SingletonFunctionObject< GpgKeyManager >
SingletonFunctionObject (GpgKeyManager &&)=deleteGpgFrontend::SingletonFunctionObject< GpgKeyManager >
diff --git a/docs/html/classGpgFrontend_1_1GpgKeyManager.html b/docs/html/classGpgFrontend_1_1GpgKeyManager.html
index a714ab63..d8640019 100644
--- a/docs/html/classGpgFrontend_1_1GpgKeyManager.html
+++ b/docs/html/classGpgFrontend_1_1GpgKeyManager.html
@@ -83,7 +83,10 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1GpgKeyManager.html
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker.html b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker.html
index 9c84c3b2..16208e6b 100644
--- a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker.html
+++ b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker.html
@@ -95,9 +95,9 @@ Inheritance diagram for GpgFrontend::UI::SignersPicker:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -154,12 +154,18 @@ bool accepted_ = false
-
-void movePos2CenterOfScreen ()
-
-
-void movePos2CenterOfParent ()
-
+
+void setPosCenterOfScreen ()
+
+
+void movePosition2CenterOfParent ()
+
+
+bool isRectRestored ()
+
+
+void showEvent (QShowEvent *event) override
+
@@ -194,7 +200,7 @@ void movePos2CenterOfParen
- 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 3b56fb32..1ac8034c 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 01975e0e..658e8c62 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 @@
-b82c159c1ed4012cb2615651d90c5ce8
\ No newline at end of file
+04912a332a2865fe3cb0d3972008f554
\ 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 e465a580..84f20aab 100644
Binary files a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.png differ
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.map
index 6883b6a2..31b8ebed 100644
--- a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.map
+++ b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.map
@@ -1,5 +1,5 @@
-
-
-
+
+
+
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.md5
index e380f1f6..867fda95 100644
--- a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.md5
+++ b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.md5
@@ -1 +1 @@
-71cc25ac58b3aad81310125a9c78df37
\ No newline at end of file
+e9a5c7d1dc2c69ab216ca0abe8488bc5
\ No newline at end of file
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.png
index 3a3832d3..7090d474 100644
Binary files a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.png differ
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog-members.html
index 5e869601..284fbe2f 100644
--- a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog-members.html
+++ b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog-members.html
@@ -97,24 +97,26 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1SubkeyGenera
expire_check_box_ GpgFrontend::UI::SubkeyGenerateDialog private
gen_key_info_ (defined in GpgFrontend::UI::SubkeyGenerateDialog )GpgFrontend::UI::SubkeyGenerateDialog private
GeneralDialog (std::string name, QWidget *parent=nullptr)GpgFrontend::UI::GeneralDialog explicit
- key_ (defined in GpgFrontend::UI::SubkeyGenerateDialog )GpgFrontend::UI::SubkeyGenerateDialog private
- key_size_spin_box_ GpgFrontend::UI::SubkeyGenerateDialog private
- key_type_combo_box_ GpgFrontend::UI::SubkeyGenerateDialog private
- key_usage_check_boxes_ GpgFrontend::UI::SubkeyGenerateDialog private
- key_usage_group_box_ (defined in GpgFrontend::UI::SubkeyGenerateDialog )GpgFrontend::UI::SubkeyGenerateDialog private
- max_date_time_ (defined in GpgFrontend::UI::SubkeyGenerateDialog )GpgFrontend::UI::SubkeyGenerateDialog private
- movePos2CenterOfParent () (defined in GpgFrontend::UI::GeneralDialog )GpgFrontend::UI::GeneralDialog protected
- movePos2CenterOfScreen () (defined in GpgFrontend::UI::GeneralDialog )GpgFrontend::UI::GeneralDialog protected
+ isRectRestored () (defined in GpgFrontend::UI::GeneralDialog )GpgFrontend::UI::GeneralDialog protected
+ key_ (defined in GpgFrontend::UI::SubkeyGenerateDialog )GpgFrontend::UI::SubkeyGenerateDialog private
+ key_size_spin_box_ GpgFrontend::UI::SubkeyGenerateDialog private
+ key_type_combo_box_ GpgFrontend::UI::SubkeyGenerateDialog private
+ key_usage_check_boxes_ GpgFrontend::UI::SubkeyGenerateDialog private
+ key_usage_group_box_ (defined in GpgFrontend::UI::SubkeyGenerateDialog )GpgFrontend::UI::SubkeyGenerateDialog private
+ max_date_time_ (defined in GpgFrontend::UI::SubkeyGenerateDialog )GpgFrontend::UI::SubkeyGenerateDialog private
+ movePosition2CenterOfParent () (defined in GpgFrontend::UI::GeneralDialog )GpgFrontend::UI::GeneralDialog protected
name_ (defined in GpgFrontend::UI::GeneralDialog )GpgFrontend::UI::GeneralDialog private
no_pass_phrase_check_box_ GpgFrontend::UI::SubkeyGenerateDialog private
- parent_pos_ (defined in GpgFrontend::UI::GeneralDialog )GpgFrontend::UI::GeneralDialog private
- parent_size_ (defined in GpgFrontend::UI::GeneralDialog )GpgFrontend::UI::GeneralDialog private
- passphrase_edit_ (defined in GpgFrontend::UI::SubkeyGenerateDialog )GpgFrontend::UI::SubkeyGenerateDialog private
- pos_ (defined in GpgFrontend::UI::GeneralDialog )GpgFrontend::UI::GeneralDialog private
+ parent_rect_ (defined in GpgFrontend::UI::GeneralDialog )GpgFrontend::UI::GeneralDialog private
+ passphrase_edit_ (defined in GpgFrontend::UI::SubkeyGenerateDialog )GpgFrontend::UI::SubkeyGenerateDialog private
+ rect_ (defined in GpgFrontend::UI::GeneralDialog )GpgFrontend::UI::GeneralDialog private
+ rect_restored_ (defined in GpgFrontend::UI::GeneralDialog )GpgFrontend::UI::GeneralDialog private
refresh_widgets_state ()GpgFrontend::UI::SubkeyGenerateDialog private
- set_signal_slot ()GpgFrontend::UI::SubkeyGenerateDialog private
- SignalSubKeyGenerated () (defined in GpgFrontend::UI::SubkeyGenerateDialog )GpgFrontend::UI::SubkeyGenerateDialog signal
- size_ (defined in GpgFrontend::UI::GeneralDialog )GpgFrontend::UI::GeneralDialog private
+ screen_rect_ (defined in GpgFrontend::UI::GeneralDialog )GpgFrontend::UI::GeneralDialog private
+ set_signal_slot ()GpgFrontend::UI::SubkeyGenerateDialog private
+ setPosCenterOfScreen () (defined in GpgFrontend::UI::GeneralDialog )GpgFrontend::UI::GeneralDialog protected
+ showEvent (QShowEvent *event) override (defined in GpgFrontend::UI::GeneralDialog )GpgFrontend::UI::GeneralDialog protected
+ SignalSubKeyGenerated () (defined in GpgFrontend::UI::SubkeyGenerateDialog )GpgFrontend::UI::SubkeyGenerateDialog signal
slot_activated_key_type (int index)GpgFrontend::UI::SubkeyGenerateDialog private slot
slot_authentication_box_changed (int state)GpgFrontend::UI::SubkeyGenerateDialog private slot
slot_certification_box_changed (int state)GpgFrontend::UI::SubkeyGenerateDialog private slot
@@ -125,6 +127,8 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1SubkeyGenera
slot_save_settings () noexcept (defined in GpgFrontend::UI::GeneralDialog )GpgFrontend::UI::GeneralDialog private slot
slot_signing_box_changed (int state)GpgFrontend::UI::SubkeyGenerateDialog private slot
SubkeyGenerateDialog (const KeyId &key_id, QWidget *parent)GpgFrontend::UI::SubkeyGenerateDialog explicit
+ update_rect_cache () (defined in GpgFrontend::UI::GeneralDialog )GpgFrontend::UI::GeneralDialog private
+ use_pinentry_ (defined in GpgFrontend::UI::SubkeyGenerateDialog )GpgFrontend::UI::SubkeyGenerateDialog private
~GeneralDialog () override (defined in GpgFrontend::UI::GeneralDialog )GpgFrontend::UI::GeneralDialog
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html
index 98f9993f..65103235 100644
--- a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html
+++ b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html
@@ -98,8 +98,8 @@ Inheritance diagram for GpgFrontend::UI::SubkeyGenerateDialog:
@@ -108,8 +108,8 @@ Collaboration diagram for GpgFrontend::UI::SubkeyGenerateDialog:
-
-
+
+
@@ -118,7 +118,7 @@ Collaboration diagram for GpgFrontend::UI::SubkeyGenerateDialog:
-
+
@@ -219,16 +219,25 @@ std::vector< QCheckBox * >
QDateTime max_date_time_
+
+bool use_pinentry_ = false
+
-
-void movePos2CenterOfScreen ()
-
-
-void movePos2CenterOfParent ()
-
+
+void setPosCenterOfScreen ()
+
+
+void movePosition2CenterOfParent ()
+
+
+bool isRectRestored ()
+
+
+void showEvent (QShowEvent *event) override
+
@@ -274,7 +283,7 @@ void movePos2CenterOfParen
- References button_box_ , create_basic_info_group_box() , create_key_usage_group_box() , error_label_ , GpgFrontend::UI::SignalStation::GetInstance() , GpgFrontend::SingletonFunctionObject< GlobalSettingStation >::GetInstance() , GpgFrontend::GlobalSettingStation::GetUISettings() , refresh_widgets_state() , and set_signal_slot() .
+References button_box_ , create_basic_info_group_box() , create_key_usage_group_box() , error_label_ , GpgFrontend::UI::SignalStation::GetInstance() , GpgFrontend::SingletonFunctionObject< GlobalSettingStation >::GetInstance() , GpgFrontend::GlobalSettingStation::LookupSettings() , refresh_widgets_state() , and set_signal_slot() .
@@ -567,7 +576,7 @@ void movePos2CenterOfParen
primary keys should have a reasonable expiration date (no more than 2 years in the future)
create error message
-References GpgFrontend::check_gpg_error_2_err_code() , date_edit_ , error_label_ , expire_check_box_ , GpgFrontend::GpgKeyOpera::GenerateSubkey() , GpgFrontend::CoreCommonUtil::GetInstance() , GpgFrontend::SingletonFunctionObject< GpgKeyOpera >::GetInstance() , key_size_spin_box_ , GpgFrontend::CoreCommonUtil::ResetTempCacheValue() , and GpgFrontend::CoreCommonUtil::SetTempCacheValue() .
+References GpgFrontend::check_gpg_error_2_err_code() , date_edit_ , error_label_ , expire_check_box_ , GpgFrontend::GpgKeyOpera::GenerateSubkey() , GpgFrontend::CoreCommonUtil::GetInstance() , GpgFrontend::SingletonFunctionObject< GpgKeyOpera >::GetInstance() , key_size_spin_box_ , GpgFrontend::CoreCommonUtil::ResetTempCacheValue() , and GpgFrontend::CoreCommonUtil::SetTempCacheValue() .
Referenced by set_signal_slot() .
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.js b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.js
index 40af5fda..085a07d1 100644
--- a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.js
+++ b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.js
@@ -25,5 +25,6 @@ var classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog =
[ "key_usage_group_box_", "classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#ab11f7f3e24f855d690f6f7d820ed7479", null ],
[ "max_date_time_", "classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a06ae254026e0be902d28bb005a91fe0c", null ],
[ "no_pass_phrase_check_box_", "classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a001803152c0e5bd9de7c7dd04cef8ad4", null ],
- [ "passphrase_edit_", "classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a9cbb5bcf775a873a0d866a9aa0a5acd0", null ]
+ [ "passphrase_edit_", "classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a9cbb5bcf775a873a0d866a9aa0a5acd0", null ],
+ [ "use_pinentry_", "classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#ab7a4af76a1d56ad401274ecad80d16c5", null ]
];
\ No newline at end of file
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 0d896f4a..bda63451 100644
--- a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.map
+++ b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.map
@@ -1,6 +1,6 @@
-
-
+
+
@@ -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 38c16b7b..99417fa4 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 @@
-312c5dbd72404df8bb9047ac2d6fb296
\ No newline at end of file
+204d01f052466a158eb445b8b0c333ae
\ 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 95d22908..fad585e3 100644
Binary files a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.png differ
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.map
index fb15ee5e..0a6e2035 100644
--- a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.map
+++ b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.map
@@ -1,5 +1,5 @@
-
-
+
+
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.md5
index 4b9bc4d4..8899e145 100644
--- a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.md5
+++ b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.md5
@@ -1 +1 @@
-2964e4646a3d5f00d11d033c0d1cfe29
\ No newline at end of file
+5bc00b4e27d35d5611c0028c36d57277
\ No newline at end of file
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.png
index 2038e169..a42c3cc5 100644
Binary files a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.png differ
diff --git a/docs/html/classGpgFrontend_1_1UI_1_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::TextEdit slot
slotNewHelpTab (const QString &title, const QString &path) constGpgFrontend::UI::TextEdit slot
SlotNewTab ()GpgFrontend::UI::TextEdit slot
- SlotOpen ()GpgFrontend::UI::TextEdit slot
- SlotOpenFile (const QString &path)GpgFrontend::UI::TextEdit slot
- SlotPaste () constGpgFrontend::UI::TextEdit slot
- SlotPrint ()GpgFrontend::UI::TextEdit slot
- SlotQuote () constGpgFrontend::UI::TextEdit slot
- SlotRedo () constGpgFrontend::UI::TextEdit slot
- SlotSave ()GpgFrontend::UI::TextEdit slot
- SlotSaveAs ()GpgFrontend::UI::TextEdit slot
- SlotSelectAll () constGpgFrontend::UI::TextEdit slot
- SlotShowModified (bool) constGpgFrontend::UI::TextEdit slot
- SlotSwitchTabDown () constGpgFrontend::UI::TextEdit slot
- SlotSwitchTabUp () constGpgFrontend::UI::TextEdit slot
- SlotUndo () constGpgFrontend::UI::TextEdit slot
- SlotZoomIn () const (defined in GpgFrontend::UI::TextEdit )GpgFrontend::UI::TextEdit slot
- SlotZoomOut () const (defined in GpgFrontend::UI::TextEdit )GpgFrontend::UI::TextEdit slot
- stripped_name (const QString &full_file_name)GpgFrontend::UI::TextEdit private static
- 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::TextEdit private
- 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::TextEdit slot
+ SlotOpen ()GpgFrontend::UI::TextEdit slot
+ SlotOpenFile (const QString &path)GpgFrontend::UI::TextEdit slot
+ SlotPaste () constGpgFrontend::UI::TextEdit slot
+ SlotPrint ()GpgFrontend::UI::TextEdit slot
+ SlotQuote () constGpgFrontend::UI::TextEdit slot
+ SlotRedo () constGpgFrontend::UI::TextEdit slot
+ SlotSave ()GpgFrontend::UI::TextEdit slot
+ SlotSaveAs ()GpgFrontend::UI::TextEdit slot
+ SlotSelectAll () constGpgFrontend::UI::TextEdit slot
+ SlotShowModified (bool) constGpgFrontend::UI::TextEdit slot
+ SlotSwitchTabDown () constGpgFrontend::UI::TextEdit slot
+ SlotSwitchTabUp () constGpgFrontend::UI::TextEdit slot
+ SlotUndo () constGpgFrontend::UI::TextEdit slot
+ SlotZoomIn () const (defined in GpgFrontend::UI::TextEdit )GpgFrontend::UI::TextEdit slot
+ SlotZoomOut () const (defined in GpgFrontend::UI::TextEdit )GpgFrontend::UI::TextEdit slot
+ stripped_name (const QString &full_file_name)GpgFrontend::UI::TextEdit private static
+ 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::TextEdit private
+ 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
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/classGpgFrontend_1_1UI_1_1UpdateTab-members.html b/docs/html/classGpgFrontend_1_1UI_1_1UpdateTab-members.html
index 67a189d5..6bd0258a 100644
--- a/docs/html/classGpgFrontend_1_1UI_1_1UpdateTab-members.html
+++ b/docs/html/classGpgFrontend_1_1UI_1_1UpdateTab-members.html
@@ -91,14 +91,13 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1UpdateTab.ht
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1UpdateTab.html b/docs/html/classGpgFrontend_1_1UI_1_1UpdateTab.html
index 2e3dfa11..f3628fb1 100644
--- a/docs/html/classGpgFrontend_1_1UI_1_1UpdateTab.html
+++ b/docs/html/classGpgFrontend_1_1UI_1_1UpdateTab.html
@@ -102,7 +102,7 @@ Inheritance diagram for GpgFrontend::UI::UpdateTab:
@@ -111,7 +111,7 @@ Collaboration diagram for GpgFrontend::UI::UpdateTab:
@@ -153,9 +153,6 @@ QProgressBar * pb_
QString current_version_
-
-QPushButton * download_button_
-
Class containing the main tab of about dialog.
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1UpdateTab.js b/docs/html/classGpgFrontend_1_1UI_1_1UpdateTab.js
index d14b108f..c52c9bba 100644
--- a/docs/html/classGpgFrontend_1_1UI_1_1UpdateTab.js
+++ b/docs/html/classGpgFrontend_1_1UI_1_1UpdateTab.js
@@ -6,7 +6,6 @@ var classGpgFrontend_1_1UI_1_1UpdateTab =
[ "slot_show_version_status", "classGpgFrontend_1_1UI_1_1UpdateTab.html#a1003bd969ecbc5deba940e39436968f4", null ],
[ "current_version_", "classGpgFrontend_1_1UI_1_1UpdateTab.html#ad180d1f434e8052f3e0974522c92ae61", null ],
[ "current_version_label_", "classGpgFrontend_1_1UI_1_1UpdateTab.html#a3718c15db336b2ca0090ee492c429adb", null ],
- [ "download_button_", "classGpgFrontend_1_1UI_1_1UpdateTab.html#a67358193095af7b39184f16706bf1bff", null ],
[ "latest_version_label_", "classGpgFrontend_1_1UI_1_1UpdateTab.html#a84579badda70b12cfd79add18d1ef94f", null ],
[ "pb_", "classGpgFrontend_1_1UI_1_1UpdateTab.html#a9dedd8bc17bbc53d31c9d292429be68b", null ],
[ "upgrade_label_", "classGpgFrontend_1_1UI_1_1UpdateTab.html#ab209ef238583efea25c6a58aa4831628", null ]
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1UpdateTab__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1UpdateTab__coll__graph.map
index a8786f18..3336b7a5 100644
--- a/docs/html/classGpgFrontend_1_1UI_1_1UpdateTab__coll__graph.map
+++ b/docs/html/classGpgFrontend_1_1UI_1_1UpdateTab__coll__graph.map
@@ -1,4 +1,4 @@
-
+
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1UpdateTab__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1UpdateTab__coll__graph.md5
index c07bc4a8..16b26efa 100644
--- a/docs/html/classGpgFrontend_1_1UI_1_1UpdateTab__coll__graph.md5
+++ b/docs/html/classGpgFrontend_1_1UI_1_1UpdateTab__coll__graph.md5
@@ -1 +1 @@
-44e2797c75fd2a33bbd1c336331c213a
\ No newline at end of file
+ffd249985afb2cfaf08d0d813d1b67b4
\ No newline at end of file
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1UpdateTab__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1UpdateTab__coll__graph.png
index e72df0e4..26f52713 100644
Binary files a/docs/html/classGpgFrontend_1_1UI_1_1UpdateTab__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1UpdateTab__coll__graph.png differ
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1UpdateTab__inherit__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1UpdateTab__inherit__graph.map
index a8786f18..3336b7a5 100644
--- a/docs/html/classGpgFrontend_1_1UI_1_1UpdateTab__inherit__graph.map
+++ b/docs/html/classGpgFrontend_1_1UI_1_1UpdateTab__inherit__graph.map
@@ -1,4 +1,4 @@
-
+
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1UpdateTab__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1UpdateTab__inherit__graph.md5
index c07bc4a8..16b26efa 100644
--- a/docs/html/classGpgFrontend_1_1UI_1_1UpdateTab__inherit__graph.md5
+++ b/docs/html/classGpgFrontend_1_1UI_1_1UpdateTab__inherit__graph.md5
@@ -1 +1 @@
-44e2797c75fd2a33bbd1c336331c213a
\ No newline at end of file
+ffd249985afb2cfaf08d0d813d1b67b4
\ No newline at end of file
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1UpdateTab__inherit__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1UpdateTab__inherit__graph.png
index e72df0e4..26f52713 100644
Binary files a/docs/html/classGpgFrontend_1_1UI_1_1UpdateTab__inherit__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1UpdateTab__inherit__graph.png differ
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog-members.html
index ba3e10c1..0fcacde7 100644
--- a/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog-members.html
+++ b/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog-members.html
@@ -93,12 +93,11 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1VerifyDetail
error_ (defined in GpgFrontend::UI::VerifyDetailsDialog )GpgFrontend::UI::VerifyDetailsDialog private
input_data_ (defined in GpgFrontend::UI::VerifyDetailsDialog )GpgFrontend::UI::VerifyDetailsDialog private
input_signature_ (defined in GpgFrontend::UI::VerifyDetailsDialog )GpgFrontend::UI::VerifyDetailsDialog private
-
key_list_ (defined in GpgFrontend::UI::VerifyDetailsDialog )GpgFrontend::UI::VerifyDetailsDialog private
-
m_result_ (defined in GpgFrontend::UI::VerifyDetailsDialog )GpgFrontend::UI::VerifyDetailsDialog private
-
m_vbox_ (defined in GpgFrontend::UI::VerifyDetailsDialog )GpgFrontend::UI::VerifyDetailsDialog private
-
main_layout_ (defined in GpgFrontend::UI::VerifyDetailsDialog )GpgFrontend::UI::VerifyDetailsDialog private
-
slot_refresh () (defined in GpgFrontend::UI::VerifyDetailsDialog )GpgFrontend::UI::VerifyDetailsDialog private slot
-
VerifyDetailsDialog (QWidget *parent, GpgError error, GpgVerifyResult result)GpgFrontend::UI::VerifyDetailsDialog explicit
+
m_result_ (defined in GpgFrontend::UI::VerifyDetailsDialog )GpgFrontend::UI::VerifyDetailsDialog private
+
m_vbox_ (defined in GpgFrontend::UI::VerifyDetailsDialog )GpgFrontend::UI::VerifyDetailsDialog private
+
main_layout_ (defined in GpgFrontend::UI::VerifyDetailsDialog )GpgFrontend::UI::VerifyDetailsDialog private
+
slot_refresh () (defined in GpgFrontend::UI::VerifyDetailsDialog )GpgFrontend::UI::VerifyDetailsDialog private slot
+
VerifyDetailsDialog (QWidget *parent, GpgError error, GpgVerifyResult result)GpgFrontend::UI::VerifyDetailsDialog explicit
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html
index 46181919..4aa62179 100644
--- a/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html
+++ b/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html
@@ -96,7 +96,7 @@ Inheritance diagram for GpgFrontend::UI::VerifyDetailsDialog:
@@ -105,24 +105,11 @@ Collaboration diagram for GpgFrontend::UI::VerifyDetailsDialog:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
@@ -140,9 +127,6 @@ void slot_refresh ()
-
-KeyList * key_list_
-
QHBoxLayout * main_layout_
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.js b/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.js
index 72aed325..d6b5878d 100644
--- a/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.js
+++ b/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.js
@@ -6,7 +6,6 @@ var classGpgFrontend_1_1UI_1_1VerifyDetailsDialog =
[ "error_", "classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#ae15d7e9e60c58dea08ae117645e8b32a", null ],
[ "input_data_", "classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#aeb3a7c48297d448d25b2b84a2aa64ad0", null ],
[ "input_signature_", "classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#ae66e988b812817ab95c35a7c080e8c06", null ],
- [ "key_list_", "classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#ab130aae968f83b9125cbe7054b6ca96d", null ],
[ "m_result_", "classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#aeef0138e48f7e5f823f2cce9692d4649", null ],
[ "m_vbox_", "classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#a7849527f1e93581103bca3e7c66456c4", null ],
[ "main_layout_", "classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#a37a315ff2a1ed0402adf1e15325990ba", null ]
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.map
index 1e330c78..7b783927 100644
--- a/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.map
+++ b/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.map
@@ -1,20 +1,7 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.md5
index dd304dec..32864554 100644
--- a/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.md5
+++ b/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.md5
@@ -1 +1 @@
-8487150d302572007c32ad7c4dfbea0c
\ No newline at end of file
+2d59f22f4fccffe48b427b3d8be005aa
\ No newline at end of file
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.png
index 13e5b4a1..3451b0dd 100644
Binary files a/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.png differ
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__inherit__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__inherit__graph.map
index 323a150b..2a4be295 100644
--- a/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__inherit__graph.map
+++ b/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__inherit__graph.map
@@ -1,4 +1,4 @@
-
+
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__inherit__graph.md5
index 15e2cd76..a9b46a69 100644
--- a/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__inherit__graph.md5
+++ b/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__inherit__graph.md5
@@ -1 +1 @@
-d8a83091e58e6fccdce2ed59a4736630
\ No newline at end of file
+ac16598e2760ed778650eec62ce2683b
\ No newline at end of file
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__inherit__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__inherit__graph.png
index 608a17e3..5913efbd 100644
Binary files a/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__inherit__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__inherit__graph.png differ
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html b/docs/html/classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html
index 73900ada..3cc1c175 100644
--- a/docs/html/classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html
+++ b/docs/html/classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html
@@ -182,7 +182,7 @@ std::string
-References create_key_info_grid() , fpr_ , GpgFrontend::GpgSignature::GetFingerprint() , and GpgFrontend::GpgSignature::GetStatus() .
+References create_key_info_grid() , fpr_ , GpgFrontend::GpgSignature::GetFingerprint() , GpgFrontend::SingletonFunctionObject< GlobalSettingStation >::GetInstance() , GpgFrontend::GpgSignature::GetStatus() , and GpgFrontend::GlobalSettingStation::LookupSettings() .
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog-members.html
index b55faba2..637ed9c7 100644
--- a/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog-members.html
+++ b/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog-members.html
@@ -89,7 +89,21 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1WaitingDialo
This is the complete list of members for GpgFrontend::UI::WaitingDialog , including all inherited members.
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog.html
index f0d0f77d..583ea078 100644
--- a/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog.html
+++ b/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog.html
@@ -94,8 +94,9 @@ Inheritance diagram for GpgFrontend::UI::WaitingDialog:
@@ -113,6 +117,25 @@ Public Member Functions
WaitingDialog (const QString &title, QWidget *parent)
Construct a new Waiting Dialog object. More...
+
+ GeneralDialog (std::string name, QWidget *parent=nullptr)
+
+
+
+
+
+void setPosCenterOfScreen ()
+
+
+void movePosition2CenterOfParent ()
+
+
+bool isRectRestored ()
+
+
+void showEvent (QShowEvent *event) override
+
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.map
index 0b562491..ff389e55 100644
--- a/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.map
+++ b/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.map
@@ -1,4 +1,7 @@
-
-
+
+
+
+
+
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.md5
index 6c945c7a..e2a03b91 100644
--- a/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.md5
+++ b/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.md5
@@ -1 +1 @@
-39336a99ad63e41e7b199a4a7b3c87f8
\ No newline at end of file
+0fa02b5eb8ef3552ebd55ba6cde462b7
\ No newline at end of file
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.png
index b4236974..4a48be17 100644
Binary files a/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.png differ
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.map
index 0b562491..edd1dd7a 100644
--- a/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.map
+++ b/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.map
@@ -1,4 +1,5 @@
-
-
+
+
+
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.md5
index 6c945c7a..7e65cc25 100644
--- a/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.md5
+++ b/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.md5
@@ -1 +1 @@
-39336a99ad63e41e7b199a4a7b3c87f8
\ No newline at end of file
+20ae81f17c028050f7ab3a7f9d3c9375
\ No newline at end of file
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.png
index b4236974..17c03f2d 100644
Binary files a/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.png differ
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1Wizard.html b/docs/html/classGpgFrontend_1_1UI_1_1Wizard.html
index 47ef80a2..13fa11ef 100644
--- a/docs/html/classGpgFrontend_1_1UI_1_1Wizard.html
+++ b/docs/html/classGpgFrontend_1_1UI_1_1Wizard.html
@@ -170,7 +170,7 @@ void slot_wizard_accepted<
- References GpgFrontend::SingletonFunctionObject< GlobalSettingStation >::GetInstance() , and GpgFrontend::GlobalSettingStation::GetUISettings() .
+References GpgFrontend::SingletonFunctionObject< GlobalSettingStation >::GetInstance() , and GpgFrontend::GlobalSettingStation::LookupSettings() .
diff --git a/docs/html/classProxyConnectionTestThread.html b/docs/html/classProxyConnectionTestThread.html
index f4bee6a2..b9ebbdaf 100644
--- a/docs/html/classProxyConnectionTestThread.html
+++ b/docs/html/classProxyConnectionTestThread.html
@@ -87,7 +87,7 @@ $(document).ready(function(){initNavTree('classProxyConnectionTestThread.html','
-
#include <ProxyConnectionTestThread.h >
+
#include <ProxyConnectionTestTask.h >
@@ -105,7 +105,7 @@ Collaboration diagram for ProxyConnectionTestThread:
The initial version of the source code is inherited from the gpg4usb project, which is under GPL-3.0-or-later.
The source code version of this software was modified and released by Saturnericeric@.nosp@m. bktu.nosp@m. s.com eric@.nosp@m. bktu.nosp@m. s.com starting on May 12, 2021.
The documentation for this class was generated from the following file:
diff --git a/docs/html/classes.html b/docs/html/classes.html
index facd3e3f..a94cfb8d 100644
--- a/docs/html/classes.html
+++ b/docs/html/classes.html
@@ -90,7 +90,7 @@ $(document).ready(function(){initNavTree('classes.html',''); initResizable(); })
A
-AboutDialog (GpgFrontend::UI )AdvancedTab (GpgFrontend::UI )AppearanceTab (GpgFrontend::UI )ArchiveFileOperator (GpgFrontend )ArchiveStruct (GpgFrontend )
+
AboutDialog (GpgFrontend::UI )AdvancedTab (GpgFrontend::UI )AppearanceTab (GpgFrontend::UI )ArchiveFileOperator (GpgFrontend )ArchiveStruct (GpgFrontend )GpgKeyManager::AutomatonHandelStruct (GpgFrontend )
C
CacheManager (GpgFrontend )ChannelObject (GpgFrontend )CharsetOperator (GpgFrontend )ChoosePage (GpgFrontend::UI )class CommonUtils (GpgFrontend::UI )ConclusionPage (GpgFrontend::UI )CoreCommonUtil (GpgFrontend )CoreSignalStation (GpgFrontend )MainWindow::CryptoMenu (GpgFrontend::UI )CtxCheckTask (GpgFrontend::Thread )
@@ -105,7 +105,7 @@ $(document).ready(function(){initNavTree('classes.html',''); initResizable(); })
FileOperator (GpgFrontend )FilePage (GpgFrontend::UI )FileReadTask (GpgFrontend::UI )FindWidget (GpgFrontend::UI )
G
-GeneralDialog (GpgFrontend::UI )GeneralMainWindow (GpgFrontend::UI )GeneralTab (GpgFrontend::UI )GenKeyInfo (GpgFrontend )GlobalSettingStation (GpgFrontend )GnupgTab (GpgFrontend::UI )GpgAdvancedOperator (GpgFrontend )GpgBasicOperator (GpgFrontend )GpgCommandExecutor (GpgFrontend )GpgConstants (GpgFrontend )GpgContext (GpgFrontend )GpgContextInitArgs (GpgFrontend )GpgData (GpgFrontend )GpgDecryptResultAnalyse (GpgFrontend )GpgEncryptResultAnalyse (GpgFrontend )GpgFileOpera (GpgFrontend )GpgFrontendApplication (GpgFrontend::UI )GpgImportedKey (GpgFrontend )GpgImportInformation (GpgFrontend )GpgInfo (GpgFrontend )GpgKey (GpgFrontend )GpgKeyGetter (GpgFrontend )GpgKeyImportExporter (GpgFrontend )GpgKeyManager (GpgFrontend )GpgKeyOpera (GpgFrontend )GpgKeySignature (GpgFrontend )GpgResultAnalyse (GpgFrontend )GpgSignature (GpgFrontend )GpgSignResultAnalyse (GpgFrontend )GpgSubKey (GpgFrontend )GpgTOFUInfo (GpgFrontend )GpgUID (GpgFrontend )GpgUIDOperator (GpgFrontend )GpgVerifyResultAnalyse (GpgFrontend )
+
GeneralDialog (GpgFrontend::UI )GeneralMainWindow (GpgFrontend::UI )GeneralTab (GpgFrontend::UI )GenKeyInfo (GpgFrontend )GlobalSettingStation (GpgFrontend )GnuPGControllerDialog (GpgFrontend::UI )GnupgTab (GpgFrontend::UI )GpgAdvancedOperator (GpgFrontend )GpgBasicOperator (GpgFrontend )GpgCommandExecutor (GpgFrontend )GpgConstants (GpgFrontend )GpgContext (GpgFrontend )GpgContextInitArgs (GpgFrontend )GpgData (GpgFrontend )GpgDecryptResultAnalyse (GpgFrontend )GpgEncryptResultAnalyse (GpgFrontend )GpgFileOpera (GpgFrontend )GpgFrontendApplication (GpgFrontend::UI )GpgImportedKey (GpgFrontend )GpgImportInformation (GpgFrontend )GpgInfo (GpgFrontend )GpgKey (GpgFrontend )GpgKeyGetter (GpgFrontend )GpgKeyImportExporter (GpgFrontend )GpgKeyManager (GpgFrontend )GpgKeyOpera (GpgFrontend )GpgKeySignature (GpgFrontend )GpgResultAnalyse (GpgFrontend )GpgSignature (GpgFrontend )GpgSignResultAnalyse (GpgFrontend )GpgSubKey (GpgFrontend )GpgTOFUInfo (GpgFrontend )GpgUID (GpgFrontend )GpgUIDOperator (GpgFrontend )GpgVerifyResultAnalyse (GpgFrontend )
H
HelpPage (GpgFrontend::UI )
@@ -126,7 +126,7 @@ $(document).ready(function(){initNavTree('classes.html',''); initResizable(); })
NetworkTab (GpgFrontend::UI )
P
-PassphraseGenerator (GpgFrontend )PlainTextEditorPage (GpgFrontend::UI )ProxyConnectionTestThread (GpgFrontend::UI )ProxyConnectionTestThread
+
PassphraseGenerator (GpgFrontend )PlainTextEditorPage (GpgFrontend::UI )ProxyConnectionTestTask (GpgFrontend::UI )ProxyConnectionTestThread
Q
QuitDialog (GpgFrontend::UI )
@@ -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/classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread-members.html b/docs/html/dir_074045c6ecbcc6148037e9f97e06715b.html
similarity index 54%
rename from docs/html/classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread-members.html
rename to docs/html/dir_074045c6ecbcc6148037e9f97e06715b.html
index 375f7648..eaff8953 100644
--- a/docs/html/classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread-members.html
+++ b/docs/html/dir_074045c6ecbcc6148037e9f97e06715b.html
@@ -5,7 +5,7 @@
-
GpgFrontend Project: Member List
+
GpgFrontend Project: src/ui/dialog/gnupg Directory Reference
@@ -63,7 +63,7 @@ $(function() {
@@ -83,23 +83,15 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1ProxyConnect
-
-
This is the complete list of members for GpgFrontend::UI::ProxyConnectionTestThread , including all inherited members.
-
+
diff --git a/docs/html/dir_074045c6ecbcc6148037e9f97e06715b.js b/docs/html/dir_074045c6ecbcc6148037e9f97e06715b.js
new file mode 100644
index 00000000..8907921d
--- /dev/null
+++ b/docs/html/dir_074045c6ecbcc6148037e9f97e06715b.js
@@ -0,0 +1,4 @@
+var dir_074045c6ecbcc6148037e9f97e06715b =
+[
+ [ "GnuPGControllerDialog.h", "GnuPGControllerDialog_8h_source.html", null ]
+];
\ No newline at end of file
diff --git a/docs/html/dir_0cd9bde2c64af64bc3733ed8ca8e04b3.js b/docs/html/dir_0cd9bde2c64af64bc3733ed8ca8e04b3.js
index de09b349..a5cc0d36 100644
--- a/docs/html/dir_0cd9bde2c64af64bc3733ed8ca8e04b3.js
+++ b/docs/html/dir_0cd9bde2c64af64bc3733ed8ca8e04b3.js
@@ -3,6 +3,6 @@ var dir_0cd9bde2c64af64bc3733ed8ca8e04b3 =
[ "KeyServerImportTask.h", "KeyServerImportTask_8h_source.html", null ],
[ "KeyServerSearchTask.h", "KeyServerSearchTask_8h_source.html", null ],
[ "ListedKeyServerTestTask.h", "ListedKeyServerTestTask_8h_source.html", null ],
- [ "ProxyConnectionTestThread.h", "ProxyConnectionTestThread_8h_source.html", null ],
+ [ "ProxyConnectionTestTask.h", "ProxyConnectionTestTask_8h_source.html", null ],
[ "VersionCheckTask.h", "VersionCheckTask_8h_source.html", null ]
];
\ No newline at end of file
diff --git a/docs/html/dir_60d155722ad55e64f9b6ab1078feff11.js b/docs/html/dir_60d155722ad55e64f9b6ab1078feff11.js
index 941d74ca..b1f32c2e 100644
--- a/docs/html/dir_60d155722ad55e64f9b6ab1078feff11.js
+++ b/docs/html/dir_60d155722ad55e64f9b6ab1078feff11.js
@@ -1,6 +1,7 @@
var dir_60d155722ad55e64f9b6ab1078feff11 =
[
[ "details", "dir_00e48bdfb963d228cbb8d1392ea3be3d.html", "dir_00e48bdfb963d228cbb8d1392ea3be3d" ],
+ [ "gnupg", "dir_074045c6ecbcc6148037e9f97e06715b.html", "dir_074045c6ecbcc6148037e9f97e06715b" ],
[ "help", "dir_e2aa8803ed3498b184755f32f6c016d5.html", "dir_e2aa8803ed3498b184755f32f6c016d5" ],
[ "import_export", "dir_0652c688762e27a1001e51709de145a7.html", "dir_0652c688762e27a1001e51709de145a7" ],
[ "key_generate", "dir_181bea3d8ae4b1f9a028d86ce05f5b90.html", "dir_181bea3d8ae4b1f9a028d86ce05f5b90" ],
diff --git a/docs/html/files.html b/docs/html/files.html
index 085177da..351cab71 100644
--- a/docs/html/files.html
+++ b/docs/html/files.html
@@ -148,66 +148,68 @@ $(document).ready(function(){initNavTree('files.html',''); initResizable(); });
► details
SignatureDetailsDialog.h
VerifyDetailsDialog.h
- ► help
- AboutDialog.h
- GnupgTab.h
- ► import_export
- ExportKeyPackageDialog.h
- KeyImportDetailDialog.h
- KeyServerImportDialog.h
- KeyUploadDialog.h
- ► key_generate
- KeygenDialog.h
- SubkeyGenerateDialog.h
- ► keypair_details
- KeyDetailsDialog.h
- KeyNewUIDDialog.h
- KeyPairDetailTab.h
- KeyPairOperaTab.h
- KeyPairSubkeyTab.h
- KeyPairUIDTab.h
- KeySetExpireDateDialog.h
- KeyUIDSignDialog.h
- ► settings
- SettingsAdvanced.h
- SettingsAppearance.h
- SettingsDialog.h
- SettingsGeneral.h
- SettingsKeyServer.h
- SettingsNetwork.h
- GeneralDialog.h
- QuitDialog.h
- SignersPicker.h
- WaitingDialog.h
- Wizard.h
- ▼ main_window
- GeneralMainWindow.h
- KeyMgmt.h
- MainWindow.h
- ▼ struct
- SettingsObject.h
- SoftwareVersion.h
- ▼ thread
- KeyServerImportTask.h
- KeyServerSearchTask.h
- ListedKeyServerTestTask.h
- ProxyConnectionTestThread.h
- VersionCheckTask.h
- ▼ widgets
- FilePage.h
- FindWidget.h
- HelpPage.h
- InfoBoardWidget.h
- KeyList.h
- PlainTextEditorPage.h
- TextEdit.h
- TOFUInfoPage.h
- VerifyKeyDetailBox.h
- GpgFrontendApplication.h
- GpgFrontendUI.h
- GpgFrontendUIInit.h
- SignalStation.h
- UserInterfaceUtils.h
+ ► gnupg
+ GnuPGControllerDialog.h
+ ► help
+ AboutDialog.h
+ GnupgTab.h
+ ► import_export
+ ExportKeyPackageDialog.h
+ KeyImportDetailDialog.h
+ KeyServerImportDialog.h
+ KeyUploadDialog.h
+ ► key_generate
+ KeygenDialog.h
+ SubkeyGenerateDialog.h
+ ► keypair_details
+ KeyDetailsDialog.h
+ KeyNewUIDDialog.h
+ KeyPairDetailTab.h
+ KeyPairOperaTab.h
+ KeyPairSubkeyTab.h
+ KeyPairUIDTab.h
+ KeySetExpireDateDialog.h
+ KeyUIDSignDialog.h
+ ► settings
+ SettingsAdvanced.h
+ SettingsAppearance.h
+ SettingsDialog.h
+ SettingsGeneral.h
+ SettingsKeyServer.h
+ SettingsNetwork.h
+ GeneralDialog.h
+ QuitDialog.h
+ SignersPicker.h
+ WaitingDialog.h
+ Wizard.h
+ ▼ main_window
+ GeneralMainWindow.h
+ KeyMgmt.h
+ MainWindow.h
+ ▼ struct
+ SettingsObject.h
+ SoftwareVersion.h
+ ▼ thread
+ KeyServerImportTask.h
+ KeyServerSearchTask.h
+ ListedKeyServerTestTask.h
+ ProxyConnectionTestTask.h
+ VersionCheckTask.h
+ ▼ widgets
+ FilePage.h
+ FindWidget.h
+ HelpPage.h
+ InfoBoardWidget.h
+ KeyList.h
+ PlainTextEditorPage.h
+ TextEdit.h
+ TOFUInfoPage.h
+ VerifyKeyDetailBox.h
+ GpgFrontendApplication.h
+ GpgFrontendUI.h
+ GpgFrontendUIInit.h
+ SignalStation.h
+ UserInterfaceUtils.h
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 -
ChannelObject()
-: GpgFrontend::ChannelObject
+: GpgFrontend::ChannelObject
Check()
-: GpgFrontend::UI::SettingsObject
+: GpgFrontend::UI::SettingsObject
check_binary_chacksum()
: GpgFrontend::GpgContext
diff --git a/docs/html/functions_func.html b/docs/html/functions_func.html
index 83f92315..0e348f4c 100644
--- a/docs/html/functions_func.html
+++ b/docs/html/functions_func.html
@@ -89,7 +89,7 @@ $(document).ready(function(){initNavTree('functions_func.html',''); initResizabl
: GpgFrontend::UI::AboutDialog
AddListGroupTab()
-: GpgFrontend::UI::KeyList
+: GpgFrontend::UI::KeyList
AddMenuAction()
: GpgFrontend::UI::KeyList
diff --git a/docs/html/functions_func_c.html b/docs/html/functions_func_c.html
index f275fa3b..43804846 100644
--- a/docs/html/functions_func_c.html
+++ b/docs/html/functions_func_c.html
@@ -85,11 +85,14 @@ $(document).ready(function(){initNavTree('functions_func_c.html',''); initResiza
- c -
+CacheManager()
+: GpgFrontend::CacheManager
+
CalculateHash()
: GpgFrontend::FileOperator
ChannelObject()
-: GpgFrontend::ChannelObject
+: GpgFrontend::ChannelObject
Check()
: GpgFrontend::UI::SettingsObject
diff --git a/docs/html/functions_func_g.html b/docs/html/functions_func_g.html
index 3f5a59ec..e195994a 100644
--- a/docs/html/functions_func_g.html
+++ b/docs/html/functions_func_g.html
@@ -131,7 +131,8 @@ $(document).ready(function(){initNavTree('functions_func_g.html',''); initResiza
: GpgFrontend::GpgKeyGetter
get_restart_needed()
-: GpgFrontend::UI::MainWindow
+: GpgFrontend::UI::GnuPGControllerDialog
+, GpgFrontend::UI::MainWindow
, GpgFrontend::UI::SettingsDialog
get_selected_subkey()
@@ -295,6 +296,9 @@ $(document).ready(function(){initNavTree('functions_func_g.html',''); initResiza
GetOwnerTrust()
: GpgFrontend::GpgKey
+GetOwnerTrustLevel()
+: GpgFrontend::GpgKey
+
GetPassPhrase()
: GpgFrontend::GenKeyInfo
@@ -402,7 +406,7 @@ $(document).ready(function(){initNavTree('functions_func_g.html',''); initResiza
: GpgFrontend::UI::QuitDialog
GetTempCacheValue()
-: GpgFrontend::CoreCommonUtil
+: GpgFrontend::CoreCommonUtil
GetTextPage()
: GpgFrontend::UI::PlainTextEditorPage
@@ -418,7 +422,7 @@ $(document).ready(function(){initNavTree('functions_func_g.html',''); initResiza
: GpgFrontend::GpgKey
GetUISettings()
-: GpgFrontend::GlobalSettingStation
+: GpgFrontend::GlobalSettingStation
GetUserid()
: GpgFrontend::GenKeyInfo
@@ -433,6 +437,9 @@ $(document).ready(function(){initNavTree('functions_func_g.html',''); initResiza
GlobalSettingStation()
: GpgFrontend::GlobalSettingStation
+GnuPGControllerDialog()
+: GpgFrontend::UI::GnuPGControllerDialog
+
GnupgTab()
: GpgFrontend::UI::GnupgTab
@@ -485,7 +492,7 @@ $(document).ready(function(){initNavTree('functions_func_g.html',''); initResiza
: GpgFrontend::GpgKeyOpera
GpgKeySignature()
-: GpgFrontend::GpgKeySignature
+: GpgFrontend::GpgKeySignature
GpgResultAnalyse()
: GpgFrontend::GpgResultAnalyse
diff --git a/docs/html/functions_func_k.html b/docs/html/functions_func_k.html
index 58109585..98d82a77 100644
--- a/docs/html/functions_func_k.html
+++ b/docs/html/functions_func_k.html
@@ -135,7 +135,7 @@ $(document).ready(function(){initNavTree('functions_func_k.html',''); initResiza
: GpgFrontend::UI::KeySetExpireDateDialog
KeyTable()
-: GpgFrontend::UI::KeyTable
+: GpgFrontend::UI::KeyTable
KeyUIDSignDialog()
: GpgFrontend::UI::KeyUIDSignDialog
diff --git a/docs/html/functions_func_l.html b/docs/html/functions_func_l.html
index ea6c87c0..d91e4159 100644
--- a/docs/html/functions_func_l.html
+++ b/docs/html/functions_func_l.html
@@ -97,6 +97,9 @@ $(document).ready(function(){initNavTree('functions_func_l.html',''); initResiza
localized_help()
: GpgFrontend::UI::HelpPage
+LookupSettings()
+: GpgFrontend::GlobalSettingStation
+
diff --git a/docs/html/functions_func_p.html b/docs/html/functions_func_p.html
index 2f10fb0e..8fadd51f 100644
--- a/docs/html/functions_func_p.html
+++ b/docs/html/functions_func_p.html
@@ -109,8 +109,8 @@ $(document).ready(function(){initNavTree('functions_func_p.html',''); initResiza
print_signer()
: GpgFrontend::GpgVerifyResultAnalyse
-ProxyConnectionTestThread()
-: GpgFrontend::UI::ProxyConnectionTestThread
+ ProxyConnectionTestTask()
+: GpgFrontend::UI::ProxyConnectionTestTask
diff --git a/docs/html/functions_func_r.html b/docs/html/functions_func_r.html
index 141f88f8..196dffd7 100644
--- a/docs/html/functions_func_r.html
+++ b/docs/html/functions_func_r.html
@@ -121,7 +121,7 @@ $(document).ready(function(){initNavTree('functions_func_r.html',''); initResiza
: GpgFrontend::UI::InfoBoardWidget
ResetTempCacheValue()
-: GpgFrontend::CoreCommonUtil
+: GpgFrontend::CoreCommonUtil
RestartGpgComponents()
: GpgFrontend::GpgAdvancedOperator
@@ -139,12 +139,7 @@ $(document).ready(function(){initNavTree('functions_func_r.html',''); initResiza
: GpgFrontend::Thread::CtxCheckTask
, GpgFrontend::Thread::Task
, GpgFrontend::UI::FileReadTask
-
-run()
-: GpgFrontend::UI::ProxyConnectionTestThread
-
-Run()
-: GpgFrontend::UI::VersionCheckTask
+, GpgFrontend::UI::VersionCheckTask
diff --git a/docs/html/functions_func_s.html b/docs/html/functions_func_s.html
index bf77f900..422885f1 100644
--- a/docs/html/functions_func_s.html
+++ b/docs/html/functions_func_s.html
@@ -91,9 +91,6 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza
save_settings()
: GpgFrontend::UI::MainWindow
-SaveCache()
-: GpgFrontend::CacheManager
-
set_background()
: GpgFrontend::UI::FindWidget
@@ -129,7 +126,7 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza
: GpgFrontend::ChannelObject
SetChecked()
-: GpgFrontend::UI::KeyList
+: GpgFrontend::UI::KeyList
, GpgFrontend::UI::KeyTable
SetColumnWidth()
@@ -181,6 +178,9 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza
SetObjectInChannel()
: GpgFrontend::SingletonStorage
+SetOwnerTrustLevel()
+: GpgFrontend::GpgKeyManager
+
SetPassPhrase()
: GpgFrontend::GenKeyInfo
@@ -203,13 +203,13 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza
: GpgFrontend::GpgBasicOperator
SetTempCacheValue()
-: GpgFrontend::CoreCommonUtil
+: GpgFrontend::CoreCommonUtil
SettingsDialog()
: GpgFrontend::UI::SettingsDialog
SettingsObject()
-: GpgFrontend::UI::SettingsObject
+: GpgFrontend::UI::SettingsObject
showEvent()
: GpgFrontend::UI::AboutDialog
@@ -242,7 +242,7 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza
: GpgFrontend::UI::FilePage
SignalProxyConnectionTestResult()
-: GpgFrontend::UI::ProxyConnectionTestThread
+: GpgFrontend::UI::ProxyConnectionTestTask
SignalRefreshInfoBoard()
: GpgFrontend::UI::FilePage
@@ -260,6 +260,7 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza
SignalRestartNeeded()
: GpgFrontend::UI::GeneralTab
+, GpgFrontend::UI::GnuPGControllerDialog
, GpgFrontend::UI::KeyserverTab
, GpgFrontend::UI::SettingsDialog
@@ -314,9 +315,15 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza
slot_compress_files()
: GpgFrontend::UI::FilePage
+slot_copy_default_uid_to_clipboard()
+: GpgFrontend::UI::MainWindow
+
slot_copy_fingerprint()
: GpgFrontend::UI::KeyPairDetailTab
+slot_copy_key_id_to_clipboard()
+: GpgFrontend::UI::MainWindow
+
slot_copy_mail_address_to_clipboard()
: GpgFrontend::UI::MainWindow
@@ -411,7 +418,8 @@ $(document).ready(function(){initNavTree('functions_func_s.html',''); initResiza
: GpgFrontend::UI::TextEdit
slot_set_restart_needed()
-: GpgFrontend::UI::SettingsDialog
+: GpgFrontend::UI::GnuPGControllerDialog
+, GpgFrontend::UI::SettingsDialog
slot_show_key_details()
: GpgFrontend::UI::MainWindow
diff --git a/docs/html/functions_g.html b/docs/html/functions_g.html
index f4b28142..9cf57a75 100644
--- a/docs/html/functions_g.html
+++ b/docs/html/functions_g.html
@@ -131,7 +131,8 @@ $(document).ready(function(){initNavTree('functions_g.html',''); initResizable()
: GpgFrontend::GpgKeyGetter
get_restart_needed()
-: GpgFrontend::UI::MainWindow
+: GpgFrontend::UI::GnuPGControllerDialog
+, GpgFrontend::UI::MainWindow
, GpgFrontend::UI::SettingsDialog
get_selected_subkey()
@@ -295,6 +296,9 @@ $(document).ready(function(){initNavTree('functions_g.html',''); initResizable()
GetOwnerTrust()
: GpgFrontend::GpgKey
+GetOwnerTrustLevel()
+: GpgFrontend::GpgKey
+
GetPassPhrase()
: GpgFrontend::GenKeyInfo
@@ -402,7 +406,7 @@ $(document).ready(function(){initNavTree('functions_g.html',''); initResizable()
: GpgFrontend::UI::QuitDialog
GetTempCacheValue()
-: GpgFrontend::CoreCommonUtil
+: GpgFrontend::CoreCommonUtil
GetTextPage()
: GpgFrontend::UI::PlainTextEditorPage
@@ -418,7 +422,7 @@ $(document).ready(function(){initNavTree('functions_g.html',''); initResizable()
: GpgFrontend::GpgKey
GetUISettings()
-: GpgFrontend::GlobalSettingStation
+: GpgFrontend::GlobalSettingStation
GetUserid()
: GpgFrontend::GenKeyInfo
@@ -439,6 +443,9 @@ $(document).ready(function(){initNavTree('functions_g.html',''); initResizable()
gnupg_act_
: GpgFrontend::UI::MainWindow
+GnuPGControllerDialog()
+: GpgFrontend::UI::GnuPGControllerDialog
+
GnuPGHomePath
: GpgFrontend::GpgInfo
@@ -506,7 +513,7 @@ $(document).ready(function(){initNavTree('functions_g.html',''); initResizable()
: GpgFrontend::GpgKeyOpera
GpgKeySignature()
-: GpgFrontend::GpgKeySignature
+: GpgFrontend::GpgKeySignature
GpgResultAnalyse()
: GpgFrontend::GpgResultAnalyse
@@ -518,7 +525,7 @@ $(document).ready(function(){initNavTree('functions_g.html',''); initResizable()
: GpgFrontend::GpgSignResultAnalyse
GpgSubKey()
-: GpgFrontend::GpgSubKey
+: GpgFrontend::GpgSubKey
GpgTOFUInfo()
: GpgFrontend::GpgTOFUInfo
diff --git a/docs/html/functions_k.html b/docs/html/functions_k.html
index 9b323fe9..7a5480ad 100644
--- a/docs/html/functions_k.html
+++ b/docs/html/functions_k.html
@@ -181,7 +181,7 @@ $(document).ready(function(){initNavTree('functions_k.html',''); initResizable()
: GpgFrontend::UI::KeySetExpireDateDialog
KeyTable()
-: GpgFrontend::UI::KeyTable
+: GpgFrontend::UI::KeyTable
KeyUIDSignDialog()
: GpgFrontend::UI::KeyUIDSignDialog
diff --git a/docs/html/functions_l.html b/docs/html/functions_l.html
index 7f2c7eb1..92728b3c 100644
--- a/docs/html/functions_l.html
+++ b/docs/html/functions_l.html
@@ -100,6 +100,9 @@ $(document).ready(function(){initNavTree('functions_l.html',''); initResizable()
localized_help()
: GpgFrontend::UI::HelpPage
+LookupSettings()
+: GpgFrontend::GlobalSettingStation
+
diff --git a/docs/html/functions_p.html b/docs/html/functions_p.html
index c3d4c905..03a27b24 100644
--- a/docs/html/functions_p.html
+++ b/docs/html/functions_p.html
@@ -121,8 +121,8 @@ $(document).ready(function(){initNavTree('functions_p.html',''); initResizable()
print_signer()
: GpgFrontend::GpgVerifyResultAnalyse
-ProxyConnectionTestThread()
-: GpgFrontend::UI::ProxyConnectionTestThread
+ ProxyConnectionTestTask()
+: GpgFrontend::UI::ProxyConnectionTestTask
diff --git a/docs/html/functions_r.html b/docs/html/functions_r.html
index cc518f22..c5c7ccea 100644
--- a/docs/html/functions_r.html
+++ b/docs/html/functions_r.html
@@ -128,7 +128,7 @@ $(document).ready(function(){initNavTree('functions_r.html',''); initResizable()
: GpgFrontend::UI::InfoBoardWidget
ResetTempCacheValue()
-: GpgFrontend::CoreCommonUtil
+: GpgFrontend::CoreCommonUtil
RestartGpgComponents()
: GpgFrontend::GpgAdvancedOperator
@@ -146,12 +146,7 @@ $(document).ready(function(){initNavTree('functions_r.html',''); initResizable()
: GpgFrontend::Thread::CtxCheckTask
, GpgFrontend::Thread::Task
, GpgFrontend::UI::FileReadTask
-
-run()
-: GpgFrontend::UI::ProxyConnectionTestThread
-
-Run()
-: GpgFrontend::UI::VersionCheckTask
+, GpgFrontend::UI::VersionCheckTask
diff --git a/docs/html/functions_s.html b/docs/html/functions_s.html
index a2edde60..88dd34da 100644
--- a/docs/html/functions_s.html
+++ b/docs/html/functions_s.html
@@ -97,9 +97,6 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable()
save_settings()
: GpgFrontend::UI::MainWindow
-SaveCache()
-: GpgFrontend::CacheManager
-
select_all_act_
: GpgFrontend::UI::MainWindow
@@ -193,6 +190,9 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable()
SetObjectInChannel()
: GpgFrontend::SingletonStorage
+SetOwnerTrustLevel()
+: GpgFrontend::GpgKeyManager
+
SetPassPhrase()
: GpgFrontend::GenKeyInfo
@@ -215,13 +215,13 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable()
: GpgFrontend::GpgBasicOperator
SetTempCacheValue()
-: GpgFrontend::CoreCommonUtil
+: GpgFrontend::CoreCommonUtil
SettingsDialog()
: GpgFrontend::UI::SettingsDialog
SettingsObject()
-: GpgFrontend::UI::SettingsObject
+: GpgFrontend::UI::SettingsObject
show_key_details_act_
: GpgFrontend::UI::MainWindow
@@ -263,7 +263,7 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable()
: GpgFrontend::UI::FilePage
SignalProxyConnectionTestResult()
-: GpgFrontend::UI::ProxyConnectionTestThread
+: GpgFrontend::UI::ProxyConnectionTestTask
SignalRefreshInfoBoard()
: GpgFrontend::UI::FilePage
@@ -281,6 +281,7 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable()
SignalRestartNeeded()
: GpgFrontend::UI::GeneralTab
+, GpgFrontend::UI::GnuPGControllerDialog
, GpgFrontend::UI::KeyserverTab
, GpgFrontend::UI::SettingsDialog
@@ -335,9 +336,15 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable()
slot_compress_files()
: GpgFrontend::UI::FilePage
+slot_copy_default_uid_to_clipboard()
+: GpgFrontend::UI::MainWindow
+
slot_copy_fingerprint()
: GpgFrontend::UI::KeyPairDetailTab
+slot_copy_key_id_to_clipboard()
+: GpgFrontend::UI::MainWindow
+
slot_copy_mail_address_to_clipboard()
: GpgFrontend::UI::MainWindow
@@ -432,7 +439,8 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable()
: GpgFrontend::UI::TextEdit
slot_set_restart_needed()
-: GpgFrontend::UI::SettingsDialog
+: GpgFrontend::UI::GnuPGControllerDialog
+, GpgFrontend::UI::SettingsDialog
slot_show_key_details()
: GpgFrontend::UI::MainWindow
@@ -517,7 +525,7 @@ $(document).ready(function(){initNavTree('functions_s.html',''); initResizable()
: GpgFrontend::UI::CommonUtils
SlotImportKeyFromKeyServer()
-: GpgFrontend::UI::CommonUtils
+: GpgFrontend::UI::CommonUtils
SlotImportKeys()
: GpgFrontend::UI::CommonUtils
diff --git a/docs/html/hierarchy.html b/docs/html/hierarchy.html
index cae59359..5405f4b8 100644
--- a/docs/html/hierarchy.html
+++ b/docs/html/hierarchy.html
@@ -96,7 +96,7 @@ This inheritance list is sorted roughly, but not completely, alphabetically: C GpgFrontend::_result_ref_deletor Result Deleter
C GpgFrontend::ArchiveFileOperator
C GpgFrontend::ArchiveStruct
- C GpgFrontend::CacheManager
+ C GpgFrontend::GpgKeyManager::AutomatonHandelStruct
► C GpgFrontend::ChannelObject Object which in channel system
► C GpgFrontend::SingletonFunctionObject< GpgUIDOperator >
C GpgFrontend::GpgUIDOperator
@@ -114,19 +114,21 @@ This inheritance list is sorted roughly, but not completely, alphabetically: C GpgFrontend::GpgFileOpera
► C GpgFrontend::SingletonFunctionObject< GpgKeyGetter >
C GpgFrontend::GpgKeyGetter
- ► C GpgFrontend::SingletonFunctionObject< GpgBasicOperator >
- C GpgFrontend::GpgBasicOperator Basic operation collection
- ► C GpgFrontend::SingletonFunctionObject< GpgAdvancedOperator >
- C GpgFrontend::GpgAdvancedOperator
- ► C GpgFrontend::SingletonFunctionObject< GlobalSettingStation >
- C GpgFrontend::GlobalSettingStation
- ► C GpgFrontend::SingletonFunctionObject< DataObjectOperator >
- C GpgFrontend::DataObjectOperator
- ► C GpgFrontend::SingletonFunctionObject< PassphraseGenerator >
- C GpgFrontend::PassphraseGenerator The PassphraseGenerator class
- ► C GpgFrontend::SingletonFunctionObject< GpgContext >
- C GpgFrontend::GpgContext
- C GpgFrontend::SingletonFunctionObject< T >
+ ► C GpgFrontend::SingletonFunctionObject< CacheManager >
+ C GpgFrontend::CacheManager
+ ► C GpgFrontend::SingletonFunctionObject< GpgBasicOperator >
+ C GpgFrontend::GpgBasicOperator Basic operation collection
+ ► C GpgFrontend::SingletonFunctionObject< GpgAdvancedOperator >
+ C GpgFrontend::GpgAdvancedOperator
+ ► C GpgFrontend::SingletonFunctionObject< GlobalSettingStation >
+ C GpgFrontend::GlobalSettingStation
+ ► C GpgFrontend::SingletonFunctionObject< DataObjectOperator >
+ C GpgFrontend::DataObjectOperator
+ ► C GpgFrontend::SingletonFunctionObject< PassphraseGenerator >
+ C GpgFrontend::PassphraseGenerator The PassphraseGenerator class
+ ► C GpgFrontend::SingletonFunctionObject< GpgContext >
+ C GpgFrontend::GpgContext
+ C GpgFrontend::SingletonFunctionObject< T >
C GpgFrontend::CharsetOperator
C class Executive files related to the basic operations that are provided by GpgBasicOperator
C GpgFrontend::UI::MainWindow::CryptoMenu
@@ -165,21 +167,22 @@ This inheritance list is sorted roughly, but not completely, alphabetically: ► C GpgFrontend::UI::GeneralDialog
C GpgFrontend::UI::AboutDialog Class for handling the about dialog
C GpgFrontend::UI::ExportKeyPackageDialog
- C GpgFrontend::UI::KeyDetailsDialog
- C GpgFrontend::UI::KeyGenDialog
- C GpgFrontend::UI::KeyImportDetailDialog
- C GpgFrontend::UI::KeyNewUIDDialog
- C GpgFrontend::UI::KeyServerImportDialog
- C GpgFrontend::UI::KeySetExpireDateDialog
- C GpgFrontend::UI::KeyUIDSignDialog
- C GpgFrontend::UI::KeyUploadDialog
- C GpgFrontend::UI::QuitDialog
- C GpgFrontend::UI::SettingsDialog
- C GpgFrontend::UI::SignersPicker
- C GpgFrontend::UI::SubkeyGenerateDialog
+ C GpgFrontend::UI::GnuPGControllerDialog
+ C GpgFrontend::UI::KeyDetailsDialog
+ C GpgFrontend::UI::KeyGenDialog
+ C GpgFrontend::UI::KeyImportDetailDialog
+ C GpgFrontend::UI::KeyNewUIDDialog
+ C GpgFrontend::UI::KeyServerImportDialog
+ C GpgFrontend::UI::KeySetExpireDateDialog
+ C GpgFrontend::UI::KeyUIDSignDialog
+ C GpgFrontend::UI::KeyUploadDialog
+ C GpgFrontend::UI::QuitDialog
+ C GpgFrontend::UI::SettingsDialog
+ C GpgFrontend::UI::SignersPicker
+ C GpgFrontend::UI::SubkeyGenerateDialog
+ C GpgFrontend::UI::WaitingDialog
C GpgFrontend::UI::VerifyDetailsDialog
- C GpgFrontend::UI::WaitingDialog
- C SignatureDetailsDialog
+ C SignatureDetailsDialog
► C QGroupBox
C GpgFrontend::UI::VerifyKeyDetailBox
► C QMainWindow
@@ -187,22 +190,23 @@ This inheritance list is sorted roughly, but not completely, alphabetically: C GpgFrontend::UI::KeyMgmt
C GpgFrontend::UI::MainWindow
► C QObject
- C GpgFrontend::CoreCommonUtil
- C GpgFrontend::CoreSignalStation
- C GpgFrontend::GpgContext
- ► C GpgFrontend::Thread::Task
- C GpgFrontend::Thread::CtxCheckTask
- C GpgFrontend::UI::FileReadTask
- C GpgFrontend::UI::KeyServerImportTask
- C GpgFrontend::UI::KeyServerSearchTask
- C GpgFrontend::UI::ListedKeyServerTestTask
- C GpgFrontend::UI::VersionCheckTask
- C GpgFrontend::UI::SignalStation
+ C GpgFrontend::CacheManager
+ C GpgFrontend::CoreCommonUtil
+ C GpgFrontend::CoreSignalStation
+ C GpgFrontend::GpgContext
+ ► C GpgFrontend::Thread::Task
+ C GpgFrontend::Thread::CtxCheckTask
+ C GpgFrontend::UI::FileReadTask
+ C GpgFrontend::UI::KeyServerImportTask
+ C GpgFrontend::UI::KeyServerSearchTask
+ C GpgFrontend::UI::ListedKeyServerTestTask
+ C GpgFrontend::UI::ProxyConnectionTestTask
+ C GpgFrontend::UI::VersionCheckTask
+ C GpgFrontend::UI::SignalStation
► C QRunnable
C GpgFrontend::Thread::Task
► C QThread
C GpgFrontend::Thread::TaskRunner
- C GpgFrontend::UI::ProxyConnectionTestThread
► C QWidget
C GpgFrontend::UI::AdvancedTab
C GpgFrontend::UI::AppearanceTab
@@ -237,6 +241,8 @@ This inheritance list is sorted roughly, but not completely, alphabetically: C GpgFrontend::SingletonStorageCollection
C GpgFrontend::UI::SoftwareVersion
C TestListedKeyServerThread
+ C GpgFrontend::ThreadSafeMap< Key, Value >
+ C GpgFrontend::ThreadSafeMap< std::string, nlohmann::json >
diff --git a/docs/html/hierarchy.js b/docs/html/hierarchy.js
index 98113d93..580e904e 100644
--- a/docs/html/hierarchy.js
+++ b/docs/html/hierarchy.js
@@ -6,7 +6,7 @@ var hierarchy =
[ "GpgFrontend::_result_ref_deletor", "structGpgFrontend_1_1__result__ref__deletor.html", null ],
[ "GpgFrontend::ArchiveFileOperator", "classGpgFrontend_1_1ArchiveFileOperator.html", null ],
[ "GpgFrontend::ArchiveStruct", "structGpgFrontend_1_1ArchiveStruct.html", null ],
- [ "GpgFrontend::CacheManager", "classGpgFrontend_1_1CacheManager.html", null ],
+ [ "GpgFrontend::GpgKeyManager::AutomatonHandelStruct", "structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html", null ],
[ "GpgFrontend::ChannelObject", "classGpgFrontend_1_1ChannelObject.html", [
[ "GpgFrontend::SingletonFunctionObject< GpgUIDOperator >", "classGpgFrontend_1_1SingletonFunctionObject.html", [
[ "GpgFrontend::GpgUIDOperator", "classGpgFrontend_1_1GpgUIDOperator.html", null ]
@@ -32,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 ]
] ],
@@ -93,6 +96,7 @@ var hierarchy =
[ "GpgFrontend::UI::GeneralDialog", "classGpgFrontend_1_1UI_1_1GeneralDialog.html", [
[ "GpgFrontend::UI::AboutDialog", "classGpgFrontend_1_1UI_1_1AboutDialog.html", null ],
[ "GpgFrontend::UI::ExportKeyPackageDialog", "classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html", null ],
+ [ "GpgFrontend::UI::GnuPGControllerDialog", "classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html", null ],
[ "GpgFrontend::UI::KeyDetailsDialog", "classGpgFrontend_1_1UI_1_1KeyDetailsDialog.html", null ],
[ "GpgFrontend::UI::KeyGenDialog", "classGpgFrontend_1_1UI_1_1KeyGenDialog.html", null ],
[ "GpgFrontend::UI::KeyImportDetailDialog", "classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html", null ],
@@ -104,10 +108,10 @@ var hierarchy =
[ "GpgFrontend::UI::QuitDialog", "classGpgFrontend_1_1UI_1_1QuitDialog.html", null ],
[ "GpgFrontend::UI::SettingsDialog", "classGpgFrontend_1_1UI_1_1SettingsDialog.html", null ],
[ "GpgFrontend::UI::SignersPicker", "classGpgFrontend_1_1UI_1_1SignersPicker.html", null ],
- [ "GpgFrontend::UI::SubkeyGenerateDialog", "classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html", null ]
+ [ "GpgFrontend::UI::SubkeyGenerateDialog", "classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html", null ],
+ [ "GpgFrontend::UI::WaitingDialog", "classGpgFrontend_1_1UI_1_1WaitingDialog.html", null ]
] ],
[ "GpgFrontend::UI::VerifyDetailsDialog", "classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html", null ],
- [ "GpgFrontend::UI::WaitingDialog", "classGpgFrontend_1_1UI_1_1WaitingDialog.html", null ],
[ "SignatureDetailsDialog", "classSignatureDetailsDialog.html", null ]
] ],
[ "QGroupBox", null, [
@@ -120,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 ],
@@ -129,6 +134,7 @@ var hierarchy =
[ "GpgFrontend::UI::KeyServerImportTask", "classGpgFrontend_1_1UI_1_1KeyServerImportTask.html", null ],
[ "GpgFrontend::UI::KeyServerSearchTask", "classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html", null ],
[ "GpgFrontend::UI::ListedKeyServerTestTask", "classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html", null ],
+ [ "GpgFrontend::UI::ProxyConnectionTestTask", "classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask.html", null ],
[ "GpgFrontend::UI::VersionCheckTask", "classGpgFrontend_1_1UI_1_1VersionCheckTask.html", null ]
] ],
[ "GpgFrontend::UI::SignalStation", "classGpgFrontend_1_1UI_1_1SignalStation.html", null ]
@@ -137,8 +143,7 @@ var hierarchy =
[ "GpgFrontend::Thread::Task", "classGpgFrontend_1_1Thread_1_1Task.html", null ]
] ],
[ "QThread", null, [
- [ "GpgFrontend::Thread::TaskRunner", "classGpgFrontend_1_1Thread_1_1TaskRunner.html", null ],
- [ "GpgFrontend::UI::ProxyConnectionTestThread", "classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.html", null ]
+ [ "GpgFrontend::Thread::TaskRunner", "classGpgFrontend_1_1Thread_1_1TaskRunner.html", null ]
] ],
[ "QWidget", null, [
[ "GpgFrontend::UI::AdvancedTab", "classGpgFrontend_1_1UI_1_1AdvancedTab.html", null ],
@@ -176,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_30.map b/docs/html/inherit_graph_30.map
index d0e856d5..5a644d0a 100644
--- a/docs/html/inherit_graph_30.map
+++ b/docs/html/inherit_graph_30.map
@@ -1,5 +1,4 @@
-
-
-
+
+
diff --git a/docs/html/inherit_graph_30.md5 b/docs/html/inherit_graph_30.md5
index 5d096d0e..59bceb9b 100644
--- a/docs/html/inherit_graph_30.md5
+++ b/docs/html/inherit_graph_30.md5
@@ -1 +1 @@
-0ace91fca82083c90daae10102dc6a17
\ 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 6752b532..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 cec50a25..dea2d84b 100644
--- a/docs/html/inherit_graph_31.map
+++ b/docs/html/inherit_graph_31.map
@@ -1,25 +1,3 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
diff --git a/docs/html/inherit_graph_31.md5 b/docs/html/inherit_graph_31.md5
index e31e0d99..a8aa08f3 100644
--- a/docs/html/inherit_graph_31.md5
+++ b/docs/html/inherit_graph_31.md5
@@ -1 +1 @@
-c76c1a5b53653b0b1a67cc30480dfc02
\ 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 2e7aa383..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 d8791b2b..ada8b122 100644
--- a/docs/html/inherit_graph_32.map
+++ b/docs/html/inherit_graph_32.map
@@ -1,7 +1,3 @@
-
-
-
-
-
+
diff --git a/docs/html/inherit_graph_32.md5 b/docs/html/inherit_graph_32.md5
index 6a063c6a..ba64d620 100644
--- a/docs/html/inherit_graph_32.md5
+++ b/docs/html/inherit_graph_32.md5
@@ -1 +1 @@
-8096954063b270dae6b0e0279fe8f4cb
\ 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 7505725c..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 37eae43f..cec50a25 100644
--- a/docs/html/inherit_graph_33.map
+++ b/docs/html/inherit_graph_33.map
@@ -1,21 +1,25 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/html/inherit_graph_33.md5 b/docs/html/inherit_graph_33.md5
index 782c04cb..f9ebb669 100644
--- a/docs/html/inherit_graph_33.md5
+++ b/docs/html/inherit_graph_33.md5
@@ -1 +1 @@
-c3feebfc5a0a2dcad09fbd9c98e95e52
\ 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 14b2bcf4..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 278c28b2..d8791b2b 100644
--- a/docs/html/inherit_graph_34.map
+++ b/docs/html/inherit_graph_34.map
@@ -1,6 +1,7 @@
-
-
-
-
+
+
+
+
+
diff --git a/docs/html/inherit_graph_34.md5 b/docs/html/inherit_graph_34.md5
index cecdf901..a4b8abbe 100644
--- a/docs/html/inherit_graph_34.md5
+++ b/docs/html/inherit_graph_34.md5
@@ -1 +1 @@
-2d75ff5f2c2861a9cb542f6b5e3fb497
\ 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 167a05ae..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 a6560208..1b98b48e 100644
--- a/docs/html/inherit_graph_35.map
+++ b/docs/html/inherit_graph_35.map
@@ -1,4 +1,22 @@
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/html/inherit_graph_35.md5 b/docs/html/inherit_graph_35.md5
index 1a64c2e6..5c538359 100644
--- a/docs/html/inherit_graph_35.md5
+++ b/docs/html/inherit_graph_35.md5
@@ -1 +1 @@
-14cd673e0e35416bc23861c500e3168a
\ No newline at end of file
+03dace9a36fddb5557668946c2c298f6
\ No newline at end of file
diff --git a/docs/html/inherit_graph_35.png b/docs/html/inherit_graph_35.png
index 22472a0f..fa3fd09f 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 de2fe616..278c28b2 100644
--- a/docs/html/inherit_graph_36.map
+++ b/docs/html/inherit_graph_36.map
@@ -1,3 +1,6 @@
-
+
+
+
+
diff --git a/docs/html/inherit_graph_36.md5 b/docs/html/inherit_graph_36.md5
index 5f317227..55d8b738 100644
--- a/docs/html/inherit_graph_36.md5
+++ b/docs/html/inherit_graph_36.md5
@@ -1 +1 @@
-d8bfc67c6fcad865c4de6b86abcb52aa
\ 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 6ec3146e..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 f26315cd..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 a06ad2ca..67201341 100644
--- a/docs/html/inherit_graph_37.md5
+++ b/docs/html/inherit_graph_37.md5
@@ -1 +1 @@
-a5ce13082b48f8346234bc9e39550ea9
\ 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 3d6c385f..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 d34840bc..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 fadc4f70..5f317227 100644
--- a/docs/html/inherit_graph_38.md5
+++ b/docs/html/inherit_graph_38.md5
@@ -1 +1 @@
-bdb19714dbd31ee948af506e783bfc14
\ 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 f0711b73..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 43d1c673..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 679a97cb..a06ad2ca 100644
--- a/docs/html/inherit_graph_39.md5
+++ b/docs/html/inherit_graph_39.md5
@@ -1 +1 @@
-e88663b74b7197688f6fbcedcbe651b6
\ 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 d48a772a..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 77af59c0..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 203c87da..fadc4f70 100644
--- a/docs/html/inherit_graph_40.md5
+++ b/docs/html/inherit_graph_40.md5
@@ -1 +1 @@
-99a82ffd7c169b3f9f1f9a230a12b22f
\ 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 678b318c..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 19be2033..43d1c673 100644
--- a/docs/html/inherit_graph_41.map
+++ b/docs/html/inherit_graph_41.map
@@ -1,4 +1,3 @@
-
-
+
diff --git a/docs/html/inherit_graph_41.md5 b/docs/html/inherit_graph_41.md5
index c6e0db06..679a97cb 100644
--- a/docs/html/inherit_graph_41.md5
+++ b/docs/html/inherit_graph_41.md5
@@ -1 +1 @@
-1ddbc69bd8b7286064b55e576435d774
\ 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 e978b89c..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 99288330..77af59c0 100644
--- a/docs/html/inherit_graph_42.map
+++ b/docs/html/inherit_graph_42.map
@@ -1,3 +1,3 @@
-
+
diff --git a/docs/html/inherit_graph_42.md5 b/docs/html/inherit_graph_42.md5
index c76b2a1c..203c87da 100644
--- a/docs/html/inherit_graph_42.md5
+++ b/docs/html/inherit_graph_42.md5
@@ -1 +1 @@
-89bed224fd4b3037c4e7c72ca711e793
\ 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 da9479da..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 1abbd7b3..19be2033 100644
--- a/docs/html/inherit_graph_43.map
+++ b/docs/html/inherit_graph_43.map
@@ -1,4 +1,4 @@
-
-
+
+
diff --git a/docs/html/inherit_graph_43.md5 b/docs/html/inherit_graph_43.md5
index a8aefda2..5d89ab24 100644
--- a/docs/html/inherit_graph_43.md5
+++ b/docs/html/inherit_graph_43.md5
@@ -1 +1 @@
-4acb4f868e87339a404d8425b969c72a
\ 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 df17752b..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 569af5e0..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 d4b0087d..c76b2a1c 100644
--- a/docs/html/inherit_graph_44.md5
+++ b/docs/html/inherit_graph_44.md5
@@ -1 +1 @@
-567b5f558aa5a56a8d3e8f170d0c8da5
\ 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 0d9fe6d6..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 2e91ed66..1abbd7b3 100644
--- a/docs/html/inherit_graph_45.map
+++ b/docs/html/inherit_graph_45.map
@@ -1,3 +1,4 @@
-
+
+
diff --git a/docs/html/inherit_graph_45.md5 b/docs/html/inherit_graph_45.md5
index 280d1f72..44ff2d66 100644
--- a/docs/html/inherit_graph_45.md5
+++ b/docs/html/inherit_graph_45.md5
@@ -1 +1 @@
-faad65e3c2b73b58bf858017c070d502
\ 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 76e99ccf..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 7ae9e6f7..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 252e7bf2..356e91aa 100644
--- a/docs/html/inherit_graph_46.md5
+++ b/docs/html/inherit_graph_46.md5
@@ -1 +1 @@
-887dffb153b07479b921903ca1ba9e8f
\ 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 d1972672..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
new file mode 100644
index 00000000..2e91ed66
--- /dev/null
+++ b/docs/html/inherit_graph_47.map
@@ -0,0 +1,3 @@
+
+
+
diff --git a/docs/html/inherit_graph_47.md5 b/docs/html/inherit_graph_47.md5
new file mode 100644
index 00000000..280d1f72
--- /dev/null
+++ b/docs/html/inherit_graph_47.md5
@@ -0,0 +1 @@
+faad65e3c2b73b58bf858017c070d502
\ No newline at end of file
diff --git a/docs/html/inherit_graph_47.png b/docs/html/inherit_graph_47.png
new file mode 100644
index 00000000..76e99ccf
Binary files /dev/null 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 4780934c..8d9390be 100644
--- a/docs/html/inherit_graph_5.map
+++ b/docs/html/inherit_graph_5.map
@@ -1,44 +1,3 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
diff --git a/docs/html/inherit_graph_5.md5 b/docs/html/inherit_graph_5.md5
index 4b1810d9..11504a4c 100644
--- a/docs/html/inherit_graph_5.md5
+++ b/docs/html/inherit_graph_5.md5
@@ -1 +1 @@
-86f3d396a1c5152cfbc1ca039ed5dc74
\ 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 4f33df03..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 4347b996..3d3ec049 100644
--- a/docs/html/inherits.html
+++ b/docs/html/inherits.html
@@ -109,14 +109,9 @@ $(document).ready(function(){initNavTree('hierarchy.html',''); initResizable();
-
-
-
-
-
-
+
-
+
@@ -126,105 +121,113 @@ $(document).ready(function(){initNavTree('hierarchy.html',''); initResizable();
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+
@@ -286,12 +289,21 @@ $(document).ready(function(){initNavTree('hierarchy.html',''); initResizable();
-
-
-
+
+
-
+
+
+
+
+
+
+
+
+
+
+
@@ -318,7 +330,7 @@ $(document).ready(function(){initNavTree('hierarchy.html',''); initResizable();
-
+
@@ -327,30 +339,31 @@ $(document).ready(function(){initNavTree('hierarchy.html',''); initResizable();
-
+
-
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
@@ -358,66 +371,66 @@ $(document).ready(function(){initNavTree('hierarchy.html',''); initResizable();
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/docs/html/namespaceGpgFrontend.html b/docs/html/namespaceGpgFrontend.html
index 99d037fa..aa085f06 100644
--- a/docs/html/namespaceGpgFrontend.html
+++ b/docs/html/namespaceGpgFrontend.html
@@ -110,6 +110,8 @@ Classes
class ArchiveFileOperator
+class ThreadSafeMap
+
class CacheManager
class CharsetOperator
@@ -545,7 +547,7 @@ const int GPGFRONTEND_NON_
Returns GpgError
- Referenced by GpgFrontend::GpgBasicOperator::Decrypt() , GpgFrontend::GpgBasicOperator::DecryptVerify() , GpgFrontend::GpgKeyOpera::DeleteKeys() , GpgFrontend::GpgBasicOperator::Encrypt() , GpgFrontend::GpgBasicOperator::EncryptSign() , GpgFrontend::GpgBasicOperator::EncryptSymmetric() , GpgFrontend::GpgKeyOpera::GenerateKey() , GpgFrontend::GpgKeyOpera::GenerateSubkey() , GpgFrontend::GpgContext::GpgContext() , GpgFrontend::GpgKeyImportExporter::ImportKey() , GpgFrontend::GpgKeyOpera::ModifyPassword() , GpgFrontend::GpgKeyOpera::ModifyTOFUPolicy() , GpgFrontend::GpgContext::post_init_ctx() , GpgFrontend::GpgKeyManager::RevSign() , GpgFrontend::GpgUIDOperator::RevUID() , GpgFrontend::GpgKeyManager::SetExpire() , GpgFrontend::GpgUIDOperator::SetPrimaryUID() , GpgFrontend::GpgBasicOperator::SetSigners() , GpgFrontend::GpgBasicOperator::Sign() , GpgFrontend::GpgKeyManager::SignKey() , and GpgFrontend::GpgBasicOperator::Verify() .
+Referenced by GpgFrontend::GpgBasicOperator::Decrypt() , GpgFrontend::GpgBasicOperator::DecryptVerify() , GpgFrontend::GpgKeyOpera::DeleteKeys() , GpgFrontend::GpgBasicOperator::Encrypt() , GpgFrontend::GpgBasicOperator::EncryptSign() , GpgFrontend::GpgBasicOperator::EncryptSymmetric() , GpgFrontend::GpgKeyOpera::GenerateKey() , GpgFrontend::GpgKeyOpera::GenerateSubkey() , GpgFrontend::GpgContext::GpgContext() , GpgFrontend::GpgKeyImportExporter::ImportKey() , GpgFrontend::GpgKeyOpera::ModifyPassword() , GpgFrontend::GpgKeyOpera::ModifyTOFUPolicy() , GpgFrontend::GpgKeyManager::RevSign() , GpgFrontend::GpgUIDOperator::RevUID() , GpgFrontend::GpgKeyManager::SetExpire() , GpgFrontend::GpgUIDOperator::SetPrimaryUID() , GpgFrontend::GpgBasicOperator::SetSigners() , GpgFrontend::GpgBasicOperator::Sign() , GpgFrontend::GpgKeyManager::SignKey() , and GpgFrontend::GpgBasicOperator::Verify() .
@@ -619,7 +621,7 @@ const int GPGFRONTEND_NON_
Returns gpg_err_code_t
- Referenced by GpgFrontend::GpgUIDOperator::AddUID() , GpgFrontend::GpgFileOpera::DecryptFile() , GpgFrontend::GpgFileOpera::DecryptVerifyFile() , GpgFrontend::GpgFileOpera::EncryptFile() , GpgFrontend::GpgFileOpera::EncryptFileSymmetric() , GpgFrontend::GpgFileOpera::EncryptSignFile() , GpgFrontend::GpgKeyImportExporter::ExportKey() , GpgFrontend::GpgKeyImportExporter::ExportKeyOpenSSH() , GpgFrontend::GpgKeyImportExporter::ExportSecretKey() , GpgFrontend::GpgKeyImportExporter::ExportSecretKeyShortest() , GpgFrontend::GpgKeyGetter::FlushKeyCache() , GpgFrontend::GpgKeyOpera::GenerateKey() , GpgFrontend::GpgContext::GpgContext() , GpgFrontend::GpgContext::post_init_ctx() , GpgFrontend::GpgKeyManager::RevSign() , GpgFrontend::GpgUIDOperator::RevUID() , GpgFrontend::GpgKeyManager::SetExpire() , GpgFrontend::GpgUIDOperator::SetPrimaryUID() , GpgFrontend::GpgFileOpera::SignFile() , GpgFrontend::GpgKeyManager::SignKey() , GpgFrontend::UI::MainWindow::slot_decrypt() , GpgFrontend::UI::MainWindow::slot_decrypt_verify() , GpgFrontend::UI::MainWindow::slot_encrypt() , GpgFrontend::UI::MainWindow::slot_encrypt_sign() , GpgFrontend::UI::SubkeyGenerateDialog::slot_key_gen_accept() , GpgFrontend::UI::MainWindow::slot_sign() , and GpgFrontend::UI::MainWindow::slot_verify() .
+Referenced by GpgFrontend::GpgUIDOperator::AddUID() , GpgFrontend::GpgFileOpera::DecryptFile() , GpgFrontend::GpgFileOpera::DecryptVerifyFile() , GpgFrontend::GpgFileOpera::EncryptFile() , GpgFrontend::GpgFileOpera::EncryptFileSymmetric() , GpgFrontend::GpgFileOpera::EncryptSignFile() , GpgFrontend::GpgKeyImportExporter::ExportKey() , GpgFrontend::GpgKeyImportExporter::ExportKeyOpenSSH() , GpgFrontend::GpgKeyImportExporter::ExportSecretKey() , GpgFrontend::GpgKeyImportExporter::ExportSecretKeyShortest() , GpgFrontend::GpgKeyGetter::FlushKeyCache() , GpgFrontend::GpgKeyOpera::GenerateKey() , GpgFrontend::GpgContext::GpgContext() , GpgFrontend::GpgContext::post_init_ctx() , GpgFrontend::GpgKeyManager::RevSign() , GpgFrontend::GpgUIDOperator::RevUID() , GpgFrontend::GpgKeyManager::SetExpire() , GpgFrontend::GpgKeyManager::SetOwnerTrustLevel() , GpgFrontend::GpgUIDOperator::SetPrimaryUID() , GpgFrontend::GpgFileOpera::SignFile() , GpgFrontend::GpgKeyManager::SignKey() , GpgFrontend::UI::MainWindow::slot_decrypt() , GpgFrontend::UI::MainWindow::slot_decrypt_verify() , GpgFrontend::UI::MainWindow::slot_encrypt() , GpgFrontend::UI::MainWindow::slot_encrypt_sign() , GpgFrontend::UI::SubkeyGenerateDialog::slot_key_gen_accept() , GpgFrontend::UI::MainWindow::slot_sign() , and GpgFrontend::UI::MainWindow::slot_verify() .
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/namespaceGpgFrontend_1_1UI.html b/docs/html/namespaceGpgFrontend_1_1UI.html
index de9c88d1..d7f11f01 100644
--- a/docs/html/namespaceGpgFrontend_1_1UI.html
+++ b/docs/html/namespaceGpgFrontend_1_1UI.html
@@ -99,6 +99,8 @@ Classes
class GeneralDialog
+class GnuPGControllerDialog
+
class InfoTab
Class containing the main tab of about dialog. More...
@@ -190,7 +192,7 @@ Classes
class ListedKeyServerTestTask
-class ProxyConnectionTestThread
+class ProxyConnectionTestTask
class VersionCheckTask
diff --git a/docs/html/namespaceGpgFrontend_1_1UI.js b/docs/html/namespaceGpgFrontend_1_1UI.js
index 9943fe8e..9c02493b 100644
--- a/docs/html/namespaceGpgFrontend_1_1UI.js
+++ b/docs/html/namespaceGpgFrontend_1_1UI.js
@@ -3,6 +3,7 @@ var namespaceGpgFrontend_1_1UI =
[ "FileReadTask", "classGpgFrontend_1_1UI_1_1FileReadTask.html", "classGpgFrontend_1_1UI_1_1FileReadTask" ],
[ "VerifyDetailsDialog", "classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html", "classGpgFrontend_1_1UI_1_1VerifyDetailsDialog" ],
[ "GeneralDialog", "classGpgFrontend_1_1UI_1_1GeneralDialog.html", "classGpgFrontend_1_1UI_1_1GeneralDialog" ],
+ [ "GnuPGControllerDialog", "classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html", "classGpgFrontend_1_1UI_1_1GnuPGControllerDialog" ],
[ "InfoTab", "classGpgFrontend_1_1UI_1_1InfoTab.html", "classGpgFrontend_1_1UI_1_1InfoTab" ],
[ "TranslatorsTab", "classGpgFrontend_1_1UI_1_1TranslatorsTab.html", "classGpgFrontend_1_1UI_1_1TranslatorsTab" ],
[ "UpdateTab", "classGpgFrontend_1_1UI_1_1UpdateTab.html", "classGpgFrontend_1_1UI_1_1UpdateTab" ],
@@ -46,7 +47,7 @@ var namespaceGpgFrontend_1_1UI =
[ "KeyServerImportTask", "classGpgFrontend_1_1UI_1_1KeyServerImportTask.html", "classGpgFrontend_1_1UI_1_1KeyServerImportTask" ],
[ "KeyServerSearchTask", "classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html", "classGpgFrontend_1_1UI_1_1KeyServerSearchTask" ],
[ "ListedKeyServerTestTask", "classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html", "classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask" ],
- [ "ProxyConnectionTestThread", "classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.html", "classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread" ],
+ [ "ProxyConnectionTestTask", "classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask.html", "classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask" ],
[ "VersionCheckTask", "classGpgFrontend_1_1UI_1_1VersionCheckTask.html", "classGpgFrontend_1_1UI_1_1VersionCheckTask" ],
[ "CommonUtils", "classGpgFrontend_1_1UI_1_1CommonUtils.html", "classGpgFrontend_1_1UI_1_1CommonUtils" ],
[ "FilePage", "classGpgFrontend_1_1UI_1_1FilePage.html", "classGpgFrontend_1_1UI_1_1FilePage" ],
diff --git a/docs/html/namespaces.html b/docs/html/namespaces.html
index ee20d443..716161be 100644
--- a/docs/html/namespaces.html
+++ b/docs/html/namespaces.html
@@ -101,113 +101,116 @@ $(document).ready(function(){initNavTree('namespaces.html',''); initResizable();
C FileReadTask
C VerifyDetailsDialog
C GeneralDialog
- C InfoTab Class containing the main tab of about dialog
- C TranslatorsTab Class containing the translator tab of about dialog
- C UpdateTab Class containing the main tab of about dialog
- C AboutDialog Class for handling the about dialog
- C GnupgTab
- C ExportKeyPackageDialog
- C KeyImportDetailDialog
- C KeyServerImportDialog
- C KeyUploadDialog
- C KeyGenDialog
- C SubkeyGenerateDialog
- C KeyDetailsDialog
- C KeyNewUIDDialog
- C KeyPairDetailTab
- C KeyPairOperaTab
- C KeyPairSubkeyTab
- C KeyPairUIDTab
- C KeySetExpireDateDialog
- C KeyUIDSignDialog
- C QuitDialog
- C AdvancedTab
- C AppearanceTab
- C SettingsDialog
- C GeneralTab
- C KeyserverTab
- C NetworkTab
- C SignersPicker
- C WaitingDialog
- C Wizard
- C IntroPage
- C ChoosePage
- C KeyGenPage
- C ConclusionPage
- C GpgFrontendApplication
- C GeneralMainWindow
- C KeyMgmt
- ► C MainWindow
- C CryptoMenu
- C SignalStation
- C SettingsObject The SettingsObject class This class is used to store settings for the application securely
- C SoftwareVersion
- C KeyServerImportTask
- C KeyServerSearchTask
- C ListedKeyServerTestTask
- C ProxyConnectionTestThread
- C VersionCheckTask
- C CommonUtils
- C FilePage
- C FindWidget Class for handling the find widget shown at buttom of a textedit-page
- C HelpPage
- C InfoBoardWidget Class for handling the verify label shown at bottom of a textedit-page
- C KeyListRow
- C KeyListColumn
- C KeyMenuAbility
- C KeyTable
- C KeyList
- C PlainTextEditorPage Class for handling a single tab of the tabwidget
- C TextEdit TextEdit class
- C TOFUInfoPage
- C VerifyKeyDetailBox
+ C GnuPGControllerDialog
+ C InfoTab Class containing the main tab of about dialog
+ C TranslatorsTab Class containing the translator tab of about dialog
+ C UpdateTab Class containing the main tab of about dialog
+ C AboutDialog Class for handling the about dialog
+ C GnupgTab
+ C ExportKeyPackageDialog
+ C KeyImportDetailDialog
+ C KeyServerImportDialog
+ C KeyUploadDialog
+ C KeyGenDialog
+ C SubkeyGenerateDialog
+ C KeyDetailsDialog
+ C KeyNewUIDDialog
+ C KeyPairDetailTab
+ C KeyPairOperaTab
+ C KeyPairSubkeyTab
+ C KeyPairUIDTab
+ C KeySetExpireDateDialog
+ C KeyUIDSignDialog
+ C QuitDialog
+ C AdvancedTab
+ C AppearanceTab
+ C SettingsDialog
+ C GeneralTab
+ C KeyserverTab
+ C NetworkTab
+ C SignersPicker
+ C WaitingDialog
+ C Wizard
+ C IntroPage
+ C ChoosePage
+ C KeyGenPage
+ C ConclusionPage
+ C GpgFrontendApplication
+ C GeneralMainWindow
+ C KeyMgmt
+ ► C MainWindow
+ C CryptoMenu
+ C SignalStation
+ C SettingsObject The SettingsObject class This class is used to store settings for the application securely
+ C SoftwareVersion
+ C KeyServerImportTask
+ C KeyServerSearchTask
+ C ListedKeyServerTestTask
+ C ProxyConnectionTestTask
+ C VersionCheckTask
+ C CommonUtils
+ C FilePage
+ C FindWidget Class for handling the find widget shown at buttom of a textedit-page
+ C HelpPage
+ C InfoBoardWidget Class for handling the verify label shown at bottom of a textedit-page
+ C KeyListRow
+ C KeyListColumn
+ C KeyMenuAbility
+ C KeyTable
+ C KeyList
+ C PlainTextEditorPage Class for handling a single tab of the tabwidget
+ C TextEdit TextEdit class
+ C TOFUInfoPage
+ C VerifyKeyDetailBox
C CoreCommonUtil
C ArchiveStruct
C ArchiveFileOperator
- C CacheManager
- C CharsetOperator
- C CoreSignalStation
- C DataObjectOperator
- C FileOperator File operations
- C GlobalSettingStation
- C GpgAdvancedOperator
- C GpgBasicOperator Basic operation collection
- C GpgCommandExecutor Extra commands related to GPG
- C GpgFileOpera
- C GpgKeyGetter
- C GpgImportedKey
- C GpgImportInformation
- C GpgKeyImportExporter
- C GpgKeyManager
- C GpgKeyOpera
- C GpgUIDOperator
- C KeyPackageOperator Give the possibility to import or export a key package
- C PassphraseGenerator The PassphraseGenerator class
- C GpgDecryptResultAnalyse
- C GpgEncryptResultAnalyse
- C GpgResultAnalyse
- C GpgSignResultAnalyse
- C GpgVerifyResultAnalyse
- C _result_ref_deletor Result Deleter
- C GpgConstants
- C GpgContextInitArgs
- ► C GpgContext
- C _ctx_ref_deleter
- C ChannelObject Object which in channel system
- C SingletonStorage
- C SingletonStorageCollection
- C SingletonFunctionObject
- C GenKeyInfo
- C GpgInfo Use to record some info about gnupg
- ► C GpgData
- C _data_ref_deleter
- ► C GpgKey
- C _key_ref_deleter
- C GpgKeySignature
- C GpgSignature
- C GpgSubKey
- C GpgTOFUInfo
- C GpgUID
+ C ThreadSafeMap
+ C CacheManager
+ C CharsetOperator
+ C CoreSignalStation
+ C DataObjectOperator
+ C FileOperator File operations
+ C GlobalSettingStation
+ C GpgAdvancedOperator
+ C GpgBasicOperator Basic operation collection
+ C GpgCommandExecutor Extra commands related to GPG
+ C GpgFileOpera
+ C GpgKeyGetter
+ C GpgImportedKey
+ C GpgImportInformation
+ C GpgKeyImportExporter
+ ► C GpgKeyManager
+ C AutomatonHandelStruct
+ C GpgKeyOpera
+ C GpgUIDOperator
+ C KeyPackageOperator Give the possibility to import or export a key package
+ C PassphraseGenerator The PassphraseGenerator class
+ C GpgDecryptResultAnalyse
+ C GpgEncryptResultAnalyse
+ C GpgResultAnalyse
+ C GpgSignResultAnalyse
+ C GpgVerifyResultAnalyse
+ C _result_ref_deletor Result Deleter
+ C GpgConstants
+ C GpgContextInitArgs
+ ► C GpgContext
+ C _ctx_ref_deleter
+ C ChannelObject Object which in channel system
+ C SingletonStorage
+ C SingletonStorageCollection
+ C SingletonFunctionObject
+ C GenKeyInfo
+ C GpgInfo Use to record some info about gnupg
+ ► C GpgData
+ C _data_ref_deleter
+ ► C GpgKey
+ C _key_ref_deleter
+ C GpgKeySignature
+ C GpgSignature
+ C GpgSubKey
+ C GpgTOFUInfo
+ C GpgUID
diff --git a/docs/html/navtreedata.js b/docs/html/navtreedata.js
index 5ac0cb9a..024adce0 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#a387ad457bb729f340f680d0b743733ad",
-"classGpgFrontend_1_1GpgSignature.html#a3b143f6e13b71663d81fc0f326aad17f",
-"classGpgFrontend_1_1UI_1_1FilePage.html#a48fb14a3296f19f9b1c3b9b48c3a1bf3",
-"classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#ae2dcd1d3f6264f6e58d8b69aa0511321",
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a5e95f62dac9fba1ead6ec69c145923db",
-"classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#aeef0138e48f7e5f823f2cce9692d4649",
-"structGpgFrontend_1_1UI_1_1KeyTable.html#ae0713ebbc21e78995db9a856d746fe6c"
+"classGpgFrontend_1_1GlobalSettingStation.html#a6459653a71cc8285fa554943c7fb3ca7",
+"classGpgFrontend_1_1GpgKeySignature.html#acd5e46397ebea3224761a6af15eea4fb",
+"classGpgFrontend_1_1UI_1_1ChoosePage.html#ae370e789009be3926410cb749c86907b",
+"classGpgFrontend_1_1UI_1_1KeyList.html#a947f4ce45285b58bbde94f4ae879ff7a",
+"classGpgFrontend_1_1UI_1_1KeyserverTab.html#a74f30a1f6314b6156f4df20652129c5d",
+"classGpgFrontend_1_1UI_1_1SignersPicker.html#aba7633983da57c7a7eb2710a1f33f7ac",
+"namespaceGpgFrontend.html#ada6a044ece8975e35b2a229f65249713"
];
var SYNCONMSG = 'click to disable panel synchronisation';
diff --git a/docs/html/navtreeindex0.js b/docs/html/navtreeindex0.js
index 98b3a1c3..811bad5a 100644
--- a/docs/html/navtreeindex0.js
+++ b/docs/html/navtreeindex0.js
@@ -1,6 +1,6 @@
var NAVTREEINDEX0 =
{
-"AboutDialog_8h_source.html":[3,0,0,1,0,1,0],
+"AboutDialog_8h_source.html":[3,0,0,1,0,2,0],
"ArchiveFileOperator_8h_source.html":[3,0,0,0,1,3],
"CacheManager_8h_source.html":[3,0,0,0,1,4],
"CharsetOperator_8h_source.html":[3,0,0,0,1,5],
@@ -8,15 +8,16 @@ var NAVTREEINDEX0 =
"CoreSignalStation_8h_source.html":[3,0,0,0,1,6],
"CtxCheckTask_8h_source.html":[3,0,0,0,3,0],
"DataObjectOperator_8h_source.html":[3,0,0,0,1,7],
-"ExportKeyPackageDialog_8h_source.html":[3,0,0,1,0,2,0],
+"ExportKeyPackageDialog_8h_source.html":[3,0,0,1,0,3,0],
"FileOperator_8h_source.html":[3,0,0,0,1,8],
"FilePage_8h_source.html":[3,0,0,1,4,0],
"FileReadTask_8h_source.html":[3,0,0,0,3,1],
"FindWidget_8h_source.html":[3,0,0,1,4,1],
-"GeneralDialog_8h_source.html":[3,0,0,1,0,6],
+"GeneralDialog_8h_source.html":[3,0,0,1,0,7],
"GeneralMainWindow_8h_source.html":[3,0,0,1,1,0],
"GlobalSettingStation_8h_source.html":[3,0,0,0,1,9],
-"GnupgTab_8h_source.html":[3,0,0,1,0,1,1],
+"GnuPGControllerDialog_8h_source.html":[3,0,0,1,0,1,0],
+"GnupgTab_8h_source.html":[3,0,0,1,0,2,1],
"GpgAdvancedOperator_8h_source.html":[3,0,0,0,1,1,0],
"GpgBasicOperator_8h_source.html":[3,0,0,0,1,1,1],
"GpgCommandExecutor_8h_source.html":[3,0,0,0,1,1,2],
@@ -51,41 +52,41 @@ var NAVTREEINDEX0 =
"GpgVerifyResultAnalyse_8h_source.html":[3,0,0,0,1,2,4],
"HelpPage_8h_source.html":[3,0,0,1,4,2],
"InfoBoardWidget_8h_source.html":[3,0,0,1,4,3],
-"KeyDetailsDialog_8h_source.html":[3,0,0,1,0,4,0],
-"KeyImportDetailDialog_8h_source.html":[3,0,0,1,0,2,1],
+"KeyDetailsDialog_8h_source.html":[3,0,0,1,0,5,0],
+"KeyImportDetailDialog_8h_source.html":[3,0,0,1,0,3,1],
"KeyList_8h_source.html":[3,0,0,1,4,4],
"KeyMgmt_8h_source.html":[3,0,0,1,1,1],
-"KeyNewUIDDialog_8h_source.html":[3,0,0,1,0,4,1],
+"KeyNewUIDDialog_8h_source.html":[3,0,0,1,0,5,1],
"KeyPackageOperator_8h_source.html":[3,0,0,0,1,10],
-"KeyPairDetailTab_8h_source.html":[3,0,0,1,0,4,2],
-"KeyPairOperaTab_8h_source.html":[3,0,0,1,0,4,3],
-"KeyPairSubkeyTab_8h_source.html":[3,0,0,1,0,4,4],
-"KeyPairUIDTab_8h_source.html":[3,0,0,1,0,4,5],
-"KeyServerImportDialog_8h_source.html":[3,0,0,1,0,2,2],
+"KeyPairDetailTab_8h_source.html":[3,0,0,1,0,5,2],
+"KeyPairOperaTab_8h_source.html":[3,0,0,1,0,5,3],
+"KeyPairSubkeyTab_8h_source.html":[3,0,0,1,0,5,4],
+"KeyPairUIDTab_8h_source.html":[3,0,0,1,0,5,5],
+"KeyServerImportDialog_8h_source.html":[3,0,0,1,0,3,2],
"KeyServerImportTask_8h_source.html":[3,0,0,1,3,0],
"KeyServerSearchTask_8h_source.html":[3,0,0,1,3,1],
-"KeySetExpireDateDialog_8h_source.html":[3,0,0,1,0,4,6],
-"KeyUIDSignDialog_8h_source.html":[3,0,0,1,0,4,7],
-"KeyUploadDialog_8h_source.html":[3,0,0,1,0,2,3],
-"KeygenDialog_8h_source.html":[3,0,0,1,0,3,0],
+"KeySetExpireDateDialog_8h_source.html":[3,0,0,1,0,5,6],
+"KeyUIDSignDialog_8h_source.html":[3,0,0,1,0,5,7],
+"KeyUploadDialog_8h_source.html":[3,0,0,1,0,3,3],
+"KeygenDialog_8h_source.html":[3,0,0,1,0,4,0],
"ListedKeyServerTestTask_8h_source.html":[3,0,0,1,3,2],
"MainWindow_8h_source.html":[3,0,0,1,1,2],
"PassphraseGenerator_8h_source.html":[3,0,0,0,1,11],
"PlainTextEditorPage_8h_source.html":[3,0,0,1,4,5],
-"ProxyConnectionTestThread_8h_source.html":[3,0,0,1,3,3],
-"QuitDialog_8h_source.html":[3,0,0,1,0,7],
-"SettingsAdvanced_8h_source.html":[3,0,0,1,0,5,0],
-"SettingsAppearance_8h_source.html":[3,0,0,1,0,5,1],
-"SettingsDialog_8h_source.html":[3,0,0,1,0,5,2],
-"SettingsGeneral_8h_source.html":[3,0,0,1,0,5,3],
-"SettingsKeyServer_8h_source.html":[3,0,0,1,0,5,4],
-"SettingsNetwork_8h_source.html":[3,0,0,1,0,5,5],
+"ProxyConnectionTestTask_8h_source.html":[3,0,0,1,3,3],
+"QuitDialog_8h_source.html":[3,0,0,1,0,8],
+"SettingsAdvanced_8h_source.html":[3,0,0,1,0,6,0],
+"SettingsAppearance_8h_source.html":[3,0,0,1,0,6,1],
+"SettingsDialog_8h_source.html":[3,0,0,1,0,6,2],
+"SettingsGeneral_8h_source.html":[3,0,0,1,0,6,3],
+"SettingsKeyServer_8h_source.html":[3,0,0,1,0,6,4],
+"SettingsNetwork_8h_source.html":[3,0,0,1,0,6,5],
"SettingsObject_8h_source.html":[3,0,0,1,2,0],
"SignalStation_8h_source.html":[3,0,0,1,8],
"SignatureDetailsDialog_8h_source.html":[3,0,0,1,0,0,0],
-"SignersPicker_8h_source.html":[3,0,0,1,0,8],
+"SignersPicker_8h_source.html":[3,0,0,1,0,9],
"SoftwareVersion_8h_source.html":[3,0,0,1,2,1],
-"SubkeyGenerateDialog_8h_source.html":[3,0,0,1,0,3,1],
+"SubkeyGenerateDialog_8h_source.html":[3,0,0,1,0,4,1],
"TOFUInfoPage_8h_source.html":[3,0,0,1,4,7],
"TaskRunnerGetter_8h_source.html":[3,0,0,0,3,4],
"TaskRunner_8h_source.html":[3,0,0,0,3,3],
@@ -96,158 +97,157 @@ var NAVTREEINDEX0 =
"VerifyDetailsDialog_8h_source.html":[3,0,0,1,0,0,1],
"VerifyKeyDetailBox_8h_source.html":[3,0,0,1,4,8],
"VersionCheckTask_8h_source.html":[3,0,0,1,3,4],
-"WaitingDialog_8h_source.html":[3,0,0,1,0,9],
-"Wizard_8h_source.html":[3,0,0,1,0,10],
+"WaitingDialog_8h_source.html":[3,0,0,1,0,10],
+"Wizard_8h_source.html":[3,0,0,1,0,11],
"aes__ssl_8h_source.html":[3,0,0,0,1,0,0],
"annotated.html":[2,0],
"classGpgFrontend_1_1ArchiveFileOperator.html":[2,0,0,4],
"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#a354c4f7cb7f102964e43012fc10d1e52":[2,0,0,2,3],
"classGpgFrontend_1_1CoreCommonUtil.html#a4d36aa8744c3fb246080075ca1d81c9a":[2,0,0,2,7],
-"classGpgFrontend_1_1CoreCommonUtil.html#a62bb080c6c04970fd2e02a460ea91d2a":[2,0,0,2,4],
-"classGpgFrontend_1_1CoreCommonUtil.html#a7689d3abb54a1cef6a826fc944d9dec7":[2,0,0,2,2],
"classGpgFrontend_1_1CoreCommonUtil.html#a84e293c5806f34231e682426092ed298":[2,0,0,2,6],
"classGpgFrontend_1_1CoreCommonUtil.html#a8588dfa6ccb57c055f022b13e2da1e7c":[2,0,0,2,1],
+"classGpgFrontend_1_1CoreCommonUtil.html#aa3e4003ca3248537973ea6cf42e9f040":[2,0,0,2,2],
+"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#a14433405831283cd95091d741614d03b":[2,0,0,10,11],
-"classGpgFrontend_1_1GlobalSettingStation.html#a1818e08063d6a886975f77354fc5d85c":[2,0,0,10,21],
-"classGpgFrontend_1_1GlobalSettingStation.html#a1d94a126c78ac01ec01f10d2ce575388":[2,0,0,10,20],
-"classGpgFrontend_1_1GlobalSettingStation.html#a1e1993b72d0ad09d247b643b4447e57c":[2,0,0,10,12],
-"classGpgFrontend_1_1GlobalSettingStation.html#a25c1b45a2ccdc21dd2dcba58866169fb":[2,0,0,10,17],
-"classGpgFrontend_1_1GlobalSettingStation.html#a385ae4ab6ad5b17742a5405fa693d789":[2,0,0,10,5],
-"classGpgFrontend_1_1GlobalSettingStation.html#a4d04bb665571921421b853f18b8b300a":[2,0,0,10,14],
-"classGpgFrontend_1_1GlobalSettingStation.html#a58fff8a42f98ad7989bffb8322344cd6":[2,0,0,10,16],
-"classGpgFrontend_1_1GlobalSettingStation.html#a6459653a71cc8285fa554943c7fb3ca7":[2,0,0,10,18],
-"classGpgFrontend_1_1GlobalSettingStation.html#a657a17d85d06a3455a2d3ed0782f76a2":[2,0,0,10,3],
-"classGpgFrontend_1_1GlobalSettingStation.html#a678f8ba120f9ad050d0adfec4476d7ac":[2,0,0,10,19],
-"classGpgFrontend_1_1GlobalSettingStation.html#a73d553587447165c5c7b7a9704771963":[2,0,0,10,2],
-"classGpgFrontend_1_1GlobalSettingStation.html#a7da9b08291ef2391892f5c9375b8db23":[2,0,0,10,7],
-"classGpgFrontend_1_1GlobalSettingStation.html#aa93b21af9ac6649d5749c83c809f5b00":[2,0,0,10,10],
-"classGpgFrontend_1_1GlobalSettingStation.html#ab618fef68cfd4ff6e42d4a4aa8ea94bb":[2,0,0,10,22],
-"classGpgFrontend_1_1GlobalSettingStation.html#abdc6dda369d4214e43ffa2930f7386b0":[2,0,0,10,0],
-"classGpgFrontend_1_1GlobalSettingStation.html#ac061ac8e5308f67ea52b98888bbb2e8d":[2,0,0,10,13],
-"classGpgFrontend_1_1GlobalSettingStation.html#ad0600d475f6758503b1347722e2a933a":[2,0,0,10,15],
-"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,23],
-"classGpgFrontend_1_1GlobalSettingStation.html#afc1aa3dec55ae4e741f92fce1140a2d0":[2,0,0,10,8],
-"classGpgFrontend_1_1GpgAdvancedOperator.html":[2,0,0,11],
-"classGpgFrontend_1_1GpgAdvancedOperator.html#a07c32ba25cf6153fbc8ee585c4ba377c":[2,0,0,11,6],
-"classGpgFrontend_1_1GpgAdvancedOperator.html#a209f6d1d664ab672437198dc10ed8226":[2,0,0,11,3]
+"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 de714c56..062af85a 100644
--- a/docs/html/navtreeindex1.js
+++ b/docs/html/navtreeindex1.js
@@ -1,253 +1,253 @@
var NAVTREEINDEX1 =
{
-"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,4],
-"classGpgFrontend_1_1GpgKeyManager.html#a12138780c53add7589f78f056019e5e0":[2,0,0,19,3],
-"classGpgFrontend_1_1GpgKeyManager.html#a1625abfbff168c476e76fa9425a6c37d":[2,0,0,19,2],
-"classGpgFrontend_1_1GpgKeyManager.html#a210b717fd8ee63b064d77f32b0df4c5d":[2,0,0,19,0],
-"classGpgFrontend_1_1GpgKeyManager.html#aa2c0e804db1c4aaf3b861ee5ab54ebd8":[2,0,0,19,1],
-"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_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_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#a8372d745ded9676dbab290780f7389ae":[2,0,0,20,3],
+"classGpgFrontend_1_1GpgKeyManager.html#aa2c0e804db1c4aaf3b861ee5ab54ebd8":[2,0,0,20,7],
+"classGpgFrontend_1_1GpgKeyManager.html#abbd0d9893967a342b0f1062a856d0647":[2,0,0,20,1],
+"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 138a8947..36103b66 100644
--- a/docs/html/navtreeindex2.js
+++ b/docs/html/navtreeindex2.js
@@ -1,129 +1,167 @@
var NAVTREEINDEX2 =
{
-"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],
@@ -190,64 +228,26 @@ var NAVTREEINDEX2 =
"classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a85bb3c482bf6f47edcd6593cca568a22":[2,0,0,0,1,0,1],
"classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#aa35e6ad1ef3a5733fb338f3333b5c637":[2,0,0,0,1,0,6],
"classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#add6080349c4774da4f37a62ab68561c7":[2,0,0,0,1,0,8],
-"classGpgFrontend_1_1UI_1_1AboutDialog.html":[2,0,0,1,6],
-"classGpgFrontend_1_1UI_1_1AboutDialog.html#ab04683ab4c4d682af1e259705c60d85a":[2,0,0,1,6,0],
-"classGpgFrontend_1_1UI_1_1AboutDialog.html#ab799cd5e07b06a8e953d72105c0a1083":[2,0,0,1,6,1],
-"classGpgFrontend_1_1UI_1_1AboutDialog.html#abc146c6fa63199d4acd1521bc9919606":[2,0,0,1,6,2],
-"classGpgFrontend_1_1UI_1_1AdvancedTab.html":[2,0,0,1,23],
-"classGpgFrontend_1_1UI_1_1AdvancedTab.html#a0cb26394185636ba35a8503d426e0f54":[2,0,0,1,23,4],
-"classGpgFrontend_1_1UI_1_1AdvancedTab.html#a1c2db760776853e8fb6d9fd74b450343":[2,0,0,1,23,5],
-"classGpgFrontend_1_1UI_1_1AdvancedTab.html#a4a33a782207cb18ef4a17db911cfc819":[2,0,0,1,23,1],
-"classGpgFrontend_1_1UI_1_1AdvancedTab.html#a7d489cfe190c96c28a2ec117e1aa47a0":[2,0,0,1,23,3],
-"classGpgFrontend_1_1UI_1_1AdvancedTab.html#a9e6aa8eb7800d9841101352062821f37":[2,0,0,1,23,2],
-"classGpgFrontend_1_1UI_1_1AdvancedTab.html#ac602aa3f6226e7325c10dc843764441b":[2,0,0,1,23,0],
-"classGpgFrontend_1_1UI_1_1AppearanceTab.html":[2,0,0,1,24],
-"classGpgFrontend_1_1UI_1_1AppearanceTab.html#a2fed39a2657407fcdb37d2431ef28e56":[2,0,0,1,24,2],
-"classGpgFrontend_1_1UI_1_1AppearanceTab.html#a58b3ece7ff069c33de73e658aa47cacc":[2,0,0,1,24,5],
-"classGpgFrontend_1_1UI_1_1AppearanceTab.html#a9f546f16551f48c73ee9031dd0ad8720":[2,0,0,1,24,6],
-"classGpgFrontend_1_1UI_1_1AppearanceTab.html#aaa3ec787dcd8fae1a14c2067deb9dd03":[2,0,0,1,24,4],
-"classGpgFrontend_1_1UI_1_1AppearanceTab.html#aac8f47f96ca866256ea846800f3f8887":[2,0,0,1,24,1],
-"classGpgFrontend_1_1UI_1_1AppearanceTab.html#abfca670540bc0409b9be4459ee6a3b6c":[2,0,0,1,24,0],
-"classGpgFrontend_1_1UI_1_1AppearanceTab.html#abff49b636449815a9ebff52f5c067712":[2,0,0,1,24,3],
-"classGpgFrontend_1_1UI_1_1ChoosePage.html":[2,0,0,1,33],
-"classGpgFrontend_1_1UI_1_1ChoosePage.html#a22bb223faa8f94e80b677b78b08e5d67":[2,0,0,1,33,3],
-"classGpgFrontend_1_1UI_1_1ChoosePage.html#a243a82d13267b7252844fd7691c703f0":[2,0,0,1,33,1],
-"classGpgFrontend_1_1UI_1_1ChoosePage.html#ae370e789009be3926410cb749c86907b":[2,0,0,1,33,0],
-"classGpgFrontend_1_1UI_1_1ChoosePage.html#af0d7890fe65385b7785719b9cff0718b":[2,0,0,1,33,2],
-"classGpgFrontend_1_1UI_1_1CommonUtils.html":[2,0,0,1,48],
-"classGpgFrontend_1_1UI_1_1CommonUtils.html#a057526790f6b2f6288c3a35322c34d8d":[2,0,0,1,48,13],
-"classGpgFrontend_1_1UI_1_1CommonUtils.html#a0c8bf56fc5371cd2c5e9d2a0f67bf72a":[2,0,0,1,48,12],
-"classGpgFrontend_1_1UI_1_1CommonUtils.html#a1abc83bba95579aa94d0870181991a28":[2,0,0,1,48,4],
-"classGpgFrontend_1_1UI_1_1CommonUtils.html#a1e7dff5252d5ec77c8450ad356891ebb":[2,0,0,1,48,6],
-"classGpgFrontend_1_1UI_1_1CommonUtils.html#a35a47fc31b81b6c4f5899e8ab5c4c51a":[2,0,0,1,48,14],
-"classGpgFrontend_1_1UI_1_1CommonUtils.html#a3bc26cc1e0f00f0ce2f95c0b6c8778d8":[2,0,0,1,48,16],
-"classGpgFrontend_1_1UI_1_1CommonUtils.html#a4bc9e91daa0d3c4ee4141ba4bd8726bb":[2,0,0,1,48,5],
-"classGpgFrontend_1_1UI_1_1CommonUtils.html#a4d2f10c2089c2bfb23be5c1f573af31f":[2,0,0,1,48,3],
-"classGpgFrontend_1_1UI_1_1CommonUtils.html#a78f5c2696152e9326e845c76c94be965":[2,0,0,1,48,1],
-"classGpgFrontend_1_1UI_1_1CommonUtils.html#a80350e7fe1cd696004c9aa2a43eab184":[2,0,0,1,48,7],
-"classGpgFrontend_1_1UI_1_1CommonUtils.html#a95cd625a2e0e74ee4d564843c6d16791":[2,0,0,1,48,10],
-"classGpgFrontend_1_1UI_1_1CommonUtils.html#aa533206591b0c57ea93b8f0cb7d795cd":[2,0,0,1,48,17],
-"classGpgFrontend_1_1UI_1_1CommonUtils.html#aadd249062c24f9b7fc545c03296bbb83":[2,0,0,1,48,0],
-"classGpgFrontend_1_1UI_1_1CommonUtils.html#ab4ac26378d6a07757720163eb4b1cb0e":[2,0,0,1,48,9],
-"classGpgFrontend_1_1UI_1_1CommonUtils.html#aed529969f54e39e3f9da14ae6dd00d49":[2,0,0,1,48,2],
-"classGpgFrontend_1_1UI_1_1CommonUtils.html#aef14c7eaaf8b73bd1b8f845a5484748e":[2,0,0,1,48,8],
-"classGpgFrontend_1_1UI_1_1CommonUtils.html#af1b3538d3119c8564e83c7661f73f6ea":[2,0,0,1,48,15],
-"classGpgFrontend_1_1UI_1_1CommonUtils.html#afc845c1c37487c99f78d8e66f6874f6d":[2,0,0,1,48,11],
-"classGpgFrontend_1_1UI_1_1ConclusionPage.html":[2,0,0,1,35],
-"classGpgFrontend_1_1UI_1_1ConclusionPage.html#a0d15495f048f75337b224e8e632a895a":[2,0,0,1,35,3],
-"classGpgFrontend_1_1UI_1_1ConclusionPage.html#a0f3f3118456ccce7c2a6965cf68d2cf7":[2,0,0,1,35,1],
-"classGpgFrontend_1_1UI_1_1ConclusionPage.html#a4ffc1744a257ced33fa00e1b0fbd3047":[2,0,0,1,35,2],
-"classGpgFrontend_1_1UI_1_1ConclusionPage.html#afcd98b4735047807d384e6b3d3aea3a7":[2,0,0,1,35,0],
-"classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html":[2,0,0,1,8],
-"classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html#a0cd5f66604737ea344fc36dd2c308dbb":[2,0,0,1,8,3],
-"classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html#a3ae9ff221ddfeeee8bec5c218c8061ef":[2,0,0,1,8,1],
-"classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html#a7d1899302ef743671c3002d04f6c9dd8":[2,0,0,1,8,0],
-"classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html#a7f9160202394557df01edf3f82f50a55":[2,0,0,1,8,2],
-"classGpgFrontend_1_1UI_1_1FilePage.html":[2,0,0,1,49],
-"classGpgFrontend_1_1UI_1_1FilePage.html#a00cd511308dceeda07d078a9e4ed0164":[2,0,0,1,49,13],
-"classGpgFrontend_1_1UI_1_1FilePage.html#a250b1950f874c1d11549cd5c0ea9693f":[2,0,0,1,49,8],
-"classGpgFrontend_1_1UI_1_1FilePage.html#a301c5c7747ad251b14c490d58b5d678f":[2,0,0,1,49,6],
-"classGpgFrontend_1_1UI_1_1FilePage.html#a379abfff5c0e3935b478aee938528ba1":[2,0,0,1,49,22],
-"classGpgFrontend_1_1UI_1_1FilePage.html#a3c114d414b96d3e4b2ca833ab6a48605":[2,0,0,1,49,2],
-"classGpgFrontend_1_1UI_1_1FilePage.html#a3e367cd297e307e80a7cded37b7af74e":[2,0,0,1,49,19]
+"classGpgFrontend_1_1UI_1_1AboutDialog.html":[2,0,0,1,7],
+"classGpgFrontend_1_1UI_1_1AboutDialog.html#ab04683ab4c4d682af1e259705c60d85a":[2,0,0,1,7,0],
+"classGpgFrontend_1_1UI_1_1AboutDialog.html#ab799cd5e07b06a8e953d72105c0a1083":[2,0,0,1,7,1],
+"classGpgFrontend_1_1UI_1_1AboutDialog.html#abc146c6fa63199d4acd1521bc9919606":[2,0,0,1,7,2],
+"classGpgFrontend_1_1UI_1_1AdvancedTab.html":[2,0,0,1,24],
+"classGpgFrontend_1_1UI_1_1AdvancedTab.html#a0cb26394185636ba35a8503d426e0f54":[2,0,0,1,24,4],
+"classGpgFrontend_1_1UI_1_1AdvancedTab.html#a1c2db760776853e8fb6d9fd74b450343":[2,0,0,1,24,5],
+"classGpgFrontend_1_1UI_1_1AdvancedTab.html#a4a33a782207cb18ef4a17db911cfc819":[2,0,0,1,24,1],
+"classGpgFrontend_1_1UI_1_1AdvancedTab.html#a7d489cfe190c96c28a2ec117e1aa47a0":[2,0,0,1,24,3],
+"classGpgFrontend_1_1UI_1_1AdvancedTab.html#a9e6aa8eb7800d9841101352062821f37":[2,0,0,1,24,2],
+"classGpgFrontend_1_1UI_1_1AdvancedTab.html#ac602aa3f6226e7325c10dc843764441b":[2,0,0,1,24,0],
+"classGpgFrontend_1_1UI_1_1AppearanceTab.html":[2,0,0,1,25],
+"classGpgFrontend_1_1UI_1_1AppearanceTab.html#a2fed39a2657407fcdb37d2431ef28e56":[2,0,0,1,25,2],
+"classGpgFrontend_1_1UI_1_1AppearanceTab.html#a58b3ece7ff069c33de73e658aa47cacc":[2,0,0,1,25,5],
+"classGpgFrontend_1_1UI_1_1AppearanceTab.html#a9f546f16551f48c73ee9031dd0ad8720":[2,0,0,1,25,6],
+"classGpgFrontend_1_1UI_1_1AppearanceTab.html#aaa3ec787dcd8fae1a14c2067deb9dd03":[2,0,0,1,25,4],
+"classGpgFrontend_1_1UI_1_1AppearanceTab.html#aac8f47f96ca866256ea846800f3f8887":[2,0,0,1,25,1],
+"classGpgFrontend_1_1UI_1_1AppearanceTab.html#abfca670540bc0409b9be4459ee6a3b6c":[2,0,0,1,25,0],
+"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]
};
diff --git a/docs/html/navtreeindex3.js b/docs/html/navtreeindex3.js
index 414d239c..b7937058 100644
--- a/docs/html/navtreeindex3.js
+++ b/docs/html/navtreeindex3.js
@@ -1,26 +1,72 @@
var NAVTREEINDEX3 =
{
-"classGpgFrontend_1_1UI_1_1FilePage.html#a48fb14a3296f19f9b1c3b9b48c3a1bf3":[2,0,0,1,49,0],
-"classGpgFrontend_1_1UI_1_1FilePage.html#a48fde4a93676b1b9810ab88fe265d8a8":[2,0,0,1,49,16],
-"classGpgFrontend_1_1UI_1_1FilePage.html#a676917817d6f519e043742d1d87f97f1":[2,0,0,1,49,11],
-"classGpgFrontend_1_1UI_1_1FilePage.html#a6ddf29e46120a9cd7a31285d748ddb12":[2,0,0,1,49,21],
-"classGpgFrontend_1_1UI_1_1FilePage.html#a73e4b62f4926b1aeb3f2183a1d05d871":[2,0,0,1,49,1],
-"classGpgFrontend_1_1UI_1_1FilePage.html#a81ba57bc1073197afc748eff14ffa006":[2,0,0,1,49,10],
-"classGpgFrontend_1_1UI_1_1FilePage.html#a81be0513bcc1488c22791b4ca4fbe671":[2,0,0,1,49,26],
-"classGpgFrontend_1_1UI_1_1FilePage.html#a8beae6f942215ba4f191736c7176d8aa":[2,0,0,1,49,15],
-"classGpgFrontend_1_1UI_1_1FilePage.html#a8ed9963c6c37131a17ccec8b61e04879":[2,0,0,1,49,17],
-"classGpgFrontend_1_1UI_1_1FilePage.html#a9a2660343132a9e3de05471126659fae":[2,0,0,1,49,7],
-"classGpgFrontend_1_1UI_1_1FilePage.html#aa80dc1b74a0ec65d06e5dffaa21cc785":[2,0,0,1,49,4],
-"classGpgFrontend_1_1UI_1_1FilePage.html#ab42d1dea33d8d33e21418bf805fd66a0":[2,0,0,1,49,14],
-"classGpgFrontend_1_1UI_1_1FilePage.html#ab4c7e70027f55aae7ef1ed78bb1d9646":[2,0,0,1,49,9],
-"classGpgFrontend_1_1UI_1_1FilePage.html#aca3e2a213ec519e4f8aec27cfe9973ad":[2,0,0,1,49,23],
-"classGpgFrontend_1_1UI_1_1FilePage.html#ad3c54320bdafbbb2c06a20d6c7dea9d6":[2,0,0,1,49,12],
-"classGpgFrontend_1_1UI_1_1FilePage.html#ae649c1f6144bad1c9dab277fd9ce45d4":[2,0,0,1,49,18],
-"classGpgFrontend_1_1UI_1_1FilePage.html#ae834468425b52162842f1f4f52009cae":[2,0,0,1,49,20],
-"classGpgFrontend_1_1UI_1_1FilePage.html#aea388ad7876e287f71e93085e6715495":[2,0,0,1,49,3],
-"classGpgFrontend_1_1UI_1_1FilePage.html#aea773a182e0776154611ff51431c7d6c":[2,0,0,1,49,24],
-"classGpgFrontend_1_1UI_1_1FilePage.html#aec462d16a2097024a4ced24012b905a7":[2,0,0,1,49,5],
-"classGpgFrontend_1_1UI_1_1FilePage.html#afc8cb5a018464c2017dbb7e987f686e9":[2,0,0,1,49,25],
+"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],
+"classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html#a7d1899302ef743671c3002d04f6c9dd8":[2,0,0,1,9,0],
+"classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html#a7f9160202394557df01edf3f82f50a55":[2,0,0,1,9,2],
+"classGpgFrontend_1_1UI_1_1FilePage.html":[2,0,0,1,50],
+"classGpgFrontend_1_1UI_1_1FilePage.html#a00cd511308dceeda07d078a9e4ed0164":[2,0,0,1,50,13],
+"classGpgFrontend_1_1UI_1_1FilePage.html#a250b1950f874c1d11549cd5c0ea9693f":[2,0,0,1,50,8],
+"classGpgFrontend_1_1UI_1_1FilePage.html#a301c5c7747ad251b14c490d58b5d678f":[2,0,0,1,50,6],
+"classGpgFrontend_1_1UI_1_1FilePage.html#a379abfff5c0e3935b478aee938528ba1":[2,0,0,1,50,23],
+"classGpgFrontend_1_1UI_1_1FilePage.html#a3c114d414b96d3e4b2ca833ab6a48605":[2,0,0,1,50,2],
+"classGpgFrontend_1_1UI_1_1FilePage.html#a3e367cd297e307e80a7cded37b7af74e":[2,0,0,1,50,20],
+"classGpgFrontend_1_1UI_1_1FilePage.html#a48fb14a3296f19f9b1c3b9b48c3a1bf3":[2,0,0,1,50,0],
+"classGpgFrontend_1_1UI_1_1FilePage.html#a48fde4a93676b1b9810ab88fe265d8a8":[2,0,0,1,50,17],
+"classGpgFrontend_1_1UI_1_1FilePage.html#a676917817d6f519e043742d1d87f97f1":[2,0,0,1,50,11],
+"classGpgFrontend_1_1UI_1_1FilePage.html#a6ddf29e46120a9cd7a31285d748ddb12":[2,0,0,1,50,22],
+"classGpgFrontend_1_1UI_1_1FilePage.html#a73e4b62f4926b1aeb3f2183a1d05d871":[2,0,0,1,50,1],
+"classGpgFrontend_1_1UI_1_1FilePage.html#a81ba57bc1073197afc748eff14ffa006":[2,0,0,1,50,10],
+"classGpgFrontend_1_1UI_1_1FilePage.html#a81be0513bcc1488c22791b4ca4fbe671":[2,0,0,1,50,27],
+"classGpgFrontend_1_1UI_1_1FilePage.html#a8beae6f942215ba4f191736c7176d8aa":[2,0,0,1,50,16],
+"classGpgFrontend_1_1UI_1_1FilePage.html#a8ed9963c6c37131a17ccec8b61e04879":[2,0,0,1,50,18],
+"classGpgFrontend_1_1UI_1_1FilePage.html#a9a2660343132a9e3de05471126659fae":[2,0,0,1,50,7],
+"classGpgFrontend_1_1UI_1_1FilePage.html#aa80dc1b74a0ec65d06e5dffaa21cc785":[2,0,0,1,50,4],
+"classGpgFrontend_1_1UI_1_1FilePage.html#ab2e5bf3d09a3a29bf77693d55975ae0c":[2,0,0,1,50,15],
+"classGpgFrontend_1_1UI_1_1FilePage.html#ab42d1dea33d8d33e21418bf805fd66a0":[2,0,0,1,50,14],
+"classGpgFrontend_1_1UI_1_1FilePage.html#ab4c7e70027f55aae7ef1ed78bb1d9646":[2,0,0,1,50,9],
+"classGpgFrontend_1_1UI_1_1FilePage.html#aca3e2a213ec519e4f8aec27cfe9973ad":[2,0,0,1,50,24],
+"classGpgFrontend_1_1UI_1_1FilePage.html#ad3c54320bdafbbb2c06a20d6c7dea9d6":[2,0,0,1,50,12],
+"classGpgFrontend_1_1UI_1_1FilePage.html#ae649c1f6144bad1c9dab277fd9ce45d4":[2,0,0,1,50,19],
+"classGpgFrontend_1_1UI_1_1FilePage.html#ae834468425b52162842f1f4f52009cae":[2,0,0,1,50,21],
+"classGpgFrontend_1_1UI_1_1FilePage.html#aea388ad7876e287f71e93085e6715495":[2,0,0,1,50,3],
+"classGpgFrontend_1_1UI_1_1FilePage.html#aea773a182e0776154611ff51431c7d6c":[2,0,0,1,50,25],
+"classGpgFrontend_1_1UI_1_1FilePage.html#aec462d16a2097024a4ced24012b905a7":[2,0,0,1,50,5],
+"classGpgFrontend_1_1UI_1_1FilePage.html#afc8cb5a018464c2017dbb7e987f686e9":[2,0,0,1,50,26],
"classGpgFrontend_1_1UI_1_1FileReadTask.html":[2,0,0,1,0],
"classGpgFrontend_1_1UI_1_1FileReadTask.html#a0f8bc1c253380b68c0e65cabc011ac09":[2,0,0,1,0,3],
"classGpgFrontend_1_1UI_1_1FileReadTask.html#a2bc7e5bb1c67490ba12c82200634bd97":[2,0,0,1,0,7],
@@ -33,221 +79,175 @@ var NAVTREEINDEX3 =
"classGpgFrontend_1_1UI_1_1FileReadTask.html#af3896c6ef4dc49bd371746aa9fea1120":[2,0,0,1,0,10],
"classGpgFrontend_1_1UI_1_1FileReadTask.html#afb248c339ac074f0a7602711ed2f5e39":[2,0,0,1,0,8],
"classGpgFrontend_1_1UI_1_1FileReadTask.html#afe44eab4abfe0b3b950f332d54662159":[2,0,0,1,0,2],
-"classGpgFrontend_1_1UI_1_1FindWidget.html":[2,0,0,1,50],
-"classGpgFrontend_1_1UI_1_1FindWidget.html#a0c531f2c673caed29225a323e750205f":[2,0,0,1,50,2],
-"classGpgFrontend_1_1UI_1_1FindWidget.html#a11f9d0f07b704539ad1df15a5c15dca9":[2,0,0,1,50,8],
-"classGpgFrontend_1_1UI_1_1FindWidget.html#a36ac2ccdd4e59cfdb790c73042dce532":[2,0,0,1,50,6],
-"classGpgFrontend_1_1UI_1_1FindWidget.html#a495f281e72e5ddc10c8e944183b96dd9":[2,0,0,1,50,0],
-"classGpgFrontend_1_1UI_1_1FindWidget.html#a6e2264a989c2bb2db6bc8980b43e65f0":[2,0,0,1,50,1],
-"classGpgFrontend_1_1UI_1_1FindWidget.html#a6f28757eafd39ee0b1f8fe977bfee8b1":[2,0,0,1,50,5],
-"classGpgFrontend_1_1UI_1_1FindWidget.html#a8188c030936fbda27ac400a7ab59e61c":[2,0,0,1,50,3],
-"classGpgFrontend_1_1UI_1_1FindWidget.html#aa019bd8b63ad1e79050e4428cfee62cf":[2,0,0,1,50,4],
-"classGpgFrontend_1_1UI_1_1FindWidget.html#af420832720942dd1e7cb3f3841c7cbfe":[2,0,0,1,50,7],
+"classGpgFrontend_1_1UI_1_1FindWidget.html":[2,0,0,1,51],
+"classGpgFrontend_1_1UI_1_1FindWidget.html#a0c531f2c673caed29225a323e750205f":[2,0,0,1,51,2],
+"classGpgFrontend_1_1UI_1_1FindWidget.html#a11f9d0f07b704539ad1df15a5c15dca9":[2,0,0,1,51,8],
+"classGpgFrontend_1_1UI_1_1FindWidget.html#a36ac2ccdd4e59cfdb790c73042dce532":[2,0,0,1,51,6],
+"classGpgFrontend_1_1UI_1_1FindWidget.html#a495f281e72e5ddc10c8e944183b96dd9":[2,0,0,1,51,0],
+"classGpgFrontend_1_1UI_1_1FindWidget.html#a6e2264a989c2bb2db6bc8980b43e65f0":[2,0,0,1,51,1],
+"classGpgFrontend_1_1UI_1_1FindWidget.html#a6f28757eafd39ee0b1f8fe977bfee8b1":[2,0,0,1,51,5],
+"classGpgFrontend_1_1UI_1_1FindWidget.html#a8188c030936fbda27ac400a7ab59e61c":[2,0,0,1,51,3],
+"classGpgFrontend_1_1UI_1_1FindWidget.html#aa019bd8b63ad1e79050e4428cfee62cf":[2,0,0,1,51,4],
+"classGpgFrontend_1_1UI_1_1FindWidget.html#af420832720942dd1e7cb3f3841c7cbfe":[2,0,0,1,51,7],
"classGpgFrontend_1_1UI_1_1GeneralDialog.html":[2,0,0,1,2],
-"classGpgFrontend_1_1UI_1_1GeneralDialog.html#a234a0a4d8c0b1b49a54f65b1aa3f9490":[2,0,0,1,2,8],
-"classGpgFrontend_1_1UI_1_1GeneralDialog.html#a34d01f247eee92017a2eccf697cda080":[2,0,0,1,2,4],
+"classGpgFrontend_1_1UI_1_1GeneralDialog.html#a22f39850fae58b9f6c59c372b9fbb582":[2,0,0,1,2,11],
+"classGpgFrontend_1_1UI_1_1GeneralDialog.html#a34d01f247eee92017a2eccf697cda080":[2,0,0,1,2,6],
"classGpgFrontend_1_1UI_1_1GeneralDialog.html#a42043895f4b33acd1531c428ae4deaa8":[2,0,0,1,2,1],
-"classGpgFrontend_1_1UI_1_1GeneralDialog.html#a705f4e5e14d87b9c52c401004e1bbcf4":[2,0,0,1,2,3],
-"classGpgFrontend_1_1UI_1_1GeneralDialog.html#a871f204f01f10815e3475c103f1157af":[2,0,0,1,2,7],
-"classGpgFrontend_1_1UI_1_1GeneralDialog.html#a8886f6ece50f67c63d0d40b7f8690eae":[2,0,0,1,2,2],
-"classGpgFrontend_1_1UI_1_1GeneralDialog.html#a940a6ea31dff4db83f9f08d38e843a2b":[2,0,0,1,2,5],
+"classGpgFrontend_1_1UI_1_1GeneralDialog.html#a4e4eb414ac80ba7dd1e853ed62e1ee68":[2,0,0,1,2,12],
+"classGpgFrontend_1_1UI_1_1GeneralDialog.html#a570c723ba0cb5522f2b0c16ac28d0532":[2,0,0,1,2,5],
+"classGpgFrontend_1_1UI_1_1GeneralDialog.html#a940a6ea31dff4db83f9f08d38e843a2b":[2,0,0,1,2,7],
+"classGpgFrontend_1_1UI_1_1GeneralDialog.html#aa3af9313c4284df01685ce512d18d323":[2,0,0,1,2,13],
+"classGpgFrontend_1_1UI_1_1GeneralDialog.html#ab92573b0e63d9c792f2e1697d858cea7":[2,0,0,1,2,10],
+"classGpgFrontend_1_1UI_1_1GeneralDialog.html#abad7cff23d2426820e320ecea47b479c":[2,0,0,1,2,4],
"classGpgFrontend_1_1UI_1_1GeneralDialog.html#ac9de4c49668ffaeb6916c64f878a202c":[2,0,0,1,2,0],
-"classGpgFrontend_1_1UI_1_1GeneralDialog.html#ad9b847aa128dfeb4ecf0064ef948e6ea":[2,0,0,1,2,9],
-"classGpgFrontend_1_1UI_1_1GeneralDialog.html#ae91392293866dc302132a9fc19209d8c":[2,0,0,1,2,6],
-"classGpgFrontend_1_1UI_1_1GeneralDialog.html#aeda520454fd38920a027c1a4195a2e6f":[2,0,0,1,2,10],
-"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html":[2,0,0,1,37],
-"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a42d1bc5a70f0e81cb49c88eb23544255":[2,0,0,1,37,3],
-"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a5c0bb4c6847846d57ca7524d5f5e4d53":[2,0,0,1,37,10],
-"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a60f3fab73cb82114b17b10d6ac2f3b1a":[2,0,0,1,37,1],
-"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a62b24183ebf9da18852084879bcb1013":[2,0,0,1,37,0],
-"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a6ded03c8319326809b09bc90c94e890c":[2,0,0,1,37,7],
-"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a8ddf641e1266d00cb876ddf786e5ccb8":[2,0,0,1,37,4],
-"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#ab0dd85f0fcbbab2f15eee995458d2dfb":[2,0,0,1,37,5],
-"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#abb5b9f6dd7aed18f42cea885af85c741":[2,0,0,1,37,6],
-"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#ac581df0af500c9e8a73b8f988739600b":[2,0,0,1,37,8],
-"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#acc10569862d1575d9453d1c1aa539242":[2,0,0,1,37,2],
-"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#ad799871eab498f2e535f52f0082f8b8b":[2,0,0,1,37,9],
-"classGpgFrontend_1_1UI_1_1GeneralTab.html":[2,0,0,1,26],
-"classGpgFrontend_1_1UI_1_1GeneralTab.html#a214079dfbacdc6898146c8468611cf0c":[2,0,0,1,26,0],
-"classGpgFrontend_1_1UI_1_1GeneralTab.html#a3b97ed699cbc2f34b9e887cd2c83b645":[2,0,0,1,26,7],
-"classGpgFrontend_1_1UI_1_1GeneralTab.html#a4523f55e98cee600b2fd47b1750b4d24":[2,0,0,1,26,1],
-"classGpgFrontend_1_1UI_1_1GeneralTab.html#a7b26d8a088ce8f50b1fd0e719e38534b":[2,0,0,1,26,2],
-"classGpgFrontend_1_1UI_1_1GeneralTab.html#aa183fdff30ef4581a05ff5c0fde44d8c":[2,0,0,1,26,5],
-"classGpgFrontend_1_1UI_1_1GeneralTab.html#aa88ccbda61728be6de0aa2d9b92e0b69":[2,0,0,1,26,4],
-"classGpgFrontend_1_1UI_1_1GeneralTab.html#abaf12014356a2fa20f66945004abb7c2":[2,0,0,1,26,6],
-"classGpgFrontend_1_1UI_1_1GeneralTab.html#afc107d56f13000aa28436a5e26a0876b":[2,0,0,1,26,3],
-"classGpgFrontend_1_1UI_1_1GnupgTab.html":[2,0,0,1,7],
-"classGpgFrontend_1_1UI_1_1GnupgTab.html#a41deb4e53e1fcf424e72f33eb30f90be":[2,0,0,1,7,1],
-"classGpgFrontend_1_1UI_1_1GnupgTab.html#ab9d9e8af4494659f13b87804e7318a79":[2,0,0,1,7,0],
-"classGpgFrontend_1_1UI_1_1GnupgTab.html#afd915ad09684b960ec63e28753f833e9":[2,0,0,1,7,2],
-"classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html":[2,0,0,1,36],
-"classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a32f0e7dda69f7b1e3cc869340736c590":[2,0,0,1,36,1],
-"classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a6f8ab335d89948c48cd634ab20ff9aa0":[2,0,0,1,36,3],
-"classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a9b341a1a903cec0c70a6af4bb230905e":[2,0,0,1,36,2],
-"classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#ac0290f06e08f2714f9727bb578df1298":[2,0,0,1,36,0],
-"classGpgFrontend_1_1UI_1_1HelpPage.html":[2,0,0,1,51],
-"classGpgFrontend_1_1UI_1_1HelpPage.html#a1be8f5b79fef3d1d62ff4620b8535006":[2,0,0,1,51,0],
-"classGpgFrontend_1_1UI_1_1HelpPage.html#a49fbde87f2ef385b44225acd6ffbc84f":[2,0,0,1,51,2],
-"classGpgFrontend_1_1UI_1_1HelpPage.html#a51ff99077a75507365307f5dd783df99":[2,0,0,1,51,3],
-"classGpgFrontend_1_1UI_1_1HelpPage.html#a92c31eea47b42be28c86431384b27846":[2,0,0,1,51,1],
-"classGpgFrontend_1_1UI_1_1HelpPage.html#af4f61342fae06a49c95d8d20ca51ca2c":[2,0,0,1,51,4],
-"classGpgFrontend_1_1UI_1_1InfoBoardWidget.html":[2,0,0,1,52],
-"classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a2c23091fa2fd5b97a045ac6c492caaca":[2,0,0,1,52,8],
-"classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a456f15315a03107f7757d84362c1af71":[2,0,0,1,52,1],
-"classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a4d18a72ae1c460a12b8902d426d9d395":[2,0,0,1,52,13],
-"classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a4fd6f91eb435feb41ae93e44485646ab":[2,0,0,1,52,3],
-"classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a6380776ea1bf9a020370589e1e20efd3":[2,0,0,1,52,12],
-"classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a68f984815100f4ce281b9794f193e516":[2,0,0,1,52,9],
-"classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a7d7504339221bd680fb18698dd829b32":[2,0,0,1,52,5],
-"classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a83a4ec326911b8b112bc471e7ca14925":[2,0,0,1,52,7],
-"classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a852c1fe10c7d3153a2146bcea4dbe9ad":[2,0,0,1,52,4],
-"classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#ac576ad298acc83cc313b6753e3715441":[2,0,0,1,52,10],
-"classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#ac936cfc8e1b3af65d0d71b74fb3f0b02":[2,0,0,1,52,6],
-"classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#ad30591c31d19936cfd256e1a3c35d08f":[2,0,0,1,52,11],
-"classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#adeef521a8838bf2a1692c25d9b108010":[2,0,0,1,52,0],
-"classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#adfa4acd435d2ec29f951f4e7e6a43f38":[2,0,0,1,52,2],
-"classGpgFrontend_1_1UI_1_1InfoTab.html":[2,0,0,1,3],
-"classGpgFrontend_1_1UI_1_1InfoTab.html#a99d8b059ee28ea257981892e0b35d4cc":[2,0,0,1,3,0],
-"classGpgFrontend_1_1UI_1_1IntroPage.html":[2,0,0,1,32],
-"classGpgFrontend_1_1UI_1_1IntroPage.html#a812fd63d87955f9131a98ad8b679f8a4":[2,0,0,1,32,1],
-"classGpgFrontend_1_1UI_1_1IntroPage.html#aed4220a7372b192ee4e8bc5024db922d":[2,0,0,1,32,0],
-"classGpgFrontend_1_1UI_1_1KeyDetailsDialog.html":[2,0,0,1,14],
-"classGpgFrontend_1_1UI_1_1KeyDetailsDialog.html#a2c3d09bc4b7ebce9839ec03a43838d32":[2,0,0,1,14,0],
-"classGpgFrontend_1_1UI_1_1KeyDetailsDialog.html#a701ed5c70a8a0965b0d887b6d187e996":[2,0,0,1,14,1],
-"classGpgFrontend_1_1UI_1_1KeyGenDialog.html":[2,0,0,1,12],
-"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a010acccfd5fb5475769658f9cf68da7b":[2,0,0,1,12,2],
-"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a03a8e1c8f2c1887732d36a346185bb40":[2,0,0,1,12,20],
-"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a03b7fe3e34147e404ca3ca6a0aa80cfc":[2,0,0,1,12,14],
-"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a104dcf364452ab5fe019f51c6db7f7d9":[2,0,0,1,12,22],
-"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a10677e68994c32676acb051a0153375d":[2,0,0,1,12,4],
-"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a196ef707a7a2cfd717f69c8a5bc3278d":[2,0,0,1,12,21],
-"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a242a3245de709ede086087d7a096e6cd":[2,0,0,1,12,17],
-"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a281bfffd99fcb600d07c4604bf2a8841":[2,0,0,1,12,24],
-"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3008e2a9879a8e122e422f67cf0018f8":[2,0,0,1,12,16],
-"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3453d1a8a4c0411472b2779d018abdc3":[2,0,0,1,12,18],
-"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3aef8d2bb8e0d36842532726a6796ab9":[2,0,0,1,12,0],
-"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a43850a47ceaeb2e693027a0672bf77f7":[2,0,0,1,12,30],
-"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a48e953cd49efde2315868e8606af7226":[2,0,0,1,12,10],
-"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a4eb53559f200092cd299f7a90c03cdbb":[2,0,0,1,12,5],
-"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a516aa59c71a9ddf06c51e93252e93b76":[2,0,0,1,12,12],
-"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a52bf44c05cf1280ba13369ae2c33c60a":[2,0,0,1,12,29],
-"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7b1b9cb46c0547c1e561e56d55616cf1":[2,0,0,1,12,26],
-"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7ed095cce29c658741ae0520049010c0":[2,0,0,1,12,28],
-"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a8e500e3153558364fe5ba5b8bab6f219":[2,0,0,1,12,19],
-"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a8e6554b47e0dd6c2025ccb0d1d0cb658":[2,0,0,1,12,3],
-"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a8ecbb5721d5a2a0f85fd7b362f62bf83":[2,0,0,1,12,31],
-"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a904d5e72a1946382ddfca80dc57c4db5":[2,0,0,1,12,9],
-"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#aa36de61cedb98f919f10e35d4e6b5146":[2,0,0,1,12,6],
-"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#aa765259f9aa65b81d59b982ee0595e52":[2,0,0,1,12,15],
-"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#aaa9b55830c39ce854e4ede26d916a844":[2,0,0,1,12,23],
-"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ab0ccac068670a3e28ce78ff87a40b2fc":[2,0,0,1,12,25],
-"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ab40bd826a5437124f8afd09824606c76":[2,0,0,1,12,7],
-"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ab8f04b046abb56d53bdbe67838b84fdc":[2,0,0,1,12,8],
-"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ae611933ccd6fd67e65a2cf1ff09b5e8f":[2,0,0,1,12,11],
-"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ae8aeaff7be0b1552b29d1f209af0bd28":[2,0,0,1,12,1],
-"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#af1f7a62dcb024513453766ee8816d514":[2,0,0,1,12,13],
-"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#aff131dd6f7178c63ef2e2f85d30828a2":[2,0,0,1,12,27],
-"classGpgFrontend_1_1UI_1_1KeyGenPage.html":[2,0,0,1,34],
-"classGpgFrontend_1_1UI_1_1KeyGenPage.html#a0eb5dad522c597dcd101c02f496e7e70":[2,0,0,1,34,0],
-"classGpgFrontend_1_1UI_1_1KeyGenPage.html#a28958f6627f01db7c6f75fc0dec3eead":[2,0,0,1,34,1],
-"classGpgFrontend_1_1UI_1_1KeyGenPage.html#a8b757ec603524d53307278110cece2bd":[2,0,0,1,34,2],
-"classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html":[2,0,0,1,9],
-"classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a0177cdaa19d1f83c9e519039aa7a8ce1":[2,0,0,1,9,0],
-"classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a1f82af3b6aee0e6e5999b1b146b36938":[2,0,0,1,9,7],
-"classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a238e3af4b4980dd563e1fe6ea12f4474":[2,0,0,1,9,9],
-"classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a2abf6522dd8c254074d9174fcde1d2be":[2,0,0,1,9,8],
-"classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a8bc7fdc44432686d8b154783b2d156e8":[2,0,0,1,9,6],
-"classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a9e37a653a982e671977d2101b72ae3b6":[2,0,0,1,9,3],
-"classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a9f5912ff99e3820d5fa6a58ed14a70c8":[2,0,0,1,9,1],
-"classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#ae682853c7eccfd3a6be43765f162f5a4":[2,0,0,1,9,4],
-"classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#af88ee416b2227ce847a3b8123a23ce24":[2,0,0,1,9,2],
-"classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#affc26751c72e51c702eea3a251f284db":[2,0,0,1,9,5],
-"classGpgFrontend_1_1UI_1_1KeyList.html":[2,0,0,1,57],
-"classGpgFrontend_1_1UI_1_1KeyList.html#a0c3090591dff7b68bfb83c93d2c168e3":[2,0,0,1,57,4],
-"classGpgFrontend_1_1UI_1_1KeyList.html#a0ea28d6f108bad10aaa8844fa86db033":[2,0,0,1,57,3],
-"classGpgFrontend_1_1UI_1_1KeyList.html#a152e66db4a0f033366f43b4ec89073f4":[2,0,0,1,57,27],
-"classGpgFrontend_1_1UI_1_1KeyList.html#a19b3f64d41843bb267fcd6c9956fde88":[2,0,0,1,57,30],
-"classGpgFrontend_1_1UI_1_1KeyList.html#a1bcca32b18c539a2ae83c30fc07db544":[2,0,0,1,57,13],
-"classGpgFrontend_1_1UI_1_1KeyList.html#a20c4a242f49123bd64982952fdad08e9":[2,0,0,1,57,5],
-"classGpgFrontend_1_1UI_1_1KeyList.html#a23ebf79be8de637560d41afd0433c35f":[2,0,0,1,57,8],
-"classGpgFrontend_1_1UI_1_1KeyList.html#a31a4c067eed90830203862cb4adf951e":[2,0,0,1,57,17],
-"classGpgFrontend_1_1UI_1_1KeyList.html#a4e5862299b0aebe07daf8fbc642a4c38":[2,0,0,1,57,11],
-"classGpgFrontend_1_1UI_1_1KeyList.html#a68b595a2bb83dfafa61b3e467dd15689":[2,0,0,1,57,19],
-"classGpgFrontend_1_1UI_1_1KeyList.html#a69e54f06d546d516a0dcdf1055b8028e":[2,0,0,1,57,24],
-"classGpgFrontend_1_1UI_1_1KeyList.html#a6e97d359158f91217b9fe797410c74a6":[2,0,0,1,57,26],
-"classGpgFrontend_1_1UI_1_1KeyList.html#a73ddb7feb1f70eac44e038c3dc925fec":[2,0,0,1,57,1],
-"classGpgFrontend_1_1UI_1_1KeyList.html#a74ef918cd437730e111171660df06c81":[2,0,0,1,57,31],
-"classGpgFrontend_1_1UI_1_1KeyList.html#a79416ec91e91f19712bf72aeb6440175":[2,0,0,1,57,16],
-"classGpgFrontend_1_1UI_1_1KeyList.html#a7c9d5cacdb42e1fbda5d3cc96e861418":[2,0,0,1,57,0],
-"classGpgFrontend_1_1UI_1_1KeyList.html#a7d75246eee6368be295c9ab5fe5ef291":[2,0,0,1,57,21],
-"classGpgFrontend_1_1UI_1_1KeyList.html#a7ead8845ceb7c9310e3f4742251e1d87":[2,0,0,1,57,9],
-"classGpgFrontend_1_1UI_1_1KeyList.html#a81c2e36427371fa6ae6381870b9b5bdd":[2,0,0,1,57,12],
-"classGpgFrontend_1_1UI_1_1KeyList.html#a82da61a76a08023b2ddbe2a6869f4190":[2,0,0,1,57,6],
-"classGpgFrontend_1_1UI_1_1KeyList.html#a86a294a8baa9feaeb808f0af956ef522":[2,0,0,1,57,22],
-"classGpgFrontend_1_1UI_1_1KeyList.html#a8aeb2eef64f57fbc2e7f06f433d1ccb2":[2,0,0,1,57,36],
-"classGpgFrontend_1_1UI_1_1KeyList.html#a8d1e2fde8e54d111581adc701e3191bb":[2,0,0,1,57,32],
-"classGpgFrontend_1_1UI_1_1KeyList.html#a947f4ce45285b58bbde94f4ae879ff7a":[2,0,0,1,57,23],
-"classGpgFrontend_1_1UI_1_1KeyList.html#aa961e3ba3c48f84dea4bb7ab4f756886":[2,0,0,1,57,2],
-"classGpgFrontend_1_1UI_1_1KeyList.html#aab3f4facfc850e7eeb917571ca89f4a5":[2,0,0,1,57,20],
-"classGpgFrontend_1_1UI_1_1KeyList.html#aad57901bf84aaf7849e7cf7bb9f8fc99":[2,0,0,1,57,25],
-"classGpgFrontend_1_1UI_1_1KeyList.html#ab0182646beb01850779260b3772bd8fe":[2,0,0,1,57,18],
-"classGpgFrontend_1_1UI_1_1KeyList.html#ab4368b81402e2468a9e960de8fb7080f":[2,0,0,1,57,14],
-"classGpgFrontend_1_1UI_1_1KeyList.html#ab64ba3049fac1aaa9fed4fb1c5919153":[2,0,0,1,57,15],
-"classGpgFrontend_1_1UI_1_1KeyList.html#ac1e5046770c36f67aab34715e50c0a33":[2,0,0,1,57,10],
-"classGpgFrontend_1_1UI_1_1KeyList.html#ac4629f2ffafe87215acc66f3cefc23d4":[2,0,0,1,57,29],
-"classGpgFrontend_1_1UI_1_1KeyList.html#ac4d74ae5a34617b0be9915a43a2abdaa":[2,0,0,1,57,35],
-"classGpgFrontend_1_1UI_1_1KeyList.html#ad3b6021ff2b2f03874bc9886bc08c152":[2,0,0,1,57,33],
-"classGpgFrontend_1_1UI_1_1KeyList.html#ade6f1511cb60ceafcfe8e50a2ef28c73":[2,0,0,1,57,34],
-"classGpgFrontend_1_1UI_1_1KeyList.html#ae3ad87e114432b0d659a0297d520d72f":[2,0,0,1,57,7],
-"classGpgFrontend_1_1UI_1_1KeyList.html#ae9667bbf246913ea22413d46bcda675a":[2,0,0,1,57,28],
-"classGpgFrontend_1_1UI_1_1KeyMgmt.html":[2,0,0,1,38],
-"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a00fdf40c55943c8542eaebab041f02b8":[2,0,0,1,38,28],
-"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a0380d65d9d12fb2b9d66c212287b8b92":[2,0,0,1,38,18],
-"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a08ce0587e28ac312273fdb0988f63bbe":[2,0,0,1,38,27],
-"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a0b139ae0d4baa234932cf228e94abd6b":[2,0,0,1,38,4],
-"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a0b4b2f521362d8e24a9875d51b0f877c":[2,0,0,1,38,9],
-"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a0eae43c328a32aedfa4a5a55cf328966":[2,0,0,1,38,25],
-"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a137117a6c303eaf7bdca7a11edcc178c":[2,0,0,1,38,5],
-"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a1d5091c7be671b5c0446b52bef3eeb48":[2,0,0,1,38,24],
-"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a1ee904754ebe088ad002fb6c9b3f9000":[2,0,0,1,38,11],
-"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a2166d56c56ad66fd415d6628cfffd9b7":[2,0,0,1,38,6],
-"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a23cf6665537f2a96708e9d5423ce3bb8":[2,0,0,1,38,1],
-"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a2bcdba46a4ace5bb9dd742759a00f4e3":[2,0,0,1,38,20],
-"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a33e88ef94386833575afede7a7ff144a":[2,0,0,1,38,26],
-"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a375530da2a3ff57e47b5f28af0bec09b":[2,0,0,1,38,10],
-"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a6266d640cb37c14fbe2c96bdb9c15935":[2,0,0,1,38,36],
-"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a6791486fd94567d504d48050c23476b5":[2,0,0,1,38,3],
-"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a6ee90b63414038e9f840933a5b2c5e46":[2,0,0,1,38,2],
-"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a75e6e38da08275188c7a78fb57fa6641":[2,0,0,1,38,22],
-"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a7623fa63b3c24ee86d923b434dee9c7f":[2,0,0,1,38,33],
-"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a876e257c8d8bb7e47ceb70e1da4f9da7":[2,0,0,1,38,35],
-"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a905d55ac2c7de8579db9f5a7b91a0abf":[2,0,0,1,38,15],
-"classGpgFrontend_1_1UI_1_1KeyMgmt.html#aa10636ab18ccf63bcd3dfa60bdd9cbc7":[2,0,0,1,38,12],
-"classGpgFrontend_1_1UI_1_1KeyMgmt.html#aa5cd08927c720e1d545149e8318559c8":[2,0,0,1,38,14],
-"classGpgFrontend_1_1UI_1_1KeyMgmt.html#ab06b65fbb2581eb1245d45273ed3885a":[2,0,0,1,38,13],
-"classGpgFrontend_1_1UI_1_1KeyMgmt.html#ab3698ef93ee48a949915f205452f8743":[2,0,0,1,38,16],
-"classGpgFrontend_1_1UI_1_1KeyMgmt.html#abf0f05743185c40b3cd0936ddccf8f9d":[2,0,0,1,38,21],
-"classGpgFrontend_1_1UI_1_1KeyMgmt.html#ac06a816b6898b4d3e0c7a74bc7b4f4be":[2,0,0,1,38,17],
-"classGpgFrontend_1_1UI_1_1KeyMgmt.html#ac6b43abecc2477164e4947759fc97237":[2,0,0,1,38,23],
-"classGpgFrontend_1_1UI_1_1KeyMgmt.html#aca369a078ec127d150a466d9b2b219c2":[2,0,0,1,38,8],
-"classGpgFrontend_1_1UI_1_1KeyMgmt.html#acadb7692e422ca8efac192604d875457":[2,0,0,1,38,29],
-"classGpgFrontend_1_1UI_1_1KeyMgmt.html#acd9298492830efcbf7c77dfb6bd829e7":[2,0,0,1,38,30],
-"classGpgFrontend_1_1UI_1_1KeyMgmt.html#ad8f69aa0d0564245a9924a7cf7ed0c3d":[2,0,0,1,38,32],
-"classGpgFrontend_1_1UI_1_1KeyMgmt.html#adff3b71d088f4a13ef3d032b3c0ecebc":[2,0,0,1,38,34],
-"classGpgFrontend_1_1UI_1_1KeyMgmt.html#ae41fbcbbf621133fb7655e566f36768b":[2,0,0,1,38,31],
-"classGpgFrontend_1_1UI_1_1KeyMgmt.html#aefc27b57830cf14a85c2225664f89f64":[2,0,0,1,38,0],
-"classGpgFrontend_1_1UI_1_1KeyMgmt.html#af089757a71f5f27922c45eb52c924f88":[2,0,0,1,38,7],
-"classGpgFrontend_1_1UI_1_1KeyMgmt.html#afa24ed000e0833c2cb8f7fea1111299c":[2,0,0,1,38,19],
-"classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html":[2,0,0,1,15],
-"classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a0e2fdf02be3247409cc1590bea0c1fe8":[2,0,0,1,15,2],
-"classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a221d649fb0dfb4048cdf432e05686fe1":[2,0,0,1,15,10],
-"classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a2b9b0aabdbceb4482ebcdfd6c3af987d":[2,0,0,1,15,9],
-"classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a3844bbdb3d0c4e46b3118b7576917ba2":[2,0,0,1,15,11],
-"classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a4e115ce46a85c2f9e4e0e2427839fc7c":[2,0,0,1,15,3],
-"classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a6a7c9f82af2848ef847fef68ab5afbf5":[2,0,0,1,15,6],
-"classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a6dd2a97ec6b3e22c6d29182b1ceb49f3":[2,0,0,1,15,8],
-"classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a6f0e8f878445e71527f23bf8b9edcd90":[2,0,0,1,15,4],
-"classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a7226b139dc7a491e8ba780135654be27":[2,0,0,1,15,0],
-"classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#acb100218dfa9f97f633d1b3cd7bf5a05":[2,0,0,1,15,7],
-"classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#ad4e09323a53992daee08173bed17bf9a":[2,0,0,1,15,1]
+"classGpgFrontend_1_1UI_1_1GeneralDialog.html#ad1f20151e9556a3c481fda89cf88e585":[2,0,0,1,2,8],
+"classGpgFrontend_1_1UI_1_1GeneralDialog.html#ad9d5be542aa422450a96dff00232ebe5":[2,0,0,1,2,3],
+"classGpgFrontend_1_1UI_1_1GeneralDialog.html#ae91392293866dc302132a9fc19209d8c":[2,0,0,1,2,9],
+"classGpgFrontend_1_1UI_1_1GeneralDialog.html#af074bf574bb3fb2be5de5f7e3b5b539e":[2,0,0,1,2,2],
+"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html":[2,0,0,1,38],
+"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a42d1bc5a70f0e81cb49c88eb23544255":[2,0,0,1,38,3],
+"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a5c0bb4c6847846d57ca7524d5f5e4d53":[2,0,0,1,38,10],
+"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a60f3fab73cb82114b17b10d6ac2f3b1a":[2,0,0,1,38,1],
+"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a62b24183ebf9da18852084879bcb1013":[2,0,0,1,38,0],
+"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a6ded03c8319326809b09bc90c94e890c":[2,0,0,1,38,7],
+"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a8ddf641e1266d00cb876ddf786e5ccb8":[2,0,0,1,38,4],
+"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#ab0dd85f0fcbbab2f15eee995458d2dfb":[2,0,0,1,38,5],
+"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#abb5b9f6dd7aed18f42cea885af85c741":[2,0,0,1,38,6],
+"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#ac581df0af500c9e8a73b8f988739600b":[2,0,0,1,38,8],
+"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#acc10569862d1575d9453d1c1aa539242":[2,0,0,1,38,2],
+"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#ad799871eab498f2e535f52f0082f8b8b":[2,0,0,1,38,9],
+"classGpgFrontend_1_1UI_1_1GeneralTab.html":[2,0,0,1,27],
+"classGpgFrontend_1_1UI_1_1GeneralTab.html#a214079dfbacdc6898146c8468611cf0c":[2,0,0,1,27,0],
+"classGpgFrontend_1_1UI_1_1GeneralTab.html#a3b97ed699cbc2f34b9e887cd2c83b645":[2,0,0,1,27,7],
+"classGpgFrontend_1_1UI_1_1GeneralTab.html#a4523f55e98cee600b2fd47b1750b4d24":[2,0,0,1,27,1],
+"classGpgFrontend_1_1UI_1_1GeneralTab.html#a7b26d8a088ce8f50b1fd0e719e38534b":[2,0,0,1,27,2],
+"classGpgFrontend_1_1UI_1_1GeneralTab.html#aa183fdff30ef4581a05ff5c0fde44d8c":[2,0,0,1,27,5],
+"classGpgFrontend_1_1UI_1_1GeneralTab.html#aa88ccbda61728be6de0aa2d9b92e0b69":[2,0,0,1,27,4],
+"classGpgFrontend_1_1UI_1_1GeneralTab.html#abaf12014356a2fa20f66945004abb7c2":[2,0,0,1,27,6],
+"classGpgFrontend_1_1UI_1_1GeneralTab.html#afc107d56f13000aa28436a5e26a0876b":[2,0,0,1,27,3],
+"classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html":[2,0,0,1,3],
+"classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html#a04611d5160fcc6ef36f6fce8dd94c645":[2,0,0,1,3,1],
+"classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html#a2bb963a14733cf9b99736b6624c09d83":[2,0,0,1,3,7],
+"classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html#a35a707865fbcc95b6261e382a6ff171c":[2,0,0,1,3,6],
+"classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html#a4d9ba1fc6f869c051854e2ed2841fd71":[2,0,0,1,3,3],
+"classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html#a626c30712552f1c7fdf69d1d13d7b303":[2,0,0,1,3,9],
+"classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html#a6eeca78f12b49f095610d762d4cf7d7e":[2,0,0,1,3,5],
+"classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html#a917cf89e7920c1c5d7d8070b53bd49fc":[2,0,0,1,3,8],
+"classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html#aaf89f54f2124617e836d31df29066529":[2,0,0,1,3,4],
+"classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html#acd2918a181aa9c8c59e5d789ce34a92a":[2,0,0,1,3,11],
+"classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html#ada791c1b329841a2c68f18e7a4ddd909":[2,0,0,1,3,2],
+"classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html#add69685b9c83ed03ed24d36f2badd835":[2,0,0,1,3,0],
+"classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html#af97fbd4ee0b57a20cc9a97c7e877d520":[2,0,0,1,3,10],
+"classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html#afda750c1511434cb0d3162d9bd1ab78f":[2,0,0,1,3,12],
+"classGpgFrontend_1_1UI_1_1GnupgTab.html":[2,0,0,1,8],
+"classGpgFrontend_1_1UI_1_1GnupgTab.html#a41deb4e53e1fcf424e72f33eb30f90be":[2,0,0,1,8,1],
+"classGpgFrontend_1_1UI_1_1GnupgTab.html#ab9d9e8af4494659f13b87804e7318a79":[2,0,0,1,8,0],
+"classGpgFrontend_1_1UI_1_1GnupgTab.html#afd915ad09684b960ec63e28753f833e9":[2,0,0,1,8,2],
+"classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html":[2,0,0,1,37],
+"classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a32f0e7dda69f7b1e3cc869340736c590":[2,0,0,1,37,1],
+"classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a6f8ab335d89948c48cd634ab20ff9aa0":[2,0,0,1,37,3],
+"classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a9b341a1a903cec0c70a6af4bb230905e":[2,0,0,1,37,2],
+"classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#ac0290f06e08f2714f9727bb578df1298":[2,0,0,1,37,0],
+"classGpgFrontend_1_1UI_1_1HelpPage.html":[2,0,0,1,52],
+"classGpgFrontend_1_1UI_1_1HelpPage.html#a1be8f5b79fef3d1d62ff4620b8535006":[2,0,0,1,52,0],
+"classGpgFrontend_1_1UI_1_1HelpPage.html#a49fbde87f2ef385b44225acd6ffbc84f":[2,0,0,1,52,2],
+"classGpgFrontend_1_1UI_1_1HelpPage.html#a51ff99077a75507365307f5dd783df99":[2,0,0,1,52,3],
+"classGpgFrontend_1_1UI_1_1HelpPage.html#a92c31eea47b42be28c86431384b27846":[2,0,0,1,52,1],
+"classGpgFrontend_1_1UI_1_1HelpPage.html#af4f61342fae06a49c95d8d20ca51ca2c":[2,0,0,1,52,4],
+"classGpgFrontend_1_1UI_1_1InfoBoardWidget.html":[2,0,0,1,53],
+"classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a2c23091fa2fd5b97a045ac6c492caaca":[2,0,0,1,53,8],
+"classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a456f15315a03107f7757d84362c1af71":[2,0,0,1,53,1],
+"classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a4d18a72ae1c460a12b8902d426d9d395":[2,0,0,1,53,13],
+"classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a4fd6f91eb435feb41ae93e44485646ab":[2,0,0,1,53,3],
+"classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a6380776ea1bf9a020370589e1e20efd3":[2,0,0,1,53,12],
+"classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a68f984815100f4ce281b9794f193e516":[2,0,0,1,53,9],
+"classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a7d7504339221bd680fb18698dd829b32":[2,0,0,1,53,5],
+"classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a83a4ec326911b8b112bc471e7ca14925":[2,0,0,1,53,7],
+"classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a852c1fe10c7d3153a2146bcea4dbe9ad":[2,0,0,1,53,4],
+"classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#ac576ad298acc83cc313b6753e3715441":[2,0,0,1,53,10],
+"classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#ac936cfc8e1b3af65d0d71b74fb3f0b02":[2,0,0,1,53,6],
+"classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#ad30591c31d19936cfd256e1a3c35d08f":[2,0,0,1,53,11],
+"classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#adeef521a8838bf2a1692c25d9b108010":[2,0,0,1,53,0],
+"classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#adfa4acd435d2ec29f951f4e7e6a43f38":[2,0,0,1,53,2],
+"classGpgFrontend_1_1UI_1_1InfoTab.html":[2,0,0,1,4],
+"classGpgFrontend_1_1UI_1_1InfoTab.html#a99d8b059ee28ea257981892e0b35d4cc":[2,0,0,1,4,0],
+"classGpgFrontend_1_1UI_1_1IntroPage.html":[2,0,0,1,33],
+"classGpgFrontend_1_1UI_1_1IntroPage.html#a812fd63d87955f9131a98ad8b679f8a4":[2,0,0,1,33,1],
+"classGpgFrontend_1_1UI_1_1IntroPage.html#aed4220a7372b192ee4e8bc5024db922d":[2,0,0,1,33,0],
+"classGpgFrontend_1_1UI_1_1KeyDetailsDialog.html":[2,0,0,1,15],
+"classGpgFrontend_1_1UI_1_1KeyDetailsDialog.html#a2c3d09bc4b7ebce9839ec03a43838d32":[2,0,0,1,15,0],
+"classGpgFrontend_1_1UI_1_1KeyDetailsDialog.html#a701ed5c70a8a0965b0d887b6d187e996":[2,0,0,1,15,1],
+"classGpgFrontend_1_1UI_1_1KeyGenDialog.html":[2,0,0,1,13],
+"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a010acccfd5fb5475769658f9cf68da7b":[2,0,0,1,13,2],
+"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a03a8e1c8f2c1887732d36a346185bb40":[2,0,0,1,13,20],
+"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a03b7fe3e34147e404ca3ca6a0aa80cfc":[2,0,0,1,13,14],
+"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a104dcf364452ab5fe019f51c6db7f7d9":[2,0,0,1,13,22],
+"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a10677e68994c32676acb051a0153375d":[2,0,0,1,13,4],
+"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a196ef707a7a2cfd717f69c8a5bc3278d":[2,0,0,1,13,21],
+"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a242a3245de709ede086087d7a096e6cd":[2,0,0,1,13,17],
+"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a281bfffd99fcb600d07c4604bf2a8841":[2,0,0,1,13,24],
+"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3008e2a9879a8e122e422f67cf0018f8":[2,0,0,1,13,16],
+"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3453d1a8a4c0411472b2779d018abdc3":[2,0,0,1,13,18],
+"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3aef8d2bb8e0d36842532726a6796ab9":[2,0,0,1,13,0],
+"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a43850a47ceaeb2e693027a0672bf77f7":[2,0,0,1,13,30],
+"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a48e953cd49efde2315868e8606af7226":[2,0,0,1,13,10],
+"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a4eb53559f200092cd299f7a90c03cdbb":[2,0,0,1,13,5],
+"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a516aa59c71a9ddf06c51e93252e93b76":[2,0,0,1,13,12],
+"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a52bf44c05cf1280ba13369ae2c33c60a":[2,0,0,1,13,29],
+"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a60bff34ff0a5ed5aa60fc280c3420716":[2,0,0,1,13,32],
+"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7b1b9cb46c0547c1e561e56d55616cf1":[2,0,0,1,13,26],
+"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7ed095cce29c658741ae0520049010c0":[2,0,0,1,13,28],
+"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a8e500e3153558364fe5ba5b8bab6f219":[2,0,0,1,13,19],
+"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a8e6554b47e0dd6c2025ccb0d1d0cb658":[2,0,0,1,13,3],
+"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a8ecbb5721d5a2a0f85fd7b362f62bf83":[2,0,0,1,13,31],
+"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a904d5e72a1946382ddfca80dc57c4db5":[2,0,0,1,13,9],
+"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#aa36de61cedb98f919f10e35d4e6b5146":[2,0,0,1,13,6],
+"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#aa765259f9aa65b81d59b982ee0595e52":[2,0,0,1,13,15],
+"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#aaa9b55830c39ce854e4ede26d916a844":[2,0,0,1,13,23],
+"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ab0ccac068670a3e28ce78ff87a40b2fc":[2,0,0,1,13,25],
+"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ab40bd826a5437124f8afd09824606c76":[2,0,0,1,13,7],
+"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ab8f04b046abb56d53bdbe67838b84fdc":[2,0,0,1,13,8],
+"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ae611933ccd6fd67e65a2cf1ff09b5e8f":[2,0,0,1,13,11],
+"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ae8aeaff7be0b1552b29d1f209af0bd28":[2,0,0,1,13,1],
+"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#af1f7a62dcb024513453766ee8816d514":[2,0,0,1,13,13],
+"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#aff131dd6f7178c63ef2e2f85d30828a2":[2,0,0,1,13,27],
+"classGpgFrontend_1_1UI_1_1KeyGenPage.html":[2,0,0,1,35],
+"classGpgFrontend_1_1UI_1_1KeyGenPage.html#a0eb5dad522c597dcd101c02f496e7e70":[2,0,0,1,35,0],
+"classGpgFrontend_1_1UI_1_1KeyGenPage.html#a28958f6627f01db7c6f75fc0dec3eead":[2,0,0,1,35,1],
+"classGpgFrontend_1_1UI_1_1KeyGenPage.html#a8b757ec603524d53307278110cece2bd":[2,0,0,1,35,2],
+"classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html":[2,0,0,1,10],
+"classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a0177cdaa19d1f83c9e519039aa7a8ce1":[2,0,0,1,10,0],
+"classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a1f82af3b6aee0e6e5999b1b146b36938":[2,0,0,1,10,7],
+"classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a238e3af4b4980dd563e1fe6ea12f4474":[2,0,0,1,10,9],
+"classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a2abf6522dd8c254074d9174fcde1d2be":[2,0,0,1,10,8],
+"classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a8bc7fdc44432686d8b154783b2d156e8":[2,0,0,1,10,6],
+"classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a9e37a653a982e671977d2101b72ae3b6":[2,0,0,1,10,3],
+"classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a9f5912ff99e3820d5fa6a58ed14a70c8":[2,0,0,1,10,1],
+"classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#ae682853c7eccfd3a6be43765f162f5a4":[2,0,0,1,10,4],
+"classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#af88ee416b2227ce847a3b8123a23ce24":[2,0,0,1,10,2],
+"classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#affc26751c72e51c702eea3a251f284db":[2,0,0,1,10,5],
+"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,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,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,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#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]
};
diff --git a/docs/html/navtreeindex4.js b/docs/html/navtreeindex4.js
index c080f008..5c689655 100644
--- a/docs/html/navtreeindex4.js
+++ b/docs/html/navtreeindex4.js
@@ -1,253 +1,253 @@
var NAVTREEINDEX4 =
{
-"classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#ae2dcd1d3f6264f6e58d8b69aa0511321":[2,0,0,1,15,5],
-"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html":[2,0,0,1,16],
-"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a01664d76e4405685086e31d6ae29b18d":[2,0,0,1,16,3],
-"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a1485e603de56152f45d96e0ce5c50d9b":[2,0,0,1,16,18],
-"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a1696d290fd22046aaf66b0c8855478cf":[2,0,0,1,16,2],
-"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a1bb1519e5cce51ad5796065232f66ad6":[2,0,0,1,16,13],
-"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a265ef140feec330e7341c1369c0aefab":[2,0,0,1,16,5],
-"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a285b5aa841aadd345096b722de2c5207":[2,0,0,1,16,10],
-"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a34ea69e2f2a6d190121c0463cf190a63":[2,0,0,1,16,22],
-"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a65176245d280ae0734ef7b5b3f1c4cc4":[2,0,0,1,16,17],
-"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a72717007cd65887f79b6f963568263a3":[2,0,0,1,16,23],
-"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a73a47d699a33419a6cc265d55b89be50":[2,0,0,1,16,19],
-"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a76efd8f8d623813be1a329ad01972444":[2,0,0,1,16,0],
-"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a7a8119c794ed9ed63c0caa1c3373b6dc":[2,0,0,1,16,4],
-"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a83b1290251a204def52677ae000a17ec":[2,0,0,1,16,7],
-"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a8c71b37aa040da50cb0105489a42e60d":[2,0,0,1,16,9],
-"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a9d57be18c2091827c04ec8809f4154be":[2,0,0,1,16,20],
-"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aa45a2433ce82a88eeb2c9c282ab7b975":[2,0,0,1,16,8],
-"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aadcb3bbb4233fdc2deca5b509c46b2e1":[2,0,0,1,16,6],
-"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aae9905764b5551208574a932fdfba29c":[2,0,0,1,16,16],
-"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#ab14f5ac30ce3cca1c42155bae030c62e":[2,0,0,1,16,14],
-"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#acd538bd5cd229b0f66e05803b6531443":[2,0,0,1,16,15],
-"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#ad8c25061351d8e739b70d5466b87410e":[2,0,0,1,16,21],
-"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#ada1c21cf59f1f19dfd4ffe0391bc1594":[2,0,0,1,16,12],
-"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aedc0e13ba1b64782e40f7c14af77f8f0":[2,0,0,1,16,11],
-"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#af8b600fbd7cd0fbb5b6183403bf870b2":[2,0,0,1,16,1],
-"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html":[2,0,0,1,17],
-"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a384f4250e58110da58c0e6996b42a8ab":[2,0,0,1,17,2],
-"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a4dcec352e412afe5c5491f941495090f":[2,0,0,1,17,1],
-"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a4eb2668e860bb19e5c3c47a922b1e671":[2,0,0,1,17,7],
-"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a504d26d23c6e4228b732f2f79c2c6fa3":[2,0,0,1,17,5],
-"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a636caee67903f6f6114ba7a63ba49781":[2,0,0,1,17,6],
-"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a6becf000c1128e46afee8a86066a242c":[2,0,0,1,17,10],
-"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a9a28a055e8e549288e7dce49050493f5":[2,0,0,1,17,13],
-"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#aa150485d290176e45d7bb1e87601abde":[2,0,0,1,17,12],
-"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#aad4e209d7b4eb0ac6623b2f12ce5ecc5":[2,0,0,1,17,0],
-"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#ab23cb5c7d25aabc0bed9ba530f3866ba":[2,0,0,1,17,8],
-"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#ab5304882e1883244ff798ec06ff1c888":[2,0,0,1,17,11],
-"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#acb6fe75a2e834469627d9b46ad84d514":[2,0,0,1,17,4],
-"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#ae5351ab31a47755ec82a007cd3610b55":[2,0,0,1,17,3],
-"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#af2b406e19ae3e456c78e558c2d82d410":[2,0,0,1,17,9],
-"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html":[2,0,0,1,18],
-"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a0503508ce7e11f497a05cdf6f536a253":[2,0,0,1,18,2],
-"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a083cd080527b4e1f1009ca6d3152894f":[2,0,0,1,18,9],
-"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a0c80829e8fd1802dd3c984fe65c3ca36":[2,0,0,1,18,25],
-"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a0ee84c4e1ea5c7c75bcddd2325993934":[2,0,0,1,18,8],
-"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a11a6e8aca1754d513ea91192ee0315bf":[2,0,0,1,18,17],
-"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a1420046130128b5679400d5ef7b7255e":[2,0,0,1,18,7],
-"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a1790a8b163b94f33a3bb968f9a19f00c":[2,0,0,1,18,11],
-"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a2cad9b13df5cfa828d1ca641a19d2e08":[2,0,0,1,18,24],
-"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a2e44cb3bf3ed390f5e3db5cafb0870e9":[2,0,0,1,18,6],
-"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a2f634f4c83ab5dd2d088eb07e0d3b862":[2,0,0,1,18,19],
-"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a324446276f111be455773381ee8b6739":[2,0,0,1,18,3],
-"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a55b540fb99cbe55631af12c0c6156b20":[2,0,0,1,18,13],
-"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a63e054f4a2d8e12c70d25d39bb55f876":[2,0,0,1,18,20],
-"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a698f8af1dc074ca7433f9ee038ab4150":[2,0,0,1,18,18],
-"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a6a64f9528cfd743d724947b27eefa0a5":[2,0,0,1,18,21],
-"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a72b94f3e8d11c44d1b4e3653ab885927":[2,0,0,1,18,16],
-"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a74cab42dc5d138fa2632d027af279957":[2,0,0,1,18,22],
-"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a92f3f64ea29f6660358aab0b2d2da4dc":[2,0,0,1,18,10],
-"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a93abe5c0467c7c4a29e0c45437a10732":[2,0,0,1,18,0],
-"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#aab240016c10ecf575965108751fc0ff8":[2,0,0,1,18,15],
-"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#abbb66d84191a714d24f384125a25b328":[2,0,0,1,18,23],
-"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#abf09b9868514921763a9134084b228ee":[2,0,0,1,18,12],
-"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#ac827e8474ace52814f8de70709987d36":[2,0,0,1,18,14],
-"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#ad415e2dd5046c744b650b26c123130ff":[2,0,0,1,18,1],
-"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#aec18dfc0422bbb3d91c91ce8a067e148":[2,0,0,1,18,5],
-"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#aedc5f77d6bf9b780b96552a43b323feb":[2,0,0,1,18,4],
-"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html":[2,0,0,1,19],
-"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a01adaffd23f720fdf94b84d294c4eae4":[2,0,0,1,19,11],
-"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a0511f5714548920cf3563306536d0bd7":[2,0,0,1,19,5],
-"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a07aff92c72ada924eae1cca0f31ae527":[2,0,0,1,19,27],
-"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a08093ae1a45cb7705cb243487d975cfd":[2,0,0,1,19,22],
-"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a09043e6f3b52d194e347304f62fbcce3":[2,0,0,1,19,17],
-"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a0b075e0415db03a3cc43bd8f6e014031":[2,0,0,1,19,16],
-"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a0d393d4abe6e2cc8d4cdfebf8c4c2186":[2,0,0,1,19,31],
-"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a161bc9787be40a32f487c79faaeb54bf":[2,0,0,1,19,9],
-"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a162f90b120f704c31aa7693a793e20c6":[2,0,0,1,19,12],
-"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a16f1ae88d6a417b614cfc6ae1852187c":[2,0,0,1,19,14],
-"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a283cc54d3453da8fcd96633381ec2753":[2,0,0,1,19,10],
-"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a2a87d3ed720a57a5d96a108c7a9827d7":[2,0,0,1,19,6],
-"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a2d7c328d726436061f19a287e481268d":[2,0,0,1,19,7],
-"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a32dc14242d88ca168ae71e9a895d2b29":[2,0,0,1,19,3],
-"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a33c6b175129a6c364ebe5541d146d082":[2,0,0,1,19,24],
-"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a35d0b436cf13fa127dbba5b12f8f9144":[2,0,0,1,19,1],
-"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a3c264254d4f6df7ad810aecde43d9413":[2,0,0,1,19,20],
-"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a4569bb5afb56e0caaa6eeadac05a53d6":[2,0,0,1,19,19],
-"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a4f72825ffcade6dd1def95246748ca3d":[2,0,0,1,19,23],
-"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a578c5a61208ae962fd772bc5e9045d12":[2,0,0,1,19,25],
-"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a5c029e55323d54aa2306267cea1809ea":[2,0,0,1,19,2],
-"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a5dbd205bb97fe7379d01c19250d6f97c":[2,0,0,1,19,29],
-"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a7653654c81149c48e7e4d5f0c00c360f":[2,0,0,1,19,4],
-"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a7898b6fa328bfbc55ee2721bca4b2af1":[2,0,0,1,19,8],
-"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a7e4ef818bcd2f315159f7043a099302c":[2,0,0,1,19,30],
-"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a9fd99282a49e752133fdd5bdb10a62d4":[2,0,0,1,19,18],
-"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#aa0fb2623234f3dea2ef40809c9571360":[2,0,0,1,19,13],
-"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#aa598c2c2a97f5c3dd7e8227cdfe6a51a":[2,0,0,1,19,21],
-"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#aa90d503edf4bab73034f68dc424964dd":[2,0,0,1,19,28],
-"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#ad4638897cefc9a3fe111eb386abd25f4":[2,0,0,1,19,26],
-"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#ada1a7906a9e5f38c28922f9ac98c76a6":[2,0,0,1,19,15],
-"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#af18c4f08a127d919a316c7e27ba338d3":[2,0,0,1,19,0],
-"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html":[2,0,0,1,10],
-"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a1e17305d6b470d0f7050eb8e3e6ee3d8":[2,0,0,1,10,13],
-"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a228c855a0676155572d691cb0df9c328":[2,0,0,1,10,22],
-"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a3b818c2a3e5c32fc32425b17e63367e2":[2,0,0,1,10,5],
-"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a3d2e0010ac4e4ed0b2a88d9487d2732c":[2,0,0,1,10,23],
-"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a4c4e44963dcd4f656b10788a7fafbb4e":[2,0,0,1,10,1],
-"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a4c5d8a43fd8a6f1c217d83694dcc689c":[2,0,0,1,10,2],
-"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a4cbacc689425edd3105af64083c7b3a1":[2,0,0,1,10,18],
-"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a6f006d4702885fb41317d10d654dfa3c":[2,0,0,1,10,4],
-"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a6f1c5238da7cd6f117bed8018469b37a":[2,0,0,1,10,10],
-"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a7f6e60d52be1bc06e2f9ddad4ca11d98":[2,0,0,1,10,16],
-"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a95460bd9977b72ef20d4566f5e231dab":[2,0,0,1,10,24],
-"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a96b40e94b5c5a3216f513b9699820063":[2,0,0,1,10,0],
-"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a9d752319d7342f0156f8dfa15868fc48":[2,0,0,1,10,19],
-"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#aab814c68a1d532bef6e0e77b6614c622":[2,0,0,1,10,21],
-"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ab0585bbabc450d2cb571a5bd374ebb0e":[2,0,0,1,10,12],
-"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ab2e8ddb2180df363ad2cf8fc27fabee3":[2,0,0,1,10,26],
-"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ab93fbf5e0626bffe398f5baa2bc00b1a":[2,0,0,1,10,7],
-"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ab9e2fe38d54c0f0d3d73907300faa513":[2,0,0,1,10,3],
-"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#abb3d99b2c17b0f6ddb0e5b93dd8f8802":[2,0,0,1,10,14],
-"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#abdf29b8b4337573cafd839fd4ce25104":[2,0,0,1,10,15],
-"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ac9c14bbc97945c94fd02c8e067ccab06":[2,0,0,1,10,9],
-"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ad4a75da57fa18bfcfaeb7fc601f1c8f6":[2,0,0,1,10,6],
-"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ad7f4df9aa6ee20ff4a36049bbf3e7f6e":[2,0,0,1,10,8],
-"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#adc7249b039e078c84f705c7111a148b0":[2,0,0,1,10,11],
-"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#af48f4a6d2744bad2759e691f9c59f209":[2,0,0,1,10,20],
-"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#af615a531375a74aa4b46a7dd53d38422":[2,0,0,1,10,25],
-"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#afae8573a9f425bd53c84828576f4ac1f":[2,0,0,1,10,17],
-"classGpgFrontend_1_1UI_1_1KeyServerImportTask.html":[2,0,0,1,43],
-"classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a1640363b4b27cb3d256181ddc6cdc857":[2,0,0,1,43,0],
-"classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a3adcb012ca6a6c08c65b94ab301eba27":[2,0,0,1,43,8],
-"classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a5e1fb2810c4b07bd9d8c6fe11c72c526":[2,0,0,1,43,7],
-"classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a6b2c07d193fb28a57b1738fa493b2b3f":[2,0,0,1,43,3],
-"classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#aaf3e0f25869eab592e0be108b3727f8e":[2,0,0,1,43,2],
-"classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#ac066c7a57c5b0bc96a6982df2585862b":[2,0,0,1,43,4],
-"classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#ac0c91559fa74b01a5b6d9cf925727339":[2,0,0,1,43,1],
-"classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#ae3d6f2b89691f0fdcc692920aacd3fba":[2,0,0,1,43,5],
-"classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#af24ff4c57d63e831324ca6075b86ae8b":[2,0,0,1,43,6],
-"classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html":[2,0,0,1,44],
-"classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#a04075001fcf461425c3ae14c96de2ad6":[2,0,0,1,44,1],
-"classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#a05fdcb7bd52dced3c9e15e9ca313c2b4":[2,0,0,1,44,7],
-"classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#a168e21bdfa72f43f91187ab29ece5efa":[2,0,0,1,44,0],
-"classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#a1d03d44bd99bbaf7908a7a8ea8080212":[2,0,0,1,44,5],
-"classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#a62bb1488fd6f95881bb70f8a228ef9c9":[2,0,0,1,44,6],
-"classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#a99a5df78f8b78551dba4a14e144099cf":[2,0,0,1,44,2],
-"classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#ae478130476c95a8b220c3b0e6a7b88b4":[2,0,0,1,44,3],
-"classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#af0f20b03e64115f475d05a6517ab5bcf":[2,0,0,1,44,4],
-"classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html":[2,0,0,1,20],
-"classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#a05c643155ca542c788acd648a59a1917":[2,0,0,1,20,3],
-"classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#a0efa9fd74abf305b2e20536f208c8beb":[2,0,0,1,20,1],
-"classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#a3789ae2c0e3d1510b2b67c762118d6c0":[2,0,0,1,20,6],
-"classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#a547fe4ca02de93cefd0a9954a7a6d5e4":[2,0,0,1,20,7],
-"classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#a5a256b2be02876fb748193b2cb14fb14":[2,0,0,1,20,8],
-"classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#a6492b945ec7cfbb73cfcad0964ffe23f":[2,0,0,1,20,2],
-"classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#a67da7721959b585db21f7e893793564b":[2,0,0,1,20,0],
-"classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#acf4b8c667c69c822283f5d72728c3915":[2,0,0,1,20,4],
-"classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#adde2b33bd17f521f0630702987b1d274":[2,0,0,1,20,5],
-"classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html":[2,0,0,1,21],
-"classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#a1deb1df41b7a9b4f93fb717280d3b502":[2,0,0,1,21,5],
-"classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#a8201baff3129df1090311964f009ae2b":[2,0,0,1,21,3],
-"classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#a82f6bf641ff3b64341a0bdcf76571c43":[2,0,0,1,21,2],
-"classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#aaa06ce342178802e76119bec6b26cc55":[2,0,0,1,21,0],
-"classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#ab510bc8feea27f5a2f5361475a50d106":[2,0,0,1,21,8],
-"classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#acb34dd25f9d75feb0ec625ce81d47cff":[2,0,0,1,21,6],
-"classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#ad493cf9abfab589f5560131cda68539d":[2,0,0,1,21,7],
-"classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#ad9ae0e31f60685d600a695d1d4b0c025":[2,0,0,1,21,4],
-"classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#ae1943f11c25f5696103f113493462a76":[2,0,0,1,21,1],
-"classGpgFrontend_1_1UI_1_1KeyUploadDialog.html":[2,0,0,1,11],
-"classGpgFrontend_1_1UI_1_1KeyUploadDialog.html#a0f724649ca953b888f07d69c97fe45b6":[2,0,0,1,11,2],
-"classGpgFrontend_1_1UI_1_1KeyUploadDialog.html#a168859b1774aa38b8ad4c423fe01f1c5":[2,0,0,1,11,3],
-"classGpgFrontend_1_1UI_1_1KeyUploadDialog.html#a51f63e30f26f7923def91519d347c0cf":[2,0,0,1,11,0],
-"classGpgFrontend_1_1UI_1_1KeyUploadDialog.html#a520581c9828a62043ddea18da740401e":[2,0,0,1,11,1],
-"classGpgFrontend_1_1UI_1_1KeyUploadDialog.html#a71c4d23dcfa453bff540324b0a74f347":[2,0,0,1,11,5],
-"classGpgFrontend_1_1UI_1_1KeyUploadDialog.html#a8c50ef3699448352d6272bb2faab5493":[2,0,0,1,11,4],
-"classGpgFrontend_1_1UI_1_1KeyserverTab.html":[2,0,0,1,27],
-"classGpgFrontend_1_1UI_1_1KeyserverTab.html#a0fc7e301ec8db2f328508c0380027d94":[2,0,0,1,27,8],
-"classGpgFrontend_1_1UI_1_1KeyserverTab.html#a1ec36c6d42a71d79fc006c1aab0ebdfa":[2,0,0,1,27,10],
-"classGpgFrontend_1_1UI_1_1KeyserverTab.html#a221117b56dda48956e44d96a08f6823b":[2,0,0,1,27,3],
-"classGpgFrontend_1_1UI_1_1KeyserverTab.html#a26449a77844d9db69a543ff88f10e347":[2,0,0,1,27,4],
-"classGpgFrontend_1_1UI_1_1KeyserverTab.html#a68f954c4b713956a87f7382b30f45612":[2,0,0,1,27,7],
-"classGpgFrontend_1_1UI_1_1KeyserverTab.html#a74f30a1f6314b6156f4df20652129c5d":[2,0,0,1,27,6],
-"classGpgFrontend_1_1UI_1_1KeyserverTab.html#a85b9bfdbd7ae71f0d74b9d6c32a194e1":[2,0,0,1,27,12],
-"classGpgFrontend_1_1UI_1_1KeyserverTab.html#a8cbd6e448e187260730ab8301ad4892e":[2,0,0,1,27,2],
-"classGpgFrontend_1_1UI_1_1KeyserverTab.html#a8fd9c3735ab43ecf2eb6df4c9b2ddd93":[2,0,0,1,27,1],
-"classGpgFrontend_1_1UI_1_1KeyserverTab.html#aa3d3561d3bdf95de6486b2caa752616c":[2,0,0,1,27,0],
-"classGpgFrontend_1_1UI_1_1KeyserverTab.html#aacb5e6e543708687185a993dd43050a3":[2,0,0,1,27,5],
-"classGpgFrontend_1_1UI_1_1KeyserverTab.html#ac3f03e8a208f63776414df0ce37ead19":[2,0,0,1,27,11],
-"classGpgFrontend_1_1UI_1_1KeyserverTab.html#ac946f4228b6e8784eebcbb63f285a702":[2,0,0,1,27,9],
-"classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html":[2,0,0,1,45],
-"classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a20f0147d670be7ab5c9d3051a900f508":[2,0,0,1,45,3],
-"classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a257a806258d2e82961dd1227151d8269":[2,0,0,1,45,7],
-"classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a2a34a0b2c9f99597cc9ac52ffbcf151a":[2,0,0,1,45,2],
-"classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a4e4e873d8d75a215f574f8211b5896d8":[2,0,0,1,45,0],
-"classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a4e4e873d8d75a215f574f8211b5896d8a5fe88955da96f064d23569112b2b6a13":[2,0,0,1,45,0,2],
-"classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a4e4e873d8d75a215f574f8211b5896d8a63ce35ca3098ebd24e16ad592f14cd0d":[2,0,0,1,45,0,0],
-"classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a4e4e873d8d75a215f574f8211b5896d8adbea1aa1d6372dbabc06c38ac1231f88":[2,0,0,1,45,0,1],
-"classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a5c53b9ab82f93982e29a4fe3076c3419":[2,0,0,1,45,9],
-"classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a870ec89c06c3a4789948ca60e45e437d":[2,0,0,1,45,5],
-"classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a9c54f88adf75dd3402fef51ef5eeaea5":[2,0,0,1,45,6],
-"classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#abbb10300a75086649faba44cf4d2ed61":[2,0,0,1,45,8],
-"classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#ae25b5d59b53facc15648ab80ff19ed77":[2,0,0,1,45,1],
-"classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#af9350e0a8d5993e5be0a5478fcb161be":[2,0,0,1,45,4],
-"classGpgFrontend_1_1UI_1_1MainWindow.html":[2,0,0,1,39],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a01b85fb17c373d8f97ce439027c6d04e":[2,0,0,1,39,78],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a033d448541b44fa48b76dec828a4eb0e":[2,0,0,1,39,32],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a04668246525874760f47a340b4b7d8de":[2,0,0,1,39,6],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a05b838ad518857fed24864ecce40c203":[2,0,0,1,39,43],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a08ba4521f68c488b23b651e201011759":[2,0,0,1,39,11],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a09671c3aa26a750cfd6be6c092de8715":[2,0,0,1,39,56],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a0a6d0618f2835a6dcae707a4ca770a48":[2,0,0,1,39,37],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a0ab96012df041f2c2e47092db0600355":[2,0,0,1,39,4],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a0cb094e0409337cfd7dba1bb510ea96e":[2,0,0,1,39,54],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a0cded37ef6e07856bbe439b0e90db839":[2,0,0,1,39,105],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a0e9920cf0fc974ac2f70d3f039f009f2":[2,0,0,1,39,115],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a14bb12fa25620e1a93bd23c9f7c84081":[2,0,0,1,39,114],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a16bbfd12cd3a6f0df9e2c32cf7999e57":[2,0,0,1,39,85],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a16ddebec90a4bd0d13baa9d972c3445f":[2,0,0,1,39,30],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a1759412cb7ee71600c4b6e3c6e752d2e":[2,0,0,1,39,3],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a19d24772c88b55070f139b97806c10ca":[2,0,0,1,39,99],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a1ab1f3f57f9969447491e63f54420585":[2,0,0,1,39,8],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a1d61ea803e6c825bd54f42ba9ae85919":[2,0,0,1,39,23],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a1e0d23d361b8e339ca85410db2bdfb64":[2,0,0,1,39,71],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a1ef17c566a764f707f43593a1f6b3c60":[2,0,0,1,39,59],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a210ab31f4d949a50507d0690c0d1598a":[2,0,0,1,39,13],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a22256763ef83ed35a81e446b553d8112":[2,0,0,1,39,102],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a2417c807356e3b876ecb2f572568670b":[2,0,0,1,39,69],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a24a0b0d974fc5f8fdda60c128a82d957":[2,0,0,1,39,24],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a24e58eb0b84709ea665db95e54da865b":[2,0,0,1,39,94],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a2518a8a17ebcc217c7cc34c9c3a411f8":[2,0,0,1,39,45],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a25a2e4017d77cffc8362bde9606fad30":[2,0,0,1,39,40],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a276e843e2f5eda8934fb350fb6f89327":[2,0,0,1,39,44],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a29a811d4d440c79c1bd2cc2bb40cdf7e":[2,0,0,1,39,29],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a2bed0c3b032269c9eb82bc7c068852cb":[2,0,0,1,39,74],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a2c2f6c021219564846f1624f6bb5b9a2":[2,0,0,1,39,61],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a2fb0dc34218da4963e3c37fd60b334a7":[2,0,0,1,39,82],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a304efe91afa31b32725caa00c27475a4":[2,0,0,1,39,26],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a30fe95cf76936d382ee0b67a24688a7a":[2,0,0,1,39,16],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a313a5d7d0847114a6f11e4d7870edd86":[2,0,0,1,39,62],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a38f243880cfb9276545b08f0730811e7":[2,0,0,1,39,86],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a3c0a5305cf55fe5bee2f18298f983cad":[2,0,0,1,39,52],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a3cb7daedbef61c1be27635c9ebc9e689":[2,0,0,1,39,116],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a3f3d03b0ec22385bee559fbd2aeb881b":[2,0,0,1,39,33],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a472500fec64442b114e9ce9faf4b6a73":[2,0,0,1,39,88],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a473b679fa0dc3cdf4f6f98d6553fa0ec":[2,0,0,1,39,2],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a48368c77af7b1f4cb632870b8d914a28":[2,0,0,1,39,36],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a4a1edafb8c67b181ff3c29394147571d":[2,0,0,1,39,89],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a55926649e28a96318b89afba01b966bf":[2,0,0,1,39,28],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a5806e6f5e740e6aa311e0fa5f064302a":[2,0,0,1,39,100],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a5bbe43bdd25df9de8c1de23efd8d37a5":[2,0,0,1,39,55]
+"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,21],
+"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],
+"classGpgFrontend_1_1UI_1_1KeyMgmt.html#ab3698ef93ee48a949915f205452f8743":[2,0,0,1,39,16],
+"classGpgFrontend_1_1UI_1_1KeyMgmt.html#abf0f05743185c40b3cd0936ddccf8f9d":[2,0,0,1,39,21],
+"classGpgFrontend_1_1UI_1_1KeyMgmt.html#ac06a816b6898b4d3e0c7a74bc7b4f4be":[2,0,0,1,39,17],
+"classGpgFrontend_1_1UI_1_1KeyMgmt.html#ac6b43abecc2477164e4947759fc97237":[2,0,0,1,39,23],
+"classGpgFrontend_1_1UI_1_1KeyMgmt.html#aca369a078ec127d150a466d9b2b219c2":[2,0,0,1,39,8],
+"classGpgFrontend_1_1UI_1_1KeyMgmt.html#acadb7692e422ca8efac192604d875457":[2,0,0,1,39,29],
+"classGpgFrontend_1_1UI_1_1KeyMgmt.html#acd9298492830efcbf7c77dfb6bd829e7":[2,0,0,1,39,30],
+"classGpgFrontend_1_1UI_1_1KeyMgmt.html#ad8f69aa0d0564245a9924a7cf7ed0c3d":[2,0,0,1,39,32],
+"classGpgFrontend_1_1UI_1_1KeyMgmt.html#adff3b71d088f4a13ef3d032b3c0ecebc":[2,0,0,1,39,34],
+"classGpgFrontend_1_1UI_1_1KeyMgmt.html#ae41fbcbbf621133fb7655e566f36768b":[2,0,0,1,39,31],
+"classGpgFrontend_1_1UI_1_1KeyMgmt.html#aefc27b57830cf14a85c2225664f89f64":[2,0,0,1,39,0],
+"classGpgFrontend_1_1UI_1_1KeyMgmt.html#af089757a71f5f27922c45eb52c924f88":[2,0,0,1,39,7],
+"classGpgFrontend_1_1UI_1_1KeyMgmt.html#afa24ed000e0833c2cb8f7fea1111299c":[2,0,0,1,39,19],
+"classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html":[2,0,0,1,16],
+"classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a0e2fdf02be3247409cc1590bea0c1fe8":[2,0,0,1,16,2],
+"classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a221d649fb0dfb4048cdf432e05686fe1":[2,0,0,1,16,10],
+"classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a2b9b0aabdbceb4482ebcdfd6c3af987d":[2,0,0,1,16,9],
+"classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a3844bbdb3d0c4e46b3118b7576917ba2":[2,0,0,1,16,11],
+"classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a4e115ce46a85c2f9e4e0e2427839fc7c":[2,0,0,1,16,3],
+"classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a6a7c9f82af2848ef847fef68ab5afbf5":[2,0,0,1,16,6],
+"classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a6dd2a97ec6b3e22c6d29182b1ceb49f3":[2,0,0,1,16,8],
+"classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a6f0e8f878445e71527f23bf8b9edcd90":[2,0,0,1,16,4],
+"classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a7226b139dc7a491e8ba780135654be27":[2,0,0,1,16,0],
+"classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#acb100218dfa9f97f633d1b3cd7bf5a05":[2,0,0,1,16,7],
+"classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#ad4e09323a53992daee08173bed17bf9a":[2,0,0,1,16,1],
+"classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#ae2dcd1d3f6264f6e58d8b69aa0511321":[2,0,0,1,16,5],
+"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html":[2,0,0,1,17],
+"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a01664d76e4405685086e31d6ae29b18d":[2,0,0,1,17,3],
+"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a1485e603de56152f45d96e0ce5c50d9b":[2,0,0,1,17,18],
+"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a1696d290fd22046aaf66b0c8855478cf":[2,0,0,1,17,2],
+"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a1bb1519e5cce51ad5796065232f66ad6":[2,0,0,1,17,13],
+"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a265ef140feec330e7341c1369c0aefab":[2,0,0,1,17,5],
+"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a285b5aa841aadd345096b722de2c5207":[2,0,0,1,17,10],
+"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a34ea69e2f2a6d190121c0463cf190a63":[2,0,0,1,17,23],
+"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a65176245d280ae0734ef7b5b3f1c4cc4":[2,0,0,1,17,17],
+"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a72717007cd65887f79b6f963568263a3":[2,0,0,1,17,24],
+"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a73a47d699a33419a6cc265d55b89be50":[2,0,0,1,17,19],
+"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a76efd8f8d623813be1a329ad01972444":[2,0,0,1,17,0],
+"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a7a8119c794ed9ed63c0caa1c3373b6dc":[2,0,0,1,17,4],
+"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a83b1290251a204def52677ae000a17ec":[2,0,0,1,17,7],
+"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a8c71b37aa040da50cb0105489a42e60d":[2,0,0,1,17,9],
+"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a9a5f52cf050b3ef7e30f742856b82955":[2,0,0,1,17,22],
+"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a9d57be18c2091827c04ec8809f4154be":[2,0,0,1,17,20],
+"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aa45a2433ce82a88eeb2c9c282ab7b975":[2,0,0,1,17,8],
+"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aadcb3bbb4233fdc2deca5b509c46b2e1":[2,0,0,1,17,6],
+"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aae9905764b5551208574a932fdfba29c":[2,0,0,1,17,16],
+"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#ab14f5ac30ce3cca1c42155bae030c62e":[2,0,0,1,17,14],
+"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#acd538bd5cd229b0f66e05803b6531443":[2,0,0,1,17,15],
+"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#ad8c25061351d8e739b70d5466b87410e":[2,0,0,1,17,21],
+"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#ada1c21cf59f1f19dfd4ffe0391bc1594":[2,0,0,1,17,12],
+"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aedc0e13ba1b64782e40f7c14af77f8f0":[2,0,0,1,17,11],
+"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#af8b600fbd7cd0fbb5b6183403bf870b2":[2,0,0,1,17,1],
+"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html":[2,0,0,1,18],
+"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a384f4250e58110da58c0e6996b42a8ab":[2,0,0,1,18,3],
+"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a4dcec352e412afe5c5491f941495090f":[2,0,0,1,18,1],
+"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a4eb2668e860bb19e5c3c47a922b1e671":[2,0,0,1,18,8],
+"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a504d26d23c6e4228b732f2f79c2c6fa3":[2,0,0,1,18,6],
+"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a636caee67903f6f6114ba7a63ba49781":[2,0,0,1,18,7],
+"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a6becf000c1128e46afee8a86066a242c":[2,0,0,1,18,12],
+"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a9a28a055e8e549288e7dce49050493f5":[2,0,0,1,18,15],
+"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#aa150485d290176e45d7bb1e87601abde":[2,0,0,1,18,14],
+"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#aad4e209d7b4eb0ac6623b2f12ce5ecc5":[2,0,0,1,18,0],
+"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#ab23cb5c7d25aabc0bed9ba530f3866ba":[2,0,0,1,18,9],
+"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#ab5304882e1883244ff798ec06ff1c888":[2,0,0,1,18,13],
+"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#ac6b09219bbf830ce6b2d997aa2bb0c04":[2,0,0,1,18,2],
+"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#acb6fe75a2e834469627d9b46ad84d514":[2,0,0,1,18,5],
+"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#ad83ec0e2803737488d368fd796a56ceb":[2,0,0,1,18,10],
+"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#ae5351ab31a47755ec82a007cd3610b55":[2,0,0,1,18,4],
+"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#af2b406e19ae3e456c78e558c2d82d410":[2,0,0,1,18,11],
+"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html":[2,0,0,1,19],
+"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a0503508ce7e11f497a05cdf6f536a253":[2,0,0,1,19,2],
+"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a083cd080527b4e1f1009ca6d3152894f":[2,0,0,1,19,9],
+"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a0c80829e8fd1802dd3c984fe65c3ca36":[2,0,0,1,19,25],
+"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a0ee84c4e1ea5c7c75bcddd2325993934":[2,0,0,1,19,8],
+"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a11a6e8aca1754d513ea91192ee0315bf":[2,0,0,1,19,17],
+"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a1420046130128b5679400d5ef7b7255e":[2,0,0,1,19,7],
+"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a1790a8b163b94f33a3bb968f9a19f00c":[2,0,0,1,19,11],
+"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a2cad9b13df5cfa828d1ca641a19d2e08":[2,0,0,1,19,24],
+"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a2e44cb3bf3ed390f5e3db5cafb0870e9":[2,0,0,1,19,6],
+"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a2f634f4c83ab5dd2d088eb07e0d3b862":[2,0,0,1,19,19],
+"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a324446276f111be455773381ee8b6739":[2,0,0,1,19,3],
+"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a55b540fb99cbe55631af12c0c6156b20":[2,0,0,1,19,13],
+"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a63e054f4a2d8e12c70d25d39bb55f876":[2,0,0,1,19,20],
+"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a698f8af1dc074ca7433f9ee038ab4150":[2,0,0,1,19,18],
+"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a6a64f9528cfd743d724947b27eefa0a5":[2,0,0,1,19,21],
+"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a72b94f3e8d11c44d1b4e3653ab885927":[2,0,0,1,19,16],
+"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a74cab42dc5d138fa2632d027af279957":[2,0,0,1,19,22],
+"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a92f3f64ea29f6660358aab0b2d2da4dc":[2,0,0,1,19,10],
+"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a93abe5c0467c7c4a29e0c45437a10732":[2,0,0,1,19,0],
+"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#aab240016c10ecf575965108751fc0ff8":[2,0,0,1,19,15],
+"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#abbb66d84191a714d24f384125a25b328":[2,0,0,1,19,23],
+"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#abf09b9868514921763a9134084b228ee":[2,0,0,1,19,12],
+"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#ac827e8474ace52814f8de70709987d36":[2,0,0,1,19,14],
+"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#ad415e2dd5046c744b650b26c123130ff":[2,0,0,1,19,1],
+"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#aec18dfc0422bbb3d91c91ce8a067e148":[2,0,0,1,19,5],
+"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#aedc5f77d6bf9b780b96552a43b323feb":[2,0,0,1,19,4],
+"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html":[2,0,0,1,20],
+"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a01adaffd23f720fdf94b84d294c4eae4":[2,0,0,1,20,11],
+"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a0511f5714548920cf3563306536d0bd7":[2,0,0,1,20,5],
+"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a07aff92c72ada924eae1cca0f31ae527":[2,0,0,1,20,27],
+"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a08093ae1a45cb7705cb243487d975cfd":[2,0,0,1,20,22],
+"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a09043e6f3b52d194e347304f62fbcce3":[2,0,0,1,20,17],
+"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a0b075e0415db03a3cc43bd8f6e014031":[2,0,0,1,20,16],
+"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a0d393d4abe6e2cc8d4cdfebf8c4c2186":[2,0,0,1,20,31],
+"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a161bc9787be40a32f487c79faaeb54bf":[2,0,0,1,20,9],
+"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a162f90b120f704c31aa7693a793e20c6":[2,0,0,1,20,12],
+"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a16f1ae88d6a417b614cfc6ae1852187c":[2,0,0,1,20,14],
+"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a283cc54d3453da8fcd96633381ec2753":[2,0,0,1,20,10],
+"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a2a87d3ed720a57a5d96a108c7a9827d7":[2,0,0,1,20,6],
+"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a2d7c328d726436061f19a287e481268d":[2,0,0,1,20,7],
+"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a32dc14242d88ca168ae71e9a895d2b29":[2,0,0,1,20,3],
+"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a33c6b175129a6c364ebe5541d146d082":[2,0,0,1,20,24],
+"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a35d0b436cf13fa127dbba5b12f8f9144":[2,0,0,1,20,1],
+"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a3c264254d4f6df7ad810aecde43d9413":[2,0,0,1,20,20],
+"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a4569bb5afb56e0caaa6eeadac05a53d6":[2,0,0,1,20,19],
+"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a4f72825ffcade6dd1def95246748ca3d":[2,0,0,1,20,23],
+"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a578c5a61208ae962fd772bc5e9045d12":[2,0,0,1,20,25],
+"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a5c029e55323d54aa2306267cea1809ea":[2,0,0,1,20,2],
+"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a5dbd205bb97fe7379d01c19250d6f97c":[2,0,0,1,20,29],
+"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a7653654c81149c48e7e4d5f0c00c360f":[2,0,0,1,20,4],
+"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a7898b6fa328bfbc55ee2721bca4b2af1":[2,0,0,1,20,8],
+"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a7e4ef818bcd2f315159f7043a099302c":[2,0,0,1,20,30],
+"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a9fd99282a49e752133fdd5bdb10a62d4":[2,0,0,1,20,18],
+"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#aa0fb2623234f3dea2ef40809c9571360":[2,0,0,1,20,13],
+"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#aa598c2c2a97f5c3dd7e8227cdfe6a51a":[2,0,0,1,20,21],
+"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#aa90d503edf4bab73034f68dc424964dd":[2,0,0,1,20,28],
+"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#ad4638897cefc9a3fe111eb386abd25f4":[2,0,0,1,20,26],
+"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#ada1a7906a9e5f38c28922f9ac98c76a6":[2,0,0,1,20,15],
+"classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#af18c4f08a127d919a316c7e27ba338d3":[2,0,0,1,20,0],
+"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html":[2,0,0,1,11],
+"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a1e17305d6b470d0f7050eb8e3e6ee3d8":[2,0,0,1,11,13],
+"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a228c855a0676155572d691cb0df9c328":[2,0,0,1,11,22],
+"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a3b818c2a3e5c32fc32425b17e63367e2":[2,0,0,1,11,5],
+"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a3d2e0010ac4e4ed0b2a88d9487d2732c":[2,0,0,1,11,23],
+"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a4c4e44963dcd4f656b10788a7fafbb4e":[2,0,0,1,11,1],
+"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a4c5d8a43fd8a6f1c217d83694dcc689c":[2,0,0,1,11,2],
+"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a4cbacc689425edd3105af64083c7b3a1":[2,0,0,1,11,18],
+"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a6f006d4702885fb41317d10d654dfa3c":[2,0,0,1,11,4],
+"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a6f1c5238da7cd6f117bed8018469b37a":[2,0,0,1,11,10],
+"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a7f6e60d52be1bc06e2f9ddad4ca11d98":[2,0,0,1,11,16],
+"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a95460bd9977b72ef20d4566f5e231dab":[2,0,0,1,11,24],
+"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a96b40e94b5c5a3216f513b9699820063":[2,0,0,1,11,0],
+"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a9d752319d7342f0156f8dfa15868fc48":[2,0,0,1,11,19],
+"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#aab814c68a1d532bef6e0e77b6614c622":[2,0,0,1,11,21],
+"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ab0585bbabc450d2cb571a5bd374ebb0e":[2,0,0,1,11,12],
+"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ab2e8ddb2180df363ad2cf8fc27fabee3":[2,0,0,1,11,26],
+"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ab93fbf5e0626bffe398f5baa2bc00b1a":[2,0,0,1,11,7],
+"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ab9e2fe38d54c0f0d3d73907300faa513":[2,0,0,1,11,3],
+"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#abb3d99b2c17b0f6ddb0e5b93dd8f8802":[2,0,0,1,11,14],
+"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#abdf29b8b4337573cafd839fd4ce25104":[2,0,0,1,11,15],
+"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ac9c14bbc97945c94fd02c8e067ccab06":[2,0,0,1,11,9],
+"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ad4a75da57fa18bfcfaeb7fc601f1c8f6":[2,0,0,1,11,6],
+"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ad7f4df9aa6ee20ff4a36049bbf3e7f6e":[2,0,0,1,11,8],
+"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#adc7249b039e078c84f705c7111a148b0":[2,0,0,1,11,11],
+"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#af48f4a6d2744bad2759e691f9c59f209":[2,0,0,1,11,20],
+"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#af615a531375a74aa4b46a7dd53d38422":[2,0,0,1,11,25],
+"classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#afae8573a9f425bd53c84828576f4ac1f":[2,0,0,1,11,17],
+"classGpgFrontend_1_1UI_1_1KeyServerImportTask.html":[2,0,0,1,44],
+"classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a1640363b4b27cb3d256181ddc6cdc857":[2,0,0,1,44,0],
+"classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a3adcb012ca6a6c08c65b94ab301eba27":[2,0,0,1,44,8],
+"classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a5e1fb2810c4b07bd9d8c6fe11c72c526":[2,0,0,1,44,7],
+"classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a6b2c07d193fb28a57b1738fa493b2b3f":[2,0,0,1,44,3],
+"classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#aaf3e0f25869eab592e0be108b3727f8e":[2,0,0,1,44,2],
+"classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#ac066c7a57c5b0bc96a6982df2585862b":[2,0,0,1,44,4],
+"classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#ac0c91559fa74b01a5b6d9cf925727339":[2,0,0,1,44,1],
+"classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#ae3d6f2b89691f0fdcc692920aacd3fba":[2,0,0,1,44,5],
+"classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#af24ff4c57d63e831324ca6075b86ae8b":[2,0,0,1,44,6],
+"classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html":[2,0,0,1,45],
+"classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#a04075001fcf461425c3ae14c96de2ad6":[2,0,0,1,45,1],
+"classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#a05fdcb7bd52dced3c9e15e9ca313c2b4":[2,0,0,1,45,7],
+"classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#a168e21bdfa72f43f91187ab29ece5efa":[2,0,0,1,45,0],
+"classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#a1d03d44bd99bbaf7908a7a8ea8080212":[2,0,0,1,45,5],
+"classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#a62bb1488fd6f95881bb70f8a228ef9c9":[2,0,0,1,45,6],
+"classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#a99a5df78f8b78551dba4a14e144099cf":[2,0,0,1,45,2],
+"classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#ae478130476c95a8b220c3b0e6a7b88b4":[2,0,0,1,45,3],
+"classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#af0f20b03e64115f475d05a6517ab5bcf":[2,0,0,1,45,4],
+"classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html":[2,0,0,1,21],
+"classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#a05c643155ca542c788acd648a59a1917":[2,0,0,1,21,3],
+"classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#a0efa9fd74abf305b2e20536f208c8beb":[2,0,0,1,21,1],
+"classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#a3789ae2c0e3d1510b2b67c762118d6c0":[2,0,0,1,21,6],
+"classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#a547fe4ca02de93cefd0a9954a7a6d5e4":[2,0,0,1,21,7],
+"classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#a5a256b2be02876fb748193b2cb14fb14":[2,0,0,1,21,8],
+"classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#a6492b945ec7cfbb73cfcad0964ffe23f":[2,0,0,1,21,2],
+"classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#a67da7721959b585db21f7e893793564b":[2,0,0,1,21,0],
+"classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#acf4b8c667c69c822283f5d72728c3915":[2,0,0,1,21,4],
+"classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#adde2b33bd17f521f0630702987b1d274":[2,0,0,1,21,5],
+"classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html":[2,0,0,1,22],
+"classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#a1deb1df41b7a9b4f93fb717280d3b502":[2,0,0,1,22,5],
+"classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#a8201baff3129df1090311964f009ae2b":[2,0,0,1,22,3],
+"classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#a82f6bf641ff3b64341a0bdcf76571c43":[2,0,0,1,22,2],
+"classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#aaa06ce342178802e76119bec6b26cc55":[2,0,0,1,22,0],
+"classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#ab510bc8feea27f5a2f5361475a50d106":[2,0,0,1,22,8],
+"classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#acb34dd25f9d75feb0ec625ce81d47cff":[2,0,0,1,22,6],
+"classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#ad493cf9abfab589f5560131cda68539d":[2,0,0,1,22,7],
+"classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#ad9ae0e31f60685d600a695d1d4b0c025":[2,0,0,1,22,4],
+"classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#ae1943f11c25f5696103f113493462a76":[2,0,0,1,22,1],
+"classGpgFrontend_1_1UI_1_1KeyUploadDialog.html":[2,0,0,1,12],
+"classGpgFrontend_1_1UI_1_1KeyUploadDialog.html#a0f724649ca953b888f07d69c97fe45b6":[2,0,0,1,12,2],
+"classGpgFrontend_1_1UI_1_1KeyUploadDialog.html#a168859b1774aa38b8ad4c423fe01f1c5":[2,0,0,1,12,3],
+"classGpgFrontend_1_1UI_1_1KeyUploadDialog.html#a51f63e30f26f7923def91519d347c0cf":[2,0,0,1,12,0],
+"classGpgFrontend_1_1UI_1_1KeyUploadDialog.html#a520581c9828a62043ddea18da740401e":[2,0,0,1,12,1],
+"classGpgFrontend_1_1UI_1_1KeyUploadDialog.html#a71c4d23dcfa453bff540324b0a74f347":[2,0,0,1,12,5],
+"classGpgFrontend_1_1UI_1_1KeyUploadDialog.html#a8c50ef3699448352d6272bb2faab5493":[2,0,0,1,12,4],
+"classGpgFrontend_1_1UI_1_1KeyserverTab.html":[2,0,0,1,28],
+"classGpgFrontend_1_1UI_1_1KeyserverTab.html#a0fc7e301ec8db2f328508c0380027d94":[2,0,0,1,28,8],
+"classGpgFrontend_1_1UI_1_1KeyserverTab.html#a1ec36c6d42a71d79fc006c1aab0ebdfa":[2,0,0,1,28,10],
+"classGpgFrontend_1_1UI_1_1KeyserverTab.html#a221117b56dda48956e44d96a08f6823b":[2,0,0,1,28,3],
+"classGpgFrontend_1_1UI_1_1KeyserverTab.html#a26449a77844d9db69a543ff88f10e347":[2,0,0,1,28,4],
+"classGpgFrontend_1_1UI_1_1KeyserverTab.html#a68f954c4b713956a87f7382b30f45612":[2,0,0,1,28,7]
};
diff --git a/docs/html/navtreeindex5.js b/docs/html/navtreeindex5.js
index b340ea6f..ee005372 100644
--- a/docs/html/navtreeindex5.js
+++ b/docs/html/navtreeindex5.js
@@ -1,253 +1,253 @@
var NAVTREEINDEX5 =
{
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a5e95f62dac9fba1ead6ec69c145923db":[2,0,0,1,39,10],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a6154f5dbdc9cebc0644e5d1e25895df8":[2,0,0,1,39,72],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a62ea61c38e758022ba655c6faf54322b":[2,0,0,1,39,92],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a672f4ef07be6ad645613ecd49399700d":[2,0,0,1,39,53],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a6c64a01f3b1d5ff7b42da6e29a4d2c0c":[2,0,0,1,39,1],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a6d681a306c137dc107088d60b09a925f":[2,0,0,1,39,66],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a70397629ae3ffe039051b80a099c7979":[2,0,0,1,39,117],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a70d2b2311708ab023466d343f2e914b1":[2,0,0,1,39,64],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a71402943f4ed19e3aba0556b23eaa8f8":[2,0,0,1,39,57],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a72b5cfa9bf4b94a53d9bc14d84e60d6d":[2,0,0,1,39,80],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a76bf3784d751db78ed13bd9962e14472":[2,0,0,1,39,18],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a79b83f536a7c4299eaa3d22e4e875227":[2,0,0,1,39,73],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a7a4b6490038470a8849231e48282da98":[2,0,0,1,39,14],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a7aa41c90105fd4c2931895d8dfb5ec45":[2,0,0,1,39,65],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a7f5a88922d06bee977335fb4b5f1d86d":[2,0,0,1,39,21],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a821247d738457c4ee046162aad6728f9":[2,0,0,1,39,17],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a8538940a9a5dea7ddf53c89acdeb83be":[2,0,0,1,39,76],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a85a98a1ec5418c110201980fa013d1fd":[2,0,0,1,39,15],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a874b505fbc1046f579a736683f5a7f65":[2,0,0,1,39,31],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a877ec5dd357907e9c334e7ff18bf2c5c":[2,0,0,1,39,87],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a88af746cd550792ab6095d2ebbd29b41":[2,0,0,1,39,110],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a89fa105ed54d2189d762668262d74c63":[2,0,0,1,39,75],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a8bcdcbe678b8dc0837fffda2ebfe79bf":[2,0,0,1,39,41],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a8d5ce6514ef3fa8ac3223176f5fa2701":[2,0,0,1,39,111],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a8d6fe32ab64797459443ed285d769745":[2,0,0,1,39,81],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a8f9dd7edba23321a13ed630cdef7fdcc":[2,0,0,1,39,93],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a92a6d8d46e197e25eaacc3ad7ed289ab":[2,0,0,1,39,5],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a95b2c86afbefe47e79af87e56032e306":[2,0,0,1,39,48],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a9879061cfd321c6757c77f75d46dc7d8":[2,0,0,1,39,42],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a9dd292f55fba1fe62c83508fef7e43a1":[2,0,0,1,39,47],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a9ec699536a35a37961a8c6da1e231ae3":[2,0,0,1,39,39],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#a9fbd8a2f5b2b5869276db83a4ad20216":[2,0,0,1,39,7],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#aa498dfecac36590e4b60d50824dff58c":[2,0,0,1,39,113],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#aa92246123272e3e1085f22612aedf48f":[2,0,0,1,39,63],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#aa9c986dd95984811479ea93230c74b5d":[2,0,0,1,39,35],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#aaa1de043b71dbcf0e8d8c265b2a67bd3":[2,0,0,1,39,9],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#aabf3ddf6b624790369f164b4889c95be":[2,0,0,1,39,34],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#aac320aef3b49cd068544aac54b927f7a":[2,0,0,1,39,60],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#aad0c8d50952f4592eac7b7221b5d1ec5":[2,0,0,1,39,51],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#ab0019ca316b971c594c2f20f418256a6":[2,0,0,1,39,107],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#ab0f148559d830fcf10b5a1937b0a47dc":[2,0,0,1,39,101],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#ab23c7e67dd1f5295b3c49ad79dfd5919":[2,0,0,1,39,38],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#ab531823acdbfb117c82a9906ce2107b9":[2,0,0,1,39,67],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#ab570d33667a3f8fe189f2d81b81f85be":[2,0,0,1,39,98],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#ab67486a71126073e7c39ca12603198f4":[2,0,0,1,39,49],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#abe0683e48485f9fcff622d9519c37ed9":[2,0,0,1,39,95],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#abe38474d4e81726147f9df8a9721ce6e":[2,0,0,1,39,97],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#ac6a42e6e3af7e76f0bd2ecc62c9520cc":[2,0,0,1,39,103],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#acd41722ceedd20973b7d83852fab407b":[2,0,0,1,39,104],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#ad0a47aadbd6ae3a4bd0fe3372d247e7d":[2,0,0,1,39,77],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#ad27dcf3f534f13d8df71df680c4d177c":[2,0,0,1,39,46],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#ad6a2cecb2846b324604c4abd1fb7d11a":[2,0,0,1,39,68],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#ad7b22560df7e3bb38b660d3ffc84dc83":[2,0,0,1,39,90],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#adaa66d9cdc51c946efc99bb94deda31c":[2,0,0,1,39,84],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#adb05de6b4fa1f1d57ed63be1280050e9":[2,0,0,1,39,83],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#adbac799672c43c90810366825d837e4e":[2,0,0,1,39,112],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#adfa3b3ae1de1fd04c5ea09e3c97c3e98":[2,0,0,1,39,12],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#ae11d01211c2914ecc148e13dd7de506e":[2,0,0,1,39,25],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#ae2587b35d14bc64bc13d4e8ca1dcd502":[2,0,0,1,39,108],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#ae28089efbd236708601470f30f26faaa":[2,0,0,1,39,27],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#ae2d89e2cc6c99ff0e16b396d2381f904":[2,0,0,1,39,22],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#aea9274389c3b049793fe5aa5a6adf63c":[2,0,0,1,39,19],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#af08c62c38a750382ee218191c8e13f4f":[2,0,0,1,39,70],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#af2b3e3a0e9894633e1839df289f5ffe0":[2,0,0,1,39,106],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#af763a506aed7d0fb2125d1859583b853":[2,0,0,1,39,109],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#af77f66b6b869f6ddb3d2caa3bc40bb09":[2,0,0,1,39,58],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#af93d72eaf58326f1f9e926752c6b1fc6":[2,0,0,1,39,20],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#af9640e5732c2595d0c094e7ff7e371ac":[2,0,0,1,39,96],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#afab1e0363a4b97ff68228cd4bd7cbc62":[2,0,0,1,39,91],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#afd243a5f00f86d65431081ead2cae153":[2,0,0,1,39,50],
-"classGpgFrontend_1_1UI_1_1MainWindow.html#afd8473d161515bded88cc9474f2d12c1":[2,0,0,1,39,79],
-"classGpgFrontend_1_1UI_1_1NetworkTab.html":[2,0,0,1,28],
-"classGpgFrontend_1_1UI_1_1NetworkTab.html#a1713e1268a364f51f57b3a2752efc641":[2,0,0,1,28,7],
-"classGpgFrontend_1_1UI_1_1NetworkTab.html#a1b0297158f13daec77645c88e5a8adcd":[2,0,0,1,28,6],
-"classGpgFrontend_1_1UI_1_1NetworkTab.html#a36aba3c964667026632d8e8521bea7b7":[2,0,0,1,28,4],
-"classGpgFrontend_1_1UI_1_1NetworkTab.html#a3afc7a761d7316cfd15828b624e0dad3":[2,0,0,1,28,1],
-"classGpgFrontend_1_1UI_1_1NetworkTab.html#a444d3630919c1f9c4db495a58acbb9a8":[2,0,0,1,28,0],
-"classGpgFrontend_1_1UI_1_1NetworkTab.html#a51cd114731899b6480cc1b6d5a80826a":[2,0,0,1,28,3],
-"classGpgFrontend_1_1UI_1_1NetworkTab.html#a52fa421fe4e6c122a26ed7c766c000f7":[2,0,0,1,28,2],
-"classGpgFrontend_1_1UI_1_1NetworkTab.html#ab060582bade44ee6f7d836e80809d95c":[2,0,0,1,28,8],
-"classGpgFrontend_1_1UI_1_1NetworkTab.html#ae3d97948f205e84f0604d4da634a4513":[2,0,0,1,28,5],
-"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html":[2,0,0,1,58],
-"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a010bae8d8d967c8cc81cd42547de5dcb":[2,0,0,1,58,21],
-"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a0e0a36396ea55f5dbe6197284cf98192":[2,0,0,1,58,24],
-"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a0e64bcd36cf90b0eec2f05361c6c6fb3":[2,0,0,1,58,19],
-"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a14b7431a786ce59e98576e3680cb9a58":[2,0,0,1,58,3],
-"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a184985104f23da8fdf2b9aaf7b27405b":[2,0,0,1,58,13],
-"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a1c1c0174ed1ed9c5a90739eafc5c3267":[2,0,0,1,58,14],
-"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a29b3d63ba9590e775f42c779c76102e5":[2,0,0,1,58,6],
-"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a43d23c1bcac73b772aa0154151538bbf":[2,0,0,1,58,15],
-"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a45267bcfc8fc83851894061c0fe2a9c2":[2,0,0,1,58,12],
-"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a4f94e9ef7889a169bda5a47b7f657358":[2,0,0,1,58,23],
-"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a5b8ce290e1b949b56734227e8d42adba":[2,0,0,1,58,22],
-"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a6218e6e12bdba0228e4ab4276f7fed7a":[2,0,0,1,58,5],
-"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a8759224e57d4c322933ed3df6d96e5f1":[2,0,0,1,58,0],
-"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aa9e82690824c82e7628ba4ace9d6e2fe":[2,0,0,1,58,9],
-"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#ab1108b77925647d1a930e5252fa956b8":[2,0,0,1,58,20],
-"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#ac1902b063decfeebe7f0908cbfe618ce":[2,0,0,1,58,7],
-"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#ac3404f71f0f93cd7f5cb64d5d56624d7":[2,0,0,1,58,8],
-"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#ae756fc49724212d8d9937601a48b436b":[2,0,0,1,58,16],
-"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#ae867b6329fcb1978479a9d70f7b017db":[2,0,0,1,58,18],
-"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aec4ec03dbf1363d1517aa37d160c31e7":[2,0,0,1,58,17],
-"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aee4f46e54f29da671838ed232e526700":[2,0,0,1,58,1],
-"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#af08be6a1eaec76403b12dc6e42df546c":[2,0,0,1,58,2],
-"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#af5dfdfd48ef64cc46e524ec70a22fe3a":[2,0,0,1,58,10],
-"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#afd3749488fdd3d1c53446fb8c833f3f4":[2,0,0,1,58,11],
-"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aff81f0f98a399fa55b6b0ebf2230d4cf":[2,0,0,1,58,4],
-"classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.html":[2,0,0,1,46],
-"classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.html#a02ed478164a2e7d4b5a1a26e99486f2f":[2,0,0,1,46,3],
-"classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.html#a497bb7f1b92c67f2e754fd66ca3a6666":[2,0,0,1,46,1],
-"classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.html#a538a78e0149906bf19e850ba71c00ada":[2,0,0,1,46,0],
-"classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.html#a9b8bb804b4c0bc48d5e26c3d103c5a64":[2,0,0,1,46,5],
-"classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.html#ae6ccca4d5325bbb1235fa6b27479ee2c":[2,0,0,1,46,4],
-"classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.html#aedafa7b22e024be537658fd8096e5f6f":[2,0,0,1,46,2],
-"classGpgFrontend_1_1UI_1_1QuitDialog.html":[2,0,0,1,22],
-"classGpgFrontend_1_1UI_1_1QuitDialog.html#a1624ecd7f9b5d32622bf6f9b7eb46a1b":[2,0,0,1,22,4],
-"classGpgFrontend_1_1UI_1_1QuitDialog.html#a4c4bc06d1d168f01569ed83dcfd50d55":[2,0,0,1,22,2],
-"classGpgFrontend_1_1UI_1_1QuitDialog.html#a60419bf8e817db25128c2f941fc42a3d":[2,0,0,1,22,0],
-"classGpgFrontend_1_1UI_1_1QuitDialog.html#a8970dbf707a5cb5109a40aac76158027":[2,0,0,1,22,3],
-"classGpgFrontend_1_1UI_1_1QuitDialog.html#ac491016e0d93183346b79421528ba5c8":[2,0,0,1,22,5],
-"classGpgFrontend_1_1UI_1_1QuitDialog.html#aec364c38056b6d92c172f8cdfb5f8e82":[2,0,0,1,22,1],
-"classGpgFrontend_1_1UI_1_1SettingsDialog.html":[2,0,0,1,25],
-"classGpgFrontend_1_1UI_1_1SettingsDialog.html#a0d66e360dfbcf79403351459721c3981":[2,0,0,1,25,1],
-"classGpgFrontend_1_1UI_1_1SettingsDialog.html#a1b7ddc7861d1b4b9dc3810ed98023ffc":[2,0,0,1,25,0],
-"classGpgFrontend_1_1UI_1_1SettingsDialog.html#a4e2ce62b4f14bb77d577efe208655bcb":[2,0,0,1,25,7],
-"classGpgFrontend_1_1UI_1_1SettingsDialog.html#a557219d1b82dd00e8d9f027a7cd561fa":[2,0,0,1,25,11],
-"classGpgFrontend_1_1UI_1_1SettingsDialog.html#a6532bcf29023e2d18209caae9960fd3f":[2,0,0,1,25,8],
-"classGpgFrontend_1_1UI_1_1SettingsDialog.html#aa1a54f43f17388a07befb5f15e4906ea":[2,0,0,1,25,5],
-"classGpgFrontend_1_1UI_1_1SettingsDialog.html#aac6feb4c12abb882446756c889d5fa78":[2,0,0,1,25,9],
-"classGpgFrontend_1_1UI_1_1SettingsDialog.html#ac32111f86366175b943f8d96eee975ed":[2,0,0,1,25,6],
-"classGpgFrontend_1_1UI_1_1SettingsDialog.html#ac43d73ffaadf316118ab0d7b46da4e41":[2,0,0,1,25,12],
-"classGpgFrontend_1_1UI_1_1SettingsDialog.html#acc6b4386de554fce6fbb60ac6d201952":[2,0,0,1,25,4],
-"classGpgFrontend_1_1UI_1_1SettingsDialog.html#acd22ac2fd91704551e5317e2c549ae26":[2,0,0,1,25,2],
-"classGpgFrontend_1_1UI_1_1SettingsDialog.html#acfd6e61f789f022790e9a83ce6359fbe":[2,0,0,1,25,10],
-"classGpgFrontend_1_1UI_1_1SettingsDialog.html#af5ba6646af45d0d1d794bc52ee54b1b9":[2,0,0,1,25,3],
-"classGpgFrontend_1_1UI_1_1SettingsObject.html":[2,0,0,1,41],
-"classGpgFrontend_1_1UI_1_1SettingsObject.html#a5ddcc2e0bc6d4c2f88e6e00371d4792e":[2,0,0,1,41,4],
-"classGpgFrontend_1_1UI_1_1SettingsObject.html#a69e9027002113bf9ecc16d7836e42c63":[2,0,0,1,41,5],
-"classGpgFrontend_1_1UI_1_1SettingsObject.html#a80801f6912991ba625b5ead29a4558f0":[2,0,0,1,41,3],
-"classGpgFrontend_1_1UI_1_1SettingsObject.html#aad706a2c2b68d280b5d3ababff0ff302":[2,0,0,1,41,0],
-"classGpgFrontend_1_1UI_1_1SettingsObject.html#ac11d19096b4e88cb288a208a4953af4d":[2,0,0,1,41,1],
-"classGpgFrontend_1_1UI_1_1SettingsObject.html#ae71336d240ace35756d1852a46271f6c":[2,0,0,1,41,2],
-"classGpgFrontend_1_1UI_1_1SignalStation.html":[2,0,0,1,40],
-"classGpgFrontend_1_1UI_1_1SignalStation.html#a1581aaebc459f3eda06195c1e43f068f":[2,0,0,1,40,1],
-"classGpgFrontend_1_1UI_1_1SignalStation.html#a2347964648d48b5d88994b2f504b6642":[2,0,0,1,40,3],
-"classGpgFrontend_1_1UI_1_1SignalStation.html#a7b5fb2e2c0ad238313650a08ea648ce3":[2,0,0,1,40,5],
-"classGpgFrontend_1_1UI_1_1SignalStation.html#a94d4c7d79e0deb7026083689bc5dc2ad":[2,0,0,1,40,4],
-"classGpgFrontend_1_1UI_1_1SignalStation.html#aaec7938466ed4b1e912b25038a253f84":[2,0,0,1,40,2],
-"classGpgFrontend_1_1UI_1_1SignalStation.html#abe381ce56a7b157a3760b2fd9c3b7419":[2,0,0,1,40,0],
-"classGpgFrontend_1_1UI_1_1SignalStation.html#ac98e4fff1e400f810ecea9903ee880df":[2,0,0,1,40,7],
-"classGpgFrontend_1_1UI_1_1SignalStation.html#afa0b1cced7430180fae67ad2303ce448":[2,0,0,1,40,6],
-"classGpgFrontend_1_1UI_1_1SignersPicker.html":[2,0,0,1,29],
-"classGpgFrontend_1_1UI_1_1SignersPicker.html#a02c3ba737702894fc6d4ac1a1c543ccb":[2,0,0,1,29,0],
-"classGpgFrontend_1_1UI_1_1SignersPicker.html#a2e98dcdf647a2e0e6455998b018aed00":[2,0,0,1,29,1],
-"classGpgFrontend_1_1UI_1_1SignersPicker.html#a4daf860ef736aedd986e566383666be5":[2,0,0,1,29,4],
-"classGpgFrontend_1_1UI_1_1SignersPicker.html#a524ee72ddb4fe397d71c0d4b5eb69171":[2,0,0,1,29,3],
-"classGpgFrontend_1_1UI_1_1SignersPicker.html#aba7633983da57c7a7eb2710a1f33f7ac":[2,0,0,1,29,2],
-"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html":[2,0,0,1,13],
-"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a001803152c0e5bd9de7c7dd04cef8ad4":[2,0,0,1,13,24],
-"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a029017ad2e025a43d21144f1b7427593":[2,0,0,1,13,1],
-"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a06ae254026e0be902d28bb005a91fe0c":[2,0,0,1,13,23],
-"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a10b30ea96e819657053c1d5752024547":[2,0,0,1,13,18],
-"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a13229f07ef0ed594357df1918af50d3d":[2,0,0,1,13,7],
-"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a1f4dda7500b3de7476e5d1e7bd5b550b":[2,0,0,1,13,9],
-"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a3caed2c7bcce5850c338de956dfaecfa":[2,0,0,1,13,17],
-"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a49d9f3bb2cfb17eb39dcd4dc0385234e":[2,0,0,1,13,10],
-"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a4a5b77fb909e9a6a0e4da780c75f7535":[2,0,0,1,13,3],
-"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a52a0aadc9b1e80bdcaaf1ad9d8997957":[2,0,0,1,13,6],
-"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a5d67b8ed68062ef127ad92986a98e95a":[2,0,0,1,13,21],
-"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a75f325b4a5aa8bcfcc411bdaf9279683":[2,0,0,1,13,15],
-"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a8ab50d8f47489c57e382b3fe231ba9a7":[2,0,0,1,13,8],
-"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a8f9d8baa7b576a4aa857818b87c26bcd":[2,0,0,1,13,0],
-"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a90900b67eceb2d16af5de27f9f038f7f":[2,0,0,1,13,4],
-"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a9cbb5bcf775a873a0d866a9aa0a5acd0":[2,0,0,1,13,25],
-"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aa24064a5f585b23d71e1036958f31d7d":[2,0,0,1,13,2],
-"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aa8bf228ba2a773c0d38f9e5c2f20539d":[2,0,0,1,13,14],
-"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aa91db742b41d352ba9f88620d649afb3":[2,0,0,1,13,19],
-"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aab426dec4b4655b215b09b490e05ad05":[2,0,0,1,13,11],
-"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#ab06b11f407fbb407139235fc84325de2":[2,0,0,1,13,13],
-"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#ab11f7f3e24f855d690f6f7d820ed7479":[2,0,0,1,13,22],
-"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#ac515dabcf6c094c5eeb2bf88aa3aa9d3":[2,0,0,1,13,20],
-"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#acca1d633219d245edba9135c80a90610":[2,0,0,1,13,5],
-"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aedef4e8784c8a3edb06b0f2821500552":[2,0,0,1,13,12],
-"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#afa21ac4d45a6474afc1bc594486ed8e2":[2,0,0,1,13,16],
-"classGpgFrontend_1_1UI_1_1TOFUInfoPage.html":[2,0,0,1,60],
-"classGpgFrontend_1_1UI_1_1TOFUInfoPage.html#a9adc1666e3f57536594876520019e395":[2,0,0,1,60,0],
-"classGpgFrontend_1_1UI_1_1TextEdit.html":[2,0,0,1,59],
-"classGpgFrontend_1_1UI_1_1TextEdit.html#a02fa44ba0c56f3f6ae125f8490faf254":[2,0,0,1,59,26],
-"classGpgFrontend_1_1UI_1_1TextEdit.html#a05c54658597b04c3976c72d3a5f9add9":[2,0,0,1,59,35],
-"classGpgFrontend_1_1UI_1_1TextEdit.html#a0f1c7997b1cd56045091e5c9677f5d0e":[2,0,0,1,59,0],
-"classGpgFrontend_1_1UI_1_1TextEdit.html#a12f65fbc4984c266a5df4505ecde7c42":[2,0,0,1,59,8],
-"classGpgFrontend_1_1UI_1_1TextEdit.html#a15335d38187ddf580b7200d856768cfb":[2,0,0,1,59,19],
-"classGpgFrontend_1_1UI_1_1TextEdit.html#a1bf57ebe1e32b12c48bb633b7dd7a4f1":[2,0,0,1,59,9],
-"classGpgFrontend_1_1UI_1_1TextEdit.html#a1d8948316e9231f50809e6fb9b337546":[2,0,0,1,59,39],
-"classGpgFrontend_1_1UI_1_1TextEdit.html#a32327f592965d8922eb7095af117336d":[2,0,0,1,59,33],
-"classGpgFrontend_1_1UI_1_1TextEdit.html#a3599bd01636a873cf3437ab6b9d38780":[2,0,0,1,59,11],
-"classGpgFrontend_1_1UI_1_1TextEdit.html#a3c17fdf3abf9c4fb6ce35cfb8f0f8fc4":[2,0,0,1,59,17],
-"classGpgFrontend_1_1UI_1_1TextEdit.html#a3c976a5494d06c2186d94e7cc8ebe457":[2,0,0,1,59,5],
-"classGpgFrontend_1_1UI_1_1TextEdit.html#a48351dc1529da3b8da311f65b735b5f1":[2,0,0,1,59,13],
-"classGpgFrontend_1_1UI_1_1TextEdit.html#a4a81e69f6dc74ea649ca9a2358342fd5":[2,0,0,1,59,31],
-"classGpgFrontend_1_1UI_1_1TextEdit.html#a576e06390e65576465297d2ab8d7d474":[2,0,0,1,59,29],
-"classGpgFrontend_1_1UI_1_1TextEdit.html#a57a46ab5595622ae0b7bceef7d56bd7c":[2,0,0,1,59,18],
-"classGpgFrontend_1_1UI_1_1TextEdit.html#a60c73cc66a48a38c13e7890de49e86c3":[2,0,0,1,59,20],
-"classGpgFrontend_1_1UI_1_1TextEdit.html#a66b6f6633e7ac71e5fe8b7814a81cadf":[2,0,0,1,59,6],
-"classGpgFrontend_1_1UI_1_1TextEdit.html#a6a02fce9dc4039c982d6dd19231517ee":[2,0,0,1,59,23],
-"classGpgFrontend_1_1UI_1_1TextEdit.html#a6c814253dfc061bfdae0fa71c6196c55":[2,0,0,1,59,27],
-"classGpgFrontend_1_1UI_1_1TextEdit.html#a72014409d407c161b048e07c061b4cf9":[2,0,0,1,59,12],
-"classGpgFrontend_1_1UI_1_1TextEdit.html#a725048d1c6de8ed7ba29062afa72767b":[2,0,0,1,59,38],
-"classGpgFrontend_1_1UI_1_1TextEdit.html#a72ed46454c833adb038c36d8d4322d18":[2,0,0,1,59,3],
-"classGpgFrontend_1_1UI_1_1TextEdit.html#a747d3740a88295e6c9565788d4cf56ec":[2,0,0,1,59,37],
-"classGpgFrontend_1_1UI_1_1TextEdit.html#a7aa1230fbf796225bd6b83d381e11a3b":[2,0,0,1,59,2],
-"classGpgFrontend_1_1UI_1_1TextEdit.html#a82fe98d45f54909ebea933b540367c39":[2,0,0,1,59,36],
-"classGpgFrontend_1_1UI_1_1TextEdit.html#a8fad090a19479a9fe89432300cca2b6c":[2,0,0,1,59,4],
-"classGpgFrontend_1_1UI_1_1TextEdit.html#aa21659aa7acba98dfd6286d69e00ab9b":[2,0,0,1,59,10],
-"classGpgFrontend_1_1UI_1_1TextEdit.html#aa2230418dc8f72c400f5a90082a983c9":[2,0,0,1,59,21],
-"classGpgFrontend_1_1UI_1_1TextEdit.html#aa30daf558cb85bbdcad55a805a106109":[2,0,0,1,59,1],
-"classGpgFrontend_1_1UI_1_1TextEdit.html#ab24adc1adb3b9b29469992e4c444436e":[2,0,0,1,59,28],
-"classGpgFrontend_1_1UI_1_1TextEdit.html#ac9e2fb3d6ebb721f03416aa2da5e1fd1":[2,0,0,1,59,32],
-"classGpgFrontend_1_1UI_1_1TextEdit.html#ace0b8f4c161db9f4f5db5ecbfd7a91c0":[2,0,0,1,59,25],
-"classGpgFrontend_1_1UI_1_1TextEdit.html#adca2bbfa746b5598f2a4f74026b84224":[2,0,0,1,59,22],
-"classGpgFrontend_1_1UI_1_1TextEdit.html#ae1e710c6722910b8d35df97aaabb3162":[2,0,0,1,59,14],
-"classGpgFrontend_1_1UI_1_1TextEdit.html#ae22ecadf31648f424eb8ab86bd28ef39":[2,0,0,1,59,16],
-"classGpgFrontend_1_1UI_1_1TextEdit.html#ae2b3bf422789d56087face98b6a9e929":[2,0,0,1,59,24],
-"classGpgFrontend_1_1UI_1_1TextEdit.html#aeb2048d8028907d521f5f35c077832c2":[2,0,0,1,59,7],
-"classGpgFrontend_1_1UI_1_1TextEdit.html#af1e364b513f566c743a5d36c19098762":[2,0,0,1,59,30],
-"classGpgFrontend_1_1UI_1_1TextEdit.html#af466ec2b8ab3f695d206efc0574bbe20":[2,0,0,1,59,15],
-"classGpgFrontend_1_1UI_1_1TextEdit.html#afb9b7a7d88154d774b3d727d8e640cbb":[2,0,0,1,59,34],
-"classGpgFrontend_1_1UI_1_1TranslatorsTab.html":[2,0,0,1,4],
-"classGpgFrontend_1_1UI_1_1TranslatorsTab.html#a89e5c7b9c17fb41b7c7bf461fb8ad99e":[2,0,0,1,4,0],
-"classGpgFrontend_1_1UI_1_1UpdateTab.html":[2,0,0,1,5],
-"classGpgFrontend_1_1UI_1_1UpdateTab.html#a1003bd969ecbc5deba940e39436968f4":[2,0,0,1,5,3],
-"classGpgFrontend_1_1UI_1_1UpdateTab.html#a3718c15db336b2ca0090ee492c429adb":[2,0,0,1,5,5],
-"classGpgFrontend_1_1UI_1_1UpdateTab.html#a5e752e01539ccfdc6bbe41a404ddaa95":[2,0,0,1,5,2],
-"classGpgFrontend_1_1UI_1_1UpdateTab.html#a67358193095af7b39184f16706bf1bff":[2,0,0,1,5,6],
-"classGpgFrontend_1_1UI_1_1UpdateTab.html#a7329657135624fc42ad80d821e11befe":[2,0,0,1,5,1],
-"classGpgFrontend_1_1UI_1_1UpdateTab.html#a833c5f709607032bac530aacf389a117":[2,0,0,1,5,0],
-"classGpgFrontend_1_1UI_1_1UpdateTab.html#a84579badda70b12cfd79add18d1ef94f":[2,0,0,1,5,7],
-"classGpgFrontend_1_1UI_1_1UpdateTab.html#a9dedd8bc17bbc53d31c9d292429be68b":[2,0,0,1,5,8],
-"classGpgFrontend_1_1UI_1_1UpdateTab.html#ab209ef238583efea25c6a58aa4831628":[2,0,0,1,5,9],
-"classGpgFrontend_1_1UI_1_1UpdateTab.html#ad180d1f434e8052f3e0974522c92ae61":[2,0,0,1,5,4],
-"classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html":[2,0,0,1,1],
-"classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#a263f2a4030c261a849ded182cd889b3f":[2,0,0,1,1,2],
-"classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#a37a315ff2a1ed0402adf1e15325990ba":[2,0,0,1,1,9],
-"classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#a7849527f1e93581103bca3e7c66456c4":[2,0,0,1,1,8],
-"classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#a79d6071c0cedd9e18588137783823fad":[2,0,0,1,1,1],
-"classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#ab130aae968f83b9125cbe7054b6ca96d":[2,0,0,1,1,6],
-"classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#ac73f0405e249f623ddd0de22b5130fda":[2,0,0,1,1,0],
-"classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#ae15d7e9e60c58dea08ae117645e8b32a":[2,0,0,1,1,3],
-"classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#ae66e988b812817ab95c35a7c080e8c06":[2,0,0,1,1,5],
-"classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#aeb3a7c48297d448d25b2b84a2aa64ad0":[2,0,0,1,1,4]
+"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#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,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,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,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,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,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,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,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,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],
+"classGpgFrontend_1_1UI_1_1NetworkTab.html#a36aba3c964667026632d8e8521bea7b7":[2,0,0,1,29,4],
+"classGpgFrontend_1_1UI_1_1NetworkTab.html#a3afc7a761d7316cfd15828b624e0dad3":[2,0,0,1,29,1],
+"classGpgFrontend_1_1UI_1_1NetworkTab.html#a444d3630919c1f9c4db495a58acbb9a8":[2,0,0,1,29,0],
+"classGpgFrontend_1_1UI_1_1NetworkTab.html#a51cd114731899b6480cc1b6d5a80826a":[2,0,0,1,29,3],
+"classGpgFrontend_1_1UI_1_1NetworkTab.html#a52fa421fe4e6c122a26ed7c766c000f7":[2,0,0,1,29,2],
+"classGpgFrontend_1_1UI_1_1NetworkTab.html#ab060582bade44ee6f7d836e80809d95c":[2,0,0,1,29,8],
+"classGpgFrontend_1_1UI_1_1NetworkTab.html#ae3d97948f205e84f0604d4da634a4513":[2,0,0,1,29,5],
+"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html":[2,0,0,1,59],
+"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a010bae8d8d967c8cc81cd42547de5dcb":[2,0,0,1,59,21],
+"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a0e0a36396ea55f5dbe6197284cf98192":[2,0,0,1,59,24],
+"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a0e64bcd36cf90b0eec2f05361c6c6fb3":[2,0,0,1,59,19],
+"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a14b7431a786ce59e98576e3680cb9a58":[2,0,0,1,59,3],
+"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a184985104f23da8fdf2b9aaf7b27405b":[2,0,0,1,59,13],
+"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a1c1c0174ed1ed9c5a90739eafc5c3267":[2,0,0,1,59,14],
+"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a29b3d63ba9590e775f42c779c76102e5":[2,0,0,1,59,6],
+"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a43d23c1bcac73b772aa0154151538bbf":[2,0,0,1,59,15],
+"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a45267bcfc8fc83851894061c0fe2a9c2":[2,0,0,1,59,12],
+"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a4f94e9ef7889a169bda5a47b7f657358":[2,0,0,1,59,23],
+"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a5b8ce290e1b949b56734227e8d42adba":[2,0,0,1,59,22],
+"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a6218e6e12bdba0228e4ab4276f7fed7a":[2,0,0,1,59,5],
+"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a8759224e57d4c322933ed3df6d96e5f1":[2,0,0,1,59,0],
+"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aa9e82690824c82e7628ba4ace9d6e2fe":[2,0,0,1,59,9],
+"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#ab1108b77925647d1a930e5252fa956b8":[2,0,0,1,59,20],
+"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#ac1902b063decfeebe7f0908cbfe618ce":[2,0,0,1,59,7],
+"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#ac3404f71f0f93cd7f5cb64d5d56624d7":[2,0,0,1,59,8],
+"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#ae756fc49724212d8d9937601a48b436b":[2,0,0,1,59,16],
+"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#ae867b6329fcb1978479a9d70f7b017db":[2,0,0,1,59,18],
+"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aec4ec03dbf1363d1517aa37d160c31e7":[2,0,0,1,59,17],
+"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aee4f46e54f29da671838ed232e526700":[2,0,0,1,59,1],
+"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#af08be6a1eaec76403b12dc6e42df546c":[2,0,0,1,59,2],
+"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#af5dfdfd48ef64cc46e524ec70a22fe3a":[2,0,0,1,59,10],
+"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#afd3749488fdd3d1c53446fb8c833f3f4":[2,0,0,1,59,11],
+"classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aff81f0f98a399fa55b6b0ebf2230d4cf":[2,0,0,1,59,4],
+"classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask.html":[2,0,0,1,47],
+"classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask.html#a17ee65896bb3e7f1bf7176549a8ed615":[2,0,0,1,47,5],
+"classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask.html#a1f44b1bcb259067fe3d11201923ebef4":[2,0,0,1,47,4],
+"classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask.html#a31cd14d72c6c28c811c9183f118f5873":[2,0,0,1,47,2],
+"classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask.html#a612eabb08138bed927bdd845d0fdd3e6":[2,0,0,1,47,3],
+"classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask.html#a8036aaf9a2adcf033fc9f8e51da59956":[2,0,0,1,47,0],
+"classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask.html#a87e5fcd59129549d3eda0794f33fa254":[2,0,0,1,47,6],
+"classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask.html#ad7cf6a9fe63ee3db64a3e302d0c83c94":[2,0,0,1,47,1],
+"classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask.html#afd04dcd159e036500945605a001169af":[2,0,0,1,47,7],
+"classGpgFrontend_1_1UI_1_1QuitDialog.html":[2,0,0,1,23],
+"classGpgFrontend_1_1UI_1_1QuitDialog.html#a1624ecd7f9b5d32622bf6f9b7eb46a1b":[2,0,0,1,23,4],
+"classGpgFrontend_1_1UI_1_1QuitDialog.html#a4c4bc06d1d168f01569ed83dcfd50d55":[2,0,0,1,23,2],
+"classGpgFrontend_1_1UI_1_1QuitDialog.html#a60419bf8e817db25128c2f941fc42a3d":[2,0,0,1,23,0],
+"classGpgFrontend_1_1UI_1_1QuitDialog.html#a8970dbf707a5cb5109a40aac76158027":[2,0,0,1,23,3],
+"classGpgFrontend_1_1UI_1_1QuitDialog.html#ac491016e0d93183346b79421528ba5c8":[2,0,0,1,23,5],
+"classGpgFrontend_1_1UI_1_1QuitDialog.html#aec364c38056b6d92c172f8cdfb5f8e82":[2,0,0,1,23,1],
+"classGpgFrontend_1_1UI_1_1SettingsDialog.html":[2,0,0,1,26],
+"classGpgFrontend_1_1UI_1_1SettingsDialog.html#a0d66e360dfbcf79403351459721c3981":[2,0,0,1,26,1],
+"classGpgFrontend_1_1UI_1_1SettingsDialog.html#a1b7ddc7861d1b4b9dc3810ed98023ffc":[2,0,0,1,26,0],
+"classGpgFrontend_1_1UI_1_1SettingsDialog.html#a4e2ce62b4f14bb77d577efe208655bcb":[2,0,0,1,26,7],
+"classGpgFrontend_1_1UI_1_1SettingsDialog.html#a557219d1b82dd00e8d9f027a7cd561fa":[2,0,0,1,26,11],
+"classGpgFrontend_1_1UI_1_1SettingsDialog.html#a6532bcf29023e2d18209caae9960fd3f":[2,0,0,1,26,8],
+"classGpgFrontend_1_1UI_1_1SettingsDialog.html#aa1a54f43f17388a07befb5f15e4906ea":[2,0,0,1,26,5],
+"classGpgFrontend_1_1UI_1_1SettingsDialog.html#aac6feb4c12abb882446756c889d5fa78":[2,0,0,1,26,9],
+"classGpgFrontend_1_1UI_1_1SettingsDialog.html#ac32111f86366175b943f8d96eee975ed":[2,0,0,1,26,6],
+"classGpgFrontend_1_1UI_1_1SettingsDialog.html#ac43d73ffaadf316118ab0d7b46da4e41":[2,0,0,1,26,12],
+"classGpgFrontend_1_1UI_1_1SettingsDialog.html#acc6b4386de554fce6fbb60ac6d201952":[2,0,0,1,26,4],
+"classGpgFrontend_1_1UI_1_1SettingsDialog.html#acd22ac2fd91704551e5317e2c549ae26":[2,0,0,1,26,2],
+"classGpgFrontend_1_1UI_1_1SettingsDialog.html#acfd6e61f789f022790e9a83ce6359fbe":[2,0,0,1,26,10],
+"classGpgFrontend_1_1UI_1_1SettingsDialog.html#af5ba6646af45d0d1d794bc52ee54b1b9":[2,0,0,1,26,3],
+"classGpgFrontend_1_1UI_1_1SettingsObject.html":[2,0,0,1,42],
+"classGpgFrontend_1_1UI_1_1SettingsObject.html#a5ddcc2e0bc6d4c2f88e6e00371d4792e":[2,0,0,1,42,4],
+"classGpgFrontend_1_1UI_1_1SettingsObject.html#a69e9027002113bf9ecc16d7836e42c63":[2,0,0,1,42,5],
+"classGpgFrontend_1_1UI_1_1SettingsObject.html#a80801f6912991ba625b5ead29a4558f0":[2,0,0,1,42,3],
+"classGpgFrontend_1_1UI_1_1SettingsObject.html#aad706a2c2b68d280b5d3ababff0ff302":[2,0,0,1,42,0],
+"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],
+"classGpgFrontend_1_1UI_1_1SignalStation.html#a94d4c7d79e0deb7026083689bc5dc2ad":[2,0,0,1,41,4],
+"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,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],
+"classGpgFrontend_1_1UI_1_1SignersPicker.html#a4daf860ef736aedd986e566383666be5":[2,0,0,1,30,4],
+"classGpgFrontend_1_1UI_1_1SignersPicker.html#a524ee72ddb4fe397d71c0d4b5eb69171":[2,0,0,1,30,3]
};
diff --git a/docs/html/navtreeindex6.js b/docs/html/navtreeindex6.js
index b72fae71..962bd769 100644
--- a/docs/html/navtreeindex6.js
+++ b/docs/html/navtreeindex6.js
@@ -1,45 +1,140 @@
var NAVTREEINDEX6 =
{
-"classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#aeef0138e48f7e5f823f2cce9692d4649":[2,0,0,1,1,7],
-"classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html":[2,0,0,1,61],
-"classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#a25b96a986a009d35847f94719ec327c1":[2,0,0,1,61,1],
-"classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#a36bf3306b8564b49da04eee1dc653675":[2,0,0,1,61,3],
-"classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#a3c73911b679c3e3b413e0b5ad8d48587":[2,0,0,1,61,2],
-"classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#afbbe8e87786cca020c9aa8759eb041a0":[2,0,0,1,61,0],
-"classGpgFrontend_1_1UI_1_1VersionCheckTask.html":[2,0,0,1,47],
-"classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a03152f289952a5d2d133668907966126":[2,0,0,1,47,7],
-"classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a23901105c0aa009cfe9de6649912c4f0":[2,0,0,1,47,10],
-"classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a36c5597674253348477d78ad6af380ab":[2,0,0,1,47,2],
-"classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a787aaa798b68809bf46a8ed6daf57b7c":[2,0,0,1,47,6],
-"classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9156325af41c378f8d7e77187d445c12":[2,0,0,1,47,1],
-"classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9379c2bd2c85e1cd74d1c07bbc10822a":[2,0,0,1,47,9],
-"classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9679bc6bcdf2e64ec82f6119620b6f2e":[2,0,0,1,47,5],
-"classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9f7a810ae1aa78c2a61e86e7757da385":[2,0,0,1,47,0],
-"classGpgFrontend_1_1UI_1_1VersionCheckTask.html#aba6a81a5f958e5c5c29242bfe1fbd77a":[2,0,0,1,47,3],
-"classGpgFrontend_1_1UI_1_1VersionCheckTask.html#aed545ffa8128acb16bb28c067e032ec9":[2,0,0,1,47,8],
-"classGpgFrontend_1_1UI_1_1VersionCheckTask.html#af9042479ff7d3a8d1f7c53f320404ebb":[2,0,0,1,47,11],
-"classGpgFrontend_1_1UI_1_1VersionCheckTask.html#afd92a65f744566d288d9ddd736662d8e":[2,0,0,1,47,4],
-"classGpgFrontend_1_1UI_1_1WaitingDialog.html":[2,0,0,1,30],
-"classGpgFrontend_1_1UI_1_1WaitingDialog.html#a809d0ffc8208eb2ff5d8da76c8ee10dc":[2,0,0,1,30,0],
-"classGpgFrontend_1_1UI_1_1Wizard.html":[2,0,0,1,31],
-"classGpgFrontend_1_1UI_1_1Wizard.html#a448db8fe5ace96418ffd1f23b0142b10":[2,0,0,1,31,1],
-"classGpgFrontend_1_1UI_1_1Wizard.html#a6f5517c99cd08c44a3ae8676a2ac412c":[2,0,0,1,31,0],
-"classGpgFrontend_1_1UI_1_1Wizard.html#a6f5517c99cd08c44a3ae8676a2ac412ca1db00da5c18fa2f3b0764569530f9fd0":[2,0,0,1,31,0,2],
-"classGpgFrontend_1_1UI_1_1Wizard.html#a6f5517c99cd08c44a3ae8676a2ac412ca1e434fabfc6237dafd989f395e0a58c8":[2,0,0,1,31,0,1],
-"classGpgFrontend_1_1UI_1_1Wizard.html#a6f5517c99cd08c44a3ae8676a2ac412ca21b9ac4a8543be737829f3f970e28bb6":[2,0,0,1,31,0,3],
-"classGpgFrontend_1_1UI_1_1Wizard.html#a6f5517c99cd08c44a3ae8676a2ac412cab748f725806e9242cc8476eab193b51c":[2,0,0,1,31,0,0],
-"classGpgFrontend_1_1UI_1_1Wizard.html#a8482dc299ec69e422d9fa6bc0d31025a":[2,0,0,1,31,3],
-"classGpgFrontend_1_1UI_1_1Wizard.html#a8b5f5ddb1e6470cbf6c87cc6400031fb":[2,0,0,1,31,2],
+"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,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,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,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,38],
+"classGpgFrontend_1_1UI_1_1TextEdit.html#a7aa1230fbf796225bd6b83d381e11a3b":[2,0,0,1,60,2],
+"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,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,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,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,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,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],
+"classGpgFrontend_1_1UI_1_1UpdateTab.html#a1003bd969ecbc5deba940e39436968f4":[2,0,0,1,6,3],
+"classGpgFrontend_1_1UI_1_1UpdateTab.html#a3718c15db336b2ca0090ee492c429adb":[2,0,0,1,6,5],
+"classGpgFrontend_1_1UI_1_1UpdateTab.html#a5e752e01539ccfdc6bbe41a404ddaa95":[2,0,0,1,6,2],
+"classGpgFrontend_1_1UI_1_1UpdateTab.html#a7329657135624fc42ad80d821e11befe":[2,0,0,1,6,1],
+"classGpgFrontend_1_1UI_1_1UpdateTab.html#a833c5f709607032bac530aacf389a117":[2,0,0,1,6,0],
+"classGpgFrontend_1_1UI_1_1UpdateTab.html#a84579badda70b12cfd79add18d1ef94f":[2,0,0,1,6,6],
+"classGpgFrontend_1_1UI_1_1UpdateTab.html#a9dedd8bc17bbc53d31c9d292429be68b":[2,0,0,1,6,7],
+"classGpgFrontend_1_1UI_1_1UpdateTab.html#ab209ef238583efea25c6a58aa4831628":[2,0,0,1,6,8],
+"classGpgFrontend_1_1UI_1_1UpdateTab.html#ad180d1f434e8052f3e0974522c92ae61":[2,0,0,1,6,4],
+"classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html":[2,0,0,1,1],
+"classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#a263f2a4030c261a849ded182cd889b3f":[2,0,0,1,1,2],
+"classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#a37a315ff2a1ed0402adf1e15325990ba":[2,0,0,1,1,8],
+"classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#a7849527f1e93581103bca3e7c66456c4":[2,0,0,1,1,7],
+"classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#a79d6071c0cedd9e18588137783823fad":[2,0,0,1,1,1],
+"classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#ac73f0405e249f623ddd0de22b5130fda":[2,0,0,1,1,0],
+"classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#ae15d7e9e60c58dea08ae117645e8b32a":[2,0,0,1,1,3],
+"classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#ae66e988b812817ab95c35a7c080e8c06":[2,0,0,1,1,5],
+"classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#aeb3a7c48297d448d25b2b84a2aa64ad0":[2,0,0,1,1,4],
+"classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#aeef0138e48f7e5f823f2cce9692d4649":[2,0,0,1,1,6],
+"classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html":[2,0,0,1,62],
+"classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#a25b96a986a009d35847f94719ec327c1":[2,0,0,1,62,1],
+"classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#a36bf3306b8564b49da04eee1dc653675":[2,0,0,1,62,3],
+"classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#a3c73911b679c3e3b413e0b5ad8d48587":[2,0,0,1,62,2],
+"classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#afbbe8e87786cca020c9aa8759eb041a0":[2,0,0,1,62,0],
+"classGpgFrontend_1_1UI_1_1VersionCheckTask.html":[2,0,0,1,48],
+"classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a03152f289952a5d2d133668907966126":[2,0,0,1,48,7],
+"classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a23901105c0aa009cfe9de6649912c4f0":[2,0,0,1,48,10],
+"classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a36c5597674253348477d78ad6af380ab":[2,0,0,1,48,2],
+"classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a787aaa798b68809bf46a8ed6daf57b7c":[2,0,0,1,48,6],
+"classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9156325af41c378f8d7e77187d445c12":[2,0,0,1,48,1],
+"classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9379c2bd2c85e1cd74d1c07bbc10822a":[2,0,0,1,48,9],
+"classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9679bc6bcdf2e64ec82f6119620b6f2e":[2,0,0,1,48,5],
+"classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9f7a810ae1aa78c2a61e86e7757da385":[2,0,0,1,48,0],
+"classGpgFrontend_1_1UI_1_1VersionCheckTask.html#aba6a81a5f958e5c5c29242bfe1fbd77a":[2,0,0,1,48,3],
+"classGpgFrontend_1_1UI_1_1VersionCheckTask.html#aed545ffa8128acb16bb28c067e032ec9":[2,0,0,1,48,8],
+"classGpgFrontend_1_1UI_1_1VersionCheckTask.html#af9042479ff7d3a8d1f7c53f320404ebb":[2,0,0,1,48,11],
+"classGpgFrontend_1_1UI_1_1VersionCheckTask.html#afd92a65f744566d288d9ddd736662d8e":[2,0,0,1,48,4],
+"classGpgFrontend_1_1UI_1_1WaitingDialog.html":[2,0,0,1,31],
+"classGpgFrontend_1_1UI_1_1WaitingDialog.html#a809d0ffc8208eb2ff5d8da76c8ee10dc":[2,0,0,1,31,0],
+"classGpgFrontend_1_1UI_1_1Wizard.html":[2,0,0,1,32],
+"classGpgFrontend_1_1UI_1_1Wizard.html#a448db8fe5ace96418ffd1f23b0142b10":[2,0,0,1,32,1],
+"classGpgFrontend_1_1UI_1_1Wizard.html#a6f5517c99cd08c44a3ae8676a2ac412c":[2,0,0,1,32,0],
+"classGpgFrontend_1_1UI_1_1Wizard.html#a6f5517c99cd08c44a3ae8676a2ac412ca1db00da5c18fa2f3b0764569530f9fd0":[2,0,0,1,32,0,2],
+"classGpgFrontend_1_1UI_1_1Wizard.html#a6f5517c99cd08c44a3ae8676a2ac412ca1e434fabfc6237dafd989f395e0a58c8":[2,0,0,1,32,0,1],
+"classGpgFrontend_1_1UI_1_1Wizard.html#a6f5517c99cd08c44a3ae8676a2ac412ca21b9ac4a8543be737829f3f970e28bb6":[2,0,0,1,32,0,3],
+"classGpgFrontend_1_1UI_1_1Wizard.html#a6f5517c99cd08c44a3ae8676a2ac412cab748f725806e9242cc8476eab193b51c":[2,0,0,1,32,0,0],
+"classGpgFrontend_1_1UI_1_1Wizard.html#a8482dc299ec69e422d9fa6bc0d31025a":[2,0,0,1,32,3],
+"classGpgFrontend_1_1UI_1_1Wizard.html#a8b5f5ddb1e6470cbf6c87cc6400031fb":[2,0,0,1,32,2],
"classProxyConnectionTestThread.html":[2,0,2],
"classSignatureDetailsDialog.html":[2,0,3],
"classTestListedKeyServerThread.html":[2,0,4],
"classclass.html":[2,0,1],
"classes.html":[2,1],
"dir_00e48bdfb963d228cbb8d1392ea3be3d.html":[3,0,0,1,0,0],
-"dir_0652c688762e27a1001e51709de145a7.html":[3,0,0,1,0,2],
+"dir_0652c688762e27a1001e51709de145a7.html":[3,0,0,1,0,3],
+"dir_074045c6ecbcc6148037e9f97e06715b.html":[3,0,0,1,0,1],
"dir_0cd9bde2c64af64bc3733ed8ca8e04b3.html":[3,0,0,1,3],
-"dir_11afffa0017fe763467cff6465c6cba1.html":[3,0,0,1,0,4],
-"dir_181bea3d8ae4b1f9a028d86ce05f5b90.html":[3,0,0,1,0,3],
+"dir_11afffa0017fe763467cff6465c6cba1.html":[3,0,0,1,0,5],
+"dir_181bea3d8ae4b1f9a028d86ce05f5b90.html":[3,0,0,1,0,4],
"dir_34b4cee2b5900b653deb3438fc906cf4.html":[3,0,0,0,0],
"dir_4c90737131b129f8f210b6ba3e14bca4.html":[3,0,0,0,1,1],
"dir_60d155722ad55e64f9b6ab1078feff11.html":[3,0,0,1,0],
@@ -48,10 +143,10 @@ var NAVTREEINDEX6 =
"dir_aebb8dcc11953d78e620bbef0b9e2183.html":[3,0,0,0],
"dir_b499e35b7e1b4486be887a41196851ec.html":[3,0,0,0,1,0],
"dir_b7e232576c264c97fe14815134a8cffa.html":[3,0,0,1,1],
-"dir_c94381238fe21d1ba8abf1f36aa07fe5.html":[3,0,0,1,0,5],
+"dir_c94381238fe21d1ba8abf1f36aa07fe5.html":[3,0,0,1,0,6],
"dir_da5c6b39c0a2f54e57df6799511cd3ab.html":[3,0,0,1],
"dir_db6209eff64d15a114e6ff7aefbf1abd.html":[3,0,0,0,2],
-"dir_e2aa8803ed3498b184755f32f6c016d5.html":[3,0,0,1,0,1],
+"dir_e2aa8803ed3498b184755f32f6c016d5.html":[3,0,0,1,0,2],
"dir_f3911b9629b0e27ea480d06d47573cbf.html":[3,0,0,1,4],
"dir_f8a0abd6d3586538a5b71803e0ab7ffa.html":[3,0,0,0,1],
"dir_fc6c58bf49530122ab17df13a9869378.html":[3,0,0,0,1,2],
@@ -65,8 +160,8 @@ var NAVTREEINDEX6 =
"functions_d.html":[2,3,0,4],
"functions_e.html":[2,3,0,5],
"functions_f.html":[2,3,0,6],
-"functions_func.html":[2,3,1],
"functions_func.html":[2,3,1,0],
+"functions_func.html":[2,3,1],
"functions_func_c.html":[2,3,1,1],
"functions_func_d.html":[2,3,1,2],
"functions_func_e.html":[2,3,1,3],
@@ -111,143 +206,48 @@ var NAVTREEINDEX6 =
"index.html":[0],
"index.html":[],
"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,66],
-"namespaceGpgFrontend_1_1UI.html#a204156a333cde4f705f0ace91cd3d333":[1,0,0,2,76],
-"namespaceGpgFrontend_1_1UI.html#a3c971eeb5c620d08d6d92f0752ceaf9f":[1,0,0,2,72],
-"namespaceGpgFrontend_1_1UI.html#a4dea2a35c4dbc3868317beb26d4508fc":[1,0,0,2,70],
-"namespaceGpgFrontend_1_1UI.html#a4f6c9bfe9ecb5da132f2f6d2ba7eeb80":[1,0,0,2,63],
-"namespaceGpgFrontend_1_1UI.html#a5470872566b41ce628f64039f34b964a":[1,0,0,2,71],
-"namespaceGpgFrontend_1_1UI.html#a57d0a4dba23cd3d9b42222d40c710dc1":[1,0,0,2,75],
-"namespaceGpgFrontend_1_1UI.html#a590a26051105940a6d6e0743b147e281":[1,0,0,2,78],
-"namespaceGpgFrontend_1_1UI.html#a60b5887adabc74015700795dc3c07ae9":[1,0,0,2,74],
-"namespaceGpgFrontend_1_1UI.html#a75ce194e83468251e5f443cedebd8e3c":[1,0,0,2,69],
-"namespaceGpgFrontend_1_1UI.html#a834d05cb1918760d1a9c5a67aa3a7da3":[1,0,0,2,67],
-"namespaceGpgFrontend_1_1UI.html#a9ab218dde057182cb4911c4792acd925":[1,0,0,2,65],
-"namespaceGpgFrontend_1_1UI.html#a9e2d085812ef8fdd6f19ea94a241b4da":[1,0,0,2,77],
-"namespaceGpgFrontend_1_1UI.html#aa346bd199cecc61b15ef406728b58770":[1,0,0,2,64],
-"namespaceGpgFrontend_1_1UI.html#ab0311557c1d7bde9c56cbca85fefa6ad":[1,0,0,2,68],
-"namespaceGpgFrontend_1_1UI.html#abd3c7c636954390d52150b4e6d38e1b3":[1,0,0,2,73],
-"namespaceGpgFrontend_1_1UI.html#acbaebd342a317b1f067942e5144bb00d":[1,0,0,2,62],
-"namespaceGpgFrontend_1_1UI.html#acbaebd342a317b1f067942e5144bb00da3af9444bf2929ab4b80b863da415cd69":[1,0,0,2,62,1],
-"namespaceGpgFrontend_1_1UI.html#acbaebd342a317b1f067942e5144bb00da64c9ad5698bff378b442691d32b2efb6":[1,0,0,2,62,2],
-"namespaceGpgFrontend_1_1UI.html#acbaebd342a317b1f067942e5144bb00dad42d12553e87485f9eada4819c9d3315":[1,0,0,2,62,3],
-"namespaceGpgFrontend_1_1UI.html#acbaebd342a317b1f067942e5144bb00dad9f9b62d50036c2f35892e1ca67bdde2":[1,0,0,2,62,0],
-"namespaceGpgFrontend_1_1UI.html#afaa12ab40cfca0bc8c9c8e2d24116a9d":[1,0,0,2,79],
-"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#a0ab27875287142f6c72bb7cc7e7bc271":[2,0,0,31,0],
-"structGpgFrontend_1_1GpgContextInitArgs.html#a25ca282a0a82ed7aa4cb677a86f53eef":[2,0,0,31,6],
-"structGpgFrontend_1_1GpgContextInitArgs.html#a646fd830375ccf3b69ea64ede0c76f52":[2,0,0,31,1],
-"structGpgFrontend_1_1GpgContextInitArgs.html#a825d8c5daced5eb06be1a949ae0eadfd":[2,0,0,31,4],
-"structGpgFrontend_1_1GpgContextInitArgs.html#a90fc544dd70fa9e3cf4951b9a54efc22":[2,0,0,31,3],
-"structGpgFrontend_1_1GpgContextInitArgs.html#aa850fc1db1cc8f3daae78a0fcefb2fdb":[2,0,0,31,2],
-"structGpgFrontend_1_1GpgContextInitArgs.html#ac2679300c14d3f0ce29625a267054e6b":[2,0,0,31,5],
-"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_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],
-"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],
-"structGpgFrontend_1_1UI_1_1KeyListColumn.html":[2,0,0,1,54],
-"structGpgFrontend_1_1UI_1_1KeyListColumn.html#a21a0f214c0e06684a6430fc7a782fb1a":[2,0,0,1,54,2],
-"structGpgFrontend_1_1UI_1_1KeyListColumn.html#a2e7f4700b56c5f4db732dbf047d80691":[2,0,0,1,54,0],
-"structGpgFrontend_1_1UI_1_1KeyListColumn.html#a346487dc364b85a2b0e1962bfe4fb64e":[2,0,0,1,54,7],
-"structGpgFrontend_1_1UI_1_1KeyListColumn.html#a58138d19ea81b42712610c7419ac1f66":[2,0,0,1,54,6],
-"structGpgFrontend_1_1UI_1_1KeyListColumn.html#a6d71f19e2a201c35592226a8f1a19ddb":[2,0,0,1,54,4],
-"structGpgFrontend_1_1UI_1_1KeyListColumn.html#ab561f6f3c20bc239a4021ad75ac627b3":[2,0,0,1,54,3],
-"structGpgFrontend_1_1UI_1_1KeyListColumn.html#ac8581e50c2880b67c26c0196b2511905":[2,0,0,1,54,5],
-"structGpgFrontend_1_1UI_1_1KeyListColumn.html#aca1729a164974c7037e9740e2189423d":[2,0,0,1,54,1],
-"structGpgFrontend_1_1UI_1_1KeyListRow.html":[2,0,0,1,53],
-"structGpgFrontend_1_1UI_1_1KeyListRow.html#a2f141b7a3e28f9354bfb7d2c077a749c":[2,0,0,1,53,2],
-"structGpgFrontend_1_1UI_1_1KeyListRow.html#a53f8d78eb222490c72168a2571e6ea89":[2,0,0,1,53,1],
-"structGpgFrontend_1_1UI_1_1KeyListRow.html#ade4a3f198d1be1659152519fd9fff7f6":[2,0,0,1,53,0],
-"structGpgFrontend_1_1UI_1_1KeyMenuAbility.html":[2,0,0,1,55],
-"structGpgFrontend_1_1UI_1_1KeyMenuAbility.html#a1e9badf8cc20ca49b2374cdc705b7602":[2,0,0,1,55,3],
-"structGpgFrontend_1_1UI_1_1KeyMenuAbility.html#a2ff7f5aeea6e8791d69cd0656489d6eb":[2,0,0,1,55,2],
-"structGpgFrontend_1_1UI_1_1KeyMenuAbility.html#a33bef35c7c6c67f6a2b0ed9dfda8fcad":[2,0,0,1,55,1],
-"structGpgFrontend_1_1UI_1_1KeyMenuAbility.html#a3e3f324385c69f3848297c5c60eb8012":[2,0,0,1,55,4],
-"structGpgFrontend_1_1UI_1_1KeyMenuAbility.html#a632b87f5c86b4bb76e1af350f053107a":[2,0,0,1,55,6],
-"structGpgFrontend_1_1UI_1_1KeyMenuAbility.html#aa256cb1cde47d898011f49bb8a6d9820":[2,0,0,1,55,0],
-"structGpgFrontend_1_1UI_1_1KeyMenuAbility.html#af28d1d7fbfc66aea550f98db5a2a582b":[2,0,0,1,55,5],
-"structGpgFrontend_1_1UI_1_1KeyTable.html":[2,0,0,1,56],
-"structGpgFrontend_1_1UI_1_1KeyTable.html#a0719f023069e0f6e29db20b6cd0cf5ea":[2,0,0,1,56,5],
-"structGpgFrontend_1_1UI_1_1KeyTable.html#a5bce4bf0dc41ac05390a4f93da8b8985":[2,0,0,1,56,10],
-"structGpgFrontend_1_1UI_1_1KeyTable.html#a77eba4055ecb7d32fab06f65b80ae07e":[2,0,0,1,56,2],
-"structGpgFrontend_1_1UI_1_1KeyTable.html#a880d24a22ef291667e6d6c76a487fc57":[2,0,0,1,56,8],
-"structGpgFrontend_1_1UI_1_1KeyTable.html#a88606ba6954d60244faf38de419bfc47":[2,0,0,1,56,0],
-"structGpgFrontend_1_1UI_1_1KeyTable.html#a9ef84e0b2d9146b962ca4ca79e7f0e9c":[2,0,0,1,56,1],
-"structGpgFrontend_1_1UI_1_1KeyTable.html#aaac381e205c323444098803e0295060f":[2,0,0,1,56,3],
-"structGpgFrontend_1_1UI_1_1KeyTable.html#ab0aee9ed16af04048f456abddb4dc007":[2,0,0,1,56,11],
-"structGpgFrontend_1_1UI_1_1KeyTable.html#adb59ac00683aec02344804ae8c5670a5":[2,0,0,1,56,6],
-"structGpgFrontend_1_1UI_1_1KeyTable.html#add3529625d70c3aa37f3d8cdc3bb8c63":[2,0,0,1,56,7]
+"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]
};
diff --git a/docs/html/navtreeindex7.js b/docs/html/navtreeindex7.js
index 9317abaf..33469589 100644
--- a/docs/html/navtreeindex7.js
+++ b/docs/html/navtreeindex7.js
@@ -1,32 +1,153 @@
var NAVTREEINDEX7 =
{
-"structGpgFrontend_1_1UI_1_1KeyTable.html#ae0713ebbc21e78995db9a856d746fe6c":[2,0,0,1,56,4],
-"structGpgFrontend_1_1UI_1_1KeyTable.html#aeb37ccd5436993b7f1dd33667a36551e":[2,0,0,1,56,9],
-"structGpgFrontend_1_1UI_1_1MainWindow_1_1CryptoMenu.html":[2,0,0,1,39,0],
-"structGpgFrontend_1_1UI_1_1MainWindow_1_1CryptoMenu.html#a093ff65776f48511a2af0959a007cf1f":[2,0,0,1,39,0,7],
-"structGpgFrontend_1_1UI_1_1MainWindow_1_1CryptoMenu.html#a0e1d3d999bd2699a2e332f4e07ead822":[2,0,0,1,39,0,3],
-"structGpgFrontend_1_1UI_1_1MainWindow_1_1CryptoMenu.html#a2832941c8dec7b1c0ad40f4ff77c1814":[2,0,0,1,39,0,0],
-"structGpgFrontend_1_1UI_1_1MainWindow_1_1CryptoMenu.html#a2add79ec9a1c8e2602ebf5beb10df51f":[2,0,0,1,39,0,5],
-"structGpgFrontend_1_1UI_1_1MainWindow_1_1CryptoMenu.html#a6003e52fbe3a2eb4ad14b621f8dd7f8e":[2,0,0,1,39,0,4],
-"structGpgFrontend_1_1UI_1_1MainWindow_1_1CryptoMenu.html#abbd059f236b897f18b1d049e5739672b":[2,0,0,1,39,0,1],
-"structGpgFrontend_1_1UI_1_1MainWindow_1_1CryptoMenu.html#ac044f133fa3c5edfcba3a3da6a33db55":[2,0,0,1,39,0,2],
-"structGpgFrontend_1_1UI_1_1MainWindow_1_1CryptoMenu.html#adeaa420019edb82abdf898c9c4f27000":[2,0,0,1,39,0,6],
-"structGpgFrontend_1_1UI_1_1SoftwareVersion.html":[2,0,0,1,42],
-"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a105c94ebdef4201963c8ae83b9cc44d6":[2,0,0,1,42,6],
-"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a396e555fe47dacbd08e67e65e4c3aba6":[2,0,0,1,42,11],
-"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a43663cd2d086299a0f0304f5bde9c663":[2,0,0,1,42,0],
-"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a492ce222f6a361d5a05552dd35d41fca":[2,0,0,1,42,7],
-"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a587a3fdb047a15c3771c2af5eebdbf4b":[2,0,0,1,42,4],
-"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a5d04813a59ceb83ec264c8e5db6ab14e":[2,0,0,1,42,13],
-"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a97acaa60638177a3da91e211e3d0c178":[2,0,0,1,42,5],
-"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#aac94470eae0dca3c809bcf37712ad37a":[2,0,0,1,42,9],
-"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#aafdfa44fdc1d3a1bf9b374fad62b7ead":[2,0,0,1,42,12],
-"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#abc311fd0e15da1a04b995587ca74e1a6":[2,0,0,1,42,2],
-"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#acbff398f6a35bbcd3593a958cf89e22e":[2,0,0,1,42,14],
-"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#acc4ddfafdebc629d6d534e07e7996fef":[2,0,0,1,42,10],
-"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#acf891516bea76422e8144047eab6964a":[2,0,0,1,42,8],
-"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#ae1989b6a34c76103f4bd06f35686d536":[2,0,0,1,42,3],
-"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#aec79eefdc19c90e046cb48bca347ff1c":[2,0,0,1,42,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]
+"namespaceGpgFrontend.html#ada6a044ece8975e35b2a229f65249713":[1,0,0,48],
+"namespaceGpgFrontend.html#adf0fbe100c3ea1bf2f33bc0f55dfff17":[1,0,0,84],
+"namespaceGpgFrontend.html#ae060b7e70b7898c1239f372b55bac640":[1,0,0,53],
+"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],
+"structGpgFrontend_1_1UI_1_1KeyListColumn.html":[2,0,0,1,55],
+"structGpgFrontend_1_1UI_1_1KeyListColumn.html#a21a0f214c0e06684a6430fc7a782fb1a":[2,0,0,1,55,2],
+"structGpgFrontend_1_1UI_1_1KeyListColumn.html#a2e7f4700b56c5f4db732dbf047d80691":[2,0,0,1,55,0],
+"structGpgFrontend_1_1UI_1_1KeyListColumn.html#a346487dc364b85a2b0e1962bfe4fb64e":[2,0,0,1,55,7],
+"structGpgFrontend_1_1UI_1_1KeyListColumn.html#a58138d19ea81b42712610c7419ac1f66":[2,0,0,1,55,6],
+"structGpgFrontend_1_1UI_1_1KeyListColumn.html#a6d71f19e2a201c35592226a8f1a19ddb":[2,0,0,1,55,4],
+"structGpgFrontend_1_1UI_1_1KeyListColumn.html#ab561f6f3c20bc239a4021ad75ac627b3":[2,0,0,1,55,3],
+"structGpgFrontend_1_1UI_1_1KeyListColumn.html#ac8581e50c2880b67c26c0196b2511905":[2,0,0,1,55,5],
+"structGpgFrontend_1_1UI_1_1KeyListColumn.html#aca1729a164974c7037e9740e2189423d":[2,0,0,1,55,1],
+"structGpgFrontend_1_1UI_1_1KeyListRow.html":[2,0,0,1,54],
+"structGpgFrontend_1_1UI_1_1KeyListRow.html#a2f141b7a3e28f9354bfb7d2c077a749c":[2,0,0,1,54,2],
+"structGpgFrontend_1_1UI_1_1KeyListRow.html#a53f8d78eb222490c72168a2571e6ea89":[2,0,0,1,54,1],
+"structGpgFrontend_1_1UI_1_1KeyListRow.html#ade4a3f198d1be1659152519fd9fff7f6":[2,0,0,1,54,0],
+"structGpgFrontend_1_1UI_1_1KeyMenuAbility.html":[2,0,0,1,56],
+"structGpgFrontend_1_1UI_1_1KeyMenuAbility.html#a1e9badf8cc20ca49b2374cdc705b7602":[2,0,0,1,56,3],
+"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,7],
+"structGpgFrontend_1_1UI_1_1KeyMenuAbility.html#aa256cb1cde47d898011f49bb8a6d9820":[2,0,0,1,56,0],
+"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#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],
+"structGpgFrontend_1_1UI_1_1MainWindow_1_1CryptoMenu.html#a2832941c8dec7b1c0ad40f4ff77c1814":[2,0,0,1,40,0,0],
+"structGpgFrontend_1_1UI_1_1MainWindow_1_1CryptoMenu.html#a2add79ec9a1c8e2602ebf5beb10df51f":[2,0,0,1,40,0,5],
+"structGpgFrontend_1_1UI_1_1MainWindow_1_1CryptoMenu.html#a6003e52fbe3a2eb4ad14b621f8dd7f8e":[2,0,0,1,40,0,4],
+"structGpgFrontend_1_1UI_1_1MainWindow_1_1CryptoMenu.html#abbd059f236b897f18b1d049e5739672b":[2,0,0,1,40,0,1],
+"structGpgFrontend_1_1UI_1_1MainWindow_1_1CryptoMenu.html#ac044f133fa3c5edfcba3a3da6a33db55":[2,0,0,1,40,0,2],
+"structGpgFrontend_1_1UI_1_1MainWindow_1_1CryptoMenu.html#adeaa420019edb82abdf898c9c4f27000":[2,0,0,1,40,0,6],
+"structGpgFrontend_1_1UI_1_1SoftwareVersion.html":[2,0,0,1,43],
+"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a105c94ebdef4201963c8ae83b9cc44d6":[2,0,0,1,43,6],
+"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a396e555fe47dacbd08e67e65e4c3aba6":[2,0,0,1,43,11],
+"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a43663cd2d086299a0f0304f5bde9c663":[2,0,0,1,43,0],
+"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a492ce222f6a361d5a05552dd35d41fca":[2,0,0,1,43,7],
+"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a587a3fdb047a15c3771c2af5eebdbf4b":[2,0,0,1,43,4],
+"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a5d04813a59ceb83ec264c8e5db6ab14e":[2,0,0,1,43,13],
+"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a97acaa60638177a3da91e211e3d0c178":[2,0,0,1,43,5],
+"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#aac94470eae0dca3c809bcf37712ad37a":[2,0,0,1,43,9],
+"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#aafdfa44fdc1d3a1bf9b374fad62b7ead":[2,0,0,1,43,12],
+"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#abc311fd0e15da1a04b995587ca74e1a6":[2,0,0,1,43,2],
+"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#acbff398f6a35bbcd3593a958cf89e22e":[2,0,0,1,43,14],
+"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#acc4ddfafdebc629d6d534e07e7996fef":[2,0,0,1,43,10],
+"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,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 6ece5c42..caecfb23 100644
--- a/docs/html/search/all_1.js
+++ b/docs/html/search/all_1.js
@@ -4,15 +4,15 @@ 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#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)']]],
+ ['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)']]],
['advancedtab_15',['AdvancedTab',['../classGpgFrontend_1_1UI_1_1AdvancedTab.html',1,'GpgFrontend::UI']]],
['aes_5f256_5fcbc_5fdecrypt_16',['aes_256_cbc_decrypt',['../namespaceGpgFrontend_1_1RawAPI.html#a2e388ecafc7b859eda84b4e3c4e2576f',1,'GpgFrontend::RawAPI']]],
['aes_5f256_5fcbc_5fencrypt_17',['aes_256_cbc_encrypt',['../namespaceGpgFrontend_1_1RawAPI.html#aa2bc88cf78b8da893f1b5c7e2e8ccf42',1,'GpgFrontend::RawAPI']]],
['aes_5f256_5fcbc_5finit_18',['aes_256_cbc_init',['../namespaceGpgFrontend_1_1RawAPI.html#a1f2f6c82e9c904c3875a123a65564697',1,'GpgFrontend::RawAPI']]],
- ['algorithm_5fvar_5flabel_5f_19',['algorithm_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a1790a8b163b94f33a3bb968f9a19f00c',1,'GpgFrontend::UI::KeyPairSubkeyTab::algorithm_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aadcb3bbb4233fdc2deca5b509c46b2e1',1,'GpgFrontend::UI::KeyPairDetailTab::algorithm_var_label_()']]],
+ ['algorithm_5fvar_5flabel_5f_19',['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_20',['app_configure_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a4d04bb665571921421b853f18b8b300a',1,'GpgFrontend::GlobalSettingStation']]],
['app_5fdata_5fobjs_5fpath_5f_21',['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_22',['app_data_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a58fff8a42f98ad7989bffb8322344cd6',1,'GpgFrontend::GlobalSettingStation']]],
@@ -31,5 +31,6 @@ var searchData=
['associatetabwidget_35',['AssociateTabWidget',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#adfa4acd435d2ec29f951f4e7e6a43f38',1,'GpgFrontend::UI::InfoBoardWidget']]],
['associatetextedit_36',['AssociateTextEdit',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a4fd6f91eb435feb41ae93e44485646ab',1,'GpgFrontend::UI::InfoBoardWidget']]],
['assuanpath_37',['AssuanPath',['../classGpgFrontend_1_1GpgInfo.html#a48659b780f8d0153ca0eb985a072b5ba',1,'GpgFrontend::GpgInfo']]],
- ['attachment_5fdock_5f_38',['attachment_dock_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#afd243a5f00f86d65431081ead2cae153',1,'GpgFrontend::UI::MainWindow']]]
+ ['attachment_5fdock_5f_38',['attachment_dock_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#afd243a5f00f86d65431081ead2cae153',1,'GpgFrontend::UI::MainWindow']]],
+ ['automatonhandelstruct_39',['AutomatonHandelStruct',['../structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html',1,'GpgFrontend::GpgKeyManager']]]
];
diff --git a/docs/html/search/all_10.js b/docs/html/search/all_10.js
index 0b77f766..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_468',['quit_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#abe0683e48485f9fcff622d9519c37ed9',1,'GpgFrontend::UI::MainWindow']]],
- ['quitdialog_469',['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_470',['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 0f70bf61..6d4b97ff 100644
--- a/docs/html/search/all_11.js
+++ b/docs/html/search/all_11.js
@@ -1,26 +1,25 @@
var searchData=
[
- ['rd_5f_471',['rd_',['../classGpgFrontend_1_1PassphraseGenerator.html#a12ee6f9b7fff4883074321c7e0de3dfa',1,'GpgFrontend::PassphraseGenerator::rd_()'],['../classGpgFrontend_1_1DataObjectOperator.html#a24c9cdbe9256e332ac93d6dc28c76b90',1,'GpgFrontend::DataObjectOperator::rd_()']]],
- ['read2buffer_472',['Read2Buffer',['../classGpgFrontend_1_1GpgData.html#ae382a34ec551561315deca84c71c19c1',1,'GpgFrontend::GpgData']]],
- ['read_5fall_5fdata_5fin_5ffile_473',['read_all_data_in_file',['../namespaceGpgFrontend.html#a73f3e2217fb1d72dc75f266e11875f6d',1,'GpgFrontend']]],
- ['readdone_474',['ReadDone',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#ac1902b063decfeebe7f0908cbfe618ce',1,'GpgFrontend::UI::PlainTextEditorPage']]],
- ['readfile_475',['ReadFile',['../classGpgFrontend_1_1FileOperator.html#a28a3572dc01192b6a4d50b544181084c',1,'GpgFrontend::FileOperator']]],
- ['readfilestd_476',['ReadFileStd',['../classGpgFrontend_1_1FileOperator.html#ad4424bce4f22ae75a16c542dfb4ddf0a',1,'GpgFrontend::FileOperator']]],
- ['redo_5fact_5f_477',['redo_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#abe38474d4e81726147f9df8a9721ce6e',1,'GpgFrontend::UI::MainWindow']]],
- ['refresh_478',['Refresh',['../structGpgFrontend_1_1UI_1_1KeyTable.html#aaac381e205c323444098803e0295060f',1,'GpgFrontend::UI::KeyTable']]],
- ['refresh_5finfo_5fboard_479',['refresh_info_board',['../namespaceGpgFrontend_1_1UI.html#a204156a333cde4f705f0ace91cd3d333',1,'GpgFrontend::UI']]],
- ['refresh_5fkeys_5ffrom_5fkey_5fserver_480',['refresh_keys_from_key_server',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adfa3b3ae1de1fd04c5ea09e3c97c3e98',1,'GpgFrontend::UI::MainWindow']]],
- ['refresh_5fwidgets_5fstate_481',['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_482',['ReleaseChannel',['../classGpgFrontend_1_1SingletonStorage.html#adb22cc80a1ab040b6e4bce962625edfd',1,'GpgFrontend::SingletonStorage::ReleaseChannel()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#ab49b1d50252e1934691a9483a6df2106',1,'GpgFrontend::SingletonFunctionObject::ReleaseChannel()']]],
- ['reloadgpgcomponents_483',['ReloadGpgComponents',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a6876b6ee63ff7147c274e4f9538d29ce',1,'GpgFrontend::GpgAdvancedOperator']]],
- ['resetconfigures_484',['ResetConfigures',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a209f6d1d664ab672437198dc10ed8226',1,'GpgFrontend::GpgAdvancedOperator']]],
- ['resetoptionactionsmenu_485',['ResetOptionActionsMenu',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a7d7504339221bd680fb18698dd829b32',1,'GpgFrontend::UI::InfoBoardWidget']]],
- ['resettempcachevalue_486',['ResetTempCacheValue',['../classGpgFrontend_1_1CoreCommonUtil.html#a354c4f7cb7f102964e43012fc10d1e52',1,'GpgFrontend::CoreCommonUtil']]],
- ['restartgpgcomponents_487',['RestartGpgComponents',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a5801bf4ea7391cbcc60efd2513d41041',1,'GpgFrontend::GpgAdvancedOperator']]],
- ['restore_5fsettings_488',['restore_settings',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a210ab31f4d949a50507d0690c0d1598a',1,'GpgFrontend::UI::MainWindow']]],
- ['revsign_489',['RevSign',['../classGpgFrontend_1_1GpgKeyManager.html#aa2c0e804db1c4aaf3b861ee5ab54ebd8',1,'GpgFrontend::GpgKeyManager']]],
- ['revuid_490',['RevUID',['../classGpgFrontend_1_1GpgUIDOperator.html#a47f762666afbc806365877ff70947841',1,'GpgFrontend::GpgUIDOperator']]],
- ['run_491',['Run',['../classGpgFrontend_1_1Thread_1_1CtxCheckTask.html#a1c94cb1290df40a9043fe2d1a9a231f2',1,'GpgFrontend::Thread::CtxCheckTask::Run()'],['../classGpgFrontend_1_1UI_1_1FileReadTask.html#a0f8bc1c253380b68c0e65cabc011ac09',1,'GpgFrontend::UI::FileReadTask::Run()'],['../classGpgFrontend_1_1Thread_1_1Task.html#ac60aa71a24f452fd8031597ff4cbbd00',1,'GpgFrontend::Thread::Task::Run()'],['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9156325af41c378f8d7e77187d445c12',1,'GpgFrontend::UI::VersionCheckTask::Run()']]],
- ['run_492',['run',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.html#a497bb7f1b92c67f2e754fd66ca3a6666',1,'GpgFrontend::UI::ProxyConnectionTestThread']]],
- ['rungpgfrontendui_493',['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 b36a79da..96577ad9 100644
--- a/docs/html/search/all_12.js
+++ b/docs/html/search/all_12.js
@@ -1,195 +1,198 @@
var searchData=
[
- ['save_5fact_5f_494',['save_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab0f148559d830fcf10b5a1937b0a47dc',1,'GpgFrontend::UI::MainWindow']]],
- ['save_5fas_5fact_5f_495',['save_as_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a22256763ef83ed35a81e446b553d8112',1,'GpgFrontend::UI::MainWindow']]],
- ['save_5ffile_496',['save_file',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a66b6f6633e7ac71e5fe8b7814a81cadf',1,'GpgFrontend::UI::TextEdit']]],
- ['save_5fsettings_497',['save_settings',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7a4b6490038470a8849231e48282da98',1,'GpgFrontend::UI::MainWindow']]],
- ['savecache_498',['SaveCache',['../classGpgFrontend_1_1CacheManager.html#a3cbc3238638dcd8b4722bfdf560c73fe',1,'GpgFrontend::CacheManager']]],
- ['select_5fall_5fact_5f_499',['select_all_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ac6a42e6e3af7e76f0bd2ecc62c9520cc',1,'GpgFrontend::UI::MainWindow']]],
- ['sequency_5f_500',['sequency_',['../classGpgFrontend_1_1Thread_1_1Task.html#a71ed097a2c4b4b735fd385dfe87e6f57',1,'GpgFrontend::Thread::Task']]],
- ['set_5fbackground_501',['set_background',['../classGpgFrontend_1_1UI_1_1FindWidget.html#a0c531f2c673caed29225a323e750205f',1,'GpgFrontend::UI::FindWidget']]],
- ['set_5floading_502',['set_loading',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ad4a75da57fa18bfcfaeb7fc601f1c8f6',1,'GpgFrontend::UI::KeyServerImportDialog']]],
- ['set_5fmessage_503',['set_message',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ab93fbf5e0626bffe398f5baa2bc00b1a',1,'GpgFrontend::UI::KeyServerImportDialog']]],
- ['set_5fsignal_5fslot_504',['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_505',['set_status',['../classGpgFrontend_1_1GpgResultAnalyse.html#a7f13592b421c7b0d3853f15cece8d195',1,'GpgFrontend::GpgResultAnalyse']]],
- ['setalgo_506',['SetAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#adcd9c4f3e75f989810988e0bc81d401f',1,'GpgFrontend::GenKeyInfo']]],
- ['setallowauthentication_507',['SetAllowAuthentication',['../classGpgFrontend_1_1GenKeyInfo.html#aac51d251682ed1bc1090416ebfeba4de',1,'GpgFrontend::GenKeyInfo']]],
- ['setallowcertification_508',['SetAllowCertification',['../classGpgFrontend_1_1GenKeyInfo.html#ac5f52f74566618c71a29bdc5e70fce2e',1,'GpgFrontend::GenKeyInfo']]],
- ['setallowencryption_509',['SetAllowEncryption',['../classGpgFrontend_1_1GenKeyInfo.html#a965014232f6de22c6d33320231ca4454',1,'GpgFrontend::GenKeyInfo']]],
- ['setallowsigning_510',['SetAllowSigning',['../classGpgFrontend_1_1GenKeyInfo.html#a1a01518b24d40d95e187ef73f4dcd52a',1,'GpgFrontend::GenKeyInfo']]],
- ['setchannel_511',['SetChannel',['../classGpgFrontend_1_1ChannelObject.html#aa3b19cad6d873b314bba32a3dae85f09',1,'GpgFrontend::ChannelObject']]],
- ['setchecked_512',['SetChecked',['../structGpgFrontend_1_1UI_1_1KeyTable.html#ae0713ebbc21e78995db9a856d746fe6c',1,'GpgFrontend::UI::KeyTable::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)']]],
- ['setcolumnwidth_513',['SetColumnWidth',['../classGpgFrontend_1_1UI_1_1KeyList.html#aab3f4facfc850e7eeb917571ca89f4a5',1,'GpgFrontend::UI::KeyList']]],
- ['setcomment_514',['SetComment',['../classGpgFrontend_1_1GenKeyInfo.html#a947886456f5699241b1c1b9332e4b29e',1,'GpgFrontend::GenKeyInfo']]],
- ['setcryptomenustatus_515',['SetCryptoMenuStatus',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a85a98a1ec5418c110201980fa013d1fd',1,'GpgFrontend::UI::MainWindow']]],
- ['setdoubleclickedaction_516',['SetDoubleClickedAction',['../classGpgFrontend_1_1UI_1_1KeyList.html#a7d75246eee6368be295c9ab5fe5ef291',1,'GpgFrontend::UI::KeyList']]],
- ['setemail_517',['SetEmail',['../classGpgFrontend_1_1GenKeyInfo.html#a656c81d56f77350184f9a94db1a3ce05',1,'GpgFrontend::GenKeyInfo']]],
- ['setexpire_518',['SetExpire',['../classGpgFrontend_1_1GpgKeyManager.html#a1625abfbff168c476e76fa9425a6c37d',1,'GpgFrontend::GpgKeyManager::SetExpire()'],['../classGpgFrontend_1_1GpgKeyOpera.html#a12e6b05b23781861065d7e3243c9349e',1,'GpgFrontend::GpgKeyOpera::SetExpire()']]],
- ['setexpiretime_519',['SetExpireTime',['../classGpgFrontend_1_1GenKeyInfo.html#aa3bfeda7fc7c83dc8d48ee2b80780c3a',1,'GpgFrontend::GenKeyInfo']]],
- ['setfilepath_520',['SetFilePath',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aa9e82690824c82e7628ba4ace9d6e2fe',1,'GpgFrontend::UI::PlainTextEditorPage']]],
- ['setfinishafterrun_521',['SetFinishAfterRun',['../classGpgFrontend_1_1Thread_1_1Task.html#a689969e7d88ba7ad73a693a1b38aedd7',1,'GpgFrontend::Thread::Task']]],
- ['setinfoboard_522',['SetInfoBoard',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#ac936cfc8e1b3af65d0d71b74fb3f0b02',1,'GpgFrontend::UI::InfoBoardWidget']]],
- ['setissubkey_523',['SetIsSubKey',['../classGpgFrontend_1_1GenKeyInfo.html#acd9f7742b739e1db60bd50489690dec1',1,'GpgFrontend::GenKeyInfo']]],
- ['setkeylength_524',['SetKeyLength',['../classGpgFrontend_1_1GenKeyInfo.html#ae744395012e4dcb9734ad5a30aa8ed75',1,'GpgFrontend::GenKeyInfo']]],
- ['setname_525',['SetName',['../classGpgFrontend_1_1GenKeyInfo.html#a65ebc487e0e64c325f65474c812615f7',1,'GpgFrontend::GenKeyInfo']]],
- ['setnonexpired_526',['SetNonExpired',['../classGpgFrontend_1_1GenKeyInfo.html#aea247381c21896f5371bb813ca665329',1,'GpgFrontend::GenKeyInfo']]],
- ['setnonpassphrase_527',['SetNonPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#a864407216cbdbef9e7b35e6be694d3ef',1,'GpgFrontend::GenKeyInfo']]],
- ['setobjectinchannel_528',['SetObjectInChannel',['../classGpgFrontend_1_1SingletonStorage.html#ab0097bb648b2303d68a975c7cbea5a52',1,'GpgFrontend::SingletonStorage']]],
- ['setpassphrase_529',['SetPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#afe1760d4ead397f6096925290a38e1a4',1,'GpgFrontend::GenKeyInfo']]],
- ['setpassphrasecb_530',['SetPassphraseCb',['../classGpgFrontend_1_1GpgContext.html#a3399fc60086ff5010a089bff48bbc63c',1,'GpgFrontend::GpgContext']]],
- ['setprimaryuid_531',['SetPrimaryUID',['../classGpgFrontend_1_1GpgUIDOperator.html#acbdabec97df508382b0c9b1fffbf1dd5',1,'GpgFrontend::GpgUIDOperator']]],
- ['setrtn_532',['SetRTN',['../classGpgFrontend_1_1Thread_1_1Task.html#aa6d702417bdd6a88c447ed6a457fa098',1,'GpgFrontend::Thread::Task']]],
- ['setsettings_533',['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()']]],
- ['setsigners_534',['SetSigners',['../classGpgFrontend_1_1GpgBasicOperator.html#ad6ea3596ba7d7543fb1b8233d09996df',1,'GpgFrontend::GpgBasicOperator']]],
- ['settempcachevalue_535',['SetTempCacheValue',['../classGpgFrontend_1_1CoreCommonUtil.html#a62bb080c6c04970fd2e02a460ea91d2a',1,'GpgFrontend::CoreCommonUtil']]],
- ['settingsdialog_536',['SettingsDialog',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html',1,'GpgFrontend::UI::SettingsDialog'],['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#a1b7ddc7861d1b4b9dc3810ed98023ffc',1,'GpgFrontend::UI::SettingsDialog::SettingsDialog()']]],
- ['settingsobject_537',['SettingsObject',['../classGpgFrontend_1_1UI_1_1SettingsObject.html',1,'GpgFrontend::UI::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_5fkey_5fdetails_5fact_5f_538',['show_key_details_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#acd41722ceedd20973b7d83852fab407b',1,'GpgFrontend::UI::MainWindow']]],
- ['show_5fverify_5fdetails_539',['show_verify_details',['../namespaceGpgFrontend_1_1UI.html#a590a26051105940a6d6e0743b147e281',1,'GpgFrontend::UI']]],
- ['showevent_540',['showEvent',['../classGpgFrontend_1_1UI_1_1AboutDialog.html#ab799cd5e07b06a8e953d72105c0a1083',1,'GpgFrontend::UI::AboutDialog']]],
- ['shownotificationwidget_541',['ShowNotificationWidget',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#af5dfdfd48ef64cc46e524ec70a22fe3a',1,'GpgFrontend::UI::PlainTextEditorPage']]],
- ['sign_542',['Sign',['../classGpgFrontend_1_1GpgBasicOperator.html#a988d7e65e85fc7a578f26300332a65d3',1,'GpgFrontend::GpgBasicOperator']]],
- ['sign_5fact_5f_543',['sign_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0cded37ef6e07856bbe439b0e90db839',1,'GpgFrontend::UI::MainWindow']]],
- ['sign_5fmarked_5f_544',['sign_marked_',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a4f94e9ef7889a169bda5a47b7f657358',1,'GpgFrontend::UI::PlainTextEditorPage']]],
- ['signaldeeprestartneeded_545',['SignalDeepRestartNeeded',['../classGpgFrontend_1_1UI_1_1GeneralTab.html#afc107d56f13000aa28436a5e26a0876b',1,'GpgFrontend::UI::GeneralTab']]],
- ['signalkeydatabaserefreshdone_546',['SignalKeyDatabaseRefreshDone',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a1abc83bba95579aa94d0870181991a28',1,'GpgFrontend::UI::CommonUtils']]],
- ['signalkeyserverimportresult_547',['SignalKeyServerImportResult',['../classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a6b2c07d193fb28a57b1738fa493b2b3f',1,'GpgFrontend::UI::KeyServerImportTask']]],
- ['signalkeyserverlisttestresult_548',['SignalKeyServerListTestResult',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a20f0147d670be7ab5c9d3051a900f508',1,'GpgFrontend::UI::ListedKeyServerTestTask']]],
- ['signalkeyserversearchresult_549',['SignalKeyServerSearchResult',['../classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#ae478130476c95a8b220c3b0e6a7b88b4',1,'GpgFrontend::UI::KeyServerSearchTask']]],
- ['signalopenhelp_550',['SignalOpenHelp',['../classGpgFrontend_1_1UI_1_1Wizard.html#a8b5f5ddb1e6470cbf6c87cc6400031fb',1,'GpgFrontend::UI::Wizard']]],
- ['signalpathchanged_551',['SignalPathChanged',['../classGpgFrontend_1_1UI_1_1FilePage.html#aec462d16a2097024a4ced24012b905a7',1,'GpgFrontend::UI::FilePage']]],
- ['signalproxyconnectiontestresult_552',['SignalProxyConnectionTestResult',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.html#aedafa7b22e024be537658fd8096e5f6f',1,'GpgFrontend::UI::ProxyConnectionTestThread']]],
- ['signalrefreshinfoboard_553',['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_554',['SignalRefreshStatusBar',['../classGpgFrontend_1_1UI_1_1SignalStation.html#a7b5fb2e2c0ad238313650a08ea648ce3',1,'GpgFrontend::UI::SignalStation::SignalRefreshStatusBar()'],['../classGpgFrontend_1_1UI_1_1KeyList.html#a947f4ce45285b58bbde94f4ae879ff7a',1,'GpgFrontend::UI::KeyList::SignalRefreshStatusBar()']]],
- ['signalreplyfromupdateserver_555',['SignalReplyFromUpdateServer',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a5e752e01539ccfdc6bbe41a404ddaa95',1,'GpgFrontend::UI::UpdateTab']]],
- ['signalrestartneeded_556',['SignalRestartNeeded',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#af5ba6646af45d0d1d794bc52ee54b1b9',1,'GpgFrontend::UI::SettingsDialog::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1GeneralTab.html#aa88ccbda61728be6de0aa2d9b92e0b69',1,'GpgFrontend::UI::GeneralTab::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#a26449a77844d9db69a543ff88f10e347',1,'GpgFrontend::UI::KeyserverTab::SignalRestartNeeded()']]],
- ['signalrestartneeded_557',['signalRestartNeeded',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html#abff49b636449815a9ebff52f5c067712',1,'GpgFrontend::UI::AppearanceTab']]],
- ['signalstation_558',['SignalStation',['../classGpgFrontend_1_1UI_1_1SignalStation.html',1,'GpgFrontend::UI']]],
- ['signaltaskend_559',['SignalTaskEnd',['../classGpgFrontend_1_1Thread_1_1Task.html#abbbb68bcac48b6c31d6fe8ee1572f151',1,'GpgFrontend::Thread::Task']]],
- ['signaltaskrunnableend_560',['SignalTaskRunnableEnd',['../classGpgFrontend_1_1Thread_1_1Task.html#a125b7e71f21dadf10618e30ee0386b12',1,'GpgFrontend::Thread::Task']]],
- ['signaluibytesdisplayed_561',['SignalUIBytesDisplayed',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#afd3749488fdd3d1c53446fb8c833f3f4',1,'GpgFrontend::UI::PlainTextEditorPage']]],
- ['signalupgradeversion_562',['SignalUpgradeVersion',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a36c5597674253348477d78ad6af380ab',1,'GpgFrontend::UI::VersionCheckTask']]],
- ['signaturedetailsdialog_563',['SignatureDetailsDialog',['../classSignatureDetailsDialog.html',1,'']]],
- ['signerspicker_564',['SignersPicker',['../classGpgFrontend_1_1UI_1_1SignersPicker.html',1,'GpgFrontend::UI::SignersPicker'],['../classGpgFrontend_1_1UI_1_1SignersPicker.html#a02c3ba737702894fc6d4ac1a1c543ccb',1,'GpgFrontend::UI::SignersPicker::SignersPicker()']]],
- ['signfile_565',['SignFile',['../classGpgFrontend_1_1GpgFileOpera.html#a350df1c07c054625c4755a78e6ca5ca8',1,'GpgFrontend::GpgFileOpera']]],
- ['signkey_566',['SignKey',['../classGpgFrontend_1_1GpgKeyManager.html#a12138780c53add7589f78f056019e5e0',1,'GpgFrontend::GpgKeyManager']]],
- ['singletonfunctionobject_567',['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_568',['SingletonFunctionObject< DataObjectOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]],
- ['singletonfunctionobject_3c_20globalsettingstation_20_3e_569',['SingletonFunctionObject< GlobalSettingStation >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]],
- ['singletonfunctionobject_3c_20gpgadvancedoperator_20_3e_570',['SingletonFunctionObject< GpgAdvancedOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]],
- ['singletonfunctionobject_3c_20gpgbasicoperator_20_3e_571',['SingletonFunctionObject< GpgBasicOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]],
- ['singletonfunctionobject_3c_20gpgcommandexecutor_20_3e_572',['SingletonFunctionObject< GpgCommandExecutor >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]],
- ['singletonfunctionobject_3c_20gpgcontext_20_3e_573',['SingletonFunctionObject< GpgContext >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]],
- ['singletonfunctionobject_3c_20gpgfileopera_20_3e_574',['SingletonFunctionObject< GpgFileOpera >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]],
- ['singletonfunctionobject_3c_20gpgkeygetter_20_3e_575',['SingletonFunctionObject< GpgKeyGetter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]],
- ['singletonfunctionobject_3c_20gpgkeyimportexporter_20_3e_576',['SingletonFunctionObject< GpgKeyImportExporter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]],
- ['singletonfunctionobject_3c_20gpgkeymanager_20_3e_577',['SingletonFunctionObject< GpgKeyManager >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]],
- ['singletonfunctionobject_3c_20gpgkeyopera_20_3e_578',['SingletonFunctionObject< GpgKeyOpera >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]],
- ['singletonfunctionobject_3c_20gpguidoperator_20_3e_579',['SingletonFunctionObject< GpgUIDOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]],
- ['singletonfunctionobject_3c_20passphrasegenerator_20_3e_580',['SingletonFunctionObject< PassphraseGenerator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]],
- ['singletonfunctionobject_3c_20taskrunnergetter_20_3e_581',['SingletonFunctionObject< TaskRunnerGetter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]],
- ['singletonstorage_582',['SingletonStorage',['../classGpgFrontend_1_1SingletonStorage.html',1,'GpgFrontend']]],
- ['singletonstoragecollection_583',['SingletonStorageCollection',['../classGpgFrontend_1_1SingletonStorageCollection.html',1,'GpgFrontend']]],
- ['slot_5factivated_5fkey_5ftype_584',['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_585',['slot_add_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a821247d738457c4ee046162aad6728f9',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fadd_5fuid_5fresult_586',['slot_add_uid_result',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a16f1ae88d6a417b614cfc6ae1852187c',1,'GpgFrontend::UI::KeyPairUIDTab']]],
- ['slot_5fappend_5fselected_5fkeys_587',['slot_append_selected_keys',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a76bf3784d751db78ed13bd9962e14472',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fauthentication_5fbox_5fchanged_588',['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_589',['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_590',['slot_clean_double_line_breaks',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aea9274389c3b049793fe5aa5a6adf63c',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fcompress_5ffiles_591',['slot_compress_files',['../classGpgFrontend_1_1UI_1_1FilePage.html#a250b1950f874c1d11549cd5c0ea9693f',1,'GpgFrontend::UI::FilePage']]],
- ['slot_5fcopy_5ffingerprint_592',['slot_copy_fingerprint',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#af8b600fbd7cd0fbb5b6183403bf870b2',1,'GpgFrontend::UI::KeyPairDetailTab']]],
- ['slot_5fcopy_5fmail_5faddress_5fto_5fclipboard_593',['slot_copy_mail_address_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af93d72eaf58326f1f9e926752c6b1fc6',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fcreate_5fnew_5fuid_594',['slot_create_new_uid',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a4e115ce46a85c2f9e4e0e2427839fc7c',1,'GpgFrontend::UI::KeyNewUIDDialog']]],
- ['slot_5fcut_5fpgp_5fheader_595',['slot_cut_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7f5a88922d06bee977335fb4b5f1d86d',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fdecrypt_596',['slot_decrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae2d89e2cc6c99ff0e16b396d2381f904',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fdecrypt_5fverify_597',['slot_decrypt_verify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1d61ea803e6c825bd54f42ba9ae85919',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fdisable_5ftab_5factions_598',['slot_disable_tab_actions',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a24a0b0d974fc5f8fdda60c128a82d957',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fdouble_5fclicked_599',['slot_double_clicked',['../classGpgFrontend_1_1UI_1_1KeyList.html#a69e54f06d546d516a0dcdf1055b8028e',1,'GpgFrontend::UI::KeyList']]],
- ['slot_5fencrypt_600',['slot_encrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae11d01211c2914ecc148e13dd7de506e',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fencrypt_5fsign_601',['slot_encrypt_sign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a304efe91afa31b32725caa00c27475a4',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fencryption_5fbox_5fchanged_602',['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_603',['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_604',['slot_export_private_key',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a384f4250e58110da58c0e6996b42a8ab',1,'GpgFrontend::UI::KeyPairOperaTab']]],
- ['slot_5ffile_5ftree_5fview_5fitem_5fclicked_605',['slot_file_tree_view_item_clicked',['../classGpgFrontend_1_1UI_1_1FilePage.html#a676917817d6f519e043742d1d87f97f1',1,'GpgFrontend::UI::FilePage']]],
- ['slot_5ffile_5ftree_5fview_5fitem_5fdouble_5fclicked_606',['slot_file_tree_view_item_double_clicked',['../classGpgFrontend_1_1UI_1_1FilePage.html#ad3c54320bdafbbb2c06a20d6c7dea9d6',1,'GpgFrontend::UI::FilePage']]],
- ['slot_5ffind_607',['slot_find',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae28089efbd236708601470f30f26faaa',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fformat_5fgpg_5fheader_608',['slot_format_gpg_header',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a45267bcfc8fc83851894061c0fe2a9c2',1,'GpgFrontend::UI::PlainTextEditorPage']]],
- ['slot_5fimport_609',['slot_import',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ac9c14bbc97945c94fd02c8e067ccab06',1,'GpgFrontend::UI::KeyServerImportDialog']]],
- ['slot_5fimport_5ffinished_610',['slot_import_finished',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a6f1c5238da7cd6f117bed8018469b37a',1,'GpgFrontend::UI::KeyServerImportDialog']]],
- ['slot_5fimport_5fkey_5ffrom_5fedit_611',['slot_import_key_from_edit',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a55926649e28a96318b89afba01b966bf',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5finsert_5ftext_612',['slot_insert_text',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a184985104f23da8fdf2b9aaf7b27405b',1,'GpgFrontend::UI::PlainTextEditorPage']]],
- ['slot_5fjump_5fpage_613',['slot_jump_page',['../classGpgFrontend_1_1UI_1_1ChoosePage.html#af0d7890fe65385b7785719b9cff0718b',1,'GpgFrontend::UI::ChoosePage']]],
- ['slot_5fkey_5fgen_5faccept_614',['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_615',['slot_non_expired_checked',['../classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#adde2b33bd17f521f0630702987b1d274',1,'GpgFrontend::UI::KeySetExpireDateDialog']]],
- ['slot_5fopen_5ffile_5ftab_616',['slot_open_file_tab',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a29a811d4d440c79c1bd2cc2bb40cdf7e',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fopen_5fkey_5fmanagement_617',['slot_open_key_management',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a16ddebec90a4bd0d13baa9d972c3445f',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fopen_5fsettings_5fdialog_618',['slot_open_settings_dialog',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a874b505fbc1046f579a736683f5a7f65',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fopen_5furl_619',['slot_open_url',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a51ff99077a75507365307f5dd783df99',1,'GpgFrontend::UI::HelpPage']]],
- ['slot_5fprocess_5fnetwork_5freply_620',['slot_process_network_reply',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#af9350e0a8d5993e5be0a5478fcb161be',1,'GpgFrontend::UI::ListedKeyServerTestTask']]],
- ['slot_5fremove_5ftab_621',['slot_remove_tab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a12f65fbc4984c266a5df4505ecde7c42',1,'GpgFrontend::UI::TextEdit']]],
- ['slot_5fsave_5fstatus_5fto_5fcache_5ffor_5frevovery_622',['slot_save_status_to_cache_for_revovery',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a1bf57ebe1e32b12c48bb633b7dd7a4f1',1,'GpgFrontend::UI::TextEdit']]],
- ['slot_5fset_5frestart_5fneeded_623',['slot_set_restart_needed',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#acc6b4386de554fce6fbb60ac6d201952',1,'GpgFrontend::UI::SettingsDialog']]],
- ['slot_5fshow_5fkey_5fdetails_624',['slot_show_key_details',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a033d448541b44fa48b76dec828a4eb0e',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fshow_5fversion_5fstatus_625',['slot_show_version_status',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a1003bd969ecbc5deba940e39436968f4',1,'GpgFrontend::UI::UpdateTab']]],
- ['slot_5fsign_626',['slot_sign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3f3d03b0ec22385bee559fbd2aeb881b',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fsign_5fkey_627',['slot_sign_key',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#a82f6bf641ff3b64341a0bdcf76571c43',1,'GpgFrontend::UI::KeyUIDSignDialog']]],
- ['slot_5fsigning_5fbox_5fchanged_628',['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_629',['slot_start_wizard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aabf3ddf6b624790369f164b4889c95be',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fupdate_5fkey_5fstatus_630',['slot_update_key_status',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#ab4ac26378d6a07757720163eb4b1cb0e',1,'GpgFrontend::UI::CommonUtils']]],
- ['slot_5fupload_5fkey_5fto_5fserver_631',['slot_upload_key_to_server',['../classGpgFrontend_1_1UI_1_1KeyUploadDialog.html#a0f724649ca953b888f07d69c97fe45b6',1,'GpgFrontend::UI::KeyUploadDialog']]],
- ['slot_5fverify_632',['slot_verify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa9c986dd95984811479ea93230c74b5d',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fversion_5fupgrade_633',['slot_version_upgrade',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a48368c77af7b1f4cb632870b8d914a28',1,'GpgFrontend::UI::MainWindow']]],
- ['slotclosetab_634',['SlotCloseTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa21659aa7acba98dfd6286d69e00ab9b',1,'GpgFrontend::UI::TextEdit']]],
- ['slotcopy_635',['SlotCopy',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3599bd01636a873cf3437ab6b9d38780',1,'GpgFrontend::UI::TextEdit']]],
- ['slotcurpagefiletreeview_636',['SlotCurPageFileTreeView',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a72014409d407c161b048e07c061b4cf9',1,'GpgFrontend::UI::TextEdit']]],
- ['slotcurpagetextedit_637',['SlotCurPageTextEdit',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a48351dc1529da3b8da311f65b735b5f1',1,'GpgFrontend::UI::TextEdit']]],
- ['slotcut_638',['SlotCut',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae1e710c6722910b8d35df97aaabb3162',1,'GpgFrontend::UI::TextEdit']]],
- ['slotexecutecommand_639',['SlotExecuteCommand',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a95cd625a2e0e74ee4d564843c6d16791',1,'GpgFrontend::UI::CommonUtils']]],
- ['slotexecutegpgcommand_640',['SlotExecuteGpgCommand',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#afc845c1c37487c99f78d8e66f6874f6d',1,'GpgFrontend::UI::CommonUtils']]],
- ['slotfiledecrypt_641',['SlotFileDecrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0a6d0618f2835a6dcae707a4ca770a48',1,'GpgFrontend::UI::MainWindow']]],
- ['slotfiledecryptverify_642',['SlotFileDecryptVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab23c7e67dd1f5295b3c49ad79dfd5919',1,'GpgFrontend::UI::MainWindow']]],
- ['slotfileencrypt_643',['SlotFileEncrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9ec699536a35a37961a8c6da1e231ae3',1,'GpgFrontend::UI::MainWindow']]],
- ['slotfileencryptsign_644',['SlotFileEncryptSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a25a2e4017d77cffc8362bde9606fad30',1,'GpgFrontend::UI::MainWindow']]],
- ['slotfilesign_645',['SlotFileSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8bcdcbe678b8dc0837fffda2ebfe79bf',1,'GpgFrontend::UI::MainWindow']]],
- ['slotfileverify_646',['SlotFileVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9879061cfd321c6757c77f75d46dc7d8',1,'GpgFrontend::UI::MainWindow']]],
- ['slotfilltexteditwithtext_647',['SlotFillTextEditWithText',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af466ec2b8ab3f695d206efc0574bbe20',1,'GpgFrontend::UI::TextEdit']]],
- ['slotimport_648',['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_649',['SlotImportKeyFromClipboard',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a0c8bf56fc5371cd2c5e9d2a0f67bf72a',1,'GpgFrontend::UI::CommonUtils']]],
- ['slotimportkeyfromfile_650',['SlotImportKeyFromFile',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a057526790f6b2f6288c3a35322c34d8d',1,'GpgFrontend::UI::CommonUtils']]],
- ['slotimportkeyfromkeyserver_651',['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_652',['SlotImportKeys',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a3bc26cc1e0f00f0ce2f95c0b6c8778d8',1,'GpgFrontend::UI::CommonUtils']]],
- ['slotnewfiletab_653',['SlotNewFileTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae22ecadf31648f424eb8ab86bd28ef39',1,'GpgFrontend::UI::TextEdit']]],
- ['slotnewhelptab_654',['slotNewHelpTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3c17fdf3abf9c4fb6ce35cfb8f0f8fc4',1,'GpgFrontend::UI::TextEdit']]],
- ['slotnewtab_655',['SlotNewTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a57a46ab5595622ae0b7bceef7d56bd7c',1,'GpgFrontend::UI::TextEdit']]],
- ['slotopen_656',['SlotOpen',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a15335d38187ddf580b7200d856768cfb',1,'GpgFrontend::UI::TextEdit']]],
- ['slotopenfile_657',['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_658',['SlotPaste',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa2230418dc8f72c400f5a90082a983c9',1,'GpgFrontend::UI::TextEdit']]],
- ['slotprint_659',['SlotPrint',['../classGpgFrontend_1_1UI_1_1TextEdit.html#adca2bbfa746b5598f2a4f74026b84224',1,'GpgFrontend::UI::TextEdit']]],
- ['slotquote_660',['SlotQuote',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6a02fce9dc4039c982d6dd19231517ee',1,'GpgFrontend::UI::TextEdit']]],
- ['slotredo_661',['SlotRedo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae2b3bf422789d56087face98b6a9e929',1,'GpgFrontend::UI::TextEdit']]],
- ['slotrefresh_662',['SlotRefresh',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a68f984815100f4ce281b9794f193e516',1,'GpgFrontend::UI::InfoBoardWidget']]],
- ['slotsave_663',['SlotSave',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ace0b8f4c161db9f4f5db5ecbfd7a91c0',1,'GpgFrontend::UI::TextEdit']]],
- ['slotsaveas_664',['SlotSaveAs',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a02fa44ba0c56f3f6ae125f8490faf254',1,'GpgFrontend::UI::TextEdit']]],
- ['slotselectall_665',['SlotSelectAll',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6c814253dfc061bfdae0fa71c6196c55',1,'GpgFrontend::UI::TextEdit']]],
- ['slotsetrestartneeded_666',['SlotSetRestartNeeded',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a276e843e2f5eda8934fb350fb6f89327',1,'GpgFrontend::UI::MainWindow']]],
- ['slotshowmodified_667',['SlotShowModified',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ab24adc1adb3b9b29469992e4c444436e',1,'GpgFrontend::UI::TextEdit']]],
- ['slotswitchtabdown_668',['SlotSwitchTabDown',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a576e06390e65576465297d2ab8d7d474',1,'GpgFrontend::UI::TextEdit']]],
- ['slotswitchtabup_669',['SlotSwitchTabUp',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af1e364b513f566c743a5d36c19098762',1,'GpgFrontend::UI::TextEdit']]],
- ['slotundo_670',['SlotUndo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a4a81e69f6dc74ea649ca9a2358342fd5',1,'GpgFrontend::UI::TextEdit']]],
- ['softwareversion_671',['SoftwareVersion',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html',1,'GpgFrontend::UI']]],
- ['special_5fedit_5ftool_5fbar_5f_672',['special_edit_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af2b3e3a0e9894633e1839df289f5ffe0',1,'GpgFrontend::UI::MainWindow']]],
- ['start_5fwizard_5fact_5f_673',['start_wizard_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab0019ca316b971c594c2f20f418256a6',1,'GpgFrontend::UI::MainWindow']]],
- ['startdirmngr_674',['StartDirmngr',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a46085a11235894deccd312fc259d5078',1,'GpgFrontend::GpgAdvancedOperator']]],
- ['startgpgagent_675',['StartGpgAgent',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a07c32ba25cf6153fbc8ee585c4ba377c',1,'GpgFrontend::GpgAdvancedOperator']]],
- ['startkeyboxd_676',['StartKeyBoxd',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a9313410359ed9cff9ee66fa9b4b095ee',1,'GpgFrontend::GpgAdvancedOperator']]],
- ['steganography_5fmenu_5f_677',['steganography_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af763a506aed7d0fb2125d1859583b853',1,'GpgFrontend::UI::MainWindow']]],
- ['storages_5fmutex_5f_678',['storages_mutex_',['../classGpgFrontend_1_1SingletonStorageCollection.html#ab648cb257beb2475eb5fca6453c331f9',1,'GpgFrontend::SingletonStorageCollection']]],
- ['stripped_5fname_679',['stripped_name',['../classGpgFrontend_1_1UI_1_1TextEdit.html#afb9b7a7d88154d774b3d727d8e640cbb',1,'GpgFrontend::UI::TextEdit']]],
- ['subkeygeneratedialog_680',['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_681',['switch_tab_down_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a88af746cd550792ab6095d2ebbd29b41',1,'GpgFrontend::UI::MainWindow']]],
- ['switch_5ftab_5fup_5fact_5f_682',['switch_tab_up_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8d5ce6514ef3fa8ac3223176f5fa2701',1,'GpgFrontend::UI::MainWindow']]],
- ['switch_5fui_5fenabled_683',['switch_ui_enabled',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#ae3d97948f205e84f0604d4da634a4513',1,'GpgFrontend::UI::NetworkTab']]],
- ['switch_5fui_5fproxy_5ftype_684',['switch_ui_proxy_type',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#a1b0297158f13daec77645c88e5a8adcd',1,'GpgFrontend::UI::NetworkTab']]],
- ['syncsettings_685',['SyncSettings',['../classGpgFrontend_1_1GlobalSettingStation.html#ac061ac8e5308f67ea52b98888bbb2e8d',1,'GpgFrontend::GlobalSettingStation']]]
+ ['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']]],
+ ['set_5floading_505',['set_loading',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ad4a75da57fa18bfcfaeb7fc601f1c8f6',1,'GpgFrontend::UI::KeyServerImportDialog']]],
+ ['set_5fmessage_506',['set_message',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ab93fbf5e0626bffe398f5baa2bc00b1a',1,'GpgFrontend::UI::KeyServerImportDialog']]],
+ ['set_5fsignal_5fslot_507',['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_508',['set_status',['../classGpgFrontend_1_1GpgResultAnalyse.html#a7f13592b421c7b0d3853f15cece8d195',1,'GpgFrontend::GpgResultAnalyse']]],
+ ['setalgo_509',['SetAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#adcd9c4f3e75f989810988e0bc81d401f',1,'GpgFrontend::GenKeyInfo']]],
+ ['setallowauthentication_510',['SetAllowAuthentication',['../classGpgFrontend_1_1GenKeyInfo.html#aac51d251682ed1bc1090416ebfeba4de',1,'GpgFrontend::GenKeyInfo']]],
+ ['setallowcertification_511',['SetAllowCertification',['../classGpgFrontend_1_1GenKeyInfo.html#ac5f52f74566618c71a29bdc5e70fce2e',1,'GpgFrontend::GenKeyInfo']]],
+ ['setallowencryption_512',['SetAllowEncryption',['../classGpgFrontend_1_1GenKeyInfo.html#a965014232f6de22c6d33320231ca4454',1,'GpgFrontend::GenKeyInfo']]],
+ ['setallowsigning_513',['SetAllowSigning',['../classGpgFrontend_1_1GenKeyInfo.html#a1a01518b24d40d95e187ef73f4dcd52a',1,'GpgFrontend::GenKeyInfo']]],
+ ['setchannel_514',['SetChannel',['../classGpgFrontend_1_1ChannelObject.html#aa3b19cad6d873b314bba32a3dae85f09',1,'GpgFrontend::ChannelObject']]],
+ ['setchecked_515',['SetChecked',['../structGpgFrontend_1_1UI_1_1KeyTable.html#ae0713ebbc21e78995db9a856d746fe6c',1,'GpgFrontend::UI::KeyTable::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)']]],
+ ['setcolumnwidth_516',['SetColumnWidth',['../classGpgFrontend_1_1UI_1_1KeyList.html#aab3f4facfc850e7eeb917571ca89f4a5',1,'GpgFrontend::UI::KeyList']]],
+ ['setcomment_517',['SetComment',['../classGpgFrontend_1_1GenKeyInfo.html#a947886456f5699241b1c1b9332e4b29e',1,'GpgFrontend::GenKeyInfo']]],
+ ['setcryptomenustatus_518',['SetCryptoMenuStatus',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a85a98a1ec5418c110201980fa013d1fd',1,'GpgFrontend::UI::MainWindow']]],
+ ['setdoubleclickedaction_519',['SetDoubleClickedAction',['../classGpgFrontend_1_1UI_1_1KeyList.html#a7d75246eee6368be295c9ab5fe5ef291',1,'GpgFrontend::UI::KeyList']]],
+ ['setemail_520',['SetEmail',['../classGpgFrontend_1_1GenKeyInfo.html#a656c81d56f77350184f9a94db1a3ce05',1,'GpgFrontend::GenKeyInfo']]],
+ ['setexpire_521',['SetExpire',['../classGpgFrontend_1_1GpgKeyManager.html#a1625abfbff168c476e76fa9425a6c37d',1,'GpgFrontend::GpgKeyManager::SetExpire()'],['../classGpgFrontend_1_1GpgKeyOpera.html#a12e6b05b23781861065d7e3243c9349e',1,'GpgFrontend::GpgKeyOpera::SetExpire()']]],
+ ['setexpiretime_522',['SetExpireTime',['../classGpgFrontend_1_1GenKeyInfo.html#aa3bfeda7fc7c83dc8d48ee2b80780c3a',1,'GpgFrontend::GenKeyInfo']]],
+ ['setfilepath_523',['SetFilePath',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aa9e82690824c82e7628ba4ace9d6e2fe',1,'GpgFrontend::UI::PlainTextEditorPage']]],
+ ['setfinishafterrun_524',['SetFinishAfterRun',['../classGpgFrontend_1_1Thread_1_1Task.html#a689969e7d88ba7ad73a693a1b38aedd7',1,'GpgFrontend::Thread::Task']]],
+ ['setinfoboard_525',['SetInfoBoard',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#ac936cfc8e1b3af65d0d71b74fb3f0b02',1,'GpgFrontend::UI::InfoBoardWidget']]],
+ ['setissubkey_526',['SetIsSubKey',['../classGpgFrontend_1_1GenKeyInfo.html#acd9f7742b739e1db60bd50489690dec1',1,'GpgFrontend::GenKeyInfo']]],
+ ['setkeylength_527',['SetKeyLength',['../classGpgFrontend_1_1GenKeyInfo.html#ae744395012e4dcb9734ad5a30aa8ed75',1,'GpgFrontend::GenKeyInfo']]],
+ ['setname_528',['SetName',['../classGpgFrontend_1_1GenKeyInfo.html#a65ebc487e0e64c325f65474c812615f7',1,'GpgFrontend::GenKeyInfo']]],
+ ['setnonexpired_529',['SetNonExpired',['../classGpgFrontend_1_1GenKeyInfo.html#aea247381c21896f5371bb813ca665329',1,'GpgFrontend::GenKeyInfo']]],
+ ['setnonpassphrase_530',['SetNonPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#a864407216cbdbef9e7b35e6be694d3ef',1,'GpgFrontend::GenKeyInfo']]],
+ ['setobjectinchannel_531',['SetObjectInChannel',['../classGpgFrontend_1_1SingletonStorage.html#ab0097bb648b2303d68a975c7cbea5a52',1,'GpgFrontend::SingletonStorage']]],
+ ['setownertrustlevel_532',['SetOwnerTrustLevel',['../classGpgFrontend_1_1GpgKeyManager.html#a0d4006daeccd574ddcc9e6c621739c48',1,'GpgFrontend::GpgKeyManager']]],
+ ['setpassphrase_533',['SetPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#afe1760d4ead397f6096925290a38e1a4',1,'GpgFrontend::GenKeyInfo']]],
+ ['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_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()']]],
+ ['settingsobject_541',['SettingsObject',['../classGpgFrontend_1_1UI_1_1SettingsObject.html',1,'GpgFrontend::UI::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_5fkey_5fdetails_5fact_5f_542',['show_key_details_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#acd41722ceedd20973b7d83852fab407b',1,'GpgFrontend::UI::MainWindow']]],
+ ['show_5fverify_5fdetails_543',['show_verify_details',['../namespaceGpgFrontend_1_1UI.html#a590a26051105940a6d6e0743b147e281',1,'GpgFrontend::UI']]],
+ ['showevent_544',['showEvent',['../classGpgFrontend_1_1UI_1_1AboutDialog.html#ab799cd5e07b06a8e953d72105c0a1083',1,'GpgFrontend::UI::AboutDialog']]],
+ ['shownotificationwidget_545',['ShowNotificationWidget',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#af5dfdfd48ef64cc46e524ec70a22fe3a',1,'GpgFrontend::UI::PlainTextEditorPage']]],
+ ['sign_546',['Sign',['../classGpgFrontend_1_1GpgBasicOperator.html#a988d7e65e85fc7a578f26300332a65d3',1,'GpgFrontend::GpgBasicOperator']]],
+ ['sign_5fact_5f_547',['sign_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0cded37ef6e07856bbe439b0e90db839',1,'GpgFrontend::UI::MainWindow']]],
+ ['sign_5fmarked_5f_548',['sign_marked_',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a4f94e9ef7889a169bda5a47b7f657358',1,'GpgFrontend::UI::PlainTextEditorPage']]],
+ ['signaldeeprestartneeded_549',['SignalDeepRestartNeeded',['../classGpgFrontend_1_1UI_1_1GeneralTab.html#afc107d56f13000aa28436a5e26a0876b',1,'GpgFrontend::UI::GeneralTab']]],
+ ['signalkeydatabaserefreshdone_550',['SignalKeyDatabaseRefreshDone',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a1abc83bba95579aa94d0870181991a28',1,'GpgFrontend::UI::CommonUtils']]],
+ ['signalkeyserverimportresult_551',['SignalKeyServerImportResult',['../classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a6b2c07d193fb28a57b1738fa493b2b3f',1,'GpgFrontend::UI::KeyServerImportTask']]],
+ ['signalkeyserverlisttestresult_552',['SignalKeyServerListTestResult',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a20f0147d670be7ab5c9d3051a900f508',1,'GpgFrontend::UI::ListedKeyServerTestTask']]],
+ ['signalkeyserversearchresult_553',['SignalKeyServerSearchResult',['../classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#ae478130476c95a8b220c3b0e6a7b88b4',1,'GpgFrontend::UI::KeyServerSearchTask']]],
+ ['signalopenhelp_554',['SignalOpenHelp',['../classGpgFrontend_1_1UI_1_1Wizard.html#a8b5f5ddb1e6470cbf6c87cc6400031fb',1,'GpgFrontend::UI::Wizard']]],
+ ['signalpathchanged_555',['SignalPathChanged',['../classGpgFrontend_1_1UI_1_1FilePage.html#aec462d16a2097024a4ced24012b905a7',1,'GpgFrontend::UI::FilePage']]],
+ ['signalproxyconnectiontestresult_556',['SignalProxyConnectionTestResult',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask.html#a31cd14d72c6c28c811c9183f118f5873',1,'GpgFrontend::UI::ProxyConnectionTestTask']]],
+ ['signalrefreshinfoboard_557',['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_558',['SignalRefreshStatusBar',['../classGpgFrontend_1_1UI_1_1SignalStation.html#a7b5fb2e2c0ad238313650a08ea648ce3',1,'GpgFrontend::UI::SignalStation::SignalRefreshStatusBar()'],['../classGpgFrontend_1_1UI_1_1KeyList.html#a947f4ce45285b58bbde94f4ae879ff7a',1,'GpgFrontend::UI::KeyList::SignalRefreshStatusBar()']]],
+ ['signalreplyfromupdateserver_559',['SignalReplyFromUpdateServer',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a5e752e01539ccfdc6bbe41a404ddaa95',1,'GpgFrontend::UI::UpdateTab']]],
+ ['signalrestartneeded_560',['signalRestartNeeded',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html#abff49b636449815a9ebff52f5c067712',1,'GpgFrontend::UI::AppearanceTab']]],
+ ['signalrestartneeded_561',['SignalRestartNeeded',['../classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html#a35a707865fbcc95b6261e382a6ff171c',1,'GpgFrontend::UI::GnuPGControllerDialog::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#af5ba6646af45d0d1d794bc52ee54b1b9',1,'GpgFrontend::UI::SettingsDialog::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1GeneralTab.html#aa88ccbda61728be6de0aa2d9b92e0b69',1,'GpgFrontend::UI::GeneralTab::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#a26449a77844d9db69a543ff88f10e347',1,'GpgFrontend::UI::KeyserverTab::SignalRestartNeeded()']]],
+ ['signalstation_562',['SignalStation',['../classGpgFrontend_1_1UI_1_1SignalStation.html',1,'GpgFrontend::UI']]],
+ ['signaltaskend_563',['SignalTaskEnd',['../classGpgFrontend_1_1Thread_1_1Task.html#abbbb68bcac48b6c31d6fe8ee1572f151',1,'GpgFrontend::Thread::Task']]],
+ ['signaltaskrunnableend_564',['SignalTaskRunnableEnd',['../classGpgFrontend_1_1Thread_1_1Task.html#a125b7e71f21dadf10618e30ee0386b12',1,'GpgFrontend::Thread::Task']]],
+ ['signaluibytesdisplayed_565',['SignalUIBytesDisplayed',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#afd3749488fdd3d1c53446fb8c833f3f4',1,'GpgFrontend::UI::PlainTextEditorPage']]],
+ ['signalupgradeversion_566',['SignalUpgradeVersion',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a36c5597674253348477d78ad6af380ab',1,'GpgFrontend::UI::VersionCheckTask']]],
+ ['signaturedetailsdialog_567',['SignatureDetailsDialog',['../classSignatureDetailsDialog.html',1,'']]],
+ ['signerspicker_568',['SignersPicker',['../classGpgFrontend_1_1UI_1_1SignersPicker.html',1,'GpgFrontend::UI::SignersPicker'],['../classGpgFrontend_1_1UI_1_1SignersPicker.html#a02c3ba737702894fc6d4ac1a1c543ccb',1,'GpgFrontend::UI::SignersPicker::SignersPicker()']]],
+ ['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_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 49d5952c..3242b639 100644
--- a/docs/html/search/all_13.js
+++ b/docs/html/search/all_13.js
@@ -1,19 +1,21 @@
var searchData=
[
- ['tabcount_686',['TabCount',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a05c54658597b04c3976c72d3a5f9add9',1,'GpgFrontend::UI::TextEdit']]],
- ['takechargeofresult_687',['TakeChargeOfResult',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#acdb7839a5158f078b38d60f0fefc5155',1,'GpgFrontend::GpgVerifyResultAnalyse']]],
- ['task_688',['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_689',['TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html',1,'GpgFrontend::Thread::TaskRunner'],['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#ad3c8612cbe60112f9b14e616fb0a4acf',1,'GpgFrontend::Thread::TaskRunner::TaskRunner()']]],
- ['taskrunnergetter_690',['TaskRunnerGetter',['../classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html',1,'GpgFrontend::Thread::TaskRunnerGetter'],['../classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html#a80794d81179f66f4b4ed3122a64f27cf',1,'GpgFrontend::Thread::TaskRunnerGetter::TaskRunnerGetter()']]],
- ['tasks_691',['tasks',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a774775e9a91d33072b27dcf78cead6e2',1,'GpgFrontend::Thread::TaskRunner']]],
- ['tasks_5fmutex_5f_692',['tasks_mutex_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a5e72f1ce00d41c225a4304f1ed20b3f1',1,'GpgFrontend::Thread::TaskRunner']]],
- ['test_5fpassphrase_5fcb_693',['test_passphrase_cb',['../classGpgFrontend_1_1GpgContext.html#acc4234054002065dfbc5d5261a4950d4',1,'GpgFrontend::GpgContext']]],
- ['test_5fstatus_5fcb_694',['test_status_cb',['../classGpgFrontend_1_1GpgContext.html#a3844cd0966134939e5c4be9a725e5271',1,'GpgFrontend::GpgContext']]],
- ['testlistedkeyserverthread_695',['TestListedKeyServerThread',['../classTestListedKeyServerThread.html',1,'']]],
- ['text_5fis_5fsigned_696',['text_is_signed',['../namespaceGpgFrontend.html#a2a0394c8bdd277f5235f9875a1d69a99',1,'GpgFrontend']]],
- ['textedit_697',['TextEdit',['../classGpgFrontend_1_1UI_1_1TextEdit.html',1,'GpgFrontend::UI']]],
- ['thread_5fpool_5f_698',['thread_pool_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a2bdc321dd0732ba7a72499b2dc12f7c9',1,'GpgFrontend::Thread::TaskRunner']]],
- ['tofuinfopage_699',['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_700',['translate_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adbac799672c43c90810366825d837e4e',1,'GpgFrontend::UI::MainWindow']]],
- ['translatorstab_701',['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 b3c8ba18..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_702',['ui_cfg_',['../classGpgFrontend_1_1GlobalSettingStation.html#a1818e08063d6a886975f77354fc5d85c',1,'GpgFrontend::GlobalSettingStation']]],
- ['ui_5fconfig_5fdir_5fpath_5f_703',['ui_config_dir_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#ab618fef68cfd4ff6e42d4a4aa8ea94bb',1,'GpgFrontend::GlobalSettingStation']]],
- ['ui_5fconfig_5fpath_5f_704',['ui_config_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#afa99ddc25c0d5fd59a4c5f0e61d13830',1,'GpgFrontend::GlobalSettingStation']]],
- ['undo_5fact_5f_705',['undo_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa498dfecac36590e4b60d50824dff58c',1,'GpgFrontend::UI::MainWindow']]],
- ['unsaveddocuments_706',['UnsavedDocuments',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a82fe98d45f54909ebea933b540367c39',1,'GpgFrontend::UI::TextEdit']]],
- ['updatetab_707',['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_708',['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 b29fd767..6dd923bc 100644
--- a/docs/html/search/all_15.js
+++ b/docs/html/search/all_15.js
@@ -1,12 +1,12 @@
var searchData=
[
- ['verify_709',['Verify',['../classGpgFrontend_1_1GpgBasicOperator.html#af0347cb28ff73b2250395ceaa9001509',1,'GpgFrontend::GpgBasicOperator']]],
- ['verify_5fact_5f_710',['verify_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a14bb12fa25620e1a93bd23c9f7c84081',1,'GpgFrontend::UI::MainWindow']]],
- ['verifydetailsdialog_711',['VerifyDetailsDialog',['../classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html',1,'GpgFrontend::UI::VerifyDetailsDialog'],['../classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#ac73f0405e249f623ddd0de22b5130fda',1,'GpgFrontend::UI::VerifyDetailsDialog::VerifyDetailsDialog()']]],
- ['verifyfile_712',['VerifyFile',['../classGpgFrontend_1_1GpgFileOpera.html#a14cddfe822c9410cd9c301d08963b7e7',1,'GpgFrontend::GpgFileOpera']]],
- ['verifykeydetailbox_713',['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_714',['version_compare',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#ae1989b6a34c76103f4bd06f35686d536',1,'GpgFrontend::UI::SoftwareVersion']]],
- ['versionchecktask_715',['VersionCheckTask',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html',1,'GpgFrontend::UI::VersionCheckTask'],['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9f7a810ae1aa78c2a61e86e7757da385',1,'GpgFrontend::UI::VersionCheckTask::VersionCheckTask()']]],
- ['versionwithdrawn_716',['VersionWithDrawn',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a587a3fdb047a15c3771c2af5eebdbf4b',1,'GpgFrontend::UI::SoftwareVersion']]],
- ['view_5fmenu_5f_717',['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 c6f2ac85..7e253bf6 100644
--- a/docs/html/search/all_16.js
+++ b/docs/html/search/all_16.js
@@ -1,9 +1,9 @@
var searchData=
[
- ['waitingdialog_718',['WaitingDialog',['../classGpgFrontend_1_1UI_1_1WaitingDialog.html',1,'GpgFrontend::UI::WaitingDialog'],['../classGpgFrontend_1_1UI_1_1WaitingDialog.html#a809d0ffc8208eb2ff5d8da76c8ee10dc',1,'GpgFrontend::UI::WaitingDialog::WaitingDialog()']]],
- ['willcharsetchange_719',['WillCharsetChange',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a1c1c0174ed1ed9c5a90739eafc5c3267',1,'GpgFrontend::UI::PlainTextEditorPage']]],
- ['wizard_720',['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_721',['write_buffer_to_file',['../namespaceGpgFrontend.html#a5135069571678eda9c1f07d17ed9ac41',1,'GpgFrontend']]],
- ['writefile_722',['WriteFile',['../classGpgFrontend_1_1FileOperator.html#a2f21ef4a88448b1eddf756302913d338',1,'GpgFrontend::FileOperator']]],
- ['writefilestd_723',['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 4261991a..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_724',['zoom_in_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3cb7daedbef61c1be27635c9ebc9e689',1,'GpgFrontend::UI::MainWindow']]],
- ['zoom_5fout_5fact_5f_725',['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 0f00f7bc..d724aac9 100644
--- a/docs/html/search/all_18.js
+++ b/docs/html/search/all_18.js
@@ -1,14 +1,14 @@
var searchData=
[
- ['_7edataobject_726',['~DataObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a85bb3c482bf6f47edcd6593cca568a22',1,'GpgFrontend::Thread::Task::DataObject']]],
- ['_7eglobalsettingstation_727',['~GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html#af700161900e623a0ea14261d51616451',1,'GpgFrontend::GlobalSettingStation']]],
- ['_7egpgcontext_728',['~GpgContext',['../classGpgFrontend_1_1GpgContext.html#ae89dee551354c1541337881898832725',1,'GpgFrontend::GpgContext']]],
- ['_7egpgfrontendapplication_729',['~GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a32f0e7dda69f7b1e3cc869340736c590',1,'GpgFrontend::UI::GpgFrontendApplication']]],
- ['_7egpgkey_730',['~GpgKey',['../classGpgFrontend_1_1GpgKey.html#a1e9223bb1ad8fbb4e769680de39b3697',1,'GpgFrontend::GpgKey']]],
- ['_7egpgkeysignature_731',['~GpgKeySignature',['../classGpgFrontend_1_1GpgKeySignature.html#ab4d7044f4e1ddcf0ae0d28be43f0fcb3',1,'GpgFrontend::GpgKeySignature']]],
- ['_7egpgsignature_732',['~GpgSignature',['../classGpgFrontend_1_1GpgSignature.html#a44f137a457ac109d145a1cdd8e544e3a',1,'GpgFrontend::GpgSignature']]],
- ['_7esettingsobject_733',['~SettingsObject',['../classGpgFrontend_1_1UI_1_1SettingsObject.html#ae71336d240ace35756d1852a46271f6c',1,'GpgFrontend::UI::SettingsObject']]],
- ['_7esingletonfunctionobject_734',['~SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html#a8296be8c449f88175285186831b995bc',1,'GpgFrontend::SingletonFunctionObject']]],
- ['_7etask_735',['~Task',['../classGpgFrontend_1_1Thread_1_1Task.html#a37766a505662b33ad14672c29e209ea8',1,'GpgFrontend::Thread::Task']]],
- ['_7etaskrunner_736',['~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_2.js b/docs/html/search/all_2.js
index 689eec60..bb87b682 100644
--- a/docs/html/search/all_2.js
+++ b/docs/html/search/all_2.js
@@ -1,7 +1,7 @@
var searchData=
[
- ['beautify_5ffingerprint_39',['beautify_fingerprint',['../namespaceGpgFrontend.html#ac494a4b0d91e08a70db77a399c9a0f30',1,'GpgFrontend']]],
- ['browser_5f_40',['browser_',['../classGpgFrontend_1_1UI_1_1HelpPage.html#af4f61342fae06a49c95d8d20ca51ca2c',1,'GpgFrontend::UI::HelpPage']]],
- ['browser_5fact_5f_41',['browser_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3c0a5305cf55fe5bee2f18298f983cad',1,'GpgFrontend::UI::MainWindow']]],
- ['button_5fbox_5f_42',['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_()']]]
+ ['beautify_5ffingerprint_40',['beautify_fingerprint',['../namespaceGpgFrontend.html#ac494a4b0d91e08a70db77a399c9a0f30',1,'GpgFrontend']]],
+ ['browser_5f_41',['browser_',['../classGpgFrontend_1_1UI_1_1HelpPage.html#af4f61342fae06a49c95d8d20ca51ca2c',1,'GpgFrontend::UI::HelpPage']]],
+ ['browser_5fact_5f_42',['browser_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3c0a5305cf55fe5bee2f18298f983cad',1,'GpgFrontend::UI::MainWindow']]],
+ ['button_5fbox_5f_43',['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/all_3.js b/docs/html/search/all_3.js
index e132387a..6a2e23f8 100644
--- a/docs/html/search/all_3.js
+++ b/docs/html/search/all_3.js
@@ -1,73 +1,73 @@
var searchData=
[
- ['cachemanager_43',['CacheManager',['../classGpgFrontend_1_1CacheManager.html',1,'GpgFrontend']]],
- ['calculatehash_44',['CalculateHash',['../classGpgFrontend_1_1FileOperator.html#a08baef750a723ee709804120a34d19c9',1,'GpgFrontend::FileOperator']]],
- ['channel_5f_45',['channel_',['../classGpgFrontend_1_1ChannelObject.html#aee5f8a5575adbdf522da4dd195c091ee',1,'GpgFrontend::ChannelObject']]],
- ['channelobject_46',['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']]],
- ['charsetoperator_47',['CharsetOperator',['../classGpgFrontend_1_1CharsetOperator.html',1,'GpgFrontend']]],
- ['check_48',['Check',['../classGpgFrontend_1_1UI_1_1SettingsObject.html#a80801f6912991ba625b5ead29a4558f0',1,'GpgFrontend::UI::SettingsObject::Check(const std::string &key)'],['../classGpgFrontend_1_1UI_1_1SettingsObject.html#a5ddcc2e0bc6d4c2f88e6e00371d4792e',1,'GpgFrontend::UI::SettingsObject::Check(const std::string &key, const nlohmann::json &default_value)']]],
- ['check_5fbinary_5fchacksum_49',['check_binary_chacksum',['../classGpgFrontend_1_1GpgContext.html#a76fba43d1439c7811e1a9424d0c16d40',1,'GpgFrontend::GpgContext']]],
- ['check_5femail_5faddress_50',['check_email_address',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#ad4e09323a53992daee08173bed17bf9a',1,'GpgFrontend::UI::KeyNewUIDDialog::check_email_address()'],['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ae8aeaff7be0b1552b29d1f209af0bd28',1,'GpgFrontend::UI::KeyGenDialog::check_email_address()']]],
- ['check_5fgpg_5ferror_51',['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_52',['check_gpg_error_2_err_code',['../namespaceGpgFrontend.html#a4edac6df92596ba8eea3a8cdc1173684',1,'GpgFrontend']]],
- ['check_5fupdate_5fact_5f_53',['check_update_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a672f4ef07be6ad645613ecd49399700d',1,'GpgFrontend::UI::MainWindow']]],
- ['choosepage_54',['ChoosePage',['../classGpgFrontend_1_1UI_1_1ChoosePage.html#ae370e789009be3926410cb749c86907b',1,'GpgFrontend::UI::ChoosePage::ChoosePage()'],['../classGpgFrontend_1_1UI_1_1ChoosePage.html',1,'GpgFrontend::UI::ChoosePage']]],
- ['class_55',['class',['../classclass.html',1,'']]],
- ['clean_5fdouble_5fline_5fbreaks_5fact_5f_56',['clean_double_line_breaks_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0cb094e0409337cfd7dba1bb510ea96e',1,'GpgFrontend::UI::MainWindow']]],
- ['cleargpgpasswordcache_57',['ClearGpgPasswordCache',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a71eb87ed095754ee1e9fa79125240f3e',1,'GpgFrontend::GpgAdvancedOperator']]],
- ['close_5fattachment_5fdock_58',['close_attachment_dock',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a473b679fa0dc3cdf4f6f98d6553fa0ec',1,'GpgFrontend::UI::MainWindow']]],
- ['close_5ftab_5fact_5f_59',['close_tab_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a09671c3aa26a750cfd6be6c092de8715',1,'GpgFrontend::UI::MainWindow']]],
- ['closeevent_60',['closeEvent',['../classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#acc10569862d1575d9453d1c1aa539242',1,'GpgFrontend::UI::GeneralMainWindow::closeEvent()'],['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1759412cb7ee71600c4b6e3c6e752d2e',1,'GpgFrontend::UI::MainWindow::closeEvent()']]],
- ['closenotebyclass_61',['CloseNoteByClass',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aee4f46e54f29da671838ed232e526700',1,'GpgFrontend::UI::PlainTextEditorPage']]],
- ['cmspath_62',['CMSPath',['../classGpgFrontend_1_1GpgInfo.html#ac8ecbf438d05dc434c77825dd38dfdf2',1,'GpgFrontend::GpgInfo']]],
- ['comment_5fedit_5f_63',['comment_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3008e2a9879a8e122e422f67cf0018f8',1,'GpgFrontend::UI::KeyGenDialog']]],
- ['comment_5fvar_5flabel_5f_64',['comment_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a83b1290251a204def52677ae000a17ec',1,'GpgFrontend::UI::KeyPairDetailTab']]],
- ['commonutils_65',['CommonUtils',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a78f5c2696152e9326e845c76c94be965',1,'GpgFrontend::UI::CommonUtils::CommonUtils()'],['../classGpgFrontend_1_1UI_1_1CommonUtils.html',1,'GpgFrontend::UI::CommonUtils']]],
- ['conclusionpage_66',['ConclusionPage',['../classGpgFrontend_1_1UI_1_1ConclusionPage.html#afcd98b4735047807d384e6b3d3aea3a7',1,'GpgFrontend::UI::ConclusionPage::ConclusionPage()'],['../classGpgFrontend_1_1UI_1_1ConclusionPage.html',1,'GpgFrontend::UI::ConclusionPage']]],
- ['containsprivatekeys_67',['ContainsPrivateKeys',['../classGpgFrontend_1_1UI_1_1KeyList.html#a20c4a242f49123bd64982952fdad08e9',1,'GpgFrontend::UI::KeyList']]],
- ['contextmenuevent_68',['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()'],['../classGpgFrontend_1_1UI_1_1KeyList.html#a82da61a76a08023b2ddbe2a6869f4190',1,'GpgFrontend::UI::KeyList::contextMenuEvent()']]],
- ['copy_69',['Copy',['../classGpgFrontend_1_1GpgKey.html#ac90afba6a5aec0bc2c0f1e01de417ec8',1,'GpgFrontend::GpgKey']]],
- ['copy_5fact_5f_70',['copy_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a71402943f4ed19e3aba0556b23eaa8f8',1,'GpgFrontend::UI::MainWindow']]],
- ['copy_5fmail_5faddress_5fto_5fclipboard_5fact_5f_71',['copy_mail_address_to_clipboard_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af77f66b6b869f6ddb3d2caa3bc40bb09',1,'GpgFrontend::UI::MainWindow']]],
- ['corecommonutil_72',['CoreCommonUtil',['../classGpgFrontend_1_1CoreCommonUtil.html',1,'GpgFrontend']]],
- ['coresignalstation_73',['CoreSignalStation',['../classGpgFrontend_1_1CoreSignalStation.html',1,'GpgFrontend']]],
- ['count_5fpage_5f_74',['count_page_',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a747d3740a88295e6c9565788d4cf56ec',1,'GpgFrontend::UI::TextEdit']]],
- ['create_5factions_75',['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_76',['create_attachment_dock',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a92a6d8d46e197e25eaacc3ad7ed289ab',1,'GpgFrontend::UI::MainWindow']]],
- ['create_5fbasic_5finfo_5fgroup_5fbox_77',['create_basic_info_group_box',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a010acccfd5fb5475769658f9cf68da7b',1,'GpgFrontend::UI::KeyGenDialog::create_basic_info_group_box()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a029017ad2e025a43d21144f1b7427593',1,'GpgFrontend::UI::SubkeyGenerateDialog::create_basic_info_group_box()']]],
- ['create_5fbutton_78',['create_button',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a4c5d8a43fd8a6f1c217d83694dcc689c',1,'GpgFrontend::UI::KeyServerImportDialog']]],
- ['create_5fbutton_5fbox_79',['create_button_box',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a9f5912ff99e3820d5fa6a58ed14a70c8',1,'GpgFrontend::UI::KeyImportDetailDialog']]],
- ['create_5fcombobox_80',['create_comboBox',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ab9e2fe38d54c0f0d3d73907300faa513',1,'GpgFrontend::UI::KeyServerImportDialog']]],
- ['create_5fdock_5fwindows_81',['create_dock_windows',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a04668246525874760f47a340b4b7d8de',1,'GpgFrontend::UI::MainWindow']]],
- ['create_5fgeneral_5finfo_5fbox_82',['create_general_info_box',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#af88ee416b2227ce847a3b8123a23ce24',1,'GpgFrontend::UI::KeyImportDetailDialog']]],
- ['create_5fkey_5finfo_5fgrid_83',['create_key_info_grid',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#a25b96a986a009d35847f94719ec327c1',1,'GpgFrontend::UI::VerifyKeyDetailBox']]],
- ['create_5fkey_5fusage_5fgroup_5fbox_84',['create_key_usage_group_box',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a8e6554b47e0dd6c2025ccb0d1d0cb658',1,'GpgFrontend::UI::KeyGenDialog::create_key_usage_group_box()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aa24064a5f585b23d71e1036958f31d7d',1,'GpgFrontend::UI::SubkeyGenerateDialog::create_key_usage_group_box()']]],
- ['create_5fkeys_5ftable_85',['create_keys_table',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a6f006d4702885fb41317d10d654dfa3c',1,'GpgFrontend::UI::KeyServerImportDialog::create_keys_table()'],['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a9e37a653a982e671977d2101b72ae3b6',1,'GpgFrontend::UI::KeyImportDetailDialog::create_keys_table()']]],
- ['create_5fmanage_5fuid_5fmenu_86',['create_manage_uid_menu',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a5c029e55323d54aa2306267cea1809ea',1,'GpgFrontend::UI::KeyPairUIDTab']]],
- ['create_5fmenus_87',['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_88',['create_popup_menu',['../classGpgFrontend_1_1UI_1_1FilePage.html#a73e4b62f4926b1aeb3f2183a1d05d871',1,'GpgFrontend::UI::FilePage']]],
- ['create_5fsign_5flist_89',['create_sign_list',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a32dc14242d88ca168ae71e9a895d2b29',1,'GpgFrontend::UI::KeyPairUIDTab']]],
- ['create_5fsign_5fpopup_5fmenu_90',['create_sign_popup_menu',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a7653654c81149c48e7e4d5f0c00c360f',1,'GpgFrontend::UI::KeyPairUIDTab']]],
- ['create_5fstatus_5fbar_91',['create_status_bar',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1ab1f3f57f9969447491e63f54420585',1,'GpgFrontend::UI::MainWindow']]],
- ['create_5fsubkey_5flist_92',['create_subkey_list',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a0503508ce7e11f497a05cdf6f536a253',1,'GpgFrontend::UI::KeyPairSubkeyTab']]],
- ['create_5fsubkey_5fopera_5fmenu_93',['create_subkey_opera_menu',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a324446276f111be455773381ee8b6739',1,'GpgFrontend::UI::KeyPairSubkeyTab']]],
- ['create_5ftool_5fbars_94',['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_95',['create_uid_list',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a0511f5714548920cf3563306536d0bd7',1,'GpgFrontend::UI::KeyPairUIDTab']]],
- ['create_5fuid_5fpopup_5fmenu_96',['create_uid_popup_menu',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a2a87d3ed720a57a5d96a108c7a9827d7',1,'GpgFrontend::UI::KeyPairUIDTab']]],
- ['created_5fvar_5flabel_5f_97',['created_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aa45a2433ce82a88eeb2c9c282ab7b975',1,'GpgFrontend::UI::KeyPairDetailTab::created_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#ac827e8474ace52814f8de70709987d36',1,'GpgFrontend::UI::KeyPairSubkeyTab::created_var_label_()']]],
- ['createinstance_98',['CreateInstance',['../classGpgFrontend_1_1SingletonFunctionObject.html#a083807ff8cec58dc0aa732844edaf518',1,'GpgFrontend::SingletonFunctionObject']]],
- ['createoperamenu_99',['CreateOperaMenu',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a4dcec352e412afe5c5491f941495090f',1,'GpgFrontend::UI::KeyPairOperaTab']]],
- ['crypt_5fmenu_5f_100',['crypt_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1ef17c566a764f707f43593a1f6b3c60',1,'GpgFrontend::UI::MainWindow']]],
- ['crypt_5ftool_5fbar_5f_101',['crypt_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aac320aef3b49cd068544aac54b927f7a',1,'GpgFrontend::UI::MainWindow']]],
- ['cryptomenu_102',['CryptoMenu',['../structGpgFrontend_1_1UI_1_1MainWindow_1_1CryptoMenu.html',1,'GpgFrontend::UI::MainWindow']]],
- ['ctx_5f_103',['ctx_',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a387ad457bb729f340f680d0b743733ad',1,'GpgFrontend::GpgAdvancedOperator::ctx_()'],['../classGpgFrontend_1_1GpgKeyGetter.html#aa4aef315d82123726be879097d3df147',1,'GpgFrontend::GpgKeyGetter::ctx_()'],['../classGpgFrontend_1_1GpgCommandExecutor.html#aefc4f18ec852b98c539d97da1c712a02',1,'GpgFrontend::GpgCommandExecutor::ctx_()'],['../classGpgFrontend_1_1GpgBasicOperator.html#afad990a43ab06a060a93db9948ebb740',1,'GpgFrontend::GpgBasicOperator::ctx_()']]],
- ['ctx_5fmutex_5f_104',['ctx_mutex_',['../classGpgFrontend_1_1GpgKeyGetter.html#a81941e1f562dc22977a71d00dd10956a',1,'GpgFrontend::GpgKeyGetter']]],
- ['ctxchecktask_105',['CtxCheckTask',['../classGpgFrontend_1_1Thread_1_1CtxCheckTask.html#a9d5f0969bcedc5687e0a50ed3b36a869',1,'GpgFrontend::Thread::CtxCheckTask::CtxCheckTask()'],['../classGpgFrontend_1_1Thread_1_1CtxCheckTask.html',1,'GpgFrontend::Thread::CtxCheckTask']]],
- ['curfilepage_106',['CurFilePage',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa30daf558cb85bbdcad55a805a106109',1,'GpgFrontend::UI::TextEdit']]],
- ['current_5freply_5f_107',['current_reply_',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9679bc6bcdf2e64ec82f6119620b6f2e',1,'GpgFrontend::UI::VersionCheckTask']]],
- ['currentversionreleased_108',['CurrentVersionReleased',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a43663cd2d086299a0f0304f5bde9c663',1,'GpgFrontend::UI::SoftwareVersion']]],
- ['curtextpage_109',['CurTextPage',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a7aa1230fbf796225bd6b83d381e11a3b',1,'GpgFrontend::UI::TextEdit']]],
- ['custom_5fpassphrase_5fcb_110',['custom_passphrase_cb',['../classGpgFrontend_1_1GpgContext.html#af46f09a4f5c77429c3e782b551812ec2',1,'GpgFrontend::GpgContext']]],
- ['cut_5fact_5f_111',['cut_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2c2f6c021219564846f1624f6bb5b9a2',1,'GpgFrontend::UI::MainWindow']]],
- ['cut_5fpgp_5fheader_5fact_5f_112',['cut_pgp_header_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a313a5d7d0847114a6f11e4d7870edd86',1,'GpgFrontend::UI::MainWindow']]]
+ ['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']]],
+ ['charsetoperator_48',['CharsetOperator',['../classGpgFrontend_1_1CharsetOperator.html',1,'GpgFrontend']]],
+ ['check_49',['Check',['../classGpgFrontend_1_1UI_1_1SettingsObject.html#a80801f6912991ba625b5ead29a4558f0',1,'GpgFrontend::UI::SettingsObject::Check(const std::string &key)'],['../classGpgFrontend_1_1UI_1_1SettingsObject.html#a5ddcc2e0bc6d4c2f88e6e00371d4792e',1,'GpgFrontend::UI::SettingsObject::Check(const std::string &key, const nlohmann::json &default_value)']]],
+ ['check_5fbinary_5fchacksum_50',['check_binary_chacksum',['../classGpgFrontend_1_1GpgContext.html#a76fba43d1439c7811e1a9424d0c16d40',1,'GpgFrontend::GpgContext']]],
+ ['check_5femail_5faddress_51',['check_email_address',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#ad4e09323a53992daee08173bed17bf9a',1,'GpgFrontend::UI::KeyNewUIDDialog::check_email_address()'],['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ae8aeaff7be0b1552b29d1f209af0bd28',1,'GpgFrontend::UI::KeyGenDialog::check_email_address()']]],
+ ['check_5fgpg_5ferror_52',['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_53',['check_gpg_error_2_err_code',['../namespaceGpgFrontend.html#a4edac6df92596ba8eea3a8cdc1173684',1,'GpgFrontend']]],
+ ['check_5fupdate_5fact_5f_54',['check_update_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a672f4ef07be6ad645613ecd49399700d',1,'GpgFrontend::UI::MainWindow']]],
+ ['choosepage_55',['ChoosePage',['../classGpgFrontend_1_1UI_1_1ChoosePage.html#ae370e789009be3926410cb749c86907b',1,'GpgFrontend::UI::ChoosePage::ChoosePage()'],['../classGpgFrontend_1_1UI_1_1ChoosePage.html',1,'GpgFrontend::UI::ChoosePage']]],
+ ['class_56',['class',['../classclass.html',1,'']]],
+ ['clean_5fdouble_5fline_5fbreaks_5fact_5f_57',['clean_double_line_breaks_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0cb094e0409337cfd7dba1bb510ea96e',1,'GpgFrontend::UI::MainWindow']]],
+ ['cleargpgpasswordcache_58',['ClearGpgPasswordCache',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a71eb87ed095754ee1e9fa79125240f3e',1,'GpgFrontend::GpgAdvancedOperator']]],
+ ['close_5fattachment_5fdock_59',['close_attachment_dock',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a473b679fa0dc3cdf4f6f98d6553fa0ec',1,'GpgFrontend::UI::MainWindow']]],
+ ['close_5ftab_5fact_5f_60',['close_tab_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a09671c3aa26a750cfd6be6c092de8715',1,'GpgFrontend::UI::MainWindow']]],
+ ['closeevent_61',['closeEvent',['../classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#acc10569862d1575d9453d1c1aa539242',1,'GpgFrontend::UI::GeneralMainWindow::closeEvent()'],['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1759412cb7ee71600c4b6e3c6e752d2e',1,'GpgFrontend::UI::MainWindow::closeEvent()']]],
+ ['closenotebyclass_62',['CloseNoteByClass',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aee4f46e54f29da671838ed232e526700',1,'GpgFrontend::UI::PlainTextEditorPage']]],
+ ['cmspath_63',['CMSPath',['../classGpgFrontend_1_1GpgInfo.html#ac8ecbf438d05dc434c77825dd38dfdf2',1,'GpgFrontend::GpgInfo']]],
+ ['comment_5fedit_5f_64',['comment_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3008e2a9879a8e122e422f67cf0018f8',1,'GpgFrontend::UI::KeyGenDialog']]],
+ ['comment_5fvar_5flabel_5f_65',['comment_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a83b1290251a204def52677ae000a17ec',1,'GpgFrontend::UI::KeyPairDetailTab']]],
+ ['commonutils_66',['CommonUtils',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a78f5c2696152e9326e845c76c94be965',1,'GpgFrontend::UI::CommonUtils::CommonUtils()'],['../classGpgFrontend_1_1UI_1_1CommonUtils.html',1,'GpgFrontend::UI::CommonUtils']]],
+ ['conclusionpage_67',['ConclusionPage',['../classGpgFrontend_1_1UI_1_1ConclusionPage.html#afcd98b4735047807d384e6b3d3aea3a7',1,'GpgFrontend::UI::ConclusionPage::ConclusionPage()'],['../classGpgFrontend_1_1UI_1_1ConclusionPage.html',1,'GpgFrontend::UI::ConclusionPage']]],
+ ['containsprivatekeys_68',['ContainsPrivateKeys',['../classGpgFrontend_1_1UI_1_1KeyList.html#a20c4a242f49123bd64982952fdad08e9',1,'GpgFrontend::UI::KeyList']]],
+ ['contextmenuevent_69',['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()'],['../classGpgFrontend_1_1UI_1_1KeyList.html#a82da61a76a08023b2ddbe2a6869f4190',1,'GpgFrontend::UI::KeyList::contextMenuEvent()']]],
+ ['copy_70',['Copy',['../classGpgFrontend_1_1GpgKey.html#ac90afba6a5aec0bc2c0f1e01de417ec8',1,'GpgFrontend::GpgKey']]],
+ ['copy_5fact_5f_71',['copy_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a71402943f4ed19e3aba0556b23eaa8f8',1,'GpgFrontend::UI::MainWindow']]],
+ ['copy_5fmail_5faddress_5fto_5fclipboard_5fact_5f_72',['copy_mail_address_to_clipboard_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af77f66b6b869f6ddb3d2caa3bc40bb09',1,'GpgFrontend::UI::MainWindow']]],
+ ['corecommonutil_73',['CoreCommonUtil',['../classGpgFrontend_1_1CoreCommonUtil.html',1,'GpgFrontend']]],
+ ['coresignalstation_74',['CoreSignalStation',['../classGpgFrontend_1_1CoreSignalStation.html',1,'GpgFrontend']]],
+ ['count_5fpage_5f_75',['count_page_',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a747d3740a88295e6c9565788d4cf56ec',1,'GpgFrontend::UI::TextEdit']]],
+ ['create_5factions_76',['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_77',['create_attachment_dock',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a92a6d8d46e197e25eaacc3ad7ed289ab',1,'GpgFrontend::UI::MainWindow']]],
+ ['create_5fbasic_5finfo_5fgroup_5fbox_78',['create_basic_info_group_box',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a010acccfd5fb5475769658f9cf68da7b',1,'GpgFrontend::UI::KeyGenDialog::create_basic_info_group_box()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a029017ad2e025a43d21144f1b7427593',1,'GpgFrontend::UI::SubkeyGenerateDialog::create_basic_info_group_box()']]],
+ ['create_5fbutton_79',['create_button',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a4c5d8a43fd8a6f1c217d83694dcc689c',1,'GpgFrontend::UI::KeyServerImportDialog']]],
+ ['create_5fbutton_5fbox_80',['create_button_box',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a9f5912ff99e3820d5fa6a58ed14a70c8',1,'GpgFrontend::UI::KeyImportDetailDialog']]],
+ ['create_5fcombobox_81',['create_comboBox',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ab9e2fe38d54c0f0d3d73907300faa513',1,'GpgFrontend::UI::KeyServerImportDialog']]],
+ ['create_5fdock_5fwindows_82',['create_dock_windows',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a04668246525874760f47a340b4b7d8de',1,'GpgFrontend::UI::MainWindow']]],
+ ['create_5fgeneral_5finfo_5fbox_83',['create_general_info_box',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#af88ee416b2227ce847a3b8123a23ce24',1,'GpgFrontend::UI::KeyImportDetailDialog']]],
+ ['create_5fkey_5finfo_5fgrid_84',['create_key_info_grid',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#a25b96a986a009d35847f94719ec327c1',1,'GpgFrontend::UI::VerifyKeyDetailBox']]],
+ ['create_5fkey_5fusage_5fgroup_5fbox_85',['create_key_usage_group_box',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a8e6554b47e0dd6c2025ccb0d1d0cb658',1,'GpgFrontend::UI::KeyGenDialog::create_key_usage_group_box()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aa24064a5f585b23d71e1036958f31d7d',1,'GpgFrontend::UI::SubkeyGenerateDialog::create_key_usage_group_box()']]],
+ ['create_5fkeys_5ftable_86',['create_keys_table',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a6f006d4702885fb41317d10d654dfa3c',1,'GpgFrontend::UI::KeyServerImportDialog::create_keys_table()'],['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a9e37a653a982e671977d2101b72ae3b6',1,'GpgFrontend::UI::KeyImportDetailDialog::create_keys_table()']]],
+ ['create_5fmanage_5fuid_5fmenu_87',['create_manage_uid_menu',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a5c029e55323d54aa2306267cea1809ea',1,'GpgFrontend::UI::KeyPairUIDTab']]],
+ ['create_5fmenus_88',['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_89',['create_popup_menu',['../classGpgFrontend_1_1UI_1_1FilePage.html#a73e4b62f4926b1aeb3f2183a1d05d871',1,'GpgFrontend::UI::FilePage']]],
+ ['create_5fsign_5flist_90',['create_sign_list',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a32dc14242d88ca168ae71e9a895d2b29',1,'GpgFrontend::UI::KeyPairUIDTab']]],
+ ['create_5fsign_5fpopup_5fmenu_91',['create_sign_popup_menu',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a7653654c81149c48e7e4d5f0c00c360f',1,'GpgFrontend::UI::KeyPairUIDTab']]],
+ ['create_5fstatus_5fbar_92',['create_status_bar',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1ab1f3f57f9969447491e63f54420585',1,'GpgFrontend::UI::MainWindow']]],
+ ['create_5fsubkey_5flist_93',['create_subkey_list',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a0503508ce7e11f497a05cdf6f536a253',1,'GpgFrontend::UI::KeyPairSubkeyTab']]],
+ ['create_5fsubkey_5fopera_5fmenu_94',['create_subkey_opera_menu',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a324446276f111be455773381ee8b6739',1,'GpgFrontend::UI::KeyPairSubkeyTab']]],
+ ['create_5ftool_5fbars_95',['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_96',['create_uid_list',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a0511f5714548920cf3563306536d0bd7',1,'GpgFrontend::UI::KeyPairUIDTab']]],
+ ['create_5fuid_5fpopup_5fmenu_97',['create_uid_popup_menu',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a2a87d3ed720a57a5d96a108c7a9827d7',1,'GpgFrontend::UI::KeyPairUIDTab']]],
+ ['created_5fvar_5flabel_5f_98',['created_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aa45a2433ce82a88eeb2c9c282ab7b975',1,'GpgFrontend::UI::KeyPairDetailTab::created_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#ac827e8474ace52814f8de70709987d36',1,'GpgFrontend::UI::KeyPairSubkeyTab::created_var_label_()']]],
+ ['createinstance_99',['CreateInstance',['../classGpgFrontend_1_1SingletonFunctionObject.html#a083807ff8cec58dc0aa732844edaf518',1,'GpgFrontend::SingletonFunctionObject']]],
+ ['createoperamenu_100',['CreateOperaMenu',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a4dcec352e412afe5c5491f941495090f',1,'GpgFrontend::UI::KeyPairOperaTab']]],
+ ['crypt_5fmenu_5f_101',['crypt_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1ef17c566a764f707f43593a1f6b3c60',1,'GpgFrontend::UI::MainWindow']]],
+ ['crypt_5ftool_5fbar_5f_102',['crypt_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aac320aef3b49cd068544aac54b927f7a',1,'GpgFrontend::UI::MainWindow']]],
+ ['cryptomenu_103',['CryptoMenu',['../structGpgFrontend_1_1UI_1_1MainWindow_1_1CryptoMenu.html',1,'GpgFrontend::UI::MainWindow']]],
+ ['ctx_5f_104',['ctx_',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a387ad457bb729f340f680d0b743733ad',1,'GpgFrontend::GpgAdvancedOperator::ctx_()'],['../classGpgFrontend_1_1GpgKeyGetter.html#aa4aef315d82123726be879097d3df147',1,'GpgFrontend::GpgKeyGetter::ctx_()'],['../classGpgFrontend_1_1GpgCommandExecutor.html#aefc4f18ec852b98c539d97da1c712a02',1,'GpgFrontend::GpgCommandExecutor::ctx_()'],['../classGpgFrontend_1_1GpgBasicOperator.html#afad990a43ab06a060a93db9948ebb740',1,'GpgFrontend::GpgBasicOperator::ctx_()']]],
+ ['ctx_5fmutex_5f_105',['ctx_mutex_',['../classGpgFrontend_1_1GpgKeyGetter.html#a81941e1f562dc22977a71d00dd10956a',1,'GpgFrontend::GpgKeyGetter']]],
+ ['ctxchecktask_106',['CtxCheckTask',['../classGpgFrontend_1_1Thread_1_1CtxCheckTask.html#a9d5f0969bcedc5687e0a50ed3b36a869',1,'GpgFrontend::Thread::CtxCheckTask::CtxCheckTask()'],['../classGpgFrontend_1_1Thread_1_1CtxCheckTask.html',1,'GpgFrontend::Thread::CtxCheckTask']]],
+ ['curfilepage_107',['CurFilePage',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa30daf558cb85bbdcad55a805a106109',1,'GpgFrontend::UI::TextEdit']]],
+ ['current_5freply_5f_108',['current_reply_',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9679bc6bcdf2e64ec82f6119620b6f2e',1,'GpgFrontend::UI::VersionCheckTask']]],
+ ['currentversionreleased_109',['CurrentVersionReleased',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a43663cd2d086299a0f0304f5bde9c663',1,'GpgFrontend::UI::SoftwareVersion']]],
+ ['curtextpage_110',['CurTextPage',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a7aa1230fbf796225bd6b83d381e11a3b',1,'GpgFrontend::UI::TextEdit']]],
+ ['custom_5fpassphrase_5fcb_111',['custom_passphrase_cb',['../classGpgFrontend_1_1GpgContext.html#af46f09a4f5c77429c3e782b551812ec2',1,'GpgFrontend::GpgContext']]],
+ ['cut_5fact_5f_112',['cut_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2c2f6c021219564846f1624f6bb5b9a2',1,'GpgFrontend::UI::MainWindow']]],
+ ['cut_5fpgp_5fheader_5fact_5f_113',['cut_pgp_header_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a313a5d7d0847114a6f11e4d7870edd86',1,'GpgFrontend::UI::MainWindow']]]
];
diff --git a/docs/html/search/all_4.js b/docs/html/search/all_4.js
index 20009cad..a1c036f8 100644
--- a/docs/html/search/all_4.js
+++ b/docs/html/search/all_4.js
@@ -1,25 +1,25 @@
var searchData=
[
- ['databasepath_113',['DatabasePath',['../classGpgFrontend_1_1GpgInfo.html#a7347d47006bdf41f1da979ea3289de7e',1,'GpgFrontend::GpgInfo']]],
- ['dataobject_114',['DataObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html',1,'GpgFrontend::Thread::Task']]],
- ['dataobjectoperator_115',['DataObjectOperator',['../classGpgFrontend_1_1DataObjectOperator.html#a3a8ae5c36fec01d0d5c3e5f9aed457a6',1,'GpgFrontend::DataObjectOperator::DataObjectOperator()'],['../classGpgFrontend_1_1DataObjectOperator.html',1,'GpgFrontend::DataObjectOperator']]],
- ['date_5fedit_5f_116',['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_117',['Decrypt',['../classGpgFrontend_1_1GpgBasicOperator.html#a9ea9e81194917e08f46eb657281b7953',1,'GpgFrontend::GpgBasicOperator']]],
- ['decrypt_5fact_5f_118',['decrypt_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa92246123272e3e1085f22612aedf48f',1,'GpgFrontend::UI::MainWindow']]],
- ['decrypt_5fverify_5fact_5f_119',['decrypt_verify_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a70d2b2311708ab023466d343f2e914b1',1,'GpgFrontend::UI::MainWindow']]],
- ['decryptfile_120',['DecryptFile',['../classGpgFrontend_1_1GpgFileOpera.html#a74eb3ba532a236d8ad284b41265b0ccd',1,'GpgFrontend::GpgFileOpera']]],
- ['decryptverify_121',['DecryptVerify',['../classGpgFrontend_1_1GpgBasicOperator.html#a11845a9a3ea2941e14faa9130f0ac9ef',1,'GpgFrontend::GpgBasicOperator']]],
- ['decryptverifyfile_122',['DecryptVerifyFile',['../classGpgFrontend_1_1GpgFileOpera.html#a90949b4e9e6116784260cd0e416551db',1,'GpgFrontend::GpgFileOpera']]],
- ['default_5ftask_5fname_123',['DEFAULT_TASK_NAME',['../classGpgFrontend_1_1Thread_1_1Task.html#a4a2cad8747108322152b41c049f99c72',1,'GpgFrontend::Thread::Task']]],
- ['delete_5fkeys_5fwith_5fwarning_124',['delete_keys_with_warning',['../classGpgFrontend_1_1UI_1_1KeyMgmt.html#a0b139ae0d4baa234932cf228e94abd6b',1,'GpgFrontend::UI::KeyMgmt']]],
- ['delete_5fwidgets_5fin_5flayout_125',['delete_widgets_in_layout',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a852c1fe10c7d3153a2146bcea4dbe9ad',1,'GpgFrontend::UI::InfoBoardWidget']]],
- ['deletekey_126',['DeleteKey',['../classGpgFrontend_1_1GpgKeyOpera.html#a151c47b997951e9162f8b036c3cb15e0',1,'GpgFrontend::GpgKeyOpera']]],
- ['deletekeys_127',['DeleteKeys',['../classGpgFrontend_1_1GpgKeyOpera.html#a8a06d0f7a600d4428359b653a68f717e',1,'GpgFrontend::GpgKeyOpera']]],
- ['destructor_128',['Destructor',['../structGpgFrontend_1_1Thread_1_1Task_1_1DataObject_1_1Destructor.html',1,'GpgFrontend::Thread::Task::DataObject']]],
- ['detect_129',['Detect',['../classGpgFrontend_1_1CharsetOperator.html#a5a444a0fbd508f6af6a56f4151c21c1f',1,'GpgFrontend::CharsetOperator']]],
- ['detect_5fcr_5flf_130',['detect_cr_lf',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#af08be6a1eaec76403b12dc6e42df546c',1,'GpgFrontend::UI::PlainTextEditorPage']]],
- ['detect_5fencoding_131',['detect_encoding',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a14b7431a786ce59e98576e3680cb9a58',1,'GpgFrontend::UI::PlainTextEditorPage']]],
- ['dirmngrpath_132',['DirmngrPath',['../classGpgFrontend_1_1GpgInfo.html#a8c7e75d67b2438c61bbe4cebe68a7029',1,'GpgFrontend::GpgInfo']]],
- ['dragenterevent_133',['dragEnterEvent',['../classGpgFrontend_1_1UI_1_1KeyList.html#ae3ad87e114432b0d659a0297d520d72f',1,'GpgFrontend::UI::KeyList']]],
- ['dropevent_134',['dropEvent',['../classGpgFrontend_1_1UI_1_1KeyList.html#a23ebf79be8de637560d41afd0433c35f',1,'GpgFrontend::UI::KeyList']]]
+ ['databasepath_114',['DatabasePath',['../classGpgFrontend_1_1GpgInfo.html#a7347d47006bdf41f1da979ea3289de7e',1,'GpgFrontend::GpgInfo']]],
+ ['dataobject_115',['DataObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html',1,'GpgFrontend::Thread::Task']]],
+ ['dataobjectoperator_116',['DataObjectOperator',['../classGpgFrontend_1_1DataObjectOperator.html#a3a8ae5c36fec01d0d5c3e5f9aed457a6',1,'GpgFrontend::DataObjectOperator::DataObjectOperator()'],['../classGpgFrontend_1_1DataObjectOperator.html',1,'GpgFrontend::DataObjectOperator']]],
+ ['date_5fedit_5f_117',['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_118',['Decrypt',['../classGpgFrontend_1_1GpgBasicOperator.html#a9ea9e81194917e08f46eb657281b7953',1,'GpgFrontend::GpgBasicOperator']]],
+ ['decrypt_5fact_5f_119',['decrypt_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa92246123272e3e1085f22612aedf48f',1,'GpgFrontend::UI::MainWindow']]],
+ ['decrypt_5fverify_5fact_5f_120',['decrypt_verify_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a70d2b2311708ab023466d343f2e914b1',1,'GpgFrontend::UI::MainWindow']]],
+ ['decryptfile_121',['DecryptFile',['../classGpgFrontend_1_1GpgFileOpera.html#a74eb3ba532a236d8ad284b41265b0ccd',1,'GpgFrontend::GpgFileOpera']]],
+ ['decryptverify_122',['DecryptVerify',['../classGpgFrontend_1_1GpgBasicOperator.html#a11845a9a3ea2941e14faa9130f0ac9ef',1,'GpgFrontend::GpgBasicOperator']]],
+ ['decryptverifyfile_123',['DecryptVerifyFile',['../classGpgFrontend_1_1GpgFileOpera.html#a90949b4e9e6116784260cd0e416551db',1,'GpgFrontend::GpgFileOpera']]],
+ ['default_5ftask_5fname_124',['DEFAULT_TASK_NAME',['../classGpgFrontend_1_1Thread_1_1Task.html#a4a2cad8747108322152b41c049f99c72',1,'GpgFrontend::Thread::Task']]],
+ ['delete_5fkeys_5fwith_5fwarning_125',['delete_keys_with_warning',['../classGpgFrontend_1_1UI_1_1KeyMgmt.html#a0b139ae0d4baa234932cf228e94abd6b',1,'GpgFrontend::UI::KeyMgmt']]],
+ ['delete_5fwidgets_5fin_5flayout_126',['delete_widgets_in_layout',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a852c1fe10c7d3153a2146bcea4dbe9ad',1,'GpgFrontend::UI::InfoBoardWidget']]],
+ ['deletekey_127',['DeleteKey',['../classGpgFrontend_1_1GpgKeyOpera.html#a151c47b997951e9162f8b036c3cb15e0',1,'GpgFrontend::GpgKeyOpera']]],
+ ['deletekeys_128',['DeleteKeys',['../classGpgFrontend_1_1GpgKeyOpera.html#a8a06d0f7a600d4428359b653a68f717e',1,'GpgFrontend::GpgKeyOpera']]],
+ ['destructor_129',['Destructor',['../structGpgFrontend_1_1Thread_1_1Task_1_1DataObject_1_1Destructor.html',1,'GpgFrontend::Thread::Task::DataObject']]],
+ ['detect_130',['Detect',['../classGpgFrontend_1_1CharsetOperator.html#a5a444a0fbd508f6af6a56f4151c21c1f',1,'GpgFrontend::CharsetOperator']]],
+ ['detect_5fcr_5flf_131',['detect_cr_lf',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#af08be6a1eaec76403b12dc6e42df546c',1,'GpgFrontend::UI::PlainTextEditorPage']]],
+ ['detect_5fencoding_132',['detect_encoding',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a14b7431a786ce59e98576e3680cb9a58',1,'GpgFrontend::UI::PlainTextEditorPage']]],
+ ['dirmngrpath_133',['DirmngrPath',['../classGpgFrontend_1_1GpgInfo.html#a8c7e75d67b2438c61bbe4cebe68a7029',1,'GpgFrontend::GpgInfo']]],
+ ['dragenterevent_134',['dragEnterEvent',['../classGpgFrontend_1_1UI_1_1KeyList.html#ae3ad87e114432b0d659a0297d520d72f',1,'GpgFrontend::UI::KeyList']]],
+ ['dropevent_135',['dropEvent',['../classGpgFrontend_1_1UI_1_1KeyList.html#a23ebf79be8de637560d41afd0433c35f',1,'GpgFrontend::UI::KeyList']]]
];
diff --git a/docs/html/search/all_5.js b/docs/html/search/all_5.js
index 716e032a..c0400263 100644
--- a/docs/html/search/all_5.js
+++ b/docs/html/search/all_5.js
@@ -1,28 +1,28 @@
var searchData=
[
- ['edit_5f_135',['edit_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7aa41c90105fd4c2931895d8dfb5ec45',1,'GpgFrontend::UI::MainWindow']]],
- ['edit_5fmenu_5f_136',['edit_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a6d681a306c137dc107088d60b09a925f',1,'GpgFrontend::UI::MainWindow']]],
- ['edit_5ftool_5fbar_5f_137',['edit_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab531823acdbfb117c82a9906ce2107b9',1,'GpgFrontend::UI::MainWindow']]],
- ['email_5fedit_5f_138',['email_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3453d1a8a4c0411472b2779d018abdc3',1,'GpgFrontend::UI::KeyGenDialog']]],
- ['email_5fvar_5flabel_5f_139',['email_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a8c71b37aa040da50cb0105489a42e60d',1,'GpgFrontend::UI::KeyPairDetailTab']]],
- ['encrypt_140',['Encrypt',['../classGpgFrontend_1_1GpgBasicOperator.html#a32e1eac6bb0f322588ae75ae36a9884a',1,'GpgFrontend::GpgBasicOperator']]],
- ['encrypt_5fact_5f_141',['encrypt_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad6a2cecb2846b324604c4abd1fb7d11a',1,'GpgFrontend::UI::MainWindow']]],
- ['encrypt_5fsign_5fact_5f_142',['encrypt_sign_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2417c807356e3b876ecb2f572568670b',1,'GpgFrontend::UI::MainWindow']]],
- ['encryptfile_143',['EncryptFile',['../classGpgFrontend_1_1GpgFileOpera.html#a234d939ae0b2c3f799dd01130fad9379',1,'GpgFrontend::GpgFileOpera']]],
- ['encryptfilesymmetric_144',['EncryptFileSymmetric',['../classGpgFrontend_1_1GpgFileOpera.html#a826efca057afb07157453b3b9e267b0f',1,'GpgFrontend::GpgFileOpera']]],
- ['encryptsign_145',['EncryptSign',['../classGpgFrontend_1_1GpgBasicOperator.html#a08906cf2bc2ddad8489438610f388f8a',1,'GpgFrontend::GpgBasicOperator']]],
- ['encryptsignfile_146',['EncryptSignFile',['../classGpgFrontend_1_1GpgFileOpera.html#a6353e1688b113e5746aced6aa7f3876e',1,'GpgFrontend::GpgFileOpera']]],
- ['encryptsymmetric_147',['EncryptSymmetric',['../classGpgFrontend_1_1GpgBasicOperator.html#a8f4ef57e941a066ad9d070eee51e2073',1,'GpgFrontend::GpgBasicOperator']]],
- ['error_5flabel_5f_148',['error_label_',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a75f325b4a5aa8bcfcc411bdaf9279683',1,'GpgFrontend::UI::SubkeyGenerateDialog::error_label_()'],['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a8e500e3153558364fe5ba5b8bab6f219',1,'GpgFrontend::UI::KeyGenDialog::error_label_()']]],
- ['error_5fmessages_5f_149',['error_messages_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a03a8e1c8f2c1887732d36a346185bb40',1,'GpgFrontend::UI::KeyGenDialog']]],
- ['execute_150',['Execute',['../classGpgFrontend_1_1GpgCommandExecutor.html#affa984ec4c2982c527761289f73c1ab4',1,'GpgFrontend::GpgCommandExecutor']]],
- ['expire_5fcheck_5fbox_5f_151',['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_152',['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_()']]],
- ['exportallkeys_153',['ExportAllKeys',['../classGpgFrontend_1_1GpgKeyImportExporter.html#ae7d61a8c39ef7e7f1562895dbf108e68',1,'GpgFrontend::GpgKeyImportExporter']]],
- ['exportkey_154',['ExportKey',['../classGpgFrontend_1_1GpgKeyImportExporter.html#a51cb18aa7302d7a48ccd1ee17f060391',1,'GpgFrontend::GpgKeyImportExporter']]],
- ['exportkeyopenssh_155',['ExportKeyOpenSSH',['../classGpgFrontend_1_1GpgKeyImportExporter.html#aa0a73314ef94f397e2ef53d40abc9731',1,'GpgFrontend::GpgKeyImportExporter']]],
- ['exportkeypackagedialog_156',['ExportKeyPackageDialog',['../classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html#a7d1899302ef743671c3002d04f6c9dd8',1,'GpgFrontend::UI::ExportKeyPackageDialog::ExportKeyPackageDialog()'],['../classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html',1,'GpgFrontend::UI::ExportKeyPackageDialog']]],
- ['exportkeys_157',['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_158',['ExportSecretKey',['../classGpgFrontend_1_1GpgKeyImportExporter.html#a6a5e8d642ac5a3e98799af6495ef590b',1,'GpgFrontend::GpgKeyImportExporter']]],
- ['exportsecretkeyshortest_159',['ExportSecretKeyShortest',['../classGpgFrontend_1_1GpgKeyImportExporter.html#abf7c0442549ae8602e1249cdf0da55df',1,'GpgFrontend::GpgKeyImportExporter']]]
+ ['edit_5f_136',['edit_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7aa41c90105fd4c2931895d8dfb5ec45',1,'GpgFrontend::UI::MainWindow']]],
+ ['edit_5fmenu_5f_137',['edit_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a6d681a306c137dc107088d60b09a925f',1,'GpgFrontend::UI::MainWindow']]],
+ ['edit_5ftool_5fbar_5f_138',['edit_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab531823acdbfb117c82a9906ce2107b9',1,'GpgFrontend::UI::MainWindow']]],
+ ['email_5fedit_5f_139',['email_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3453d1a8a4c0411472b2779d018abdc3',1,'GpgFrontend::UI::KeyGenDialog']]],
+ ['email_5fvar_5flabel_5f_140',['email_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a8c71b37aa040da50cb0105489a42e60d',1,'GpgFrontend::UI::KeyPairDetailTab']]],
+ ['encrypt_141',['Encrypt',['../classGpgFrontend_1_1GpgBasicOperator.html#a32e1eac6bb0f322588ae75ae36a9884a',1,'GpgFrontend::GpgBasicOperator']]],
+ ['encrypt_5fact_5f_142',['encrypt_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad6a2cecb2846b324604c4abd1fb7d11a',1,'GpgFrontend::UI::MainWindow']]],
+ ['encrypt_5fsign_5fact_5f_143',['encrypt_sign_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2417c807356e3b876ecb2f572568670b',1,'GpgFrontend::UI::MainWindow']]],
+ ['encryptfile_144',['EncryptFile',['../classGpgFrontend_1_1GpgFileOpera.html#a234d939ae0b2c3f799dd01130fad9379',1,'GpgFrontend::GpgFileOpera']]],
+ ['encryptfilesymmetric_145',['EncryptFileSymmetric',['../classGpgFrontend_1_1GpgFileOpera.html#a826efca057afb07157453b3b9e267b0f',1,'GpgFrontend::GpgFileOpera']]],
+ ['encryptsign_146',['EncryptSign',['../classGpgFrontend_1_1GpgBasicOperator.html#a08906cf2bc2ddad8489438610f388f8a',1,'GpgFrontend::GpgBasicOperator']]],
+ ['encryptsignfile_147',['EncryptSignFile',['../classGpgFrontend_1_1GpgFileOpera.html#a6353e1688b113e5746aced6aa7f3876e',1,'GpgFrontend::GpgFileOpera']]],
+ ['encryptsymmetric_148',['EncryptSymmetric',['../classGpgFrontend_1_1GpgBasicOperator.html#a8f4ef57e941a066ad9d070eee51e2073',1,'GpgFrontend::GpgBasicOperator']]],
+ ['error_5flabel_5f_149',['error_label_',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a75f325b4a5aa8bcfcc411bdaf9279683',1,'GpgFrontend::UI::SubkeyGenerateDialog::error_label_()'],['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a8e500e3153558364fe5ba5b8bab6f219',1,'GpgFrontend::UI::KeyGenDialog::error_label_()']]],
+ ['error_5fmessages_5f_150',['error_messages_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a03a8e1c8f2c1887732d36a346185bb40',1,'GpgFrontend::UI::KeyGenDialog']]],
+ ['execute_151',['Execute',['../classGpgFrontend_1_1GpgCommandExecutor.html#affa984ec4c2982c527761289f73c1ab4',1,'GpgFrontend::GpgCommandExecutor']]],
+ ['expire_5fcheck_5fbox_5f_152',['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_153',['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_()']]],
+ ['exportallkeys_154',['ExportAllKeys',['../classGpgFrontend_1_1GpgKeyImportExporter.html#ae7d61a8c39ef7e7f1562895dbf108e68',1,'GpgFrontend::GpgKeyImportExporter']]],
+ ['exportkey_155',['ExportKey',['../classGpgFrontend_1_1GpgKeyImportExporter.html#a51cb18aa7302d7a48ccd1ee17f060391',1,'GpgFrontend::GpgKeyImportExporter']]],
+ ['exportkeyopenssh_156',['ExportKeyOpenSSH',['../classGpgFrontend_1_1GpgKeyImportExporter.html#aa0a73314ef94f397e2ef53d40abc9731',1,'GpgFrontend::GpgKeyImportExporter']]],
+ ['exportkeypackagedialog_157',['ExportKeyPackageDialog',['../classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html#a7d1899302ef743671c3002d04f6c9dd8',1,'GpgFrontend::UI::ExportKeyPackageDialog::ExportKeyPackageDialog()'],['../classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html',1,'GpgFrontend::UI::ExportKeyPackageDialog']]],
+ ['exportkeys_158',['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_159',['ExportSecretKey',['../classGpgFrontend_1_1GpgKeyImportExporter.html#a6a5e8d642ac5a3e98799af6495ef590b',1,'GpgFrontend::GpgKeyImportExporter']]],
+ ['exportsecretkeyshortest_160',['ExportSecretKeyShortest',['../classGpgFrontend_1_1GpgKeyImportExporter.html#abf7c0442549ae8602e1249cdf0da55df',1,'GpgFrontend::GpgKeyImportExporter']]]
];
diff --git a/docs/html/search/all_6.js b/docs/html/search/all_6.js
index ca1ac41d..b393eb43 100644
--- a/docs/html/search/all_6.js
+++ b/docs/html/search/all_6.js
@@ -1,19 +1,19 @@
var searchData=
[
- ['fetchkey_160',['FetchKey',['../classGpgFrontend_1_1GpgKeyGetter.html#afe78ac470287d70e7df51aae327b9f54',1,'GpgFrontend::GpgKeyGetter']]],
- ['file_5fmenu_5f_161',['file_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af08c62c38a750382ee218191c8e13f4f',1,'GpgFrontend::UI::MainWindow']]],
- ['file_5ftool_5fbar_5f_162',['file_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1e0d23d361b8e339ca85410db2bdfb64',1,'GpgFrontend::UI::MainWindow']]],
- ['fileoperator_163',['FileOperator',['../classGpgFrontend_1_1FileOperator.html',1,'GpgFrontend']]],
- ['filepage_164',['FilePage',['../classGpgFrontend_1_1UI_1_1FilePage.html#a48fb14a3296f19f9b1c3b9b48c3a1bf3',1,'GpgFrontend::UI::FilePage::FilePage()'],['../classGpgFrontend_1_1UI_1_1FilePage.html',1,'GpgFrontend::UI::FilePage']]],
- ['filereadtask_165',['FileReadTask',['../classGpgFrontend_1_1UI_1_1FileReadTask.html',1,'GpgFrontend::UI']]],
- ['find_5fact_5f_166',['find_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a6154f5dbdc9cebc0644e5d1e25895df8',1,'GpgFrontend::UI::MainWindow']]],
- ['find_5fedit_5f_167',['find_edit_',['../classGpgFrontend_1_1UI_1_1FindWidget.html#af420832720942dd1e7cb3f3841c7cbfe',1,'GpgFrontend::UI::FindWidget']]],
- ['findobjectinchannel_168',['FindObjectInChannel',['../classGpgFrontend_1_1SingletonStorage.html#a4c16c32e549494e394a0ddd859890a02',1,'GpgFrontend::SingletonStorage']]],
- ['findwidget_169',['FindWidget',['../classGpgFrontend_1_1UI_1_1FindWidget.html#a495f281e72e5ddc10c8e944183b96dd9',1,'GpgFrontend::UI::FindWidget::FindWidget()'],['../classGpgFrontend_1_1UI_1_1FindWidget.html',1,'GpgFrontend::UI::FindWidget']]],
- ['fingerprint_5fbox_5f_170',['fingerprint_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#ada1c21cf59f1f19dfd4ffe0391bc1594',1,'GpgFrontend::UI::KeyPairDetailTab']]],
- ['fingerprint_5fvar_5flabel_5f_171',['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_()']]],
- ['flushkeycache_172',['FlushKeyCache',['../classGpgFrontend_1_1GpgKeyGetter.html#ad9a902ea54566d4583304b072c4add51',1,'GpgFrontend::GpgKeyGetter']]],
- ['fpr_5f_173',['fpr_',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#a36bf3306b8564b49da04eee1dc653675',1,'GpgFrontend::UI::VerifyKeyDetailBox']]],
- ['free_5fheap_5fptr_174',['free_heap_ptr',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a17252d07835dab3772381639ec8473ea',1,'GpgFrontend::Thread::Task::DataObject']]],
- ['full_5ffile_5fpath_5f_175',['full_file_path_',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#ae867b6329fcb1978479a9d70f7b017db',1,'GpgFrontend::UI::PlainTextEditorPage']]]
+ ['fetchkey_161',['FetchKey',['../classGpgFrontend_1_1GpgKeyGetter.html#afe78ac470287d70e7df51aae327b9f54',1,'GpgFrontend::GpgKeyGetter']]],
+ ['file_5fmenu_5f_162',['file_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af08c62c38a750382ee218191c8e13f4f',1,'GpgFrontend::UI::MainWindow']]],
+ ['file_5ftool_5fbar_5f_163',['file_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1e0d23d361b8e339ca85410db2bdfb64',1,'GpgFrontend::UI::MainWindow']]],
+ ['fileoperator_164',['FileOperator',['../classGpgFrontend_1_1FileOperator.html',1,'GpgFrontend']]],
+ ['filepage_165',['FilePage',['../classGpgFrontend_1_1UI_1_1FilePage.html#a48fb14a3296f19f9b1c3b9b48c3a1bf3',1,'GpgFrontend::UI::FilePage::FilePage()'],['../classGpgFrontend_1_1UI_1_1FilePage.html',1,'GpgFrontend::UI::FilePage']]],
+ ['filereadtask_166',['FileReadTask',['../classGpgFrontend_1_1UI_1_1FileReadTask.html',1,'GpgFrontend::UI']]],
+ ['find_5fact_5f_167',['find_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a6154f5dbdc9cebc0644e5d1e25895df8',1,'GpgFrontend::UI::MainWindow']]],
+ ['find_5fedit_5f_168',['find_edit_',['../classGpgFrontend_1_1UI_1_1FindWidget.html#af420832720942dd1e7cb3f3841c7cbfe',1,'GpgFrontend::UI::FindWidget']]],
+ ['findobjectinchannel_169',['FindObjectInChannel',['../classGpgFrontend_1_1SingletonStorage.html#a4c16c32e549494e394a0ddd859890a02',1,'GpgFrontend::SingletonStorage']]],
+ ['findwidget_170',['FindWidget',['../classGpgFrontend_1_1UI_1_1FindWidget.html#a495f281e72e5ddc10c8e944183b96dd9',1,'GpgFrontend::UI::FindWidget::FindWidget()'],['../classGpgFrontend_1_1UI_1_1FindWidget.html',1,'GpgFrontend::UI::FindWidget']]],
+ ['fingerprint_5fbox_5f_171',['fingerprint_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#ada1c21cf59f1f19dfd4ffe0391bc1594',1,'GpgFrontend::UI::KeyPairDetailTab']]],
+ ['fingerprint_5fvar_5flabel_5f_172',['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_()']]],
+ ['flushkeycache_173',['FlushKeyCache',['../classGpgFrontend_1_1GpgKeyGetter.html#ad9a902ea54566d4583304b072c4add51',1,'GpgFrontend::GpgKeyGetter']]],
+ ['fpr_5f_174',['fpr_',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#a36bf3306b8564b49da04eee1dc653675',1,'GpgFrontend::UI::VerifyKeyDetailBox']]],
+ ['free_5fheap_5fptr_175',['free_heap_ptr',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a17252d07835dab3772381639ec8473ea',1,'GpgFrontend::Thread::Task::DataObject']]],
+ ['full_5ffile_5fpath_5f_176',['full_file_path_',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#ae867b6329fcb1978479a9d70f7b017db',1,'GpgFrontend::UI::PlainTextEditorPage']]]
];
diff --git a/docs/html/search/all_7.js b/docs/html/search/all_7.js
index 09aacd57..7961e94a 100644
--- a/docs/html/search/all_7.js
+++ b/docs/html/search/all_7.js
@@ -1,150 +1,152 @@
var searchData=
[
- ['generaldialog_176',['GeneralDialog',['../classGpgFrontend_1_1UI_1_1GeneralDialog.html#ac9de4c49668ffaeb6916c64f878a202c',1,'GpgFrontend::UI::GeneralDialog::GeneralDialog()'],['../classGpgFrontend_1_1UI_1_1GeneralDialog.html',1,'GpgFrontend::UI::GeneralDialog']]],
- ['generalmainwindow_177',['GeneralMainWindow',['../classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a62b24183ebf9da18852084879bcb1013',1,'GpgFrontend::UI::GeneralMainWindow::GeneralMainWindow()'],['../classGpgFrontend_1_1UI_1_1GeneralMainWindow.html',1,'GpgFrontend::UI::GeneralMainWindow']]],
- ['generaltab_178',['GeneralTab',['../classGpgFrontend_1_1UI_1_1GeneralTab.html#a214079dfbacdc6898146c8468611cf0c',1,'GpgFrontend::UI::GeneralTab::GeneralTab()'],['../classGpgFrontend_1_1UI_1_1GeneralTab.html',1,'GpgFrontend::UI::GeneralTab']]],
- ['generate_179',['Generate',['../classGpgFrontend_1_1PassphraseGenerator.html#a8b4ee1083343fba6d947b85cd66079b8',1,'GpgFrontend::PassphraseGenerator']]],
- ['generate_5fkey_5fpackage_5fname_180',['generate_key_package_name',['../classGpgFrontend_1_1KeyPackageOperator.html#a825d987dacd8a99d9d87729e1861a152',1,'GpgFrontend::KeyPackageOperator']]],
- ['generate_5fuuid_181',['generate_uuid',['../classGpgFrontend_1_1Thread_1_1Task.html#a96d087abb7cf99d16f778f1a93b4f9e5',1,'GpgFrontend::Thread::Task']]],
- ['generatekey_182',['GenerateKey',['../classGpgFrontend_1_1GpgKeyOpera.html#a4cc3ac91613164d7dc61a016a2b4caea',1,'GpgFrontend::GpgKeyOpera']]],
- ['generatekeypackage_183',['GenerateKeyPackage',['../classGpgFrontend_1_1KeyPackageOperator.html#ade02f022e405e98377343c4667c206e9',1,'GpgFrontend::KeyPackageOperator']]],
- ['generatekeypackagename_184',['GenerateKeyPackageName',['../classGpgFrontend_1_1KeyPackageOperator.html#ae90b362a32b6f6014cda1dc232bd3f0e',1,'GpgFrontend::KeyPackageOperator']]],
- ['generatepassphrase_185',['GeneratePassphrase',['../classGpgFrontend_1_1KeyPackageOperator.html#a6d9cf022a1e0cf54c061495f59c1b4b9',1,'GpgFrontend::KeyPackageOperator']]],
- ['generaterevokecert_186',['GenerateRevokeCert',['../classGpgFrontend_1_1GpgKeyOpera.html#a91a9a9f24f6b620ea7b906c529e3d9a4',1,'GpgFrontend::GpgKeyOpera']]],
- ['generatesubkey_187',['GenerateSubkey',['../classGpgFrontend_1_1GpgKeyOpera.html#a882d99e8407cc22fb8b6e61c531fbe85',1,'GpgFrontend::GpgKeyOpera']]],
- ['genkeyinfo_188',['GenKeyInfo',['../classGpgFrontend_1_1GenKeyInfo.html#a34eca1662ba8d4645751f3ee66582b04',1,'GpgFrontend::GenKeyInfo::GenKeyInfo()'],['../classGpgFrontend_1_1GenKeyInfo.html',1,'GpgFrontend::GenKeyInfo']]],
- ['get_5ffile_5fextension_189',['get_file_extension',['../namespaceGpgFrontend.html#acff2cf5dd5b112b324fa6574ee935f79',1,'GpgFrontend']]],
- ['get_5fheap_5fptr_190',['get_heap_ptr',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a0e1ab5e5bf5ef647a30a5ee2884ac63a',1,'GpgFrontend::Thread::Task::DataObject']]],
- ['get_5fkey_5fin_5fcache_191',['get_key_in_cache',['../classGpgFrontend_1_1GpgKeyGetter.html#ab5196ef4ed5323fc2af70abf801ea260',1,'GpgFrontend::GpgKeyGetter']]],
- ['get_5fonly_5ffile_5fname_5fwith_5fpath_192',['get_only_file_name_with_path',['../namespaceGpgFrontend.html#a5a2f5fc1ad3de55e41a1b7a388821328',1,'GpgFrontend']]],
- ['get_5frestart_5fneeded_193',['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_5fselected_5fsubkey_194',['get_selected_subkey',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#aedc5f77d6bf9b780b96552a43b323feb',1,'GpgFrontend::UI::KeyPairSubkeyTab']]],
- ['get_5fsign_5fselected_195',['get_sign_selected',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a2d7c328d726436061f19a287e481268d',1,'GpgFrontend::UI::KeyPairUIDTab']]],
- ['get_5fstatus_5fstring_196',['get_status_string',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#ae682853c7eccfd3a6be43765f162f5a4',1,'GpgFrontend::UI::KeyImportDetailDialog']]],
- ['get_5fuid_5fchecked_197',['get_uid_checked',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a7898b6fa328bfbc55ee2721bca4b2af1',1,'GpgFrontend::UI::KeyPairUIDTab']]],
- ['get_5fuid_5fselected_198',['get_uid_selected',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a161bc9787be40a32f487c79faaeb54bf',1,'GpgFrontend::UI::KeyPairUIDTab']]],
- ['getalgo_199',['GetAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#a6a65ba347156373b6cf98eb8e851d28d',1,'GpgFrontend::GenKeyInfo']]],
- ['getallchannelid_200',['GetAllChannelId',['../classGpgFrontend_1_1SingletonStorage.html#a3f09424ebdc097fbdab77564a7d723ea',1,'GpgFrontend::SingletonStorage::GetAllChannelId()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a5f2f0474871971f86ff91fb6a2408621',1,'GpgFrontend::SingletonFunctionObject::GetAllChannelId()']]],
- ['getallprivatekeys_201',['GetAllPrivateKeys',['../classGpgFrontend_1_1UI_1_1KeyList.html#a7ead8845ceb7c9310e3f4742251e1d87',1,'GpgFrontend::UI::KeyList']]],
- ['getappdir_202',['GetAppDir',['../classGpgFrontend_1_1GlobalSettingStation.html#ae9d1da3d01c4a834120968636596c3c3',1,'GpgFrontend::GlobalSettingStation']]],
- ['getbrowser_203',['GetBrowser',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a92c31eea47b42be28c86431384b27846',1,'GpgFrontend::UI::HelpPage']]],
- ['getcertsdir_204',['GetCertsDir',['../classGpgFrontend_1_1GlobalSettingStation.html#a385ae4ab6ad5b17742a5405fa693d789',1,'GpgFrontend::GlobalSettingStation']]],
- ['getchannel_205',['GetChannel',['../classGpgFrontend_1_1ChannelObject.html#a0e13a4bff1cfb679f68a3a2590a3b1b8',1,'GpgFrontend::ChannelObject::GetChannel()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#aa99440b9177f5d0c18840f08a40d64b7',1,'GpgFrontend::SingletonFunctionObject::GetChannel()']]],
- ['getchecked_206',['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_207',['GetCheckedSigners',['../classGpgFrontend_1_1UI_1_1SignersPicker.html#a2e98dcdf647a2e0e6455998b018aed00',1,'GpgFrontend::UI::SignersPicker']]],
- ['getcomment_208',['GetComment',['../classGpgFrontend_1_1GpgKeySignature.html#a8b025f50bc527b0bbe58bd016bb47772',1,'GpgFrontend::GpgKeySignature::GetComment()'],['../classGpgFrontend_1_1GpgUID.html#a572cf652da288537bdc3f88b4fb1ab18',1,'GpgFrontend::GpgUID::GetComment()'],['../classGpgFrontend_1_1GpgKey.html#af72de794e24876b0e22a8d318ec0f8ad',1,'GpgFrontend::GpgKey::GetComment()'],['../classGpgFrontend_1_1GenKeyInfo.html#ab9f9775fd6363fba372bd0bcc2532892',1,'GpgFrontend::GenKeyInfo::GetComment()']]],
- ['getcreatetime_209',['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_210',['GetDefaultChannel',['../classGpgFrontend_1_1ChannelObject.html#aece9c525c49900734bc1bebf85b644ef',1,'GpgFrontend::ChannelObject::GetDefaultChannel()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a50e2b3794d6553f4231eaec72d9d0a50',1,'GpgFrontend::SingletonFunctionObject::GetDefaultChannel()']]],
- ['getdescription_211',['GetDescription',['../classGpgFrontend_1_1GpgTOFUInfo.html#a471a08bc906d74699f394e34d2581b78',1,'GpgFrontend::GpgTOFUInfo']]],
- ['getemail_212',['GetEmail',['../classGpgFrontend_1_1GpgUID.html#a0d1a061c131e5269923dea52be3b3be4',1,'GpgFrontend::GpgUID::GetEmail()'],['../classGpgFrontend_1_1GenKeyInfo.html#a76721be08c18907762ba6f6ccc4afc8a',1,'GpgFrontend::GenKeyInfo::GetEmail()'],['../classGpgFrontend_1_1GpgKey.html#a55a6485f6c2cc5bec0fdf02cd7e0d8ea',1,'GpgFrontend::GpgKey::GetEmail()'],['../classGpgFrontend_1_1GpgKeySignature.html#abdff0ce4d5e8b7be0aa2e46e0003b22f',1,'GpgFrontend::GpgKeySignature::GetEmail()']]],
- ['getencrcount_213',['GetEncrCount',['../classGpgFrontend_1_1GpgTOFUInfo.html#abc53f7ca1b737ed1a913ad2f90a346e4',1,'GpgFrontend::GpgTOFUInfo']]],
- ['getencrlast_214',['GetEncrLast',['../classGpgFrontend_1_1GpgTOFUInfo.html#a03f286ac6f16ec6d33eb3dcfd4e3f6d5',1,'GpgFrontend::GpgTOFUInfo']]],
- ['getexpiretime_215',['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_216',['GetFilePath',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aff81f0f98a399fa55b6b0ebf2230d4cf',1,'GpgFrontend::UI::PlainTextEditorPage']]],
- ['getfingerprint_217',['GetFingerprint',['../classGpgFrontend_1_1GpgKey.html#a165b3f645e2c6a4bbd024199e1f1cc9b',1,'GpgFrontend::GpgKey::GetFingerprint()'],['../classGpgFrontend_1_1GpgSignature.html#a627b5206311998dd3f45393344b195be',1,'GpgFrontend::GpgSignature::GetFingerprint()'],['../classGpgFrontend_1_1GpgSubKey.html#a09b00ac6a3b934b816f9522f78e77d59',1,'GpgFrontend::GpgSubKey::GetFingerprint()']]],
- ['getfullid_218',['GetFullID',['../classGpgFrontend_1_1Thread_1_1Task.html#a3df2340426251e9145e5fe4419937e2a',1,'GpgFrontend::Thread::Task']]],
- ['gethashalgo_219',['GetHashAlgo',['../classGpgFrontend_1_1GpgSignature.html#ace10a3ac7f4dc3888b2ad62157213f1c',1,'GpgFrontend::GpgSignature']]],
- ['getid_220',['GetId',['../classGpgFrontend_1_1GpgKey.html#a8930f958f3ca1f5566f63e8c2273837e',1,'GpgFrontend::GpgKey']]],
- ['getid_221',['GetID',['../classGpgFrontend_1_1GpgSubKey.html#a48d3dfbd3aae9523ffbdb916aad8ad53',1,'GpgFrontend::GpgSubKey']]],
- ['getinfo_222',['GetInfo',['../classGpgFrontend_1_1GpgContext.html#a4a8f6ff37e45979159ab375b2c7d48c3',1,'GpgFrontend::GpgContext']]],
- ['getinstance_223',['GetInstance',['../classGpgFrontend_1_1CoreCommonUtil.html#a8588dfa6ccb57c055f022b13e2da1e7c',1,'GpgFrontend::CoreCommonUtil::GetInstance()'],['../classGpgFrontend_1_1CoreSignalStation.html#a0c5893909726b919ea733de9906cfb36',1,'GpgFrontend::CoreSignalStation::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_1UI_1_1SignalStation.html#abe381ce56a7b157a3760b2fd9c3b7419',1,'GpgFrontend::UI::SignalStation::GetInstance()'],['../classGpgFrontend_1_1UI_1_1CommonUtils.html#aed529969f54e39e3f9da14ae6dd00d49',1,'GpgFrontend::UI::CommonUtils::GetInstance()']]],
- ['getinvalid_224',['GetInvalid',['../classGpgFrontend_1_1GpgUID.html#a388ad367d353edd5eeb6e529977c924c',1,'GpgFrontend::GpgUID']]],
- ['getkey_225',['GetKey',['../classGpgFrontend_1_1GpgKeyGetter.html#a94243d09c9418c8ebf0c7cdab4a2b7f1',1,'GpgFrontend::GpgKeyGetter']]],
- ['getkeyid_226',['GetKeyID',['../classGpgFrontend_1_1GpgKeySignature.html#a4277f6deb7c07aaba62fbe8e7867b1fe',1,'GpgFrontend::GpgKeySignature']]],
- ['getkeylength_227',['GetKeyLength',['../classGpgFrontend_1_1GenKeyInfo.html#a4927a9091fa2b2f68f6b60ce78ab2fe9',1,'GpgFrontend::GenKeyInfo::GetKeyLength()'],['../classGpgFrontend_1_1GpgSubKey.html#a18d7a2f0a3cee32a123b780f2b8b8708',1,'GpgFrontend::GpgSubKey::GetKeyLength()']]],
- ['getkeys_228',['GetKeys',['../classGpgFrontend_1_1GpgKeyGetter.html#aa5979c21af58b874b33c203752dcc805',1,'GpgFrontend::GpgKeyGetter']]],
- ['getkeyscopy_229',['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_230',['GetKeySizeStr',['../classGpgFrontend_1_1GenKeyInfo.html#a0bda4b4161d805582869ec0e56ade07c',1,'GpgFrontend::GenKeyInfo']]],
- ['getlastupdatetime_231',['GetLastUpdateTime',['../classGpgFrontend_1_1GpgKey.html#a3532e20298b642f5d312712fa8a791df',1,'GpgFrontend::GpgKey']]],
- ['getlatestversion_232',['getLatestVersion',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a7329657135624fc42ad80d821e11befe',1,'GpgFrontend::UI::UpdateTab']]],
- ['getlocaledir_233',['GetLocaleDir',['../classGpgFrontend_1_1GlobalSettingStation.html#a0b3780564305e9b210d66ef377c21565',1,'GpgFrontend::GlobalSettingStation']]],
- ['getlogdir_234',['GetLogDir',['../classGpgFrontend_1_1GlobalSettingStation.html#a7da9b08291ef2391892f5c9375b8db23',1,'GpgFrontend::GlobalSettingStation']]],
- ['getname_235',['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_236',['GetObjectSize',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#aa35e6ad1ef3a5733fb338f3333b5c637',1,'GpgFrontend::Thread::Task::DataObject']]],
- ['getownertrust_237',['GetOwnerTrust',['../classGpgFrontend_1_1GpgKey.html#a3327ad34ff14feb75f3fbfc2bfb7fc44',1,'GpgFrontend::GpgKey']]],
- ['getpassphrase_238',['GetPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#a890ee16ef6088570360a073a6b531c89',1,'GpgFrontend::GenKeyInfo']]],
- ['getpolicy_239',['GetPolicy',['../classGpgFrontend_1_1GpgTOFUInfo.html#a34d1073bb25a8958e70016f3cd6b167f',1,'GpgFrontend::GpgTOFUInfo']]],
- ['getprimarykeylength_240',['GetPrimaryKeyLength',['../classGpgFrontend_1_1GpgKey.html#a5b276fdeb438fe14ec2850d799401be6',1,'GpgFrontend::GpgKey']]],
- ['getprivatechecked_241',['GetPrivateChecked',['../classGpgFrontend_1_1UI_1_1KeyList.html#a81c2e36427371fa6ae6381870b9b5bdd',1,'GpgFrontend::UI::KeyList']]],
- ['getprotocol_242',['GetProtocol',['../classGpgFrontend_1_1GpgKey.html#ad2440a2902c81192d5549fe951ddb130',1,'GpgFrontend::GpgKey']]],
- ['getpubkey_243',['GetPubkey',['../classGpgFrontend_1_1GpgKeyGetter.html#a7a8bc7c0f12a11e108051e4c824fc430',1,'GpgFrontend::GpgKeyGetter']]],
- ['getpubkeyalgo_244',['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_245',['GetPublicKeyAlgo',['../classGpgFrontend_1_1GpgKey.html#a1c21bc3b1788753f56272ad73052fc5f',1,'GpgFrontend::GpgKey']]],
- ['getresourcedir_246',['GetResourceDir',['../classGpgFrontend_1_1GlobalSettingStation.html#afc1aa3dec55ae4e741f92fce1140a2d0',1,'GpgFrontend::GlobalSettingStation']]],
- ['getresultreport_247',['GetResultReport',['../classGpgFrontend_1_1GpgResultAnalyse.html#aa9e35e573ea4c0ebdbb014d1afbaab9d',1,'GpgFrontend::GpgResultAnalyse']]],
- ['getrevoked_248',['GetRevoked',['../classGpgFrontend_1_1GpgUID.html#a32450fbf22c64cf522e9a090423344a2',1,'GpgFrontend::GpgUID']]],
- ['getselected_249',['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_250',['GetSelectedKey',['../classGpgFrontend_1_1UI_1_1KeyList.html#ab4368b81402e2468a9e960de8fb7080f',1,'GpgFrontend::UI::KeyList']]],
- ['getsequency_251',['GetSequency',['../classGpgFrontend_1_1Thread_1_1Task.html#a80f47accc0832e3aee686ee2879b431e',1,'GpgFrontend::Thread::Task']]],
- ['getsignatures_252',['GetSignatures',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a2063acf8262e2c600b14ed1948486ac3',1,'GpgFrontend::GpgVerifyResultAnalyse::GetSignatures()'],['../classGpgFrontend_1_1GpgUID.html#af7b5310b319378c30c488277e95ef601',1,'GpgFrontend::GpgUID::GetSignatures()']]],
- ['getsigncount_253',['GetSignCount',['../classGpgFrontend_1_1GpgTOFUInfo.html#a681046a3916d0d0cdcf0852bfa76fdb0',1,'GpgFrontend::GpgTOFUInfo']]],
- ['getsigners_254',['GetSigners',['../classGpgFrontend_1_1GpgBasicOperator.html#a78f37b8d5afd6c0248665a4415f880cf',1,'GpgFrontend::GpgBasicOperator']]],
- ['getsignfirst_255',['GetSignFirst',['../classGpgFrontend_1_1GpgTOFUInfo.html#a788a439b206882c6317162878e2fe0b8',1,'GpgFrontend::GpgTOFUInfo']]],
- ['getsignlast_256',['GetSignLast',['../classGpgFrontend_1_1GpgTOFUInfo.html#a746cbcf731af6b19ade42debbf1e2c8f',1,'GpgFrontend::GpgTOFUInfo']]],
- ['getsingletonstorage_257',['GetSingletonStorage',['../classGpgFrontend_1_1SingletonStorageCollection.html#a6f933390c54b7f55d5ffb4624074725f',1,'GpgFrontend::SingletonStorageCollection']]],
- ['getsizechangestep_258',['GetSizeChangeStep',['../classGpgFrontend_1_1GenKeyInfo.html#ac211a7a615805ae97ff284b46abfeab7',1,'GpgFrontend::GenKeyInfo']]],
- ['getstandalonedatabasedir_259',['GetStandaloneDatabaseDir',['../classGpgFrontend_1_1GlobalSettingStation.html#af484ca46c5df831a9dd76f3a88d66332',1,'GpgFrontend::GlobalSettingStation']]],
- ['getstandalonegpgbindir_260',['GetStandaloneGpgBinDir',['../classGpgFrontend_1_1GlobalSettingStation.html#aa93b21af9ac6649d5749c83c809f5b00',1,'GpgFrontend::GlobalSettingStation']]],
- ['getstatus_261',['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_262',['GetSubKeys',['../classGpgFrontend_1_1GpgKey.html#a746699842f6c49687af0487a8b3b163d',1,'GpgFrontend::GpgKey']]],
- ['getsuggestmaxkeysize_263',['GetSuggestMaxKeySize',['../classGpgFrontend_1_1GenKeyInfo.html#ae461a553176ad1ab0c1121ea6de6c8c2',1,'GpgFrontend::GenKeyInfo']]],
- ['getsuggestminkeysize_264',['GetSuggestMinKeySize',['../classGpgFrontend_1_1GenKeyInfo.html#a0b1612421148b86919b7130ed148ca51',1,'GpgFrontend::GenKeyInfo']]],
- ['getsummary_265',['GetSummary',['../classGpgFrontend_1_1GpgSignature.html#a3b143f6e13b71663d81fc0f326aad17f',1,'GpgFrontend::GpgSignature']]],
- ['getsupportedkeyalgo_266',['GetSupportedKeyAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#ac0dbb2d89b1e5f9b272679ba3f24314e',1,'GpgFrontend::GenKeyInfo']]],
- ['getsupportedkeyalgostandalone_267',['GetSupportedKeyAlgoStandalone',['../classGpgFrontend_1_1GenKeyInfo.html#afb8315b6612c64b3921b72df98ebcc74',1,'GpgFrontend::GenKeyInfo']]],
- ['getsupportedsubkeyalgo_268',['GetSupportedSubkeyAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#a168d6fe5252812f5984ba6d8046c7741',1,'GpgFrontend::GenKeyInfo']]],
- ['getsupportedsubkeyalgostandalone_269',['GetSupportedSubkeyAlgoStandalone',['../classGpgFrontend_1_1GenKeyInfo.html#a6819b0ca3ef7712b85ae320030cde023',1,'GpgFrontend::GenKeyInfo']]],
- ['gettabidstosave_270',['GetTabIdsToSave',['../classGpgFrontend_1_1UI_1_1QuitDialog.html#aec364c38056b6d92c172f8cdfb5f8e82',1,'GpgFrontend::UI::QuitDialog']]],
- ['gettempcachevalue_271',['GetTempCacheValue',['../classGpgFrontend_1_1CoreCommonUtil.html#a7689d3abb54a1cef6a826fc944d9dec7',1,'GpgFrontend::CoreCommonUtil']]],
- ['gettextpage_272',['GetTextPage',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a6218e6e12bdba0228e4ab4276f7fed7a',1,'GpgFrontend::UI::PlainTextEditorPage']]],
- ['gettofuinfos_273',['GetTofuInfos',['../classGpgFrontend_1_1GpgUID.html#a2a36376484f7c1a4a19377d24e47a0b2',1,'GpgFrontend::GpgUID']]],
- ['getuid_274',['GetUID',['../classGpgFrontend_1_1GpgKeySignature.html#a95254ea2c00829b9dc87adc4a317cde5',1,'GpgFrontend::GpgKeySignature::GetUID()'],['../classGpgFrontend_1_1GpgUID.html#a467897d43a18b0cadd2e2e44384f6cdd',1,'GpgFrontend::GpgUID::GetUID()']]],
- ['getuids_275',['GetUIDs',['../classGpgFrontend_1_1GpgKey.html#ac8b13b45e487cdc423b78d3017897f99',1,'GpgFrontend::GpgKey']]],
- ['getuisettings_276',['GetUISettings',['../classGpgFrontend_1_1GlobalSettingStation.html#a14433405831283cd95091d741614d03b',1,'GpgFrontend::GlobalSettingStation']]],
- ['getuserid_277',['GetUserid',['../classGpgFrontend_1_1GenKeyInfo.html#a4ee4a0659e76376d9bfc527c334392e1',1,'GpgFrontend::GenKeyInfo']]],
- ['getuuid_278',['GetUUID',['../classGpgFrontend_1_1Thread_1_1Task.html#a50b91d27874af31ef13c493b00824ccf',1,'GpgFrontend::Thread::Task']]],
- ['getvalidity_279',['GetValidity',['../classGpgFrontend_1_1GpgSignature.html#a09cb6b465e85dffcf7867e70a276e9ad',1,'GpgFrontend::GpgSignature::GetValidity()'],['../classGpgFrontend_1_1GpgTOFUInfo.html#a8770062c9e0c3875083d2c92ebe8ccb0',1,'GpgFrontend::GpgTOFUInfo::GetValidity()']]],
- ['global_5fsetting_5fstation_5f_280',['global_setting_station_',['../classGpgFrontend_1_1DataObjectOperator.html#a3c195f8e4c30d95be14a6d43e9282601',1,'GpgFrontend::DataObjectOperator']]],
- ['globalsettingstation_281',['GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html#abdc6dda369d4214e43ffa2930f7386b0',1,'GpgFrontend::GlobalSettingStation::GlobalSettingStation()'],['../classGpgFrontend_1_1GlobalSettingStation.html',1,'GpgFrontend::GlobalSettingStation']]],
- ['gnupg_5fact_5f_282',['gnupg_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a79b83f536a7c4299eaa3d22e4e875227',1,'GpgFrontend::UI::MainWindow']]],
- ['gnupghomepath_283',['GnuPGHomePath',['../classGpgFrontend_1_1GpgInfo.html#a0c1dbdb54f880a620419fdbd8336dc5d',1,'GpgFrontend::GpgInfo']]],
- ['gnupgtab_284',['GnupgTab',['../classGpgFrontend_1_1UI_1_1GnupgTab.html#ab9d9e8af4494659f13b87804e7318a79',1,'GpgFrontend::UI::GnupgTab::GnupgTab()'],['../classGpgFrontend_1_1UI_1_1GnupgTab.html',1,'GpgFrontend::UI::GnupgTab']]],
- ['gnupgversion_285',['GnupgVersion',['../classGpgFrontend_1_1GpgInfo.html#abbb3d503b10073bebf86d79bbaeab4c9',1,'GpgFrontend::GpgInfo']]],
- ['good_286',['good',['../classGpgFrontend_1_1GpgContext.html#a73c505a2f3d39d1638dc4d9a3e13a913',1,'GpgFrontend::GpgContext']]],
- ['gpg_5fmenu_5f_287',['gpg_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2bed0c3b032269c9eb82bc7c068852cb',1,'GpgFrontend::UI::MainWindow']]],
- ['gpgadvancedoperator_288',['GpgAdvancedOperator',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a9233156767f1d45272b95decd18241e3',1,'GpgFrontend::GpgAdvancedOperator::GpgAdvancedOperator()'],['../classGpgFrontend_1_1GpgAdvancedOperator.html',1,'GpgFrontend::GpgAdvancedOperator']]],
- ['gpgagentpath_289',['GpgAgentPath',['../classGpgFrontend_1_1GpgInfo.html#af6ca2e99ffc487b8e4aa251d3cb23191',1,'GpgFrontend::GpgInfo']]],
- ['gpgbasicoperator_290',['GpgBasicOperator',['../classGpgFrontend_1_1GpgBasicOperator.html#a139be86330f88e5f833aa24263a3b2ae',1,'GpgFrontend::GpgBasicOperator::GpgBasicOperator()'],['../classGpgFrontend_1_1GpgBasicOperator.html',1,'GpgFrontend::GpgBasicOperator']]],
- ['gpgcommandexecutor_291',['GpgCommandExecutor',['../classGpgFrontend_1_1GpgCommandExecutor.html#a94240f423464600938bfcafa2b186c38',1,'GpgFrontend::GpgCommandExecutor::GpgCommandExecutor()'],['../classGpgFrontend_1_1GpgCommandExecutor.html',1,'GpgFrontend::GpgCommandExecutor']]],
- ['gpgconfpath_292',['GpgConfPath',['../classGpgFrontend_1_1GpgInfo.html#a2fcd53b59bc251c38eb8d79cec946777',1,'GpgFrontend::GpgInfo']]],
- ['gpgconstants_293',['GpgConstants',['../classGpgFrontend_1_1GpgConstants.html',1,'GpgFrontend']]],
- ['gpgcontext_294',['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_295',['GpgContextInitArgs',['../structGpgFrontend_1_1GpgContextInitArgs.html',1,'GpgFrontend']]],
- ['gpgdata_296',['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_297',['GpgDecryptResultAnalyse',['../classGpgFrontend_1_1GpgDecryptResultAnalyse.html#a442438ae58cdd7220f0e4b0792e5a372',1,'GpgFrontend::GpgDecryptResultAnalyse::GpgDecryptResultAnalyse()'],['../classGpgFrontend_1_1GpgDecryptResultAnalyse.html',1,'GpgFrontend::GpgDecryptResultAnalyse']]],
- ['gpgencryptresultanalyse_298',['GpgEncryptResultAnalyse',['../classGpgFrontend_1_1GpgEncryptResultAnalyse.html#a0801e32c8709da373f6715bc994a7747',1,'GpgFrontend::GpgEncryptResultAnalyse::GpgEncryptResultAnalyse()'],['../classGpgFrontend_1_1GpgEncryptResultAnalyse.html',1,'GpgFrontend::GpgEncryptResultAnalyse']]],
- ['gpgfileopera_299',['GpgFileOpera',['../classGpgFrontend_1_1GpgFileOpera.html#aa81da3d72c4fbc57e7138bfec7731152',1,'GpgFrontend::GpgFileOpera::GpgFileOpera()'],['../classGpgFrontend_1_1GpgFileOpera.html',1,'GpgFrontend::GpgFileOpera']]],
- ['gpgfrontend_300',['GpgFrontend',['../namespaceGpgFrontend.html',1,'']]],
- ['gpgfrontend_20develop_20document_20main_20page_301',['GpgFrontend Develop Document Main Page',['../index.html',1,'']]],
- ['gpgfrontendapplication_302',['GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html',1,'GpgFrontend::UI::GpgFrontendApplication'],['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#ac0290f06e08f2714f9727bb578df1298',1,'GpgFrontend::UI::GpgFrontendApplication::GpgFrontendApplication()']]],
- ['gpgimportedkey_303',['GpgImportedKey',['../classGpgFrontend_1_1GpgImportedKey.html',1,'GpgFrontend']]],
- ['gpgimportinformation_304',['GpgImportInformation',['../classGpgFrontend_1_1GpgImportInformation.html',1,'GpgFrontend::GpgImportInformation'],['../classGpgFrontend_1_1GpgImportInformation.html#ab282d4f701403cd68eb02d1aad30be56',1,'GpgFrontend::GpgImportInformation::GpgImportInformation()']]],
- ['gpginfo_305',['GpgInfo',['../classGpgFrontend_1_1GpgInfo.html',1,'GpgFrontend']]],
- ['gpgkey_306',['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_307',['GpgKeyGetter',['../classGpgFrontend_1_1GpgKeyGetter.html',1,'GpgFrontend::GpgKeyGetter'],['../classGpgFrontend_1_1GpgKeyGetter.html#a8eeee9f6dd74dc24c24794ce63c62285',1,'GpgFrontend::GpgKeyGetter::GpgKeyGetter()']]],
- ['gpgkeyimportexporter_308',['GpgKeyImportExporter',['../classGpgFrontend_1_1GpgKeyImportExporter.html',1,'GpgFrontend::GpgKeyImportExporter'],['../classGpgFrontend_1_1GpgKeyImportExporter.html#a0eede7c782d17b32d6c1f30cd8496561',1,'GpgFrontend::GpgKeyImportExporter::GpgKeyImportExporter()']]],
- ['gpgkeymanager_309',['GpgKeyManager',['../classGpgFrontend_1_1GpgKeyManager.html',1,'GpgFrontend::GpgKeyManager'],['../classGpgFrontend_1_1GpgKeyManager.html#a210b717fd8ee63b064d77f32b0df4c5d',1,'GpgFrontend::GpgKeyManager::GpgKeyManager()']]],
- ['gpgkeyopera_310',['GpgKeyOpera',['../classGpgFrontend_1_1GpgKeyOpera.html',1,'GpgFrontend::GpgKeyOpera'],['../classGpgFrontend_1_1GpgKeyOpera.html#a01d6a920156a38a34c57d9c49c361079',1,'GpgFrontend::GpgKeyOpera::GpgKeyOpera()']]],
- ['gpgkeysignature_311',['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_312',['GpgResultAnalyse',['../classGpgFrontend_1_1GpgResultAnalyse.html',1,'GpgFrontend::GpgResultAnalyse'],['../classGpgFrontend_1_1GpgResultAnalyse.html#aa3c9bdf1ea4c87476010ef32fd2fb426',1,'GpgFrontend::GpgResultAnalyse::GpgResultAnalyse()']]],
- ['gpgsignature_313',['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_314',['GpgSignResultAnalyse',['../classGpgFrontend_1_1GpgSignResultAnalyse.html',1,'GpgFrontend::GpgSignResultAnalyse'],['../classGpgFrontend_1_1GpgSignResultAnalyse.html#a3ddd2d52ad91fdf7f4c8740312570c8e',1,'GpgFrontend::GpgSignResultAnalyse::GpgSignResultAnalyse()']]],
- ['gpgsubkey_315',['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_316',['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_317',['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_318',['GpgUIDOperator',['../classGpgFrontend_1_1GpgUIDOperator.html',1,'GpgFrontend::GpgUIDOperator'],['../classGpgFrontend_1_1GpgUIDOperator.html#ab74a830c858ab9ff135375743393a7c7',1,'GpgFrontend::GpgUIDOperator::GpgUIDOperator()']]],
- ['gpgverifyresultanalyse_319',['GpgVerifyResultAnalyse',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html',1,'GpgFrontend::GpgVerifyResultAnalyse'],['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#ab1d67da5dbe5bd2d665f7121e5f5354b',1,'GpgFrontend::GpgVerifyResultAnalyse::GpgVerifyResultAnalyse()']]],
- ['rawapi_320',['RawAPI',['../namespaceGpgFrontend_1_1RawAPI.html',1,'GpgFrontend']]],
- ['thread_321',['Thread',['../namespaceGpgFrontend_1_1Thread.html',1,'GpgFrontend']]],
- ['ui_322',['UI',['../namespaceGpgFrontend_1_1UI.html',1,'GpgFrontend']]]
+ ['generaldialog_177',['GeneralDialog',['../classGpgFrontend_1_1UI_1_1GeneralDialog.html#ac9de4c49668ffaeb6916c64f878a202c',1,'GpgFrontend::UI::GeneralDialog::GeneralDialog()'],['../classGpgFrontend_1_1UI_1_1GeneralDialog.html',1,'GpgFrontend::UI::GeneralDialog']]],
+ ['generalmainwindow_178',['GeneralMainWindow',['../classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a62b24183ebf9da18852084879bcb1013',1,'GpgFrontend::UI::GeneralMainWindow::GeneralMainWindow()'],['../classGpgFrontend_1_1UI_1_1GeneralMainWindow.html',1,'GpgFrontend::UI::GeneralMainWindow']]],
+ ['generaltab_179',['GeneralTab',['../classGpgFrontend_1_1UI_1_1GeneralTab.html#a214079dfbacdc6898146c8468611cf0c',1,'GpgFrontend::UI::GeneralTab::GeneralTab()'],['../classGpgFrontend_1_1UI_1_1GeneralTab.html',1,'GpgFrontend::UI::GeneralTab']]],
+ ['generate_180',['Generate',['../classGpgFrontend_1_1PassphraseGenerator.html#a8b4ee1083343fba6d947b85cd66079b8',1,'GpgFrontend::PassphraseGenerator']]],
+ ['generate_5fkey_5fpackage_5fname_181',['generate_key_package_name',['../classGpgFrontend_1_1KeyPackageOperator.html#a825d987dacd8a99d9d87729e1861a152',1,'GpgFrontend::KeyPackageOperator']]],
+ ['generate_5fuuid_182',['generate_uuid',['../classGpgFrontend_1_1Thread_1_1Task.html#a96d087abb7cf99d16f778f1a93b4f9e5',1,'GpgFrontend::Thread::Task']]],
+ ['generatekey_183',['GenerateKey',['../classGpgFrontend_1_1GpgKeyOpera.html#a4cc3ac91613164d7dc61a016a2b4caea',1,'GpgFrontend::GpgKeyOpera']]],
+ ['generatekeypackage_184',['GenerateKeyPackage',['../classGpgFrontend_1_1KeyPackageOperator.html#ade02f022e405e98377343c4667c206e9',1,'GpgFrontend::KeyPackageOperator']]],
+ ['generatekeypackagename_185',['GenerateKeyPackageName',['../classGpgFrontend_1_1KeyPackageOperator.html#ae90b362a32b6f6014cda1dc232bd3f0e',1,'GpgFrontend::KeyPackageOperator']]],
+ ['generatepassphrase_186',['GeneratePassphrase',['../classGpgFrontend_1_1KeyPackageOperator.html#a6d9cf022a1e0cf54c061495f59c1b4b9',1,'GpgFrontend::KeyPackageOperator']]],
+ ['generaterevokecert_187',['GenerateRevokeCert',['../classGpgFrontend_1_1GpgKeyOpera.html#a91a9a9f24f6b620ea7b906c529e3d9a4',1,'GpgFrontend::GpgKeyOpera']]],
+ ['generatesubkey_188',['GenerateSubkey',['../classGpgFrontend_1_1GpgKeyOpera.html#a882d99e8407cc22fb8b6e61c531fbe85',1,'GpgFrontend::GpgKeyOpera']]],
+ ['genkeyinfo_189',['GenKeyInfo',['../classGpgFrontend_1_1GenKeyInfo.html#a34eca1662ba8d4645751f3ee66582b04',1,'GpgFrontend::GenKeyInfo::GenKeyInfo()'],['../classGpgFrontend_1_1GenKeyInfo.html',1,'GpgFrontend::GenKeyInfo']]],
+ ['get_5ffile_5fextension_190',['get_file_extension',['../namespaceGpgFrontend.html#acff2cf5dd5b112b324fa6574ee935f79',1,'GpgFrontend']]],
+ ['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_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_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']]],
+ ['getcertsdir_205',['GetCertsDir',['../classGpgFrontend_1_1GlobalSettingStation.html#a385ae4ab6ad5b17742a5405fa693d789',1,'GpgFrontend::GlobalSettingStation']]],
+ ['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_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_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_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_1GpgKey.html#a8930f958f3ca1f5566f63e8c2273837e',1,'GpgFrontend::GpgKey']]],
+ ['getid_222',['GetID',['../classGpgFrontend_1_1GpgSubKey.html#a48d3dfbd3aae9523ffbdb916aad8ad53',1,'GpgFrontend::GpgSubKey']]],
+ ['getinfo_223',['GetInfo',['../classGpgFrontend_1_1GpgContext.html#a4a8f6ff37e45979159ab375b2c7d48c3',1,'GpgFrontend::GpgContext']]],
+ ['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']]],
+ ['getkeylength_228',['GetKeyLength',['../classGpgFrontend_1_1GenKeyInfo.html#a4927a9091fa2b2f68f6b60ce78ab2fe9',1,'GpgFrontend::GenKeyInfo::GetKeyLength()'],['../classGpgFrontend_1_1GpgSubKey.html#a18d7a2f0a3cee32a123b780f2b8b8708',1,'GpgFrontend::GpgSubKey::GetKeyLength()']]],
+ ['getkeys_229',['GetKeys',['../classGpgFrontend_1_1GpgKeyGetter.html#aa5979c21af58b874b33c203752dcc805',1,'GpgFrontend::GpgKeyGetter']]],
+ ['getkeyscopy_230',['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_231',['GetKeySizeStr',['../classGpgFrontend_1_1GenKeyInfo.html#a0bda4b4161d805582869ec0e56ade07c',1,'GpgFrontend::GenKeyInfo']]],
+ ['getlastupdatetime_232',['GetLastUpdateTime',['../classGpgFrontend_1_1GpgKey.html#a3532e20298b642f5d312712fa8a791df',1,'GpgFrontend::GpgKey']]],
+ ['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_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']]],
+ ['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 d4ae852d..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_323',['hash_key_',['../classGpgFrontend_1_1DataObjectOperator.html#ae409c3562c3e08931daa17f5790c508b',1,'GpgFrontend::DataObjectOperator']]],
- ['help_5fmenu_5f_324',['help_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a89fa105ed54d2189d762668262d74c63',1,'GpgFrontend::UI::MainWindow']]],
- ['helppage_325',['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 d1569413..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_326',['import_button_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8538940a9a5dea7ddf53c89acdeb83be',1,'GpgFrontend::UI::MainWindow']]],
- ['import_5fkey_5ffrom_5fedit_5fact_5f_327',['import_key_from_edit_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a01b85fb17c373d8f97ce439027c6d04e',1,'GpgFrontend::UI::MainWindow']]],
- ['import_5fkey_5ffrom_5fkeyserver_328',['import_key_from_keyserver',['../namespaceGpgFrontend_1_1UI.html#aa346bd199cecc61b15ef406728b58770',1,'GpgFrontend::UI']]],
- ['import_5fkey_5fmenu_5f_329',['import_key_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8d6fe32ab64797459443ed285d769745',1,'GpgFrontend::UI::MainWindow']]],
- ['import_5fkeys_330',['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_331',['import_unknown_key_from_keyserver',['../namespaceGpgFrontend_1_1UI.html#a9ab218dde057182cb4911c4792acd925',1,'GpgFrontend::UI']]],
- ['importkey_332',['ImportKey',['../classGpgFrontend_1_1GpgKeyImportExporter.html#ab7a9be5283047695cd47562775adf79d',1,'GpgFrontend::GpgKeyImportExporter']]],
- ['importkeypackage_333',['ImportKeyPackage',['../classGpgFrontend_1_1KeyPackageOperator.html#a89538b180a42eb7d6ae53583fe10ee07',1,'GpgFrontend::KeyPackageOperator']]],
- ['infoboardstatus_334',['InfoBoardStatus',['../namespaceGpgFrontend_1_1UI.html#acbaebd342a317b1f067942e5144bb00d',1,'GpgFrontend::UI']]],
- ['infoboardwidget_335',['InfoBoardWidget',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html',1,'GpgFrontend::UI::InfoBoardWidget'],['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#adeef521a8838bf2a1692c25d9b108010',1,'GpgFrontend::UI::InfoBoardWidget::InfoBoardWidget()']]],
- ['infotab_336',['InfoTab',['../classGpgFrontend_1_1UI_1_1InfoTab.html',1,'GpgFrontend::UI::InfoTab'],['../classGpgFrontend_1_1UI_1_1InfoTab.html#a99d8b059ee28ea257981892e0b35d4cc',1,'GpgFrontend::UI::InfoTab::InfoTab()']]],
- ['infovalid_337',['InfoValid',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#aec79eefdc19c90e046cb48bca347ff1c',1,'GpgFrontend::UI::SoftwareVersion']]],
- ['init_338',['Init',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a08ba4521f68c488b23b651e201011759',1,'GpgFrontend::UI::MainWindow']]],
- ['init_5fapp_5fsecure_5fkey_339',['init_app_secure_key',['../classGpgFrontend_1_1DataObjectOperator.html#a6b357780482f0e0c021ad55a81eb37cf',1,'GpgFrontend::DataObjectOperator']]],
- ['init_5flocale_340',['init_locale',['../namespaceGpgFrontend_1_1UI.html#a157c74e50283da9ed554cf7bf90afbee',1,'GpgFrontend::UI']]],
- ['initcoreloggingsystem_341',['InitCoreLoggingSystem',['../namespaceGpgFrontend.html#ab4a865228be071282d2a08e66ef6cb68',1,'GpgFrontend']]],
- ['initgpgfrontendui_342',['InitGpgFrontendUI',['../namespaceGpgFrontend_1_1UI.html#ab0311557c1d7bde9c56cbca85fefa6ad',1,'GpgFrontend::UI']]],
- ['instances_5fmap_5f_343',['instances_map_',['../classGpgFrontend_1_1SingletonStorage.html#a6181f2b5af39c6b86de89e1ba9eeff1c',1,'GpgFrontend::SingletonStorage']]],
- ['instances_5fmutex_5f_344',['instances_mutex_',['../classGpgFrontend_1_1SingletonStorage.html#a15161d0afafec602018a89266dab5641',1,'GpgFrontend::SingletonStorage']]],
- ['intropage_345',['IntroPage',['../classGpgFrontend_1_1UI_1_1IntroPage.html',1,'GpgFrontend::UI::IntroPage'],['../classGpgFrontend_1_1UI_1_1IntroPage.html#aed4220a7372b192ee4e8bc5024db922d',1,'GpgFrontend::UI::IntroPage::IntroPage()']]],
- ['isallowauthentication_346',['IsAllowAuthentication',['../classGpgFrontend_1_1GenKeyInfo.html#aabdf981c65a0efde1e8905441b9b9c87',1,'GpgFrontend::GenKeyInfo']]],
- ['isallowcertification_347',['IsAllowCertification',['../classGpgFrontend_1_1GenKeyInfo.html#ad47ceeb1ccfa8862843034e51b4d8be7',1,'GpgFrontend::GenKeyInfo']]],
- ['isallowchangeauthentication_348',['IsAllowChangeAuthentication',['../classGpgFrontend_1_1GenKeyInfo.html#aaf8ab7c6564a2836837a537111d6f5b4',1,'GpgFrontend::GenKeyInfo']]],
- ['isallowchangecertification_349',['IsAllowChangeCertification',['../classGpgFrontend_1_1GenKeyInfo.html#adbcddd0fa0a273f9b77fe1297633dabc',1,'GpgFrontend::GenKeyInfo']]],
- ['isallowchangeencryption_350',['IsAllowChangeEncryption',['../classGpgFrontend_1_1GenKeyInfo.html#ad04a906300bea028c6fb6b1b2da1d149',1,'GpgFrontend::GenKeyInfo']]],
- ['isallowchangesigning_351',['IsAllowChangeSigning',['../classGpgFrontend_1_1GenKeyInfo.html#a06f95a8d26da79bcbe7d51e266879a94',1,'GpgFrontend::GenKeyInfo']]],
- ['isallowencryption_352',['IsAllowEncryption',['../classGpgFrontend_1_1GenKeyInfo.html#a28ed8a65243e5bc69403305752c2cdc9',1,'GpgFrontend::GenKeyInfo']]],
- ['isallownopassphrase_353',['IsAllowNoPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#af6a79124a4571ff7f37c1c5e6c1a9415',1,'GpgFrontend::GenKeyInfo']]],
- ['isallowsigning_354',['IsAllowSigning',['../classGpgFrontend_1_1GenKeyInfo.html#ad972292c408cb83c08e739327795a5f0',1,'GpgFrontend::GenKeyInfo']]],
- ['iscardkey_355',['IsCardKey',['../classGpgFrontend_1_1GpgSubKey.html#ad818aa66e47d6686eb8ff253b3c21814',1,'GpgFrontend::GpgSubKey']]],
- ['isdisabled_356',['IsDisabled',['../classGpgFrontend_1_1GpgSubKey.html#a75abb60a2130efc7fad8ab8fb3157042',1,'GpgFrontend::GpgSubKey::IsDisabled()'],['../classGpgFrontend_1_1GpgKey.html#a7eaf1e722d8a59f6a86d8e732217d89c',1,'GpgFrontend::GpgKey::IsDisabled()']]],
- ['isdiscarded_357',['IsDiscarded',['../classGpgFrontend_1_1UI_1_1QuitDialog.html#a4c4bc06d1d168f01569ed83dcfd50d55',1,'GpgFrontend::UI::QuitDialog']]],
- ['isexpired_358',['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_359',['IsExportable',['../classGpgFrontend_1_1GpgKeySignature.html#a19fc1ca3733b576e12628e333e2c449e',1,'GpgFrontend::GpgKeySignature']]],
- ['isgood_360',['IsGood',['../classGpgFrontend_1_1GpgKey.html#a59e76d40f01e765f0544e5c6a2851be6',1,'GpgFrontend::GpgKey']]],
- ['ishasactualauthenticationcapability_361',['IsHasActualAuthenticationCapability',['../classGpgFrontend_1_1GpgKey.html#a371a24c4e9d3b99a36f76ff8c7f2d0e6',1,'GpgFrontend::GpgKey']]],
- ['ishasactualcertificationcapability_362',['IsHasActualCertificationCapability',['../classGpgFrontend_1_1GpgKey.html#ae370e41a7ea7307fbf4d28e0f2a67e0c',1,'GpgFrontend::GpgKey']]],
- ['ishasactualencryptioncapability_363',['IsHasActualEncryptionCapability',['../classGpgFrontend_1_1GpgKey.html#aaa66d803456152fed9ba4cf5bce7b99d',1,'GpgFrontend::GpgKey']]],
- ['ishasactualsigningcapability_364',['IsHasActualSigningCapability',['../classGpgFrontend_1_1GpgKey.html#aefa0a44adb1b7c49553a85b545fdffe1',1,'GpgFrontend::GpgKey']]],
- ['ishasauthenticationcapability_365',['IsHasAuthenticationCapability',['../classGpgFrontend_1_1GpgKey.html#afdffba6dfb6009a0b320623df7a26be0',1,'GpgFrontend::GpgKey::IsHasAuthenticationCapability()'],['../classGpgFrontend_1_1GpgSubKey.html#a04d9df643cd08200cd742dc243be6cd6',1,'GpgFrontend::GpgSubKey::IsHasAuthenticationCapability()']]],
- ['ishascardkey_366',['IsHasCardKey',['../classGpgFrontend_1_1GpgKey.html#afedc843415bd4b59687e975006e470ed',1,'GpgFrontend::GpgKey']]],
- ['ishascertificationcapability_367',['IsHasCertificationCapability',['../classGpgFrontend_1_1GpgSubKey.html#a56938360f873949aa9ba3dbdaab519d1',1,'GpgFrontend::GpgSubKey::IsHasCertificationCapability()'],['../classGpgFrontend_1_1GpgKey.html#a2d28e72cfb741deeadfe02ff456fb490',1,'GpgFrontend::GpgKey::IsHasCertificationCapability()']]],
- ['ishasencryptioncapability_368',['IsHasEncryptionCapability',['../classGpgFrontend_1_1GpgSubKey.html#ab67395a986184cb9b20f3dc178fc52be',1,'GpgFrontend::GpgSubKey::IsHasEncryptionCapability()'],['../classGpgFrontend_1_1GpgKey.html#a60b342ca6e1062d4489d8ba8f7a5a605',1,'GpgFrontend::GpgKey::IsHasEncryptionCapability() const']]],
- ['ishasmasterkey_369',['IsHasMasterKey',['../classGpgFrontend_1_1GpgKey.html#aadac1b776764ee9d0ca4f8bb9f9e0741',1,'GpgFrontend::GpgKey']]],
- ['ishassigningcapability_370',['IsHasSigningCapability',['../classGpgFrontend_1_1GpgSubKey.html#ab9208165c74b93fa8c5b7a06cd808f56',1,'GpgFrontend::GpgSubKey::IsHasSigningCapability()'],['../classGpgFrontend_1_1GpgKey.html#a635bbf8f08268cfdac1bc120981df877',1,'GpgFrontend::GpgKey::IsHasSigningCapability()']]],
- ['isinvalid_371',['IsInvalid',['../classGpgFrontend_1_1GpgKeySignature.html#a1725474a1c61c0a3d724dc2f999cb24a',1,'GpgFrontend::GpgKeySignature']]],
- ['isnonexpired_372',['IsNonExpired',['../classGpgFrontend_1_1GenKeyInfo.html#aeef7697c91b5b5998088979e09332380',1,'GpgFrontend::GenKeyInfo']]],
- ['isnopassphrase_373',['IsNoPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#a848181796a99bec8d32dc5eac240ee01',1,'GpgFrontend::GenKeyInfo']]],
- ['isprivatekey_374',['IsPrivateKey',['../classGpgFrontend_1_1GpgKey.html#a888c0263f04bdd52967e092b9c73eb6d',1,'GpgFrontend::GpgKey::IsPrivateKey()'],['../classGpgFrontend_1_1GpgSubKey.html#accb86b50755698b3e1e7fdfe06f44e84',1,'GpgFrontend::GpgSubKey::IsPrivateKey()']]],
- ['isrevoked_375',['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_376',['IsSecretKey',['../classGpgFrontend_1_1GpgSubKey.html#a8fcbeae2ef3ad73a5aedee19f6de3e60',1,'GpgFrontend::GpgSubKey']]],
- ['issubkey_377',['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 d0d8370f..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_378',['key_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aae9905764b5551208574a932fdfba29c',1,'GpgFrontend::UI::KeyPairDetailTab']]],
- ['key_5fid_5fvar_5flabel_379',['key_id_var_label',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a65176245d280ae0734ef7b5b3f1c4cc4',1,'GpgFrontend::UI::KeyPairDetailTab']]],
- ['key_5fid_5fvar_5flabel_5f_380',['key_id_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a2f634f4c83ab5dd2d088eb07e0d3b862',1,'GpgFrontend::UI::KeyPairSubkeyTab']]],
- ['key_5flist_5fdock_5f_381',['key_list_dock_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adaa66d9cdc51c946efc99bb94deda31c',1,'GpgFrontend::UI::MainWindow']]],
- ['key_5fmenu_5f_382',['key_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a16bbfd12cd3a6f0df9e2c32cf7999e57',1,'GpgFrontend::UI::MainWindow']]],
- ['key_5fsize_5fspin_5fbox_5f_383',['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_384',['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_385',['key_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a38f243880cfb9276545b08f0730811e7',1,'GpgFrontend::UI::MainWindow']]],
- ['key_5ftype_5fcombo_5fbox_5f_386',['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_387',['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_388',['key_usage_group_box_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7b1b9cb46c0547c1e561e56d55616cf1',1,'GpgFrontend::UI::KeyGenDialog']]],
- ['keyboxdpath_389',['KeyboxdPath',['../classGpgFrontend_1_1GpgInfo.html#a072503811cb59dad27040e4e8914d18b',1,'GpgFrontend::GpgInfo']]],
- ['keydetailsdialog_390',['KeyDetailsDialog',['../classGpgFrontend_1_1UI_1_1KeyDetailsDialog.html',1,'GpgFrontend::UI']]],
- ['keygendialog_391',['KeyGenDialog',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html',1,'GpgFrontend::UI::KeyGenDialog'],['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3aef8d2bb8e0d36842532726a6796ab9',1,'GpgFrontend::UI::KeyGenDialog::KeyGenDialog()']]],
- ['keygenpage_392',['KeyGenPage',['../classGpgFrontend_1_1UI_1_1KeyGenPage.html',1,'GpgFrontend::UI::KeyGenPage'],['../classGpgFrontend_1_1UI_1_1KeyGenPage.html#a0eb5dad522c597dcd101c02f496e7e70',1,'GpgFrontend::UI::KeyGenPage::KeyGenPage()']]],
- ['keyimportdetaildialog_393',['KeyImportDetailDialog',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html',1,'GpgFrontend::UI::KeyImportDetailDialog'],['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a0177cdaa19d1f83c9e519039aa7a8ce1',1,'GpgFrontend::UI::KeyImportDetailDialog::KeyImportDetailDialog()']]],
- ['keylist_394',['KeyList',['../classGpgFrontend_1_1UI_1_1KeyList.html',1,'GpgFrontend::UI::KeyList'],['../classGpgFrontend_1_1UI_1_1KeyList.html#a7c9d5cacdb42e1fbda5d3cc96e861418',1,'GpgFrontend::UI::KeyList::KeyList()']]],
- ['keylistcolumn_395',['KeyListColumn',['../structGpgFrontend_1_1UI_1_1KeyListColumn.html',1,'GpgFrontend::UI']]],
- ['keylistrow_396',['KeyListRow',['../structGpgFrontend_1_1UI_1_1KeyListRow.html',1,'GpgFrontend::UI']]],
- ['keymenuability_397',['KeyMenuAbility',['../structGpgFrontend_1_1UI_1_1KeyMenuAbility.html',1,'GpgFrontend::UI']]],
- ['keymgmt_398',['KeyMgmt',['../classGpgFrontend_1_1UI_1_1KeyMgmt.html',1,'GpgFrontend::UI::KeyMgmt'],['../classGpgFrontend_1_1UI_1_1KeyMgmt.html#aefc27b57830cf14a85c2225664f89f64',1,'GpgFrontend::UI::KeyMgmt::KeyMgmt()']]],
- ['keynewuiddialog_399',['KeyNewUIDDialog',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html',1,'GpgFrontend::UI::KeyNewUIDDialog'],['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a7226b139dc7a491e8ba780135654be27',1,'GpgFrontend::UI::KeyNewUIDDialog::KeyNewUIDDialog()']]],
- ['keypackageoperator_400',['KeyPackageOperator',['../classGpgFrontend_1_1KeyPackageOperator.html',1,'GpgFrontend']]],
- ['keypairdetailtab_401',['KeyPairDetailTab',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html',1,'GpgFrontend::UI::KeyPairDetailTab'],['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a76efd8f8d623813be1a329ad01972444',1,'GpgFrontend::UI::KeyPairDetailTab::KeyPairDetailTab()']]],
- ['keypairoperatab_402',['KeyPairOperaTab',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html',1,'GpgFrontend::UI::KeyPairOperaTab'],['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#aad4e209d7b4eb0ac6623b2f12ce5ecc5',1,'GpgFrontend::UI::KeyPairOperaTab::KeyPairOperaTab()']]],
- ['keypairsubkeytab_403',['KeyPairSubkeyTab',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html',1,'GpgFrontend::UI::KeyPairSubkeyTab'],['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a93abe5c0467c7c4a29e0c45437a10732',1,'GpgFrontend::UI::KeyPairSubkeyTab::KeyPairSubkeyTab()']]],
- ['keypairuidtab_404',['KeyPairUIDTab',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html',1,'GpgFrontend::UI::KeyPairUIDTab'],['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#af18c4f08a127d919a316c7e27ba338d3',1,'GpgFrontend::UI::KeyPairUIDTab::KeyPairUIDTab()']]],
- ['keypressevent_405',['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_406',['keys_cache_',['../classGpgFrontend_1_1GpgKeyGetter.html#a9567d5e08ae73c5bafcd1dc378fed066',1,'GpgFrontend::GpgKeyGetter']]],
- ['keys_5fcache_5fmutex_5f_407',['keys_cache_mutex_',['../classGpgFrontend_1_1GpgKeyGetter.html#ae1d7846ad2fa17ab90c72b3186ba5335',1,'GpgFrontend::GpgKeyGetter']]],
- ['keyserverimportdialog_408',['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_409',['KeyServerImportTask',['../classGpgFrontend_1_1UI_1_1KeyServerImportTask.html',1,'GpgFrontend::UI::KeyServerImportTask'],['../classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a1640363b4b27cb3d256181ddc6cdc857',1,'GpgFrontend::UI::KeyServerImportTask::KeyServerImportTask()']]],
- ['keyserversearchtask_410',['KeyServerSearchTask',['../classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html',1,'GpgFrontend::UI::KeyServerSearchTask'],['../classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#a168e21bdfa72f43f91187ab29ece5efa',1,'GpgFrontend::UI::KeyServerSearchTask::KeyServerSearchTask()']]],
- ['keyservertab_411',['KeyserverTab',['../classGpgFrontend_1_1UI_1_1KeyserverTab.html',1,'GpgFrontend::UI::KeyserverTab'],['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#aa3d3561d3bdf95de6486b2caa752616c',1,'GpgFrontend::UI::KeyserverTab::KeyserverTab()']]],
- ['keysetexpiredatedialog_412',['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_413',['KeyTable',['../structGpgFrontend_1_1UI_1_1KeyTable.html',1,'GpgFrontend::UI::KeyTable'],['../structGpgFrontend_1_1UI_1_1KeyTable.html#a88606ba6954d60244faf38de419bfc47',1,'GpgFrontend::UI::KeyTable::KeyTable()']]],
- ['keyuidsigndialog_414',['KeyUIDSignDialog',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html',1,'GpgFrontend::UI::KeyUIDSignDialog'],['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#aaa06ce342178802e76119bec6b26cc55',1,'GpgFrontend::UI::KeyUIDSignDialog::KeyUIDSignDialog()']]],
- ['keyuploaddialog_415',['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 41d09344..7b80e07a 100644
--- a/docs/html/search/all_b.js
+++ b/docs/html/search/all_b.js
@@ -1,8 +1,9 @@
var searchData=
[
- ['latest_5freply_5f_416',['latest_reply_',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#aed545ffa8128acb16bb28c067e032ec9',1,'GpgFrontend::UI::VersionCheckTask']]],
- ['listedkeyservertesttask_417',['ListedKeyServerTestTask',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html',1,'GpgFrontend::UI::ListedKeyServerTestTask'],['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#ae25b5d59b53facc15648ab80ff19ed77',1,'GpgFrontend::UI::ListedKeyServerTestTask::ListedKeyServerTestTask()']]],
- ['listlanguages_418',['ListLanguages',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#acd22ac2fd91704551e5317e2c549ae26',1,'GpgFrontend::UI::SettingsDialog']]],
- ['loadfile_419',['LoadFile',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a72ed46454c833adb038c36d8d4322d18',1,'GpgFrontend::UI::TextEdit']]],
- ['localized_5fhelp_420',['localized_help',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a49fbde87f2ef385b44225acd6ffbc84f',1,'GpgFrontend::UI::HelpPage']]]
+ ['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 6fae3d7d..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_421',['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_422',['MainWindow',['../classGpgFrontend_1_1UI_1_1MainWindow.html',1,'GpgFrontend::UI']]],
- ['markkeys_423',['MarkKeys',['../classGpgFrontend_1_1UI_1_1KeyList.html#a31a4c067eed90830203862cb4adf951e',1,'GpgFrontend::UI::KeyList']]],
- ['maybe_5fsave_5fcurrent_5ftab_424',['maybe_save_current_tab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a8fad090a19479a9fe89432300cca2b6c',1,'GpgFrontend::UI::TextEdit']]],
- ['maybesaveanytab_425',['MaybeSaveAnyTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3c976a5494d06c2186d94e7cc8ebe457',1,'GpgFrontend::UI::TextEdit']]],
- ['modifypassword_426',['ModifyPassword',['../classGpgFrontend_1_1GpgKeyOpera.html#ab7e16d1f4cba23ea5b5b9f6009ce5ee2',1,'GpgFrontend::GpgKeyOpera']]],
- ['modifytofupolicy_427',['ModifyTOFUPolicy',['../classGpgFrontend_1_1GpgKeyOpera.html#a76a7f59701add8a59d8835919dad2000',1,'GpgFrontend::GpgKeyOpera']]],
- ['mt_5f_428',['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 b28bd4bc..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_429',['name_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7ed095cce29c658741ae0520049010c0',1,'GpgFrontend::UI::KeyGenDialog']]],
- ['name_5fvar_5flabel_5f_430',['name_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a9d57be18c2091827c04ec8809f4154be',1,'GpgFrontend::UI::KeyPairDetailTab']]],
- ['need_5fuser_5finput_5fpassphrase_431',['need_user_input_passphrase',['../classGpgFrontend_1_1GpgContext.html#ac7c9b2212a77e7cede94d68243541b1b',1,'GpgFrontend::GpgContext']]],
- ['needupgrade_432',['NeedUpgrade',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#abc311fd0e15da1a04b995587ca74e1a6',1,'GpgFrontend::UI::SoftwareVersion']]],
- ['networktab_433',['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_434',['new_default_settings_channel',['../namespaceGpgFrontend.html#aafb9aa0ba1d03afa09085b1b8136c55f',1,'GpgFrontend']]],
- ['new_5ftab_5fact_5f_435',['new_tab_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a472500fec64442b114e9ce9faf4b6a73',1,'GpgFrontend::UI::MainWindow']]],
- ['nextid_436',['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_437',['no_pass_phrase_check_box_',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a001803152c0e5bd9de7c7dd04cef8ad4',1,'GpgFrontend::UI::SubkeyGenerateDialog']]],
- ['notify_438',['notify',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a6f8ab335d89948c48cd634ab20ff9aa0',1,'GpgFrontend::UI::GpgFrontendApplication']]],
- ['notifyfilesaved_439',['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 0a2c4cdb..d9c9337e 100644
--- a/docs/html/search/all_e.js
+++ b/docs/html/search/all_e.js
@@ -1,14 +1,14 @@
var searchData=
[
- ['oncustomcontextmenu_440',['onCustomContextMenu',['../classGpgFrontend_1_1UI_1_1FilePage.html#aa80dc1b74a0ec65d06e5dffaa21cc785',1,'GpgFrontend::UI::FilePage']]],
- ['open_5fact_5f_441',['open_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a4a1edafb8c67b181ff3c29394147571d',1,'GpgFrontend::UI::MainWindow']]],
- ['open_5fkey_5fmanagement_5fact_5f_442',['open_key_management_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad7b22560df7e3bb38b660d3ffc84dc83',1,'GpgFrontend::UI::MainWindow']]],
- ['open_5fsettings_5fact_5f_443',['open_settings_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#afab1e0363a4b97ff68228cd4bd7cbc62',1,'GpgFrontend::UI::MainWindow']]],
- ['operator_20gpgme_5fctx_5ft_444',['operator gpgme_ctx_t',['../classGpgFrontend_1_1GpgContext.html#a5b419175bd9927f3d449637db8ba6524',1,'GpgFrontend::GpgContext']]],
- ['operator_20gpgme_5fdata_5ft_445',['operator gpgme_data_t',['../classGpgFrontend_1_1GpgData.html#afca7a03bd71436c8b3c4f6e8c2acd700',1,'GpgFrontend::GpgData']]],
- ['operator_20gpgme_5fkey_5ft_446',['operator gpgme_key_t',['../classGpgFrontend_1_1GpgKey.html#a827962251cf47c41dbea56665ae4207b',1,'GpgFrontend::GpgKey']]],
- ['operator_3c_3d_447',['operator<=',['../classGpgFrontend_1_1GpgKey.html#adc22a349796af0ff5dd4499624b6d03d',1,'GpgFrontend::GpgKey']]],
- ['operator_3d_448',['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_449',['operator==',['../classGpgFrontend_1_1GpgKey.html#a4f50b2f13b3a5dc7298ee9665e7a5367',1,'GpgFrontend::GpgKey::operator==()'],['../classGpgFrontend_1_1GpgSubKey.html#a1c88420ec4756f2e5bda1b76ff2f7c2d',1,'GpgFrontend::GpgSubKey::operator==()']]],
- ['owner_5fbox_5f_450',['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 a7f31602..833d6b52 100644
--- a/docs/html/search/all_f.js
+++ b/docs/html/search/all_f.js
@@ -1,20 +1,21 @@
var searchData=
[
- ['passphrasegenerator_451',['PassphraseGenerator',['../classGpgFrontend_1_1PassphraseGenerator.html',1,'GpgFrontend::PassphraseGenerator'],['../classGpgFrontend_1_1PassphraseGenerator.html#ac82ef545a54468ad02253a61cc62e3cf',1,'GpgFrontend::PassphraseGenerator::PassphraseGenerator()']]],
- ['paste_5fact_5f_452',['paste_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a62ea61c38e758022ba655c6faf54322b',1,'GpgFrontend::UI::MainWindow']]],
- ['pending_5ftasks_5f_453',['pending_tasks_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a6d92421bbbfcf3136335a5173d1b2a22',1,'GpgFrontend::Thread::TaskRunner']]],
- ['pgp_5fcrypt_5fbegin_454',['PGP_CRYPT_BEGIN',['../classGpgFrontend_1_1GpgConstants.html#a237006d6db30c7e3f8de171210eb35f2',1,'GpgFrontend::GpgConstants']]],
- ['plaintexteditorpage_455',['PlainTextEditorPage',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html',1,'GpgFrontend::UI::PlainTextEditorPage'],['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a8759224e57d4c322933ed3df6d96e5f1',1,'GpgFrontend::UI::PlainTextEditorPage::PlainTextEditorPage()']]],
- ['popobject_456',['PopObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a5ef5ddec0b82017cc4ad7f34b9b13f64',1,'GpgFrontend::Thread::Task::DataObject']]],
- ['post_5finit_5fctx_457',['post_init_ctx',['../classGpgFrontend_1_1GpgContext.html#aaf3f394ff1790897c315c3249b1f06fe',1,'GpgFrontend::GpgContext']]],
- ['postscheduletask_458',['PostScheduleTask',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#aaddb0cdd8eb57aac08ca9caf8b8e6bac',1,'GpgFrontend::Thread::TaskRunner']]],
- ['posttask_459',['PostTask',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a4fae01eb0a5b296b8c4c6bf8408f1c6b',1,'GpgFrontend::Thread::TaskRunner']]],
- ['print_5fact_5f_460',['print_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8f9dd7edba23321a13ed630cdef7fdcc',1,'GpgFrontend::UI::MainWindow']]],
- ['print_5frecipient_461',['print_recipient',['../classGpgFrontend_1_1GpgDecryptResultAnalyse.html#a1aac1c1f77a12069479a47f54a934c44',1,'GpgFrontend::GpgDecryptResultAnalyse']]],
- ['print_5fsigner_462',['print_signer',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a57bf4a26466e07f7f0ecc19de3782104',1,'GpgFrontend::GpgVerifyResultAnalyse']]],
- ['process_5fdirectory_5finto_5ftarball_463',['process_directory_into_tarball',['../namespaceGpgFrontend_1_1UI.html#a5470872566b41ce628f64039f34b964a',1,'GpgFrontend::UI']]],
- ['process_5foperation_464',['process_operation',['../namespaceGpgFrontend_1_1UI.html#a3c971eeb5c620d08d6d92f0752ceaf9f',1,'GpgFrontend::UI']]],
- ['process_5fresult_5fanalyse_465',['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_466',['process_tarball_into_directory',['../namespaceGpgFrontend_1_1UI.html#a57d0a4dba23cd3d9b42222d40c710dc1',1,'GpgFrontend::UI']]],
- ['proxyconnectiontestthread_467',['ProxyConnectionTestThread',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.html',1,'GpgFrontend::UI::ProxyConnectionTestThread'],['../classProxyConnectionTestThread.html',1,'ProxyConnectionTestThread'],['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.html#a538a78e0149906bf19e850ba71c00ada',1,'GpgFrontend::UI::ProxyConnectionTestThread::ProxyConnectionTestThread()']]]
+ ['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 55080f4e..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_737',['_ctx_ref_deleter',['../structGpgFrontend_1_1GpgContext_1_1__ctx__ref__deleter.html',1,'GpgFrontend::GpgContext']]],
- ['_5fdata_5fref_5fdeleter_738',['_data_ref_deleter',['../structGpgFrontend_1_1GpgData_1_1__data__ref__deleter.html',1,'GpgFrontend::GpgData']]],
- ['_5fkey_5fref_5fdeleter_739',['_key_ref_deleter',['../structGpgFrontend_1_1GpgKey_1_1__key__ref__deleter.html',1,'GpgFrontend::GpgKey']]],
- ['_5fresult_5fref_5fdeletor_740',['_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 c3478bbf..73cc3545 100644
--- a/docs/html/search/classes_1.js
+++ b/docs/html/search/classes_1.js
@@ -1,8 +1,9 @@
var searchData=
[
- ['aboutdialog_741',['AboutDialog',['../classGpgFrontend_1_1UI_1_1AboutDialog.html',1,'GpgFrontend::UI']]],
- ['advancedtab_742',['AdvancedTab',['../classGpgFrontend_1_1UI_1_1AdvancedTab.html',1,'GpgFrontend::UI']]],
- ['appearancetab_743',['AppearanceTab',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html',1,'GpgFrontend::UI']]],
- ['archivefileoperator_744',['ArchiveFileOperator',['../classGpgFrontend_1_1ArchiveFileOperator.html',1,'GpgFrontend']]],
- ['archivestruct_745',['ArchiveStruct',['../structGpgFrontend_1_1ArchiveStruct.html',1,'GpgFrontend']]]
+ ['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 d5d15d4c..d88b893a 100644
--- a/docs/html/search/classes_10.js
+++ b/docs/html/search/classes_10.js
@@ -1,10 +1,12 @@
var searchData=
[
- ['task_857',['Task',['../classGpgFrontend_1_1Thread_1_1Task.html',1,'GpgFrontend::Thread']]],
- ['taskrunner_858',['TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html',1,'GpgFrontend::Thread']]],
- ['taskrunnergetter_859',['TaskRunnerGetter',['../classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html',1,'GpgFrontend::Thread']]],
- ['testlistedkeyserverthread_860',['TestListedKeyServerThread',['../classTestListedKeyServerThread.html',1,'']]],
- ['textedit_861',['TextEdit',['../classGpgFrontend_1_1UI_1_1TextEdit.html',1,'GpgFrontend::UI']]],
- ['tofuinfopage_862',['TOFUInfoPage',['../classGpgFrontend_1_1UI_1_1TOFUInfoPage.html',1,'GpgFrontend::UI']]],
- ['translatorstab_863',['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 92278d12..c4edf5d2 100644
--- a/docs/html/search/classes_11.js
+++ b/docs/html/search/classes_11.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['updatetab_864',['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 4a765762..4e1f565c 100644
--- a/docs/html/search/classes_12.js
+++ b/docs/html/search/classes_12.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['verifydetailsdialog_865',['VerifyDetailsDialog',['../classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html',1,'GpgFrontend::UI']]],
- ['verifykeydetailbox_866',['VerifyKeyDetailBox',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html',1,'GpgFrontend::UI']]],
- ['versionchecktask_867',['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 5e492542..8ecdfa8f 100644
--- a/docs/html/search/classes_13.js
+++ b/docs/html/search/classes_13.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['waitingdialog_868',['WaitingDialog',['../classGpgFrontend_1_1UI_1_1WaitingDialog.html',1,'GpgFrontend::UI']]],
- ['wizard_869',['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 d1889f75..c50cbe45 100644
--- a/docs/html/search/classes_2.js
+++ b/docs/html/search/classes_2.js
@@ -1,14 +1,14 @@
var searchData=
[
- ['cachemanager_746',['CacheManager',['../classGpgFrontend_1_1CacheManager.html',1,'GpgFrontend']]],
- ['channelobject_747',['ChannelObject',['../classGpgFrontend_1_1ChannelObject.html',1,'GpgFrontend']]],
- ['charsetoperator_748',['CharsetOperator',['../classGpgFrontend_1_1CharsetOperator.html',1,'GpgFrontend']]],
- ['choosepage_749',['ChoosePage',['../classGpgFrontend_1_1UI_1_1ChoosePage.html',1,'GpgFrontend::UI']]],
- ['class_750',['class',['../classclass.html',1,'']]],
- ['commonutils_751',['CommonUtils',['../classGpgFrontend_1_1UI_1_1CommonUtils.html',1,'GpgFrontend::UI']]],
- ['conclusionpage_752',['ConclusionPage',['../classGpgFrontend_1_1UI_1_1ConclusionPage.html',1,'GpgFrontend::UI']]],
- ['corecommonutil_753',['CoreCommonUtil',['../classGpgFrontend_1_1CoreCommonUtil.html',1,'GpgFrontend']]],
- ['coresignalstation_754',['CoreSignalStation',['../classGpgFrontend_1_1CoreSignalStation.html',1,'GpgFrontend']]],
- ['cryptomenu_755',['CryptoMenu',['../structGpgFrontend_1_1UI_1_1MainWindow_1_1CryptoMenu.html',1,'GpgFrontend::UI::MainWindow']]],
- ['ctxchecktask_756',['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 f4d19d87..d48aa019 100644
--- a/docs/html/search/classes_3.js
+++ b/docs/html/search/classes_3.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['dataobject_757',['DataObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html',1,'GpgFrontend::Thread::Task']]],
- ['dataobjectoperator_758',['DataObjectOperator',['../classGpgFrontend_1_1DataObjectOperator.html',1,'GpgFrontend']]],
- ['destructor_759',['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 4a06ea31..a37de755 100644
--- a/docs/html/search/classes_4.js
+++ b/docs/html/search/classes_4.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['exportkeypackagedialog_760',['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 ca4a5e5b..a3b11f64 100644
--- a/docs/html/search/classes_5.js
+++ b/docs/html/search/classes_5.js
@@ -1,7 +1,7 @@
var searchData=
[
- ['fileoperator_761',['FileOperator',['../classGpgFrontend_1_1FileOperator.html',1,'GpgFrontend']]],
- ['filepage_762',['FilePage',['../classGpgFrontend_1_1UI_1_1FilePage.html',1,'GpgFrontend::UI']]],
- ['filereadtask_763',['FileReadTask',['../classGpgFrontend_1_1UI_1_1FileReadTask.html',1,'GpgFrontend::UI']]],
- ['findwidget_764',['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 5af75395..5a22f651 100644
--- a/docs/html/search/classes_6.js
+++ b/docs/html/search/classes_6.js
@@ -1,37 +1,38 @@
var searchData=
[
- ['generaldialog_765',['GeneralDialog',['../classGpgFrontend_1_1UI_1_1GeneralDialog.html',1,'GpgFrontend::UI']]],
- ['generalmainwindow_766',['GeneralMainWindow',['../classGpgFrontend_1_1UI_1_1GeneralMainWindow.html',1,'GpgFrontend::UI']]],
- ['generaltab_767',['GeneralTab',['../classGpgFrontend_1_1UI_1_1GeneralTab.html',1,'GpgFrontend::UI']]],
- ['genkeyinfo_768',['GenKeyInfo',['../classGpgFrontend_1_1GenKeyInfo.html',1,'GpgFrontend']]],
- ['globalsettingstation_769',['GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html',1,'GpgFrontend']]],
- ['gnupgtab_770',['GnupgTab',['../classGpgFrontend_1_1UI_1_1GnupgTab.html',1,'GpgFrontend::UI']]],
- ['gpgadvancedoperator_771',['GpgAdvancedOperator',['../classGpgFrontend_1_1GpgAdvancedOperator.html',1,'GpgFrontend']]],
- ['gpgbasicoperator_772',['GpgBasicOperator',['../classGpgFrontend_1_1GpgBasicOperator.html',1,'GpgFrontend']]],
- ['gpgcommandexecutor_773',['GpgCommandExecutor',['../classGpgFrontend_1_1GpgCommandExecutor.html',1,'GpgFrontend']]],
- ['gpgconstants_774',['GpgConstants',['../classGpgFrontend_1_1GpgConstants.html',1,'GpgFrontend']]],
- ['gpgcontext_775',['GpgContext',['../classGpgFrontend_1_1GpgContext.html',1,'GpgFrontend']]],
- ['gpgcontextinitargs_776',['GpgContextInitArgs',['../structGpgFrontend_1_1GpgContextInitArgs.html',1,'GpgFrontend']]],
- ['gpgdata_777',['GpgData',['../classGpgFrontend_1_1GpgData.html',1,'GpgFrontend']]],
- ['gpgdecryptresultanalyse_778',['GpgDecryptResultAnalyse',['../classGpgFrontend_1_1GpgDecryptResultAnalyse.html',1,'GpgFrontend']]],
- ['gpgencryptresultanalyse_779',['GpgEncryptResultAnalyse',['../classGpgFrontend_1_1GpgEncryptResultAnalyse.html',1,'GpgFrontend']]],
- ['gpgfileopera_780',['GpgFileOpera',['../classGpgFrontend_1_1GpgFileOpera.html',1,'GpgFrontend']]],
- ['gpgfrontendapplication_781',['GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html',1,'GpgFrontend::UI']]],
- ['gpgimportedkey_782',['GpgImportedKey',['../classGpgFrontend_1_1GpgImportedKey.html',1,'GpgFrontend']]],
- ['gpgimportinformation_783',['GpgImportInformation',['../classGpgFrontend_1_1GpgImportInformation.html',1,'GpgFrontend']]],
- ['gpginfo_784',['GpgInfo',['../classGpgFrontend_1_1GpgInfo.html',1,'GpgFrontend']]],
- ['gpgkey_785',['GpgKey',['../classGpgFrontend_1_1GpgKey.html',1,'GpgFrontend']]],
- ['gpgkeygetter_786',['GpgKeyGetter',['../classGpgFrontend_1_1GpgKeyGetter.html',1,'GpgFrontend']]],
- ['gpgkeyimportexporter_787',['GpgKeyImportExporter',['../classGpgFrontend_1_1GpgKeyImportExporter.html',1,'GpgFrontend']]],
- ['gpgkeymanager_788',['GpgKeyManager',['../classGpgFrontend_1_1GpgKeyManager.html',1,'GpgFrontend']]],
- ['gpgkeyopera_789',['GpgKeyOpera',['../classGpgFrontend_1_1GpgKeyOpera.html',1,'GpgFrontend']]],
- ['gpgkeysignature_790',['GpgKeySignature',['../classGpgFrontend_1_1GpgKeySignature.html',1,'GpgFrontend']]],
- ['gpgresultanalyse_791',['GpgResultAnalyse',['../classGpgFrontend_1_1GpgResultAnalyse.html',1,'GpgFrontend']]],
- ['gpgsignature_792',['GpgSignature',['../classGpgFrontend_1_1GpgSignature.html',1,'GpgFrontend']]],
- ['gpgsignresultanalyse_793',['GpgSignResultAnalyse',['../classGpgFrontend_1_1GpgSignResultAnalyse.html',1,'GpgFrontend']]],
- ['gpgsubkey_794',['GpgSubKey',['../classGpgFrontend_1_1GpgSubKey.html',1,'GpgFrontend']]],
- ['gpgtofuinfo_795',['GpgTOFUInfo',['../classGpgFrontend_1_1GpgTOFUInfo.html',1,'GpgFrontend']]],
- ['gpguid_796',['GpgUID',['../classGpgFrontend_1_1GpgUID.html',1,'GpgFrontend']]],
- ['gpguidoperator_797',['GpgUIDOperator',['../classGpgFrontend_1_1GpgUIDOperator.html',1,'GpgFrontend']]],
- ['gpgverifyresultanalyse_798',['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 c6f3afac..1fb8452c 100644
--- a/docs/html/search/classes_7.js
+++ b/docs/html/search/classes_7.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['helppage_799',['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 952ce9f3..dfded4e7 100644
--- a/docs/html/search/classes_8.js
+++ b/docs/html/search/classes_8.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['infoboardwidget_800',['InfoBoardWidget',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html',1,'GpgFrontend::UI']]],
- ['infotab_801',['InfoTab',['../classGpgFrontend_1_1UI_1_1InfoTab.html',1,'GpgFrontend::UI']]],
- ['intropage_802',['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 80f865a5..2b37462a 100644
--- a/docs/html/search/classes_9.js
+++ b/docs/html/search/classes_9.js
@@ -1,26 +1,26 @@
var searchData=
[
- ['keydetailsdialog_803',['KeyDetailsDialog',['../classGpgFrontend_1_1UI_1_1KeyDetailsDialog.html',1,'GpgFrontend::UI']]],
- ['keygendialog_804',['KeyGenDialog',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html',1,'GpgFrontend::UI']]],
- ['keygenpage_805',['KeyGenPage',['../classGpgFrontend_1_1UI_1_1KeyGenPage.html',1,'GpgFrontend::UI']]],
- ['keyimportdetaildialog_806',['KeyImportDetailDialog',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html',1,'GpgFrontend::UI']]],
- ['keylist_807',['KeyList',['../classGpgFrontend_1_1UI_1_1KeyList.html',1,'GpgFrontend::UI']]],
- ['keylistcolumn_808',['KeyListColumn',['../structGpgFrontend_1_1UI_1_1KeyListColumn.html',1,'GpgFrontend::UI']]],
- ['keylistrow_809',['KeyListRow',['../structGpgFrontend_1_1UI_1_1KeyListRow.html',1,'GpgFrontend::UI']]],
- ['keymenuability_810',['KeyMenuAbility',['../structGpgFrontend_1_1UI_1_1KeyMenuAbility.html',1,'GpgFrontend::UI']]],
- ['keymgmt_811',['KeyMgmt',['../classGpgFrontend_1_1UI_1_1KeyMgmt.html',1,'GpgFrontend::UI']]],
- ['keynewuiddialog_812',['KeyNewUIDDialog',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html',1,'GpgFrontend::UI']]],
- ['keypackageoperator_813',['KeyPackageOperator',['../classGpgFrontend_1_1KeyPackageOperator.html',1,'GpgFrontend']]],
- ['keypairdetailtab_814',['KeyPairDetailTab',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html',1,'GpgFrontend::UI']]],
- ['keypairoperatab_815',['KeyPairOperaTab',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html',1,'GpgFrontend::UI']]],
- ['keypairsubkeytab_816',['KeyPairSubkeyTab',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html',1,'GpgFrontend::UI']]],
- ['keypairuidtab_817',['KeyPairUIDTab',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html',1,'GpgFrontend::UI']]],
- ['keyserverimportdialog_818',['KeyServerImportDialog',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html',1,'GpgFrontend::UI']]],
- ['keyserverimporttask_819',['KeyServerImportTask',['../classGpgFrontend_1_1UI_1_1KeyServerImportTask.html',1,'GpgFrontend::UI']]],
- ['keyserversearchtask_820',['KeyServerSearchTask',['../classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html',1,'GpgFrontend::UI']]],
- ['keyservertab_821',['KeyserverTab',['../classGpgFrontend_1_1UI_1_1KeyserverTab.html',1,'GpgFrontend::UI']]],
- ['keysetexpiredatedialog_822',['KeySetExpireDateDialog',['../classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html',1,'GpgFrontend::UI']]],
- ['keytable_823',['KeyTable',['../structGpgFrontend_1_1UI_1_1KeyTable.html',1,'GpgFrontend::UI']]],
- ['keyuidsigndialog_824',['KeyUIDSignDialog',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html',1,'GpgFrontend::UI']]],
- ['keyuploaddialog_825',['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 1a3b65e1..1b32d780 100644
--- a/docs/html/search/classes_a.js
+++ b/docs/html/search/classes_a.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['listedkeyservertesttask_826',['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 3ce76f14..0c5c6c85 100644
--- a/docs/html/search/classes_b.js
+++ b/docs/html/search/classes_b.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['mainwindow_827',['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 2dac389c..f3c50d33 100644
--- a/docs/html/search/classes_c.js
+++ b/docs/html/search/classes_c.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['networktab_828',['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 85cfd2b1..c6f0a193 100644
--- a/docs/html/search/classes_d.js
+++ b/docs/html/search/classes_d.js
@@ -1,6 +1,7 @@
var searchData=
[
- ['passphrasegenerator_829',['PassphraseGenerator',['../classGpgFrontend_1_1PassphraseGenerator.html',1,'GpgFrontend']]],
- ['plaintexteditorpage_830',['PlainTextEditorPage',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html',1,'GpgFrontend::UI']]],
- ['proxyconnectiontestthread_831',['ProxyConnectionTestThread',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.html',1,'GpgFrontend::UI::ProxyConnectionTestThread'],['../classProxyConnectionTestThread.html',1,'ProxyConnectionTestThread']]]
+ ['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 2f10b765..860fefb4 100644
--- a/docs/html/search/classes_e.js
+++ b/docs/html/search/classes_e.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['quitdialog_832',['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 49868895..f4abf977 100644
--- a/docs/html/search/classes_f.js
+++ b/docs/html/search/classes_f.js
@@ -1,27 +1,28 @@
var searchData=
[
- ['settingsdialog_833',['SettingsDialog',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html',1,'GpgFrontend::UI']]],
- ['settingsobject_834',['SettingsObject',['../classGpgFrontend_1_1UI_1_1SettingsObject.html',1,'GpgFrontend::UI']]],
- ['signalstation_835',['SignalStation',['../classGpgFrontend_1_1UI_1_1SignalStation.html',1,'GpgFrontend::UI']]],
- ['signaturedetailsdialog_836',['SignatureDetailsDialog',['../classSignatureDetailsDialog.html',1,'']]],
- ['signerspicker_837',['SignersPicker',['../classGpgFrontend_1_1UI_1_1SignersPicker.html',1,'GpgFrontend::UI']]],
- ['singletonfunctionobject_838',['SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]],
- ['singletonfunctionobject_3c_20dataobjectoperator_20_3e_839',['SingletonFunctionObject< DataObjectOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]],
- ['singletonfunctionobject_3c_20globalsettingstation_20_3e_840',['SingletonFunctionObject< GlobalSettingStation >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]],
- ['singletonfunctionobject_3c_20gpgadvancedoperator_20_3e_841',['SingletonFunctionObject< GpgAdvancedOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]],
- ['singletonfunctionobject_3c_20gpgbasicoperator_20_3e_842',['SingletonFunctionObject< GpgBasicOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]],
- ['singletonfunctionobject_3c_20gpgcommandexecutor_20_3e_843',['SingletonFunctionObject< GpgCommandExecutor >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]],
- ['singletonfunctionobject_3c_20gpgcontext_20_3e_844',['SingletonFunctionObject< GpgContext >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]],
- ['singletonfunctionobject_3c_20gpgfileopera_20_3e_845',['SingletonFunctionObject< GpgFileOpera >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]],
- ['singletonfunctionobject_3c_20gpgkeygetter_20_3e_846',['SingletonFunctionObject< GpgKeyGetter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]],
- ['singletonfunctionobject_3c_20gpgkeyimportexporter_20_3e_847',['SingletonFunctionObject< GpgKeyImportExporter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]],
- ['singletonfunctionobject_3c_20gpgkeymanager_20_3e_848',['SingletonFunctionObject< GpgKeyManager >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]],
- ['singletonfunctionobject_3c_20gpgkeyopera_20_3e_849',['SingletonFunctionObject< GpgKeyOpera >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]],
- ['singletonfunctionobject_3c_20gpguidoperator_20_3e_850',['SingletonFunctionObject< GpgUIDOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]],
- ['singletonfunctionobject_3c_20passphrasegenerator_20_3e_851',['SingletonFunctionObject< PassphraseGenerator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]],
- ['singletonfunctionobject_3c_20taskrunnergetter_20_3e_852',['SingletonFunctionObject< TaskRunnerGetter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]],
- ['singletonstorage_853',['SingletonStorage',['../classGpgFrontend_1_1SingletonStorage.html',1,'GpgFrontend']]],
- ['singletonstoragecollection_854',['SingletonStorageCollection',['../classGpgFrontend_1_1SingletonStorageCollection.html',1,'GpgFrontend']]],
- ['softwareversion_855',['SoftwareVersion',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html',1,'GpgFrontend::UI']]],
- ['subkeygeneratedialog_856',['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 458ba334..76305ac6 100644
--- a/docs/html/search/enums_0.js
+++ b/docs/html/search/enums_0.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['infoboardstatus_1558',['InfoBoardStatus',['../namespaceGpgFrontend_1_1UI.html#acbaebd342a317b1f067942e5144bb00d',1,'GpgFrontend::UI']]]
+ ['infoboardstatus_1577',['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 fb82e433..c0f66696 100644
--- a/docs/html/search/functions_0.js
+++ b/docs/html/search/functions_0.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['_5fnew_5fresult_874',['_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 e8f38a53..419349e5 100644
--- a/docs/html/search/functions_1.js
+++ b/docs/html/search/functions_1.js
@@ -1,15 +1,15 @@
var searchData=
[
- ['aboutdialog_875',['AboutDialog',['../classGpgFrontend_1_1UI_1_1AboutDialog.html#ab04683ab4c4d682af1e259705c60d85a',1,'GpgFrontend::UI::AboutDialog']]],
- ['addlistgrouptab_876',['AddListGroupTab',['../classGpgFrontend_1_1UI_1_1KeyList.html#a73ddb7feb1f70eac44e038c3dc925fec',1,'GpgFrontend::UI::KeyList']]],
- ['addmenuaction_877',['AddMenuAction',['../classGpgFrontend_1_1UI_1_1KeyList.html#aa961e3ba3c48f84dea4bb7ab4f756886',1,'GpgFrontend::UI::KeyList']]],
- ['addoptionalaction_878',['AddOptionalAction',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a456f15315a03107f7757d84362c1af71',1,'GpgFrontend::UI::InfoBoardWidget']]],
- ['adduid_879',['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_880',['aes_256_cbc_decrypt',['../namespaceGpgFrontend_1_1RawAPI.html#a2e388ecafc7b859eda84b4e3c4e2576f',1,'GpgFrontend::RawAPI']]],
- ['aes_5f256_5fcbc_5fencrypt_881',['aes_256_cbc_encrypt',['../namespaceGpgFrontend_1_1RawAPI.html#aa2bc88cf78b8da893f1b5c7e2e8ccf42',1,'GpgFrontend::RawAPI']]],
- ['aes_5f256_5fcbc_5finit_882',['aes_256_cbc_init',['../namespaceGpgFrontend_1_1RawAPI.html#a1f2f6c82e9c904c3875a123a65564697',1,'GpgFrontend::RawAPI']]],
- ['appearancetab_883',['AppearanceTab',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html#abfca670540bc0409b9be4459ee6a3b6c',1,'GpgFrontend::UI::AppearanceTab']]],
- ['appendobject_884',['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_885',['AssociateTabWidget',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#adfa4acd435d2ec29f951f4e7e6a43f38',1,'GpgFrontend::UI::InfoBoardWidget']]],
- ['associatetextedit_886',['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 8bfddab3..f07559f7 100644
--- a/docs/html/search/functions_10.js
+++ b/docs/html/search/functions_10.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['quitdialog_1201',['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 66ff132b..3fe46c0f 100644
--- a/docs/html/search/functions_11.js
+++ b/docs/html/search/functions_11.js
@@ -1,24 +1,23 @@
var searchData=
[
- ['read2buffer_1202',['Read2Buffer',['../classGpgFrontend_1_1GpgData.html#ae382a34ec551561315deca84c71c19c1',1,'GpgFrontend::GpgData']]],
- ['read_5fall_5fdata_5fin_5ffile_1203',['read_all_data_in_file',['../namespaceGpgFrontend.html#a73f3e2217fb1d72dc75f266e11875f6d',1,'GpgFrontend']]],
- ['readdone_1204',['ReadDone',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#ac1902b063decfeebe7f0908cbfe618ce',1,'GpgFrontend::UI::PlainTextEditorPage']]],
- ['readfile_1205',['ReadFile',['../classGpgFrontend_1_1FileOperator.html#a28a3572dc01192b6a4d50b544181084c',1,'GpgFrontend::FileOperator']]],
- ['readfilestd_1206',['ReadFileStd',['../classGpgFrontend_1_1FileOperator.html#ad4424bce4f22ae75a16c542dfb4ddf0a',1,'GpgFrontend::FileOperator']]],
- ['refresh_1207',['Refresh',['../structGpgFrontend_1_1UI_1_1KeyTable.html#aaac381e205c323444098803e0295060f',1,'GpgFrontend::UI::KeyTable']]],
- ['refresh_5finfo_5fboard_1208',['refresh_info_board',['../namespaceGpgFrontend_1_1UI.html#a204156a333cde4f705f0ace91cd3d333',1,'GpgFrontend::UI']]],
- ['refresh_5fkeys_5ffrom_5fkey_5fserver_1209',['refresh_keys_from_key_server',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adfa3b3ae1de1fd04c5ea09e3c97c3e98',1,'GpgFrontend::UI::MainWindow']]],
- ['refresh_5fwidgets_5fstate_1210',['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_1211',['ReleaseChannel',['../classGpgFrontend_1_1SingletonStorage.html#adb22cc80a1ab040b6e4bce962625edfd',1,'GpgFrontend::SingletonStorage::ReleaseChannel()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#ab49b1d50252e1934691a9483a6df2106',1,'GpgFrontend::SingletonFunctionObject::ReleaseChannel()']]],
- ['reloadgpgcomponents_1212',['ReloadGpgComponents',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a6876b6ee63ff7147c274e4f9538d29ce',1,'GpgFrontend::GpgAdvancedOperator']]],
- ['resetconfigures_1213',['ResetConfigures',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a209f6d1d664ab672437198dc10ed8226',1,'GpgFrontend::GpgAdvancedOperator']]],
- ['resetoptionactionsmenu_1214',['ResetOptionActionsMenu',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a7d7504339221bd680fb18698dd829b32',1,'GpgFrontend::UI::InfoBoardWidget']]],
- ['resettempcachevalue_1215',['ResetTempCacheValue',['../classGpgFrontend_1_1CoreCommonUtil.html#a354c4f7cb7f102964e43012fc10d1e52',1,'GpgFrontend::CoreCommonUtil']]],
- ['restartgpgcomponents_1216',['RestartGpgComponents',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a5801bf4ea7391cbcc60efd2513d41041',1,'GpgFrontend::GpgAdvancedOperator']]],
- ['restore_5fsettings_1217',['restore_settings',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a210ab31f4d949a50507d0690c0d1598a',1,'GpgFrontend::UI::MainWindow']]],
- ['revsign_1218',['RevSign',['../classGpgFrontend_1_1GpgKeyManager.html#aa2c0e804db1c4aaf3b861ee5ab54ebd8',1,'GpgFrontend::GpgKeyManager']]],
- ['revuid_1219',['RevUID',['../classGpgFrontend_1_1GpgUIDOperator.html#a47f762666afbc806365877ff70947841',1,'GpgFrontend::GpgUIDOperator']]],
- ['run_1220',['Run',['../classGpgFrontend_1_1Thread_1_1CtxCheckTask.html#a1c94cb1290df40a9043fe2d1a9a231f2',1,'GpgFrontend::Thread::CtxCheckTask::Run()'],['../classGpgFrontend_1_1UI_1_1FileReadTask.html#a0f8bc1c253380b68c0e65cabc011ac09',1,'GpgFrontend::UI::FileReadTask::Run()'],['../classGpgFrontend_1_1Thread_1_1Task.html#ac60aa71a24f452fd8031597ff4cbbd00',1,'GpgFrontend::Thread::Task::Run()'],['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9156325af41c378f8d7e77187d445c12',1,'GpgFrontend::UI::VersionCheckTask::Run()']]],
- ['run_1221',['run',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.html#a497bb7f1b92c67f2e754fd66ca3a6666',1,'GpgFrontend::UI::ProxyConnectionTestThread']]],
- ['rungpgfrontendui_1222',['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 12408d8b..dc813172 100644
--- a/docs/html/search/functions_12.js
+++ b/docs/html/search/functions_12.js
@@ -1,164 +1,165 @@
var searchData=
[
- ['save_5ffile_1223',['save_file',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a66b6f6633e7ac71e5fe8b7814a81cadf',1,'GpgFrontend::UI::TextEdit']]],
- ['save_5fsettings_1224',['save_settings',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7a4b6490038470a8849231e48282da98',1,'GpgFrontend::UI::MainWindow']]],
- ['savecache_1225',['SaveCache',['../classGpgFrontend_1_1CacheManager.html#a3cbc3238638dcd8b4722bfdf560c73fe',1,'GpgFrontend::CacheManager']]],
- ['set_5fbackground_1226',['set_background',['../classGpgFrontend_1_1UI_1_1FindWidget.html#a0c531f2c673caed29225a323e750205f',1,'GpgFrontend::UI::FindWidget']]],
- ['set_5floading_1227',['set_loading',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ad4a75da57fa18bfcfaeb7fc601f1c8f6',1,'GpgFrontend::UI::KeyServerImportDialog']]],
- ['set_5fmessage_1228',['set_message',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ab93fbf5e0626bffe398f5baa2bc00b1a',1,'GpgFrontend::UI::KeyServerImportDialog']]],
- ['set_5fsignal_5fslot_1229',['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_1230',['set_status',['../classGpgFrontend_1_1GpgResultAnalyse.html#a7f13592b421c7b0d3853f15cece8d195',1,'GpgFrontend::GpgResultAnalyse']]],
- ['setalgo_1231',['SetAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#adcd9c4f3e75f989810988e0bc81d401f',1,'GpgFrontend::GenKeyInfo']]],
- ['setallowauthentication_1232',['SetAllowAuthentication',['../classGpgFrontend_1_1GenKeyInfo.html#aac51d251682ed1bc1090416ebfeba4de',1,'GpgFrontend::GenKeyInfo']]],
- ['setallowcertification_1233',['SetAllowCertification',['../classGpgFrontend_1_1GenKeyInfo.html#ac5f52f74566618c71a29bdc5e70fce2e',1,'GpgFrontend::GenKeyInfo']]],
- ['setallowencryption_1234',['SetAllowEncryption',['../classGpgFrontend_1_1GenKeyInfo.html#a965014232f6de22c6d33320231ca4454',1,'GpgFrontend::GenKeyInfo']]],
- ['setallowsigning_1235',['SetAllowSigning',['../classGpgFrontend_1_1GenKeyInfo.html#a1a01518b24d40d95e187ef73f4dcd52a',1,'GpgFrontend::GenKeyInfo']]],
- ['setchannel_1236',['SetChannel',['../classGpgFrontend_1_1ChannelObject.html#aa3b19cad6d873b314bba32a3dae85f09',1,'GpgFrontend::ChannelObject']]],
- ['setchecked_1237',['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_1238',['SetColumnWidth',['../classGpgFrontend_1_1UI_1_1KeyList.html#aab3f4facfc850e7eeb917571ca89f4a5',1,'GpgFrontend::UI::KeyList']]],
- ['setcomment_1239',['SetComment',['../classGpgFrontend_1_1GenKeyInfo.html#a947886456f5699241b1c1b9332e4b29e',1,'GpgFrontend::GenKeyInfo']]],
- ['setcryptomenustatus_1240',['SetCryptoMenuStatus',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a85a98a1ec5418c110201980fa013d1fd',1,'GpgFrontend::UI::MainWindow']]],
- ['setdoubleclickedaction_1241',['SetDoubleClickedAction',['../classGpgFrontend_1_1UI_1_1KeyList.html#a7d75246eee6368be295c9ab5fe5ef291',1,'GpgFrontend::UI::KeyList']]],
- ['setemail_1242',['SetEmail',['../classGpgFrontend_1_1GenKeyInfo.html#a656c81d56f77350184f9a94db1a3ce05',1,'GpgFrontend::GenKeyInfo']]],
- ['setexpire_1243',['SetExpire',['../classGpgFrontend_1_1GpgKeyManager.html#a1625abfbff168c476e76fa9425a6c37d',1,'GpgFrontend::GpgKeyManager::SetExpire()'],['../classGpgFrontend_1_1GpgKeyOpera.html#a12e6b05b23781861065d7e3243c9349e',1,'GpgFrontend::GpgKeyOpera::SetExpire()']]],
- ['setexpiretime_1244',['SetExpireTime',['../classGpgFrontend_1_1GenKeyInfo.html#aa3bfeda7fc7c83dc8d48ee2b80780c3a',1,'GpgFrontend::GenKeyInfo']]],
- ['setfilepath_1245',['SetFilePath',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aa9e82690824c82e7628ba4ace9d6e2fe',1,'GpgFrontend::UI::PlainTextEditorPage']]],
- ['setfinishafterrun_1246',['SetFinishAfterRun',['../classGpgFrontend_1_1Thread_1_1Task.html#a689969e7d88ba7ad73a693a1b38aedd7',1,'GpgFrontend::Thread::Task']]],
- ['setinfoboard_1247',['SetInfoBoard',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#ac936cfc8e1b3af65d0d71b74fb3f0b02',1,'GpgFrontend::UI::InfoBoardWidget']]],
- ['setissubkey_1248',['SetIsSubKey',['../classGpgFrontend_1_1GenKeyInfo.html#acd9f7742b739e1db60bd50489690dec1',1,'GpgFrontend::GenKeyInfo']]],
- ['setkeylength_1249',['SetKeyLength',['../classGpgFrontend_1_1GenKeyInfo.html#ae744395012e4dcb9734ad5a30aa8ed75',1,'GpgFrontend::GenKeyInfo']]],
- ['setname_1250',['SetName',['../classGpgFrontend_1_1GenKeyInfo.html#a65ebc487e0e64c325f65474c812615f7',1,'GpgFrontend::GenKeyInfo']]],
- ['setnonexpired_1251',['SetNonExpired',['../classGpgFrontend_1_1GenKeyInfo.html#aea247381c21896f5371bb813ca665329',1,'GpgFrontend::GenKeyInfo']]],
- ['setnonpassphrase_1252',['SetNonPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#a864407216cbdbef9e7b35e6be694d3ef',1,'GpgFrontend::GenKeyInfo']]],
- ['setobjectinchannel_1253',['SetObjectInChannel',['../classGpgFrontend_1_1SingletonStorage.html#ab0097bb648b2303d68a975c7cbea5a52',1,'GpgFrontend::SingletonStorage']]],
- ['setpassphrase_1254',['SetPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#afe1760d4ead397f6096925290a38e1a4',1,'GpgFrontend::GenKeyInfo']]],
- ['setpassphrasecb_1255',['SetPassphraseCb',['../classGpgFrontend_1_1GpgContext.html#a3399fc60086ff5010a089bff48bbc63c',1,'GpgFrontend::GpgContext']]],
- ['setprimaryuid_1256',['SetPrimaryUID',['../classGpgFrontend_1_1GpgUIDOperator.html#acbdabec97df508382b0c9b1fffbf1dd5',1,'GpgFrontend::GpgUIDOperator']]],
- ['setrtn_1257',['SetRTN',['../classGpgFrontend_1_1Thread_1_1Task.html#aa6d702417bdd6a88c447ed6a457fa098',1,'GpgFrontend::Thread::Task']]],
- ['setsettings_1258',['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_1259',['SetSigners',['../classGpgFrontend_1_1GpgBasicOperator.html#ad6ea3596ba7d7543fb1b8233d09996df',1,'GpgFrontend::GpgBasicOperator']]],
- ['settempcachevalue_1260',['SetTempCacheValue',['../classGpgFrontend_1_1CoreCommonUtil.html#a62bb080c6c04970fd2e02a460ea91d2a',1,'GpgFrontend::CoreCommonUtil']]],
- ['settingsdialog_1261',['SettingsDialog',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#a1b7ddc7861d1b4b9dc3810ed98023ffc',1,'GpgFrontend::UI::SettingsDialog']]],
- ['settingsobject_1262',['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_1263',['show_verify_details',['../namespaceGpgFrontend_1_1UI.html#a590a26051105940a6d6e0743b147e281',1,'GpgFrontend::UI']]],
- ['showevent_1264',['showEvent',['../classGpgFrontend_1_1UI_1_1AboutDialog.html#ab799cd5e07b06a8e953d72105c0a1083',1,'GpgFrontend::UI::AboutDialog']]],
- ['shownotificationwidget_1265',['ShowNotificationWidget',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#af5dfdfd48ef64cc46e524ec70a22fe3a',1,'GpgFrontend::UI::PlainTextEditorPage']]],
- ['sign_1266',['Sign',['../classGpgFrontend_1_1GpgBasicOperator.html#a988d7e65e85fc7a578f26300332a65d3',1,'GpgFrontend::GpgBasicOperator']]],
- ['signaldeeprestartneeded_1267',['SignalDeepRestartNeeded',['../classGpgFrontend_1_1UI_1_1GeneralTab.html#afc107d56f13000aa28436a5e26a0876b',1,'GpgFrontend::UI::GeneralTab']]],
- ['signalkeydatabaserefreshdone_1268',['SignalKeyDatabaseRefreshDone',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a1abc83bba95579aa94d0870181991a28',1,'GpgFrontend::UI::CommonUtils']]],
- ['signalkeyserverimportresult_1269',['SignalKeyServerImportResult',['../classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a6b2c07d193fb28a57b1738fa493b2b3f',1,'GpgFrontend::UI::KeyServerImportTask']]],
- ['signalkeyserverlisttestresult_1270',['SignalKeyServerListTestResult',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a20f0147d670be7ab5c9d3051a900f508',1,'GpgFrontend::UI::ListedKeyServerTestTask']]],
- ['signalkeyserversearchresult_1271',['SignalKeyServerSearchResult',['../classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#ae478130476c95a8b220c3b0e6a7b88b4',1,'GpgFrontend::UI::KeyServerSearchTask']]],
- ['signalopenhelp_1272',['SignalOpenHelp',['../classGpgFrontend_1_1UI_1_1Wizard.html#a8b5f5ddb1e6470cbf6c87cc6400031fb',1,'GpgFrontend::UI::Wizard']]],
- ['signalpathchanged_1273',['SignalPathChanged',['../classGpgFrontend_1_1UI_1_1FilePage.html#aec462d16a2097024a4ced24012b905a7',1,'GpgFrontend::UI::FilePage']]],
- ['signalproxyconnectiontestresult_1274',['SignalProxyConnectionTestResult',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.html#aedafa7b22e024be537658fd8096e5f6f',1,'GpgFrontend::UI::ProxyConnectionTestThread']]],
- ['signalrefreshinfoboard_1275',['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_1276',['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_1277',['SignalReplyFromUpdateServer',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a5e752e01539ccfdc6bbe41a404ddaa95',1,'GpgFrontend::UI::UpdateTab']]],
- ['signalrestartneeded_1278',['SignalRestartNeeded',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#af5ba6646af45d0d1d794bc52ee54b1b9',1,'GpgFrontend::UI::SettingsDialog']]],
- ['signalrestartneeded_1279',['signalRestartNeeded',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html#abff49b636449815a9ebff52f5c067712',1,'GpgFrontend::UI::AppearanceTab']]],
- ['signalrestartneeded_1280',['SignalRestartNeeded',['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#a26449a77844d9db69a543ff88f10e347',1,'GpgFrontend::UI::KeyserverTab::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1GeneralTab.html#aa88ccbda61728be6de0aa2d9b92e0b69',1,'GpgFrontend::UI::GeneralTab::SignalRestartNeeded()']]],
- ['signaltaskend_1281',['SignalTaskEnd',['../classGpgFrontend_1_1Thread_1_1Task.html#abbbb68bcac48b6c31d6fe8ee1572f151',1,'GpgFrontend::Thread::Task']]],
- ['signaltaskrunnableend_1282',['SignalTaskRunnableEnd',['../classGpgFrontend_1_1Thread_1_1Task.html#a125b7e71f21dadf10618e30ee0386b12',1,'GpgFrontend::Thread::Task']]],
- ['signaluibytesdisplayed_1283',['SignalUIBytesDisplayed',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#afd3749488fdd3d1c53446fb8c833f3f4',1,'GpgFrontend::UI::PlainTextEditorPage']]],
- ['signalupgradeversion_1284',['SignalUpgradeVersion',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a36c5597674253348477d78ad6af380ab',1,'GpgFrontend::UI::VersionCheckTask']]],
- ['signerspicker_1285',['SignersPicker',['../classGpgFrontend_1_1UI_1_1SignersPicker.html#a02c3ba737702894fc6d4ac1a1c543ccb',1,'GpgFrontend::UI::SignersPicker']]],
- ['signfile_1286',['SignFile',['../classGpgFrontend_1_1GpgFileOpera.html#a350df1c07c054625c4755a78e6ca5ca8',1,'GpgFrontend::GpgFileOpera']]],
- ['signkey_1287',['SignKey',['../classGpgFrontend_1_1GpgKeyManager.html#a12138780c53add7589f78f056019e5e0',1,'GpgFrontend::GpgKeyManager']]],
- ['singletonfunctionobject_1288',['SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html#a7090636bed6f4bad5b99f28f6872c645',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(const T &)=delete'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a194e49b07d46345bdad386505d743a61',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(const SingletonFunctionObject< T > &)=delete'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a4aa7f1eb1d3281bb1fccfcbb1b416251',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(int channel)'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a02e76b42ab51d77588b01c7508bed258',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject()=default'],['../classGpgFrontend_1_1SingletonFunctionObject.html#aabc5fe8e5a372ac276a265286457cb9a',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(T &&)=delete']]],
- ['slot_5factivated_5fkey_5ftype_1289',['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_1290',['slot_add_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a821247d738457c4ee046162aad6728f9',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fadd_5fuid_5fresult_1291',['slot_add_uid_result',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a16f1ae88d6a417b614cfc6ae1852187c',1,'GpgFrontend::UI::KeyPairUIDTab']]],
- ['slot_5fappend_5fselected_5fkeys_1292',['slot_append_selected_keys',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a76bf3784d751db78ed13bd9962e14472',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fauthentication_5fbox_5fchanged_1293',['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()']]],
- ['slot_5fcertification_5fbox_5fchanged_1294',['slot_certification_box_changed',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a8ab50d8f47489c57e382b3fe231ba9a7',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_certification_box_changed()'],['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a48e953cd49efde2315868e8606af7226',1,'GpgFrontend::UI::KeyGenDialog::slot_certification_box_changed()']]],
- ['slot_5fclean_5fdouble_5fline_5fbreaks_1295',['slot_clean_double_line_breaks',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aea9274389c3b049793fe5aa5a6adf63c',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fcompress_5ffiles_1296',['slot_compress_files',['../classGpgFrontend_1_1UI_1_1FilePage.html#a250b1950f874c1d11549cd5c0ea9693f',1,'GpgFrontend::UI::FilePage']]],
- ['slot_5fcopy_5ffingerprint_1297',['slot_copy_fingerprint',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#af8b600fbd7cd0fbb5b6183403bf870b2',1,'GpgFrontend::UI::KeyPairDetailTab']]],
- ['slot_5fcopy_5fmail_5faddress_5fto_5fclipboard_1298',['slot_copy_mail_address_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af93d72eaf58326f1f9e926752c6b1fc6',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fcreate_5fnew_5fuid_1299',['slot_create_new_uid',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a4e115ce46a85c2f9e4e0e2427839fc7c',1,'GpgFrontend::UI::KeyNewUIDDialog']]],
- ['slot_5fcut_5fpgp_5fheader_1300',['slot_cut_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7f5a88922d06bee977335fb4b5f1d86d',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fdecrypt_1301',['slot_decrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae2d89e2cc6c99ff0e16b396d2381f904',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fdecrypt_5fverify_1302',['slot_decrypt_verify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1d61ea803e6c825bd54f42ba9ae85919',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fdisable_5ftab_5factions_1303',['slot_disable_tab_actions',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a24a0b0d974fc5f8fdda60c128a82d957',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fdouble_5fclicked_1304',['slot_double_clicked',['../classGpgFrontend_1_1UI_1_1KeyList.html#a69e54f06d546d516a0dcdf1055b8028e',1,'GpgFrontend::UI::KeyList']]],
- ['slot_5fencrypt_1305',['slot_encrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae11d01211c2914ecc148e13dd7de506e',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fencrypt_5fsign_1306',['slot_encrypt_sign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a304efe91afa31b32725caa00c27475a4',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fencryption_5fbox_5fchanged_1307',['slot_encryption_box_changed',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a1f4dda7500b3de7476e5d1e7bd5b550b',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_encryption_box_changed()'],['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ae611933ccd6fd67e65a2cf1ff09b5e8f',1,'GpgFrontend::UI::KeyGenDialog::slot_encryption_box_changed(int state)']]],
- ['slot_5fexpire_5fbox_5fchanged_1308',['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_1309',['slot_export_private_key',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a384f4250e58110da58c0e6996b42a8ab',1,'GpgFrontend::UI::KeyPairOperaTab']]],
- ['slot_5ffile_5ftree_5fview_5fitem_5fclicked_1310',['slot_file_tree_view_item_clicked',['../classGpgFrontend_1_1UI_1_1FilePage.html#a676917817d6f519e043742d1d87f97f1',1,'GpgFrontend::UI::FilePage']]],
- ['slot_5ffile_5ftree_5fview_5fitem_5fdouble_5fclicked_1311',['slot_file_tree_view_item_double_clicked',['../classGpgFrontend_1_1UI_1_1FilePage.html#ad3c54320bdafbbb2c06a20d6c7dea9d6',1,'GpgFrontend::UI::FilePage']]],
- ['slot_5ffind_1312',['slot_find',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae28089efbd236708601470f30f26faaa',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fformat_5fgpg_5fheader_1313',['slot_format_gpg_header',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a45267bcfc8fc83851894061c0fe2a9c2',1,'GpgFrontend::UI::PlainTextEditorPage']]],
- ['slot_5fimport_1314',['slot_import',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ac9c14bbc97945c94fd02c8e067ccab06',1,'GpgFrontend::UI::KeyServerImportDialog']]],
- ['slot_5fimport_5ffinished_1315',['slot_import_finished',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a6f1c5238da7cd6f117bed8018469b37a',1,'GpgFrontend::UI::KeyServerImportDialog']]],
- ['slot_5fimport_5fkey_5ffrom_5fedit_1316',['slot_import_key_from_edit',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a55926649e28a96318b89afba01b966bf',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5finsert_5ftext_1317',['slot_insert_text',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a184985104f23da8fdf2b9aaf7b27405b',1,'GpgFrontend::UI::PlainTextEditorPage']]],
- ['slot_5fjump_5fpage_1318',['slot_jump_page',['../classGpgFrontend_1_1UI_1_1ChoosePage.html#af0d7890fe65385b7785719b9cff0718b',1,'GpgFrontend::UI::ChoosePage']]],
- ['slot_5fkey_5fgen_5faccept_1319',['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_1320',['slot_non_expired_checked',['../classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#adde2b33bd17f521f0630702987b1d274',1,'GpgFrontend::UI::KeySetExpireDateDialog']]],
- ['slot_5fopen_5ffile_5ftab_1321',['slot_open_file_tab',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a29a811d4d440c79c1bd2cc2bb40cdf7e',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fopen_5fkey_5fmanagement_1322',['slot_open_key_management',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a16ddebec90a4bd0d13baa9d972c3445f',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fopen_5fsettings_5fdialog_1323',['slot_open_settings_dialog',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a874b505fbc1046f579a736683f5a7f65',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fopen_5furl_1324',['slot_open_url',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a51ff99077a75507365307f5dd783df99',1,'GpgFrontend::UI::HelpPage']]],
- ['slot_5fprocess_5fnetwork_5freply_1325',['slot_process_network_reply',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#af9350e0a8d5993e5be0a5478fcb161be',1,'GpgFrontend::UI::ListedKeyServerTestTask']]],
- ['slot_5fremove_5ftab_1326',['slot_remove_tab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a12f65fbc4984c266a5df4505ecde7c42',1,'GpgFrontend::UI::TextEdit']]],
- ['slot_5fsave_5fstatus_5fto_5fcache_5ffor_5frevovery_1327',['slot_save_status_to_cache_for_revovery',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a1bf57ebe1e32b12c48bb633b7dd7a4f1',1,'GpgFrontend::UI::TextEdit']]],
- ['slot_5fset_5frestart_5fneeded_1328',['slot_set_restart_needed',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#acc6b4386de554fce6fbb60ac6d201952',1,'GpgFrontend::UI::SettingsDialog']]],
- ['slot_5fshow_5fkey_5fdetails_1329',['slot_show_key_details',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a033d448541b44fa48b76dec828a4eb0e',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fshow_5fversion_5fstatus_1330',['slot_show_version_status',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a1003bd969ecbc5deba940e39436968f4',1,'GpgFrontend::UI::UpdateTab']]],
- ['slot_5fsign_1331',['slot_sign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3f3d03b0ec22385bee559fbd2aeb881b',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fsign_5fkey_1332',['slot_sign_key',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#a82f6bf641ff3b64341a0bdcf76571c43',1,'GpgFrontend::UI::KeyUIDSignDialog']]],
- ['slot_5fsigning_5fbox_5fchanged_1333',['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_1334',['slot_start_wizard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aabf3ddf6b624790369f164b4889c95be',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fupdate_5fkey_5fstatus_1335',['slot_update_key_status',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#ab4ac26378d6a07757720163eb4b1cb0e',1,'GpgFrontend::UI::CommonUtils']]],
- ['slot_5fupload_5fkey_5fto_5fserver_1336',['slot_upload_key_to_server',['../classGpgFrontend_1_1UI_1_1KeyUploadDialog.html#a0f724649ca953b888f07d69c97fe45b6',1,'GpgFrontend::UI::KeyUploadDialog']]],
- ['slot_5fverify_1337',['slot_verify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa9c986dd95984811479ea93230c74b5d',1,'GpgFrontend::UI::MainWindow']]],
- ['slot_5fversion_5fupgrade_1338',['slot_version_upgrade',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a48368c77af7b1f4cb632870b8d914a28',1,'GpgFrontend::UI::MainWindow']]],
- ['slotclosetab_1339',['SlotCloseTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa21659aa7acba98dfd6286d69e00ab9b',1,'GpgFrontend::UI::TextEdit']]],
- ['slotcopy_1340',['SlotCopy',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3599bd01636a873cf3437ab6b9d38780',1,'GpgFrontend::UI::TextEdit']]],
- ['slotcurpagefiletreeview_1341',['SlotCurPageFileTreeView',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a72014409d407c161b048e07c061b4cf9',1,'GpgFrontend::UI::TextEdit']]],
- ['slotcurpagetextedit_1342',['SlotCurPageTextEdit',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a48351dc1529da3b8da311f65b735b5f1',1,'GpgFrontend::UI::TextEdit']]],
- ['slotcut_1343',['SlotCut',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae1e710c6722910b8d35df97aaabb3162',1,'GpgFrontend::UI::TextEdit']]],
- ['slotexecutecommand_1344',['SlotExecuteCommand',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a95cd625a2e0e74ee4d564843c6d16791',1,'GpgFrontend::UI::CommonUtils']]],
- ['slotexecutegpgcommand_1345',['SlotExecuteGpgCommand',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#afc845c1c37487c99f78d8e66f6874f6d',1,'GpgFrontend::UI::CommonUtils']]],
- ['slotfiledecrypt_1346',['SlotFileDecrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0a6d0618f2835a6dcae707a4ca770a48',1,'GpgFrontend::UI::MainWindow']]],
- ['slotfiledecryptverify_1347',['SlotFileDecryptVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab23c7e67dd1f5295b3c49ad79dfd5919',1,'GpgFrontend::UI::MainWindow']]],
- ['slotfileencrypt_1348',['SlotFileEncrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9ec699536a35a37961a8c6da1e231ae3',1,'GpgFrontend::UI::MainWindow']]],
- ['slotfileencryptsign_1349',['SlotFileEncryptSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a25a2e4017d77cffc8362bde9606fad30',1,'GpgFrontend::UI::MainWindow']]],
- ['slotfilesign_1350',['SlotFileSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8bcdcbe678b8dc0837fffda2ebfe79bf',1,'GpgFrontend::UI::MainWindow']]],
- ['slotfileverify_1351',['SlotFileVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9879061cfd321c6757c77f75d46dc7d8',1,'GpgFrontend::UI::MainWindow']]],
- ['slotfilltexteditwithtext_1352',['SlotFillTextEditWithText',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af466ec2b8ab3f695d206efc0574bbe20',1,'GpgFrontend::UI::TextEdit']]],
- ['slotimport_1353',['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_1354',['SlotImportKeyFromClipboard',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a0c8bf56fc5371cd2c5e9d2a0f67bf72a',1,'GpgFrontend::UI::CommonUtils']]],
- ['slotimportkeyfromfile_1355',['SlotImportKeyFromFile',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a057526790f6b2f6288c3a35322c34d8d',1,'GpgFrontend::UI::CommonUtils']]],
- ['slotimportkeyfromkeyserver_1356',['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_1357',['SlotImportKeys',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a3bc26cc1e0f00f0ce2f95c0b6c8778d8',1,'GpgFrontend::UI::CommonUtils']]],
- ['slotnewfiletab_1358',['SlotNewFileTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae22ecadf31648f424eb8ab86bd28ef39',1,'GpgFrontend::UI::TextEdit']]],
- ['slotnewhelptab_1359',['slotNewHelpTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3c17fdf3abf9c4fb6ce35cfb8f0f8fc4',1,'GpgFrontend::UI::TextEdit']]],
- ['slotnewtab_1360',['SlotNewTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a57a46ab5595622ae0b7bceef7d56bd7c',1,'GpgFrontend::UI::TextEdit']]],
- ['slotopen_1361',['SlotOpen',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a15335d38187ddf580b7200d856768cfb',1,'GpgFrontend::UI::TextEdit']]],
- ['slotopenfile_1362',['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_1363',['SlotPaste',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa2230418dc8f72c400f5a90082a983c9',1,'GpgFrontend::UI::TextEdit']]],
- ['slotprint_1364',['SlotPrint',['../classGpgFrontend_1_1UI_1_1TextEdit.html#adca2bbfa746b5598f2a4f74026b84224',1,'GpgFrontend::UI::TextEdit']]],
- ['slotquote_1365',['SlotQuote',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6a02fce9dc4039c982d6dd19231517ee',1,'GpgFrontend::UI::TextEdit']]],
- ['slotredo_1366',['SlotRedo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae2b3bf422789d56087face98b6a9e929',1,'GpgFrontend::UI::TextEdit']]],
- ['slotrefresh_1367',['SlotRefresh',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a68f984815100f4ce281b9794f193e516',1,'GpgFrontend::UI::InfoBoardWidget']]],
- ['slotsave_1368',['SlotSave',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ace0b8f4c161db9f4f5db5ecbfd7a91c0',1,'GpgFrontend::UI::TextEdit']]],
- ['slotsaveas_1369',['SlotSaveAs',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a02fa44ba0c56f3f6ae125f8490faf254',1,'GpgFrontend::UI::TextEdit']]],
- ['slotselectall_1370',['SlotSelectAll',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6c814253dfc061bfdae0fa71c6196c55',1,'GpgFrontend::UI::TextEdit']]],
- ['slotsetrestartneeded_1371',['SlotSetRestartNeeded',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a276e843e2f5eda8934fb350fb6f89327',1,'GpgFrontend::UI::MainWindow']]],
- ['slotshowmodified_1372',['SlotShowModified',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ab24adc1adb3b9b29469992e4c444436e',1,'GpgFrontend::UI::TextEdit']]],
- ['slotswitchtabdown_1373',['SlotSwitchTabDown',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a576e06390e65576465297d2ab8d7d474',1,'GpgFrontend::UI::TextEdit']]],
- ['slotswitchtabup_1374',['SlotSwitchTabUp',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af1e364b513f566c743a5d36c19098762',1,'GpgFrontend::UI::TextEdit']]],
- ['slotundo_1375',['SlotUndo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a4a81e69f6dc74ea649ca9a2358342fd5',1,'GpgFrontend::UI::TextEdit']]],
- ['startdirmngr_1376',['StartDirmngr',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a46085a11235894deccd312fc259d5078',1,'GpgFrontend::GpgAdvancedOperator']]],
- ['startgpgagent_1377',['StartGpgAgent',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a07c32ba25cf6153fbc8ee585c4ba377c',1,'GpgFrontend::GpgAdvancedOperator']]],
- ['startkeyboxd_1378',['StartKeyBoxd',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a9313410359ed9cff9ee66fa9b4b095ee',1,'GpgFrontend::GpgAdvancedOperator']]],
- ['stripped_5fname_1379',['stripped_name',['../classGpgFrontend_1_1UI_1_1TextEdit.html#afb9b7a7d88154d774b3d727d8e640cbb',1,'GpgFrontend::UI::TextEdit']]],
- ['subkeygeneratedialog_1380',['SubkeyGenerateDialog',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a8f9d8baa7b576a4aa857818b87c26bcd',1,'GpgFrontend::UI::SubkeyGenerateDialog']]],
- ['switch_5fui_5fenabled_1381',['switch_ui_enabled',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#ae3d97948f205e84f0604d4da634a4513',1,'GpgFrontend::UI::NetworkTab']]],
- ['switch_5fui_5fproxy_5ftype_1382',['switch_ui_proxy_type',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#a1b0297158f13daec77645c88e5a8adcd',1,'GpgFrontend::UI::NetworkTab']]],
- ['syncsettings_1383',['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_1AppearanceTab.html#abff49b636449815a9ebff52f5c067712',1,'GpgFrontend::UI::AppearanceTab']]],
+ ['signalrestartneeded_1297',['SignalRestartNeeded',['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#a26449a77844d9db69a543ff88f10e347',1,'GpgFrontend::UI::KeyserverTab::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#af5ba6646af45d0d1d794bc52ee54b1b9',1,'GpgFrontend::UI::SettingsDialog::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html#a35a707865fbcc95b6261e382a6ff171c',1,'GpgFrontend::UI::GnuPGControllerDialog::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1GeneralTab.html#aa88ccbda61728be6de0aa2d9b92e0b69',1,'GpgFrontend::UI::GeneralTab::SignalRestartNeeded()']]],
+ ['signaltaskend_1298',['SignalTaskEnd',['../classGpgFrontend_1_1Thread_1_1Task.html#abbbb68bcac48b6c31d6fe8ee1572f151',1,'GpgFrontend::Thread::Task']]],
+ ['signaltaskrunnableend_1299',['SignalTaskRunnableEnd',['../classGpgFrontend_1_1Thread_1_1Task.html#a125b7e71f21dadf10618e30ee0386b12',1,'GpgFrontend::Thread::Task']]],
+ ['signaluibytesdisplayed_1300',['SignalUIBytesDisplayed',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#afd3749488fdd3d1c53446fb8c833f3f4',1,'GpgFrontend::UI::PlainTextEditorPage']]],
+ ['signalupgradeversion_1301',['SignalUpgradeVersion',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a36c5597674253348477d78ad6af380ab',1,'GpgFrontend::UI::VersionCheckTask']]],
+ ['signerspicker_1302',['SignersPicker',['../classGpgFrontend_1_1UI_1_1SignersPicker.html#a02c3ba737702894fc6d4ac1a1c543ccb',1,'GpgFrontend::UI::SignersPicker']]],
+ ['signfile_1303',['SignFile',['../classGpgFrontend_1_1GpgFileOpera.html#a350df1c07c054625c4755a78e6ca5ca8',1,'GpgFrontend::GpgFileOpera']]],
+ ['signkey_1304',['SignKey',['../classGpgFrontend_1_1GpgKeyManager.html#a12138780c53add7589f78f056019e5e0',1,'GpgFrontend::GpgKeyManager']]],
+ ['singletonfunctionobject_1305',['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_1306',['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_1307',['slot_add_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a821247d738457c4ee046162aad6728f9',1,'GpgFrontend::UI::MainWindow']]],
+ ['slot_5fadd_5fuid_5fresult_1308',['slot_add_uid_result',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a16f1ae88d6a417b614cfc6ae1852187c',1,'GpgFrontend::UI::KeyPairUIDTab']]],
+ ['slot_5fappend_5fselected_5fkeys_1309',['slot_append_selected_keys',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a76bf3784d751db78ed13bd9962e14472',1,'GpgFrontend::UI::MainWindow']]],
+ ['slot_5fauthentication_5fbox_5fchanged_1310',['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_1311',['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_1312',['slot_clean_double_line_breaks',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aea9274389c3b049793fe5aa5a6adf63c',1,'GpgFrontend::UI::MainWindow']]],
+ ['slot_5fcompress_5ffiles_1313',['slot_compress_files',['../classGpgFrontend_1_1UI_1_1FilePage.html#a250b1950f874c1d11549cd5c0ea9693f',1,'GpgFrontend::UI::FilePage']]],
+ ['slot_5fcopy_5fdefault_5fuid_5fto_5fclipboard_1314',['slot_copy_default_uid_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3982432b140738859415e487e2c5f5eb',1,'GpgFrontend::UI::MainWindow']]],
+ ['slot_5fcopy_5ffingerprint_1315',['slot_copy_fingerprint',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#af8b600fbd7cd0fbb5b6183403bf870b2',1,'GpgFrontend::UI::KeyPairDetailTab']]],
+ ['slot_5fcopy_5fkey_5fid_5fto_5fclipboard_1316',['slot_copy_key_id_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9e2ddb2135df42d76134bea168fbdce9',1,'GpgFrontend::UI::MainWindow']]],
+ ['slot_5fcopy_5fmail_5faddress_5fto_5fclipboard_1317',['slot_copy_mail_address_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af93d72eaf58326f1f9e926752c6b1fc6',1,'GpgFrontend::UI::MainWindow']]],
+ ['slot_5fcreate_5fnew_5fuid_1318',['slot_create_new_uid',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a4e115ce46a85c2f9e4e0e2427839fc7c',1,'GpgFrontend::UI::KeyNewUIDDialog']]],
+ ['slot_5fcut_5fpgp_5fheader_1319',['slot_cut_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7f5a88922d06bee977335fb4b5f1d86d',1,'GpgFrontend::UI::MainWindow']]],
+ ['slot_5fdecrypt_1320',['slot_decrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae2d89e2cc6c99ff0e16b396d2381f904',1,'GpgFrontend::UI::MainWindow']]],
+ ['slot_5fdecrypt_5fverify_1321',['slot_decrypt_verify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1d61ea803e6c825bd54f42ba9ae85919',1,'GpgFrontend::UI::MainWindow']]],
+ ['slot_5fdisable_5ftab_5factions_1322',['slot_disable_tab_actions',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a24a0b0d974fc5f8fdda60c128a82d957',1,'GpgFrontend::UI::MainWindow']]],
+ ['slot_5fdouble_5fclicked_1323',['slot_double_clicked',['../classGpgFrontend_1_1UI_1_1KeyList.html#a69e54f06d546d516a0dcdf1055b8028e',1,'GpgFrontend::UI::KeyList']]],
+ ['slot_5fencrypt_1324',['slot_encrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae11d01211c2914ecc148e13dd7de506e',1,'GpgFrontend::UI::MainWindow']]],
+ ['slot_5fencrypt_5fsign_1325',['slot_encrypt_sign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a304efe91afa31b32725caa00c27475a4',1,'GpgFrontend::UI::MainWindow']]],
+ ['slot_5fencryption_5fbox_5fchanged_1326',['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_1327',['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_1328',['slot_export_private_key',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a384f4250e58110da58c0e6996b42a8ab',1,'GpgFrontend::UI::KeyPairOperaTab']]],
+ ['slot_5ffile_5ftree_5fview_5fitem_5fclicked_1329',['slot_file_tree_view_item_clicked',['../classGpgFrontend_1_1UI_1_1FilePage.html#a676917817d6f519e043742d1d87f97f1',1,'GpgFrontend::UI::FilePage']]],
+ ['slot_5ffile_5ftree_5fview_5fitem_5fdouble_5fclicked_1330',['slot_file_tree_view_item_double_clicked',['../classGpgFrontend_1_1UI_1_1FilePage.html#ad3c54320bdafbbb2c06a20d6c7dea9d6',1,'GpgFrontend::UI::FilePage']]],
+ ['slot_5ffind_1331',['slot_find',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae28089efbd236708601470f30f26faaa',1,'GpgFrontend::UI::MainWindow']]],
+ ['slot_5fformat_5fgpg_5fheader_1332',['slot_format_gpg_header',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a45267bcfc8fc83851894061c0fe2a9c2',1,'GpgFrontend::UI::PlainTextEditorPage']]],
+ ['slot_5fimport_1333',['slot_import',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ac9c14bbc97945c94fd02c8e067ccab06',1,'GpgFrontend::UI::KeyServerImportDialog']]],
+ ['slot_5fimport_5ffinished_1334',['slot_import_finished',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a6f1c5238da7cd6f117bed8018469b37a',1,'GpgFrontend::UI::KeyServerImportDialog']]],
+ ['slot_5fimport_5fkey_5ffrom_5fedit_1335',['slot_import_key_from_edit',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a55926649e28a96318b89afba01b966bf',1,'GpgFrontend::UI::MainWindow']]],
+ ['slot_5finsert_5ftext_1336',['slot_insert_text',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a184985104f23da8fdf2b9aaf7b27405b',1,'GpgFrontend::UI::PlainTextEditorPage']]],
+ ['slot_5fjump_5fpage_1337',['slot_jump_page',['../classGpgFrontend_1_1UI_1_1ChoosePage.html#af0d7890fe65385b7785719b9cff0718b',1,'GpgFrontend::UI::ChoosePage']]],
+ ['slot_5fkey_5fgen_5faccept_1338',['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_1339',['slot_non_expired_checked',['../classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#adde2b33bd17f521f0630702987b1d274',1,'GpgFrontend::UI::KeySetExpireDateDialog']]],
+ ['slot_5fopen_5ffile_5ftab_1340',['slot_open_file_tab',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a29a811d4d440c79c1bd2cc2bb40cdf7e',1,'GpgFrontend::UI::MainWindow']]],
+ ['slot_5fopen_5fkey_5fmanagement_1341',['slot_open_key_management',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a16ddebec90a4bd0d13baa9d972c3445f',1,'GpgFrontend::UI::MainWindow']]],
+ ['slot_5fopen_5fsettings_5fdialog_1342',['slot_open_settings_dialog',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a874b505fbc1046f579a736683f5a7f65',1,'GpgFrontend::UI::MainWindow']]],
+ ['slot_5fopen_5furl_1343',['slot_open_url',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a51ff99077a75507365307f5dd783df99',1,'GpgFrontend::UI::HelpPage']]],
+ ['slot_5fprocess_5fnetwork_5freply_1344',['slot_process_network_reply',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#af9350e0a8d5993e5be0a5478fcb161be',1,'GpgFrontend::UI::ListedKeyServerTestTask']]],
+ ['slot_5fremove_5ftab_1345',['slot_remove_tab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a12f65fbc4984c266a5df4505ecde7c42',1,'GpgFrontend::UI::TextEdit']]],
+ ['slot_5fsave_5fstatus_5fto_5fcache_5ffor_5frevovery_1346',['slot_save_status_to_cache_for_revovery',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a1bf57ebe1e32b12c48bb633b7dd7a4f1',1,'GpgFrontend::UI::TextEdit']]],
+ ['slot_5fset_5frestart_5fneeded_1347',['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_1348',['slot_show_key_details',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a033d448541b44fa48b76dec828a4eb0e',1,'GpgFrontend::UI::MainWindow']]],
+ ['slot_5fshow_5fversion_5fstatus_1349',['slot_show_version_status',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a1003bd969ecbc5deba940e39436968f4',1,'GpgFrontend::UI::UpdateTab']]],
+ ['slot_5fsign_1350',['slot_sign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3f3d03b0ec22385bee559fbd2aeb881b',1,'GpgFrontend::UI::MainWindow']]],
+ ['slot_5fsign_5fkey_1351',['slot_sign_key',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#a82f6bf641ff3b64341a0bdcf76571c43',1,'GpgFrontend::UI::KeyUIDSignDialog']]],
+ ['slot_5fsigning_5fbox_5fchanged_1352',['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_1353',['slot_start_wizard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aabf3ddf6b624790369f164b4889c95be',1,'GpgFrontend::UI::MainWindow']]],
+ ['slot_5fupdate_5fkey_5fstatus_1354',['slot_update_key_status',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#ab4ac26378d6a07757720163eb4b1cb0e',1,'GpgFrontend::UI::CommonUtils']]],
+ ['slot_5fupload_5fkey_5fto_5fserver_1355',['slot_upload_key_to_server',['../classGpgFrontend_1_1UI_1_1KeyUploadDialog.html#a0f724649ca953b888f07d69c97fe45b6',1,'GpgFrontend::UI::KeyUploadDialog']]],
+ ['slot_5fverify_1356',['slot_verify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa9c986dd95984811479ea93230c74b5d',1,'GpgFrontend::UI::MainWindow']]],
+ ['slot_5fversion_5fupgrade_1357',['slot_version_upgrade',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a48368c77af7b1f4cb632870b8d914a28',1,'GpgFrontend::UI::MainWindow']]],
+ ['slotclosetab_1358',['SlotCloseTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa21659aa7acba98dfd6286d69e00ab9b',1,'GpgFrontend::UI::TextEdit']]],
+ ['slotcopy_1359',['SlotCopy',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3599bd01636a873cf3437ab6b9d38780',1,'GpgFrontend::UI::TextEdit']]],
+ ['slotcurpagefiletreeview_1360',['SlotCurPageFileTreeView',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a72014409d407c161b048e07c061b4cf9',1,'GpgFrontend::UI::TextEdit']]],
+ ['slotcurpagetextedit_1361',['SlotCurPageTextEdit',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a48351dc1529da3b8da311f65b735b5f1',1,'GpgFrontend::UI::TextEdit']]],
+ ['slotcut_1362',['SlotCut',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae1e710c6722910b8d35df97aaabb3162',1,'GpgFrontend::UI::TextEdit']]],
+ ['slotexecutecommand_1363',['SlotExecuteCommand',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a95cd625a2e0e74ee4d564843c6d16791',1,'GpgFrontend::UI::CommonUtils']]],
+ ['slotexecutegpgcommand_1364',['SlotExecuteGpgCommand',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#afc845c1c37487c99f78d8e66f6874f6d',1,'GpgFrontend::UI::CommonUtils']]],
+ ['slotfiledecrypt_1365',['SlotFileDecrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0a6d0618f2835a6dcae707a4ca770a48',1,'GpgFrontend::UI::MainWindow']]],
+ ['slotfiledecryptverify_1366',['SlotFileDecryptVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab23c7e67dd1f5295b3c49ad79dfd5919',1,'GpgFrontend::UI::MainWindow']]],
+ ['slotfileencrypt_1367',['SlotFileEncrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9ec699536a35a37961a8c6da1e231ae3',1,'GpgFrontend::UI::MainWindow']]],
+ ['slotfileencryptsign_1368',['SlotFileEncryptSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a25a2e4017d77cffc8362bde9606fad30',1,'GpgFrontend::UI::MainWindow']]],
+ ['slotfilesign_1369',['SlotFileSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8bcdcbe678b8dc0837fffda2ebfe79bf',1,'GpgFrontend::UI::MainWindow']]],
+ ['slotfileverify_1370',['SlotFileVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9879061cfd321c6757c77f75d46dc7d8',1,'GpgFrontend::UI::MainWindow']]],
+ ['slotfilltexteditwithtext_1371',['SlotFillTextEditWithText',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af466ec2b8ab3f695d206efc0574bbe20',1,'GpgFrontend::UI::TextEdit']]],
+ ['slotimport_1372',['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_1373',['SlotImportKeyFromClipboard',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a0c8bf56fc5371cd2c5e9d2a0f67bf72a',1,'GpgFrontend::UI::CommonUtils']]],
+ ['slotimportkeyfromfile_1374',['SlotImportKeyFromFile',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a057526790f6b2f6288c3a35322c34d8d',1,'GpgFrontend::UI::CommonUtils']]],
+ ['slotimportkeyfromkeyserver_1375',['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_1376',['SlotImportKeys',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a3bc26cc1e0f00f0ce2f95c0b6c8778d8',1,'GpgFrontend::UI::CommonUtils']]],
+ ['slotnewfiletab_1377',['SlotNewFileTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae22ecadf31648f424eb8ab86bd28ef39',1,'GpgFrontend::UI::TextEdit']]],
+ ['slotnewhelptab_1378',['slotNewHelpTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3c17fdf3abf9c4fb6ce35cfb8f0f8fc4',1,'GpgFrontend::UI::TextEdit']]],
+ ['slotnewtab_1379',['SlotNewTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a57a46ab5595622ae0b7bceef7d56bd7c',1,'GpgFrontend::UI::TextEdit']]],
+ ['slotopen_1380',['SlotOpen',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a15335d38187ddf580b7200d856768cfb',1,'GpgFrontend::UI::TextEdit']]],
+ ['slotopenfile_1381',['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_1382',['SlotPaste',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa2230418dc8f72c400f5a90082a983c9',1,'GpgFrontend::UI::TextEdit']]],
+ ['slotprint_1383',['SlotPrint',['../classGpgFrontend_1_1UI_1_1TextEdit.html#adca2bbfa746b5598f2a4f74026b84224',1,'GpgFrontend::UI::TextEdit']]],
+ ['slotquote_1384',['SlotQuote',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6a02fce9dc4039c982d6dd19231517ee',1,'GpgFrontend::UI::TextEdit']]],
+ ['slotredo_1385',['SlotRedo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae2b3bf422789d56087face98b6a9e929',1,'GpgFrontend::UI::TextEdit']]],
+ ['slotrefresh_1386',['SlotRefresh',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a68f984815100f4ce281b9794f193e516',1,'GpgFrontend::UI::InfoBoardWidget']]],
+ ['slotsave_1387',['SlotSave',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ace0b8f4c161db9f4f5db5ecbfd7a91c0',1,'GpgFrontend::UI::TextEdit']]],
+ ['slotsaveas_1388',['SlotSaveAs',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a02fa44ba0c56f3f6ae125f8490faf254',1,'GpgFrontend::UI::TextEdit']]],
+ ['slotselectall_1389',['SlotSelectAll',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6c814253dfc061bfdae0fa71c6196c55',1,'GpgFrontend::UI::TextEdit']]],
+ ['slotsetrestartneeded_1390',['SlotSetRestartNeeded',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a276e843e2f5eda8934fb350fb6f89327',1,'GpgFrontend::UI::MainWindow']]],
+ ['slotshowmodified_1391',['SlotShowModified',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ab24adc1adb3b9b29469992e4c444436e',1,'GpgFrontend::UI::TextEdit']]],
+ ['slotswitchtabdown_1392',['SlotSwitchTabDown',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a576e06390e65576465297d2ab8d7d474',1,'GpgFrontend::UI::TextEdit']]],
+ ['slotswitchtabup_1393',['SlotSwitchTabUp',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af1e364b513f566c743a5d36c19098762',1,'GpgFrontend::UI::TextEdit']]],
+ ['slotundo_1394',['SlotUndo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a4a81e69f6dc74ea649ca9a2358342fd5',1,'GpgFrontend::UI::TextEdit']]],
+ ['startdirmngr_1395',['StartDirmngr',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a46085a11235894deccd312fc259d5078',1,'GpgFrontend::GpgAdvancedOperator']]],
+ ['startgpgagent_1396',['StartGpgAgent',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a07c32ba25cf6153fbc8ee585c4ba377c',1,'GpgFrontend::GpgAdvancedOperator']]],
+ ['startkeyboxd_1397',['StartKeyBoxd',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a9313410359ed9cff9ee66fa9b4b095ee',1,'GpgFrontend::GpgAdvancedOperator']]],
+ ['stripped_5fname_1398',['stripped_name',['../classGpgFrontend_1_1UI_1_1TextEdit.html#afb9b7a7d88154d774b3d727d8e640cbb',1,'GpgFrontend::UI::TextEdit']]],
+ ['subkeygeneratedialog_1399',['SubkeyGenerateDialog',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a8f9d8baa7b576a4aa857818b87c26bcd',1,'GpgFrontend::UI::SubkeyGenerateDialog']]],
+ ['switch_5fui_5fenabled_1400',['switch_ui_enabled',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#ae3d97948f205e84f0604d4da634a4513',1,'GpgFrontend::UI::NetworkTab']]],
+ ['switch_5fui_5fproxy_5ftype_1401',['switch_ui_proxy_type',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#a1b0297158f13daec77645c88e5a8adcd',1,'GpgFrontend::UI::NetworkTab']]],
+ ['syncsettings_1402',['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 42953c45..83350496 100644
--- a/docs/html/search/functions_13.js
+++ b/docs/html/search/functions_13.js
@@ -1,13 +1,13 @@
var searchData=
[
- ['tabcount_1384',['TabCount',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a05c54658597b04c3976c72d3a5f9add9',1,'GpgFrontend::UI::TextEdit']]],
- ['takechargeofresult_1385',['TakeChargeOfResult',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#acdb7839a5158f078b38d60f0fefc5155',1,'GpgFrontend::GpgVerifyResultAnalyse']]],
- ['task_1386',['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_1387',['TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#ad3c8612cbe60112f9b14e616fb0a4acf',1,'GpgFrontend::Thread::TaskRunner']]],
- ['taskrunnergetter_1388',['TaskRunnerGetter',['../classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html#a80794d81179f66f4b4ed3122a64f27cf',1,'GpgFrontend::Thread::TaskRunnerGetter']]],
- ['test_5fpassphrase_5fcb_1389',['test_passphrase_cb',['../classGpgFrontend_1_1GpgContext.html#acc4234054002065dfbc5d5261a4950d4',1,'GpgFrontend::GpgContext']]],
- ['test_5fstatus_5fcb_1390',['test_status_cb',['../classGpgFrontend_1_1GpgContext.html#a3844cd0966134939e5c4be9a725e5271',1,'GpgFrontend::GpgContext']]],
- ['text_5fis_5fsigned_1391',['text_is_signed',['../namespaceGpgFrontend.html#a2a0394c8bdd277f5235f9875a1d69a99',1,'GpgFrontend']]],
- ['tofuinfopage_1392',['TOFUInfoPage',['../classGpgFrontend_1_1UI_1_1TOFUInfoPage.html#a9adc1666e3f57536594876520019e395',1,'GpgFrontend::UI::TOFUInfoPage']]],
- ['translatorstab_1393',['TranslatorsTab',['../classGpgFrontend_1_1UI_1_1TranslatorsTab.html#a89e5c7b9c17fb41b7c7bf461fb8ad99e',1,'GpgFrontend::UI::TranslatorsTab']]]
+ ['tabcount_1403',['TabCount',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a05c54658597b04c3976c72d3a5f9add9',1,'GpgFrontend::UI::TextEdit']]],
+ ['takechargeofresult_1404',['TakeChargeOfResult',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#acdb7839a5158f078b38d60f0fefc5155',1,'GpgFrontend::GpgVerifyResultAnalyse']]],
+ ['task_1405',['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_1406',['TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#ad3c8612cbe60112f9b14e616fb0a4acf',1,'GpgFrontend::Thread::TaskRunner']]],
+ ['taskrunnergetter_1407',['TaskRunnerGetter',['../classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html#a80794d81179f66f4b4ed3122a64f27cf',1,'GpgFrontend::Thread::TaskRunnerGetter']]],
+ ['test_5fpassphrase_5fcb_1408',['test_passphrase_cb',['../classGpgFrontend_1_1GpgContext.html#acc4234054002065dfbc5d5261a4950d4',1,'GpgFrontend::GpgContext']]],
+ ['test_5fstatus_5fcb_1409',['test_status_cb',['../classGpgFrontend_1_1GpgContext.html#a3844cd0966134939e5c4be9a725e5271',1,'GpgFrontend::GpgContext']]],
+ ['text_5fis_5fsigned_1410',['text_is_signed',['../namespaceGpgFrontend.html#a2a0394c8bdd277f5235f9875a1d69a99',1,'GpgFrontend']]],
+ ['tofuinfopage_1411',['TOFUInfoPage',['../classGpgFrontend_1_1UI_1_1TOFUInfoPage.html#a9adc1666e3f57536594876520019e395',1,'GpgFrontend::UI::TOFUInfoPage']]],
+ ['translatorstab_1412',['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 e28a21e6..26661c6b 100644
--- a/docs/html/search/functions_14.js
+++ b/docs/html/search/functions_14.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['unsaveddocuments_1394',['UnsavedDocuments',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a82fe98d45f54909ebea933b540367c39',1,'GpgFrontend::UI::TextEdit']]],
- ['updatetab_1395',['UpdateTab',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a833c5f709607032bac530aacf389a117',1,'GpgFrontend::UI::UpdateTab']]],
- ['upload_5fkey_5fto_5fserver_1396',['upload_key_to_server',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad27dcf3f534f13d8df71df680c4d177c',1,'GpgFrontend::UI::MainWindow']]]
+ ['unsaveddocuments_1413',['UnsavedDocuments',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a82fe98d45f54909ebea933b540367c39',1,'GpgFrontend::UI::TextEdit']]],
+ ['updatetab_1414',['UpdateTab',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a833c5f709607032bac530aacf389a117',1,'GpgFrontend::UI::UpdateTab']]],
+ ['upload_5fkey_5fto_5fserver_1415',['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 6568f765..8082424d 100644
--- a/docs/html/search/functions_15.js
+++ b/docs/html/search/functions_15.js
@@ -1,10 +1,10 @@
var searchData=
[
- ['verify_1397',['Verify',['../classGpgFrontend_1_1GpgBasicOperator.html#af0347cb28ff73b2250395ceaa9001509',1,'GpgFrontend::GpgBasicOperator']]],
- ['verifydetailsdialog_1398',['VerifyDetailsDialog',['../classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#ac73f0405e249f623ddd0de22b5130fda',1,'GpgFrontend::UI::VerifyDetailsDialog']]],
- ['verifyfile_1399',['VerifyFile',['../classGpgFrontend_1_1GpgFileOpera.html#a14cddfe822c9410cd9c301d08963b7e7',1,'GpgFrontend::GpgFileOpera']]],
- ['verifykeydetailbox_1400',['VerifyKeyDetailBox',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#afbbe8e87786cca020c9aa8759eb041a0',1,'GpgFrontend::UI::VerifyKeyDetailBox']]],
- ['version_5fcompare_1401',['version_compare',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#ae1989b6a34c76103f4bd06f35686d536',1,'GpgFrontend::UI::SoftwareVersion']]],
- ['versionchecktask_1402',['VersionCheckTask',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9f7a810ae1aa78c2a61e86e7757da385',1,'GpgFrontend::UI::VersionCheckTask']]],
- ['versionwithdrawn_1403',['VersionWithDrawn',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a587a3fdb047a15c3771c2af5eebdbf4b',1,'GpgFrontend::UI::SoftwareVersion']]]
+ ['verify_1416',['Verify',['../classGpgFrontend_1_1GpgBasicOperator.html#af0347cb28ff73b2250395ceaa9001509',1,'GpgFrontend::GpgBasicOperator']]],
+ ['verifydetailsdialog_1417',['VerifyDetailsDialog',['../classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#ac73f0405e249f623ddd0de22b5130fda',1,'GpgFrontend::UI::VerifyDetailsDialog']]],
+ ['verifyfile_1418',['VerifyFile',['../classGpgFrontend_1_1GpgFileOpera.html#a14cddfe822c9410cd9c301d08963b7e7',1,'GpgFrontend::GpgFileOpera']]],
+ ['verifykeydetailbox_1419',['VerifyKeyDetailBox',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#afbbe8e87786cca020c9aa8759eb041a0',1,'GpgFrontend::UI::VerifyKeyDetailBox']]],
+ ['version_5fcompare_1420',['version_compare',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#ae1989b6a34c76103f4bd06f35686d536',1,'GpgFrontend::UI::SoftwareVersion']]],
+ ['versionchecktask_1421',['VersionCheckTask',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9f7a810ae1aa78c2a61e86e7757da385',1,'GpgFrontend::UI::VersionCheckTask']]],
+ ['versionwithdrawn_1422',['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 3bf04d51..5dec9c3e 100644
--- a/docs/html/search/functions_16.js
+++ b/docs/html/search/functions_16.js
@@ -1,9 +1,9 @@
var searchData=
[
- ['waitingdialog_1404',['WaitingDialog',['../classGpgFrontend_1_1UI_1_1WaitingDialog.html#a809d0ffc8208eb2ff5d8da76c8ee10dc',1,'GpgFrontend::UI::WaitingDialog']]],
- ['willcharsetchange_1405',['WillCharsetChange',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a1c1c0174ed1ed9c5a90739eafc5c3267',1,'GpgFrontend::UI::PlainTextEditorPage']]],
- ['wizard_1406',['Wizard',['../classGpgFrontend_1_1UI_1_1Wizard.html#a448db8fe5ace96418ffd1f23b0142b10',1,'GpgFrontend::UI::Wizard']]],
- ['write_5fbuffer_5fto_5ffile_1407',['write_buffer_to_file',['../namespaceGpgFrontend.html#a5135069571678eda9c1f07d17ed9ac41',1,'GpgFrontend']]],
- ['writefile_1408',['WriteFile',['../classGpgFrontend_1_1FileOperator.html#a2f21ef4a88448b1eddf756302913d338',1,'GpgFrontend::FileOperator']]],
- ['writefilestd_1409',['WriteFileStd',['../classGpgFrontend_1_1FileOperator.html#a51121c94dc32a83d7073fbe7138b603b',1,'GpgFrontend::FileOperator']]]
+ ['waitingdialog_1423',['WaitingDialog',['../classGpgFrontend_1_1UI_1_1WaitingDialog.html#a809d0ffc8208eb2ff5d8da76c8ee10dc',1,'GpgFrontend::UI::WaitingDialog']]],
+ ['willcharsetchange_1424',['WillCharsetChange',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a1c1c0174ed1ed9c5a90739eafc5c3267',1,'GpgFrontend::UI::PlainTextEditorPage']]],
+ ['wizard_1425',['Wizard',['../classGpgFrontend_1_1UI_1_1Wizard.html#a448db8fe5ace96418ffd1f23b0142b10',1,'GpgFrontend::UI::Wizard']]],
+ ['write_5fbuffer_5fto_5ffile_1426',['write_buffer_to_file',['../namespaceGpgFrontend.html#a5135069571678eda9c1f07d17ed9ac41',1,'GpgFrontend']]],
+ ['writefile_1427',['WriteFile',['../classGpgFrontend_1_1FileOperator.html#a2f21ef4a88448b1eddf756302913d338',1,'GpgFrontend::FileOperator']]],
+ ['writefilestd_1428',['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 60637269..12ba06a8 100644
--- a/docs/html/search/functions_17.js
+++ b/docs/html/search/functions_17.js
@@ -1,14 +1,14 @@
var searchData=
[
- ['_7edataobject_1410',['~DataObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a85bb3c482bf6f47edcd6593cca568a22',1,'GpgFrontend::Thread::Task::DataObject']]],
- ['_7eglobalsettingstation_1411',['~GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html#af700161900e623a0ea14261d51616451',1,'GpgFrontend::GlobalSettingStation']]],
- ['_7egpgcontext_1412',['~GpgContext',['../classGpgFrontend_1_1GpgContext.html#ae89dee551354c1541337881898832725',1,'GpgFrontend::GpgContext']]],
- ['_7egpgfrontendapplication_1413',['~GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a32f0e7dda69f7b1e3cc869340736c590',1,'GpgFrontend::UI::GpgFrontendApplication']]],
- ['_7egpgkey_1414',['~GpgKey',['../classGpgFrontend_1_1GpgKey.html#a1e9223bb1ad8fbb4e769680de39b3697',1,'GpgFrontend::GpgKey']]],
- ['_7egpgkeysignature_1415',['~GpgKeySignature',['../classGpgFrontend_1_1GpgKeySignature.html#ab4d7044f4e1ddcf0ae0d28be43f0fcb3',1,'GpgFrontend::GpgKeySignature']]],
- ['_7egpgsignature_1416',['~GpgSignature',['../classGpgFrontend_1_1GpgSignature.html#a44f137a457ac109d145a1cdd8e544e3a',1,'GpgFrontend::GpgSignature']]],
- ['_7esettingsobject_1417',['~SettingsObject',['../classGpgFrontend_1_1UI_1_1SettingsObject.html#ae71336d240ace35756d1852a46271f6c',1,'GpgFrontend::UI::SettingsObject']]],
- ['_7esingletonfunctionobject_1418',['~SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html#a8296be8c449f88175285186831b995bc',1,'GpgFrontend::SingletonFunctionObject']]],
- ['_7etask_1419',['~Task',['../classGpgFrontend_1_1Thread_1_1Task.html#a37766a505662b33ad14672c29e209ea8',1,'GpgFrontend::Thread::Task']]],
- ['_7etaskrunner_1420',['~TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#ac3e57b59d537e2a75e741d4a5418ae6d',1,'GpgFrontend::Thread::TaskRunner']]]
+ ['_7edataobject_1429',['~DataObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a85bb3c482bf6f47edcd6593cca568a22',1,'GpgFrontend::Thread::Task::DataObject']]],
+ ['_7eglobalsettingstation_1430',['~GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html#af700161900e623a0ea14261d51616451',1,'GpgFrontend::GlobalSettingStation']]],
+ ['_7egpgcontext_1431',['~GpgContext',['../classGpgFrontend_1_1GpgContext.html#ae89dee551354c1541337881898832725',1,'GpgFrontend::GpgContext']]],
+ ['_7egpgfrontendapplication_1432',['~GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a32f0e7dda69f7b1e3cc869340736c590',1,'GpgFrontend::UI::GpgFrontendApplication']]],
+ ['_7egpgkey_1433',['~GpgKey',['../classGpgFrontend_1_1GpgKey.html#a1e9223bb1ad8fbb4e769680de39b3697',1,'GpgFrontend::GpgKey']]],
+ ['_7egpgkeysignature_1434',['~GpgKeySignature',['../classGpgFrontend_1_1GpgKeySignature.html#ab4d7044f4e1ddcf0ae0d28be43f0fcb3',1,'GpgFrontend::GpgKeySignature']]],
+ ['_7egpgsignature_1435',['~GpgSignature',['../classGpgFrontend_1_1GpgSignature.html#a44f137a457ac109d145a1cdd8e544e3a',1,'GpgFrontend::GpgSignature']]],
+ ['_7esettingsobject_1436',['~SettingsObject',['../classGpgFrontend_1_1UI_1_1SettingsObject.html#ae71336d240ace35756d1852a46271f6c',1,'GpgFrontend::UI::SettingsObject']]],
+ ['_7esingletonfunctionobject_1437',['~SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html#a8296be8c449f88175285186831b995bc',1,'GpgFrontend::SingletonFunctionObject']]],
+ ['_7etask_1438',['~Task',['../classGpgFrontend_1_1Thread_1_1Task.html#a37766a505662b33ad14672c29e209ea8',1,'GpgFrontend::Thread::Task']]],
+ ['_7etaskrunner_1439',['~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 483361d0..815a3f37 100644
--- a/docs/html/search/functions_2.js
+++ b/docs/html/search/functions_2.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['beautify_5ffingerprint_887',['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 ae0800af..a2ed962c 100644
--- a/docs/html/search/functions_3.js
+++ b/docs/html/search/functions_3.js
@@ -1,49 +1,50 @@
var searchData=
[
- ['calculatehash_888',['CalculateHash',['../classGpgFrontend_1_1FileOperator.html#a08baef750a723ee709804120a34d19c9',1,'GpgFrontend::FileOperator']]],
- ['channelobject_889',['ChannelObject',['../classGpgFrontend_1_1ChannelObject.html#aedbf32eddc701e521bd8e790ef208da0',1,'GpgFrontend::ChannelObject::ChannelObject() noexcept'],['../classGpgFrontend_1_1ChannelObject.html#a68ad2a19339e3cd50626fe0eaad17ccd',1,'GpgFrontend::ChannelObject::ChannelObject(int channel)']]],
- ['check_890',['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_891',['check_binary_chacksum',['../classGpgFrontend_1_1GpgContext.html#a76fba43d1439c7811e1a9424d0c16d40',1,'GpgFrontend::GpgContext']]],
- ['check_5femail_5faddress_892',['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_893',['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_894',['check_gpg_error_2_err_code',['../namespaceGpgFrontend.html#a4edac6df92596ba8eea3a8cdc1173684',1,'GpgFrontend']]],
- ['choosepage_895',['ChoosePage',['../classGpgFrontend_1_1UI_1_1ChoosePage.html#ae370e789009be3926410cb749c86907b',1,'GpgFrontend::UI::ChoosePage']]],
- ['cleargpgpasswordcache_896',['ClearGpgPasswordCache',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a71eb87ed095754ee1e9fa79125240f3e',1,'GpgFrontend::GpgAdvancedOperator']]],
- ['close_5fattachment_5fdock_897',['close_attachment_dock',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a473b679fa0dc3cdf4f6f98d6553fa0ec',1,'GpgFrontend::UI::MainWindow']]],
- ['closeevent_898',['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_899',['CloseNoteByClass',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aee4f46e54f29da671838ed232e526700',1,'GpgFrontend::UI::PlainTextEditorPage']]],
- ['commonutils_900',['CommonUtils',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a78f5c2696152e9326e845c76c94be965',1,'GpgFrontend::UI::CommonUtils']]],
- ['conclusionpage_901',['ConclusionPage',['../classGpgFrontend_1_1UI_1_1ConclusionPage.html#afcd98b4735047807d384e6b3d3aea3a7',1,'GpgFrontend::UI::ConclusionPage']]],
- ['containsprivatekeys_902',['ContainsPrivateKeys',['../classGpgFrontend_1_1UI_1_1KeyList.html#a20c4a242f49123bd64982952fdad08e9',1,'GpgFrontend::UI::KeyList']]],
- ['contextmenuevent_903',['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_904',['Copy',['../classGpgFrontend_1_1GpgKey.html#ac90afba6a5aec0bc2c0f1e01de417ec8',1,'GpgFrontend::GpgKey']]],
- ['create_5factions_905',['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_906',['create_attachment_dock',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a92a6d8d46e197e25eaacc3ad7ed289ab',1,'GpgFrontend::UI::MainWindow']]],
- ['create_5fbasic_5finfo_5fgroup_5fbox_907',['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_908',['create_button',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a4c5d8a43fd8a6f1c217d83694dcc689c',1,'GpgFrontend::UI::KeyServerImportDialog']]],
- ['create_5fbutton_5fbox_909',['create_button_box',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a9f5912ff99e3820d5fa6a58ed14a70c8',1,'GpgFrontend::UI::KeyImportDetailDialog']]],
- ['create_5fcombobox_910',['create_comboBox',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ab9e2fe38d54c0f0d3d73907300faa513',1,'GpgFrontend::UI::KeyServerImportDialog']]],
- ['create_5fdock_5fwindows_911',['create_dock_windows',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a04668246525874760f47a340b4b7d8de',1,'GpgFrontend::UI::MainWindow']]],
- ['create_5fgeneral_5finfo_5fbox_912',['create_general_info_box',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#af88ee416b2227ce847a3b8123a23ce24',1,'GpgFrontend::UI::KeyImportDetailDialog']]],
- ['create_5fkey_5finfo_5fgrid_913',['create_key_info_grid',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#a25b96a986a009d35847f94719ec327c1',1,'GpgFrontend::UI::VerifyKeyDetailBox']]],
- ['create_5fkey_5fusage_5fgroup_5fbox_914',['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_915',['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_916',['create_manage_uid_menu',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a5c029e55323d54aa2306267cea1809ea',1,'GpgFrontend::UI::KeyPairUIDTab']]],
- ['create_5fmenus_917',['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_918',['create_popup_menu',['../classGpgFrontend_1_1UI_1_1FilePage.html#a73e4b62f4926b1aeb3f2183a1d05d871',1,'GpgFrontend::UI::FilePage']]],
- ['create_5fsign_5flist_919',['create_sign_list',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a32dc14242d88ca168ae71e9a895d2b29',1,'GpgFrontend::UI::KeyPairUIDTab']]],
- ['create_5fsign_5fpopup_5fmenu_920',['create_sign_popup_menu',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a7653654c81149c48e7e4d5f0c00c360f',1,'GpgFrontend::UI::KeyPairUIDTab']]],
- ['create_5fstatus_5fbar_921',['create_status_bar',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1ab1f3f57f9969447491e63f54420585',1,'GpgFrontend::UI::MainWindow']]],
- ['create_5fsubkey_5flist_922',['create_subkey_list',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a0503508ce7e11f497a05cdf6f536a253',1,'GpgFrontend::UI::KeyPairSubkeyTab']]],
- ['create_5fsubkey_5fopera_5fmenu_923',['create_subkey_opera_menu',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a324446276f111be455773381ee8b6739',1,'GpgFrontend::UI::KeyPairSubkeyTab']]],
- ['create_5ftool_5fbars_924',['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_925',['create_uid_list',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a0511f5714548920cf3563306536d0bd7',1,'GpgFrontend::UI::KeyPairUIDTab']]],
- ['create_5fuid_5fpopup_5fmenu_926',['create_uid_popup_menu',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a2a87d3ed720a57a5d96a108c7a9827d7',1,'GpgFrontend::UI::KeyPairUIDTab']]],
- ['createinstance_927',['CreateInstance',['../classGpgFrontend_1_1SingletonFunctionObject.html#a083807ff8cec58dc0aa732844edaf518',1,'GpgFrontend::SingletonFunctionObject']]],
- ['createoperamenu_928',['CreateOperaMenu',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a4dcec352e412afe5c5491f941495090f',1,'GpgFrontend::UI::KeyPairOperaTab']]],
- ['ctxchecktask_929',['CtxCheckTask',['../classGpgFrontend_1_1Thread_1_1CtxCheckTask.html#a9d5f0969bcedc5687e0a50ed3b36a869',1,'GpgFrontend::Thread::CtxCheckTask']]],
- ['curfilepage_930',['CurFilePage',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa30daf558cb85bbdcad55a805a106109',1,'GpgFrontend::UI::TextEdit']]],
- ['currentversionreleased_931',['CurrentVersionReleased',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a43663cd2d086299a0f0304f5bde9c663',1,'GpgFrontend::UI::SoftwareVersion']]],
- ['curtextpage_932',['CurTextPage',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a7aa1230fbf796225bd6b83d381e11a3b',1,'GpgFrontend::UI::TextEdit']]],
- ['custom_5fpassphrase_5fcb_933',['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 435d3e13..3c882b1b 100644
--- a/docs/html/search/functions_4.js
+++ b/docs/html/search/functions_4.js
@@ -1,17 +1,17 @@
var searchData=
[
- ['dataobjectoperator_934',['DataObjectOperator',['../classGpgFrontend_1_1DataObjectOperator.html#a3a8ae5c36fec01d0d5c3e5f9aed457a6',1,'GpgFrontend::DataObjectOperator']]],
- ['decrypt_935',['Decrypt',['../classGpgFrontend_1_1GpgBasicOperator.html#a9ea9e81194917e08f46eb657281b7953',1,'GpgFrontend::GpgBasicOperator']]],
- ['decryptfile_936',['DecryptFile',['../classGpgFrontend_1_1GpgFileOpera.html#a74eb3ba532a236d8ad284b41265b0ccd',1,'GpgFrontend::GpgFileOpera']]],
- ['decryptverify_937',['DecryptVerify',['../classGpgFrontend_1_1GpgBasicOperator.html#a11845a9a3ea2941e14faa9130f0ac9ef',1,'GpgFrontend::GpgBasicOperator']]],
- ['decryptverifyfile_938',['DecryptVerifyFile',['../classGpgFrontend_1_1GpgFileOpera.html#a90949b4e9e6116784260cd0e416551db',1,'GpgFrontend::GpgFileOpera']]],
- ['delete_5fkeys_5fwith_5fwarning_939',['delete_keys_with_warning',['../classGpgFrontend_1_1UI_1_1KeyMgmt.html#a0b139ae0d4baa234932cf228e94abd6b',1,'GpgFrontend::UI::KeyMgmt']]],
- ['delete_5fwidgets_5fin_5flayout_940',['delete_widgets_in_layout',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a852c1fe10c7d3153a2146bcea4dbe9ad',1,'GpgFrontend::UI::InfoBoardWidget']]],
- ['deletekey_941',['DeleteKey',['../classGpgFrontend_1_1GpgKeyOpera.html#a151c47b997951e9162f8b036c3cb15e0',1,'GpgFrontend::GpgKeyOpera']]],
- ['deletekeys_942',['DeleteKeys',['../classGpgFrontend_1_1GpgKeyOpera.html#a8a06d0f7a600d4428359b653a68f717e',1,'GpgFrontend::GpgKeyOpera']]],
- ['detect_943',['Detect',['../classGpgFrontend_1_1CharsetOperator.html#a5a444a0fbd508f6af6a56f4151c21c1f',1,'GpgFrontend::CharsetOperator']]],
- ['detect_5fcr_5flf_944',['detect_cr_lf',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#af08be6a1eaec76403b12dc6e42df546c',1,'GpgFrontend::UI::PlainTextEditorPage']]],
- ['detect_5fencoding_945',['detect_encoding',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a14b7431a786ce59e98576e3680cb9a58',1,'GpgFrontend::UI::PlainTextEditorPage']]],
- ['dragenterevent_946',['dragEnterEvent',['../classGpgFrontend_1_1UI_1_1KeyList.html#ae3ad87e114432b0d659a0297d520d72f',1,'GpgFrontend::UI::KeyList']]],
- ['dropevent_947',['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 8b9d85ca..5f3a9bce 100644
--- a/docs/html/search/functions_5.js
+++ b/docs/html/search/functions_5.js
@@ -1,17 +1,17 @@
var searchData=
[
- ['encrypt_948',['Encrypt',['../classGpgFrontend_1_1GpgBasicOperator.html#a32e1eac6bb0f322588ae75ae36a9884a',1,'GpgFrontend::GpgBasicOperator']]],
- ['encryptfile_949',['EncryptFile',['../classGpgFrontend_1_1GpgFileOpera.html#a234d939ae0b2c3f799dd01130fad9379',1,'GpgFrontend::GpgFileOpera']]],
- ['encryptfilesymmetric_950',['EncryptFileSymmetric',['../classGpgFrontend_1_1GpgFileOpera.html#a826efca057afb07157453b3b9e267b0f',1,'GpgFrontend::GpgFileOpera']]],
- ['encryptsign_951',['EncryptSign',['../classGpgFrontend_1_1GpgBasicOperator.html#a08906cf2bc2ddad8489438610f388f8a',1,'GpgFrontend::GpgBasicOperator']]],
- ['encryptsignfile_952',['EncryptSignFile',['../classGpgFrontend_1_1GpgFileOpera.html#a6353e1688b113e5746aced6aa7f3876e',1,'GpgFrontend::GpgFileOpera']]],
- ['encryptsymmetric_953',['EncryptSymmetric',['../classGpgFrontend_1_1GpgBasicOperator.html#a8f4ef57e941a066ad9d070eee51e2073',1,'GpgFrontend::GpgBasicOperator']]],
- ['execute_954',['Execute',['../classGpgFrontend_1_1GpgCommandExecutor.html#affa984ec4c2982c527761289f73c1ab4',1,'GpgFrontend::GpgCommandExecutor']]],
- ['exportallkeys_955',['ExportAllKeys',['../classGpgFrontend_1_1GpgKeyImportExporter.html#ae7d61a8c39ef7e7f1562895dbf108e68',1,'GpgFrontend::GpgKeyImportExporter']]],
- ['exportkey_956',['ExportKey',['../classGpgFrontend_1_1GpgKeyImportExporter.html#a51cb18aa7302d7a48ccd1ee17f060391',1,'GpgFrontend::GpgKeyImportExporter']]],
- ['exportkeyopenssh_957',['ExportKeyOpenSSH',['../classGpgFrontend_1_1GpgKeyImportExporter.html#aa0a73314ef94f397e2ef53d40abc9731',1,'GpgFrontend::GpgKeyImportExporter']]],
- ['exportkeypackagedialog_958',['ExportKeyPackageDialog',['../classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html#a7d1899302ef743671c3002d04f6c9dd8',1,'GpgFrontend::UI::ExportKeyPackageDialog']]],
- ['exportkeys_959',['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_960',['ExportSecretKey',['../classGpgFrontend_1_1GpgKeyImportExporter.html#a6a5e8d642ac5a3e98799af6495ef590b',1,'GpgFrontend::GpgKeyImportExporter']]],
- ['exportsecretkeyshortest_961',['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 386e97e4..95554e44 100644
--- a/docs/html/search/functions_6.js
+++ b/docs/html/search/functions_6.js
@@ -1,9 +1,9 @@
var searchData=
[
- ['fetchkey_962',['FetchKey',['../classGpgFrontend_1_1GpgKeyGetter.html#afe78ac470287d70e7df51aae327b9f54',1,'GpgFrontend::GpgKeyGetter']]],
- ['filepage_963',['FilePage',['../classGpgFrontend_1_1UI_1_1FilePage.html#a48fb14a3296f19f9b1c3b9b48c3a1bf3',1,'GpgFrontend::UI::FilePage']]],
- ['findobjectinchannel_964',['FindObjectInChannel',['../classGpgFrontend_1_1SingletonStorage.html#a4c16c32e549494e394a0ddd859890a02',1,'GpgFrontend::SingletonStorage']]],
- ['findwidget_965',['FindWidget',['../classGpgFrontend_1_1UI_1_1FindWidget.html#a495f281e72e5ddc10c8e944183b96dd9',1,'GpgFrontend::UI::FindWidget']]],
- ['flushkeycache_966',['FlushKeyCache',['../classGpgFrontend_1_1GpgKeyGetter.html#ad9a902ea54566d4583304b072c4add51',1,'GpgFrontend::GpgKeyGetter']]],
- ['free_5fheap_5fptr_967',['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 f17709dc..409e2258 100644
--- a/docs/html/search/functions_7.js
+++ b/docs/html/search/functions_7.js
@@ -1,134 +1,136 @@
var searchData=
[
- ['generaldialog_968',['GeneralDialog',['../classGpgFrontend_1_1UI_1_1GeneralDialog.html#ac9de4c49668ffaeb6916c64f878a202c',1,'GpgFrontend::UI::GeneralDialog']]],
- ['generalmainwindow_969',['GeneralMainWindow',['../classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a62b24183ebf9da18852084879bcb1013',1,'GpgFrontend::UI::GeneralMainWindow']]],
- ['generaltab_970',['GeneralTab',['../classGpgFrontend_1_1UI_1_1GeneralTab.html#a214079dfbacdc6898146c8468611cf0c',1,'GpgFrontend::UI::GeneralTab']]],
- ['generate_971',['Generate',['../classGpgFrontend_1_1PassphraseGenerator.html#a8b4ee1083343fba6d947b85cd66079b8',1,'GpgFrontend::PassphraseGenerator']]],
- ['generate_5fkey_5fpackage_5fname_972',['generate_key_package_name',['../classGpgFrontend_1_1KeyPackageOperator.html#a825d987dacd8a99d9d87729e1861a152',1,'GpgFrontend::KeyPackageOperator']]],
- ['generate_5fuuid_973',['generate_uuid',['../classGpgFrontend_1_1Thread_1_1Task.html#a96d087abb7cf99d16f778f1a93b4f9e5',1,'GpgFrontend::Thread::Task']]],
- ['generatekey_974',['GenerateKey',['../classGpgFrontend_1_1GpgKeyOpera.html#a4cc3ac91613164d7dc61a016a2b4caea',1,'GpgFrontend::GpgKeyOpera']]],
- ['generatekeypackage_975',['GenerateKeyPackage',['../classGpgFrontend_1_1KeyPackageOperator.html#ade02f022e405e98377343c4667c206e9',1,'GpgFrontend::KeyPackageOperator']]],
- ['generatekeypackagename_976',['GenerateKeyPackageName',['../classGpgFrontend_1_1KeyPackageOperator.html#ae90b362a32b6f6014cda1dc232bd3f0e',1,'GpgFrontend::KeyPackageOperator']]],
- ['generatepassphrase_977',['GeneratePassphrase',['../classGpgFrontend_1_1KeyPackageOperator.html#a6d9cf022a1e0cf54c061495f59c1b4b9',1,'GpgFrontend::KeyPackageOperator']]],
- ['generaterevokecert_978',['GenerateRevokeCert',['../classGpgFrontend_1_1GpgKeyOpera.html#a91a9a9f24f6b620ea7b906c529e3d9a4',1,'GpgFrontend::GpgKeyOpera']]],
- ['generatesubkey_979',['GenerateSubkey',['../classGpgFrontend_1_1GpgKeyOpera.html#a882d99e8407cc22fb8b6e61c531fbe85',1,'GpgFrontend::GpgKeyOpera']]],
- ['genkeyinfo_980',['GenKeyInfo',['../classGpgFrontend_1_1GenKeyInfo.html#a34eca1662ba8d4645751f3ee66582b04',1,'GpgFrontend::GenKeyInfo']]],
- ['get_5ffile_5fextension_981',['get_file_extension',['../namespaceGpgFrontend.html#acff2cf5dd5b112b324fa6574ee935f79',1,'GpgFrontend']]],
- ['get_5fheap_5fptr_982',['get_heap_ptr',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a0e1ab5e5bf5ef647a30a5ee2884ac63a',1,'GpgFrontend::Thread::Task::DataObject']]],
- ['get_5fkey_5fin_5fcache_983',['get_key_in_cache',['../classGpgFrontend_1_1GpgKeyGetter.html#ab5196ef4ed5323fc2af70abf801ea260',1,'GpgFrontend::GpgKeyGetter']]],
- ['get_5fonly_5ffile_5fname_5fwith_5fpath_984',['get_only_file_name_with_path',['../namespaceGpgFrontend.html#a5a2f5fc1ad3de55e41a1b7a388821328',1,'GpgFrontend']]],
- ['get_5frestart_5fneeded_985',['get_restart_needed',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#a0d66e360dfbcf79403351459721c3981',1,'GpgFrontend::UI::SettingsDialog::get_restart_needed()'],['../classGpgFrontend_1_1UI_1_1MainWindow.html#a5e95f62dac9fba1ead6ec69c145923db',1,'GpgFrontend::UI::MainWindow::get_restart_needed()']]],
- ['get_5fselected_5fsubkey_986',['get_selected_subkey',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#aedc5f77d6bf9b780b96552a43b323feb',1,'GpgFrontend::UI::KeyPairSubkeyTab']]],
- ['get_5fsign_5fselected_987',['get_sign_selected',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a2d7c328d726436061f19a287e481268d',1,'GpgFrontend::UI::KeyPairUIDTab']]],
- ['get_5fstatus_5fstring_988',['get_status_string',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#ae682853c7eccfd3a6be43765f162f5a4',1,'GpgFrontend::UI::KeyImportDetailDialog']]],
- ['get_5fuid_5fchecked_989',['get_uid_checked',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a7898b6fa328bfbc55ee2721bca4b2af1',1,'GpgFrontend::UI::KeyPairUIDTab']]],
- ['get_5fuid_5fselected_990',['get_uid_selected',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a161bc9787be40a32f487c79faaeb54bf',1,'GpgFrontend::UI::KeyPairUIDTab']]],
- ['getalgo_991',['GetAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#a6a65ba347156373b6cf98eb8e851d28d',1,'GpgFrontend::GenKeyInfo']]],
- ['getallchannelid_992',['GetAllChannelId',['../classGpgFrontend_1_1SingletonStorage.html#a3f09424ebdc097fbdab77564a7d723ea',1,'GpgFrontend::SingletonStorage::GetAllChannelId()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a5f2f0474871971f86ff91fb6a2408621',1,'GpgFrontend::SingletonFunctionObject::GetAllChannelId()']]],
- ['getallprivatekeys_993',['GetAllPrivateKeys',['../classGpgFrontend_1_1UI_1_1KeyList.html#a7ead8845ceb7c9310e3f4742251e1d87',1,'GpgFrontend::UI::KeyList']]],
- ['getappdir_994',['GetAppDir',['../classGpgFrontend_1_1GlobalSettingStation.html#ae9d1da3d01c4a834120968636596c3c3',1,'GpgFrontend::GlobalSettingStation']]],
- ['getbrowser_995',['GetBrowser',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a92c31eea47b42be28c86431384b27846',1,'GpgFrontend::UI::HelpPage']]],
- ['getcertsdir_996',['GetCertsDir',['../classGpgFrontend_1_1GlobalSettingStation.html#a385ae4ab6ad5b17742a5405fa693d789',1,'GpgFrontend::GlobalSettingStation']]],
- ['getchannel_997',['GetChannel',['../classGpgFrontend_1_1SingletonFunctionObject.html#aa99440b9177f5d0c18840f08a40d64b7',1,'GpgFrontend::SingletonFunctionObject::GetChannel()'],['../classGpgFrontend_1_1ChannelObject.html#a0e13a4bff1cfb679f68a3a2590a3b1b8',1,'GpgFrontend::ChannelObject::GetChannel()']]],
- ['getchecked_998',['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_999',['GetCheckedSigners',['../classGpgFrontend_1_1UI_1_1SignersPicker.html#a2e98dcdf647a2e0e6455998b018aed00',1,'GpgFrontend::UI::SignersPicker']]],
- ['getcomment_1000',['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_1001',['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_1002',['GetDefaultChannel',['../classGpgFrontend_1_1ChannelObject.html#aece9c525c49900734bc1bebf85b644ef',1,'GpgFrontend::ChannelObject::GetDefaultChannel()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a50e2b3794d6553f4231eaec72d9d0a50',1,'GpgFrontend::SingletonFunctionObject::GetDefaultChannel()']]],
- ['getdescription_1003',['GetDescription',['../classGpgFrontend_1_1GpgTOFUInfo.html#a471a08bc906d74699f394e34d2581b78',1,'GpgFrontend::GpgTOFUInfo']]],
- ['getemail_1004',['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_1005',['GetEncrCount',['../classGpgFrontend_1_1GpgTOFUInfo.html#abc53f7ca1b737ed1a913ad2f90a346e4',1,'GpgFrontend::GpgTOFUInfo']]],
- ['getencrlast_1006',['GetEncrLast',['../classGpgFrontend_1_1GpgTOFUInfo.html#a03f286ac6f16ec6d33eb3dcfd4e3f6d5',1,'GpgFrontend::GpgTOFUInfo']]],
- ['getexpiretime_1007',['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_1008',['GetFilePath',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aff81f0f98a399fa55b6b0ebf2230d4cf',1,'GpgFrontend::UI::PlainTextEditorPage']]],
- ['getfingerprint_1009',['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_1010',['GetFullID',['../classGpgFrontend_1_1Thread_1_1Task.html#a3df2340426251e9145e5fe4419937e2a',1,'GpgFrontend::Thread::Task']]],
- ['gethashalgo_1011',['GetHashAlgo',['../classGpgFrontend_1_1GpgSignature.html#ace10a3ac7f4dc3888b2ad62157213f1c',1,'GpgFrontend::GpgSignature']]],
- ['getid_1012',['GetId',['../classGpgFrontend_1_1GpgKey.html#a8930f958f3ca1f5566f63e8c2273837e',1,'GpgFrontend::GpgKey']]],
- ['getid_1013',['GetID',['../classGpgFrontend_1_1GpgSubKey.html#a48d3dfbd3aae9523ffbdb916aad8ad53',1,'GpgFrontend::GpgSubKey']]],
- ['getinfo_1014',['GetInfo',['../classGpgFrontend_1_1GpgContext.html#a4a8f6ff37e45979159ab375b2c7d48c3',1,'GpgFrontend::GpgContext']]],
- ['getinstance_1015',['GetInstance',['../classGpgFrontend_1_1CoreCommonUtil.html#a8588dfa6ccb57c055f022b13e2da1e7c',1,'GpgFrontend::CoreCommonUtil::GetInstance()'],['../classGpgFrontend_1_1SingletonStorageCollection.html#ac56d19e0d4b99e7b8a86a017721f3db1',1,'GpgFrontend::SingletonStorageCollection::GetInstance()'],['../classGpgFrontend_1_1CoreSignalStation.html#a0c5893909726b919ea733de9906cfb36',1,'GpgFrontend::CoreSignalStation::GetInstance()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a70484d7cfe9f9dcbcd5f8bb749250f36',1,'GpgFrontend::SingletonFunctionObject::GetInstance()'],['../classGpgFrontend_1_1UI_1_1SignalStation.html#abe381ce56a7b157a3760b2fd9c3b7419',1,'GpgFrontend::UI::SignalStation::GetInstance()'],['../classGpgFrontend_1_1UI_1_1CommonUtils.html#aed529969f54e39e3f9da14ae6dd00d49',1,'GpgFrontend::UI::CommonUtils::GetInstance()'],['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a9b341a1a903cec0c70a6af4bb230905e',1,'GpgFrontend::UI::GpgFrontendApplication::GetInstance()']]],
- ['getinvalid_1016',['GetInvalid',['../classGpgFrontend_1_1GpgUID.html#a388ad367d353edd5eeb6e529977c924c',1,'GpgFrontend::GpgUID']]],
- ['getkey_1017',['GetKey',['../classGpgFrontend_1_1GpgKeyGetter.html#a94243d09c9418c8ebf0c7cdab4a2b7f1',1,'GpgFrontend::GpgKeyGetter']]],
- ['getkeyid_1018',['GetKeyID',['../classGpgFrontend_1_1GpgKeySignature.html#a4277f6deb7c07aaba62fbe8e7867b1fe',1,'GpgFrontend::GpgKeySignature']]],
- ['getkeylength_1019',['GetKeyLength',['../classGpgFrontend_1_1GpgSubKey.html#a18d7a2f0a3cee32a123b780f2b8b8708',1,'GpgFrontend::GpgSubKey::GetKeyLength()'],['../classGpgFrontend_1_1GenKeyInfo.html#a4927a9091fa2b2f68f6b60ce78ab2fe9',1,'GpgFrontend::GenKeyInfo::GetKeyLength()']]],
- ['getkeys_1020',['GetKeys',['../classGpgFrontend_1_1GpgKeyGetter.html#aa5979c21af58b874b33c203752dcc805',1,'GpgFrontend::GpgKeyGetter']]],
- ['getkeyscopy_1021',['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_1022',['GetKeySizeStr',['../classGpgFrontend_1_1GenKeyInfo.html#a0bda4b4161d805582869ec0e56ade07c',1,'GpgFrontend::GenKeyInfo']]],
- ['getlastupdatetime_1023',['GetLastUpdateTime',['../classGpgFrontend_1_1GpgKey.html#a3532e20298b642f5d312712fa8a791df',1,'GpgFrontend::GpgKey']]],
- ['getlatestversion_1024',['getLatestVersion',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a7329657135624fc42ad80d821e11befe',1,'GpgFrontend::UI::UpdateTab']]],
- ['getlocaledir_1025',['GetLocaleDir',['../classGpgFrontend_1_1GlobalSettingStation.html#a0b3780564305e9b210d66ef377c21565',1,'GpgFrontend::GlobalSettingStation']]],
- ['getlogdir_1026',['GetLogDir',['../classGpgFrontend_1_1GlobalSettingStation.html#a7da9b08291ef2391892f5c9375b8db23',1,'GpgFrontend::GlobalSettingStation']]],
- ['getname_1027',['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_1028',['GetObjectSize',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#aa35e6ad1ef3a5733fb338f3333b5c637',1,'GpgFrontend::Thread::Task::DataObject']]],
- ['getownertrust_1029',['GetOwnerTrust',['../classGpgFrontend_1_1GpgKey.html#a3327ad34ff14feb75f3fbfc2bfb7fc44',1,'GpgFrontend::GpgKey']]],
- ['getpassphrase_1030',['GetPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#a890ee16ef6088570360a073a6b531c89',1,'GpgFrontend::GenKeyInfo']]],
- ['getpolicy_1031',['GetPolicy',['../classGpgFrontend_1_1GpgTOFUInfo.html#a34d1073bb25a8958e70016f3cd6b167f',1,'GpgFrontend::GpgTOFUInfo']]],
- ['getprimarykeylength_1032',['GetPrimaryKeyLength',['../classGpgFrontend_1_1GpgKey.html#a5b276fdeb438fe14ec2850d799401be6',1,'GpgFrontend::GpgKey']]],
- ['getprivatechecked_1033',['GetPrivateChecked',['../classGpgFrontend_1_1UI_1_1KeyList.html#a81c2e36427371fa6ae6381870b9b5bdd',1,'GpgFrontend::UI::KeyList']]],
- ['getprotocol_1034',['GetProtocol',['../classGpgFrontend_1_1GpgKey.html#ad2440a2902c81192d5549fe951ddb130',1,'GpgFrontend::GpgKey']]],
- ['getpubkey_1035',['GetPubkey',['../classGpgFrontend_1_1GpgKeyGetter.html#a7a8bc7c0f12a11e108051e4c824fc430',1,'GpgFrontend::GpgKeyGetter']]],
- ['getpubkeyalgo_1036',['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_1037',['GetPublicKeyAlgo',['../classGpgFrontend_1_1GpgKey.html#a1c21bc3b1788753f56272ad73052fc5f',1,'GpgFrontend::GpgKey']]],
- ['getresourcedir_1038',['GetResourceDir',['../classGpgFrontend_1_1GlobalSettingStation.html#afc1aa3dec55ae4e741f92fce1140a2d0',1,'GpgFrontend::GlobalSettingStation']]],
- ['getresultreport_1039',['GetResultReport',['../classGpgFrontend_1_1GpgResultAnalyse.html#aa9e35e573ea4c0ebdbb014d1afbaab9d',1,'GpgFrontend::GpgResultAnalyse']]],
- ['getrevoked_1040',['GetRevoked',['../classGpgFrontend_1_1GpgUID.html#a32450fbf22c64cf522e9a090423344a2',1,'GpgFrontend::GpgUID']]],
- ['getselected_1041',['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_1042',['GetSelectedKey',['../classGpgFrontend_1_1UI_1_1KeyList.html#ab4368b81402e2468a9e960de8fb7080f',1,'GpgFrontend::UI::KeyList']]],
- ['getsequency_1043',['GetSequency',['../classGpgFrontend_1_1Thread_1_1Task.html#a80f47accc0832e3aee686ee2879b431e',1,'GpgFrontend::Thread::Task']]],
- ['getsignatures_1044',['GetSignatures',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a2063acf8262e2c600b14ed1948486ac3',1,'GpgFrontend::GpgVerifyResultAnalyse::GetSignatures()'],['../classGpgFrontend_1_1GpgUID.html#af7b5310b319378c30c488277e95ef601',1,'GpgFrontend::GpgUID::GetSignatures()']]],
- ['getsigncount_1045',['GetSignCount',['../classGpgFrontend_1_1GpgTOFUInfo.html#a681046a3916d0d0cdcf0852bfa76fdb0',1,'GpgFrontend::GpgTOFUInfo']]],
- ['getsigners_1046',['GetSigners',['../classGpgFrontend_1_1GpgBasicOperator.html#a78f37b8d5afd6c0248665a4415f880cf',1,'GpgFrontend::GpgBasicOperator']]],
- ['getsignfirst_1047',['GetSignFirst',['../classGpgFrontend_1_1GpgTOFUInfo.html#a788a439b206882c6317162878e2fe0b8',1,'GpgFrontend::GpgTOFUInfo']]],
- ['getsignlast_1048',['GetSignLast',['../classGpgFrontend_1_1GpgTOFUInfo.html#a746cbcf731af6b19ade42debbf1e2c8f',1,'GpgFrontend::GpgTOFUInfo']]],
- ['getsingletonstorage_1049',['GetSingletonStorage',['../classGpgFrontend_1_1SingletonStorageCollection.html#a6f933390c54b7f55d5ffb4624074725f',1,'GpgFrontend::SingletonStorageCollection']]],
- ['getsizechangestep_1050',['GetSizeChangeStep',['../classGpgFrontend_1_1GenKeyInfo.html#ac211a7a615805ae97ff284b46abfeab7',1,'GpgFrontend::GenKeyInfo']]],
- ['getstandalonedatabasedir_1051',['GetStandaloneDatabaseDir',['../classGpgFrontend_1_1GlobalSettingStation.html#af484ca46c5df831a9dd76f3a88d66332',1,'GpgFrontend::GlobalSettingStation']]],
- ['getstandalonegpgbindir_1052',['GetStandaloneGpgBinDir',['../classGpgFrontend_1_1GlobalSettingStation.html#aa93b21af9ac6649d5749c83c809f5b00',1,'GpgFrontend::GlobalSettingStation']]],
- ['getstatus_1053',['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_1054',['GetSubKeys',['../classGpgFrontend_1_1GpgKey.html#a746699842f6c49687af0487a8b3b163d',1,'GpgFrontend::GpgKey']]],
- ['getsuggestmaxkeysize_1055',['GetSuggestMaxKeySize',['../classGpgFrontend_1_1GenKeyInfo.html#ae461a553176ad1ab0c1121ea6de6c8c2',1,'GpgFrontend::GenKeyInfo']]],
- ['getsuggestminkeysize_1056',['GetSuggestMinKeySize',['../classGpgFrontend_1_1GenKeyInfo.html#a0b1612421148b86919b7130ed148ca51',1,'GpgFrontend::GenKeyInfo']]],
- ['getsummary_1057',['GetSummary',['../classGpgFrontend_1_1GpgSignature.html#a3b143f6e13b71663d81fc0f326aad17f',1,'GpgFrontend::GpgSignature']]],
- ['getsupportedkeyalgo_1058',['GetSupportedKeyAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#ac0dbb2d89b1e5f9b272679ba3f24314e',1,'GpgFrontend::GenKeyInfo']]],
- ['getsupportedkeyalgostandalone_1059',['GetSupportedKeyAlgoStandalone',['../classGpgFrontend_1_1GenKeyInfo.html#afb8315b6612c64b3921b72df98ebcc74',1,'GpgFrontend::GenKeyInfo']]],
- ['getsupportedsubkeyalgo_1060',['GetSupportedSubkeyAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#a168d6fe5252812f5984ba6d8046c7741',1,'GpgFrontend::GenKeyInfo']]],
- ['getsupportedsubkeyalgostandalone_1061',['GetSupportedSubkeyAlgoStandalone',['../classGpgFrontend_1_1GenKeyInfo.html#a6819b0ca3ef7712b85ae320030cde023',1,'GpgFrontend::GenKeyInfo']]],
- ['gettabidstosave_1062',['GetTabIdsToSave',['../classGpgFrontend_1_1UI_1_1QuitDialog.html#aec364c38056b6d92c172f8cdfb5f8e82',1,'GpgFrontend::UI::QuitDialog']]],
- ['gettempcachevalue_1063',['GetTempCacheValue',['../classGpgFrontend_1_1CoreCommonUtil.html#a7689d3abb54a1cef6a826fc944d9dec7',1,'GpgFrontend::CoreCommonUtil']]],
- ['gettextpage_1064',['GetTextPage',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a6218e6e12bdba0228e4ab4276f7fed7a',1,'GpgFrontend::UI::PlainTextEditorPage']]],
- ['gettofuinfos_1065',['GetTofuInfos',['../classGpgFrontend_1_1GpgUID.html#a2a36376484f7c1a4a19377d24e47a0b2',1,'GpgFrontend::GpgUID']]],
- ['getuid_1066',['GetUID',['../classGpgFrontend_1_1GpgKeySignature.html#a95254ea2c00829b9dc87adc4a317cde5',1,'GpgFrontend::GpgKeySignature::GetUID()'],['../classGpgFrontend_1_1GpgUID.html#a467897d43a18b0cadd2e2e44384f6cdd',1,'GpgFrontend::GpgUID::GetUID()']]],
- ['getuids_1067',['GetUIDs',['../classGpgFrontend_1_1GpgKey.html#ac8b13b45e487cdc423b78d3017897f99',1,'GpgFrontend::GpgKey']]],
- ['getuisettings_1068',['GetUISettings',['../classGpgFrontend_1_1GlobalSettingStation.html#a14433405831283cd95091d741614d03b',1,'GpgFrontend::GlobalSettingStation']]],
- ['getuserid_1069',['GetUserid',['../classGpgFrontend_1_1GenKeyInfo.html#a4ee4a0659e76376d9bfc527c334392e1',1,'GpgFrontend::GenKeyInfo']]],
- ['getuuid_1070',['GetUUID',['../classGpgFrontend_1_1Thread_1_1Task.html#a50b91d27874af31ef13c493b00824ccf',1,'GpgFrontend::Thread::Task']]],
- ['getvalidity_1071',['GetValidity',['../classGpgFrontend_1_1GpgSignature.html#a09cb6b465e85dffcf7867e70a276e9ad',1,'GpgFrontend::GpgSignature::GetValidity()'],['../classGpgFrontend_1_1GpgTOFUInfo.html#a8770062c9e0c3875083d2c92ebe8ccb0',1,'GpgFrontend::GpgTOFUInfo::GetValidity()']]],
- ['globalsettingstation_1072',['GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html#abdc6dda369d4214e43ffa2930f7386b0',1,'GpgFrontend::GlobalSettingStation']]],
- ['gnupgtab_1073',['GnupgTab',['../classGpgFrontend_1_1UI_1_1GnupgTab.html#ab9d9e8af4494659f13b87804e7318a79',1,'GpgFrontend::UI::GnupgTab']]],
- ['good_1074',['good',['../classGpgFrontend_1_1GpgContext.html#a73c505a2f3d39d1638dc4d9a3e13a913',1,'GpgFrontend::GpgContext']]],
- ['gpgadvancedoperator_1075',['GpgAdvancedOperator',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a9233156767f1d45272b95decd18241e3',1,'GpgFrontend::GpgAdvancedOperator']]],
- ['gpgbasicoperator_1076',['GpgBasicOperator',['../classGpgFrontend_1_1GpgBasicOperator.html#a139be86330f88e5f833aa24263a3b2ae',1,'GpgFrontend::GpgBasicOperator']]],
- ['gpgcommandexecutor_1077',['GpgCommandExecutor',['../classGpgFrontend_1_1GpgCommandExecutor.html#a94240f423464600938bfcafa2b186c38',1,'GpgFrontend::GpgCommandExecutor']]],
- ['gpgcontext_1078',['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_1079',['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_1080',['GpgDecryptResultAnalyse',['../classGpgFrontend_1_1GpgDecryptResultAnalyse.html#a442438ae58cdd7220f0e4b0792e5a372',1,'GpgFrontend::GpgDecryptResultAnalyse']]],
- ['gpgencryptresultanalyse_1081',['GpgEncryptResultAnalyse',['../classGpgFrontend_1_1GpgEncryptResultAnalyse.html#a0801e32c8709da373f6715bc994a7747',1,'GpgFrontend::GpgEncryptResultAnalyse']]],
- ['gpgfileopera_1082',['GpgFileOpera',['../classGpgFrontend_1_1GpgFileOpera.html#aa81da3d72c4fbc57e7138bfec7731152',1,'GpgFrontend::GpgFileOpera']]],
- ['gpgfrontendapplication_1083',['GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#ac0290f06e08f2714f9727bb578df1298',1,'GpgFrontend::UI::GpgFrontendApplication']]],
- ['gpgimportinformation_1084',['GpgImportInformation',['../classGpgFrontend_1_1GpgImportInformation.html#ab282d4f701403cd68eb02d1aad30be56',1,'GpgFrontend::GpgImportInformation']]],
- ['gpgkey_1085',['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_1086',['GpgKeyGetter',['../classGpgFrontend_1_1GpgKeyGetter.html#a8eeee9f6dd74dc24c24794ce63c62285',1,'GpgFrontend::GpgKeyGetter']]],
- ['gpgkeyimportexporter_1087',['GpgKeyImportExporter',['../classGpgFrontend_1_1GpgKeyImportExporter.html#a0eede7c782d17b32d6c1f30cd8496561',1,'GpgFrontend::GpgKeyImportExporter']]],
- ['gpgkeymanager_1088',['GpgKeyManager',['../classGpgFrontend_1_1GpgKeyManager.html#a210b717fd8ee63b064d77f32b0df4c5d',1,'GpgFrontend::GpgKeyManager']]],
- ['gpgkeyopera_1089',['GpgKeyOpera',['../classGpgFrontend_1_1GpgKeyOpera.html#a01d6a920156a38a34c57d9c49c361079',1,'GpgFrontend::GpgKeyOpera']]],
- ['gpgkeysignature_1090',['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_1091',['GpgResultAnalyse',['../classGpgFrontend_1_1GpgResultAnalyse.html#aa3c9bdf1ea4c87476010ef32fd2fb426',1,'GpgFrontend::GpgResultAnalyse']]],
- ['gpgsignature_1092',['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_1093',['GpgSignResultAnalyse',['../classGpgFrontend_1_1GpgSignResultAnalyse.html#a3ddd2d52ad91fdf7f4c8740312570c8e',1,'GpgFrontend::GpgSignResultAnalyse']]],
- ['gpgsubkey_1094',['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_1095',['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_1096',['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_1097',['GpgUIDOperator',['../classGpgFrontend_1_1GpgUIDOperator.html#ab74a830c858ab9ff135375743393a7c7',1,'GpgFrontend::GpgUIDOperator']]],
- ['gpgverifyresultanalyse_1098',['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_1GpgSubKey.html#a48d3dfbd3aae9523ffbdb916aad8ad53',1,'GpgFrontend::GpgSubKey']]],
+ ['getid_1029',['GetId',['../classGpgFrontend_1_1GpgKey.html#a8930f958f3ca1f5566f63e8c2273837e',1,'GpgFrontend::GpgKey']]],
+ ['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 a470e66b..a86fd4d9 100644
--- a/docs/html/search/functions_8.js
+++ b/docs/html/search/functions_8.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['helppage_1099',['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 3b7dfd4e..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_1100',['import_key_from_keyserver',['../namespaceGpgFrontend_1_1UI.html#aa346bd199cecc61b15ef406728b58770',1,'GpgFrontend::UI']]],
- ['import_5fkeys_1101',['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_1102',['import_unknown_key_from_keyserver',['../namespaceGpgFrontend_1_1UI.html#a9ab218dde057182cb4911c4792acd925',1,'GpgFrontend::UI']]],
- ['importkey_1103',['ImportKey',['../classGpgFrontend_1_1GpgKeyImportExporter.html#ab7a9be5283047695cd47562775adf79d',1,'GpgFrontend::GpgKeyImportExporter']]],
- ['importkeypackage_1104',['ImportKeyPackage',['../classGpgFrontend_1_1KeyPackageOperator.html#a89538b180a42eb7d6ae53583fe10ee07',1,'GpgFrontend::KeyPackageOperator']]],
- ['infoboardwidget_1105',['InfoBoardWidget',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#adeef521a8838bf2a1692c25d9b108010',1,'GpgFrontend::UI::InfoBoardWidget']]],
- ['infotab_1106',['InfoTab',['../classGpgFrontend_1_1UI_1_1InfoTab.html#a99d8b059ee28ea257981892e0b35d4cc',1,'GpgFrontend::UI::InfoTab']]],
- ['infovalid_1107',['InfoValid',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#aec79eefdc19c90e046cb48bca347ff1c',1,'GpgFrontend::UI::SoftwareVersion']]],
- ['init_1108',['Init',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a08ba4521f68c488b23b651e201011759',1,'GpgFrontend::UI::MainWindow']]],
- ['init_5fapp_5fsecure_5fkey_1109',['init_app_secure_key',['../classGpgFrontend_1_1DataObjectOperator.html#a6b357780482f0e0c021ad55a81eb37cf',1,'GpgFrontend::DataObjectOperator']]],
- ['init_5flocale_1110',['init_locale',['../namespaceGpgFrontend_1_1UI.html#a157c74e50283da9ed554cf7bf90afbee',1,'GpgFrontend::UI']]],
- ['initcoreloggingsystem_1111',['InitCoreLoggingSystem',['../namespaceGpgFrontend.html#ab4a865228be071282d2a08e66ef6cb68',1,'GpgFrontend']]],
- ['initgpgfrontendui_1112',['InitGpgFrontendUI',['../namespaceGpgFrontend_1_1UI.html#ab0311557c1d7bde9c56cbca85fefa6ad',1,'GpgFrontend::UI']]],
- ['intropage_1113',['IntroPage',['../classGpgFrontend_1_1UI_1_1IntroPage.html#aed4220a7372b192ee4e8bc5024db922d',1,'GpgFrontend::UI::IntroPage']]],
- ['isallowauthentication_1114',['IsAllowAuthentication',['../classGpgFrontend_1_1GenKeyInfo.html#aabdf981c65a0efde1e8905441b9b9c87',1,'GpgFrontend::GenKeyInfo']]],
- ['isallowcertification_1115',['IsAllowCertification',['../classGpgFrontend_1_1GenKeyInfo.html#ad47ceeb1ccfa8862843034e51b4d8be7',1,'GpgFrontend::GenKeyInfo']]],
- ['isallowchangeauthentication_1116',['IsAllowChangeAuthentication',['../classGpgFrontend_1_1GenKeyInfo.html#aaf8ab7c6564a2836837a537111d6f5b4',1,'GpgFrontend::GenKeyInfo']]],
- ['isallowchangecertification_1117',['IsAllowChangeCertification',['../classGpgFrontend_1_1GenKeyInfo.html#adbcddd0fa0a273f9b77fe1297633dabc',1,'GpgFrontend::GenKeyInfo']]],
- ['isallowchangeencryption_1118',['IsAllowChangeEncryption',['../classGpgFrontend_1_1GenKeyInfo.html#ad04a906300bea028c6fb6b1b2da1d149',1,'GpgFrontend::GenKeyInfo']]],
- ['isallowchangesigning_1119',['IsAllowChangeSigning',['../classGpgFrontend_1_1GenKeyInfo.html#a06f95a8d26da79bcbe7d51e266879a94',1,'GpgFrontend::GenKeyInfo']]],
- ['isallowencryption_1120',['IsAllowEncryption',['../classGpgFrontend_1_1GenKeyInfo.html#a28ed8a65243e5bc69403305752c2cdc9',1,'GpgFrontend::GenKeyInfo']]],
- ['isallownopassphrase_1121',['IsAllowNoPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#af6a79124a4571ff7f37c1c5e6c1a9415',1,'GpgFrontend::GenKeyInfo']]],
- ['isallowsigning_1122',['IsAllowSigning',['../classGpgFrontend_1_1GenKeyInfo.html#ad972292c408cb83c08e739327795a5f0',1,'GpgFrontend::GenKeyInfo']]],
- ['iscardkey_1123',['IsCardKey',['../classGpgFrontend_1_1GpgSubKey.html#ad818aa66e47d6686eb8ff253b3c21814',1,'GpgFrontend::GpgSubKey']]],
- ['isdisabled_1124',['IsDisabled',['../classGpgFrontend_1_1GpgSubKey.html#a75abb60a2130efc7fad8ab8fb3157042',1,'GpgFrontend::GpgSubKey::IsDisabled()'],['../classGpgFrontend_1_1GpgKey.html#a7eaf1e722d8a59f6a86d8e732217d89c',1,'GpgFrontend::GpgKey::IsDisabled()']]],
- ['isdiscarded_1125',['IsDiscarded',['../classGpgFrontend_1_1UI_1_1QuitDialog.html#a4c4bc06d1d168f01569ed83dcfd50d55',1,'GpgFrontend::UI::QuitDialog']]],
- ['isexpired_1126',['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_1127',['IsExportable',['../classGpgFrontend_1_1GpgKeySignature.html#a19fc1ca3733b576e12628e333e2c449e',1,'GpgFrontend::GpgKeySignature']]],
- ['isgood_1128',['IsGood',['../classGpgFrontend_1_1GpgKey.html#a59e76d40f01e765f0544e5c6a2851be6',1,'GpgFrontend::GpgKey']]],
- ['ishasactualauthenticationcapability_1129',['IsHasActualAuthenticationCapability',['../classGpgFrontend_1_1GpgKey.html#a371a24c4e9d3b99a36f76ff8c7f2d0e6',1,'GpgFrontend::GpgKey']]],
- ['ishasactualcertificationcapability_1130',['IsHasActualCertificationCapability',['../classGpgFrontend_1_1GpgKey.html#ae370e41a7ea7307fbf4d28e0f2a67e0c',1,'GpgFrontend::GpgKey']]],
- ['ishasactualencryptioncapability_1131',['IsHasActualEncryptionCapability',['../classGpgFrontend_1_1GpgKey.html#aaa66d803456152fed9ba4cf5bce7b99d',1,'GpgFrontend::GpgKey']]],
- ['ishasactualsigningcapability_1132',['IsHasActualSigningCapability',['../classGpgFrontend_1_1GpgKey.html#aefa0a44adb1b7c49553a85b545fdffe1',1,'GpgFrontend::GpgKey']]],
- ['ishasauthenticationcapability_1133',['IsHasAuthenticationCapability',['../classGpgFrontend_1_1GpgKey.html#afdffba6dfb6009a0b320623df7a26be0',1,'GpgFrontend::GpgKey::IsHasAuthenticationCapability()'],['../classGpgFrontend_1_1GpgSubKey.html#a04d9df643cd08200cd742dc243be6cd6',1,'GpgFrontend::GpgSubKey::IsHasAuthenticationCapability()']]],
- ['ishascardkey_1134',['IsHasCardKey',['../classGpgFrontend_1_1GpgKey.html#afedc843415bd4b59687e975006e470ed',1,'GpgFrontend::GpgKey']]],
- ['ishascertificationcapability_1135',['IsHasCertificationCapability',['../classGpgFrontend_1_1GpgSubKey.html#a56938360f873949aa9ba3dbdaab519d1',1,'GpgFrontend::GpgSubKey::IsHasCertificationCapability()'],['../classGpgFrontend_1_1GpgKey.html#a2d28e72cfb741deeadfe02ff456fb490',1,'GpgFrontend::GpgKey::IsHasCertificationCapability()']]],
- ['ishasencryptioncapability_1136',['IsHasEncryptionCapability',['../classGpgFrontend_1_1GpgSubKey.html#ab67395a986184cb9b20f3dc178fc52be',1,'GpgFrontend::GpgSubKey::IsHasEncryptionCapability()'],['../classGpgFrontend_1_1GpgKey.html#a60b342ca6e1062d4489d8ba8f7a5a605',1,'GpgFrontend::GpgKey::IsHasEncryptionCapability() const']]],
- ['ishasmasterkey_1137',['IsHasMasterKey',['../classGpgFrontend_1_1GpgKey.html#aadac1b776764ee9d0ca4f8bb9f9e0741',1,'GpgFrontend::GpgKey']]],
- ['ishassigningcapability_1138',['IsHasSigningCapability',['../classGpgFrontend_1_1GpgSubKey.html#ab9208165c74b93fa8c5b7a06cd808f56',1,'GpgFrontend::GpgSubKey::IsHasSigningCapability()'],['../classGpgFrontend_1_1GpgKey.html#a635bbf8f08268cfdac1bc120981df877',1,'GpgFrontend::GpgKey::IsHasSigningCapability()']]],
- ['isinvalid_1139',['IsInvalid',['../classGpgFrontend_1_1GpgKeySignature.html#a1725474a1c61c0a3d724dc2f999cb24a',1,'GpgFrontend::GpgKeySignature']]],
- ['isnonexpired_1140',['IsNonExpired',['../classGpgFrontend_1_1GenKeyInfo.html#aeef7697c91b5b5998088979e09332380',1,'GpgFrontend::GenKeyInfo']]],
- ['isnopassphrase_1141',['IsNoPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#a848181796a99bec8d32dc5eac240ee01',1,'GpgFrontend::GenKeyInfo']]],
- ['isprivatekey_1142',['IsPrivateKey',['../classGpgFrontend_1_1GpgKey.html#a888c0263f04bdd52967e092b9c73eb6d',1,'GpgFrontend::GpgKey::IsPrivateKey()'],['../classGpgFrontend_1_1GpgSubKey.html#accb86b50755698b3e1e7fdfe06f44e84',1,'GpgFrontend::GpgSubKey::IsPrivateKey()']]],
- ['isrevoked_1143',['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_1144',['IsSecretKey',['../classGpgFrontend_1_1GpgSubKey.html#a8fcbeae2ef3ad73a5aedee19f6de3e60',1,'GpgFrontend::GpgSubKey']]],
- ['issubkey_1145',['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 830ef82b..9a826580 100644
--- a/docs/html/search/functions_a.js
+++ b/docs/html/search/functions_a.js
@@ -1,22 +1,22 @@
var searchData=
[
- ['keygendialog_1146',['KeyGenDialog',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3aef8d2bb8e0d36842532726a6796ab9',1,'GpgFrontend::UI::KeyGenDialog']]],
- ['keygenpage_1147',['KeyGenPage',['../classGpgFrontend_1_1UI_1_1KeyGenPage.html#a0eb5dad522c597dcd101c02f496e7e70',1,'GpgFrontend::UI::KeyGenPage']]],
- ['keyimportdetaildialog_1148',['KeyImportDetailDialog',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a0177cdaa19d1f83c9e519039aa7a8ce1',1,'GpgFrontend::UI::KeyImportDetailDialog']]],
- ['keylist_1149',['KeyList',['../classGpgFrontend_1_1UI_1_1KeyList.html#a7c9d5cacdb42e1fbda5d3cc96e861418',1,'GpgFrontend::UI::KeyList']]],
- ['keymgmt_1150',['KeyMgmt',['../classGpgFrontend_1_1UI_1_1KeyMgmt.html#aefc27b57830cf14a85c2225664f89f64',1,'GpgFrontend::UI::KeyMgmt']]],
- ['keynewuiddialog_1151',['KeyNewUIDDialog',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a7226b139dc7a491e8ba780135654be27',1,'GpgFrontend::UI::KeyNewUIDDialog']]],
- ['keypairdetailtab_1152',['KeyPairDetailTab',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a76efd8f8d623813be1a329ad01972444',1,'GpgFrontend::UI::KeyPairDetailTab']]],
- ['keypairoperatab_1153',['KeyPairOperaTab',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#aad4e209d7b4eb0ac6623b2f12ce5ecc5',1,'GpgFrontend::UI::KeyPairOperaTab']]],
- ['keypairsubkeytab_1154',['KeyPairSubkeyTab',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a93abe5c0467c7c4a29e0c45437a10732',1,'GpgFrontend::UI::KeyPairSubkeyTab']]],
- ['keypairuidtab_1155',['KeyPairUIDTab',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#af18c4f08a127d919a316c7e27ba338d3',1,'GpgFrontend::UI::KeyPairUIDTab']]],
- ['keypressevent_1156',['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_1157',['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_1158',['KeyServerImportTask',['../classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a1640363b4b27cb3d256181ddc6cdc857',1,'GpgFrontend::UI::KeyServerImportTask']]],
- ['keyserversearchtask_1159',['KeyServerSearchTask',['../classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#a168e21bdfa72f43f91187ab29ece5efa',1,'GpgFrontend::UI::KeyServerSearchTask']]],
- ['keyservertab_1160',['KeyserverTab',['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#aa3d3561d3bdf95de6486b2caa752616c',1,'GpgFrontend::UI::KeyserverTab']]],
- ['keysetexpiredatedialog_1161',['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_1162',['KeyTable',['../structGpgFrontend_1_1UI_1_1KeyTable.html#a88606ba6954d60244faf38de419bfc47',1,'GpgFrontend::UI::KeyTable']]],
- ['keyuidsigndialog_1163',['KeyUIDSignDialog',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#aaa06ce342178802e76119bec6b26cc55',1,'GpgFrontend::UI::KeyUIDSignDialog']]],
- ['keyuploaddialog_1164',['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 4d3fb718..e09bbdc3 100644
--- a/docs/html/search/functions_b.js
+++ b/docs/html/search/functions_b.js
@@ -1,7 +1,8 @@
var searchData=
[
- ['listedkeyservertesttask_1165',['ListedKeyServerTestTask',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#ae25b5d59b53facc15648ab80ff19ed77',1,'GpgFrontend::UI::ListedKeyServerTestTask']]],
- ['listlanguages_1166',['ListLanguages',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#acd22ac2fd91704551e5317e2c549ae26',1,'GpgFrontend::UI::SettingsDialog']]],
- ['loadfile_1167',['LoadFile',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a72ed46454c833adb038c36d8d4322d18',1,'GpgFrontend::UI::TextEdit']]],
- ['localized_5fhelp_1168',['localized_help',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a49fbde87f2ef385b44225acd6ffbc84f',1,'GpgFrontend::UI::HelpPage']]]
+ ['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 d5c7b1b9..ce9fa8dd 100644
--- a/docs/html/search/functions_c.js
+++ b/docs/html/search/functions_c.js
@@ -1,8 +1,8 @@
var searchData=
[
- ['markkeys_1169',['MarkKeys',['../classGpgFrontend_1_1UI_1_1KeyList.html#a31a4c067eed90830203862cb4adf951e',1,'GpgFrontend::UI::KeyList']]],
- ['maybe_5fsave_5fcurrent_5ftab_1170',['maybe_save_current_tab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a8fad090a19479a9fe89432300cca2b6c',1,'GpgFrontend::UI::TextEdit']]],
- ['maybesaveanytab_1171',['MaybeSaveAnyTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3c976a5494d06c2186d94e7cc8ebe457',1,'GpgFrontend::UI::TextEdit']]],
- ['modifypassword_1172',['ModifyPassword',['../classGpgFrontend_1_1GpgKeyOpera.html#ab7e16d1f4cba23ea5b5b9f6009ce5ee2',1,'GpgFrontend::GpgKeyOpera']]],
- ['modifytofupolicy_1173',['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 15e6320f..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_1174',['need_user_input_passphrase',['../classGpgFrontend_1_1GpgContext.html#ac7c9b2212a77e7cede94d68243541b1b',1,'GpgFrontend::GpgContext']]],
- ['needupgrade_1175',['NeedUpgrade',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#abc311fd0e15da1a04b995587ca74e1a6',1,'GpgFrontend::UI::SoftwareVersion']]],
- ['networktab_1176',['NetworkTab',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#a444d3630919c1f9c4db495a58acbb9a8',1,'GpgFrontend::UI::NetworkTab']]],
- ['new_5fdefault_5fsettings_5fchannel_1177',['new_default_settings_channel',['../namespaceGpgFrontend.html#aafb9aa0ba1d03afa09085b1b8136c55f',1,'GpgFrontend']]],
- ['nextid_1178',['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_1179',['notify',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a6f8ab335d89948c48cd634ab20ff9aa0',1,'GpgFrontend::UI::GpgFrontendApplication']]],
- ['notifyfilesaved_1180',['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 2548bf7c..87a5d2e3 100644
--- a/docs/html/search/functions_e.js
+++ b/docs/html/search/functions_e.js
@@ -1,10 +1,10 @@
var searchData=
[
- ['oncustomcontextmenu_1181',['onCustomContextMenu',['../classGpgFrontend_1_1UI_1_1FilePage.html#aa80dc1b74a0ec65d06e5dffaa21cc785',1,'GpgFrontend::UI::FilePage']]],
- ['operator_20gpgme_5fctx_5ft_1182',['operator gpgme_ctx_t',['../classGpgFrontend_1_1GpgContext.html#a5b419175bd9927f3d449637db8ba6524',1,'GpgFrontend::GpgContext']]],
- ['operator_20gpgme_5fdata_5ft_1183',['operator gpgme_data_t',['../classGpgFrontend_1_1GpgData.html#afca7a03bd71436c8b3c4f6e8c2acd700',1,'GpgFrontend::GpgData']]],
- ['operator_20gpgme_5fkey_5ft_1184',['operator gpgme_key_t',['../classGpgFrontend_1_1GpgKey.html#a827962251cf47c41dbea56665ae4207b',1,'GpgFrontend::GpgKey']]],
- ['operator_3c_3d_1185',['operator<=',['../classGpgFrontend_1_1GpgKey.html#adc22a349796af0ff5dd4499624b6d03d',1,'GpgFrontend::GpgKey']]],
- ['operator_3d_1186',['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_1187',['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 968c18b4..859bf554 100644
--- a/docs/html/search/functions_f.js
+++ b/docs/html/search/functions_f.js
@@ -1,16 +1,16 @@
var searchData=
[
- ['passphrasegenerator_1188',['PassphraseGenerator',['../classGpgFrontend_1_1PassphraseGenerator.html#ac82ef545a54468ad02253a61cc62e3cf',1,'GpgFrontend::PassphraseGenerator']]],
- ['plaintexteditorpage_1189',['PlainTextEditorPage',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a8759224e57d4c322933ed3df6d96e5f1',1,'GpgFrontend::UI::PlainTextEditorPage']]],
- ['popobject_1190',['PopObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a5ef5ddec0b82017cc4ad7f34b9b13f64',1,'GpgFrontend::Thread::Task::DataObject']]],
- ['post_5finit_5fctx_1191',['post_init_ctx',['../classGpgFrontend_1_1GpgContext.html#aaf3f394ff1790897c315c3249b1f06fe',1,'GpgFrontend::GpgContext']]],
- ['postscheduletask_1192',['PostScheduleTask',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#aaddb0cdd8eb57aac08ca9caf8b8e6bac',1,'GpgFrontend::Thread::TaskRunner']]],
- ['posttask_1193',['PostTask',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a4fae01eb0a5b296b8c4c6bf8408f1c6b',1,'GpgFrontend::Thread::TaskRunner']]],
- ['print_5frecipient_1194',['print_recipient',['../classGpgFrontend_1_1GpgDecryptResultAnalyse.html#a1aac1c1f77a12069479a47f54a934c44',1,'GpgFrontend::GpgDecryptResultAnalyse']]],
- ['print_5fsigner_1195',['print_signer',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a57bf4a26466e07f7f0ecc19de3782104',1,'GpgFrontend::GpgVerifyResultAnalyse']]],
- ['process_5fdirectory_5finto_5ftarball_1196',['process_directory_into_tarball',['../namespaceGpgFrontend_1_1UI.html#a5470872566b41ce628f64039f34b964a',1,'GpgFrontend::UI']]],
- ['process_5foperation_1197',['process_operation',['../namespaceGpgFrontend_1_1UI.html#a3c971eeb5c620d08d6d92f0752ceaf9f',1,'GpgFrontend::UI']]],
- ['process_5fresult_5fanalyse_1198',['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_1199',['process_tarball_into_directory',['../namespaceGpgFrontend_1_1UI.html#a57d0a4dba23cd3d9b42222d40c710dc1',1,'GpgFrontend::UI']]],
- ['proxyconnectiontestthread_1200',['ProxyConnectionTestThread',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.html#a538a78e0149906bf19e850ba71c00ada',1,'GpgFrontend::UI::ProxyConnectionTestThread']]]
+ ['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 ad8ab578..7c76b764 100644
--- a/docs/html/search/namespaces_0.js
+++ b/docs/html/search/namespaces_0.js
@@ -1,7 +1,7 @@
var searchData=
[
- ['gpgfrontend_870',['GpgFrontend',['../namespaceGpgFrontend.html',1,'']]],
- ['rawapi_871',['RawAPI',['../namespaceGpgFrontend_1_1RawAPI.html',1,'GpgFrontend']]],
- ['thread_872',['Thread',['../namespaceGpgFrontend_1_1Thread.html',1,'GpgFrontend']]],
- ['ui_873',['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 2214ad8f..fe42574e 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_1559',['GpgFrontend Develop Document Main Page',['../index.html',1,'']]]
+ ['gpgfrontend_20develop_20document_20main_20page_1578',['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 9cb6565b..bd564c73 100644
--- a/docs/html/search/variables_0.js
+++ b/docs/html/search/variables_0.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['_5fdefault_5fchannel_1421',['_default_channel',['../classGpgFrontend_1_1ChannelObject.html#a66295bb572e98fc2fad3afce763ac311',1,'GpgFrontend::ChannelObject']]],
- ['_5finstance_1422',['_instance',['../classGpgFrontend_1_1CoreSignalStation.html#a36c316a2a76fdf7c3e74dfa5f8ed6b15',1,'GpgFrontend::CoreSignalStation']]]
+ ['_5fdefault_5fchannel_1440',['_default_channel',['../classGpgFrontend_1_1ChannelObject.html#a66295bb572e98fc2fad3afce763ac311',1,'GpgFrontend::ChannelObject']]],
+ ['_5finstance_1441',['_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 9c9cab4c..295a417f 100644
--- a/docs/html/search/variables_1.js
+++ b/docs/html/search/variables_1.js
@@ -1,20 +1,20 @@
var searchData=
[
- ['about_5fact_5f_1423',['about_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9dd292f55fba1fe62c83508fef7e43a1',1,'GpgFrontend::UI::MainWindow']]],
- ['add_5fpgp_5fheader_5fact_5f_1424',['add_pgp_header_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a95b2c86afbefe47e79af87e56032e306',1,'GpgFrontend::UI::MainWindow']]],
- ['additional_5fuid_5fbox_5f_1425',['additional_uid_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a265ef140feec330e7341c1369c0aefab',1,'GpgFrontend::UI::KeyPairDetailTab']]],
- ['algorithm_5fvar_5flabel_5f_1426',['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_1427',['app_configure_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a4d04bb665571921421b853f18b8b300a',1,'GpgFrontend::GlobalSettingStation']]],
- ['app_5fdata_5fobjs_5fpath_5f_1428',['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_1429',['app_data_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a58fff8a42f98ad7989bffb8322344cd6',1,'GpgFrontend::GlobalSettingStation']]],
- ['app_5flocale_5fpath_5f_1430',['app_locale_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a25c1b45a2ccdc21dd2dcba58866169fb',1,'GpgFrontend::GlobalSettingStation']]],
- ['app_5flog_5fpath_5f_1431',['app_log_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a6459653a71cc8285fa554943c7fb3ca7',1,'GpgFrontend::GlobalSettingStation']]],
- ['app_5fpath_5f_1432',['app_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a678f8ba120f9ad050d0adfec4476d7ac',1,'GpgFrontend::GlobalSettingStation']]],
- ['app_5fresource_5fpath_5f_1433',['app_resource_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a1d94a126c78ac01ec01f10d2ce575388',1,'GpgFrontend::GlobalSettingStation']]],
- ['app_5fsecure_5fkey_5fpath_5f_1434',['app_secure_key_path_',['../classGpgFrontend_1_1DataObjectOperator.html#a56c0c031cd327207260c73d1885dbdca',1,'GpgFrontend::DataObjectOperator']]],
- ['app_5fsecure_5fpath_5f_1435',['app_secure_path_',['../classGpgFrontend_1_1DataObjectOperator.html#a6d38d25c91c33c48d083ec4de051108a',1,'GpgFrontend::DataObjectOperator']]],
- ['append_5fselected_5fkeys_5fact_5f_1436',['append_selected_keys_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab67486a71126073e7c39ca12603198f4',1,'GpgFrontend::UI::MainWindow']]],
- ['apppath_1437',['AppPath',['../classGpgFrontend_1_1GpgInfo.html#a2416ae0ab9bedc61782d16075750a9c0',1,'GpgFrontend::GpgInfo']]],
- ['assuanpath_1438',['AssuanPath',['../classGpgFrontend_1_1GpgInfo.html#a48659b780f8d0153ca0eb985a072b5ba',1,'GpgFrontend::GpgInfo']]],
- ['attachment_5fdock_5f_1439',['attachment_dock_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#afd243a5f00f86d65431081ead2cae153',1,'GpgFrontend::UI::MainWindow']]]
+ ['about_5fact_5f_1442',['about_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9dd292f55fba1fe62c83508fef7e43a1',1,'GpgFrontend::UI::MainWindow']]],
+ ['add_5fpgp_5fheader_5fact_5f_1443',['add_pgp_header_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a95b2c86afbefe47e79af87e56032e306',1,'GpgFrontend::UI::MainWindow']]],
+ ['additional_5fuid_5fbox_5f_1444',['additional_uid_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a265ef140feec330e7341c1369c0aefab',1,'GpgFrontend::UI::KeyPairDetailTab']]],
+ ['algorithm_5fvar_5flabel_5f_1445',['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_1446',['app_configure_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a4d04bb665571921421b853f18b8b300a',1,'GpgFrontend::GlobalSettingStation']]],
+ ['app_5fdata_5fobjs_5fpath_5f_1447',['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_1448',['app_data_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a58fff8a42f98ad7989bffb8322344cd6',1,'GpgFrontend::GlobalSettingStation']]],
+ ['app_5flocale_5fpath_5f_1449',['app_locale_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a25c1b45a2ccdc21dd2dcba58866169fb',1,'GpgFrontend::GlobalSettingStation']]],
+ ['app_5flog_5fpath_5f_1450',['app_log_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a6459653a71cc8285fa554943c7fb3ca7',1,'GpgFrontend::GlobalSettingStation']]],
+ ['app_5fpath_5f_1451',['app_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a678f8ba120f9ad050d0adfec4476d7ac',1,'GpgFrontend::GlobalSettingStation']]],
+ ['app_5fresource_5fpath_5f_1452',['app_resource_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a1d94a126c78ac01ec01f10d2ce575388',1,'GpgFrontend::GlobalSettingStation']]],
+ ['app_5fsecure_5fkey_5fpath_5f_1453',['app_secure_key_path_',['../classGpgFrontend_1_1DataObjectOperator.html#a56c0c031cd327207260c73d1885dbdca',1,'GpgFrontend::DataObjectOperator']]],
+ ['app_5fsecure_5fpath_5f_1454',['app_secure_path_',['../classGpgFrontend_1_1DataObjectOperator.html#a6d38d25c91c33c48d083ec4de051108a',1,'GpgFrontend::DataObjectOperator']]],
+ ['append_5fselected_5fkeys_5fact_5f_1455',['append_selected_keys_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab67486a71126073e7c39ca12603198f4',1,'GpgFrontend::UI::MainWindow']]],
+ ['apppath_1456',['AppPath',['../classGpgFrontend_1_1GpgInfo.html#a2416ae0ab9bedc61782d16075750a9c0',1,'GpgFrontend::GpgInfo']]],
+ ['assuanpath_1457',['AssuanPath',['../classGpgFrontend_1_1GpgInfo.html#a48659b780f8d0153ca0eb985a072b5ba',1,'GpgFrontend::GpgInfo']]],
+ ['attachment_5fdock_5f_1458',['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 7e3b6f33..5d114721 100644
--- a/docs/html/search/variables_10.js
+++ b/docs/html/search/variables_10.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['quit_5fact_5f_1529',['quit_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#abe0683e48485f9fcff622d9519c37ed9',1,'GpgFrontend::UI::MainWindow']]],
- ['quote_5fact_5f_1530',['quote_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af9640e5732c2595d0c094e7ff7e371ac',1,'GpgFrontend::UI::MainWindow']]]
+ ['quit_5fact_5f_1548',['quit_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#abe0683e48485f9fcff622d9519c37ed9',1,'GpgFrontend::UI::MainWindow']]],
+ ['quote_5fact_5f_1549',['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 83d9ac7f..15d413e1 100644
--- a/docs/html/search/variables_11.js
+++ b/docs/html/search/variables_11.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['rd_5f_1531',['rd_',['../classGpgFrontend_1_1DataObjectOperator.html#a24c9cdbe9256e332ac93d6dc28c76b90',1,'GpgFrontend::DataObjectOperator::rd_()'],['../classGpgFrontend_1_1PassphraseGenerator.html#a12ee6f9b7fff4883074321c7e0de3dfa',1,'GpgFrontend::PassphraseGenerator::rd_()']]],
- ['redo_5fact_5f_1532',['redo_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#abe38474d4e81726147f9df8a9721ce6e',1,'GpgFrontend::UI::MainWindow']]]
+ ['rd_5f_1550',['rd_',['../classGpgFrontend_1_1DataObjectOperator.html#a24c9cdbe9256e332ac93d6dc28c76b90',1,'GpgFrontend::DataObjectOperator::rd_()'],['../classGpgFrontend_1_1PassphraseGenerator.html#a12ee6f9b7fff4883074321c7e0de3dfa',1,'GpgFrontend::PassphraseGenerator::rd_()']]],
+ ['redo_5fact_5f_1551',['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 21144f7d..fad504c8 100644
--- a/docs/html/search/variables_12.js
+++ b/docs/html/search/variables_12.js
@@ -1,16 +1,16 @@
var searchData=
[
- ['save_5fact_5f_1533',['save_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab0f148559d830fcf10b5a1937b0a47dc',1,'GpgFrontend::UI::MainWindow']]],
- ['save_5fas_5fact_5f_1534',['save_as_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a22256763ef83ed35a81e446b553d8112',1,'GpgFrontend::UI::MainWindow']]],
- ['select_5fall_5fact_5f_1535',['select_all_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ac6a42e6e3af7e76f0bd2ecc62c9520cc',1,'GpgFrontend::UI::MainWindow']]],
- ['sequency_5f_1536',['sequency_',['../classGpgFrontend_1_1Thread_1_1Task.html#a71ed097a2c4b4b735fd385dfe87e6f57',1,'GpgFrontend::Thread::Task']]],
- ['show_5fkey_5fdetails_5fact_5f_1537',['show_key_details_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#acd41722ceedd20973b7d83852fab407b',1,'GpgFrontend::UI::MainWindow']]],
- ['sign_5fact_5f_1538',['sign_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0cded37ef6e07856bbe439b0e90db839',1,'GpgFrontend::UI::MainWindow']]],
- ['sign_5fmarked_5f_1539',['sign_marked_',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a4f94e9ef7889a169bda5a47b7f657358',1,'GpgFrontend::UI::PlainTextEditorPage']]],
- ['special_5fedit_5ftool_5fbar_5f_1540',['special_edit_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af2b3e3a0e9894633e1839df289f5ffe0',1,'GpgFrontend::UI::MainWindow']]],
- ['start_5fwizard_5fact_5f_1541',['start_wizard_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab0019ca316b971c594c2f20f418256a6',1,'GpgFrontend::UI::MainWindow']]],
- ['steganography_5fmenu_5f_1542',['steganography_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af763a506aed7d0fb2125d1859583b853',1,'GpgFrontend::UI::MainWindow']]],
- ['storages_5fmutex_5f_1543',['storages_mutex_',['../classGpgFrontend_1_1SingletonStorageCollection.html#ab648cb257beb2475eb5fca6453c331f9',1,'GpgFrontend::SingletonStorageCollection']]],
- ['switch_5ftab_5fdown_5fact_5f_1544',['switch_tab_down_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a88af746cd550792ab6095d2ebbd29b41',1,'GpgFrontend::UI::MainWindow']]],
- ['switch_5ftab_5fup_5fact_5f_1545',['switch_tab_up_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8d5ce6514ef3fa8ac3223176f5fa2701',1,'GpgFrontend::UI::MainWindow']]]
+ ['save_5fact_5f_1552',['save_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab0f148559d830fcf10b5a1937b0a47dc',1,'GpgFrontend::UI::MainWindow']]],
+ ['save_5fas_5fact_5f_1553',['save_as_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a22256763ef83ed35a81e446b553d8112',1,'GpgFrontend::UI::MainWindow']]],
+ ['select_5fall_5fact_5f_1554',['select_all_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ac6a42e6e3af7e76f0bd2ecc62c9520cc',1,'GpgFrontend::UI::MainWindow']]],
+ ['sequency_5f_1555',['sequency_',['../classGpgFrontend_1_1Thread_1_1Task.html#a71ed097a2c4b4b735fd385dfe87e6f57',1,'GpgFrontend::Thread::Task']]],
+ ['show_5fkey_5fdetails_5fact_5f_1556',['show_key_details_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#acd41722ceedd20973b7d83852fab407b',1,'GpgFrontend::UI::MainWindow']]],
+ ['sign_5fact_5f_1557',['sign_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0cded37ef6e07856bbe439b0e90db839',1,'GpgFrontend::UI::MainWindow']]],
+ ['sign_5fmarked_5f_1558',['sign_marked_',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a4f94e9ef7889a169bda5a47b7f657358',1,'GpgFrontend::UI::PlainTextEditorPage']]],
+ ['special_5fedit_5ftool_5fbar_5f_1559',['special_edit_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af2b3e3a0e9894633e1839df289f5ffe0',1,'GpgFrontend::UI::MainWindow']]],
+ ['start_5fwizard_5fact_5f_1560',['start_wizard_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab0019ca316b971c594c2f20f418256a6',1,'GpgFrontend::UI::MainWindow']]],
+ ['steganography_5fmenu_5f_1561',['steganography_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af763a506aed7d0fb2125d1859583b853',1,'GpgFrontend::UI::MainWindow']]],
+ ['storages_5fmutex_5f_1562',['storages_mutex_',['../classGpgFrontend_1_1SingletonStorageCollection.html#ab648cb257beb2475eb5fca6453c331f9',1,'GpgFrontend::SingletonStorageCollection']]],
+ ['switch_5ftab_5fdown_5fact_5f_1563',['switch_tab_down_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a88af746cd550792ab6095d2ebbd29b41',1,'GpgFrontend::UI::MainWindow']]],
+ ['switch_5ftab_5fup_5fact_5f_1564',['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 65c49122..3bcd8e80 100644
--- a/docs/html/search/variables_13.js
+++ b/docs/html/search/variables_13.js
@@ -1,7 +1,7 @@
var searchData=
[
- ['tasks_1546',['tasks',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a774775e9a91d33072b27dcf78cead6e2',1,'GpgFrontend::Thread::TaskRunner']]],
- ['tasks_5fmutex_5f_1547',['tasks_mutex_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a5e72f1ce00d41c225a4304f1ed20b3f1',1,'GpgFrontend::Thread::TaskRunner']]],
- ['thread_5fpool_5f_1548',['thread_pool_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a2bdc321dd0732ba7a72499b2dc12f7c9',1,'GpgFrontend::Thread::TaskRunner']]],
- ['translate_5fact_5f_1549',['translate_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adbac799672c43c90810366825d837e4e',1,'GpgFrontend::UI::MainWindow']]]
+ ['tasks_1565',['tasks',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a774775e9a91d33072b27dcf78cead6e2',1,'GpgFrontend::Thread::TaskRunner']]],
+ ['tasks_5fmutex_5f_1566',['tasks_mutex_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a5e72f1ce00d41c225a4304f1ed20b3f1',1,'GpgFrontend::Thread::TaskRunner']]],
+ ['thread_5fpool_5f_1567',['thread_pool_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a2bdc321dd0732ba7a72499b2dc12f7c9',1,'GpgFrontend::Thread::TaskRunner']]],
+ ['translate_5fact_5f_1568',['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 44442732..d511b0f9 100644
--- a/docs/html/search/variables_14.js
+++ b/docs/html/search/variables_14.js
@@ -1,7 +1,7 @@
var searchData=
[
- ['ui_5fcfg_5f_1550',['ui_cfg_',['../classGpgFrontend_1_1GlobalSettingStation.html#a1818e08063d6a886975f77354fc5d85c',1,'GpgFrontend::GlobalSettingStation']]],
- ['ui_5fconfig_5fdir_5fpath_5f_1551',['ui_config_dir_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#ab618fef68cfd4ff6e42d4a4aa8ea94bb',1,'GpgFrontend::GlobalSettingStation']]],
- ['ui_5fconfig_5fpath_5f_1552',['ui_config_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#afa99ddc25c0d5fd59a4c5f0e61d13830',1,'GpgFrontend::GlobalSettingStation']]],
- ['undo_5fact_5f_1553',['undo_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa498dfecac36590e4b60d50824dff58c',1,'GpgFrontend::UI::MainWindow']]]
+ ['ui_5fcfg_5f_1569',['ui_cfg_',['../classGpgFrontend_1_1GlobalSettingStation.html#a1818e08063d6a886975f77354fc5d85c',1,'GpgFrontend::GlobalSettingStation']]],
+ ['ui_5fconfig_5fdir_5fpath_5f_1570',['ui_config_dir_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#ab618fef68cfd4ff6e42d4a4aa8ea94bb',1,'GpgFrontend::GlobalSettingStation']]],
+ ['ui_5fconfig_5fpath_5f_1571',['ui_config_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#afa99ddc25c0d5fd59a4c5f0e61d13830',1,'GpgFrontend::GlobalSettingStation']]],
+ ['undo_5fact_5f_1572',['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 9460aaa3..9a914455 100644
--- a/docs/html/search/variables_15.js
+++ b/docs/html/search/variables_15.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['verify_5fact_5f_1554',['verify_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a14bb12fa25620e1a93bd23c9f7c84081',1,'GpgFrontend::UI::MainWindow']]],
- ['view_5fmenu_5f_1555',['view_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0e9920cf0fc974ac2f70d3f039f009f2',1,'GpgFrontend::UI::MainWindow']]]
+ ['verify_5fact_5f_1573',['verify_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a14bb12fa25620e1a93bd23c9f7c84081',1,'GpgFrontend::UI::MainWindow']]],
+ ['view_5fmenu_5f_1574',['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 d251d7e2..5433d264 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_1556',['zoom_in_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3cb7daedbef61c1be27635c9ebc9e689',1,'GpgFrontend::UI::MainWindow']]],
- ['zoom_5fout_5fact_5f_1557',['zoom_out_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a70397629ae3ffe039051b80a099c7979',1,'GpgFrontend::UI::MainWindow']]]
+ ['zoom_5fin_5fact_5f_1575',['zoom_in_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3cb7daedbef61c1be27635c9ebc9e689',1,'GpgFrontend::UI::MainWindow']]],
+ ['zoom_5fout_5fact_5f_1576',['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 4c8d8b07..6727e4d2 100644
--- a/docs/html/search/variables_2.js
+++ b/docs/html/search/variables_2.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['browser_5f_1440',['browser_',['../classGpgFrontend_1_1UI_1_1HelpPage.html#af4f61342fae06a49c95d8d20ca51ca2c',1,'GpgFrontend::UI::HelpPage']]],
- ['browser_5fact_5f_1441',['browser_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3c0a5305cf55fe5bee2f18298f983cad',1,'GpgFrontend::UI::MainWindow']]],
- ['button_5fbox_5f_1442',['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_1459',['browser_',['../classGpgFrontend_1_1UI_1_1HelpPage.html#af4f61342fae06a49c95d8d20ca51ca2c',1,'GpgFrontend::UI::HelpPage']]],
+ ['browser_5fact_5f_1460',['browser_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3c0a5305cf55fe5bee2f18298f983cad',1,'GpgFrontend::UI::MainWindow']]],
+ ['button_5fbox_5f_1461',['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 4fce6ffa..24873c75 100644
--- a/docs/html/search/variables_3.js
+++ b/docs/html/search/variables_3.js
@@ -1,21 +1,21 @@
var searchData=
[
- ['channel_5f_1443',['channel_',['../classGpgFrontend_1_1ChannelObject.html#aee5f8a5575adbdf522da4dd195c091ee',1,'GpgFrontend::ChannelObject']]],
- ['check_5fupdate_5fact_5f_1444',['check_update_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a672f4ef07be6ad645613ecd49399700d',1,'GpgFrontend::UI::MainWindow']]],
- ['clean_5fdouble_5fline_5fbreaks_5fact_5f_1445',['clean_double_line_breaks_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0cb094e0409337cfd7dba1bb510ea96e',1,'GpgFrontend::UI::MainWindow']]],
- ['close_5ftab_5fact_5f_1446',['close_tab_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a09671c3aa26a750cfd6be6c092de8715',1,'GpgFrontend::UI::MainWindow']]],
- ['cmspath_1447',['CMSPath',['../classGpgFrontend_1_1GpgInfo.html#ac8ecbf438d05dc434c77825dd38dfdf2',1,'GpgFrontend::GpgInfo']]],
- ['comment_5fedit_5f_1448',['comment_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3008e2a9879a8e122e422f67cf0018f8',1,'GpgFrontend::UI::KeyGenDialog']]],
- ['comment_5fvar_5flabel_5f_1449',['comment_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a83b1290251a204def52677ae000a17ec',1,'GpgFrontend::UI::KeyPairDetailTab']]],
- ['copy_5fact_5f_1450',['copy_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a71402943f4ed19e3aba0556b23eaa8f8',1,'GpgFrontend::UI::MainWindow']]],
- ['copy_5fmail_5faddress_5fto_5fclipboard_5fact_5f_1451',['copy_mail_address_to_clipboard_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af77f66b6b869f6ddb3d2caa3bc40bb09',1,'GpgFrontend::UI::MainWindow']]],
- ['count_5fpage_5f_1452',['count_page_',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a747d3740a88295e6c9565788d4cf56ec',1,'GpgFrontend::UI::TextEdit']]],
- ['created_5fvar_5flabel_5f_1453',['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_1454',['crypt_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1ef17c566a764f707f43593a1f6b3c60',1,'GpgFrontend::UI::MainWindow']]],
- ['crypt_5ftool_5fbar_5f_1455',['crypt_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aac320aef3b49cd068544aac54b927f7a',1,'GpgFrontend::UI::MainWindow']]],
- ['ctx_5f_1456',['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_1457',['ctx_mutex_',['../classGpgFrontend_1_1GpgKeyGetter.html#a81941e1f562dc22977a71d00dd10956a',1,'GpgFrontend::GpgKeyGetter']]],
- ['current_5freply_5f_1458',['current_reply_',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9679bc6bcdf2e64ec82f6119620b6f2e',1,'GpgFrontend::UI::VersionCheckTask']]],
- ['cut_5fact_5f_1459',['cut_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2c2f6c021219564846f1624f6bb5b9a2',1,'GpgFrontend::UI::MainWindow']]],
- ['cut_5fpgp_5fheader_5fact_5f_1460',['cut_pgp_header_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a313a5d7d0847114a6f11e4d7870edd86',1,'GpgFrontend::UI::MainWindow']]]
+ ['channel_5f_1462',['channel_',['../classGpgFrontend_1_1ChannelObject.html#aee5f8a5575adbdf522da4dd195c091ee',1,'GpgFrontend::ChannelObject']]],
+ ['check_5fupdate_5fact_5f_1463',['check_update_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a672f4ef07be6ad645613ecd49399700d',1,'GpgFrontend::UI::MainWindow']]],
+ ['clean_5fdouble_5fline_5fbreaks_5fact_5f_1464',['clean_double_line_breaks_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0cb094e0409337cfd7dba1bb510ea96e',1,'GpgFrontend::UI::MainWindow']]],
+ ['close_5ftab_5fact_5f_1465',['close_tab_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a09671c3aa26a750cfd6be6c092de8715',1,'GpgFrontend::UI::MainWindow']]],
+ ['cmspath_1466',['CMSPath',['../classGpgFrontend_1_1GpgInfo.html#ac8ecbf438d05dc434c77825dd38dfdf2',1,'GpgFrontend::GpgInfo']]],
+ ['comment_5fedit_5f_1467',['comment_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3008e2a9879a8e122e422f67cf0018f8',1,'GpgFrontend::UI::KeyGenDialog']]],
+ ['comment_5fvar_5flabel_5f_1468',['comment_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a83b1290251a204def52677ae000a17ec',1,'GpgFrontend::UI::KeyPairDetailTab']]],
+ ['copy_5fact_5f_1469',['copy_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a71402943f4ed19e3aba0556b23eaa8f8',1,'GpgFrontend::UI::MainWindow']]],
+ ['copy_5fmail_5faddress_5fto_5fclipboard_5fact_5f_1470',['copy_mail_address_to_clipboard_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af77f66b6b869f6ddb3d2caa3bc40bb09',1,'GpgFrontend::UI::MainWindow']]],
+ ['count_5fpage_5f_1471',['count_page_',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a747d3740a88295e6c9565788d4cf56ec',1,'GpgFrontend::UI::TextEdit']]],
+ ['created_5fvar_5flabel_5f_1472',['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_1473',['crypt_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1ef17c566a764f707f43593a1f6b3c60',1,'GpgFrontend::UI::MainWindow']]],
+ ['crypt_5ftool_5fbar_5f_1474',['crypt_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aac320aef3b49cd068544aac54b927f7a',1,'GpgFrontend::UI::MainWindow']]],
+ ['ctx_5f_1475',['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_1476',['ctx_mutex_',['../classGpgFrontend_1_1GpgKeyGetter.html#a81941e1f562dc22977a71d00dd10956a',1,'GpgFrontend::GpgKeyGetter']]],
+ ['current_5freply_5f_1477',['current_reply_',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9679bc6bcdf2e64ec82f6119620b6f2e',1,'GpgFrontend::UI::VersionCheckTask']]],
+ ['cut_5fact_5f_1478',['cut_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2c2f6c021219564846f1624f6bb5b9a2',1,'GpgFrontend::UI::MainWindow']]],
+ ['cut_5fpgp_5fheader_5fact_5f_1479',['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 cbce076a..58e85b33 100644
--- a/docs/html/search/variables_4.js
+++ b/docs/html/search/variables_4.js
@@ -1,9 +1,9 @@
var searchData=
[
- ['databasepath_1461',['DatabasePath',['../classGpgFrontend_1_1GpgInfo.html#a7347d47006bdf41f1da979ea3289de7e',1,'GpgFrontend::GpgInfo']]],
- ['date_5fedit_5f_1462',['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_1463',['decrypt_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa92246123272e3e1085f22612aedf48f',1,'GpgFrontend::UI::MainWindow']]],
- ['decrypt_5fverify_5fact_5f_1464',['decrypt_verify_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a70d2b2311708ab023466d343f2e914b1',1,'GpgFrontend::UI::MainWindow']]],
- ['default_5ftask_5fname_1465',['DEFAULT_TASK_NAME',['../classGpgFrontend_1_1Thread_1_1Task.html#a4a2cad8747108322152b41c049f99c72',1,'GpgFrontend::Thread::Task']]],
- ['dirmngrpath_1466',['DirmngrPath',['../classGpgFrontend_1_1GpgInfo.html#a8c7e75d67b2438c61bbe4cebe68a7029',1,'GpgFrontend::GpgInfo']]]
+ ['databasepath_1480',['DatabasePath',['../classGpgFrontend_1_1GpgInfo.html#a7347d47006bdf41f1da979ea3289de7e',1,'GpgFrontend::GpgInfo']]],
+ ['date_5fedit_5f_1481',['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_1482',['decrypt_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa92246123272e3e1085f22612aedf48f',1,'GpgFrontend::UI::MainWindow']]],
+ ['decrypt_5fverify_5fact_5f_1483',['decrypt_verify_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a70d2b2311708ab023466d343f2e914b1',1,'GpgFrontend::UI::MainWindow']]],
+ ['default_5ftask_5fname_1484',['DEFAULT_TASK_NAME',['../classGpgFrontend_1_1Thread_1_1Task.html#a4a2cad8747108322152b41c049f99c72',1,'GpgFrontend::Thread::Task']]],
+ ['dirmngrpath_1485',['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 01a2e5dd..25faa8c5 100644
--- a/docs/html/search/variables_5.js
+++ b/docs/html/search/variables_5.js
@@ -1,14 +1,14 @@
var searchData=
[
- ['edit_5f_1467',['edit_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7aa41c90105fd4c2931895d8dfb5ec45',1,'GpgFrontend::UI::MainWindow']]],
- ['edit_5fmenu_5f_1468',['edit_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a6d681a306c137dc107088d60b09a925f',1,'GpgFrontend::UI::MainWindow']]],
- ['edit_5ftool_5fbar_5f_1469',['edit_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab531823acdbfb117c82a9906ce2107b9',1,'GpgFrontend::UI::MainWindow']]],
- ['email_5fedit_5f_1470',['email_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3453d1a8a4c0411472b2779d018abdc3',1,'GpgFrontend::UI::KeyGenDialog']]],
- ['email_5fvar_5flabel_5f_1471',['email_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a8c71b37aa040da50cb0105489a42e60d',1,'GpgFrontend::UI::KeyPairDetailTab']]],
- ['encrypt_5fact_5f_1472',['encrypt_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad6a2cecb2846b324604c4abd1fb7d11a',1,'GpgFrontend::UI::MainWindow']]],
- ['encrypt_5fsign_5fact_5f_1473',['encrypt_sign_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2417c807356e3b876ecb2f572568670b',1,'GpgFrontend::UI::MainWindow']]],
- ['error_5flabel_5f_1474',['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_1475',['error_messages_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a03a8e1c8f2c1887732d36a346185bb40',1,'GpgFrontend::UI::KeyGenDialog']]],
- ['expire_5fcheck_5fbox_5f_1476',['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_1477',['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_1486',['edit_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7aa41c90105fd4c2931895d8dfb5ec45',1,'GpgFrontend::UI::MainWindow']]],
+ ['edit_5fmenu_5f_1487',['edit_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a6d681a306c137dc107088d60b09a925f',1,'GpgFrontend::UI::MainWindow']]],
+ ['edit_5ftool_5fbar_5f_1488',['edit_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab531823acdbfb117c82a9906ce2107b9',1,'GpgFrontend::UI::MainWindow']]],
+ ['email_5fedit_5f_1489',['email_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3453d1a8a4c0411472b2779d018abdc3',1,'GpgFrontend::UI::KeyGenDialog']]],
+ ['email_5fvar_5flabel_5f_1490',['email_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a8c71b37aa040da50cb0105489a42e60d',1,'GpgFrontend::UI::KeyPairDetailTab']]],
+ ['encrypt_5fact_5f_1491',['encrypt_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad6a2cecb2846b324604c4abd1fb7d11a',1,'GpgFrontend::UI::MainWindow']]],
+ ['encrypt_5fsign_5fact_5f_1492',['encrypt_sign_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2417c807356e3b876ecb2f572568670b',1,'GpgFrontend::UI::MainWindow']]],
+ ['error_5flabel_5f_1493',['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_1494',['error_messages_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a03a8e1c8f2c1887732d36a346185bb40',1,'GpgFrontend::UI::KeyGenDialog']]],
+ ['expire_5fcheck_5fbox_5f_1495',['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_1496',['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 b43b45f1..5ae3ba19 100644
--- a/docs/html/search/variables_6.js
+++ b/docs/html/search/variables_6.js
@@ -1,11 +1,11 @@
var searchData=
[
- ['file_5fmenu_5f_1478',['file_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af08c62c38a750382ee218191c8e13f4f',1,'GpgFrontend::UI::MainWindow']]],
- ['file_5ftool_5fbar_5f_1479',['file_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1e0d23d361b8e339ca85410db2bdfb64',1,'GpgFrontend::UI::MainWindow']]],
- ['find_5fact_5f_1480',['find_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a6154f5dbdc9cebc0644e5d1e25895df8',1,'GpgFrontend::UI::MainWindow']]],
- ['find_5fedit_5f_1481',['find_edit_',['../classGpgFrontend_1_1UI_1_1FindWidget.html#af420832720942dd1e7cb3f3841c7cbfe',1,'GpgFrontend::UI::FindWidget']]],
- ['fingerprint_5fbox_5f_1482',['fingerprint_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#ada1c21cf59f1f19dfd4ffe0391bc1594',1,'GpgFrontend::UI::KeyPairDetailTab']]],
- ['fingerprint_5fvar_5flabel_5f_1483',['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_1484',['fpr_',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#a36bf3306b8564b49da04eee1dc653675',1,'GpgFrontend::UI::VerifyKeyDetailBox']]],
- ['full_5ffile_5fpath_5f_1485',['full_file_path_',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#ae867b6329fcb1978479a9d70f7b017db',1,'GpgFrontend::UI::PlainTextEditorPage']]]
+ ['file_5fmenu_5f_1497',['file_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af08c62c38a750382ee218191c8e13f4f',1,'GpgFrontend::UI::MainWindow']]],
+ ['file_5ftool_5fbar_5f_1498',['file_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1e0d23d361b8e339ca85410db2bdfb64',1,'GpgFrontend::UI::MainWindow']]],
+ ['find_5fact_5f_1499',['find_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a6154f5dbdc9cebc0644e5d1e25895df8',1,'GpgFrontend::UI::MainWindow']]],
+ ['find_5fedit_5f_1500',['find_edit_',['../classGpgFrontend_1_1UI_1_1FindWidget.html#af420832720942dd1e7cb3f3841c7cbfe',1,'GpgFrontend::UI::FindWidget']]],
+ ['fingerprint_5fbox_5f_1501',['fingerprint_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#ada1c21cf59f1f19dfd4ffe0391bc1594',1,'GpgFrontend::UI::KeyPairDetailTab']]],
+ ['fingerprint_5fvar_5flabel_5f_1502',['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_1503',['fpr_',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#a36bf3306b8564b49da04eee1dc653675',1,'GpgFrontend::UI::VerifyKeyDetailBox']]],
+ ['full_5ffile_5fpath_5f_1504',['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 b2b65b39..d19c5dde 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_1486',['global_setting_station_',['../classGpgFrontend_1_1DataObjectOperator.html#a3c195f8e4c30d95be14a6d43e9282601',1,'GpgFrontend::DataObjectOperator']]],
- ['gnupg_5fact_5f_1487',['gnupg_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a79b83f536a7c4299eaa3d22e4e875227',1,'GpgFrontend::UI::MainWindow']]],
- ['gnupghomepath_1488',['GnuPGHomePath',['../classGpgFrontend_1_1GpgInfo.html#a0c1dbdb54f880a620419fdbd8336dc5d',1,'GpgFrontend::GpgInfo']]],
- ['gnupgversion_1489',['GnupgVersion',['../classGpgFrontend_1_1GpgInfo.html#abbb3d503b10073bebf86d79bbaeab4c9',1,'GpgFrontend::GpgInfo']]],
- ['gpg_5fmenu_5f_1490',['gpg_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2bed0c3b032269c9eb82bc7c068852cb',1,'GpgFrontend::UI::MainWindow']]],
- ['gpgagentpath_1491',['GpgAgentPath',['../classGpgFrontend_1_1GpgInfo.html#af6ca2e99ffc487b8e4aa251d3cb23191',1,'GpgFrontend::GpgInfo']]],
- ['gpgconfpath_1492',['GpgConfPath',['../classGpgFrontend_1_1GpgInfo.html#a2fcd53b59bc251c38eb8d79cec946777',1,'GpgFrontend::GpgInfo']]]
+ ['global_5fsetting_5fstation_5f_1505',['global_setting_station_',['../classGpgFrontend_1_1DataObjectOperator.html#a3c195f8e4c30d95be14a6d43e9282601',1,'GpgFrontend::DataObjectOperator']]],
+ ['gnupg_5fact_5f_1506',['gnupg_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a79b83f536a7c4299eaa3d22e4e875227',1,'GpgFrontend::UI::MainWindow']]],
+ ['gnupghomepath_1507',['GnuPGHomePath',['../classGpgFrontend_1_1GpgInfo.html#a0c1dbdb54f880a620419fdbd8336dc5d',1,'GpgFrontend::GpgInfo']]],
+ ['gnupgversion_1508',['GnupgVersion',['../classGpgFrontend_1_1GpgInfo.html#abbb3d503b10073bebf86d79bbaeab4c9',1,'GpgFrontend::GpgInfo']]],
+ ['gpg_5fmenu_5f_1509',['gpg_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2bed0c3b032269c9eb82bc7c068852cb',1,'GpgFrontend::UI::MainWindow']]],
+ ['gpgagentpath_1510',['GpgAgentPath',['../classGpgFrontend_1_1GpgInfo.html#af6ca2e99ffc487b8e4aa251d3cb23191',1,'GpgFrontend::GpgInfo']]],
+ ['gpgconfpath_1511',['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 c14915c1..c30d6532 100644
--- a/docs/html/search/variables_8.js
+++ b/docs/html/search/variables_8.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['hash_5fkey_5f_1493',['hash_key_',['../classGpgFrontend_1_1DataObjectOperator.html#ae409c3562c3e08931daa17f5790c508b',1,'GpgFrontend::DataObjectOperator']]],
- ['help_5fmenu_5f_1494',['help_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a89fa105ed54d2189d762668262d74c63',1,'GpgFrontend::UI::MainWindow']]]
+ ['hash_5fkey_5f_1512',['hash_key_',['../classGpgFrontend_1_1DataObjectOperator.html#ae409c3562c3e08931daa17f5790c508b',1,'GpgFrontend::DataObjectOperator']]],
+ ['help_5fmenu_5f_1513',['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 7b39f3c9..4da542dd 100644
--- a/docs/html/search/variables_9.js
+++ b/docs/html/search/variables_9.js
@@ -1,8 +1,8 @@
var searchData=
[
- ['import_5fbutton_5f_1495',['import_button_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8538940a9a5dea7ddf53c89acdeb83be',1,'GpgFrontend::UI::MainWindow']]],
- ['import_5fkey_5ffrom_5fedit_5fact_5f_1496',['import_key_from_edit_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a01b85fb17c373d8f97ce439027c6d04e',1,'GpgFrontend::UI::MainWindow']]],
- ['import_5fkey_5fmenu_5f_1497',['import_key_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8d6fe32ab64797459443ed285d769745',1,'GpgFrontend::UI::MainWindow']]],
- ['instances_5fmap_5f_1498',['instances_map_',['../classGpgFrontend_1_1SingletonStorage.html#a6181f2b5af39c6b86de89e1ba9eeff1c',1,'GpgFrontend::SingletonStorage']]],
- ['instances_5fmutex_5f_1499',['instances_mutex_',['../classGpgFrontend_1_1SingletonStorage.html#a15161d0afafec602018a89266dab5641',1,'GpgFrontend::SingletonStorage']]]
+ ['import_5fbutton_5f_1514',['import_button_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8538940a9a5dea7ddf53c89acdeb83be',1,'GpgFrontend::UI::MainWindow']]],
+ ['import_5fkey_5ffrom_5fedit_5fact_5f_1515',['import_key_from_edit_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a01b85fb17c373d8f97ce439027c6d04e',1,'GpgFrontend::UI::MainWindow']]],
+ ['import_5fkey_5fmenu_5f_1516',['import_key_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8d6fe32ab64797459443ed285d769745',1,'GpgFrontend::UI::MainWindow']]],
+ ['instances_5fmap_5f_1517',['instances_map_',['../classGpgFrontend_1_1SingletonStorage.html#a6181f2b5af39c6b86de89e1ba9eeff1c',1,'GpgFrontend::SingletonStorage']]],
+ ['instances_5fmutex_5f_1518',['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 13d78841..dc237783 100644
--- a/docs/html/search/variables_a.js
+++ b/docs/html/search/variables_a.js
@@ -1,17 +1,17 @@
var searchData=
[
- ['key_5fbox_5f_1500',['key_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aae9905764b5551208574a932fdfba29c',1,'GpgFrontend::UI::KeyPairDetailTab']]],
- ['key_5fid_5fvar_5flabel_1501',['key_id_var_label',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a65176245d280ae0734ef7b5b3f1c4cc4',1,'GpgFrontend::UI::KeyPairDetailTab']]],
- ['key_5fid_5fvar_5flabel_5f_1502',['key_id_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a2f634f4c83ab5dd2d088eb07e0d3b862',1,'GpgFrontend::UI::KeyPairSubkeyTab']]],
- ['key_5flist_5fdock_5f_1503',['key_list_dock_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adaa66d9cdc51c946efc99bb94deda31c',1,'GpgFrontend::UI::MainWindow']]],
- ['key_5fmenu_5f_1504',['key_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a16bbfd12cd3a6f0df9e2c32cf7999e57',1,'GpgFrontend::UI::MainWindow']]],
- ['key_5fsize_5fspin_5fbox_5f_1505',['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_1506',['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_1507',['key_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a38f243880cfb9276545b08f0730811e7',1,'GpgFrontend::UI::MainWindow']]],
- ['key_5ftype_5fcombo_5fbox_5f_1508',['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_1509',['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_1510',['key_usage_group_box_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7b1b9cb46c0547c1e561e56d55616cf1',1,'GpgFrontend::UI::KeyGenDialog']]],
- ['keyboxdpath_1511',['KeyboxdPath',['../classGpgFrontend_1_1GpgInfo.html#a072503811cb59dad27040e4e8914d18b',1,'GpgFrontend::GpgInfo']]],
- ['keys_5fcache_5f_1512',['keys_cache_',['../classGpgFrontend_1_1GpgKeyGetter.html#a9567d5e08ae73c5bafcd1dc378fed066',1,'GpgFrontend::GpgKeyGetter']]],
- ['keys_5fcache_5fmutex_5f_1513',['keys_cache_mutex_',['../classGpgFrontend_1_1GpgKeyGetter.html#ae1d7846ad2fa17ab90c72b3186ba5335',1,'GpgFrontend::GpgKeyGetter']]]
+ ['key_5fbox_5f_1519',['key_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aae9905764b5551208574a932fdfba29c',1,'GpgFrontend::UI::KeyPairDetailTab']]],
+ ['key_5fid_5fvar_5flabel_1520',['key_id_var_label',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a65176245d280ae0734ef7b5b3f1c4cc4',1,'GpgFrontend::UI::KeyPairDetailTab']]],
+ ['key_5fid_5fvar_5flabel_5f_1521',['key_id_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a2f634f4c83ab5dd2d088eb07e0d3b862',1,'GpgFrontend::UI::KeyPairSubkeyTab']]],
+ ['key_5flist_5fdock_5f_1522',['key_list_dock_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adaa66d9cdc51c946efc99bb94deda31c',1,'GpgFrontend::UI::MainWindow']]],
+ ['key_5fmenu_5f_1523',['key_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a16bbfd12cd3a6f0df9e2c32cf7999e57',1,'GpgFrontend::UI::MainWindow']]],
+ ['key_5fsize_5fspin_5fbox_5f_1524',['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_1525',['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_1526',['key_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a38f243880cfb9276545b08f0730811e7',1,'GpgFrontend::UI::MainWindow']]],
+ ['key_5ftype_5fcombo_5fbox_5f_1527',['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_1528',['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_1529',['key_usage_group_box_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7b1b9cb46c0547c1e561e56d55616cf1',1,'GpgFrontend::UI::KeyGenDialog']]],
+ ['keyboxdpath_1530',['KeyboxdPath',['../classGpgFrontend_1_1GpgInfo.html#a072503811cb59dad27040e4e8914d18b',1,'GpgFrontend::GpgInfo']]],
+ ['keys_5fcache_5f_1531',['keys_cache_',['../classGpgFrontend_1_1GpgKeyGetter.html#a9567d5e08ae73c5bafcd1dc378fed066',1,'GpgFrontend::GpgKeyGetter']]],
+ ['keys_5fcache_5fmutex_5f_1532',['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 6f3aff5e..c76c89da 100644
--- a/docs/html/search/variables_b.js
+++ b/docs/html/search/variables_b.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['latest_5freply_5f_1514',['latest_reply_',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#aed545ffa8128acb16bb28c067e032ec9',1,'GpgFrontend::UI::VersionCheckTask']]]
+ ['latest_5freply_5f_1533',['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 c1288e7d..cd68a5ec 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_1515',['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_1516',['mt_',['../classGpgFrontend_1_1DataObjectOperator.html#a9fc92c7d497f2a2057776adfca40e8ca',1,'GpgFrontend::DataObjectOperator::mt_()'],['../classGpgFrontend_1_1PassphraseGenerator.html#a19ac4999bbd5fb7e6c42a4aef9606892',1,'GpgFrontend::PassphraseGenerator::mt_()']]]
+ ['m_5ftext_5fpage_5f_1534',['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_1535',['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 ce709b87..3a379831 100644
--- a/docs/html/search/variables_d.js
+++ b/docs/html/search/variables_d.js
@@ -1,7 +1,7 @@
var searchData=
[
- ['name_5fedit_5f_1517',['name_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7ed095cce29c658741ae0520049010c0',1,'GpgFrontend::UI::KeyGenDialog']]],
- ['name_5fvar_5flabel_5f_1518',['name_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a9d57be18c2091827c04ec8809f4154be',1,'GpgFrontend::UI::KeyPairDetailTab']]],
- ['new_5ftab_5fact_5f_1519',['new_tab_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a472500fec64442b114e9ce9faf4b6a73',1,'GpgFrontend::UI::MainWindow']]],
- ['no_5fpass_5fphrase_5fcheck_5fbox_5f_1520',['no_pass_phrase_check_box_',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a001803152c0e5bd9de7c7dd04cef8ad4',1,'GpgFrontend::UI::SubkeyGenerateDialog']]]
+ ['name_5fedit_5f_1536',['name_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7ed095cce29c658741ae0520049010c0',1,'GpgFrontend::UI::KeyGenDialog']]],
+ ['name_5fvar_5flabel_5f_1537',['name_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a9d57be18c2091827c04ec8809f4154be',1,'GpgFrontend::UI::KeyPairDetailTab']]],
+ ['new_5ftab_5fact_5f_1538',['new_tab_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a472500fec64442b114e9ce9faf4b6a73',1,'GpgFrontend::UI::MainWindow']]],
+ ['no_5fpass_5fphrase_5fcheck_5fbox_5f_1539',['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 41760d66..76f61966 100644
--- a/docs/html/search/variables_e.js
+++ b/docs/html/search/variables_e.js
@@ -1,7 +1,7 @@
var searchData=
[
- ['open_5fact_5f_1521',['open_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a4a1edafb8c67b181ff3c29394147571d',1,'GpgFrontend::UI::MainWindow']]],
- ['open_5fkey_5fmanagement_5fact_5f_1522',['open_key_management_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad7b22560df7e3bb38b660d3ffc84dc83',1,'GpgFrontend::UI::MainWindow']]],
- ['open_5fsettings_5fact_5f_1523',['open_settings_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#afab1e0363a4b97ff68228cd4bd7cbc62',1,'GpgFrontend::UI::MainWindow']]],
- ['owner_5fbox_5f_1524',['owner_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#ad8c25061351d8e739b70d5466b87410e',1,'GpgFrontend::UI::KeyPairDetailTab']]]
+ ['open_5fact_5f_1540',['open_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a4a1edafb8c67b181ff3c29394147571d',1,'GpgFrontend::UI::MainWindow']]],
+ ['open_5fkey_5fmanagement_5fact_5f_1541',['open_key_management_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad7b22560df7e3bb38b660d3ffc84dc83',1,'GpgFrontend::UI::MainWindow']]],
+ ['open_5fsettings_5fact_5f_1542',['open_settings_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#afab1e0363a4b97ff68228cd4bd7cbc62',1,'GpgFrontend::UI::MainWindow']]],
+ ['owner_5fbox_5f_1543',['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 ff3f2d38..b45b3a92 100644
--- a/docs/html/search/variables_f.js
+++ b/docs/html/search/variables_f.js
@@ -1,7 +1,7 @@
var searchData=
[
- ['paste_5fact_5f_1525',['paste_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a62ea61c38e758022ba655c6faf54322b',1,'GpgFrontend::UI::MainWindow']]],
- ['pending_5ftasks_5f_1526',['pending_tasks_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a6d92421bbbfcf3136335a5173d1b2a22',1,'GpgFrontend::Thread::TaskRunner']]],
- ['pgp_5fcrypt_5fbegin_1527',['PGP_CRYPT_BEGIN',['../classGpgFrontend_1_1GpgConstants.html#a237006d6db30c7e3f8de171210eb35f2',1,'GpgFrontend::GpgConstants']]],
- ['print_5fact_5f_1528',['print_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8f9dd7edba23321a13ed630cdef7fdcc',1,'GpgFrontend::UI::MainWindow']]]
+ ['paste_5fact_5f_1544',['paste_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a62ea61c38e758022ba655c6faf54322b',1,'GpgFrontend::UI::MainWindow']]],
+ ['pending_5ftasks_5f_1545',['pending_tasks_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a6d92421bbbfcf3136335a5173d1b2a22',1,'GpgFrontend::Thread::TaskRunner']]],
+ ['pgp_5fcrypt_5fbegin_1546',['PGP_CRYPT_BEGIN',['../classGpgFrontend_1_1GpgConstants.html#a237006d6db30c7e3f8de171210eb35f2',1,'GpgFrontend::GpgConstants']]],
+ ['print_5fact_5f_1547',['print_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8f9dd7edba23321a13ed630cdef7fdcc',1,'GpgFrontend::UI::MainWindow']]]
];
diff --git a/docs/html/structGpgFrontend_1_1GpgContextInitArgs-members.html b/docs/html/structGpgFrontend_1_1GpgContextInitArgs-members.html
index b9fc5cf5..3dccedb7 100644
--- a/docs/html/structGpgFrontend_1_1GpgContextInitArgs-members.html
+++ b/docs/html/structGpgFrontend_1_1GpgContextInitArgs-members.html
@@ -90,12 +90,17 @@ $(document).ready(function(){initNavTree('structGpgFrontend_1_1GpgContextInitArg
This is the complete list of members for GpgFrontend::GpgContextInitArgs , including all inherited members.
diff --git a/docs/html/structGpgFrontend_1_1GpgContextInitArgs.html b/docs/html/structGpgFrontend_1_1GpgContextInitArgs.html
index 979e5840..cb6fcc70 100644
--- a/docs/html/structGpgFrontend_1_1GpgContextInitArgs.html
+++ b/docs/html/structGpgFrontend_1_1GpgContextInitArgs.html
@@ -94,7 +94,7 @@ Collaboration diagram for GpgFrontend::GpgContextInitArgs:
-
+
@@ -120,6 +120,21 @@ bool
test_mode = false
bool ascii = true
+
+bool offline_mode = false
+
+
+bool auto_import_missing_key = false
+
+
+bool custom_gpgconf = false
+
+
+std::string custom_gpgconf_path
+
+
+bool use_pinentry = false
+
The documentation for this struct was generated from the following file:
src/core/GpgContext.h
diff --git a/docs/html/structGpgFrontend_1_1GpgContextInitArgs.js b/docs/html/structGpgFrontend_1_1GpgContextInitArgs.js
index ec573f88..19fac246 100644
--- a/docs/html/structGpgFrontend_1_1GpgContextInitArgs.js
+++ b/docs/html/structGpgFrontend_1_1GpgContextInitArgs.js
@@ -2,9 +2,14 @@ var structGpgFrontend_1_1GpgContextInitArgs =
[
[ "GpgContextInitArgs", "structGpgFrontend_1_1GpgContextInitArgs.html#a0ab27875287142f6c72bb7cc7e7bc271", null ],
[ "ascii", "structGpgFrontend_1_1GpgContextInitArgs.html#a646fd830375ccf3b69ea64ede0c76f52", null ],
+ [ "auto_import_missing_key", "structGpgFrontend_1_1GpgContextInitArgs.html#a12e9e2e6ad393864a4b2d85727350edc", null ],
+ [ "custom_gpgconf", "structGpgFrontend_1_1GpgContextInitArgs.html#aa46e72b29dd89211f468047f45a7a31d", null ],
+ [ "custom_gpgconf_path", "structGpgFrontend_1_1GpgContextInitArgs.html#a0a1de4b848ff87da9a6650fdbac82fa7", null ],
[ "db_path", "structGpgFrontend_1_1GpgContextInitArgs.html#aa850fc1db1cc8f3daae78a0fcefb2fdb", null ],
[ "gpg_alone", "structGpgFrontend_1_1GpgContextInitArgs.html#a90fc544dd70fa9e3cf4951b9a54efc22", null ],
[ "gpg_path", "structGpgFrontend_1_1GpgContextInitArgs.html#a825d8c5daced5eb06be1a949ae0eadfd", null ],
[ "independent_database", "structGpgFrontend_1_1GpgContextInitArgs.html#ac2679300c14d3f0ce29625a267054e6b", null ],
- [ "test_mode", "structGpgFrontend_1_1GpgContextInitArgs.html#a25ca282a0a82ed7aa4cb677a86f53eef", null ]
+ [ "offline_mode", "structGpgFrontend_1_1GpgContextInitArgs.html#a33cd883333581952ae49784ae86edae7", null ],
+ [ "test_mode", "structGpgFrontend_1_1GpgContextInitArgs.html#a25ca282a0a82ed7aa4cb677a86f53eef", null ],
+ [ "use_pinentry", "structGpgFrontend_1_1GpgContextInitArgs.html#a2b09f18f4f10ca44370ed204d19de122", null ]
];
\ No newline at end of file
diff --git a/docs/html/structGpgFrontend_1_1GpgContextInitArgs__coll__graph.map b/docs/html/structGpgFrontend_1_1GpgContextInitArgs__coll__graph.map
index 6343a7ea..cb40e97c 100644
--- a/docs/html/structGpgFrontend_1_1GpgContextInitArgs__coll__graph.map
+++ b/docs/html/structGpgFrontend_1_1GpgContextInitArgs__coll__graph.map
@@ -1,5 +1,5 @@
-
+
diff --git a/docs/html/structGpgFrontend_1_1GpgContextInitArgs__coll__graph.md5 b/docs/html/structGpgFrontend_1_1GpgContextInitArgs__coll__graph.md5
index 0b1d4c82..4c261437 100644
--- a/docs/html/structGpgFrontend_1_1GpgContextInitArgs__coll__graph.md5
+++ b/docs/html/structGpgFrontend_1_1GpgContextInitArgs__coll__graph.md5
@@ -1 +1 @@
-5f3bb388a4a2bab50c112667b7da61dc
\ No newline at end of file
+d9c7b2b5138ad845bebed417d8adf9bb
\ No newline at end of file
diff --git a/docs/html/structGpgFrontend_1_1GpgContextInitArgs__coll__graph.png b/docs/html/structGpgFrontend_1_1GpgContextInitArgs__coll__graph.png
index 31978369..9ccdd146 100644
Binary files a/docs/html/structGpgFrontend_1_1GpgContextInitArgs__coll__graph.png and b/docs/html/structGpgFrontend_1_1GpgContextInitArgs__coll__graph.png differ
diff --git a/docs/html/structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct-members.html b/docs/html/structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct-members.html
new file mode 100644
index 00000000..cdde768c
--- /dev/null
+++ b/docs/html/structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct-members.html
@@ -0,0 +1,115 @@
+
+
+
+
+
+
+
+GpgFrontend Project: Member List
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ GpgFrontend Project
+
+ A Free, Powerful, Easy-to-Use, Compact, Cross-Platform, and Installation-Free OpenPGP(pgp) Crypto Tool.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
This is the complete list of members for GpgFrontend::GpgKeyManager::AutomatonHandelStruct , including all inherited members.
+
+
+
+
+
+
diff --git a/docs/html/structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html b/docs/html/structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html
new file mode 100644
index 00000000..63c9f5bd
--- /dev/null
+++ b/docs/html/structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html
@@ -0,0 +1,165 @@
+
+
+
+
+
+
+
+GpgFrontend Project: GpgFrontend::GpgKeyManager::AutomatonHandelStruct Struct Reference
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ GpgFrontend Project
+
+ A Free, Powerful, Easy-to-Use, Compact, Cross-Platform, and Installation-Free OpenPGP(pgp) Crypto Tool.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+void SetStatus (AutomatonState next_state)
+
+
+AutomatonState CuurentStatus ()
+
+
+void SetHandler (AutomatonNextStateHandler next_state_handler, AutomatonActionHandler action_handler)
+
+
+AutomatonState NextState (std::string gpg_status, std::string args)
+
+
+Command Action ()
+
+
+void SetSuccess (bool success)
+
+
+bool Success ()
+
+
+std::string KeyFpr ()
+
+
+ AutomatonHandelStruct (std::string key_fpr)
+
+
+
+
+AutomatonState current_state_ = AS_START
+
+
+AutomatonNextStateHandler next_state_handler_
+
+
+AutomatonActionHandler action_handler_
+
+
+bool success_ = false
+
+
+std::string key_fpr_
+
+
+
The documentation for this struct was generated from the following file:
+
+
+
+
+
+
diff --git a/docs/html/structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.js b/docs/html/structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.js
new file mode 100644
index 00000000..c5e61051
--- /dev/null
+++ b/docs/html/structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.js
@@ -0,0 +1,17 @@
+var structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct =
+[
+ [ "AutomatonHandelStruct", "structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html#a94c9441aa2583ce99cb94a8b46a1740b", null ],
+ [ "Action", "structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html#afeda3da9e04fc8121946bcaa36fa6a7b", null ],
+ [ "CuurentStatus", "structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html#a742df2dfca6697d70fd0366c85a2e9ab", null ],
+ [ "KeyFpr", "structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html#a345c63f8868e3f674aa7b35977a54f28", null ],
+ [ "NextState", "structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html#a36e09cfc03ac7c3a4a02ba91e2ab324a", null ],
+ [ "SetHandler", "structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html#ad5e858f2cd13d4aa52ab99aa76687f80", null ],
+ [ "SetStatus", "structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html#abf2b62099a5db5d878dacf2272d081cc", null ],
+ [ "SetSuccess", "structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html#a95521fc49f2e1d1a7304472dc1897375", null ],
+ [ "Success", "structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html#a032442a3b9e65411cca885dbc48fc051", null ],
+ [ "action_handler_", "structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html#a190bdac3d0b71d25a1b7c933d54d803f", null ],
+ [ "current_state_", "structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html#aeb932ebd78e9c004e8539a0f403c6410", null ],
+ [ "key_fpr_", "structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html#ad7f02df3199da0fe15bf7af74e21002b", null ],
+ [ "next_state_handler_", "structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html#a51b6a0532770053d82898d51e8c6564f", null ],
+ [ "success_", "structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.html#a93424679542c04dbe0094d93789ec28e", null ]
+];
\ No newline at end of file
diff --git a/docs/html/structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct__coll__graph.map b/docs/html/structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct__coll__graph.map
new file mode 100644
index 00000000..2f65c83b
--- /dev/null
+++ b/docs/html/structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct__coll__graph.map
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/docs/html/structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct__coll__graph.md5 b/docs/html/structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct__coll__graph.md5
new file mode 100644
index 00000000..ba7d5cc5
--- /dev/null
+++ b/docs/html/structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct__coll__graph.md5
@@ -0,0 +1 @@
+fee0e1edf404752f3a10cd950a45dc53
\ No newline at end of file
diff --git a/docs/html/structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct__coll__graph.png b/docs/html/structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct__coll__graph.png
new file mode 100644
index 00000000..b74ff009
Binary files /dev/null and b/docs/html/structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct__coll__graph.png differ
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::KeyMenuAbility static
NONE (defined in GpgFrontend::UI::KeyMenuAbility )GpgFrontend::UI::KeyMenuAbility static
REFRESH (defined in GpgFrontend::UI::KeyMenuAbility )GpgFrontend::UI::KeyMenuAbility static
- SYNC_PUBLIC_KEY (defined in GpgFrontend::UI::KeyMenuAbility )GpgFrontend::UI::KeyMenuAbility static
- UNCHECK_ALL (defined in GpgFrontend::UI::KeyMenuAbility )GpgFrontend::UI::KeyMenuAbility static
+ SEARCH_BAR (defined in GpgFrontend::UI::KeyMenuAbility )GpgFrontend::UI::KeyMenuAbility static
+ SYNC_PUBLIC_KEY (defined in GpgFrontend::UI::KeyMenuAbility )GpgFrontend::UI::KeyMenuAbility static
+ UNCHECK_ALL (defined in GpgFrontend::UI::KeyMenuAbility )GpgFrontend::UI::KeyMenuAbility static
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:
@@ -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.
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
+
+
+using KeyTableFilter = std::function< bool(const GpgKey &, const 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. 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 ()
@@ -126,6 +135,12 @@ void 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 in
std::vector< GpgKey > buffered_keys_
-
-std::function< bool(const GpgKey &)> filter_
-
+
+KeyTableFilter filter_
+
KeyIdArgsListPtr checked_key_ids_
+
+KeyMenuAbility::AbilityType ability_
+
+
+std::string keyword_
+
-
-◆ 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 06b65771..94404dbe 100644
--- a/docs/latex/annotated.tex
+++ b/docs/latex/annotated.tex
@@ -9,6 +9,7 @@ Here are the classes, structs, unions and interfaces with brief descriptions\+:\
\item\contentsline{section}{\mbox{\hyperlink{classGpgFrontend_1_1UI_1_1AppearanceTab}{Gpg\+Frontend\+::\+UI\+::\+Appearance\+Tab}} }{\pageref{classGpgFrontend_1_1UI_1_1AppearanceTab}}{}
\item\contentsline{section}{\mbox{\hyperlink{classGpgFrontend_1_1ArchiveFileOperator}{Gpg\+Frontend\+::\+Archive\+File\+Operator}} }{\pageref{classGpgFrontend_1_1ArchiveFileOperator}}{}
\item\contentsline{section}{\mbox{\hyperlink{structGpgFrontend_1_1ArchiveStruct}{Gpg\+Frontend\+::\+Archive\+Struct}} }{\pageref{structGpgFrontend_1_1ArchiveStruct}}{}
+\item\contentsline{section}{\mbox{\hyperlink{structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct}{Gpg\+Frontend\+::\+Gpg\+Key\+Manager\+::\+Automaton\+Handel\+Struct}} }{\pageref{structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct}}{}
\item\contentsline{section}{\mbox{\hyperlink{classGpgFrontend_1_1CacheManager}{Gpg\+Frontend\+::\+Cache\+Manager}} }{\pageref{classGpgFrontend_1_1CacheManager}}{}
\item\contentsline{section}{\mbox{\hyperlink{classGpgFrontend_1_1ChannelObject}{Gpg\+Frontend\+::\+Channel\+Object}} \\*Object which in channel system }{\pageref{classGpgFrontend_1_1ChannelObject}}{}
\item\contentsline{section}{\mbox{\hyperlink{classGpgFrontend_1_1CharsetOperator}{Gpg\+Frontend\+::\+Charset\+Operator}} }{\pageref{classGpgFrontend_1_1CharsetOperator}}{}
@@ -33,6 +34,7 @@ Here are the classes, structs, unions and interfaces with brief descriptions\+:\
\item\contentsline{section}{\mbox{\hyperlink{classGpgFrontend_1_1UI_1_1GeneralTab}{Gpg\+Frontend\+::\+UI\+::\+General\+Tab}} }{\pageref{classGpgFrontend_1_1UI_1_1GeneralTab}}{}
\item\contentsline{section}{\mbox{\hyperlink{classGpgFrontend_1_1GenKeyInfo}{Gpg\+Frontend\+::\+Gen\+Key\+Info}} }{\pageref{classGpgFrontend_1_1GenKeyInfo}}{}
\item\contentsline{section}{\mbox{\hyperlink{classGpgFrontend_1_1GlobalSettingStation}{Gpg\+Frontend\+::\+Global\+Setting\+Station}} }{\pageref{classGpgFrontend_1_1GlobalSettingStation}}{}
+\item\contentsline{section}{\mbox{\hyperlink{classGpgFrontend_1_1UI_1_1GnuPGControllerDialog}{Gpg\+Frontend\+::\+UI\+::\+Gnu\+PGController\+Dialog}} }{\pageref{classGpgFrontend_1_1UI_1_1GnuPGControllerDialog}}{}
\item\contentsline{section}{\mbox{\hyperlink{classGpgFrontend_1_1UI_1_1GnupgTab}{Gpg\+Frontend\+::\+UI\+::\+Gnupg\+Tab}} }{\pageref{classGpgFrontend_1_1UI_1_1GnupgTab}}{}
\item\contentsline{section}{\mbox{\hyperlink{classGpgFrontend_1_1GpgAdvancedOperator}{Gpg\+Frontend\+::\+Gpg\+Advanced\+Operator}} }{\pageref{classGpgFrontend_1_1GpgAdvancedOperator}}{}
\item\contentsline{section}{\mbox{\hyperlink{classGpgFrontend_1_1GpgBasicOperator}{Gpg\+Frontend\+::\+Gpg\+Basic\+Operator}} \\*Basic operation collection }{\pageref{classGpgFrontend_1_1GpgBasicOperator}}{}
@@ -94,7 +96,7 @@ Here are the classes, structs, unions and interfaces with brief descriptions\+:\
\item\contentsline{section}{\mbox{\hyperlink{classGpgFrontend_1_1UI_1_1NetworkTab}{Gpg\+Frontend\+::\+UI\+::\+Network\+Tab}} }{\pageref{classGpgFrontend_1_1UI_1_1NetworkTab}}{}
\item\contentsline{section}{\mbox{\hyperlink{classGpgFrontend_1_1PassphraseGenerator}{Gpg\+Frontend\+::\+Passphrase\+Generator}} \\*The \mbox{\hyperlink{classGpgFrontend_1_1PassphraseGenerator}{Passphrase\+Generator}} class }{\pageref{classGpgFrontend_1_1PassphraseGenerator}}{}
\item\contentsline{section}{\mbox{\hyperlink{classGpgFrontend_1_1UI_1_1PlainTextEditorPage}{Gpg\+Frontend\+::\+UI\+::\+Plain\+Text\+Editor\+Page}} \\*Class for handling a single tab of the tabwidget }{\pageref{classGpgFrontend_1_1UI_1_1PlainTextEditorPage}}{}
-\item\contentsline{section}{\mbox{\hyperlink{classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread}{Gpg\+Frontend\+::\+UI\+::\+Proxy\+Connection\+Test\+Thread}} }{\pageref{classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread}}{}
+\item\contentsline{section}{\mbox{\hyperlink{classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask}{Gpg\+Frontend\+::\+UI\+::\+Proxy\+Connection\+Test\+Task}} }{\pageref{classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask}}{}
\item\contentsline{section}{\mbox{\hyperlink{classProxyConnectionTestThread}{Proxy\+Connection\+Test\+Thread}} }{\pageref{classProxyConnectionTestThread}}{}
\item\contentsline{section}{\mbox{\hyperlink{classGpgFrontend_1_1UI_1_1QuitDialog}{Gpg\+Frontend\+::\+UI\+::\+Quit\+Dialog}} }{\pageref{classGpgFrontend_1_1UI_1_1QuitDialog}}{}
\item\contentsline{section}{\mbox{\hyperlink{classGpgFrontend_1_1UI_1_1SettingsDialog}{Gpg\+Frontend\+::\+UI\+::\+Settings\+Dialog}} }{\pageref{classGpgFrontend_1_1UI_1_1SettingsDialog}}{}
@@ -112,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 d8b5bf8c..bd99c715 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 bd1701dc..e22f58be 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..8d44b59d
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 b3998713..a8f03287 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 6710509a..a7e7e211 100644
--- a/docs/latex/classGpgFrontend_1_1ChannelObject__inherit__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1ChannelObject__inherit__graph.md5
@@ -1 +1 @@
-abb749238c9df04b64ae50642d868e3f
\ No newline at end of file
+c01b0586afbc08d747185cc22d7c51b1
\ 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 cca0a276..23a525a4 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 bef3e462..f6ae916f 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.tex b/docs/latex/classGpgFrontend_1_1CoreCommonUtil.tex
index ffac5c9e..5bc536d5 100644
--- a/docs/latex/classGpgFrontend_1_1CoreCommonUtil.tex
+++ b/docs/latex/classGpgFrontend_1_1CoreCommonUtil.tex
@@ -29,12 +29,12 @@ void {\bfseries Signal\+Gnupg\+Not\+Install} ()
\doxysubsection*{Public Member Functions}
\begin{DoxyCompactItemize}
\item
-\mbox{\Hypertarget{classGpgFrontend_1_1CoreCommonUtil_a62bb080c6c04970fd2e02a460ea91d2a}\label{classGpgFrontend_1_1CoreCommonUtil_a62bb080c6c04970fd2e02a460ea91d2a}}
-void \mbox{\hyperlink{classGpgFrontend_1_1CoreCommonUtil_a62bb080c6c04970fd2e02a460ea91d2a}{Set\+Temp\+Cache\+Value}} (const std\+::string, const std\+::string)
+\mbox{\Hypertarget{classGpgFrontend_1_1CoreCommonUtil_abe5fa8731b0b672613505d59a576a3d7}\label{classGpgFrontend_1_1CoreCommonUtil_abe5fa8731b0b672613505d59a576a3d7}}
+void \mbox{\hyperlink{classGpgFrontend_1_1CoreCommonUtil_abe5fa8731b0b672613505d59a576a3d7}{Set\+Temp\+Cache\+Value}} (const std\+::string \&, const std\+::string \&)
\begin{DoxyCompactList}\small\item\em set a temp cache under a certain key \end{DoxyCompactList}\item
-std\+::string \mbox{\hyperlink{classGpgFrontend_1_1CoreCommonUtil_a7689d3abb54a1cef6a826fc944d9dec7}{Get\+Temp\+Cache\+Value}} (const std\+::string)
+std\+::string \mbox{\hyperlink{classGpgFrontend_1_1CoreCommonUtil_aa3e4003ca3248537973ea6cf42e9f040}{Get\+Temp\+Cache\+Value}} (const std\+::string \&)
\begin{DoxyCompactList}\small\item\em after get the temp cache, its value will be imediately ease in storage \end{DoxyCompactList}\item
-void \mbox{\hyperlink{classGpgFrontend_1_1CoreCommonUtil_a354c4f7cb7f102964e43012fc10d1e52}{Reset\+Temp\+Cache\+Value}} (const std\+::string)
+void \mbox{\hyperlink{classGpgFrontend_1_1CoreCommonUtil_ae2df4542d0d7d15a542f9c664f1f295f}{Reset\+Temp\+Cache\+Value}} (const std\+::string \&)
\begin{DoxyCompactList}\small\item\em imediately ease temp cache in storage \end{DoxyCompactList}\end{DoxyCompactItemize}
\doxysubsection*{Static Public Member Functions}
\begin{DoxyCompactItemize}
@@ -57,11 +57,11 @@ static std\+::unique\+\_\+ptr$<$ \mbox{\hyperlink{classGpgFrontend_1_1CoreCommon
\doxysubsection{Member Function Documentation}
-\mbox{\Hypertarget{classGpgFrontend_1_1CoreCommonUtil_a7689d3abb54a1cef6a826fc944d9dec7}\label{classGpgFrontend_1_1CoreCommonUtil_a7689d3abb54a1cef6a826fc944d9dec7}}
+\mbox{\Hypertarget{classGpgFrontend_1_1CoreCommonUtil_aa3e4003ca3248537973ea6cf42e9f040}\label{classGpgFrontend_1_1CoreCommonUtil_aa3e4003ca3248537973ea6cf42e9f040}}
\index{GpgFrontend::CoreCommonUtil@{GpgFrontend::CoreCommonUtil}!GetTempCacheValue@{GetTempCacheValue}}
\index{GetTempCacheValue@{GetTempCacheValue}!GpgFrontend::CoreCommonUtil@{GpgFrontend::CoreCommonUtil}}
\doxysubsubsection{\texorpdfstring{GetTempCacheValue()}{GetTempCacheValue()}}
-{\footnotesize\ttfamily std\+::string Gpg\+Frontend\+::\+Core\+Common\+Util\+::\+Get\+Temp\+Cache\+Value (\begin{DoxyParamCaption}\item[{const std\+::string}]{key }\end{DoxyParamCaption})}
+{\footnotesize\ttfamily std\+::string Gpg\+Frontend\+::\+Core\+Common\+Util\+::\+Get\+Temp\+Cache\+Value (\begin{DoxyParamCaption}\item[{const std\+::string \&}]{key }\end{DoxyParamCaption})}
@@ -74,11 +74,11 @@ std\+::string
Referenced by Gpg\+Frontend\+::\+Gpg\+Context\+::custom\+\_\+passphrase\+\_\+cb().
-\mbox{\Hypertarget{classGpgFrontend_1_1CoreCommonUtil_a354c4f7cb7f102964e43012fc10d1e52}\label{classGpgFrontend_1_1CoreCommonUtil_a354c4f7cb7f102964e43012fc10d1e52}}
+\mbox{\Hypertarget{classGpgFrontend_1_1CoreCommonUtil_ae2df4542d0d7d15a542f9c664f1f295f}\label{classGpgFrontend_1_1CoreCommonUtil_ae2df4542d0d7d15a542f9c664f1f295f}}
\index{GpgFrontend::CoreCommonUtil@{GpgFrontend::CoreCommonUtil}!ResetTempCacheValue@{ResetTempCacheValue}}
\index{ResetTempCacheValue@{ResetTempCacheValue}!GpgFrontend::CoreCommonUtil@{GpgFrontend::CoreCommonUtil}}
\doxysubsubsection{\texorpdfstring{ResetTempCacheValue()}{ResetTempCacheValue()}}
-{\footnotesize\ttfamily void Gpg\+Frontend\+::\+Core\+Common\+Util\+::\+Reset\+Temp\+Cache\+Value (\begin{DoxyParamCaption}\item[{const std\+::string}]{key }\end{DoxyParamCaption})}
+{\footnotesize\ttfamily void Gpg\+Frontend\+::\+Core\+Common\+Util\+::\+Reset\+Temp\+Cache\+Value (\begin{DoxyParamCaption}\item[{const std\+::string \&}]{key }\end{DoxyParamCaption})}
diff --git a/docs/latex/classGpgFrontend_1_1CoreCommonUtil__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1CoreCommonUtil__coll__graph.pdf
index 7df91849..e8d3888b 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 b74edefb..12799c5e 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 b190cf5d..b27e2b10 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 9d38d3f7..44509e1c 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 60bb4414..118d00b0 100644
--- a/docs/latex/classGpgFrontend_1_1DataObjectOperator__coll__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1DataObjectOperator__coll__graph.md5
@@ -1 +1 @@
-859da5ad18c242bcc4629f4e58ccbbfd
\ 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 cd75d816..0189636e 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 40268306..c781677c 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 ce42fc01..50f3e141 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 5f36b93f..5636b9ee 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 10a56168..c1d2fdfd 100644
--- a/docs/latex/classGpgFrontend_1_1GlobalSettingStation.tex
+++ b/docs/latex/classGpgFrontend_1_1GlobalSettingStation.tex
@@ -29,7 +29,9 @@ Collaboration diagram for Gpg\+Frontend\+::Global\+Setting\+Station\+:
\mbox{\Hypertarget{classGpgFrontend_1_1GlobalSettingStation_af700161900e623a0ea14261d51616451}\label{classGpgFrontend_1_1GlobalSettingStation_af700161900e623a0ea14261d51616451}}
\mbox{\hyperlink{classGpgFrontend_1_1GlobalSettingStation_af700161900e623a0ea14261d51616451}{$\sim$\+Global\+Setting\+Station}} () noexcept override
\begin{DoxyCompactList}\small\item\em Destroy the Global Setting Station object. \end{DoxyCompactList}\item
-libconfig\+::\+Setting \& \mbox{\hyperlink{classGpgFrontend_1_1GlobalSettingStation_a14433405831283cd95091d741614d03b}{Get\+UISettings}} () noexcept
+libconfig\+::\+Setting \& \mbox{\hyperlink{classGpgFrontend_1_1GlobalSettingStation_a1d8b9f91c75ef7a1d008a171f09f2c0e}{Get\+UISettings}} () noexcept
+\item
+{\footnotesize template$<$typename T $>$ }\\T \mbox{\hyperlink{classGpgFrontend_1_1GlobalSettingStation_a819b3f4ea553fc1e839ef0ae230f0ea2}{Lookup\+Settings}} (std\+::string path, T default\+\_\+value) noexcept
\item
std\+::filesystem\+::path \mbox{\hyperlink{classGpgFrontend_1_1GlobalSettingStation_ae9d1da3d01c4a834120968636596c3c3}{Get\+App\+Dir}} () const
\begin{DoxyCompactList}\small\item\em Get the App Dir object. \end{DoxyCompactList}\item
@@ -51,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}
@@ -58,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}
@@ -190,18 +213,36 @@ Get the Standalone Gpg Bin Dir object.
\begin{DoxyReturn}{Returns}
std\+::filesystem\+::path
\end{DoxyReturn}
-\mbox{\Hypertarget{classGpgFrontend_1_1GlobalSettingStation_a14433405831283cd95091d741614d03b}\label{classGpgFrontend_1_1GlobalSettingStation_a14433405831283cd95091d741614d03b}}
+\mbox{\Hypertarget{classGpgFrontend_1_1GlobalSettingStation_a1d8b9f91c75ef7a1d008a171f09f2c0e}\label{classGpgFrontend_1_1GlobalSettingStation_a1d8b9f91c75ef7a1d008a171f09f2c0e}}
\index{GpgFrontend::GlobalSettingStation@{GpgFrontend::GlobalSettingStation}!GetUISettings@{GetUISettings}}
\index{GetUISettings@{GetUISettings}!GpgFrontend::GlobalSettingStation@{GpgFrontend::GlobalSettingStation}}
\doxysubsubsection{\texorpdfstring{GetUISettings()}{GetUISettings()}}
-{\footnotesize\ttfamily libconfig\+::\+Setting\& Gpg\+Frontend\+::\+Global\+Setting\+Station\+::\+Get\+UISettings (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [inline]}, {\ttfamily [noexcept]}}
+{\footnotesize\ttfamily libconfig\+::\+Setting \& Gpg\+Frontend\+::\+Global\+Setting\+Station\+::\+Get\+UISettings (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [noexcept]}}
\begin{DoxyReturn}{Returns}
libconfig\+::\+Setting\&
\end{DoxyReturn}
-Referenced by Gpg\+Frontend\+::\+UI\+::\+Key\+List\+::drop\+Event(), Gpg\+Frontend\+::\+UI\+::\+General\+Tab\+::\+General\+Tab(), Gpg\+Frontend\+::\+UI\+::init\+\_\+locale(), Gpg\+Frontend\+::\+UI\+::\+Key\+Gen\+Dialog\+::\+Key\+Gen\+Dialog(), Gpg\+Frontend\+::\+UI\+::\+Key\+Mgmt\+::\+Key\+Mgmt(), Gpg\+Frontend\+::\+UI\+::\+General\+Tab\+::\+Set\+Settings(), Gpg\+Frontend\+::\+UI\+::\+Network\+Tab\+::\+Set\+Settings(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::\+Slot\+File\+Encrypt(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::\+Slot\+File\+Encrypt\+Sign(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::\+Slot\+File\+Sign(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::\+Slot\+File\+Verify(), Gpg\+Frontend\+::\+UI\+::\+Common\+Utils\+::\+Slot\+Import\+Key\+From\+Key\+Server(), Gpg\+Frontend\+::\+UI\+::\+Subkey\+Generate\+Dialog\+::\+Subkey\+Generate\+Dialog(), and Gpg\+Frontend\+::\+UI\+::\+Wizard\+::\+Wizard().
+References ui\+\_\+cfg\+\_\+.
+
+
+
+Referenced by Gpg\+Frontend\+::\+UI\+::\+Key\+List\+::drop\+Event(), Gpg\+Frontend\+::\+UI\+::\+Gnu\+PGController\+Dialog\+::\+Gnu\+PGController\+Dialog(), Gpg\+Frontend\+::\+UI\+::init\+\_\+locale(), Gpg\+Frontend\+::\+UI\+::\+Key\+Pair\+Opera\+Tab\+::\+Key\+Pair\+Opera\+Tab(), Gpg\+Frontend\+::\+UI\+::\+General\+Tab\+::\+Set\+Settings(), Gpg\+Frontend\+::\+UI\+::\+Network\+Tab\+::\+Set\+Settings(), and Gpg\+Frontend\+::\+UI\+::\+Common\+Utils\+::\+Slot\+Import\+Key\+From\+Key\+Server().
+
+\mbox{\Hypertarget{classGpgFrontend_1_1GlobalSettingStation_a819b3f4ea553fc1e839ef0ae230f0ea2}\label{classGpgFrontend_1_1GlobalSettingStation_a819b3f4ea553fc1e839ef0ae230f0ea2}}
+\index{GpgFrontend::GlobalSettingStation@{GpgFrontend::GlobalSettingStation}!LookupSettings@{LookupSettings}}
+\index{LookupSettings@{LookupSettings}!GpgFrontend::GlobalSettingStation@{GpgFrontend::GlobalSettingStation}}
+\doxysubsubsection{\texorpdfstring{LookupSettings()}{LookupSettings()}}
+{\footnotesize\ttfamily template$<$typename T $>$ \\
+T Gpg\+Frontend\+::\+Global\+Setting\+Station\+::\+Lookup\+Settings (\begin{DoxyParamCaption}\item[{std\+::string}]{path, }\item[{T}]{default\+\_\+value }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [inline]}, {\ttfamily [noexcept]}}
+
+\begin{DoxyReturn}{Returns}
+libconfig\+::\+Setting\&
+\end{DoxyReturn}
+
+
+Referenced by Gpg\+Frontend\+::\+UI\+::\+Key\+Mgmt\+::create\+\_\+actions(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::create\+\_\+actions(), Gpg\+Frontend\+::\+UI\+::\+Key\+List\+::drop\+Event(), Gpg\+Frontend\+::\+UI\+::\+Init\+Gpg\+Frontend\+UI(), Gpg\+Frontend\+::\+UI\+::\+Key\+Gen\+Dialog\+::\+Key\+Gen\+Dialog(), Gpg\+Frontend\+::\+UI\+::\+Key\+Server\+Import\+Dialog\+::\+Key\+Server\+Import\+Dialog(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::\+Slot\+File\+Encrypt(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::\+Slot\+File\+Encrypt\+Sign(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::\+Slot\+File\+Sign(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::\+Slot\+File\+Verify(), Gpg\+Frontend\+::\+UI\+::\+Subkey\+Generate\+Dialog\+::\+Subkey\+Generate\+Dialog(), Gpg\+Frontend\+::\+UI\+::\+Verify\+Key\+Detail\+Box\+::\+Verify\+Key\+Detail\+Box(), and Gpg\+Frontend\+::\+UI\+::\+Wizard\+::\+Wizard().
\mbox{\Hypertarget{classGpgFrontend_1_1GlobalSettingStation_ac061ac8e5308f67ea52b98888bbb2e8d}\label{classGpgFrontend_1_1GlobalSettingStation_ac061ac8e5308f67ea52b98888bbb2e8d}}
\index{GpgFrontend::GlobalSettingStation@{GpgFrontend::GlobalSettingStation}!SyncSettings@{SyncSettings}}
@@ -268,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 d0ce3525..c2640e9d 100644
--- a/docs/latex/classGpgFrontend_1_1GlobalSettingStation__coll__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1GlobalSettingStation__coll__graph.md5
@@ -1 +1 @@
-60e541c8bb21c0c584920e8c9dc502d2
\ 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 9391691e..d54f2b4c 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 d0ce3525..c2640e9d 100644
--- a/docs/latex/classGpgFrontend_1_1GlobalSettingStation__inherit__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1GlobalSettingStation__inherit__graph.md5
@@ -1 +1 @@
-60e541c8bb21c0c584920e8c9dc502d2
\ 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 9391691e..d54f2b4c 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.md5 b/docs/latex/classGpgFrontend_1_1GpgAdvancedOperator__coll__graph.md5
index 0cf94541..a03d8b24 100644
--- a/docs/latex/classGpgFrontend_1_1GpgAdvancedOperator__coll__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1GpgAdvancedOperator__coll__graph.md5
@@ -1 +1 @@
-f67795d1fdf11db7d428e8248c727e56
\ No newline at end of file
+1869572e9a4501e2f1f9a7c15b557dd0
\ No newline at end of file
diff --git a/docs/latex/classGpgFrontend_1_1GpgAdvancedOperator__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgAdvancedOperator__coll__graph.pdf
index aa65a289..cf5ea37f 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 63b6fceb..9a7cfff8 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.md5 b/docs/latex/classGpgFrontend_1_1GpgBasicOperator__coll__graph.md5
index b85b8a39..87cc3beb 100644
--- a/docs/latex/classGpgFrontend_1_1GpgBasicOperator__coll__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1GpgBasicOperator__coll__graph.md5
@@ -1 +1 @@
-3c47804b9f9b4992d257024b272ee24a
\ No newline at end of file
+3df5ee5cbf53360cf2f49f3e7c5ee1cb
\ No newline at end of file
diff --git a/docs/latex/classGpgFrontend_1_1GpgBasicOperator__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgBasicOperator__coll__graph.pdf
index 5aef0979..ce372a68 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 a5103523..2920b754 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.tex b/docs/latex/classGpgFrontend_1_1GpgCommandExecutor.tex
index 023c77c0..fc4a0f2a 100644
--- a/docs/latex/classGpgFrontend_1_1GpgCommandExecutor.tex
+++ b/docs/latex/classGpgFrontend_1_1GpgCommandExecutor.tex
@@ -106,7 +106,7 @@ References Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Task\+Runner\+Gette
-Referenced by Gpg\+Frontend\+::\+Gpg\+Advanced\+Operator\+::\+Clear\+Gpg\+Password\+Cache(), Gpg\+Frontend\+::\+Gpg\+Context\+::\+Get\+Info(), Gpg\+Frontend\+::\+Gpg\+Advanced\+Operator\+::\+Reload\+Gpg\+Components(), Gpg\+Frontend\+::\+Gpg\+Advanced\+Operator\+::\+Reset\+Configures(), Gpg\+Frontend\+::\+Gpg\+Advanced\+Operator\+::\+Restart\+Gpg\+Components(), Gpg\+Frontend\+::\+Gpg\+Advanced\+Operator\+::\+Start\+Dirmngr(), Gpg\+Frontend\+::\+Gpg\+Advanced\+Operator\+::\+Start\+Gpg\+Agent(), and Gpg\+Frontend\+::\+Gpg\+Advanced\+Operator\+::\+Start\+Key\+Boxd().
+Referenced by Gpg\+Frontend\+::\+Gpg\+Advanced\+Operator\+::\+Clear\+Gpg\+Password\+Cache(), Gpg\+Frontend\+::\+Gpg\+Key\+Opera\+::\+Generate\+Revoke\+Cert(), Gpg\+Frontend\+::\+Gpg\+Context\+::\+Get\+Info(), Gpg\+Frontend\+::\+Gpg\+Advanced\+Operator\+::\+Reload\+Gpg\+Components(), Gpg\+Frontend\+::\+Gpg\+Advanced\+Operator\+::\+Reset\+Configures(), Gpg\+Frontend\+::\+Gpg\+Advanced\+Operator\+::\+Restart\+Gpg\+Components(), Gpg\+Frontend\+::\+Gpg\+Advanced\+Operator\+::\+Start\+Dirmngr(), Gpg\+Frontend\+::\+Gpg\+Advanced\+Operator\+::\+Start\+Gpg\+Agent(), and Gpg\+Frontend\+::\+Gpg\+Advanced\+Operator\+::\+Start\+Key\+Boxd().
diff --git a/docs/latex/classGpgFrontend_1_1GpgCommandExecutor__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1GpgCommandExecutor__coll__graph.md5
index edb4c8a4..e16ecc1d 100644
--- a/docs/latex/classGpgFrontend_1_1GpgCommandExecutor__coll__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1GpgCommandExecutor__coll__graph.md5
@@ -1 +1 @@
-04ff6643f9ba4bf19103fc550acbfb0b
\ No newline at end of file
+2b4d14fe8c05a2c48d00ce3dd4d078b7
\ No newline at end of file
diff --git a/docs/latex/classGpgFrontend_1_1GpgCommandExecutor__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgCommandExecutor__coll__graph.pdf
index f80285a1..86dc3e9c 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 09d92f0d..ff098713 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 ab85c4cb..add0379d 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.tex b/docs/latex/classGpgFrontend_1_1GpgContext.tex
index 9019c2db..bdcd2694 100644
--- a/docs/latex/classGpgFrontend_1_1GpgContext.tex
+++ b/docs/latex/classGpgFrontend_1_1GpgContext.tex
@@ -238,7 +238,7 @@ Setting the output type must be done at the beginning
think this means ascii-\/armor -\/-\/$>$ ?
-References Gpg\+Frontend\+::\+Gpg\+Info\+::\+App\+Path, Gpg\+Frontend\+::check\+\_\+gpg\+\_\+error(), Gpg\+Frontend\+::check\+\_\+gpg\+\_\+error\+\_\+2\+\_\+err\+\_\+code(), custom\+\_\+passphrase\+\_\+cb(), Gpg\+Frontend\+::\+Gpg\+Info\+::\+Database\+Path, Get\+Info(), Gpg\+Frontend\+::\+Core\+Signal\+Station\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Gpg\+Info\+::\+Gnupg\+Version, Set\+Passphrase\+Cb(), test\+\_\+passphrase\+\_\+cb(), and test\+\_\+status\+\_\+cb().
+References Gpg\+Frontend\+::\+Gpg\+Info\+::\+App\+Path, Gpg\+Frontend\+::check\+\_\+gpg\+\_\+error\+\_\+2\+\_\+err\+\_\+code(), custom\+\_\+passphrase\+\_\+cb(), Gpg\+Frontend\+::\+Gpg\+Info\+::\+Database\+Path, Get\+Info(), Gpg\+Frontend\+::\+Core\+Signal\+Station\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Gpg\+Info\+::\+Gnupg\+Version, Set\+Passphrase\+Cb(), test\+\_\+passphrase\+\_\+cb(), and test\+\_\+status\+\_\+cb().
diff --git a/docs/latex/classGpgFrontend_1_1GpgContext__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1GpgContext__coll__graph.md5
index 6b27e1c5..f25f8200 100644
--- a/docs/latex/classGpgFrontend_1_1GpgContext__coll__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1GpgContext__coll__graph.md5
@@ -1 +1 @@
-5a61aca501337f402da3b53bb02924f9
\ No newline at end of file
+1d6a1fc002251037099108aa81dc5c9b
\ No newline at end of file
diff --git a/docs/latex/classGpgFrontend_1_1GpgContext__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgContext__coll__graph.pdf
index 4c727bab..9260e079 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 dc8be93f..e67bae9f 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 9ab8968e..c3ca8a3d 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 95d0173e..1e8c6cd8 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 6d35f27d..e43b19d6 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 359fd3e9..adb7f112 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 88cb32aa..bb1f1058 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 d4924329..a7610274 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 d4924329..a7610274 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 fefd2fb7..ac1af731 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 9ead9ae4..cf33982f 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 cdc76701..d373feb5 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 1f07edaa..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
@@ -242,7 +244,7 @@ std\+::string
\end{DoxyReturn}
-Referenced by Gpg\+Frontend\+::\+Gpg\+Key\+Opera\+::\+Set\+Expire().
+Referenced by Gpg\+Frontend\+::\+Gpg\+Key\+Opera\+::\+Set\+Expire(), and Gpg\+Frontend\+::\+Gpg\+Key\+Manager\+::\+Set\+Owner\+Trust\+Level().
\mbox{\Hypertarget{classGpgFrontend_1_1GpgKey_a8930f958f3ca1f5566f63e8c2273837e}\label{classGpgFrontend_1_1GpgKey_a8930f958f3ca1f5566f63e8c2273837e}}
\index{GpgFrontend::GpgKey@{GpgFrontend::GpgKey}!GetId@{GetId}}
@@ -255,7 +257,7 @@ std\+::string
\end{DoxyReturn}
-Referenced by Gpg\+Frontend\+::\+Gpg\+Key\+Import\+Exporter\+::\+Export\+Key(), Gpg\+Frontend\+::\+Gpg\+Key\+Import\+Exporter\+::\+Export\+Key\+Open\+SSH(), Gpg\+Frontend\+::\+Gpg\+Key\+Import\+Exporter\+::\+Export\+Secret\+Key(), Gpg\+Frontend\+::\+Gpg\+Key\+Import\+Exporter\+::\+Export\+Secret\+Key\+Shortest(), Gpg\+Frontend\+::\+Gpg\+Key\+Opera\+::\+Generate\+Subkey(), Gpg\+Frontend\+::\+UI\+::\+Key\+UIDSign\+Dialog\+::\+Key\+UIDSign\+Dialog(), operator$<$=(), operator==(), Gpg\+Frontend\+::\+Gpg\+Key\+Opera\+::\+Set\+Expire(), and Gpg\+Frontend\+::\+UI\+::\+Key\+Pair\+Opera\+Tab\+::slot\+\_\+export\+\_\+private\+\_\+key().
+Referenced by Gpg\+Frontend\+::\+Gpg\+Key\+Import\+Exporter\+::\+Export\+Key(), Gpg\+Frontend\+::\+Gpg\+Key\+Import\+Exporter\+::\+Export\+Key\+Open\+SSH(), Gpg\+Frontend\+::\+Gpg\+Key\+Import\+Exporter\+::\+Export\+Secret\+Key(), Gpg\+Frontend\+::\+Gpg\+Key\+Import\+Exporter\+::\+Export\+Secret\+Key\+Shortest(), Gpg\+Frontend\+::\+Gpg\+Key\+Opera\+::\+Generate\+Subkey(), Gpg\+Frontend\+::\+UI\+::\+Key\+UIDSign\+Dialog\+::\+Key\+UIDSign\+Dialog(), operator$<$=(), operator==(), Gpg\+Frontend\+::\+Gpg\+Key\+Opera\+::\+Set\+Expire(), Gpg\+Frontend\+::\+Gpg\+Key\+Manager\+::\+Set\+Owner\+Trust\+Level(), and Gpg\+Frontend\+::\+UI\+::\+Key\+Pair\+Opera\+Tab\+::slot\+\_\+export\+\_\+private\+\_\+key().
\mbox{\Hypertarget{classGpgFrontend_1_1GpgKey_a3532e20298b642f5d312712fa8a791df}\label{classGpgFrontend_1_1GpgKey_a3532e20298b642f5d312712fa8a791df}}
\index{GpgFrontend::GpgKey@{GpgFrontend::GpgKey}!GetLastUpdateTime@{GetLastUpdateTime}}
@@ -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.tex b/docs/latex/classGpgFrontend_1_1GpgKeyGetter.tex
index 644c5b79..696f78d8 100644
--- a/docs/latex/classGpgFrontend_1_1GpgKeyGetter.tex
+++ b/docs/latex/classGpgFrontend_1_1GpgKeyGetter.tex
@@ -148,7 +148,7 @@ Get the Key object.
\end{DoxyReturn}
-Referenced by Gpg\+Frontend\+::\+UI\+::\+Verify\+Key\+Detail\+Box\+::create\+\_\+key\+\_\+info\+\_\+grid(), Gpg\+Frontend\+::\+UI\+::\+Key\+Import\+Detail\+Dialog\+::create\+\_\+keys\+\_\+table(), Gpg\+Frontend\+::\+UI\+::\+Key\+Mgmt\+::delete\+\_\+keys\+\_\+with\+\_\+warning(), Gpg\+Frontend\+::\+Gpg\+Key\+Opera\+::\+Delete\+Keys(), Gpg\+Frontend\+::\+Gpg\+Decrypt\+Result\+Analyse\+::print\+\_\+recipient(), Gpg\+Frontend\+::\+Gpg\+Verify\+Result\+Analyse\+::print\+\_\+signer(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::slot\+\_\+copy\+\_\+mail\+\_\+address\+\_\+to\+\_\+clipboard(), Gpg\+Frontend\+::\+UI\+::\+Key\+List\+::slot\+\_\+double\+\_\+clicked(), and Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::slot\+\_\+show\+\_\+key\+\_\+details().
+Referenced by Gpg\+Frontend\+::\+UI\+::\+Verify\+Key\+Detail\+Box\+::create\+\_\+key\+\_\+info\+\_\+grid(), Gpg\+Frontend\+::\+UI\+::\+Key\+Import\+Detail\+Dialog\+::create\+\_\+keys\+\_\+table(), Gpg\+Frontend\+::\+UI\+::\+Key\+Mgmt\+::delete\+\_\+keys\+\_\+with\+\_\+warning(), Gpg\+Frontend\+::\+Gpg\+Key\+Opera\+::\+Delete\+Keys(), Gpg\+Frontend\+::\+Gpg\+Decrypt\+Result\+Analyse\+::print\+\_\+recipient(), Gpg\+Frontend\+::\+Gpg\+Verify\+Result\+Analyse\+::print\+\_\+signer(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::slot\+\_\+copy\+\_\+default\+\_\+uid\+\_\+to\+\_\+clipboard(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::slot\+\_\+copy\+\_\+key\+\_\+id\+\_\+to\+\_\+clipboard(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::slot\+\_\+copy\+\_\+mail\+\_\+address\+\_\+to\+\_\+clipboard(), Gpg\+Frontend\+::\+UI\+::\+Key\+List\+::slot\+\_\+double\+\_\+clicked(), and Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::slot\+\_\+show\+\_\+key\+\_\+details().
\mbox{\Hypertarget{classGpgFrontend_1_1GpgKeyGetter_aa5979c21af58b874b33c203752dcc805}\label{classGpgFrontend_1_1GpgKeyGetter_aa5979c21af58b874b33c203752dcc805}}
\index{GpgFrontend::GpgKeyGetter@{GpgFrontend::GpgKeyGetter}!GetKeys@{GetKeys}}
diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyGetter__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1GpgKeyGetter__coll__graph.md5
index a184f811..0493b49a 100644
--- a/docs/latex/classGpgFrontend_1_1GpgKeyGetter__coll__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1GpgKeyGetter__coll__graph.md5
@@ -1 +1 @@
-e1916cf4f5a6e9d250c99b5cb9d77c8d
\ 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 826f0290..c1ce2424 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 07f64b29..dd6e3ccb 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.tex b/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter.tex
index f1bb8c9d..12057dbd 100644
--- a/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter.tex
+++ b/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter.tex
@@ -218,10 +218,6 @@ if success
References Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Gpg\+Key\+Getter $>$\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Gpg\+Key\+Getter\+::\+Get\+Keys(), and Gpg\+Frontend\+::\+Gpg\+Data\+::\+Read2\+Buffer().
-
-
-Referenced by Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::slot\+\_\+append\+\_\+selected\+\_\+keys().
-
\mbox{\Hypertarget{classGpgFrontend_1_1GpgKeyImportExporter_a6a5e8d642ac5a3e98799af6495ef590b}\label{classGpgFrontend_1_1GpgKeyImportExporter_a6a5e8d642ac5a3e98799af6495ef590b}}
\index{GpgFrontend::GpgKeyImportExporter@{GpgFrontend::GpgKeyImportExporter}!ExportSecretKey@{ExportSecretKey}}
\index{ExportSecretKey@{ExportSecretKey}!GpgFrontend::GpgKeyImportExporter@{GpgFrontend::GpgKeyImportExporter}}
diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter__coll__graph.md5
index ea16f0de..f7c82e8c 100644
--- a/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter__coll__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter__coll__graph.md5
@@ -1 +1 @@
-b95862be67ca8507dbffecb3f402b479
\ No newline at end of file
+38dfad95b811f27f7d91320db2b7b1a1
\ No newline at end of file
diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter__coll__graph.pdf
index 29597b38..0686e678 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 a576bf40..5daf49ad 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.tex b/docs/latex/classGpgFrontend_1_1GpgKeyManager.tex
index 50abf7fd..4650457e 100644
--- a/docs/latex/classGpgFrontend_1_1GpgKeyManager.tex
+++ b/docs/latex/classGpgFrontend_1_1GpgKeyManager.tex
@@ -20,6 +20,11 @@ Collaboration diagram for Gpg\+Frontend\+::Gpg\+Key\+Manager\+:
\includegraphics[width=350pt]{classGpgFrontend_1_1GpgKeyManager__coll__graph}
\end{center}
\end{figure}
+\doxysubsection*{Classes}
+\begin{DoxyCompactItemize}
+\item
+struct \mbox{\hyperlink{structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct}{Automaton\+Handel\+Struct}}
+\end{DoxyCompactItemize}
\doxysubsection*{Public Member Functions}
\begin{DoxyCompactItemize}
\item
@@ -30,7 +35,30 @@ bool \mbox{\hyperlink{classGpgFrontend_1_1GpgKeyManager_a12138780c53add7589f78f0
bool \mbox{\hyperlink{classGpgFrontend_1_1GpgKeyManager_aa2c0e804db1c4aaf3b861ee5ab54ebd8}{Rev\+Sign}} (const \mbox{\hyperlink{classGpgFrontend_1_1GpgKey}{Gpg\+Frontend\+::\+Gpg\+Key}} \&key, const Gpg\+Frontend\+::\+Sign\+Id\+Args\+List\+Ptr \&signature\+\_\+id)
\item
bool \mbox{\hyperlink{classGpgFrontend_1_1GpgKeyManager_a1625abfbff168c476e76fa9425a6c37d}{Set\+Expire}} (const \mbox{\hyperlink{classGpgFrontend_1_1GpgKey}{Gpg\+Key}} \&key, std\+::unique\+\_\+ptr$<$ \mbox{\hyperlink{classGpgFrontend_1_1GpgSubKey}{Gpg\+Sub\+Key}} $>$ \&subkey, std\+::unique\+\_\+ptr$<$ boost\+::posix\+\_\+time\+::ptime $>$ \&expires)
-\begin{DoxyCompactList}\small\item\em Set the Expire object. \end{DoxyCompactList}\end{DoxyCompactItemize}
+\begin{DoxyCompactList}\small\item\em Set the Expire object. \end{DoxyCompactList}\item
+bool \mbox{\hyperlink{classGpgFrontend_1_1GpgKeyManager_a0d4006daeccd574ddcc9e6c621739c48}{Set\+Owner\+Trust\+Level}} (const \mbox{\hyperlink{classGpgFrontend_1_1GpgKey}{Gpg\+Key}} \&key, int trust\+\_\+level)
+\end{DoxyCompactItemize}
+\doxysubsection*{Private Types}
+\begin{DoxyCompactItemize}
+\item
+\mbox{\Hypertarget{classGpgFrontend_1_1GpgKeyManager_a4fea67ab4a5c4e768aa1b55f23f3c8b7}\label{classGpgFrontend_1_1GpgKeyManager_a4fea67ab4a5c4e768aa1b55f23f3c8b7}}
+using {\bfseries Command} = std\+::string
+\item
+\mbox{\Hypertarget{classGpgFrontend_1_1GpgKeyManager_a8372d745ded9676dbab290780f7389ae}\label{classGpgFrontend_1_1GpgKeyManager_a8372d745ded9676dbab290780f7389ae}}
+using {\bfseries Automaton\+State} = enum \{ AS\+\_\+\+START, AS\+\_\+\+COMMAND, AS\+\_\+\+VALUE, AS\+\_\+\+REALLY\+\_\+\+ULTIMATE, AS\+\_\+\+SAVE, AS\+\_\+\+ERROR, AS\+\_\+\+QUIT, \}
+\item
+\mbox{\Hypertarget{classGpgFrontend_1_1GpgKeyManager_abbd0d9893967a342b0f1062a856d0647}\label{classGpgFrontend_1_1GpgKeyManager_abbd0d9893967a342b0f1062a856d0647}}
+using {\bfseries Automaton\+Action\+Handler} = std\+::function$<$ Command(\mbox{\hyperlink{structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct}{Automaton\+Handel\+Struct}} \&, Automaton\+State)$>$
+\item
+\mbox{\Hypertarget{classGpgFrontend_1_1GpgKeyManager_a60a8636d3463f0c1a17e6f384fed0985}\label{classGpgFrontend_1_1GpgKeyManager_a60a8636d3463f0c1a17e6f384fed0985}}
+using {\bfseries Automaton\+Next\+State\+Handler} = std\+::function$<$ Automaton\+State(Automaton\+State, std\+::string, std\+::string)$>$
+\end{DoxyCompactItemize}
+\doxysubsection*{Static Private Member Functions}
+\begin{DoxyCompactItemize}
+\item
+\mbox{\Hypertarget{classGpgFrontend_1_1GpgKeyManager_af0709924bd70fee6a9ea4efbf85b689d}\label{classGpgFrontend_1_1GpgKeyManager_af0709924bd70fee6a9ea4efbf85b689d}}
+static gpgme\+\_\+error\+\_\+t {\bfseries interactor\+\_\+cb\+\_\+fnc} (void $\ast$handle, const char $\ast$status, const char $\ast$args, int fd)
+\end{DoxyCompactItemize}
\doxysubsection*{Private Attributes}
\begin{DoxyCompactItemize}
\item
@@ -120,6 +148,19 @@ false
References Gpg\+Frontend\+::check\+\_\+gpg\+\_\+error(), and Gpg\+Frontend\+::check\+\_\+gpg\+\_\+error\+\_\+2\+\_\+err\+\_\+code().
+\mbox{\Hypertarget{classGpgFrontend_1_1GpgKeyManager_a0d4006daeccd574ddcc9e6c621739c48}\label{classGpgFrontend_1_1GpgKeyManager_a0d4006daeccd574ddcc9e6c621739c48}}
+\index{GpgFrontend::GpgKeyManager@{GpgFrontend::GpgKeyManager}!SetOwnerTrustLevel@{SetOwnerTrustLevel}}
+\index{SetOwnerTrustLevel@{SetOwnerTrustLevel}!GpgFrontend::GpgKeyManager@{GpgFrontend::GpgKeyManager}}
+\doxysubsubsection{\texorpdfstring{SetOwnerTrustLevel()}{SetOwnerTrustLevel()}}
+{\footnotesize\ttfamily bool Gpg\+Frontend\+::\+Gpg\+Key\+Manager\+::\+Set\+Owner\+Trust\+Level (\begin{DoxyParamCaption}\item[{const \mbox{\hyperlink{classGpgFrontend_1_1GpgKey}{Gpg\+Key}} \&}]{key, }\item[{int}]{trust\+\_\+level }\end{DoxyParamCaption})}
+
+\begin{DoxyReturn}{Returns}
+
+\end{DoxyReturn}
+
+
+References Gpg\+Frontend\+::check\+\_\+gpg\+\_\+error\+\_\+2\+\_\+err\+\_\+code(), Gpg\+Frontend\+::\+Gpg\+Key\+::\+Get\+Fingerprint(), and Gpg\+Frontend\+::\+Gpg\+Key\+::\+Get\+Id().
+
\mbox{\Hypertarget{classGpgFrontend_1_1GpgKeyManager_a12138780c53add7589f78f056019e5e0}\label{classGpgFrontend_1_1GpgKeyManager_a12138780c53add7589f78f056019e5e0}}
\index{GpgFrontend::GpgKeyManager@{GpgFrontend::GpgKeyManager}!SignKey@{SignKey}}
\index{SignKey@{SignKey}!GpgFrontend::GpgKeyManager@{GpgFrontend::GpgKeyManager}}
diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyManager__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1GpgKeyManager__coll__graph.md5
index 9135eed1..00c2e5ab 100644
--- a/docs/latex/classGpgFrontend_1_1GpgKeyManager__coll__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1GpgKeyManager__coll__graph.md5
@@ -1 +1 @@
-187e6193910954fee7010345afa279cd
\ No newline at end of file
+404bca86148a4a11e635950509d5e0eb
\ No newline at end of file
diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyManager__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgKeyManager__coll__graph.pdf
index 341abddc..e95035e1 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.md5 b/docs/latex/classGpgFrontend_1_1GpgKeyManager__inherit__graph.md5
index 37426840..5c8ecf1a 100644
--- a/docs/latex/classGpgFrontend_1_1GpgKeyManager__inherit__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1GpgKeyManager__inherit__graph.md5
@@ -1 +1 @@
-f82a543e6392273d5d4ce54dd0e62d60
\ No newline at end of file
+0d1f350f307a21182c42ee5d4020412d
\ No newline at end of file
diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyManager__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgKeyManager__inherit__graph.pdf
index ed07d969..c3ca9a0b 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.tex b/docs/latex/classGpgFrontend_1_1GpgKeyOpera.tex
index 592942b5..89627c19 100644
--- a/docs/latex/classGpgFrontend_1_1GpgKeyOpera.tex
+++ b/docs/latex/classGpgFrontend_1_1GpgKeyOpera.tex
@@ -31,6 +31,8 @@ void \mbox{\hyperlink{classGpgFrontend_1_1GpgKeyOpera_a151c47b997951e9162f8b036c
\item
Gpg\+Error \mbox{\hyperlink{classGpgFrontend_1_1GpgKeyOpera_a12e6b05b23781861065d7e3243c9349e}{Set\+Expire}} (const \mbox{\hyperlink{classGpgFrontend_1_1GpgKey}{Gpg\+Key}} \&key, const Subkey\+Id \&subkey\+\_\+fpr, std\+::unique\+\_\+ptr$<$ boost\+::posix\+\_\+time\+::ptime $>$ \&expires)
\begin{DoxyCompactList}\small\item\em Set the Expire object. \end{DoxyCompactList}\item
+void \mbox{\hyperlink{classGpgFrontend_1_1GpgKeyOpera_a91a9a9f24f6b620ea7b906c529e3d9a4}{Generate\+Revoke\+Cert}} (const \mbox{\hyperlink{classGpgFrontend_1_1GpgKey}{Gpg\+Key}} \&key, const std\+::string \&output\+\_\+file\+\_\+name)
+\item
Gpg\+Frontend\+::\+Gpg\+Error \mbox{\hyperlink{classGpgFrontend_1_1GpgKeyOpera_ab7e16d1f4cba23ea5b5b9f6009ce5ee2}{Modify\+Password}} (const \mbox{\hyperlink{classGpgFrontend_1_1GpgKey}{Gpg\+Key}} \&key)
\item
Gpg\+Frontend\+::\+Gpg\+Error \mbox{\hyperlink{classGpgFrontend_1_1GpgKeyOpera_a76a7f59701add8a59d8835919dad2000}{Modify\+TOFUPolicy}} (const \mbox{\hyperlink{classGpgFrontend_1_1GpgKey}{Gpg\+Key}} \&key, gpgme\+\_\+tofu\+\_\+policy\+\_\+t tofu\+\_\+policy)
@@ -39,11 +41,6 @@ Gpg\+Frontend\+::\+Gpg\+Error \mbox{\hyperlink{classGpgFrontend_1_1GpgKeyOpera_a
\item
Gpg\+Frontend\+::\+Gpg\+Error \mbox{\hyperlink{classGpgFrontend_1_1GpgKeyOpera_a882d99e8407cc22fb8b6e61c531fbe85}{Generate\+Subkey}} (const \mbox{\hyperlink{classGpgFrontend_1_1GpgKey}{Gpg\+Key}} \&key, const std\+::unique\+\_\+ptr$<$ \mbox{\hyperlink{classGpgFrontend_1_1GenKeyInfo}{Gen\+Key\+Info}} $>$ \¶ms)
\end{DoxyCompactItemize}
-\doxysubsection*{Static Public Member Functions}
-\begin{DoxyCompactItemize}
-\item
-static void \mbox{\hyperlink{classGpgFrontend_1_1GpgKeyOpera_a91a9a9f24f6b620ea7b906c529e3d9a4}{Generate\+Revoke\+Cert}} (const \mbox{\hyperlink{classGpgFrontend_1_1GpgKey}{Gpg\+Key}} \&key, const std\+::string \&output\+\_\+file\+\_\+name)
-\end{DoxyCompactItemize}
\doxysubsection*{Private Attributes}
\begin{DoxyCompactItemize}
\item
@@ -151,7 +148,7 @@ Referenced by Gpg\+Frontend\+::\+UI\+::\+Key\+Gen\+Dialog\+::slot\+\_\+key\+\_\+
\index{GpgFrontend::GpgKeyOpera@{GpgFrontend::GpgKeyOpera}!GenerateRevokeCert@{GenerateRevokeCert}}
\index{GenerateRevokeCert@{GenerateRevokeCert}!GpgFrontend::GpgKeyOpera@{GpgFrontend::GpgKeyOpera}}
\doxysubsubsection{\texorpdfstring{GenerateRevokeCert()}{GenerateRevokeCert()}}
-{\footnotesize\ttfamily void Gpg\+Frontend\+::\+Gpg\+Key\+Opera\+::\+Generate\+Revoke\+Cert (\begin{DoxyParamCaption}\item[{const \mbox{\hyperlink{classGpgFrontend_1_1GpgKey}{Gpg\+Key}} \&}]{key, }\item[{const std\+::string \&}]{output\+\_\+file\+\_\+name }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}}
+{\footnotesize\ttfamily void Gpg\+Frontend\+::\+Gpg\+Key\+Opera\+::\+Generate\+Revoke\+Cert (\begin{DoxyParamCaption}\item[{const \mbox{\hyperlink{classGpgFrontend_1_1GpgKey}{Gpg\+Key}} \&}]{key, }\item[{const std\+::string \&}]{output\+\_\+file\+\_\+path }\end{DoxyParamCaption})}
\begin{DoxyParams}{Parameters}
@@ -167,6 +164,10 @@ Referenced by Gpg\+Frontend\+::\+UI\+::\+Key\+Gen\+Dialog\+::slot\+\_\+key\+\_\+
\begin{DoxyReturn}{Returns}
the process doing this job
\end{DoxyReturn}
+
+
+References Gpg\+Frontend\+::\+Gpg\+Command\+Executor\+::\+Execute(), and Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Gpg\+Command\+Executor $>$\+::\+Get\+Instance().
+
\mbox{\Hypertarget{classGpgFrontend_1_1GpgKeyOpera_a882d99e8407cc22fb8b6e61c531fbe85}\label{classGpgFrontend_1_1GpgKeyOpera_a882d99e8407cc22fb8b6e61c531fbe85}}
\index{GpgFrontend::GpgKeyOpera@{GpgFrontend::GpgKeyOpera}!GenerateSubkey@{GenerateSubkey}}
\index{GenerateSubkey@{GenerateSubkey}!GpgFrontend::GpgKeyOpera@{GpgFrontend::GpgKeyOpera}}
diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyOpera__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1GpgKeyOpera__coll__graph.md5
index 6703edfe..52b88392 100644
--- a/docs/latex/classGpgFrontend_1_1GpgKeyOpera__coll__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1GpgKeyOpera__coll__graph.md5
@@ -1 +1 @@
-b490d088243e2724f7de6f6c2425f7a1
\ No newline at end of file
+bcbf120cc6651331f3f6d1aebc9e71bc
\ No newline at end of file
diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyOpera__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgKeyOpera__coll__graph.pdf
index 94ea4ffb..327d4ce9 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.md5 b/docs/latex/classGpgFrontend_1_1GpgKeyOpera__inherit__graph.md5
index 395e9161..5335015f 100644
--- a/docs/latex/classGpgFrontend_1_1GpgKeyOpera__inherit__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1GpgKeyOpera__inherit__graph.md5
@@ -1 +1 @@
-c7bf301af4db1f11e4b12ab8ab3d2ff0
\ No newline at end of file
+28732c98a5f2c4de0d37a357b4cdee0b
\ No newline at end of file
diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyOpera__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgKeyOpera__inherit__graph.pdf
index 0db252b7..f5b3840a 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 cbe63df6..a1d5936a 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 606bebce..a3ae830f 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 5b573ec7..926a964e 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 3d320b57..6bd09c8a 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 84df2c8b..a1e5ec68 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 6eb4ba41..e2da32b6 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 dfd6cf9e..f9def4b5 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 84cdaf1c..96863317 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 0c9b85d7..91da69eb 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.md5 b/docs/latex/classGpgFrontend_1_1GpgUIDOperator__coll__graph.md5
index 410d6080..be8bca21 100644
--- a/docs/latex/classGpgFrontend_1_1GpgUIDOperator__coll__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1GpgUIDOperator__coll__graph.md5
@@ -1 +1 @@
-2617e55ebf6e630c0ad859dee2282e51
\ No newline at end of file
+0690eb6c20b3b00f0f576a7b54f3f12b
\ No newline at end of file
diff --git a/docs/latex/classGpgFrontend_1_1GpgUIDOperator__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgUIDOperator__coll__graph.pdf
index 4c76fa1f..70fa8020 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 e38dbfab..d149b36f 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 8603ec7d..c39271ff 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 de8d9107..ea92e8e9 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 e4420e33..72a61f86 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 07b83fc8..bba531be 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 e7f854a7..01c01d57 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 e7f854a7..01c01d57 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 17100e01..238cee4d 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 34d5c8f6..a1a9e6f0 100644
--- a/docs/latex/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.md5
@@ -1 +1 @@
-eb9381ce44ec46ef0beb968441e61af5
\ No newline at end of file
+1e1162effc8e4bd317eff1560e747739
\ 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 148ff682..94169bf5 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 c2c271ea..66a295be 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 d14ab726..e9aea179 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..2275b7e5
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..31c81303
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 aad65099..fa74614e 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 0964716d..78987e65 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 f1682d62..3d7362d9 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 0d3059e7..fd71795d 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 2b19c8fa..88406e1c 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 022c53fb..4c09d6f6 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 242729b7..cf852ae0 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 e8e5769f..8285fa0b 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.md5 b/docs/latex/classGpgFrontend_1_1Thread_1_1Task__inherit__graph.md5
index 960ba59b..5f1d1152 100644
--- a/docs/latex/classGpgFrontend_1_1Thread_1_1Task__inherit__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1Thread_1_1Task__inherit__graph.md5
@@ -1 +1 @@
-f1972863062ac7bba62407c9875385dc
\ No newline at end of file
+ffdc64d705ff64a7bf75009d2808dc2f
\ No newline at end of file
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 ba8ee635..868dd5b7 100644
Binary files a/docs/latex/classGpgFrontend_1_1Thread_1_1Task__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1Thread_1_1Task__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog.tex b/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog.tex
index 2dba4927..36172fcd 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog.tex
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog.tex
@@ -16,7 +16,7 @@ Inheritance diagram for Gpg\+Frontend\+::UI\+::About\+Dialog\+:
\begin{figure}[H]
\begin{center}
\leavevmode
-\includegraphics[width=243pt]{classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph}
+\includegraphics[width=262pt]{classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph}
\end{center}
\end{figure}
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.md5
index ee471c64..35f6957b 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.md5
@@ -1 +1 @@
-adbd3cace7001160d1acc2d8b87f689d
\ No newline at end of file
+99fce615a16e258ef00c99bf726caad9
\ No newline at end of file
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.pdf
index 1c998b41..211a45cf 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.md5
index d28673c5..5da2a9e2 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.md5
@@ -1 +1 @@
-165182bc45da48051a53ab4b6df831db
\ No newline at end of file
+5e6fdfa1847264a0e6e005bd38001abe
\ No newline at end of file
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.pdf
index 17ef0438..66834877 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 df6bc320..f1650ecd 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 df6bc320..f1650ecd 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 7c6fb067..e06e0d2d 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 5beb5743..1c0567a6 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 17ff0ff6..c0093e0b 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 17ff0ff6..c0093e0b 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 5a012b3a..f89ddcde 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils.tex
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils.tex
@@ -42,6 +42,9 @@ static void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1CommonUtils_a35a47fc31b81
void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1CommonUtils_afc845c1c37487c99f78d8e66f6874f6d}{Slot\+Execute\+Gpg\+Command}} (const QString\+List \&arguments, const std\+::function$<$ void(QProcess $\ast$)$>$ \&interact\+\_\+func)
\item
void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1CommonUtils_a95cd625a2e0e74ee4d564843c6d16791}{Slot\+Execute\+Command}} (const std\+::string \&cmd, const QString\+List \&arguments, const std\+::function$<$ void(QProcess $\ast$)$>$ \&interact\+\_\+func)
+\item
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1CommonUtils_a86d3827a2e5df17747c58d00b2f5fe6e}\label{classGpgFrontend_1_1UI_1_1CommonUtils_a86d3827a2e5df17747c58d00b2f5fe6e}}
+void {\bfseries Slot\+Restart\+Application} (int)
\end{DoxyCompactItemize}
\doxysubsection*{Signals}
\begin{DoxyCompactItemize}
@@ -60,13 +63,28 @@ void {\bfseries Signal\+Need\+User\+Input\+Passphrase} ()
\item
\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1CommonUtils_a80350e7fe1cd696004c9aa2a43eab184}\label{classGpgFrontend_1_1UI_1_1CommonUtils_a80350e7fe1cd696004c9aa2a43eab184}}
void {\bfseries Signal\+User\+Input\+Passphrase\+Done} (QString passphrase)
+\item
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1CommonUtils_aa69efbcd684e9a99cc5c47c23de8d38c}\label{classGpgFrontend_1_1UI_1_1CommonUtils_aa69efbcd684e9a99cc5c47c23de8d38c}}
+void {\bfseries Signal\+Restart\+Application} (int)
\end{DoxyCompactItemize}
\doxysubsection*{Public Member Functions}
\begin{DoxyCompactItemize}
\item
\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1CommonUtils_a78f5c2696152e9326e845c76c94be965}\label{classGpgFrontend_1_1UI_1_1CommonUtils_a78f5c2696152e9326e845c76c94be965}}
\mbox{\hyperlink{classGpgFrontend_1_1UI_1_1CommonUtils_a78f5c2696152e9326e845c76c94be965}{Common\+Utils}} ()
-\begin{DoxyCompactList}\small\item\em Construct a new Common Utils object. \end{DoxyCompactList}\end{DoxyCompactItemize}
+\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}
\item
@@ -81,6 +99,12 @@ void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1CommonUtils_ab4ac26378d6a0775772
\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1CommonUtils_aef14c7eaaf8b73bd1b8f845a5484748e}\label{classGpgFrontend_1_1UI_1_1CommonUtils_aef14c7eaaf8b73bd1b8f845a5484748e}}
void {\bfseries slot\+\_\+popup\+\_\+passphrase\+\_\+input\+\_\+dialog} ()
\end{DoxyCompactItemize}
+\doxysubsection*{Private Attributes}
+\begin{DoxyCompactItemize}
+\item
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1CommonUtils_a99b5dad4b17d1e71120e2c7708ef47a0}\label{classGpgFrontend_1_1UI_1_1CommonUtils_a99b5dad4b17d1e71120e2c7708ef47a0}}
+bool {\bfseries application\+\_\+need\+\_\+to\+\_\+restart\+\_\+at\+\_\+once\+\_\+} = false
+\end{DoxyCompactItemize}
\doxysubsection*{Static Private Attributes}
\begin{DoxyCompactItemize}
\item
@@ -105,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(), 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 246865cc..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 @@
-f5b2f33e9544b7d3898ba0ab75b5294f
\ 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 c9bfa2bf..ba6c485f 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 7e40cda8..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 @@
-5b6e35f639108e14d82ad457cd97e62f
\ 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 176aa4c0..14c8fc79 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 266815f3..b5ba587e 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 266815f3..b5ba587e 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ConclusionPage__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ConclusionPage__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.tex b/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.tex
index 222a61c8..ce448790 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.tex
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.tex
@@ -7,7 +7,7 @@ Inheritance diagram for Gpg\+Frontend\+::UI\+::Export\+Key\+Package\+Dialog\+:
\begin{figure}[H]
\begin{center}
\leavevmode
-\includegraphics[width=243pt]{classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph}
+\includegraphics[width=262pt]{classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph}
\end{center}
\end{figure}
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.md5
index 8e092924..22651539 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.md5
@@ -1 +1 @@
-46635db72e05c601f76ff94d7bb0e200
\ No newline at end of file
+443790ed8409977dc00b82a33acf22b0
\ No newline at end of file
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.pdf
index c84cfba0..340b393e 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.md5
index 3487a1e8..b1655ad8 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.md5
@@ -1 +1 @@
-b82953a9fac20e2e237f1fa352aebe9c
\ No newline at end of file
+77c4911ccc6591b216ea926269d6f906
\ No newline at end of file
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.pdf
index b66ef7c7..6201e3b5 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.tex b/docs/latex/classGpgFrontend_1_1UI_1_1FilePage.tex
index 8124aa1b..05495237 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1FilePage.tex
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1FilePage.tex
@@ -7,7 +7,7 @@ Inheritance diagram for Gpg\+Frontend\+::UI\+::File\+Page\+:
\begin{figure}[H]
\begin{center}
\leavevmode
-\includegraphics[width=230pt]{classGpgFrontend_1_1UI_1_1FilePage__inherit__graph}
+\includegraphics[width=237pt]{classGpgFrontend_1_1UI_1_1FilePage__inherit__graph}
\end{center}
\end{figure}
@@ -60,6 +60,9 @@ void {\bfseries slot\+\_\+up\+\_\+level} ()
\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1FilePage_ab42d1dea33d8d33e21418bf805fd66a0}\label{classGpgFrontend_1_1UI_1_1FilePage_ab42d1dea33d8d33e21418bf805fd66a0}}
void {\bfseries slot\+\_\+open\+\_\+item} ()
\item
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1FilePage_ab2e5bf3d09a3a29bf77693d55975ae0c}\label{classGpgFrontend_1_1UI_1_1FilePage_ab2e5bf3d09a3a29bf77693d55975ae0c}}
+void {\bfseries slot\+\_\+open\+\_\+item\+\_\+by\+\_\+system\+\_\+application} ()
+\item
\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1FilePage_a8beae6f942215ba4f191736c7176d8aa}\label{classGpgFrontend_1_1UI_1_1FilePage_a8beae6f942215ba4f191736c7176d8aa}}
void {\bfseries slot\+\_\+rename\+\_\+item} ()
\item
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1FilePage__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1FilePage__coll__graph.md5
index 8e7534a7..bda80e60 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1FilePage__coll__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1FilePage__coll__graph.md5
@@ -1 +1 @@
-e9ee47f24f21ee2932cbecf84d4c3e9c
\ No newline at end of file
+a8585fb48ac1835232927a74b8fe4e4a
\ No newline at end of file
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 5939fd54..a0ba0aa2 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.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1FilePage__inherit__graph.md5
index 90a3479d..57e5b627 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1FilePage__inherit__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1FilePage__inherit__graph.md5
@@ -1 +1 @@
-618c5baf4dd0d825f770a1b6b55a21d4
\ No newline at end of file
+2163f721508e2de424d0617af086003c
\ No newline at end of file
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 9f28eb57..173544b3 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 d7ca2fb0..3fb097f8 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 9606d567..c265826f 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 5a3bc049..ccf981f3 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 e76b5313..3501ade6 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1FindWidget__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1FindWidget__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog.tex b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog.tex
index eb3d643a..a40c4883 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog.tex
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog.tex
@@ -17,7 +17,7 @@ Collaboration diagram for Gpg\+Frontend\+::UI\+::General\+Dialog\+:
\begin{figure}[H]
\begin{center}
\leavevmode
-\includegraphics[width=277pt]{classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph}
+\includegraphics[width=286pt]{classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph}
\end{center}
\end{figure}
\doxysubsection*{Public Member Functions}
@@ -28,11 +28,17 @@ Collaboration diagram for Gpg\+Frontend\+::UI\+::General\+Dialog\+:
\doxysubsection*{Protected Member Functions}
\begin{DoxyCompactItemize}
\item
-\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralDialog_a705f4e5e14d87b9c52c401004e1bbcf4}\label{classGpgFrontend_1_1UI_1_1GeneralDialog_a705f4e5e14d87b9c52c401004e1bbcf4}}
-void {\bfseries move\+Pos2\+Center\+Of\+Screen} ()
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralDialog_abad7cff23d2426820e320ecea47b479c}\label{classGpgFrontend_1_1UI_1_1GeneralDialog_abad7cff23d2426820e320ecea47b479c}}
+void {\bfseries set\+Pos\+Center\+Of\+Screen} ()
\item
-\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralDialog_a8886f6ece50f67c63d0d40b7f8690eae}\label{classGpgFrontend_1_1UI_1_1GeneralDialog_a8886f6ece50f67c63d0d40b7f8690eae}}
-void {\bfseries move\+Pos2\+Center\+Of\+Parent} ()
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralDialog_ad9d5be542aa422450a96dff00232ebe5}\label{classGpgFrontend_1_1UI_1_1GeneralDialog_ad9d5be542aa422450a96dff00232ebe5}}
+void {\bfseries move\+Position2\+Center\+Of\+Parent} ()
+\item
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralDialog_af074bf574bb3fb2be5de5f7e3b5b539e}\label{classGpgFrontend_1_1UI_1_1GeneralDialog_af074bf574bb3fb2be5de5f7e3b5b539e}}
+bool {\bfseries is\+Rect\+Restored} ()
+\item
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralDialog_a570c723ba0cb5522f2b0c16ac28d0532}\label{classGpgFrontend_1_1UI_1_1GeneralDialog_a570c723ba0cb5522f2b0c16ac28d0532}}
+void {\bfseries show\+Event} (QShow\+Event $\ast$event) override
\end{DoxyCompactItemize}
\doxysubsection*{Private Slots}
\begin{DoxyCompactItemize}
@@ -43,23 +49,29 @@ void {\bfseries slot\+\_\+restore\+\_\+settings} () noexcept
\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralDialog_a940a6ea31dff4db83f9f08d38e843a2b}\label{classGpgFrontend_1_1UI_1_1GeneralDialog_a940a6ea31dff4db83f9f08d38e843a2b}}
void {\bfseries slot\+\_\+save\+\_\+settings} () noexcept
\end{DoxyCompactItemize}
+\doxysubsection*{Private Member Functions}
+\begin{DoxyCompactItemize}
+\item
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralDialog_ad1f20151e9556a3c481fda89cf88e585}\label{classGpgFrontend_1_1UI_1_1GeneralDialog_ad1f20151e9556a3c481fda89cf88e585}}
+void {\bfseries update\+\_\+rect\+\_\+cache} ()
+\end{DoxyCompactItemize}
\doxysubsection*{Private Attributes}
\begin{DoxyCompactItemize}
\item
\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralDialog_ae91392293866dc302132a9fc19209d8c}\label{classGpgFrontend_1_1UI_1_1GeneralDialog_ae91392293866dc302132a9fc19209d8c}}
std\+::string {\bfseries name\+\_\+}
\item
-\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralDialog_ad9b847aa128dfeb4ecf0064ef948e6ea}\label{classGpgFrontend_1_1UI_1_1GeneralDialog_ad9b847aa128dfeb4ecf0064ef948e6ea}}
-QPoint {\bfseries pos\+\_\+}
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralDialog_a22f39850fae58b9f6c59c372b9fbb582}\label{classGpgFrontend_1_1UI_1_1GeneralDialog_a22f39850fae58b9f6c59c372b9fbb582}}
+QRect {\bfseries rect\+\_\+}
\item
-\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralDialog_aeda520454fd38920a027c1a4195a2e6f}\label{classGpgFrontend_1_1UI_1_1GeneralDialog_aeda520454fd38920a027c1a4195a2e6f}}
-QSize {\bfseries size\+\_\+}
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralDialog_ab92573b0e63d9c792f2e1697d858cea7}\label{classGpgFrontend_1_1UI_1_1GeneralDialog_ab92573b0e63d9c792f2e1697d858cea7}}
+QRect {\bfseries parent\+\_\+rect\+\_\+}
\item
-\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralDialog_a871f204f01f10815e3475c103f1157af}\label{classGpgFrontend_1_1UI_1_1GeneralDialog_a871f204f01f10815e3475c103f1157af}}
-QPoint {\bfseries parent\+\_\+pos\+\_\+}
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralDialog_aa3af9313c4284df01685ce512d18d323}\label{classGpgFrontend_1_1UI_1_1GeneralDialog_aa3af9313c4284df01685ce512d18d323}}
+QRect {\bfseries screen\+\_\+rect\+\_\+}
\item
-\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralDialog_a234a0a4d8c0b1b49a54f65b1aa3f9490}\label{classGpgFrontend_1_1UI_1_1GeneralDialog_a234a0a4d8c0b1b49a54f65b1aa3f9490}}
-QSize {\bfseries parent\+\_\+size\+\_\+}
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralDialog_a4e4eb414ac80ba7dd1e853ed62e1ee68}\label{classGpgFrontend_1_1UI_1_1GeneralDialog_a4e4eb414ac80ba7dd1e853ed62e1ee68}}
+bool {\bfseries rect\+\_\+restored\+\_\+} = false
\end{DoxyCompactItemize}
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.md5
index 4217ba5a..f2b46699 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.md5
@@ -1 +1 @@
-822152ac394c0f84e7f695babe611d57
\ No newline at end of file
+99e8d19a576835fcd5d255e04918a76f
\ No newline at end of file
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.pdf
index 4f238411..5bda2a42 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.md5
index e76c22be..9722f119 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.md5
@@ -1 +1 @@
-565fbf365a82ddd9b98435d4ed64fe4a
\ No newline at end of file
+344b1c33c502285079fb34b2b54bc799
\ No newline at end of file
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.pdf
index 410f9134..92fa85ba 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 0ef304ff..89e4991d 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 fa17534a..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 @@
-c9165829d3a75b513ca94c066eb2032e
\ 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 ff808864..8f1b79b7 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 d232a803..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\+::\+Singleton\+Function\+Object$<$ Global\+Setting\+Station $>$\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Global\+Setting\+Station\+::\+Get\+UISettings(), and Gpg\+Frontend\+::\+UI\+::\+Settings\+Dialog\+::\+List\+Languages().
+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 61f1d104..6366024e 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 802a6a6f..884407de 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.tex b/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.tex
new file mode 100644
index 00000000..82d20780
--- /dev/null
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.tex
@@ -0,0 +1,152 @@
+\hypertarget{classGpgFrontend_1_1UI_1_1GnuPGControllerDialog}{}\doxysection{Gpg\+Frontend\+::UI\+::Gnu\+PGController\+Dialog Class Reference}
+\label{classGpgFrontend_1_1UI_1_1GnuPGControllerDialog}\index{GpgFrontend::UI::GnuPGControllerDialog@{GpgFrontend::UI::GnuPGControllerDialog}}
+
+
+Inheritance diagram for Gpg\+Frontend\+::UI\+::Gnu\+PGController\+Dialog\+:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[height=550pt]{classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__inherit__graph}
+\end{center}
+\end{figure}
+
+
+Collaboration diagram for Gpg\+Frontend\+::UI\+::Gnu\+PGController\+Dialog\+:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=350pt]{classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__coll__graph}
+\end{center}
+\end{figure}
+\doxysubsection*{Public Slots}
+\begin{DoxyCompactItemize}
+\item
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GnuPGControllerDialog_af97fbd4ee0b57a20cc9a97c7e877d520}\label{classGpgFrontend_1_1UI_1_1GnuPGControllerDialog_af97fbd4ee0b57a20cc9a97c7e877d520}}
+void {\bfseries Slot\+Accept} ()
+\end{DoxyCompactItemize}
+\doxysubsection*{Signals}
+\begin{DoxyCompactItemize}
+\item
+void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1GnuPGControllerDialog_a35a707865fbcc95b6261e382a6ff171c}{Signal\+Restart\+Needed}} (int)
+\end{DoxyCompactItemize}
+\doxysubsection*{Public Member Functions}
+\begin{DoxyCompactItemize}
+\item
+\mbox{\hyperlink{classGpgFrontend_1_1UI_1_1GnuPGControllerDialog_add69685b9c83ed03ed24d36f2badd835}{Gnu\+PGController\+Dialog}} (QWidget $\ast$parent=nullptr)
+\begin{DoxyCompactList}\small\item\em Construct a new General Tab object. \end{DoxyCompactList}\end{DoxyCompactItemize}
+\doxysubsection*{Private Slots}
+\begin{DoxyCompactItemize}
+\item
+void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1GnuPGControllerDialog_a2bb963a14733cf9b99736b6624c09d83}{slot\+\_\+set\+\_\+restart\+\_\+needed}} (int)
+\item
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GnuPGControllerDialog_a626c30712552f1c7fdf69d1d13d7b303}\label{classGpgFrontend_1_1UI_1_1GnuPGControllerDialog_a626c30712552f1c7fdf69d1d13d7b303}}
+void {\bfseries slot\+\_\+update\+\_\+custom\+\_\+key\+\_\+database\+\_\+path\+\_\+label} (int state)
+\item
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GnuPGControllerDialog_a917cf89e7920c1c5d7d8070b53bd49fc}\label{classGpgFrontend_1_1UI_1_1GnuPGControllerDialog_a917cf89e7920c1c5d7d8070b53bd49fc}}
+void {\bfseries slot\+\_\+update\+\_\+custom\+\_\+gnupg\+\_\+install\+\_\+path\+\_\+label} (int state)
+\end{DoxyCompactItemize}
+\doxysubsection*{Private Member Functions}
+\begin{DoxyCompactItemize}
+\item
+int \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1GnuPGControllerDialog_aaf89f54f2124617e836d31df29066529}{get\+\_\+restart\+\_\+needed}} () const
+\begin{DoxyCompactList}\small\item\em Get the Restart Needed object. \end{DoxyCompactList}\item
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GnuPGControllerDialog_a6eeca78f12b49f095610d762d4cf7d7e}\label{classGpgFrontend_1_1UI_1_1GnuPGControllerDialog_a6eeca78f12b49f095610d762d4cf7d7e}}
+void {\bfseries set\+\_\+settings} ()
+\item
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GnuPGControllerDialog_a04611d5160fcc6ef36f6fce8dd94c645}\label{classGpgFrontend_1_1UI_1_1GnuPGControllerDialog_a04611d5160fcc6ef36f6fce8dd94c645}}
+void {\bfseries apply\+\_\+settings} ()
+\item
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GnuPGControllerDialog_a4d9ba1fc6f869c051854e2ed2841fd71}\label{classGpgFrontend_1_1UI_1_1GnuPGControllerDialog_a4d9ba1fc6f869c051854e2ed2841fd71}}
+bool {\bfseries check\+\_\+custom\+\_\+gnupg\+\_\+path} (std\+::string)
+\item
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GnuPGControllerDialog_ada791c1b329841a2c68f18e7a4ddd909}\label{classGpgFrontend_1_1UI_1_1GnuPGControllerDialog_ada791c1b329841a2c68f18e7a4ddd909}}
+bool {\bfseries check\+\_\+custom\+\_\+gnupg\+\_\+key\+\_\+database\+\_\+path} (std\+::string)
+\end{DoxyCompactItemize}
+\doxysubsection*{Private Attributes}
+\begin{DoxyCompactItemize}
+\item
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GnuPGControllerDialog_afda750c1511434cb0d3162d9bd1ab78f}\label{classGpgFrontend_1_1UI_1_1GnuPGControllerDialog_afda750c1511434cb0d3162d9bd1ab78f}}
+std\+::shared\+\_\+ptr$<$ Ui\+\_\+\+Gnu\+PGController\+Dialog $>$ {\bfseries ui\+\_\+}
+\item
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GnuPGControllerDialog_acd2918a181aa9c8c59e5d789ce34a92a}\label{classGpgFrontend_1_1UI_1_1GnuPGControllerDialog_acd2918a181aa9c8c59e5d789ce34a92a}}
+int {\bfseries restart\+\_\+needed\+\_\+} \{0\}
+\end{DoxyCompactItemize}
+\doxysubsection*{Additional Inherited Members}
+
+
+\doxysubsection{Constructor \& Destructor Documentation}
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GnuPGControllerDialog_add69685b9c83ed03ed24d36f2badd835}\label{classGpgFrontend_1_1UI_1_1GnuPGControllerDialog_add69685b9c83ed03ed24d36f2badd835}}
+\index{GpgFrontend::UI::GnuPGControllerDialog@{GpgFrontend::UI::GnuPGControllerDialog}!GnuPGControllerDialog@{GnuPGControllerDialog}}
+\index{GnuPGControllerDialog@{GnuPGControllerDialog}!GpgFrontend::UI::GnuPGControllerDialog@{GpgFrontend::UI::GnuPGControllerDialog}}
+\doxysubsubsection{\texorpdfstring{GnuPGControllerDialog()}{GnuPGControllerDialog()}}
+{\footnotesize\ttfamily Gpg\+Frontend\+::\+UI\+::\+Gnu\+PGController\+Dialog\+::\+Gnu\+PGController\+Dialog (\begin{DoxyParamCaption}\item[{QWidget $\ast$}]{parent = {\ttfamily nullptr} }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [explicit]}}
+
+
+
+Construct a new General Tab object.
+
+
+\begin{DoxyParams}{Parameters}
+{\em parent} & \\
+\hline
+\end{DoxyParams}
+
+
+References Gpg\+Frontend\+::\+UI\+::\+Signal\+Station\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Global\+Setting\+Station $>$\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Global\+Setting\+Station\+::\+Get\+UISettings(), Signal\+Restart\+Needed(), and slot\+\_\+set\+\_\+restart\+\_\+needed().
+
+
+
+\doxysubsection{Member Function Documentation}
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GnuPGControllerDialog_aaf89f54f2124617e836d31df29066529}\label{classGpgFrontend_1_1UI_1_1GnuPGControllerDialog_aaf89f54f2124617e836d31df29066529}}
+\index{GpgFrontend::UI::GnuPGControllerDialog@{GpgFrontend::UI::GnuPGControllerDialog}!get\_restart\_needed@{get\_restart\_needed}}
+\index{get\_restart\_needed@{get\_restart\_needed}!GpgFrontend::UI::GnuPGControllerDialog@{GpgFrontend::UI::GnuPGControllerDialog}}
+\doxysubsubsection{\texorpdfstring{get\_restart\_needed()}{get\_restart\_needed()}}
+{\footnotesize\ttfamily int Gpg\+Frontend\+::\+UI\+::\+Gnu\+PGController\+Dialog\+::get\+\_\+restart\+\_\+needed (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption}) const\hspace{0.3cm}{\ttfamily [private]}}
+
+
+
+Get the Restart Needed object.
+
+\begin{DoxyReturn}{Returns}
+true
+
+false
+\end{DoxyReturn}
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GnuPGControllerDialog_a35a707865fbcc95b6261e382a6ff171c}\label{classGpgFrontend_1_1UI_1_1GnuPGControllerDialog_a35a707865fbcc95b6261e382a6ff171c}}
+\index{GpgFrontend::UI::GnuPGControllerDialog@{GpgFrontend::UI::GnuPGControllerDialog}!SignalRestartNeeded@{SignalRestartNeeded}}
+\index{SignalRestartNeeded@{SignalRestartNeeded}!GpgFrontend::UI::GnuPGControllerDialog@{GpgFrontend::UI::GnuPGControllerDialog}}
+\doxysubsubsection{\texorpdfstring{SignalRestartNeeded}{SignalRestartNeeded}}
+{\footnotesize\ttfamily void Gpg\+Frontend\+::\+UI\+::\+Gnu\+PGController\+Dialog\+::\+Signal\+Restart\+Needed (\begin{DoxyParamCaption}\item[{int}]{ }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [signal]}}
+
+
+\begin{DoxyParams}{Parameters}
+{\em needed} & \\
+\hline
+\end{DoxyParams}
+
+
+Referenced by Gnu\+PGController\+Dialog().
+
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GnuPGControllerDialog_a2bb963a14733cf9b99736b6624c09d83}\label{classGpgFrontend_1_1UI_1_1GnuPGControllerDialog_a2bb963a14733cf9b99736b6624c09d83}}
+\index{GpgFrontend::UI::GnuPGControllerDialog@{GpgFrontend::UI::GnuPGControllerDialog}!slot\_set\_restart\_needed@{slot\_set\_restart\_needed}}
+\index{slot\_set\_restart\_needed@{slot\_set\_restart\_needed}!GpgFrontend::UI::GnuPGControllerDialog@{GpgFrontend::UI::GnuPGControllerDialog}}
+\doxysubsubsection{\texorpdfstring{slot\_set\_restart\_needed}{slot\_set\_restart\_needed}}
+{\footnotesize\ttfamily void Gpg\+Frontend\+::\+UI\+::\+Gnu\+PGController\+Dialog\+::slot\+\_\+set\+\_\+restart\+\_\+needed (\begin{DoxyParamCaption}\item[{int}]{mode }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [private]}, {\ttfamily [slot]}}
+
+
+\begin{DoxyParams}{Parameters}
+{\em needed} & \\
+\hline
+\end{DoxyParams}
+
+
+Referenced by Gnu\+PGController\+Dialog().
+
+
+
+The documentation for this class was generated from the following files\+:\begin{DoxyCompactItemize}
+\item
+src/ui/dialog/gnupg/Gnu\+PGController\+Dialog.\+h\item
+src/ui/dialog/gnupg/Gnu\+PGController\+Dialog.\+cpp\end{DoxyCompactItemize}
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__coll__graph.md5
new file mode 100644
index 00000000..302a17ad
--- /dev/null
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__coll__graph.md5
@@ -0,0 +1 @@
+80ec5a498e26458a4b2e5417a28f3642
\ No newline at end of file
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__coll__graph.pdf
new file mode 100644
index 00000000..9fe6d59f
Binary files /dev/null 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.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__inherit__graph.md5
new file mode 100644
index 00000000..9a4dcce6
--- /dev/null
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__inherit__graph.md5
@@ -0,0 +1 @@
+52de1b3255b6f88d2450d7a47760cde6
\ No newline at end of file
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__inherit__graph.pdf
new file mode 100644
index 00000000..a13fe213
Binary files /dev/null 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 7418e484..cb081166 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 40e5cfd8..45ed2d7c 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 813e70db..9a812bb7 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 813e70db..9a812bb7 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 9992658b..40d752a0 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 9992658b..40d752a0 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 99f16e12..88ff40e5 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 319643a5..89083657 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 3d4658e3..a1932d4d 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 3d4658e3..a1932d4d 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 0b2b7f66..31c01f9d 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 0b2b7f66..31c01f9d 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1IntroPage__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1IntroPage__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog.tex b/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog.tex
index 446564ff..f27478af 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog.tex
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog.tex
@@ -7,7 +7,7 @@ Inheritance diagram for Gpg\+Frontend\+::UI\+::Key\+Details\+Dialog\+:
\begin{figure}[H]
\begin{center}
\leavevmode
-\includegraphics[width=243pt]{classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph}
+\includegraphics[width=262pt]{classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph}
\end{center}
\end{figure}
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.md5
index 0f80d906..42684159 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.md5
@@ -1 +1 @@
-3e029cbdb267feb6c29ea5f259a6e5f9
\ No newline at end of file
+96ecbace86747dd56a7e714d1965002e
\ No newline at end of file
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.pdf
index 48bb5d15..d9e279ba 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.md5
index 233dce1d..273eeb8e 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.md5
@@ -1 +1 @@
-50b4e2f20e4353c001db14b69a670127
\ No newline at end of file
+20af36539146ded37dc71e3db947336f
\ No newline at end of file
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.pdf
index 3e76899c..175a5fc0 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog.tex b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog.tex
index be6dce06..267581a6 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog.tex
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog.tex
@@ -114,7 +114,10 @@ QDate\+Time {\bfseries max\+\_\+date\+\_\+time\+\_\+}
\item
\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1KeyGenDialog_ab0ccac068670a3e28ce78ff87a40b2fc}\label{classGpgFrontend_1_1UI_1_1KeyGenDialog_ab0ccac068670a3e28ce78ff87a40b2fc}}
std\+::vector$<$ QCheck\+Box $\ast$ $>$ \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1KeyGenDialog_ab0ccac068670a3e28ce78ff87a40b2fc}{key\+\_\+usage\+\_\+check\+\_\+boxes\+\_\+}}
-\begin{DoxyCompactList}\small\item\em ENCR, SIGN, CERT, AUTH. \end{DoxyCompactList}\end{DoxyCompactItemize}
+\begin{DoxyCompactList}\small\item\em ENCR, SIGN, CERT, AUTH. \end{DoxyCompactList}\item
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1KeyGenDialog_a60bff34ff0a5ed5aa60fc280c3420716}\label{classGpgFrontend_1_1UI_1_1KeyGenDialog_a60bff34ff0a5ed5aa60fc280c3420716}}
+bool {\bfseries use\+\_\+pinentry\+\_\+} = false
+\end{DoxyCompactItemize}
\doxysubsection*{Additional Inherited Members}
@@ -138,7 +141,7 @@ Constructor of this class
\end{DoxyParams}
-References button\+\_\+box\+\_\+, Gpg\+Frontend\+::\+UI\+::\+Signal\+Station\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Global\+Setting\+Station $>$\+::\+Get\+Instance(), and Gpg\+Frontend\+::\+Global\+Setting\+Station\+::\+Get\+UISettings().
+References button\+\_\+box\+\_\+, Gpg\+Frontend\+::\+UI\+::\+Signal\+Station\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Global\+Setting\+Station $>$\+::\+Get\+Instance(), and Gpg\+Frontend\+::\+Global\+Setting\+Station\+::\+Lookup\+Settings().
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.md5
index 5eadf1bc..94e1ac1a 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.md5
@@ -1 +1 @@
-034d07acbd9f582552bde6ef0bbdca0a
\ No newline at end of file
+7f11804ff4053a5cce1dc0cefa677f30
\ No newline at end of file
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.pdf
index f5d5cc9b..71d95128 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.md5
index 361728e9..417a48e8 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.md5
@@ -1 +1 @@
-f81596d0f43f2ac2b95b85536e7c9e2f
\ No newline at end of file
+97ea61cd9a70a2c45afa3a57d10d6be9
\ No newline at end of file
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.pdf
index aaa217aa..429f3dfc 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 36a155a6..1dfd6b41 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 36a155a6..1dfd6b41 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenPage__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenPage__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.tex b/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.tex
index eda16eff..6d3baff1 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.tex
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.tex
@@ -7,7 +7,7 @@ Inheritance diagram for Gpg\+Frontend\+::UI\+::Key\+Import\+Detail\+Dialog\+:
\begin{figure}[H]
\begin{center}
\leavevmode
-\includegraphics[width=243pt]{classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph}
+\includegraphics[height=550pt]{classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph}
\end{center}
\end{figure}
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.md5
index 10282e2d..c5351144 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.md5
@@ -1 +1 @@
-f548e8fa759d66ca5af5073a2005933a
\ No newline at end of file
+6782ac6f57286a2c65c456989b4cb1d0
\ No newline at end of file
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.pdf
index 4b998025..c89c5e67 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.md5
index b92d0e9f..57dd66c5 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.md5
@@ -1 +1 @@
-9d68fcc2d8ecd174cd4484853fe1286b
\ No newline at end of file
+7c8e773a1597b56981d77d7459f96061
\ No newline at end of file
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.pdf
index 527983c3..73bdfaf0 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 eb4f2857..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}
@@ -243,7 +249,7 @@ false
\end{DoxyParams}
-References Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Global\+Setting\+Station $>$\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Global\+Setting\+Station\+::\+Get\+UISettings(), import\+\_\+keys(), and Gpg\+Frontend\+::\+Global\+Setting\+Station\+::\+Sync\+Settings().
+References Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Global\+Setting\+Station $>$\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Global\+Setting\+Station\+::\+Get\+UISettings(), import\+\_\+keys(), Gpg\+Frontend\+::\+Global\+Setting\+Station\+::\+Lookup\+Settings(), and Gpg\+Frontend\+::\+Global\+Setting\+Station\+::\+Sync\+Settings().
\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1KeyList_a7ead8845ceb7c9310e3f4742251e1d87}\label{classGpgFrontend_1_1UI_1_1KeyList_a7ead8845ceb7c9310e3f4742251e1d87}}
\index{GpgFrontend::UI::KeyList@{GpgFrontend::UI::KeyList}!GetAllPrivateKeys@{GetAllPrivateKeys}}
@@ -325,7 +331,7 @@ Key\+Id\+Args\+List\+Ptr
\end{DoxyReturn}
-Referenced by Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::refresh\+\_\+keys\+\_\+from\+\_\+key\+\_\+server(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::slot\+\_\+append\+\_\+selected\+\_\+keys(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::slot\+\_\+copy\+\_\+mail\+\_\+address\+\_\+to\+\_\+clipboard(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::slot\+\_\+show\+\_\+key\+\_\+details(), and Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::upload\+\_\+key\+\_\+to\+\_\+server().
+Referenced by Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::refresh\+\_\+keys\+\_\+from\+\_\+key\+\_\+server(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::slot\+\_\+append\+\_\+selected\+\_\+keys(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::slot\+\_\+copy\+\_\+default\+\_\+uid\+\_\+to\+\_\+clipboard(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::slot\+\_\+copy\+\_\+key\+\_\+id\+\_\+to\+\_\+clipboard(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::slot\+\_\+copy\+\_\+mail\+\_\+address\+\_\+to\+\_\+clipboard(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::slot\+\_\+show\+\_\+key\+\_\+details(), and Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::upload\+\_\+key\+\_\+to\+\_\+server().
\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1KeyList_ab4368b81402e2468a9e960de8fb7080f}\label{classGpgFrontend_1_1UI_1_1KeyList_ab4368b81402e2468a9e960de8fb7080f}}
\index{GpgFrontend::UI::KeyList@{GpgFrontend::UI::KeyList}!GetSelectedKey@{GetSelectedKey}}
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 128983b7..0e20caab 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 b0a4dd7b..31e09fc9 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.tex b/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt.tex
index 5cfd5ce1..d94f61d3 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt.tex
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt.tex
@@ -165,7 +165,7 @@ Construct a new Key Mgmt object.
\end{DoxyParams}
-References Gpg\+Frontend\+::\+UI\+::\+Key\+List\+::\+Add\+List\+Group\+Tab(), Gpg\+Frontend\+::\+UI\+::\+Key\+List\+::\+Add\+Menu\+Action(), create\+\_\+actions(), create\+\_\+menus(), create\+\_\+tool\+\_\+bars(), Gpg\+Frontend\+::\+UI\+::\+Signal\+Station\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Global\+Setting\+Station $>$\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Global\+Setting\+Station\+::\+Get\+UISettings(), Gpg\+Frontend\+::\+Gpg\+Key\+::\+Is\+Disabled(), Gpg\+Frontend\+::\+Gpg\+Key\+::\+Is\+Expired(), Gpg\+Frontend\+::\+Gpg\+Key\+::\+Is\+Has\+Master\+Key(), Gpg\+Frontend\+::\+Gpg\+Key\+::\+Is\+Private\+Key(), Gpg\+Frontend\+::\+Gpg\+Key\+::\+Is\+Revoked(), Gpg\+Frontend\+::\+UI\+::\+Key\+List\+::\+Set\+Double\+Clicked\+Action(), and Gpg\+Frontend\+::\+UI\+::\+Signal\+Station\+::\+Signal\+Refresh\+Status\+Bar().
+References Gpg\+Frontend\+::\+UI\+::\+Key\+List\+::\+Add\+List\+Group\+Tab(), Gpg\+Frontend\+::\+UI\+::\+Key\+List\+::\+Add\+Menu\+Action(), create\+\_\+actions(), create\+\_\+menus(), create\+\_\+tool\+\_\+bars(), Gpg\+Frontend\+::\+UI\+::\+Signal\+Station\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Gpg\+Key\+::\+Is\+Disabled(), Gpg\+Frontend\+::\+Gpg\+Key\+::\+Is\+Expired(), Gpg\+Frontend\+::\+Gpg\+Key\+::\+Is\+Has\+Master\+Key(), Gpg\+Frontend\+::\+Gpg\+Key\+::\+Is\+Private\+Key(), Gpg\+Frontend\+::\+Gpg\+Key\+::\+Is\+Revoked(), Gpg\+Frontend\+::\+UI\+::\+Key\+List\+::\+Set\+Double\+Clicked\+Action(), and Gpg\+Frontend\+::\+UI\+::\+Signal\+Station\+::\+Signal\+Refresh\+Status\+Bar().
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 edd10460..e56e14fe 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 @@
-d3ffa7922cb0659c29626aa636e20a38
\ No newline at end of file
+24eeac4d07370fc8e0c95e5d2292ec59
\ 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 53c69a57..b85dd7df 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 abd6b892..58e85f44 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.tex b/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.tex
index 637c2e60..315fcfcb 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.tex
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.tex
@@ -7,7 +7,7 @@ Inheritance diagram for Gpg\+Frontend\+::UI\+::Key\+New\+UIDDialog\+:
\begin{figure}[H]
\begin{center}
\leavevmode
-\includegraphics[width=271pt]{classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph}
+\includegraphics[height=550pt]{classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph}
\end{center}
\end{figure}
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 3a658a8a..e9f56422 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 @@
-a43e1565af9898e45dbf3d401d453148
\ No newline at end of file
+31011828e6db5750bb7cf2af7bb34916
\ 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 e0f82353..acd3f24d 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.md5
index a0b82fd6..c4e0dacf 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.md5
@@ -1 +1 @@
-5b19b3f2c7294daf7b7fdabbd5182ef6
\ No newline at end of file
+6bcc9433a0861affe02aeedacad916ef
\ No newline at end of file
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.pdf
index c9e3575e..03e6a4ec 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.tex b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairDetailTab.tex
index 4f9f8951..efb15268 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairDetailTab.tex
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairDetailTab.tex
@@ -92,6 +92,9 @@ QLabel $\ast$ {\bfseries actual\+\_\+usage\+\_\+var\+\_\+label\+\_\+}
\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1KeyPairDetailTab_a34ea69e2f2a6d190121c0463cf190a63}\label{classGpgFrontend_1_1UI_1_1KeyPairDetailTab_a34ea69e2f2a6d190121c0463cf190a63}}
QLabel $\ast$ {\bfseries primary\+\_\+key\+\_\+exist\+\_\+var\+\_\+label\+\_\+}
\item
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1KeyPairDetailTab_a9a5f52cf050b3ef7e30f742856b82955}\label{classGpgFrontend_1_1UI_1_1KeyPairDetailTab_a9a5f52cf050b3ef7e30f742856b82955}}
+QLabel $\ast$ {\bfseries owner\+\_\+trust\+\_\+var\+\_\+label\+\_\+}
+\item
\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1KeyPairDetailTab_ab14f5ac30ce3cca1c42155bae030c62e}\label{classGpgFrontend_1_1UI_1_1KeyPairDetailTab_ab14f5ac30ce3cca1c42155bae030c62e}}
QLabel $\ast$ {\bfseries icon\+\_\+label\+\_\+}
\item
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__coll__graph.md5
index 7ddc470c..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 @@
-32192cca5a7cc86074012e24daaf71d7
\ 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 c3bbe533..17321c56 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.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__inherit__graph.md5
index 43fc3984..c98b1ee4 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__inherit__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__inherit__graph.md5
@@ -1 +1 @@
-643c6748acd893c2b650a5a40eb4d7e9
\ No newline at end of file
+3a80f196776735a4c29b5ef5d2b78e55
\ No newline at end of file
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 90af6300..74b93321 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.tex b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairOperaTab.tex
index e31abb8d..af6e84e3 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairOperaTab.tex
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairOperaTab.tex
@@ -20,6 +20,12 @@ Collaboration diagram for Gpg\+Frontend\+::UI\+::Key\+Pair\+Opera\+Tab\+:
\includegraphics[height=550pt]{classGpgFrontend_1_1UI_1_1KeyPairOperaTab__coll__graph}
\end{center}
\end{figure}
+\doxysubsection*{Signals}
+\begin{DoxyCompactItemize}
+\item
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1KeyPairOperaTab_ac6b09219bbf830ce6b2d997aa2bb0c04}\label{classGpgFrontend_1_1UI_1_1KeyPairOperaTab_ac6b09219bbf830ce6b2d997aa2bb0c04}}
+void {\bfseries Signal\+Key\+Database\+Refresh} ()
+\end{DoxyCompactItemize}
\doxysubsection*{Public Member Functions}
\begin{DoxyCompactItemize}
\item
@@ -56,6 +62,9 @@ void {\bfseries slot\+\_\+gen\+\_\+revoke\+\_\+cert} ()
\item
\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1KeyPairOperaTab_ab23cb5c7d25aabc0bed9ba530f3866ba}\label{classGpgFrontend_1_1UI_1_1KeyPairOperaTab_ab23cb5c7d25aabc0bed9ba530f3866ba}}
void {\bfseries slot\+\_\+modify\+\_\+tofu\+\_\+policy} ()
+\item
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1KeyPairOperaTab_ad83ec0e2803737488d368fd796a56ceb}\label{classGpgFrontend_1_1UI_1_1KeyPairOperaTab_ad83ec0e2803737488d368fd796a56ceb}}
+void {\bfseries slot\+\_\+set\+\_\+owner\+\_\+trust\+\_\+level} ()
\end{DoxyCompactItemize}
\doxysubsection*{Private Attributes}
\begin{DoxyCompactItemize}
@@ -91,7 +100,7 @@ Construct a new Key Pair Opera Tab object.
\end{DoxyParams}
-References Create\+Opera\+Menu(), Gpg\+Frontend\+::\+Gpg\+Key\+::\+Is\+Has\+Master\+Key(), and Gpg\+Frontend\+::\+Gpg\+Key\+::\+Is\+Private\+Key().
+References Create\+Opera\+Menu(), Gpg\+Frontend\+::\+UI\+::\+Signal\+Station\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Global\+Setting\+Station $>$\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Global\+Setting\+Station\+::\+Get\+UISettings(), Gpg\+Frontend\+::\+Gpg\+Key\+::\+Is\+Has\+Master\+Key(), and Gpg\+Frontend\+::\+Gpg\+Key\+::\+Is\+Private\+Key().
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__coll__graph.md5
index 5a9264ef..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 @@
-5bdcf83117c9c95d76194a9983e1e38b
\ 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 05a3e0e0..3334abf3 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.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__inherit__graph.md5
index 83377463..2b6fec83 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__inherit__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__inherit__graph.md5
@@ -1 +1 @@
-fd38c89df54ddeb08c2910d4ea03950a
\ No newline at end of file
+82ea40c54242bb9f950a2aeb3c1b582a
\ No newline at end of file
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 88d9055a..36570e78 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 e3d66a94..dac7528b 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 b6bce620..62d0fc8e 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 32f336ca..490f5be0 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 8782d6b1..164bd148 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog.tex b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog.tex
index 0d2abdda..49d75e6e 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog.tex
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog.tex
@@ -132,7 +132,7 @@ Construct a new Key Server Import Dialog object.
\end{DoxyParams}
-References create\+\_\+combo\+Box(), create\+\_\+keys\+\_\+table(), Gpg\+Frontend\+::\+UI\+::\+Signal\+Station\+::\+Get\+Instance(), and slot\+\_\+import().
+References create\+\_\+combo\+Box(), create\+\_\+keys\+\_\+table(), Gpg\+Frontend\+::\+UI\+::\+Signal\+Station\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Global\+Setting\+Station $>$\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Global\+Setting\+Station\+::\+Lookup\+Settings(), and slot\+\_\+import().
\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1KeyServerImportDialog_a4c4e44963dcd4f656b10788a7fafbb4e}\label{classGpgFrontend_1_1UI_1_1KeyServerImportDialog_a4c4e44963dcd4f656b10788a7fafbb4e}}
\index{GpgFrontend::UI::KeyServerImportDialog@{GpgFrontend::UI::KeyServerImportDialog}!KeyServerImportDialog@{KeyServerImportDialog}}
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.md5
index bfd7cda5..1d8f91d7 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.md5
@@ -1 +1 @@
-c4c94163ff06be4b74bccaaa11c919b2
\ No newline at end of file
+b70d218f7be38a2ae9141b2ddfff027c
\ No newline at end of file
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.pdf
index f07e85a6..0109e98c 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.md5
index bd44785e..fc727461 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.md5
@@ -1 +1 @@
-0ee51f2fe26bafdd142ddabda22f1492
\ No newline at end of file
+d349e8f4750f41d79abfb31c88575fc8
\ No newline at end of file
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.pdf
index 3508a455..7ea6cd0c 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 fbf23516..80c5cfa7 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 07271cb0..afea5a63 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 aeb22878..0b8efdf9 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 bc4f4e8b..c6f9cd75 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerSearchTask__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerSearchTask__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.tex b/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.tex
index be3e5eba..7c296e1d 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.tex
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.tex
@@ -7,7 +7,7 @@ Inheritance diagram for Gpg\+Frontend\+::UI\+::Key\+Set\+Expire\+Date\+Dialog\+:
\begin{figure}[H]
\begin{center}
\leavevmode
-\includegraphics[width=246pt]{classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph}
+\includegraphics[width=262pt]{classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph}
\end{center}
\end{figure}
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 4902a52b..e5e7e781 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 @@
-2b78d22bff8c13af41c7f01b072c03ca
\ No newline at end of file
+3de19dd2f2eebcc97ac845800377cdca
\ 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 04a86a19..d66572a1 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.md5
index c7654b27..2067b96a 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.md5
@@ -1 +1 @@
-7dcefd432096d896bf7a7ffe6c31a6a1
\ No newline at end of file
+c8b65444be1187fc053568e7c2132cfc
\ No newline at end of file
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.pdf
index 53f8097e..f0b0b23f 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 8c91c500..fabb18e9 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.tex
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.tex
@@ -7,7 +7,7 @@ Inheritance diagram for Gpg\+Frontend\+::UI\+::Key\+UIDSign\+Dialog\+:
\begin{figure}[H]
\begin{center}
\leavevmode
-\includegraphics[width=243pt]{classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph}
+\includegraphics[width=262pt]{classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph}
\end{center}
\end{figure}
@@ -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 e8b010d1..587d22e5 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 @@
-fe58711210e61baad8923ebd54a529a7
\ No newline at end of file
+b0fd4bd5fa1b659fddd0f61ff1042c57
\ 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 9718724b..3948df6b 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.md5
index 68cf7064..d77e1c46 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.md5
@@ -1 +1 @@
-1c9c216dca4b89a4c4b2d2a4427c08f4
\ No newline at end of file
+0f3bc2e71fe14397f6b28eff5aa8091c
\ No newline at end of file
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.pdf
index a4ec85ed..bc717f8c 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog.tex b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog.tex
index 0ed10831..639ce4e8 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog.tex
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog.tex
@@ -7,7 +7,7 @@ Inheritance diagram for Gpg\+Frontend\+::UI\+::Key\+Upload\+Dialog\+:
\begin{figure}[H]
\begin{center}
\leavevmode
-\includegraphics[width=243pt]{classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph}
+\includegraphics[width=262pt]{classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph}
\end{center}
\end{figure}
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.md5
index 3610d948..d4a300cd 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.md5
@@ -1 +1 @@
-67b9d3acaf8a497a6dbc94b6cc29cb6a
\ No newline at end of file
+9f487e290b1edb78a5f79f6dcdeadb93
\ No newline at end of file
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.pdf
index d6ba9351..0c56e741 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.md5
index d33f90fd..604f954a 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.md5
@@ -1 +1 @@
-8b04602b3563dfeb073195695a506b17
\ No newline at end of file
+5bbf9dfc47a869ba766013279b41cea8
\ No newline at end of file
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.pdf
index 54160480..616cc54e 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 76b7ba44..8360c51d 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 fb76be3e..bc925659 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 fa1137d7..9d851e39 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 9bf949a8..2c62882e 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 73354041..f1cacdb4 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow.tex
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow.tex
@@ -52,6 +52,15 @@ void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1MainWindow_a276e843e2f5eda8934fb
\item
\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1MainWindow_a30fe95cf76936d382ee0b67a24688a7a}\label{classGpgFrontend_1_1UI_1_1MainWindow_a30fe95cf76936d382ee0b67a24688a7a}}
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}
@@ -94,8 +103,21 @@ void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1MainWindow_a55926649e28a96318b89
\item
void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1MainWindow_a76bf3784d751db78ed13bd9962e14472}{slot\+\_\+append\+\_\+selected\+\_\+keys}} ()
\item
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1MainWindow_a261fb867b194d5b16ad15ed2ff6c60ec}\label{classGpgFrontend_1_1UI_1_1MainWindow_a261fb867b194d5b16ad15ed2ff6c60ec}}
+void {\bfseries slot\+\_\+append\+\_\+keys\+\_\+create\+\_\+datetime} ()
+\item
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1MainWindow_a091087c673fa86bcaaadbbfc7ec7caed}\label{classGpgFrontend_1_1UI_1_1MainWindow_a091087c673fa86bcaaadbbfc7ec7caed}}
+void {\bfseries slot\+\_\+append\+\_\+keys\+\_\+expire\+\_\+datetime} ()
+\item
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1MainWindow_ac578922206608834c6c7ba862f02c0fa}\label{classGpgFrontend_1_1UI_1_1MainWindow_ac578922206608834c6c7ba862f02c0fa}}
+void {\bfseries slot\+\_\+append\+\_\+keys\+\_\+fingerprint} ()
+\item
void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1MainWindow_af93d72eaf58326f1f9e926752c6b1fc6}{slot\+\_\+copy\+\_\+mail\+\_\+address\+\_\+to\+\_\+clipboard}} ()
\item
+void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1MainWindow_a3982432b140738859415e487e2c5f5eb}{slot\+\_\+copy\+\_\+default\+\_\+uid\+\_\+to\+\_\+clipboard}} ()
+\item
+void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1MainWindow_a9e2ddb2135df42d76134bea168fbdce9}{slot\+\_\+copy\+\_\+key\+\_\+id\+\_\+to\+\_\+clipboard}} ()
+\item
void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1MainWindow_a16ddebec90a4bd0d13baa9d972c3445f}{slot\+\_\+open\+\_\+key\+\_\+management}} ()
\item
void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1MainWindow_a29a811d4d440c79c1bd2cc2bb40cdf7e}{slot\+\_\+open\+\_\+file\+\_\+tab}} ()
@@ -111,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}
@@ -131,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}}
@@ -249,6 +283,9 @@ QAction $\ast$ \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1MainWindow_a01b85fb17c
\begin{DoxyCompactList}\small\item\em Action to import key from edit. \end{DoxyCompactList}\item
QAction $\ast$ \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1MainWindow_a0cb094e0409337cfd7dba1bb510ea96e}{clean\+\_\+double\+\_\+line\+\_\+breaks\+\_\+act\+\_\+}} \{\}
\item
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1MainWindow_a5dce98bfc01ecbb0a90eaa2b304675ed}\label{classGpgFrontend_1_1UI_1_1MainWindow_a5dce98bfc01ecbb0a90eaa2b304675ed}}
+QAction $\ast$ {\bfseries gnupg\+\_\+controller\+\_\+open\+\_\+act\+\_\+} \{\}
+\item
\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1MainWindow_a5bbe43bdd25df9de8c1de23efd8d37a5}\label{classGpgFrontend_1_1UI_1_1MainWindow_a5bbe43bdd25df9de8c1de23efd8d37a5}}
QAction $\ast$ {\bfseries clean\+\_\+gpg\+\_\+password\+\_\+cache\+\_\+act\+\_\+} \{\}
\item
@@ -261,8 +298,32 @@ QAction $\ast$ {\bfseries restart\+\_\+components\+\_\+act\+\_\+} \{\}
\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1MainWindow_ab67486a71126073e7c39ca12603198f4}\label{classGpgFrontend_1_1UI_1_1MainWindow_ab67486a71126073e7c39ca12603198f4}}
QAction $\ast$ \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1MainWindow_ab67486a71126073e7c39ca12603198f4}{append\+\_\+selected\+\_\+keys\+\_\+act\+\_\+}} \{\}
\begin{DoxyCompactList}\small\item\em Action to append selected keys to edit. \end{DoxyCompactList}\item
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1MainWindow_a1e7923dacd93eb498d8532bb887739b0}\label{classGpgFrontend_1_1UI_1_1MainWindow_a1e7923dacd93eb498d8532bb887739b0}}
+QAction $\ast$ {\bfseries append\+\_\+key\+\_\+fingerprint\+\_\+to\+\_\+editor\+\_\+act\+\_\+} \{\}
+\item
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1MainWindow_ad874ce344cce9f87bfbb31e7bf88aebe}\label{classGpgFrontend_1_1UI_1_1MainWindow_ad874ce344cce9f87bfbb31e7bf88aebe}}
+QAction $\ast$ {\bfseries append\+\_\+key\+\_\+create\+\_\+date\+\_\+to\+\_\+editor\+\_\+act\+\_\+} \{\}
+\item
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1MainWindow_a61140b959cbdc0922b528a9c52d0dfa2}\label{classGpgFrontend_1_1UI_1_1MainWindow_a61140b959cbdc0922b528a9c52d0dfa2}}
+QAction $\ast$ {\bfseries append\+\_\+key\+\_\+expire\+\_\+date\+\_\+to\+\_\+editor\+\_\+act\+\_\+} \{\}
+\item
QAction $\ast$ \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1MainWindow_af77f66b6b869f6ddb3d2caa3bc40bb09}{copy\+\_\+mail\+\_\+address\+\_\+to\+\_\+clipboard\+\_\+act\+\_\+}} \{\}
\item
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1MainWindow_a3f51156763fc3d4cdfa747d037566bef}\label{classGpgFrontend_1_1UI_1_1MainWindow_a3f51156763fc3d4cdfa747d037566bef}}
+QAction $\ast$ {\bfseries copy\+\_\+key\+\_\+id\+\_\+to\+\_\+clipboard\+\_\+act\+\_\+} \{\}
+\item
+\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
@@ -379,7 +440,7 @@ Close event shows a save dialog, if there are unsaved documents on exit.
Create actions for the main-\/menu and the context-\/menu of the keylist.
-References about\+\_\+act\+\_\+, add\+\_\+pgp\+\_\+header\+\_\+act\+\_\+, append\+\_\+selected\+\_\+keys\+\_\+act\+\_\+, browser\+\_\+act\+\_\+, check\+\_\+update\+\_\+act\+\_\+, clean\+\_\+double\+\_\+line\+\_\+breaks\+\_\+act\+\_\+, close\+\_\+tab\+\_\+act\+\_\+, copy\+\_\+act\+\_\+, copy\+\_\+mail\+\_\+address\+\_\+to\+\_\+clipboard\+\_\+act\+\_\+, cut\+\_\+act\+\_\+, cut\+\_\+pgp\+\_\+header\+\_\+act\+\_\+, decrypt\+\_\+act\+\_\+, decrypt\+\_\+verify\+\_\+act\+\_\+, edit\+\_\+, encrypt\+\_\+act\+\_\+, encrypt\+\_\+sign\+\_\+act\+\_\+, find\+\_\+act\+\_\+, Gpg\+Frontend\+::\+UI\+::\+Common\+Utils\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Gpg\+Advanced\+Operator $>$\+::\+Get\+Instance(), gnupg\+\_\+act\+\_\+, import\+\_\+key\+\_\+from\+\_\+edit\+\_\+act\+\_\+, new\+\_\+tab\+\_\+act\+\_\+, open\+\_\+act\+\_\+, open\+\_\+key\+\_\+management\+\_\+act\+\_\+, open\+\_\+settings\+\_\+act\+\_\+, paste\+\_\+act\+\_\+, print\+\_\+act\+\_\+, quit\+\_\+act\+\_\+, quote\+\_\+act\+\_\+, redo\+\_\+act\+\_\+, save\+\_\+act\+\_\+, save\+\_\+as\+\_\+act\+\_\+, select\+\_\+all\+\_\+act\+\_\+, show\+\_\+key\+\_\+details\+\_\+act\+\_\+, sign\+\_\+act\+\_\+, slot\+\_\+add\+\_\+pgp\+\_\+header(), slot\+\_\+append\+\_\+selected\+\_\+keys(), slot\+\_\+clean\+\_\+double\+\_\+line\+\_\+breaks(), slot\+\_\+copy\+\_\+mail\+\_\+address\+\_\+to\+\_\+clipboard(), slot\+\_\+cut\+\_\+pgp\+\_\+header(), slot\+\_\+decrypt(), slot\+\_\+decrypt\+\_\+verify(), slot\+\_\+encrypt(), slot\+\_\+encrypt\+\_\+sign(), slot\+\_\+find(), slot\+\_\+import\+\_\+key\+\_\+from\+\_\+edit(), slot\+\_\+open\+\_\+file\+\_\+tab(), slot\+\_\+open\+\_\+key\+\_\+management(), slot\+\_\+open\+\_\+settings\+\_\+dialog(), slot\+\_\+show\+\_\+key\+\_\+details(), slot\+\_\+sign(), slot\+\_\+start\+\_\+wizard(), slot\+\_\+verify(), Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Slot\+Close\+Tab(), Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Slot\+Copy(), Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Slot\+Cut(), Gpg\+Frontend\+::\+UI\+::\+Common\+Utils\+::\+Slot\+Import\+Key\+From\+Clipboard(), Gpg\+Frontend\+::\+UI\+::\+Common\+Utils\+::\+Slot\+Import\+Key\+From\+File(), Gpg\+Frontend\+::\+UI\+::\+Common\+Utils\+::\+Slot\+Import\+Key\+From\+Key\+Server(), Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Slot\+New\+Tab(), Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Slot\+Open(), Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Slot\+Paste(), Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Slot\+Print(), Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Slot\+Quote(), Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Slot\+Redo(), Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Slot\+Save(), Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Slot\+Save\+As(), Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Slot\+Select\+All(), Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Slot\+Switch\+Tab\+Down(), Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Slot\+Switch\+Tab\+Up(), Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Slot\+Undo(), start\+\_\+wizard\+\_\+act\+\_\+, switch\+\_\+tab\+\_\+down\+\_\+act\+\_\+, switch\+\_\+tab\+\_\+up\+\_\+act\+\_\+, translate\+\_\+act\+\_\+, undo\+\_\+act\+\_\+, verify\+\_\+act\+\_\+, zoom\+\_\+in\+\_\+act\+\_\+, and zoom\+\_\+out\+\_\+act\+\_\+.
+References about\+\_\+act\+\_\+, add\+\_\+pgp\+\_\+header\+\_\+act\+\_\+, append\+\_\+selected\+\_\+keys\+\_\+act\+\_\+, browser\+\_\+act\+\_\+, check\+\_\+update\+\_\+act\+\_\+, clean\+\_\+double\+\_\+line\+\_\+breaks\+\_\+act\+\_\+, close\+\_\+tab\+\_\+act\+\_\+, copy\+\_\+act\+\_\+, copy\+\_\+mail\+\_\+address\+\_\+to\+\_\+clipboard\+\_\+act\+\_\+, cut\+\_\+act\+\_\+, cut\+\_\+pgp\+\_\+header\+\_\+act\+\_\+, decrypt\+\_\+act\+\_\+, decrypt\+\_\+verify\+\_\+act\+\_\+, edit\+\_\+, encrypt\+\_\+act\+\_\+, encrypt\+\_\+sign\+\_\+act\+\_\+, find\+\_\+act\+\_\+, Gpg\+Frontend\+::\+UI\+::\+Common\+Utils\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Global\+Setting\+Station $>$\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Gpg\+Advanced\+Operator $>$\+::\+Get\+Instance(), gnupg\+\_\+act\+\_\+, import\+\_\+key\+\_\+from\+\_\+edit\+\_\+act\+\_\+, Gpg\+Frontend\+::\+Global\+Setting\+Station\+::\+Lookup\+Settings(), new\+\_\+tab\+\_\+act\+\_\+, open\+\_\+act\+\_\+, open\+\_\+key\+\_\+management\+\_\+act\+\_\+, open\+\_\+settings\+\_\+act\+\_\+, paste\+\_\+act\+\_\+, print\+\_\+act\+\_\+, quit\+\_\+act\+\_\+, quote\+\_\+act\+\_\+, redo\+\_\+act\+\_\+, save\+\_\+act\+\_\+, save\+\_\+as\+\_\+act\+\_\+, select\+\_\+all\+\_\+act\+\_\+, show\+\_\+key\+\_\+details\+\_\+act\+\_\+, sign\+\_\+act\+\_\+, slot\+\_\+add\+\_\+pgp\+\_\+header(), slot\+\_\+append\+\_\+selected\+\_\+keys(), slot\+\_\+clean\+\_\+double\+\_\+line\+\_\+breaks(), slot\+\_\+copy\+\_\+default\+\_\+uid\+\_\+to\+\_\+clipboard(), slot\+\_\+copy\+\_\+key\+\_\+id\+\_\+to\+\_\+clipboard(), slot\+\_\+copy\+\_\+mail\+\_\+address\+\_\+to\+\_\+clipboard(), slot\+\_\+cut\+\_\+pgp\+\_\+header(), slot\+\_\+decrypt(), slot\+\_\+decrypt\+\_\+verify(), slot\+\_\+encrypt(), slot\+\_\+encrypt\+\_\+sign(), slot\+\_\+find(), slot\+\_\+import\+\_\+key\+\_\+from\+\_\+edit(), slot\+\_\+open\+\_\+file\+\_\+tab(), slot\+\_\+open\+\_\+key\+\_\+management(), slot\+\_\+open\+\_\+settings\+\_\+dialog(), slot\+\_\+show\+\_\+key\+\_\+details(), slot\+\_\+sign(), slot\+\_\+start\+\_\+wizard(), slot\+\_\+verify(), Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Slot\+Close\+Tab(), Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Slot\+Copy(), Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Slot\+Cut(), Gpg\+Frontend\+::\+UI\+::\+Common\+Utils\+::\+Slot\+Import\+Key\+From\+Clipboard(), Gpg\+Frontend\+::\+UI\+::\+Common\+Utils\+::\+Slot\+Import\+Key\+From\+File(), Gpg\+Frontend\+::\+UI\+::\+Common\+Utils\+::\+Slot\+Import\+Key\+From\+Key\+Server(), Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Slot\+New\+Tab(), Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Slot\+Open(), Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Slot\+Paste(), Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Slot\+Print(), Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Slot\+Quote(), Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Slot\+Redo(), Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Slot\+Save(), Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Slot\+Save\+As(), Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Slot\+Select\+All(), Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Slot\+Switch\+Tab\+Down(), Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Slot\+Switch\+Tab\+Up(), Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Slot\+Undo(), start\+\_\+wizard\+\_\+act\+\_\+, switch\+\_\+tab\+\_\+down\+\_\+act\+\_\+, switch\+\_\+tab\+\_\+up\+\_\+act\+\_\+, translate\+\_\+act\+\_\+, undo\+\_\+act\+\_\+, verify\+\_\+act\+\_\+, zoom\+\_\+in\+\_\+act\+\_\+, and zoom\+\_\+out\+\_\+act\+\_\+.
\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1MainWindow_a92a6d8d46e197e25eaacc3ad7ed289ab}\label{classGpgFrontend_1_1UI_1_1MainWindow_a92a6d8d46e197e25eaacc3ad7ed289ab}}
\index{GpgFrontend::UI::MainWindow@{GpgFrontend::UI::MainWindow}!create\_attachment\_dock@{create\_attachment\_dock}}
@@ -395,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}}
@@ -491,7 +552,7 @@ Referenced by create\+\_\+actions().
Append the selected keys to currently active textedit.
-References Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Cur\+Text\+Page(), edit\+\_\+, Gpg\+Frontend\+::\+Gpg\+Key\+Import\+Exporter\+::\+Export\+Keys(), Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Gpg\+Key\+Import\+Exporter $>$\+::\+Get\+Instance(), Gpg\+Frontend\+::\+UI\+::\+Key\+List\+::\+Get\+Selected(), Gpg\+Frontend\+::\+UI\+::\+Plain\+Text\+Editor\+Page\+::\+Get\+Text\+Page(), Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Slot\+Cur\+Page\+Text\+Edit(), and Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Tab\+Count().
+References Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Cur\+Text\+Page(), edit\+\_\+, Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Gpg\+Key\+Import\+Exporter $>$\+::\+Get\+Instance(), Gpg\+Frontend\+::\+UI\+::\+Key\+List\+::\+Get\+Selected(), Gpg\+Frontend\+::\+UI\+::\+Plain\+Text\+Editor\+Page\+::\+Get\+Text\+Page(), Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Slot\+Cur\+Page\+Text\+Edit(), and Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Tab\+Count().
@@ -509,6 +570,34 @@ References Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Cur\+Text\+Page(), edit\+\
+Referenced by create\+\_\+actions().
+
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1MainWindow_a3982432b140738859415e487e2c5f5eb}\label{classGpgFrontend_1_1UI_1_1MainWindow_a3982432b140738859415e487e2c5f5eb}}
+\index{GpgFrontend::UI::MainWindow@{GpgFrontend::UI::MainWindow}!slot\_copy\_default\_uid\_to\_clipboard@{slot\_copy\_default\_uid\_to\_clipboard}}
+\index{slot\_copy\_default\_uid\_to\_clipboard@{slot\_copy\_default\_uid\_to\_clipboard}!GpgFrontend::UI::MainWindow@{GpgFrontend::UI::MainWindow}}
+\doxysubsubsection{\texorpdfstring{slot\_copy\_default\_uid\_to\_clipboard}{slot\_copy\_default\_uid\_to\_clipboard}}
+{\footnotesize\ttfamily void Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::slot\+\_\+copy\+\_\+default\+\_\+uid\+\_\+to\+\_\+clipboard (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [private]}, {\ttfamily [slot]}}
+
+Copy the mailaddress of selected key to clipboard. Method for keylists contextmenu.
+
+References Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Gpg\+Key\+Getter $>$\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Gpg\+Key\+Getter\+::\+Get\+Key(), and Gpg\+Frontend\+::\+UI\+::\+Key\+List\+::\+Get\+Selected().
+
+
+
+Referenced by create\+\_\+actions().
+
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1MainWindow_a9e2ddb2135df42d76134bea168fbdce9}\label{classGpgFrontend_1_1UI_1_1MainWindow_a9e2ddb2135df42d76134bea168fbdce9}}
+\index{GpgFrontend::UI::MainWindow@{GpgFrontend::UI::MainWindow}!slot\_copy\_key\_id\_to\_clipboard@{slot\_copy\_key\_id\_to\_clipboard}}
+\index{slot\_copy\_key\_id\_to\_clipboard@{slot\_copy\_key\_id\_to\_clipboard}!GpgFrontend::UI::MainWindow@{GpgFrontend::UI::MainWindow}}
+\doxysubsubsection{\texorpdfstring{slot\_copy\_key\_id\_to\_clipboard}{slot\_copy\_key\_id\_to\_clipboard}}
+{\footnotesize\ttfamily void Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::slot\+\_\+copy\+\_\+key\+\_\+id\+\_\+to\+\_\+clipboard (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [private]}, {\ttfamily [slot]}}
+
+Copy the mailaddress of selected key to clipboard. Method for keylists contextmenu.
+
+References Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Gpg\+Key\+Getter $>$\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Gpg\+Key\+Getter\+::\+Get\+Key(), and Gpg\+Frontend\+::\+UI\+::\+Key\+List\+::\+Get\+Selected().
+
+
+
Referenced by create\+\_\+actions().
\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1MainWindow_af93d72eaf58326f1f9e926752c6b1fc6}\label{classGpgFrontend_1_1UI_1_1MainWindow_af93d72eaf58326f1f9e926752c6b1fc6}}
@@ -776,7 +865,7 @@ Referenced by slot\+\_\+decrypt\+\_\+verify().
Open dialog for encrypting file.
-References edit\+\_\+, Gpg\+Frontend\+::\+Gpg\+File\+Opera\+::\+Encrypt\+File(), Gpg\+Frontend\+::\+Gpg\+File\+Opera\+::\+Encrypt\+File\+Symmetric(), Gpg\+Frontend\+::\+UI\+::\+Key\+List\+::\+Get\+Checked(), Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Gpg\+Key\+Getter $>$\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Global\+Setting\+Station $>$\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Gpg\+Key\+Getter\+::\+Get\+Keys(), Gpg\+Frontend\+::\+UI\+::\+File\+Page\+::\+Get\+Selected(), Gpg\+Frontend\+::\+Global\+Setting\+Station\+::\+Get\+UISettings(), Gpg\+Frontend\+::\+UI\+::process\+\_\+directory\+\_\+into\+\_\+tarball(), Gpg\+Frontend\+::\+UI\+::process\+\_\+operation(), Gpg\+Frontend\+::\+UI\+::process\+\_\+result\+\_\+analyse(), and Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Slot\+Cur\+Page\+File\+Tree\+View().
+References edit\+\_\+, Gpg\+Frontend\+::\+Gpg\+File\+Opera\+::\+Encrypt\+File(), Gpg\+Frontend\+::\+Gpg\+File\+Opera\+::\+Encrypt\+File\+Symmetric(), Gpg\+Frontend\+::\+UI\+::\+Key\+List\+::\+Get\+Checked(), Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Gpg\+Key\+Getter $>$\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Global\+Setting\+Station $>$\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Gpg\+Key\+Getter\+::\+Get\+Keys(), Gpg\+Frontend\+::\+UI\+::\+File\+Page\+::\+Get\+Selected(), Gpg\+Frontend\+::\+Global\+Setting\+Station\+::\+Lookup\+Settings(), Gpg\+Frontend\+::\+UI\+::process\+\_\+directory\+\_\+into\+\_\+tarball(), Gpg\+Frontend\+::\+UI\+::process\+\_\+operation(), Gpg\+Frontend\+::\+UI\+::process\+\_\+result\+\_\+analyse(), and Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Slot\+Cur\+Page\+File\+Tree\+View().
@@ -790,7 +879,7 @@ Referenced by slot\+\_\+encrypt().
Open dialog for signing file.
-References edit\+\_\+, Gpg\+Frontend\+::\+Gpg\+File\+Opera\+::\+Encrypt\+Sign\+File(), Gpg\+Frontend\+::\+UI\+::\+Key\+List\+::\+Get\+Checked(), Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Gpg\+Key\+Getter $>$\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Global\+Setting\+Station $>$\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Gpg\+Key\+Getter\+::\+Get\+Keys(), Gpg\+Frontend\+::\+UI\+::\+File\+Page\+::\+Get\+Selected(), Gpg\+Frontend\+::\+Global\+Setting\+Station\+::\+Get\+UISettings(), Gpg\+Frontend\+::\+UI\+::process\+\_\+directory\+\_\+into\+\_\+tarball(), Gpg\+Frontend\+::\+UI\+::process\+\_\+operation(), Gpg\+Frontend\+::\+UI\+::process\+\_\+result\+\_\+analyse(), and Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Slot\+Cur\+Page\+File\+Tree\+View().
+References edit\+\_\+, Gpg\+Frontend\+::\+Gpg\+File\+Opera\+::\+Encrypt\+Sign\+File(), Gpg\+Frontend\+::\+UI\+::\+Key\+List\+::\+Get\+Checked(), Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Gpg\+Key\+Getter $>$\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Global\+Setting\+Station $>$\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Gpg\+Key\+Getter\+::\+Get\+Keys(), Gpg\+Frontend\+::\+UI\+::\+File\+Page\+::\+Get\+Selected(), Gpg\+Frontend\+::\+Global\+Setting\+Station\+::\+Lookup\+Settings(), Gpg\+Frontend\+::\+UI\+::process\+\_\+directory\+\_\+into\+\_\+tarball(), Gpg\+Frontend\+::\+UI\+::process\+\_\+operation(), Gpg\+Frontend\+::\+UI\+::process\+\_\+result\+\_\+analyse(), and Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Slot\+Cur\+Page\+File\+Tree\+View().
@@ -804,7 +893,7 @@ Referenced by slot\+\_\+encrypt\+\_\+sign().
Open dialog for signing file.
-References edit\+\_\+, Gpg\+Frontend\+::\+UI\+::\+Key\+List\+::\+Get\+Checked(), Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Gpg\+Key\+Getter $>$\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Global\+Setting\+Station $>$\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Gpg\+Key\+Getter\+::\+Get\+Keys(), Gpg\+Frontend\+::\+UI\+::\+File\+Page\+::\+Get\+Selected(), Gpg\+Frontend\+::\+Global\+Setting\+Station\+::\+Get\+UISettings(), Gpg\+Frontend\+::\+UI\+::process\+\_\+operation(), Gpg\+Frontend\+::\+UI\+::process\+\_\+result\+\_\+analyse(), Gpg\+Frontend\+::\+Gpg\+File\+Opera\+::\+Sign\+File(), and Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Slot\+Cur\+Page\+File\+Tree\+View().
+References edit\+\_\+, Gpg\+Frontend\+::\+UI\+::\+Key\+List\+::\+Get\+Checked(), Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Gpg\+Key\+Getter $>$\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Global\+Setting\+Station $>$\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Gpg\+Key\+Getter\+::\+Get\+Keys(), Gpg\+Frontend\+::\+UI\+::\+File\+Page\+::\+Get\+Selected(), Gpg\+Frontend\+::\+Global\+Setting\+Station\+::\+Lookup\+Settings(), Gpg\+Frontend\+::\+UI\+::process\+\_\+operation(), Gpg\+Frontend\+::\+UI\+::process\+\_\+result\+\_\+analyse(), Gpg\+Frontend\+::\+Gpg\+File\+Opera\+::\+Sign\+File(), and Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Slot\+Cur\+Page\+File\+Tree\+View().
@@ -818,7 +907,7 @@ Referenced by slot\+\_\+sign().
Open dialog for verifying file.
-References edit\+\_\+, Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Global\+Setting\+Station $>$\+::\+Get\+Instance(), Gpg\+Frontend\+::\+UI\+::\+File\+Page\+::\+Get\+Selected(), Gpg\+Frontend\+::\+Global\+Setting\+Station\+::\+Get\+UISettings(), Gpg\+Frontend\+::\+UI\+::import\+\_\+unknown\+\_\+key\+\_\+from\+\_\+keyserver(), Gpg\+Frontend\+::\+UI\+::process\+\_\+operation(), Gpg\+Frontend\+::\+UI\+::process\+\_\+result\+\_\+analyse(), Gpg\+Frontend\+::\+UI\+::show\+\_\+verify\+\_\+details(), Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Slot\+Cur\+Page\+File\+Tree\+View(), and Gpg\+Frontend\+::\+Gpg\+File\+Opera\+::\+Verify\+File().
+References edit\+\_\+, Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Global\+Setting\+Station $>$\+::\+Get\+Instance(), Gpg\+Frontend\+::\+UI\+::\+File\+Page\+::\+Get\+Selected(), Gpg\+Frontend\+::\+UI\+::import\+\_\+unknown\+\_\+key\+\_\+from\+\_\+keyserver(), Gpg\+Frontend\+::\+Global\+Setting\+Station\+::\+Lookup\+Settings(), Gpg\+Frontend\+::\+UI\+::process\+\_\+operation(), Gpg\+Frontend\+::\+UI\+::process\+\_\+result\+\_\+analyse(), Gpg\+Frontend\+::\+UI\+::show\+\_\+verify\+\_\+details(), Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Slot\+Cur\+Page\+File\+Tree\+View(), and Gpg\+Frontend\+::\+Gpg\+File\+Opera\+::\+Verify\+File().
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 9a6d9d9d..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 @@
-9c3af083d25bc297a72b508da727673e
\ 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 21dd6664..e2c9d9db 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 923aa417..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 @@
-f839354b36b1423980ca835fb22fd1b4
\ 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 4fb441d3..121993a6 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 8f331b3e..54e8be81 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 bd0f572b..0f28829e 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 3b46d21d..2a45d2f6 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 8d019615..4d92f9bd 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.tex b/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask.tex
new file mode 100644
index 00000000..db4d1f1e
--- /dev/null
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask.tex
@@ -0,0 +1,112 @@
+\hypertarget{classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask}{}\doxysection{Gpg\+Frontend\+::UI\+::Proxy\+Connection\+Test\+Task Class Reference}
+\label{classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask}\index{GpgFrontend::UI::ProxyConnectionTestTask@{GpgFrontend::UI::ProxyConnectionTestTask}}
+
+
+Inheritance diagram for Gpg\+Frontend\+::UI\+::Proxy\+Connection\+Test\+Task\+:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[height=550pt]{classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask__inherit__graph}
+\end{center}
+\end{figure}
+
+
+Collaboration diagram for Gpg\+Frontend\+::UI\+::Proxy\+Connection\+Test\+Task\+:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[height=550pt]{classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask__coll__graph}
+\end{center}
+\end{figure}
+\doxysubsection*{Signals}
+\begin{DoxyCompactItemize}
+\item
+void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask_a31cd14d72c6c28c811c9183f118f5873}{Signal\+Proxy\+Connection\+Test\+Result}} (const QString \&result)
+\end{DoxyCompactItemize}
+\doxysubsection*{Public Member Functions}
+\begin{DoxyCompactItemize}
+\item
+\mbox{\hyperlink{classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask_a8036aaf9a2adcf033fc9f8e51da59956}{Proxy\+Connection\+Test\+Task}} (QString url, int timeout)
+\begin{DoxyCompactList}\small\item\em Construct a new Proxy Connection Test \mbox{\hyperlink{namespaceGpgFrontend_1_1Thread}{Thread}} object. \end{DoxyCompactList}\end{DoxyCompactItemize}
+\doxysubsection*{Protected Member Functions}
+\begin{DoxyCompactItemize}
+\item
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask_ad7cf6a9fe63ee3db64a3e302d0c83c94}\label{classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask_ad7cf6a9fe63ee3db64a3e302d0c83c94}}
+void {\bfseries run} () override
+\end{DoxyCompactItemize}
+\doxysubsection*{Private Slots}
+\begin{DoxyCompactItemize}
+\item
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask_a612eabb08138bed927bdd845d0fdd3e6}\label{classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask_a612eabb08138bed927bdd845d0fdd3e6}}
+void {\bfseries slot\+\_\+process\+\_\+network\+\_\+reply} (QNetwork\+Reply $\ast$reply)
+\end{DoxyCompactItemize}
+\doxysubsection*{Private Attributes}
+\begin{DoxyCompactItemize}
+\item
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask_afd04dcd159e036500945605a001169af}\label{classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask_afd04dcd159e036500945605a001169af}}
+QString {\bfseries url\+\_\+}
+\item
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask_a17ee65896bb3e7f1bf7176549a8ed615}\label{classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask_a17ee65896bb3e7f1bf7176549a8ed615}}
+QString {\bfseries result\+\_\+}
+\item
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask_a87e5fcd59129549d3eda0794f33fa254}\label{classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask_a87e5fcd59129549d3eda0794f33fa254}}
+int {\bfseries timeout\+\_\+} = 500
+\item
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask_a1f44b1bcb259067fe3d11201923ebef4}\label{classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask_a1f44b1bcb259067fe3d11201923ebef4}}
+QNetwork\+Access\+Manager $\ast$ {\bfseries network\+\_\+manager\+\_\+}
+\end{DoxyCompactItemize}
+\doxysubsection*{Additional Inherited Members}
+
+
+\doxysubsection{Constructor \& Destructor Documentation}
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask_a8036aaf9a2adcf033fc9f8e51da59956}\label{classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask_a8036aaf9a2adcf033fc9f8e51da59956}}
+\index{GpgFrontend::UI::ProxyConnectionTestTask@{GpgFrontend::UI::ProxyConnectionTestTask}!ProxyConnectionTestTask@{ProxyConnectionTestTask}}
+\index{ProxyConnectionTestTask@{ProxyConnectionTestTask}!GpgFrontend::UI::ProxyConnectionTestTask@{GpgFrontend::UI::ProxyConnectionTestTask}}
+\doxysubsubsection{\texorpdfstring{ProxyConnectionTestTask()}{ProxyConnectionTestTask()}}
+{\footnotesize\ttfamily Gpg\+Frontend\+::\+UI\+::\+Proxy\+Connection\+Test\+Task\+::\+Proxy\+Connection\+Test\+Task (\begin{DoxyParamCaption}\item[{QString}]{url, }\item[{int}]{timeout }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [explicit]}}
+
+
+
+Construct a new Proxy Connection Test \mbox{\hyperlink{namespaceGpgFrontend_1_1Thread}{Thread}} object.
+
+
+\begin{DoxyParams}{Parameters}
+{\em url} & \\
+\hline
+{\em timeout} & \\
+\hline
+{\em parent} & Copyright (C) 2021 Saturneric\\
+\hline
+\end{DoxyParams}
+This file is part of \mbox{\hyperlink{namespaceGpgFrontend}{Gpg\+Frontend}}.
+
+\mbox{\hyperlink{namespaceGpgFrontend}{Gpg\+Frontend}} is free software\+: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
+
+\mbox{\hyperlink{namespaceGpgFrontend}{Gpg\+Frontend}} is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License along with \mbox{\hyperlink{namespaceGpgFrontend}{Gpg\+Frontend}}. If not, see \href{https://www.gnu.org/licenses/}{\texttt{ https\+://www.\+gnu.\+org/licenses/}}.
+
+The initial version of the source code is inherited from the gpg4usb project, which is under GPL-\/3.\+0-\/or-\/later.
+
+The source code version of this software was modified and released by Saturneric\href{mailto:eric@bktus.com}{\texttt{ eric@bktus.\+com}}\href{mailto:eric@bktus.com}{\texttt{ eric@bktus.\+com}} starting on May 12, 2021.
+
+\doxysubsection{Member Function Documentation}
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask_a31cd14d72c6c28c811c9183f118f5873}\label{classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask_a31cd14d72c6c28c811c9183f118f5873}}
+\index{GpgFrontend::UI::ProxyConnectionTestTask@{GpgFrontend::UI::ProxyConnectionTestTask}!SignalProxyConnectionTestResult@{SignalProxyConnectionTestResult}}
+\index{SignalProxyConnectionTestResult@{SignalProxyConnectionTestResult}!GpgFrontend::UI::ProxyConnectionTestTask@{GpgFrontend::UI::ProxyConnectionTestTask}}
+\doxysubsubsection{\texorpdfstring{SignalProxyConnectionTestResult}{SignalProxyConnectionTestResult}}
+{\footnotesize\ttfamily void Gpg\+Frontend\+::\+UI\+::\+Proxy\+Connection\+Test\+Task\+::\+Signal\+Proxy\+Connection\+Test\+Result (\begin{DoxyParamCaption}\item[{const QString \&}]{result }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [signal]}}
+
+
+\begin{DoxyParams}{Parameters}
+{\em result} & \\
+\hline
+\end{DoxyParams}
+
+
+The documentation for this class was generated from the following files\+:\begin{DoxyCompactItemize}
+\item
+src/ui/thread/Proxy\+Connection\+Test\+Task.\+h\item
+src/ui/thread/Proxy\+Connection\+Test\+Task.\+cpp\end{DoxyCompactItemize}
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask__coll__graph.md5
new file mode 100644
index 00000000..fbb02283
--- /dev/null
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask__coll__graph.md5
@@ -0,0 +1 @@
+ecb0e8694f1a39c6721d43dd891c65bc
\ No newline at end of file
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask__coll__graph.pdf
new file mode 100644
index 00000000..d9dc8084
Binary files /dev/null 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.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask__inherit__graph.md5
new file mode 100644
index 00000000..d1540db0
--- /dev/null
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask__inherit__graph.md5
@@ -0,0 +1 @@
+3223189d612e39d3a4f524411ae00d85
\ No newline at end of file
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask__inherit__graph.pdf
new file mode 100644
index 00000000..a2131685
Binary files /dev/null and b/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.tex b/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.tex
deleted file mode 100644
index 429a64f1..00000000
--- a/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.tex
+++ /dev/null
@@ -1,117 +0,0 @@
-\hypertarget{classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread}{}\doxysection{Gpg\+Frontend\+::UI\+::Proxy\+Connection\+Test\+Thread Class Reference}
-\label{classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread}\index{GpgFrontend::UI::ProxyConnectionTestThread@{GpgFrontend::UI::ProxyConnectionTestThread}}
-
-
-Inheritance diagram for Gpg\+Frontend\+::UI\+::Proxy\+Connection\+Test\+Thread\+:
-\nopagebreak
-\begin{figure}[H]
-\begin{center}
-\leavevmode
-\includegraphics[width=264pt]{classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread__inherit__graph}
-\end{center}
-\end{figure}
-
-
-Collaboration diagram for Gpg\+Frontend\+::UI\+::Proxy\+Connection\+Test\+Thread\+:
-\nopagebreak
-\begin{figure}[H]
-\begin{center}
-\leavevmode
-\includegraphics[width=264pt]{classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread__coll__graph}
-\end{center}
-\end{figure}
-\doxysubsection*{Signals}
-\begin{DoxyCompactItemize}
-\item
-void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread_aedafa7b22e024be537658fd8096e5f6f}{Signal\+Proxy\+Connection\+Test\+Result}} (const QString \&result)
-\end{DoxyCompactItemize}
-\doxysubsection*{Public Member Functions}
-\begin{DoxyCompactItemize}
-\item
-\mbox{\hyperlink{classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread_a538a78e0149906bf19e850ba71c00ada}{Proxy\+Connection\+Test\+Thread}} (QString url, int timeout, QWidget $\ast$parent=nullptr)
-\begin{DoxyCompactList}\small\item\em Construct a new Proxy Connection Test \mbox{\hyperlink{namespaceGpgFrontend_1_1Thread}{Thread}} object. \end{DoxyCompactList}\end{DoxyCompactItemize}
-\doxysubsection*{Protected Member Functions}
-\begin{DoxyCompactItemize}
-\item
-void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread_a497bb7f1b92c67f2e754fd66ca3a6666}{run}} () override
-\end{DoxyCompactItemize}
-\doxysubsection*{Private Attributes}
-\begin{DoxyCompactItemize}
-\item
-\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread_a9b8bb804b4c0bc48d5e26c3d103c5a64}\label{classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread_a9b8bb804b4c0bc48d5e26c3d103c5a64}}
-QString {\bfseries url\+\_\+}
-\item
-\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread_a02ed478164a2e7d4b5a1a26e99486f2f}\label{classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread_a02ed478164a2e7d4b5a1a26e99486f2f}}
-QString {\bfseries result\+\_\+}
-\item
-\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread_ae6ccca4d5325bbb1235fa6b27479ee2c}\label{classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread_ae6ccca4d5325bbb1235fa6b27479ee2c}}
-int {\bfseries timeout\+\_\+} = 500
-\end{DoxyCompactItemize}
-
-
-\doxysubsection{Constructor \& Destructor Documentation}
-\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread_a538a78e0149906bf19e850ba71c00ada}\label{classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread_a538a78e0149906bf19e850ba71c00ada}}
-\index{GpgFrontend::UI::ProxyConnectionTestThread@{GpgFrontend::UI::ProxyConnectionTestThread}!ProxyConnectionTestThread@{ProxyConnectionTestThread}}
-\index{ProxyConnectionTestThread@{ProxyConnectionTestThread}!GpgFrontend::UI::ProxyConnectionTestThread@{GpgFrontend::UI::ProxyConnectionTestThread}}
-\doxysubsubsection{\texorpdfstring{ProxyConnectionTestThread()}{ProxyConnectionTestThread()}}
-{\footnotesize\ttfamily Gpg\+Frontend\+::\+UI\+::\+Proxy\+Connection\+Test\+Thread\+::\+Proxy\+Connection\+Test\+Thread (\begin{DoxyParamCaption}\item[{QString}]{url, }\item[{int}]{timeout, }\item[{QWidget $\ast$}]{parent = {\ttfamily nullptr} }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [inline]}, {\ttfamily [explicit]}}
-
-
-
-Construct a new Proxy Connection Test \mbox{\hyperlink{namespaceGpgFrontend_1_1Thread}{Thread}} object.
-
-
-\begin{DoxyParams}{Parameters}
-{\em url} & \\
-\hline
-{\em timeout} & \\
-\hline
-{\em parent} & \\
-\hline
-\end{DoxyParams}
-
-
-\doxysubsection{Member Function Documentation}
-\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread_a497bb7f1b92c67f2e754fd66ca3a6666}\label{classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread_a497bb7f1b92c67f2e754fd66ca3a6666}}
-\index{GpgFrontend::UI::ProxyConnectionTestThread@{GpgFrontend::UI::ProxyConnectionTestThread}!run@{run}}
-\index{run@{run}!GpgFrontend::UI::ProxyConnectionTestThread@{GpgFrontend::UI::ProxyConnectionTestThread}}
-\doxysubsubsection{\texorpdfstring{run()}{run()}}
-{\footnotesize\ttfamily void Proxy\+Connection\+Test\+Thread\+::run (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [override]}, {\ttfamily [protected]}}
-
-Copyright (C) 2021 Saturneric
-
-This file is part of \mbox{\hyperlink{namespaceGpgFrontend}{Gpg\+Frontend}}.
-
-\mbox{\hyperlink{namespaceGpgFrontend}{Gpg\+Frontend}} is free software\+: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
-
-\mbox{\hyperlink{namespaceGpgFrontend}{Gpg\+Frontend}} is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License along with \mbox{\hyperlink{namespaceGpgFrontend}{Gpg\+Frontend}}. If not, see \href{https://www.gnu.org/licenses/}{\texttt{ https\+://www.\+gnu.\+org/licenses/}}.
-
-The initial version of the source code is inherited from the gpg4usb project, which is under GPL-\/3.\+0-\/or-\/later.
-
-The source code version of this software was modified and released by Saturneric\href{mailto:eric@bktus.com}{\texttt{ eric@bktus.\+com}}\href{mailto:eric@bktus.com}{\texttt{ eric@bktus.\+com}} starting on May 12, 2021.
-
-References Signal\+Proxy\+Connection\+Test\+Result().
-
-\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread_aedafa7b22e024be537658fd8096e5f6f}\label{classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread_aedafa7b22e024be537658fd8096e5f6f}}
-\index{GpgFrontend::UI::ProxyConnectionTestThread@{GpgFrontend::UI::ProxyConnectionTestThread}!SignalProxyConnectionTestResult@{SignalProxyConnectionTestResult}}
-\index{SignalProxyConnectionTestResult@{SignalProxyConnectionTestResult}!GpgFrontend::UI::ProxyConnectionTestThread@{GpgFrontend::UI::ProxyConnectionTestThread}}
-\doxysubsubsection{\texorpdfstring{SignalProxyConnectionTestResult}{SignalProxyConnectionTestResult}}
-{\footnotesize\ttfamily void Gpg\+Frontend\+::\+UI\+::\+Proxy\+Connection\+Test\+Thread\+::\+Signal\+Proxy\+Connection\+Test\+Result (\begin{DoxyParamCaption}\item[{const QString \&}]{result }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [signal]}}
-
-
-\begin{DoxyParams}{Parameters}
-{\em result} & \\
-\hline
-\end{DoxyParams}
-
-
-Referenced by run().
-
-
-
-The documentation for this class was generated from the following files\+:\begin{DoxyCompactItemize}
-\item
-src/ui/thread/Proxy\+Connection\+Test\+Thread.\+h\item
-src/ui/thread/Proxy\+Connection\+Test\+Thread.\+cpp\end{DoxyCompactItemize}
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread__coll__graph.md5
deleted file mode 100644
index fe2a47a6..00000000
--- a/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread__coll__graph.md5
+++ /dev/null
@@ -1 +0,0 @@
-cd4809bfdb4541978f47f193c9fbc9a3
\ No newline at end of file
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread__coll__graph.pdf
deleted file mode 100644
index 859f5585..00000000
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread__coll__graph.pdf and /dev/null differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread__inherit__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread__inherit__graph.md5
deleted file mode 100644
index fe2a47a6..00000000
--- a/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread__inherit__graph.md5
+++ /dev/null
@@ -1 +0,0 @@
-cd4809bfdb4541978f47f193c9fbc9a3
\ No newline at end of file
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread__inherit__graph.pdf
deleted file mode 100644
index 859f5585..00000000
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread__inherit__graph.pdf and /dev/null differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog.tex b/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog.tex
index 6254d681..e2594438 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog.tex
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog.tex
@@ -7,7 +7,7 @@ Inheritance diagram for Gpg\+Frontend\+::UI\+::Quit\+Dialog\+:
\begin{figure}[H]
\begin{center}
\leavevmode
-\includegraphics[width=243pt]{classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph}
+\includegraphics[width=262pt]{classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph}
\end{center}
\end{figure}
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.md5
index f4d9c416..248ae85b 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.md5
@@ -1 +1 @@
-5c68fa4fc6f0a8823d5522831aa1ca47
\ No newline at end of file
+deda74563512ffc9965d41c30894b67b
\ No newline at end of file
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.pdf
index eda1f078..9016f019 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.md5
index 66fa9405..583709aa 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.md5
@@ -1 +1 @@
-9f64fa85c6d23d2b75630fa649dfb5d9
\ No newline at end of file
+64a5b0225ad85afea75a388615b8d672
\ No newline at end of file
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.pdf
index 75c68f90..d7ef8bbc 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 8ed0b4cd..0c01a80b 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 @@
-8919579a967754dfcf6ab92b6d80d395
\ No newline at end of file
+79e2d01ac47ab856d72193dcfde6a174
\ 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 f26ebe70..ab0043a9 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.md5
index b697b2b4..f631bb53 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.md5
@@ -1 +1 @@
-62f53290a1649c4966aec4465fd63da2
\ No newline at end of file
+07038a56652aede34590f2488f37ca0f
\ No newline at end of file
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.pdf
index 62a15f27..0bc3dbc0 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 8506d081..d12219b7 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 ab8b2a39..b6834283 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 99ca3330..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)
@@ -38,6 +41,9 @@ void {\bfseries Signal\+User\+Input\+Passphrase\+Done} (QString passparase)
\item
\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1SignalStation_a2347964648d48b5d88994b2f504b6642}\label{classGpgFrontend_1_1UI_1_1SignalStation_a2347964648d48b5d88994b2f504b6642}}
void {\bfseries Signal\+Need\+User\+Input\+Passphrase} ()
+\item
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1SignalStation_ac2848f49568a15d96e68e5622476d328}\label{classGpgFrontend_1_1UI_1_1SignalStation_ac2848f49568a15d96e68e5622476d328}}
+void {\bfseries Signal\+Restart\+Application} (int)
\end{DoxyCompactItemize}
\doxysubsection*{Static Public Member Functions}
\begin{DoxyCompactItemize}
@@ -68,7 +74,7 @@ Signal\+Station$\ast$
\end{DoxyReturn}
-Referenced by Gpg\+Frontend\+::\+UI\+::\+Common\+Utils\+::\+Common\+Utils(), Gpg\+Frontend\+::\+UI\+::\+Info\+Board\+Widget\+::\+Info\+Board\+Widget(), Gpg\+Frontend\+::\+UI\+::\+Init\+Gpg\+Frontend\+UI(), Gpg\+Frontend\+::\+UI\+::\+Key\+Gen\+Dialog\+::\+Key\+Gen\+Dialog(), Gpg\+Frontend\+::\+UI\+::\+Key\+Mgmt\+::\+Key\+Mgmt(), Gpg\+Frontend\+::\+UI\+::\+Key\+New\+UIDDialog\+::\+Key\+New\+UIDDialog(), Gpg\+Frontend\+::\+UI\+::\+Key\+Pair\+Detail\+Tab\+::\+Key\+Pair\+Detail\+Tab(), Gpg\+Frontend\+::\+UI\+::\+Key\+Pair\+Subkey\+Tab\+::\+Key\+Pair\+Subkey\+Tab(), Gpg\+Frontend\+::\+UI\+::\+Key\+Pair\+UIDTab\+::\+Key\+Pair\+UIDTab(), Gpg\+Frontend\+::\+UI\+::\+Key\+Server\+Import\+Dialog\+::\+Key\+Server\+Import\+Dialog(), Gpg\+Frontend\+::\+UI\+::\+Key\+UIDSign\+Dialog\+::\+Key\+UIDSign\+Dialog(), and Gpg\+Frontend\+::\+UI\+::\+Subkey\+Generate\+Dialog\+::\+Subkey\+Generate\+Dialog().
+Referenced by Gpg\+Frontend\+::\+UI\+::\+Common\+Utils\+::\+Common\+Utils(), Gpg\+Frontend\+::\+UI\+::\+Gnu\+PGController\+Dialog\+::\+Gnu\+PGController\+Dialog(), Gpg\+Frontend\+::\+UI\+::\+Info\+Board\+Widget\+::\+Info\+Board\+Widget(), Gpg\+Frontend\+::\+UI\+::\+Init\+Gpg\+Frontend\+UI(), Gpg\+Frontend\+::\+UI\+::\+Key\+Gen\+Dialog\+::\+Key\+Gen\+Dialog(), Gpg\+Frontend\+::\+UI\+::\+Key\+Mgmt\+::\+Key\+Mgmt(), Gpg\+Frontend\+::\+UI\+::\+Key\+New\+UIDDialog\+::\+Key\+New\+UIDDialog(), Gpg\+Frontend\+::\+UI\+::\+Key\+Pair\+Detail\+Tab\+::\+Key\+Pair\+Detail\+Tab(), Gpg\+Frontend\+::\+UI\+::\+Key\+Pair\+Opera\+Tab\+::\+Key\+Pair\+Opera\+Tab(), Gpg\+Frontend\+::\+UI\+::\+Key\+Pair\+Subkey\+Tab\+::\+Key\+Pair\+Subkey\+Tab(), Gpg\+Frontend\+::\+UI\+::\+Key\+Pair\+UIDTab\+::\+Key\+Pair\+UIDTab(), Gpg\+Frontend\+::\+UI\+::\+Key\+Server\+Import\+Dialog\+::\+Key\+Server\+Import\+Dialog(), Gpg\+Frontend\+::\+UI\+::\+Key\+UIDSign\+Dialog\+::\+Key\+UIDSign\+Dialog(), and Gpg\+Frontend\+::\+UI\+::\+Subkey\+Generate\+Dialog\+::\+Subkey\+Generate\+Dialog().
\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1SignalStation_a94d4c7d79e0deb7026083689bc5dc2ad}\label{classGpgFrontend_1_1UI_1_1SignalStation_a94d4c7d79e0deb7026083689bc5dc2ad}}
\index{GpgFrontend::UI::SignalStation@{GpgFrontend::UI::SignalStation}!SignalRefreshInfoBoard@{SignalRefreshInfoBoard}}
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 68ef6dd8..5695eb2f 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 6659bdaf..c7ec30ad 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SignalStation__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SignalStation__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker.tex b/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker.tex
index 7fb0bfa5..226a24f0 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker.tex
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker.tex
@@ -7,7 +7,7 @@ Inheritance diagram for Gpg\+Frontend\+::UI\+::Signers\+Picker\+:
\begin{figure}[H]
\begin{center}
\leavevmode
-\includegraphics[width=243pt]{classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph}
+\includegraphics[width=262pt]{classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph}
\end{center}
\end{figure}
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 1b847e95..aa947b59 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 @@
-c7d0bcaf945d135ea161f75ea62127f0
\ No newline at end of file
+b0a8f2b181dee2cd349e0ce0738690d5
\ 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 ae9fee50..eea18f45 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.md5
index 12409b41..15ea1f06 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.md5
@@ -1 +1 @@
-21bd55548c38144f0162219c004b786f
\ No newline at end of file
+0935931201de877f0bee315d1ced3133
\ No newline at end of file
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.pdf
index 740ea2b7..4c497fb9 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.tex b/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.tex
index 7efd9dde..4c406633 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.tex
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.tex
@@ -100,6 +100,9 @@ std\+::vector$<$ QCheck\+Box $\ast$ $>$ \mbox{\hyperlink{classGpgFrontend_1_1UI_
\begin{DoxyCompactList}\small\item\em ENCR, SIGN, CERT, AUTH. \end{DoxyCompactList}\item
\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog_a06ae254026e0be902d28bb005a91fe0c}\label{classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog_a06ae254026e0be902d28bb005a91fe0c}}
QDate\+Time {\bfseries max\+\_\+date\+\_\+time\+\_\+}
+\item
+\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog_ab7a4af76a1d56ad401274ecad80d16c5}\label{classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog_ab7a4af76a1d56ad401274ecad80d16c5}}
+bool {\bfseries use\+\_\+pinentry\+\_\+} = false
\end{DoxyCompactItemize}
\doxysubsection*{Additional Inherited Members}
@@ -124,7 +127,7 @@ Construct a new Subkey Generate Dialog object.
\end{DoxyParams}
-References button\+\_\+box\+\_\+, create\+\_\+basic\+\_\+info\+\_\+group\+\_\+box(), create\+\_\+key\+\_\+usage\+\_\+group\+\_\+box(), error\+\_\+label\+\_\+, Gpg\+Frontend\+::\+UI\+::\+Signal\+Station\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Global\+Setting\+Station $>$\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Global\+Setting\+Station\+::\+Get\+UISettings(), refresh\+\_\+widgets\+\_\+state(), and set\+\_\+signal\+\_\+slot().
+References button\+\_\+box\+\_\+, create\+\_\+basic\+\_\+info\+\_\+group\+\_\+box(), create\+\_\+key\+\_\+usage\+\_\+group\+\_\+box(), error\+\_\+label\+\_\+, Gpg\+Frontend\+::\+UI\+::\+Signal\+Station\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Global\+Setting\+Station $>$\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Global\+Setting\+Station\+::\+Lookup\+Settings(), refresh\+\_\+widgets\+\_\+state(), and set\+\_\+signal\+\_\+slot().
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 01fbb39a..b4a35714 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 @@
-b2c73e2b0804b55353d840357e107f4a
\ No newline at end of file
+1df70014a910a38bfe9e1a5e45f73367
\ 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 726ed1e0..83f7ccce 100644
Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.pdf differ
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.md5
index cd1f0122..6ecf647b 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.md5
@@ -1 +1 @@
-3e409e4a4897c24f234a8f1bbfb86b16
\ No newline at end of file
+cd07824327e2e32323690e8d9a6d5a57
\ No newline at end of file
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.pdf
index 6ad35832..e1b7a812 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 bec2f07f..7b85862b 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 bec2f07f..7b85862b 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 bbc68792..f0fdd7a5 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 bbc68792..f0fdd7a5 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 d8b295cf..90b4656f 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 d8b295cf..90b4656f 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.tex b/docs/latex/classGpgFrontend_1_1UI_1_1UpdateTab.tex
index 2021fef8..fd61ef5e 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1UpdateTab.tex
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1UpdateTab.tex
@@ -64,9 +64,6 @@ QProgress\+Bar $\ast$ {\bfseries pb\+\_\+}
\item
\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1UpdateTab_ad180d1f434e8052f3e0974522c92ae61}\label{classGpgFrontend_1_1UI_1_1UpdateTab_ad180d1f434e8052f3e0974522c92ae61}}
QString {\bfseries current\+\_\+version\+\_\+}
-\item
-\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1UpdateTab_a67358193095af7b39184f16706bf1bff}\label{classGpgFrontend_1_1UI_1_1UpdateTab_a67358193095af7b39184f16706bf1bff}}
-QPush\+Button $\ast$ {\bfseries download\+\_\+button\+\_\+}
\end{DoxyCompactItemize}
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1UpdateTab__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1UpdateTab__coll__graph.md5
index a83ecc80..727405f2 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1UpdateTab__coll__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1UpdateTab__coll__graph.md5
@@ -1 +1 @@
-8d907a8e580fc1f48f6f6f5ab9595709
\ No newline at end of file
+d9c126b6ff066ada62f6ece6f56ac274
\ No newline at end of file
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 127ee724..5f8c2d41 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.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1UpdateTab__inherit__graph.md5
index a83ecc80..727405f2 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1UpdateTab__inherit__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1UpdateTab__inherit__graph.md5
@@ -1 +1 @@
-8d907a8e580fc1f48f6f6f5ab9595709
\ No newline at end of file
+d9c126b6ff066ada62f6ece6f56ac274
\ No newline at end of file
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 127ee724..5f8c2d41 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.tex b/docs/latex/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.tex
index 3d931d09..f94d2063 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.tex
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.tex
@@ -17,7 +17,7 @@ Collaboration diagram for Gpg\+Frontend\+::UI\+::Verify\+Details\+Dialog\+:
\begin{figure}[H]
\begin{center}
\leavevmode
-\includegraphics[height=550pt]{classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph}
+\includegraphics[width=350pt]{classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph}
\end{center}
\end{figure}
\doxysubsection*{Public Member Functions}
@@ -34,9 +34,6 @@ void {\bfseries slot\+\_\+refresh} ()
\doxysubsection*{Private Attributes}
\begin{DoxyCompactItemize}
\item
-\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1VerifyDetailsDialog_ab130aae968f83b9125cbe7054b6ca96d}\label{classGpgFrontend_1_1UI_1_1VerifyDetailsDialog_ab130aae968f83b9125cbe7054b6ca96d}}
-\mbox{\hyperlink{classGpgFrontend_1_1UI_1_1KeyList}{Key\+List}} $\ast$ {\bfseries key\+\_\+list\+\_\+}
-\item
\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1VerifyDetailsDialog_a37a315ff2a1ed0402adf1e15325990ba}\label{classGpgFrontend_1_1UI_1_1VerifyDetailsDialog_a37a315ff2a1ed0402adf1e15325990ba}}
QHBox\+Layout $\ast$ {\bfseries main\+\_\+layout\+\_\+}
\item
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.md5
index bf4e81a8..56a3c3a4 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.md5
@@ -1 +1 @@
-77d7413bbcf6cee704b7cfc0042e1f72
\ No newline at end of file
+5e0c64a7903ff341f44a6521005e14ee
\ No newline at end of file
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.pdf
index e813cce2..3d9831b4 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.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__inherit__graph.md5
index d291546f..8cc0f39d 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__inherit__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__inherit__graph.md5
@@ -1 +1 @@
-c0c376e5a95184d610db5aca7d7a2ab6
\ No newline at end of file
+3542e2c6ce32a9e14d957d94dae0a88c
\ No newline at end of file
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 084b290e..466bd70f 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.tex b/docs/latex/classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.tex
index a9d4c54f..4719f280 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.tex
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.tex
@@ -64,7 +64,7 @@ Construct a new Verify Key Detail Box object.
\end{DoxyParams}
-References create\+\_\+key\+\_\+info\+\_\+grid(), fpr\+\_\+, Gpg\+Frontend\+::\+Gpg\+Signature\+::\+Get\+Fingerprint(), and Gpg\+Frontend\+::\+Gpg\+Signature\+::\+Get\+Status().
+References create\+\_\+key\+\_\+info\+\_\+grid(), fpr\+\_\+, Gpg\+Frontend\+::\+Gpg\+Signature\+::\+Get\+Fingerprint(), Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Global\+Setting\+Station $>$\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Gpg\+Signature\+::\+Get\+Status(), and Gpg\+Frontend\+::\+Global\+Setting\+Station\+::\+Lookup\+Settings().
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 5d57571a..16bdf968 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 44532f24..ac7f5e8c 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 a0ced99c..f3bad261 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 87a66c1c..5c2b5569 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.tex b/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog.tex
index 879ee7df..7be6c377 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog.tex
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog.tex
@@ -7,7 +7,7 @@ Inheritance diagram for Gpg\+Frontend\+::UI\+::Waiting\+Dialog\+:
\begin{figure}[H]
\begin{center}
\leavevmode
-\includegraphics[width=218pt]{classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph}
+\includegraphics[width=262pt]{classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph}
\end{center}
\end{figure}
@@ -17,7 +17,7 @@ Collaboration diagram for Gpg\+Frontend\+::UI\+::Waiting\+Dialog\+:
\begin{figure}[H]
\begin{center}
\leavevmode
-\includegraphics[width=218pt]{classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph}
+\includegraphics[height=550pt]{classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph}
\end{center}
\end{figure}
\doxysubsection*{Public Member Functions}
@@ -25,6 +25,7 @@ Collaboration diagram for Gpg\+Frontend\+::UI\+::Waiting\+Dialog\+:
\item
\mbox{\hyperlink{classGpgFrontend_1_1UI_1_1WaitingDialog_a809d0ffc8208eb2ff5d8da76c8ee10dc}{Waiting\+Dialog}} (const QString \&title, QWidget $\ast$parent)
\begin{DoxyCompactList}\small\item\em Construct a new Waiting Dialog object. \end{DoxyCompactList}\end{DoxyCompactItemize}
+\doxysubsection*{Additional Inherited Members}
\doxysubsection{Constructor \& Destructor Documentation}
diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.md5
index a84031e7..bb96f415 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.md5
@@ -1 +1 @@
-276d842f732e08396fe85f9ee1733b8a
\ No newline at end of file
+b288af7930ef296ce8145e666dedcb5c
\ No newline at end of file
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 1f36efcc..07c5ef92 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.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.md5
index a84031e7..51b2cca8 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.md5
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.md5
@@ -1 +1 @@
-276d842f732e08396fe85f9ee1733b8a
\ No newline at end of file
+0bea7bf416d75c42f008528c961df0b8
\ No newline at end of file
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 1f36efcc..54128fe6 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.tex b/docs/latex/classGpgFrontend_1_1UI_1_1Wizard.tex
index 967792f9..fde7843e 100644
--- a/docs/latex/classGpgFrontend_1_1UI_1_1Wizard.tex
+++ b/docs/latex/classGpgFrontend_1_1UI_1_1Wizard.tex
@@ -66,7 +66,7 @@ Construct a new \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1Wizard}{Wizard}} obje
\end{DoxyParams}
-References Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Global\+Setting\+Station $>$\+::\+Get\+Instance(), and Gpg\+Frontend\+::\+Global\+Setting\+Station\+::\+Get\+UISettings().
+References Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Global\+Setting\+Station $>$\+::\+Get\+Instance(), and Gpg\+Frontend\+::\+Global\+Setting\+Station\+::\+Lookup\+Settings().
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 707c3711..bbf293fd 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 707c3711..bbf293fd 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.tex b/docs/latex/classProxyConnectionTestThread.tex
index 2d9d2bfb..16727555 100644
--- a/docs/latex/classProxyConnectionTestThread.tex
+++ b/docs/latex/classProxyConnectionTestThread.tex
@@ -2,7 +2,7 @@
\label{classProxyConnectionTestThread}\index{ProxyConnectionTestThread@{ProxyConnectionTestThread}}
-{\ttfamily \#include $<$Proxy\+Connection\+Test\+Thread.\+h$>$}
+{\ttfamily \#include $<$Proxy\+Connection\+Test\+Task.\+h$>$}
@@ -33,4 +33,4 @@ The source code version of this software was modified and released by Saturneric
The documentation for this class was generated from the following file\+:\begin{DoxyCompactItemize}
\item
-src/ui/thread/Proxy\+Connection\+Test\+Thread.\+h\end{DoxyCompactItemize}
+src/ui/thread/Proxy\+Connection\+Test\+Task.\+h\end{DoxyCompactItemize}
diff --git a/docs/latex/classProxyConnectionTestThread__coll__graph.pdf b/docs/latex/classProxyConnectionTestThread__coll__graph.pdf
index bbf55606..28c47370 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 5ab1f23c..c5b21374 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 5ab1f23c..c5b21374 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 c5601f22..478bdd48 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 0c38499e..ead57d55 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 afe813db..2707eb81 100644
--- a/docs/latex/hierarchy.tex
+++ b/docs/latex/hierarchy.tex
@@ -6,7 +6,7 @@ This inheritance list is sorted roughly, but not completely, alphabetically\+:\b
\item \contentsline{section}{Gpg\+Frontend\+::\+\_\+result\+\_\+ref\+\_\+deletor}{\pageref{structGpgFrontend_1_1__result__ref__deletor}}{}
\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\+::Cache\+Manager}{\pageref{classGpgFrontend_1_1CacheManager}}{}
+\item \contentsline{section}{Gpg\+Frontend\+::Gpg\+Key\+Manager\+::Automaton\+Handel\+Struct}{\pageref{structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct}}{}
\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}}{}
@@ -41,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}}{}
@@ -110,6 +114,7 @@ This inheritance list is sorted roughly, but not completely, alphabetically\+:\b
\begin{DoxyCompactList}
\item \contentsline{section}{Gpg\+Frontend\+::UI\+::About\+Dialog}{\pageref{classGpgFrontend_1_1UI_1_1AboutDialog}}{}
\item \contentsline{section}{Gpg\+Frontend\+::UI\+::Export\+Key\+Package\+Dialog}{\pageref{classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog}}{}
+\item \contentsline{section}{Gpg\+Frontend\+::UI\+::Gnu\+PGController\+Dialog}{\pageref{classGpgFrontend_1_1UI_1_1GnuPGControllerDialog}}{}
\item \contentsline{section}{Gpg\+Frontend\+::UI\+::Key\+Details\+Dialog}{\pageref{classGpgFrontend_1_1UI_1_1KeyDetailsDialog}}{}
\item \contentsline{section}{Gpg\+Frontend\+::UI\+::Key\+Gen\+Dialog}{\pageref{classGpgFrontend_1_1UI_1_1KeyGenDialog}}{}
\item \contentsline{section}{Gpg\+Frontend\+::UI\+::Key\+Import\+Detail\+Dialog}{\pageref{classGpgFrontend_1_1UI_1_1KeyImportDetailDialog}}{}
@@ -122,9 +127,9 @@ This inheritance list is sorted roughly, but not completely, alphabetically\+:\b
\item \contentsline{section}{Gpg\+Frontend\+::UI\+::Settings\+Dialog}{\pageref{classGpgFrontend_1_1UI_1_1SettingsDialog}}{}
\item \contentsline{section}{Gpg\+Frontend\+::UI\+::Signers\+Picker}{\pageref{classGpgFrontend_1_1UI_1_1SignersPicker}}{}
\item \contentsline{section}{Gpg\+Frontend\+::UI\+::Subkey\+Generate\+Dialog}{\pageref{classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog}}{}
+\item \contentsline{section}{Gpg\+Frontend\+::UI\+::Waiting\+Dialog}{\pageref{classGpgFrontend_1_1UI_1_1WaitingDialog}}{}
\end{DoxyCompactList}
\item \contentsline{section}{Gpg\+Frontend\+::UI\+::Verify\+Details\+Dialog}{\pageref{classGpgFrontend_1_1UI_1_1VerifyDetailsDialog}}{}
-\item \contentsline{section}{Gpg\+Frontend\+::UI\+::Waiting\+Dialog}{\pageref{classGpgFrontend_1_1UI_1_1WaitingDialog}}{}
\item \contentsline{section}{Signature\+Details\+Dialog}{\pageref{classSignatureDetailsDialog}}{}
\end{DoxyCompactList}
\item QGroup\+Box\begin{DoxyCompactList}
@@ -138,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}}{}
@@ -148,6 +154,7 @@ This inheritance list is sorted roughly, but not completely, alphabetically\+:\b
\item \contentsline{section}{Gpg\+Frontend\+::UI\+::Key\+Server\+Import\+Task}{\pageref{classGpgFrontend_1_1UI_1_1KeyServerImportTask}}{}
\item \contentsline{section}{Gpg\+Frontend\+::UI\+::Key\+Server\+Search\+Task}{\pageref{classGpgFrontend_1_1UI_1_1KeyServerSearchTask}}{}
\item \contentsline{section}{Gpg\+Frontend\+::UI\+::Listed\+Key\+Server\+Test\+Task}{\pageref{classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask}}{}
+\item \contentsline{section}{Gpg\+Frontend\+::UI\+::Proxy\+Connection\+Test\+Task}{\pageref{classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask}}{}
\item \contentsline{section}{Gpg\+Frontend\+::UI\+::Version\+Check\+Task}{\pageref{classGpgFrontend_1_1UI_1_1VersionCheckTask}}{}
\end{DoxyCompactList}
\item \contentsline{section}{Gpg\+Frontend\+::UI\+::Signal\+Station}{\pageref{classGpgFrontend_1_1UI_1_1SignalStation}}{}
@@ -157,7 +164,6 @@ This inheritance list is sorted roughly, but not completely, alphabetically\+:\b
\end{DoxyCompactList}
\item QThread\begin{DoxyCompactList}
\item \contentsline{section}{Gpg\+Frontend\+::Thread\+::Task\+Runner}{\pageref{classGpgFrontend_1_1Thread_1_1TaskRunner}}{}
-\item \contentsline{section}{Gpg\+Frontend\+::UI\+::Proxy\+Connection\+Test\+Thread}{\pageref{classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread}}{}
\end{DoxyCompactList}
\item QWidget\begin{DoxyCompactList}
\item \contentsline{section}{Gpg\+Frontend\+::UI\+::Advanced\+Tab}{\pageref{classGpgFrontend_1_1UI_1_1AdvancedTab}}{}
@@ -196,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 3fdb70d9..b2ea76af 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}}
@@ -389,7 +391,7 @@ Gpg\+Error
\end{DoxyReturn}
-Referenced by Gpg\+Frontend\+::\+Gpg\+Basic\+Operator\+::\+Decrypt(), Gpg\+Frontend\+::\+Gpg\+Basic\+Operator\+::\+Decrypt\+Verify(), Gpg\+Frontend\+::\+Gpg\+Key\+Opera\+::\+Delete\+Keys(), Gpg\+Frontend\+::\+Gpg\+Basic\+Operator\+::\+Encrypt(), Gpg\+Frontend\+::\+Gpg\+Basic\+Operator\+::\+Encrypt\+Sign(), Gpg\+Frontend\+::\+Gpg\+Basic\+Operator\+::\+Encrypt\+Symmetric(), Gpg\+Frontend\+::\+Gpg\+Key\+Opera\+::\+Generate\+Key(), Gpg\+Frontend\+::\+Gpg\+Key\+Opera\+::\+Generate\+Subkey(), Gpg\+Frontend\+::\+Gpg\+Context\+::\+Gpg\+Context(), Gpg\+Frontend\+::\+Gpg\+Key\+Import\+Exporter\+::\+Import\+Key(), Gpg\+Frontend\+::\+Gpg\+Key\+Opera\+::\+Modify\+Password(), Gpg\+Frontend\+::\+Gpg\+Key\+Opera\+::\+Modify\+TOFUPolicy(), Gpg\+Frontend\+::\+Gpg\+Context\+::post\+\_\+init\+\_\+ctx(), Gpg\+Frontend\+::\+Gpg\+Key\+Manager\+::\+Rev\+Sign(), Gpg\+Frontend\+::\+Gpg\+UIDOperator\+::\+Rev\+UID(), Gpg\+Frontend\+::\+Gpg\+Key\+Manager\+::\+Set\+Expire(), Gpg\+Frontend\+::\+Gpg\+UIDOperator\+::\+Set\+Primary\+UID(), Gpg\+Frontend\+::\+Gpg\+Basic\+Operator\+::\+Set\+Signers(), Gpg\+Frontend\+::\+Gpg\+Basic\+Operator\+::\+Sign(), Gpg\+Frontend\+::\+Gpg\+Key\+Manager\+::\+Sign\+Key(), and Gpg\+Frontend\+::\+Gpg\+Basic\+Operator\+::\+Verify().
+Referenced by Gpg\+Frontend\+::\+Gpg\+Basic\+Operator\+::\+Decrypt(), Gpg\+Frontend\+::\+Gpg\+Basic\+Operator\+::\+Decrypt\+Verify(), Gpg\+Frontend\+::\+Gpg\+Key\+Opera\+::\+Delete\+Keys(), Gpg\+Frontend\+::\+Gpg\+Basic\+Operator\+::\+Encrypt(), Gpg\+Frontend\+::\+Gpg\+Basic\+Operator\+::\+Encrypt\+Sign(), Gpg\+Frontend\+::\+Gpg\+Basic\+Operator\+::\+Encrypt\+Symmetric(), Gpg\+Frontend\+::\+Gpg\+Key\+Opera\+::\+Generate\+Key(), Gpg\+Frontend\+::\+Gpg\+Key\+Opera\+::\+Generate\+Subkey(), Gpg\+Frontend\+::\+Gpg\+Context\+::\+Gpg\+Context(), Gpg\+Frontend\+::\+Gpg\+Key\+Import\+Exporter\+::\+Import\+Key(), Gpg\+Frontend\+::\+Gpg\+Key\+Opera\+::\+Modify\+Password(), Gpg\+Frontend\+::\+Gpg\+Key\+Opera\+::\+Modify\+TOFUPolicy(), Gpg\+Frontend\+::\+Gpg\+Key\+Manager\+::\+Rev\+Sign(), Gpg\+Frontend\+::\+Gpg\+UIDOperator\+::\+Rev\+UID(), Gpg\+Frontend\+::\+Gpg\+Key\+Manager\+::\+Set\+Expire(), Gpg\+Frontend\+::\+Gpg\+UIDOperator\+::\+Set\+Primary\+UID(), Gpg\+Frontend\+::\+Gpg\+Basic\+Operator\+::\+Set\+Signers(), Gpg\+Frontend\+::\+Gpg\+Basic\+Operator\+::\+Sign(), Gpg\+Frontend\+::\+Gpg\+Key\+Manager\+::\+Sign\+Key(), and Gpg\+Frontend\+::\+Gpg\+Basic\+Operator\+::\+Verify().
\mbox{\Hypertarget{namespaceGpgFrontend_adf0fbe100c3ea1bf2f33bc0f55dfff17}\label{namespaceGpgFrontend_adf0fbe100c3ea1bf2f33bc0f55dfff17}}
\index{GpgFrontend@{GpgFrontend}!check\_gpg\_error@{check\_gpg\_error}}
@@ -425,7 +427,7 @@ gpg\+\_\+err\+\_\+code\+\_\+t
\end{DoxyReturn}
-Referenced by Gpg\+Frontend\+::\+Gpg\+UIDOperator\+::\+Add\+UID(), Gpg\+Frontend\+::\+Gpg\+File\+Opera\+::\+Decrypt\+File(), Gpg\+Frontend\+::\+Gpg\+File\+Opera\+::\+Decrypt\+Verify\+File(), Gpg\+Frontend\+::\+Gpg\+File\+Opera\+::\+Encrypt\+File(), Gpg\+Frontend\+::\+Gpg\+File\+Opera\+::\+Encrypt\+File\+Symmetric(), Gpg\+Frontend\+::\+Gpg\+File\+Opera\+::\+Encrypt\+Sign\+File(), Gpg\+Frontend\+::\+Gpg\+Key\+Import\+Exporter\+::\+Export\+Key(), Gpg\+Frontend\+::\+Gpg\+Key\+Import\+Exporter\+::\+Export\+Key\+Open\+SSH(), Gpg\+Frontend\+::\+Gpg\+Key\+Import\+Exporter\+::\+Export\+Secret\+Key(), Gpg\+Frontend\+::\+Gpg\+Key\+Import\+Exporter\+::\+Export\+Secret\+Key\+Shortest(), Gpg\+Frontend\+::\+Gpg\+Key\+Getter\+::\+Flush\+Key\+Cache(), Gpg\+Frontend\+::\+Gpg\+Key\+Opera\+::\+Generate\+Key(), Gpg\+Frontend\+::\+Gpg\+Context\+::\+Gpg\+Context(), Gpg\+Frontend\+::\+Gpg\+Context\+::post\+\_\+init\+\_\+ctx(), Gpg\+Frontend\+::\+Gpg\+Key\+Manager\+::\+Rev\+Sign(), Gpg\+Frontend\+::\+Gpg\+UIDOperator\+::\+Rev\+UID(), Gpg\+Frontend\+::\+Gpg\+Key\+Manager\+::\+Set\+Expire(), Gpg\+Frontend\+::\+Gpg\+UIDOperator\+::\+Set\+Primary\+UID(), Gpg\+Frontend\+::\+Gpg\+File\+Opera\+::\+Sign\+File(), Gpg\+Frontend\+::\+Gpg\+Key\+Manager\+::\+Sign\+Key(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::slot\+\_\+decrypt(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::slot\+\_\+decrypt\+\_\+verify(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::slot\+\_\+encrypt(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::slot\+\_\+encrypt\+\_\+sign(), Gpg\+Frontend\+::\+UI\+::\+Subkey\+Generate\+Dialog\+::slot\+\_\+key\+\_\+gen\+\_\+accept(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::slot\+\_\+sign(), and Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::slot\+\_\+verify().
+Referenced by Gpg\+Frontend\+::\+Gpg\+UIDOperator\+::\+Add\+UID(), Gpg\+Frontend\+::\+Gpg\+File\+Opera\+::\+Decrypt\+File(), Gpg\+Frontend\+::\+Gpg\+File\+Opera\+::\+Decrypt\+Verify\+File(), Gpg\+Frontend\+::\+Gpg\+File\+Opera\+::\+Encrypt\+File(), Gpg\+Frontend\+::\+Gpg\+File\+Opera\+::\+Encrypt\+File\+Symmetric(), Gpg\+Frontend\+::\+Gpg\+File\+Opera\+::\+Encrypt\+Sign\+File(), Gpg\+Frontend\+::\+Gpg\+Key\+Import\+Exporter\+::\+Export\+Key(), Gpg\+Frontend\+::\+Gpg\+Key\+Import\+Exporter\+::\+Export\+Key\+Open\+SSH(), Gpg\+Frontend\+::\+Gpg\+Key\+Import\+Exporter\+::\+Export\+Secret\+Key(), Gpg\+Frontend\+::\+Gpg\+Key\+Import\+Exporter\+::\+Export\+Secret\+Key\+Shortest(), Gpg\+Frontend\+::\+Gpg\+Key\+Getter\+::\+Flush\+Key\+Cache(), Gpg\+Frontend\+::\+Gpg\+Key\+Opera\+::\+Generate\+Key(), Gpg\+Frontend\+::\+Gpg\+Context\+::\+Gpg\+Context(), Gpg\+Frontend\+::\+Gpg\+Context\+::post\+\_\+init\+\_\+ctx(), Gpg\+Frontend\+::\+Gpg\+Key\+Manager\+::\+Rev\+Sign(), Gpg\+Frontend\+::\+Gpg\+UIDOperator\+::\+Rev\+UID(), Gpg\+Frontend\+::\+Gpg\+Key\+Manager\+::\+Set\+Expire(), Gpg\+Frontend\+::\+Gpg\+Key\+Manager\+::\+Set\+Owner\+Trust\+Level(), Gpg\+Frontend\+::\+Gpg\+UIDOperator\+::\+Set\+Primary\+UID(), Gpg\+Frontend\+::\+Gpg\+File\+Opera\+::\+Sign\+File(), Gpg\+Frontend\+::\+Gpg\+Key\+Manager\+::\+Sign\+Key(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::slot\+\_\+decrypt(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::slot\+\_\+decrypt\+\_\+verify(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::slot\+\_\+encrypt(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::slot\+\_\+encrypt\+\_\+sign(), Gpg\+Frontend\+::\+UI\+::\+Subkey\+Generate\+Dialog\+::slot\+\_\+key\+\_\+gen\+\_\+accept(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::slot\+\_\+sign(), and Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::slot\+\_\+verify().
\mbox{\Hypertarget{namespaceGpgFrontend_acff2cf5dd5b112b324fa6574ee935f79}\label{namespaceGpgFrontend_acff2cf5dd5b112b324fa6574ee935f79}}
\index{GpgFrontend@{GpgFrontend}!get\_file\_extension@{get\_file\_extension}}
diff --git a/docs/latex/namespaceGpgFrontend_1_1UI.tex b/docs/latex/namespaceGpgFrontend_1_1UI.tex
index 79581e83..0d754118 100644
--- a/docs/latex/namespaceGpgFrontend_1_1UI.tex
+++ b/docs/latex/namespaceGpgFrontend_1_1UI.tex
@@ -9,6 +9,8 @@ class \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1VerifyDetailsDialog}{Verify\+De
\item
class \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1GeneralDialog}{General\+Dialog}}
\item
+class \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1GnuPGControllerDialog}{Gnu\+PGController\+Dialog}}
+\item
class \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1InfoTab}{Info\+Tab}}
\begin{DoxyCompactList}\small\item\em Class containing the main tab of about dialog. \end{DoxyCompactList}\item
class \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1TranslatorsTab}{Translators\+Tab}}
@@ -95,7 +97,7 @@ class \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1KeyServerSearchTask}{Key\+Serve
\item
class \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask}{Listed\+Key\+Server\+Test\+Task}}
\item
-class \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread}{Proxy\+Connection\+Test\+Thread}}
+class \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask}{Proxy\+Connection\+Test\+Task}}
\item
class \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1VersionCheckTask}{Version\+Check\+Task}}
\item
diff --git a/docs/latex/refman.tex b/docs/latex/refman.tex
index c68a2703..83d5f9fa 100644
--- a/docs/latex/refman.tex
+++ b/docs/latex/refman.tex
@@ -194,6 +194,7 @@
\input{classGpgFrontend_1_1UI_1_1AppearanceTab}
\input{classGpgFrontend_1_1ArchiveFileOperator}
\input{structGpgFrontend_1_1ArchiveStruct}
+\input{structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct}
\input{classGpgFrontend_1_1CacheManager}
\input{classGpgFrontend_1_1ChannelObject}
\input{classGpgFrontend_1_1CharsetOperator}
@@ -218,6 +219,7 @@
\input{classGpgFrontend_1_1UI_1_1GeneralTab}
\input{classGpgFrontend_1_1GenKeyInfo}
\input{classGpgFrontend_1_1GlobalSettingStation}
+\input{classGpgFrontend_1_1UI_1_1GnuPGControllerDialog}
\input{classGpgFrontend_1_1UI_1_1GnupgTab}
\input{classGpgFrontend_1_1GpgAdvancedOperator}
\input{classGpgFrontend_1_1GpgBasicOperator}
@@ -279,7 +281,7 @@
\input{classGpgFrontend_1_1UI_1_1NetworkTab}
\input{classGpgFrontend_1_1PassphraseGenerator}
\input{classGpgFrontend_1_1UI_1_1PlainTextEditorPage}
-\input{classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread}
+\input{classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask}
\input{classProxyConnectionTestThread}
\input{classGpgFrontend_1_1UI_1_1QuitDialog}
\input{classGpgFrontend_1_1UI_1_1SettingsDialog}
@@ -297,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 6f894833..3b8754ac 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.tex b/docs/latex/structGpgFrontend_1_1GpgContextInitArgs.tex
index 54e52ca4..de198751 100644
--- a/docs/latex/structGpgFrontend_1_1GpgContextInitArgs.tex
+++ b/docs/latex/structGpgFrontend_1_1GpgContextInitArgs.tex
@@ -7,7 +7,7 @@ Collaboration diagram for Gpg\+Frontend\+::Gpg\+Context\+Init\+Args\+:
\begin{figure}[H]
\begin{center}
\leavevmode
-\includegraphics[width=260pt]{structGpgFrontend_1_1GpgContextInitArgs__coll__graph}
+\includegraphics[width=289pt]{structGpgFrontend_1_1GpgContextInitArgs__coll__graph}
\end{center}
\end{figure}
\doxysubsection*{Public Attributes}
@@ -30,6 +30,21 @@ bool {\bfseries test\+\_\+mode} = false
\item
\mbox{\Hypertarget{structGpgFrontend_1_1GpgContextInitArgs_a646fd830375ccf3b69ea64ede0c76f52}\label{structGpgFrontend_1_1GpgContextInitArgs_a646fd830375ccf3b69ea64ede0c76f52}}
bool {\bfseries ascii} = true
+\item
+\mbox{\Hypertarget{structGpgFrontend_1_1GpgContextInitArgs_a33cd883333581952ae49784ae86edae7}\label{structGpgFrontend_1_1GpgContextInitArgs_a33cd883333581952ae49784ae86edae7}}
+bool {\bfseries offline\+\_\+mode} = false
+\item
+\mbox{\Hypertarget{structGpgFrontend_1_1GpgContextInitArgs_a12e9e2e6ad393864a4b2d85727350edc}\label{structGpgFrontend_1_1GpgContextInitArgs_a12e9e2e6ad393864a4b2d85727350edc}}
+bool {\bfseries auto\+\_\+import\+\_\+missing\+\_\+key} = false
+\item
+\mbox{\Hypertarget{structGpgFrontend_1_1GpgContextInitArgs_aa46e72b29dd89211f468047f45a7a31d}\label{structGpgFrontend_1_1GpgContextInitArgs_aa46e72b29dd89211f468047f45a7a31d}}
+bool {\bfseries custom\+\_\+gpgconf} = false
+\item
+\mbox{\Hypertarget{structGpgFrontend_1_1GpgContextInitArgs_a0a1de4b848ff87da9a6650fdbac82fa7}\label{structGpgFrontend_1_1GpgContextInitArgs_a0a1de4b848ff87da9a6650fdbac82fa7}}
+std\+::string {\bfseries custom\+\_\+gpgconf\+\_\+path}
+\item
+\mbox{\Hypertarget{structGpgFrontend_1_1GpgContextInitArgs_a2b09f18f4f10ca44370ed204d19de122}\label{structGpgFrontend_1_1GpgContextInitArgs_a2b09f18f4f10ca44370ed204d19de122}}
+bool {\bfseries use\+\_\+pinentry} = false
\end{DoxyCompactItemize}
diff --git a/docs/latex/structGpgFrontend_1_1GpgContextInitArgs__coll__graph.md5 b/docs/latex/structGpgFrontend_1_1GpgContextInitArgs__coll__graph.md5
index c78dac8a..a3e6fbf3 100644
--- a/docs/latex/structGpgFrontend_1_1GpgContextInitArgs__coll__graph.md5
+++ b/docs/latex/structGpgFrontend_1_1GpgContextInitArgs__coll__graph.md5
@@ -1 +1 @@
-69e9f276c6346d4d4f47c9f7daf87556
\ No newline at end of file
+fec4f1f489531525ad2bf993df9a5826
\ No newline at end of file
diff --git a/docs/latex/structGpgFrontend_1_1GpgContextInitArgs__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1GpgContextInitArgs__coll__graph.pdf
index b7c2f826..3b14d2ba 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 476a09bb..473c6d5c 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 95707d36..d714e288 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.tex b/docs/latex/structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.tex
new file mode 100644
index 00000000..4d0f4ac1
--- /dev/null
+++ b/docs/latex/structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct.tex
@@ -0,0 +1,65 @@
+\hypertarget{structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct}{}\doxysection{Gpg\+Frontend\+::Gpg\+Key\+Manager\+::Automaton\+Handel\+Struct Struct Reference}
+\label{structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct}\index{GpgFrontend::GpgKeyManager::AutomatonHandelStruct@{GpgFrontend::GpgKeyManager::AutomatonHandelStruct}}
+
+
+Collaboration diagram for Gpg\+Frontend\+::Gpg\+Key\+Manager\+::Automaton\+Handel\+Struct\+:
+\nopagebreak
+\begin{figure}[H]
+\begin{center}
+\leavevmode
+\includegraphics[width=245pt]{structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct__coll__graph}
+\end{center}
+\end{figure}
+\doxysubsection*{Public Member Functions}
+\begin{DoxyCompactItemize}
+\item
+\mbox{\Hypertarget{structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct_abf2b62099a5db5d878dacf2272d081cc}\label{structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct_abf2b62099a5db5d878dacf2272d081cc}}
+void {\bfseries Set\+Status} (Automaton\+State next\+\_\+state)
+\item
+\mbox{\Hypertarget{structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct_a742df2dfca6697d70fd0366c85a2e9ab}\label{structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct_a742df2dfca6697d70fd0366c85a2e9ab}}
+Automaton\+State {\bfseries Cuurent\+Status} ()
+\item
+\mbox{\Hypertarget{structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct_ad5e858f2cd13d4aa52ab99aa76687f80}\label{structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct_ad5e858f2cd13d4aa52ab99aa76687f80}}
+void {\bfseries Set\+Handler} (Automaton\+Next\+State\+Handler next\+\_\+state\+\_\+handler, Automaton\+Action\+Handler action\+\_\+handler)
+\item
+\mbox{\Hypertarget{structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct_a36e09cfc03ac7c3a4a02ba91e2ab324a}\label{structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct_a36e09cfc03ac7c3a4a02ba91e2ab324a}}
+Automaton\+State {\bfseries Next\+State} (std\+::string gpg\+\_\+status, std\+::string args)
+\item
+\mbox{\Hypertarget{structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct_afeda3da9e04fc8121946bcaa36fa6a7b}\label{structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct_afeda3da9e04fc8121946bcaa36fa6a7b}}
+Command {\bfseries Action} ()
+\item
+\mbox{\Hypertarget{structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct_a95521fc49f2e1d1a7304472dc1897375}\label{structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct_a95521fc49f2e1d1a7304472dc1897375}}
+void {\bfseries Set\+Success} (bool success)
+\item
+\mbox{\Hypertarget{structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct_a032442a3b9e65411cca885dbc48fc051}\label{structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct_a032442a3b9e65411cca885dbc48fc051}}
+bool {\bfseries Success} ()
+\item
+\mbox{\Hypertarget{structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct_a345c63f8868e3f674aa7b35977a54f28}\label{structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct_a345c63f8868e3f674aa7b35977a54f28}}
+std\+::string {\bfseries Key\+Fpr} ()
+\item
+\mbox{\Hypertarget{structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct_a94c9441aa2583ce99cb94a8b46a1740b}\label{structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct_a94c9441aa2583ce99cb94a8b46a1740b}}
+{\bfseries Automaton\+Handel\+Struct} (std\+::string key\+\_\+fpr)
+\end{DoxyCompactItemize}
+\doxysubsection*{Private Attributes}
+\begin{DoxyCompactItemize}
+\item
+\mbox{\Hypertarget{structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct_aeb932ebd78e9c004e8539a0f403c6410}\label{structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct_aeb932ebd78e9c004e8539a0f403c6410}}
+Automaton\+State {\bfseries current\+\_\+state\+\_\+} = AS\+\_\+\+START
+\item
+\mbox{\Hypertarget{structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct_a51b6a0532770053d82898d51e8c6564f}\label{structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct_a51b6a0532770053d82898d51e8c6564f}}
+Automaton\+Next\+State\+Handler {\bfseries next\+\_\+state\+\_\+handler\+\_\+}
+\item
+\mbox{\Hypertarget{structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct_a190bdac3d0b71d25a1b7c933d54d803f}\label{structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct_a190bdac3d0b71d25a1b7c933d54d803f}}
+Automaton\+Action\+Handler {\bfseries action\+\_\+handler\+\_\+}
+\item
+\mbox{\Hypertarget{structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct_a93424679542c04dbe0094d93789ec28e}\label{structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct_a93424679542c04dbe0094d93789ec28e}}
+bool {\bfseries success\+\_\+} = false
+\item
+\mbox{\Hypertarget{structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct_ad7f02df3199da0fe15bf7af74e21002b}\label{structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct_ad7f02df3199da0fe15bf7af74e21002b}}
+std\+::string {\bfseries key\+\_\+fpr\+\_\+}
+\end{DoxyCompactItemize}
+
+
+The documentation for this struct was generated from the following file\+:\begin{DoxyCompactItemize}
+\item
+src/core/function/gpg/Gpg\+Key\+Manager.\+h\end{DoxyCompactItemize}
diff --git a/docs/latex/structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct__coll__graph.md5 b/docs/latex/structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct__coll__graph.md5
new file mode 100644
index 00000000..b2536cae
--- /dev/null
+++ b/docs/latex/structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct__coll__graph.md5
@@ -0,0 +1 @@
+c11ea576811c705b1a76f18e7d5aff31
\ No newline at end of file
diff --git a/docs/latex/structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct__coll__graph.pdf
new file mode 100644
index 00000000..16b88bb3
Binary files /dev/null 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 0a31bdf7..3d6625cd 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 0ff76d26..022ac4fe 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 079442c1..0aa64464 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 391562b0..fed6b8bc 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 d71b6546..d5831c92 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 00db01cb..c2751c3a 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 3b1d3b55..ad2c2115 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 1d62cc37..e2c2e8a0 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 123165c4..4329936b 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