diff --git a/docs/html/GlobalSettingStation_8h_source.html b/docs/html/GlobalSettingStation_8h_source.html index 4fd38f14..0f11b343 100644 --- a/docs/html/GlobalSettingStation_8h_source.html +++ b/docs/html/GlobalSettingStation_8h_source.html @@ -104,101 +104,112 @@ $(document).ready(function(){initNavTree('GlobalSettingStation_8h_source.html','
51 
56  ~GlobalSettingStation() noexcept override;
57 
-
63  libconfig::Setting &GetUISettings() noexcept { return ui_cfg_.getRoot(); }
+
63  libconfig::Setting &GetUISettings() noexcept;
64 
-
70  [[nodiscard]] std::filesystem::path GetAppDir() const { return app_path_; }
-
71 
-
72  [[nodiscard]] std::filesystem::path GetAppDataPath() const {
-
73  return app_data_path_;
-
74  }
-
75 
-
81  [[nodiscard]] std::filesystem::path GetLogDir() const {
-
82  return app_log_path_;
-
83  }
-
84 
-
90  [[nodiscard]] std::filesystem::path GetStandaloneDatabaseDir() const {
-
91  auto db_path = app_configure_path_ / "db";
-
92  if (!std::filesystem::exists(db_path)) {
-
93  std::filesystem::create_directory(db_path);
-
94  }
-
95  return db_path;
-
96  }
-
97 
-
98  [[nodiscard]] std::filesystem::path GetAppConfigPath() const {
-
99  return app_configure_path_;
-
100  }
-
101 
-
107  [[nodiscard]] std::filesystem::path GetStandaloneGpgBinDir() const {
-
108  return app_resource_path_ / "gpg1.4" / "gpg";
-
109  }
-
110 
-
116  [[nodiscard]] std::filesystem::path GetLocaleDir() const {
-
117  return app_locale_path_;
-
118  }
-
119 
-
125  [[nodiscard]] std::filesystem::path GetResourceDir() const {
-
126  return app_resource_path_;
-
127  }
-
128 
-
134  [[nodiscard]] std::filesystem::path GetCertsDir() const {
-
135  return app_resource_path_ / "certs";
-
136  }
-
137 
-
142  void SyncSettings() noexcept;
-
143 
-
144  private:
-
145  std::filesystem::path app_path_ = QCoreApplication::applicationDirPath()
-
146  .toStdString();
-
147  std::filesystem::path app_data_path_ =
-
148  QStandardPaths::writableLocation(QStandardPaths::AppLocalDataLocation)
-
149  .toStdString();
-
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";
-
154 
-
155 #ifdef LINUX_INSTALL_BUILD
-
156  std::filesystem::path app_resource_path_ =
-
157  std::filesystem::path(APP_LOCALSTATE_PATH) /
-
158  "gpgfrontend";
-
159 #else
-
160  std::filesystem::path app_resource_path_ =
-
161  RESOURCE_DIR_BOOST_PATH(app_path_);
-
162 #endif
-
163 
-
164 #ifdef LINUX_INSTALL_BUILD
-
165  std::filesystem::path app_locale_path_ =
-
166  std::string(APP_LOCALE_PATH);
-
167 #else
-
168  std::filesystem::path app_locale_path_ =
-
169  app_resource_path_ / "locales";
-
170 #endif
-
171 
-
172  std::filesystem::path app_configure_path_ =
-
173  QStandardPaths::writableLocation(QStandardPaths::AppConfigLocation)
-
174  .toStdString();
-
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";
+
70  template <typename T>
+
71  T LookupSettings(std::string path, T default_value) noexcept {
+
72  T value = default_value;
+
73  try {
+
74  value = static_cast<T>(GetUISettings().lookup(path));
+
75  } catch (...) {
+
76  SPDLOG_WARN("setting not found: {}", path);
+
77  }
+
78  return value;
+
79  }
+
80 
+
86  [[nodiscard]] std::filesystem::path GetAppDir() const { return app_path_; }
+
87 
+
88  [[nodiscard]] std::filesystem::path GetAppDataPath() const {
+
89  return app_data_path_;
+
90  }
+
91 
+
97  [[nodiscard]] std::filesystem::path GetLogDir() const {
+
98  return app_log_path_;
+
99  }
+
100 
+
106  [[nodiscard]] std::filesystem::path GetStandaloneDatabaseDir() const {
+
107  auto db_path = app_configure_path_ / "db";
+
108  if (!std::filesystem::exists(db_path)) {
+
109  std::filesystem::create_directory(db_path);
+
110  }
+
111  return db_path;
+
112  }
+
113 
+
114  [[nodiscard]] std::filesystem::path GetAppConfigPath() const {
+
115  return app_configure_path_;
+
116  }
+
117 
+
123  [[nodiscard]] std::filesystem::path GetStandaloneGpgBinDir() const {
+
124  return app_resource_path_ / "gpg1.4" / "gpg";
+
125  }
+
126 
+
132  [[nodiscard]] std::filesystem::path GetLocaleDir() const {
+
133  return app_locale_path_;
+
134  }
+
135 
+
141  [[nodiscard]] std::filesystem::path GetResourceDir() const {
+
142  return app_resource_path_;
+
143  }
+
144 
+
150  [[nodiscard]] std::filesystem::path GetCertsDir() const {
+
151  return app_resource_path_ / "certs";
+
152  }
+
153 
+
158  void SyncSettings() noexcept;
+
159 
+
160  private:
+
161  std::filesystem::path app_path_ = QCoreApplication::applicationDirPath()
+
162  .toStdString();
+
163  std::filesystem::path app_data_path_ =
+
164  QStandardPaths::writableLocation(QStandardPaths::AppLocalDataLocation)
+
165  .toStdString();
+
166  std::filesystem::path app_log_path_ =
+
167  app_data_path_ / "logs";
+
168  std::filesystem::path app_data_objs_path_ =
+
169  app_data_path_ / "objs";
+
170 
+
171 #ifdef LINUX_INSTALL_BUILD
+
172  std::filesystem::path app_resource_path_ =
+
173  std::filesystem::path(APP_LOCALSTATE_PATH) /
+
174  "gpgfrontend";
+
175 #else
+
176  std::filesystem::path app_resource_path_ =
+
177  RESOURCE_DIR_BOOST_PATH(app_path_);
+
178 #endif
179 
-
180  libconfig::Config ui_cfg_;
-
181 
-
186  void init_app_secure_key();
-
187 };
-
188 } // namespace GpgFrontend
-
189 
-
190 #endif // GPGFRONTEND_GLOBALSETTINGSTATION_H
+
180 #ifdef LINUX_INSTALL_BUILD
+
181  std::filesystem::path app_locale_path_ =
+
182  std::string(APP_LOCALE_PATH);
+
183 #else
+
184  std::filesystem::path app_locale_path_ =
+
185  app_resource_path_ / "locales";
+
186 #endif
+
187 
+
188  std::filesystem::path app_configure_path_ =
+
189  QStandardPaths::writableLocation(QStandardPaths::AppConfigLocation)
+
190  .toStdString();
+
191  std::filesystem::path ui_config_dir_path_ =
+
192  app_configure_path_ / "conf";
+
193  std::filesystem::path ui_config_path_ =
+
194  ui_config_dir_path_ / "main.cfg";
+
195 
+
196  libconfig::Config ui_cfg_;
+
197 
+
202  void init_app_secure_key();
+
203 };
+
204 } // namespace GpgFrontend
+
205 
+
206 #endif // GPGFRONTEND_GLOBALSETTINGSTATION_H
GpgFrontend::GlobalSettingStation
Definition: GlobalSettingStation.h:43
-
GpgFrontend::GlobalSettingStation::GetLocaleDir
std::filesystem::path GetLocaleDir() const
Get the Locale Dir object.
Definition: GlobalSettingStation.h:116
-
GpgFrontend::GlobalSettingStation::ui_cfg_
libconfig::Config ui_cfg_
UI Configure File.
Definition: GlobalSettingStation.h:180
-
GpgFrontend::GlobalSettingStation::GetCertsDir
std::filesystem::path GetCertsDir() const
Get the Certs Dir object.
Definition: GlobalSettingStation.h:134
-
GpgFrontend::GlobalSettingStation::GetLogDir
std::filesystem::path GetLogDir() const
Get the Log Dir object.
Definition: GlobalSettingStation.h:81
-
GpgFrontend::GlobalSettingStation::GetStandaloneGpgBinDir
std::filesystem::path GetStandaloneGpgBinDir() const
Get the Standalone Gpg Bin Dir object.
Definition: GlobalSettingStation.h:107
-
GpgFrontend::GlobalSettingStation::GetAppDir
std::filesystem::path GetAppDir() const
Get the App Dir object.
Definition: GlobalSettingStation.h:70
-
GpgFrontend::GlobalSettingStation::GetStandaloneDatabaseDir
std::filesystem::path GetStandaloneDatabaseDir() const
Get the Standalone Database Dir object.
Definition: GlobalSettingStation.h:90
+
GpgFrontend::GlobalSettingStation::GetLocaleDir
std::filesystem::path GetLocaleDir() const
Get the Locale Dir object.
Definition: GlobalSettingStation.h:132
+
GpgFrontend::GlobalSettingStation::ui_cfg_
libconfig::Config ui_cfg_
UI Configure File.
Definition: GlobalSettingStation.h:196
+
GpgFrontend::GlobalSettingStation::GetCertsDir
std::filesystem::path GetCertsDir() const
Get the Certs Dir object.
Definition: GlobalSettingStation.h:150
+
GpgFrontend::GlobalSettingStation::GetLogDir
std::filesystem::path GetLogDir() const
Get the Log Dir object.
Definition: GlobalSettingStation.h:97
+
GpgFrontend::GlobalSettingStation::GetStandaloneGpgBinDir
std::filesystem::path GetStandaloneGpgBinDir() const
Get the Standalone Gpg Bin Dir object.
Definition: GlobalSettingStation.h:123
+
GpgFrontend::GlobalSettingStation::GetAppDir
std::filesystem::path GetAppDir() const
Get the App Dir object.
Definition: GlobalSettingStation.h:86
+
GpgFrontend::GlobalSettingStation::GetStandaloneDatabaseDir
std::filesystem::path GetStandaloneDatabaseDir() const
Get the Standalone Database Dir object.
Definition: GlobalSettingStation.h:106
GpgFrontend::GlobalSettingStation::~GlobalSettingStation
~GlobalSettingStation() noexcept override
Destroy the Global Setting Station object.
-
GpgFrontend::GlobalSettingStation::GetResourceDir
std::filesystem::path GetResourceDir() const
Get the Resource Dir object.
Definition: GlobalSettingStation.h:125
+
GpgFrontend::GlobalSettingStation::GetResourceDir
std::filesystem::path GetResourceDir() const
Get the Resource Dir object.
Definition: GlobalSettingStation.h:141
GpgFrontend::SingletonFunctionObject
Definition: GpgFunctionObject.h:150
GpgFrontend::SingletonFunctionObject::GetDefaultChannel
static int GetDefaultChannel()
Get the Default Channel object.
Definition: GpgFunctionObject.h:251
GpgFrontend
Definition: CoreCommonUtil.cpp:31
diff --git a/docs/html/GpgContext_8h_source.html b/docs/html/GpgContext_8h_source.html index 48507928..e028949a 100644 --- a/docs/html/GpgContext_8h_source.html +++ b/docs/html/GpgContext_8h_source.html @@ -93,28 +93,28 @@ $(document).ready(function(){initNavTree('GpgContext_8h_source.html',''); initRe
32 #include <optional>
33 #include <string>
34 
-
35 #include "GpgConstants.h"
-
36 #include "GpgFunctionObject.h"
-
37 #include "GpgInfo.h"
-
38 #include "GpgModel.h"
+
35 #include "GpgFunctionObject.h"
+
36 #include "GpgInfo.h"
+
37 
+
38 namespace GpgFrontend {
39 
-
40 namespace GpgFrontend {
-
41 
-
46 struct GpgContextInitArgs {
-
47  // make no sense for gpg2
-
48  bool independent_database = false;
-
49  std::string db_path = {};
-
50 
-
51  bool gpg_alone = false;
-
52  std::string gpg_path = {};
-
53 
-
54  bool test_mode = false;
-
55  bool ascii = true;
-
56  bool offline_mode = false;
-
57  bool auto_import_missing_key = false;
-
58 
-
59  bool custom_gpgconf = false;
-
60  std::string custom_gpgconf_path;
+
44 struct GpgContextInitArgs {
+
45  // make no sense for gpg2
+
46  bool independent_database = false;
+
47  std::string db_path = {};
+
48 
+
49  bool gpg_alone = false;
+
50  std::string gpg_path = {};
+
51 
+
52  bool test_mode = false;
+
53  bool ascii = true;
+
54  bool offline_mode = false;
+
55  bool auto_import_missing_key = false;
+
56 
+
57  bool custom_gpgconf = false;
+
58  std::string custom_gpgconf_path;
+
59 
+
60  bool use_pinentry = false;
61 
62  GpgContextInitArgs() = default;
63 };
@@ -182,7 +182,7 @@ $(document).ready(function(){initNavTree('GpgContext_8h_source.html',''); initRe
GpgFrontend::GpgInfo
Use to record some info about gnupg.
Definition: GpgInfo.h:40
GpgFrontend::SingletonFunctionObject
Definition: GpgFunctionObject.h:150
GpgFrontend
Definition: CoreCommonUtil.cpp:31
-
GpgFrontend::GpgContextInitArgs
Definition: GpgContext.h:46
+
GpgFrontend::GpgContextInitArgs
Definition: GpgContext.h:44
GpgFrontend::GpgContext::_ctx_ref_deleter
Definition: GpgContext.h:145
diff --git a/docs/html/GpgCoreInit_8h_source.html b/docs/html/GpgCoreInit_8h_source.html index 63ae4803..a8aebccf 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
75 
76 #endif // GPGFRONTEND_GPGCOREINIT_H
GpgFrontend
Definition: CoreCommonUtil.cpp:31
-
GpgFrontend::new_default_settings_channel
void new_default_settings_channel(int channel)
Definition: GpgCoreInit.cpp:245
-
GpgFrontend::InitCoreLoggingSystem
void InitCoreLoggingSystem()
setup logging system and do proper initialization
Definition: GpgCoreInit.cpp:52
+
GpgFrontend::new_default_settings_channel
void new_default_settings_channel(int channel)
Definition: GpgCoreInit.cpp:235
+
GpgFrontend::InitCoreLoggingSystem
void InitCoreLoggingSystem()
setup logging system and do proper initialization
Definition: GpgCoreInit.cpp:53
diff --git a/docs/html/GpgFrontendUIInit_8h_source.html b/docs/html/GpgFrontendUIInit_8h_source.html index a0648e7e..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','');
60 
61 #endif // GPGFRONTEND_GPGFRONTENDUIINIT_H
GpgFrontend::UI
Definition: FileReadTask.cpp:29
-
GpgFrontend::UI::RunGpgFrontendUI
int RunGpgFrontendUI(QApplication *app)
run main window
Definition: GpgFrontendUIInit.cpp:180
-
GpgFrontend::UI::InitGpgFrontendUI
void InitGpgFrontendUI(QApplication *app)
init the UI library
Definition: GpgFrontendUIInit.cpp:54
+
GpgFrontend::UI::RunGpgFrontendUI
int RunGpgFrontendUI(QApplication *app)
run main window
Definition: GpgFrontendUIInit.cpp:183
+
GpgFrontend::UI::InitGpgFrontendUI
void InitGpgFrontendUI(QApplication *app)
init the UI library
Definition: GpgFrontendUIInit.cpp:56
diff --git a/docs/html/KeyList_8h_source.html b/docs/html/KeyList_8h_source.html index d565c544..12948dca 100644 --- a/docs/html/KeyList_8h_source.html +++ b/docs/html/KeyList_8h_source.html @@ -252,34 +252,34 @@ $(document).ready(function(){initNavTree('KeyList_8h_source.html',''); initResiz
388 #endif // __KEYLIST_H__
GpgFrontend::GpgKey
Definition: GpgKey.h:43
GpgFrontend::UI::KeyList
Definition: KeyList.h:152
-
GpgFrontend::UI::KeyList::GetSelected
KeyIdArgsListPtr GetSelected()
Get the Selected object.
Definition: KeyList.cpp:253
-
GpgFrontend::UI::KeyList::ContainsPrivateKeys
bool ContainsPrivateKeys()
Definition: KeyList.cpp:270
-
GpgFrontend::UI::KeyList::dropEvent
void dropEvent(QDropEvent *event) override
Definition: KeyList.cpp:302
-
GpgFrontend::UI::KeyList::MarkKeys
static void MarkKeys(QStringList *keyIds)
Definition: KeyList.cpp:380
-
GpgFrontend::UI::KeyList::SetChecked
void SetChecked(KeyIdArgsListPtr key_ids)
Set the Checked object.
Definition: KeyList.cpp:239
-
GpgFrontend::UI::KeyList::slot_double_clicked
void slot_double_clicked(const QModelIndex &index)
Definition: KeyList.cpp:391
-
GpgFrontend::UI::KeyList::AddListGroupTab
void AddListGroupTab(const QString &name, KeyListRow::KeyType selectType=KeyListRow::SECRET_OR_PUBLIC_KEY, KeyListColumn::InfoType infoType=KeyListColumn::ALL, const std::function< bool(const GpgKey &)> &filter=[](const GpgKey &) -> bool { return true;})
Definition: KeyList.cpp:99
+
GpgFrontend::UI::KeyList::GetSelected
KeyIdArgsListPtr GetSelected()
Get the Selected object.
Definition: KeyList.cpp:260
+
GpgFrontend::UI::KeyList::ContainsPrivateKeys
bool ContainsPrivateKeys()
Definition: KeyList.cpp:277
+
GpgFrontend::UI::KeyList::dropEvent
void dropEvent(QDropEvent *event) override
Definition: KeyList.cpp:309
+
GpgFrontend::UI::KeyList::MarkKeys
static void MarkKeys(QStringList *keyIds)
Definition: KeyList.cpp:383
+
GpgFrontend::UI::KeyList::SetChecked
void SetChecked(KeyIdArgsListPtr key_ids)
Set the Checked object.
Definition: KeyList.cpp:246
+
GpgFrontend::UI::KeyList::slot_double_clicked
void slot_double_clicked(const QModelIndex &index)
Definition: KeyList.cpp:396
+
GpgFrontend::UI::KeyList::AddListGroupTab
void AddListGroupTab(const QString &name, KeyListRow::KeyType selectType=KeyListRow::SECRET_OR_PUBLIC_KEY, KeyListColumn::InfoType infoType=KeyListColumn::ALL, const std::function< bool(const GpgKey &)> &filter=[](const GpgKey &) -> bool { return true;})
Definition: KeyList.cpp:106
GpgFrontend::UI::KeyList::KeyList
KeyList(KeyMenuAbility::AbilityType menu_ability, QWidget *parent=nullptr)
Construct a new Key List object.
Definition: KeyList.cpp:44
-
GpgFrontend::UI::KeyList::SetDoubleClickedAction
void SetDoubleClickedAction(std::function< void(const GpgKey &, QWidget *)> action)
Set the Double Clicked Action object.
Definition: KeyList.cpp:402
-
GpgFrontend::UI::KeyList::GetAllPrivateKeys
KeyIdArgsListPtr GetAllPrivateKeys()
Get the All Private Keys object.
Definition: KeyList.cpp:195
-
GpgFrontend::UI::KeyList::GetPrivateChecked
KeyIdArgsListPtr GetPrivateChecked()
Get the Private Checked object.
Definition: KeyList.cpp:209
-
GpgFrontend::UI::KeyList::contextMenuEvent
void contextMenuEvent(QContextMenuEvent *event) override
Definition: KeyList.cpp:289
+
GpgFrontend::UI::KeyList::SetDoubleClickedAction
void SetDoubleClickedAction(std::function< void(const GpgKey &, QWidget *)> action)
Set the Double Clicked Action object.
Definition: KeyList.cpp:407
+
GpgFrontend::UI::KeyList::GetAllPrivateKeys
KeyIdArgsListPtr GetAllPrivateKeys()
Get the All Private Keys object.
Definition: KeyList.cpp:202
+
GpgFrontend::UI::KeyList::GetPrivateChecked
KeyIdArgsListPtr GetPrivateChecked()
Get the Private Checked object.
Definition: KeyList.cpp:216
+
GpgFrontend::UI::KeyList::contextMenuEvent
void contextMenuEvent(QContextMenuEvent *event) override
Definition: KeyList.cpp:296
GpgFrontend::UI::KeyList::SignalRefreshStatusBar
void SignalRefreshStatusBar(const QString &message, int timeout)
-
GpgFrontend::UI::KeyList::AddMenuAction
void AddMenuAction(QAction *act)
Definition: KeyList.cpp:300
-
GpgFrontend::UI::KeyList::SetColumnWidth
void SetColumnWidth(int row, int size)
Set the Column Width object.
Definition: KeyList.cpp:282
-
GpgFrontend::UI::KeyList::GetSelectedKey
std::string GetSelectedKey()
Get the Selected Key object.
Definition: KeyList.cpp:407
-
GpgFrontend::UI::KeyList::import_keys
void import_keys(const QByteArray &inBuffer)
Definition: KeyList.cpp:384
-
GpgFrontend::UI::KeyList::GetChecked
KeyIdArgsListPtr GetChecked()
Get the Checked object.
Definition: KeyList.cpp:181
-
GpgFrontend::UI::KeyList::dragEnterEvent
void dragEnterEvent(QDragEnterEvent *event) override
Definition: KeyList.cpp:373
+
GpgFrontend::UI::KeyList::AddMenuAction
void AddMenuAction(QAction *act)
Definition: KeyList.cpp:307
+
GpgFrontend::UI::KeyList::SetColumnWidth
void SetColumnWidth(int row, int size)
Set the Column Width object.
Definition: KeyList.cpp:289
+
GpgFrontend::UI::KeyList::GetSelectedKey
std::string GetSelectedKey()
Get the Selected Key object.
Definition: KeyList.cpp:412
+
GpgFrontend::UI::KeyList::import_keys
void import_keys(const QByteArray &inBuffer)
Definition: KeyList.cpp:389
+
GpgFrontend::UI::KeyList::GetChecked
KeyIdArgsListPtr GetChecked()
Get the Checked object.
Definition: KeyList.cpp:188
+
GpgFrontend::UI::KeyList::dragEnterEvent
void dragEnterEvent(QDragEnterEvent *event) override
Definition: KeyList.cpp:376
GpgFrontend::UI
Definition: FileReadTask.cpp:29
GpgFrontend::UI::KeyListColumn
Definition: KeyList.h:56
GpgFrontend::UI::KeyListRow
Definition: KeyList.h:45
GpgFrontend::UI::KeyMenuAbility
Definition: KeyList.h:72
GpgFrontend::UI::KeyTable
Definition: KeyList.h:87
-
GpgFrontend::UI::KeyTable::GetChecked
KeyIdArgsListPtr & GetChecked()
Get the Checked object.
Definition: KeyList.cpp:499
+
GpgFrontend::UI::KeyTable::GetChecked
KeyIdArgsListPtr & GetChecked()
Get the Checked object.
Definition: KeyList.cpp:504
GpgFrontend::UI::KeyTable::KeyTable
KeyTable(QTableWidget *_key_list, KeyListRow::KeyType _select_type, KeyListColumn::InfoType _info_type, std::function< bool(const GpgKey &)> _filter=[](const GpgKey &) -> bool { return true;})
Construct a new Key Table object.
Definition: KeyList.h:103
-
GpgFrontend::UI::KeyTable::Refresh
void Refresh(KeyLinkListPtr m_keys=nullptr)
Definition: KeyList.cpp:518
-
GpgFrontend::UI::KeyTable::SetChecked
void SetChecked(KeyIdArgsListPtr key_ids)
Set the Checked object.
Definition: KeyList.cpp:514
+
GpgFrontend::UI::KeyTable::Refresh
void Refresh(KeyLinkListPtr m_keys=nullptr)
Definition: KeyList.cpp:523
+
GpgFrontend::UI::KeyTable::SetChecked
void SetChecked(KeyIdArgsListPtr key_ids)
Set the Checked object.
Definition: KeyList.cpp:519
diff --git a/docs/html/KeyMgmt_8h_source.html b/docs/html/KeyMgmt_8h_source.html index e8533fbf..187c5df9 100644 --- a/docs/html/KeyMgmt_8h_source.html +++ b/docs/html/KeyMgmt_8h_source.html @@ -170,10 +170,10 @@ $(document).ready(function(){initNavTree('KeyMgmt_8h_source.html',''); initResiz
GpgFrontend::UI::GeneralMainWindow
Definition: GeneralMainWindow.h:39
GpgFrontend::UI::KeyList
Definition: KeyList.h:152
GpgFrontend::UI::KeyMgmt
Definition: KeyMgmt.h:46
-
GpgFrontend::UI::KeyMgmt::delete_keys_with_warning
void delete_keys_with_warning(GpgFrontend::KeyIdArgsListPtr uidList)
Definition: KeyMgmt.cpp:290
-
GpgFrontend::UI::KeyMgmt::create_actions
void create_actions()
Create a actions object.
Definition: KeyMgmt.cpp:126
-
GpgFrontend::UI::KeyMgmt::create_tool_bars
void create_tool_bars()
Create a tool bars object.
Definition: KeyMgmt.cpp:257
-
GpgFrontend::UI::KeyMgmt::create_menus
void create_menus()
Create a menus object.
Definition: KeyMgmt.cpp:234
+
GpgFrontend::UI::KeyMgmt::delete_keys_with_warning
void delete_keys_with_warning(GpgFrontend::KeyIdArgsListPtr uidList)
Definition: KeyMgmt.cpp:281
+
GpgFrontend::UI::KeyMgmt::create_actions
void create_actions()
Create a actions object.
Definition: KeyMgmt.cpp:124
+
GpgFrontend::UI::KeyMgmt::create_tool_bars
void create_tool_bars()
Create a tool bars object.
Definition: KeyMgmt.cpp:248
+
GpgFrontend::UI::KeyMgmt::create_menus
void create_menus()
Create a menus object.
Definition: KeyMgmt.cpp:225
GpgFrontend::UI::KeyMgmt::KeyMgmt
KeyMgmt(QWidget *parent=nullptr)
Construct a new Key Mgmt object.
Definition: KeyMgmt.cpp:46
GpgFrontend::UI::KeyServerImportDialog
Definition: KeyServerImportDialog.h:46
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/KeyServerImportDialog_8h_source.html b/docs/html/KeyServerImportDialog_8h_source.html index 4dc36b03..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',
182 #endif // __KEY_SERVER_IMPORT_DIALOG_H__
GpgFrontend::UI::GeneralDialog
Definition: GeneralDialog.h:35
GpgFrontend::UI::KeyServerImportDialog
Definition: KeyServerImportDialog.h:46
-
GpgFrontend::UI::KeyServerImportDialog::SlotImport
void SlotImport(const KeyIdArgsListPtr &keys)
Definition: KeyServerImportDialog.cpp:447
-
GpgFrontend::UI::KeyServerImportDialog::import_keys
void import_keys(ByteArrayPtr in_data)
Definition: KeyServerImportDialog.cpp:547
+
GpgFrontend::UI::KeyServerImportDialog::SlotImport
void SlotImport(const KeyIdArgsListPtr &keys)
Definition: KeyServerImportDialog.cpp:440
+
GpgFrontend::UI::KeyServerImportDialog::import_keys
void import_keys(ByteArrayPtr in_data)
Definition: KeyServerImportDialog.cpp:540
GpgFrontend::UI::KeyServerImportDialog::create_button
QPushButton * create_button(const QString &text, const char *member)
Create a button object.
-
GpgFrontend::UI::KeyServerImportDialog::create_keys_table
void create_keys_table()
Create a keys table object.
Definition: KeyServerImportDialog.cpp:204
-
GpgFrontend::UI::KeyServerImportDialog::slot_import_finished
void slot_import_finished(QNetworkReply::NetworkError error, QByteArray buffer)
Definition: KeyServerImportDialog.cpp:496
+
GpgFrontend::UI::KeyServerImportDialog::create_keys_table
void create_keys_table()
Create a keys table object.
Definition: KeyServerImportDialog.cpp:197
+
GpgFrontend::UI::KeyServerImportDialog::slot_import_finished
void slot_import_finished(QNetworkReply::NetworkError error, QByteArray buffer)
Definition: KeyServerImportDialog.cpp:489
GpgFrontend::UI::KeyServerImportDialog::KeyServerImportDialog
KeyServerImportDialog(bool automatic, QWidget *parent)
Construct a new Key Server Import Dialog object.
Definition: KeyServerImportDialog.cpp:44
-
GpgFrontend::UI::KeyServerImportDialog::set_message
void set_message(const QString &text, bool error)
Set the message object.
Definition: KeyServerImportDialog.cpp:226
-
GpgFrontend::UI::KeyServerImportDialog::create_comboBox
QComboBox * create_comboBox()
Create a comboBox object.
Definition: KeyServerImportDialog.cpp:174
-
GpgFrontend::UI::KeyServerImportDialog::slot_import
void slot_import()
import key(s) for the key table selection
Definition: KeyServerImportDialog.cpp:434
-
GpgFrontend::UI::KeyServerImportDialog::set_loading
void set_loading(bool status)
Set the loading object.
Definition: KeyServerImportDialog.cpp:565
+
GpgFrontend::UI::KeyServerImportDialog::set_message
void set_message(const QString &text, bool error)
Set the message object.
Definition: KeyServerImportDialog.cpp:219
+
GpgFrontend::UI::KeyServerImportDialog::create_comboBox
QComboBox * create_comboBox()
Create a comboBox object.
Definition: KeyServerImportDialog.cpp:167
+
GpgFrontend::UI::KeyServerImportDialog::slot_import
void slot_import()
import key(s) for the key table selection
Definition: KeyServerImportDialog.cpp:427
+
GpgFrontend::UI::KeyServerImportDialog::set_loading
void set_loading(bool status)
Set the loading object.
Definition: KeyServerImportDialog.cpp:558
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/KeygenDialog_8h_source.html b/docs/html/KeygenDialog_8h_source.html index e3cfed8c..7dfd2d3d 100644 --- a/docs/html/KeygenDialog_8h_source.html +++ b/docs/html/KeygenDialog_8h_source.html @@ -163,31 +163,31 @@ $(document).ready(function(){initNavTree('KeygenDialog_8h_source.html',''); init
186 #endif // __KEYGENDIALOG_H__
GpgFrontend::UI::GeneralDialog
Definition: GeneralDialog.h:35
GpgFrontend::UI::KeyGenDialog
Definition: KeygenDialog.h:41
-
GpgFrontend::UI::KeyGenDialog::create_basic_info_group_box
QGroupBox * create_basic_info_group_box()
Create a basic info group box object.
Definition: KeygenDialog.cpp:379
+
GpgFrontend::UI::KeyGenDialog::create_basic_info_group_box
QGroupBox * create_basic_info_group_box()
Create a basic info group box object.
Definition: KeygenDialog.cpp:367
GpgFrontend::UI::KeyGenDialog::error_messages_
QStringList error_messages_
Definition: KeygenDialog.h:87
-
GpgFrontend::UI::KeyGenDialog::slot_signing_box_changed
void slot_signing_box_changed(int state)
Definition: KeygenDialog.cpp:262
+
GpgFrontend::UI::KeyGenDialog::slot_signing_box_changed
void slot_signing_box_changed(int state)
Definition: KeygenDialog.cpp:250
GpgFrontend::UI::KeyGenDialog::expire_check_box_
QCheckBox * expire_check_box_
Checkbox, if key should expire.
Definition: KeygenDialog.h:100
GpgFrontend::UI::KeyGenDialog::date_edit_
QDateTimeEdit * date_edit_
Date edit for expiration date.
Definition: KeygenDialog.h:99
GpgFrontend::UI::KeyGenDialog::key_type_combo_box_
QComboBox * key_type_combo_box_
Combobox for Key type.
Definition: KeygenDialog.h:98
GpgFrontend::UI::KeyGenDialog::comment_edit_
QLineEdit * comment_edit_
Line edit for the keys comment.
Definition: KeygenDialog.h:95
GpgFrontend::UI::KeyGenDialog::email_edit_
QLineEdit * email_edit_
Line edit for the keys email.
Definition: KeygenDialog.h:94
GpgFrontend::UI::KeyGenDialog::KeyGenDialog
KeyGenDialog(QWidget *parent=nullptr)
Definition: KeygenDialog.cpp:41
-
GpgFrontend::UI::KeyGenDialog::slot_certification_box_changed
void slot_certification_box_changed(int state)
Definition: KeygenDialog.cpp:270
-
GpgFrontend::UI::KeyGenDialog::refresh_widgets_state
void refresh_widgets_state()
Definition: KeygenDialog.cpp:295
-
GpgFrontend::UI::KeyGenDialog::slot_expire_box_changed
void slot_expire_box_changed()
Definition: KeygenDialog.cpp:213
+
GpgFrontend::UI::KeyGenDialog::slot_certification_box_changed
void slot_certification_box_changed(int state)
Definition: KeygenDialog.cpp:258
+
GpgFrontend::UI::KeyGenDialog::refresh_widgets_state
void refresh_widgets_state()
Definition: KeygenDialog.cpp:283
+
GpgFrontend::UI::KeyGenDialog::slot_expire_box_changed
void slot_expire_box_changed()
Definition: KeygenDialog.cpp:201
GpgFrontend::UI::KeyGenDialog::key_usage_group_box_
QGroupBox * key_usage_group_box_
Definition: KeygenDialog.h:102
GpgFrontend::UI::KeyGenDialog::name_edit_
QLineEdit * name_edit_
Line edit for the keys name.
Definition: KeygenDialog.h:93
GpgFrontend::UI::KeyGenDialog::error_label_
QLabel * error_label_
Label containing error message.
Definition: KeygenDialog.h:92
-
GpgFrontend::UI::KeyGenDialog::create_key_usage_group_box
QGroupBox * create_key_usage_group_box()
Create a key usage group box object.
Definition: KeygenDialog.cpp:221
-
GpgFrontend::UI::KeyGenDialog::slot_authentication_box_changed
void slot_authentication_box_changed(int state)
Definition: KeygenDialog.cpp:278
-
GpgFrontend::UI::KeyGenDialog::set_signal_slot
void set_signal_slot()
Set the signal slot object.
Definition: KeygenDialog.cpp:347
+
GpgFrontend::UI::KeyGenDialog::create_key_usage_group_box
QGroupBox * create_key_usage_group_box()
Create a key usage group box object.
Definition: KeygenDialog.cpp:209
+
GpgFrontend::UI::KeyGenDialog::slot_authentication_box_changed
void slot_authentication_box_changed(int state)
Definition: KeygenDialog.cpp:266
+
GpgFrontend::UI::KeyGenDialog::set_signal_slot
void set_signal_slot()
Set the signal slot object.
Definition: KeygenDialog.cpp:335
GpgFrontend::UI::KeyGenDialog::button_box_
QDialogButtonBox * button_box_
Box for standard buttons.
Definition: KeygenDialog.h:91
GpgFrontend::UI::KeyGenDialog::key_size_spin_box_
QSpinBox * key_size_spin_box_
Spinbox for the keys size (in bit)
Definition: KeygenDialog.h:97
GpgFrontend::UI::KeyGenDialog::key_usage_check_boxes_
std::vector< QCheckBox * > key_usage_check_boxes_
ENCR, SIGN, CERT, AUTH.
Definition: KeygenDialog.h:105
-
GpgFrontend::UI::KeyGenDialog::slot_activated_key_type
void slot_activated_key_type(int index)
Definition: KeygenDialog.cpp:286
-
GpgFrontend::UI::KeyGenDialog::slot_encryption_box_changed
void slot_encryption_box_changed(int state)
Definition: KeygenDialog.cpp:254
-
GpgFrontend::UI::KeyGenDialog::check_email_address
bool check_email_address(const QString &str)
Definition: KeygenDialog.cpp:375
-
GpgFrontend::UI::KeyGenDialog::slot_key_gen_accept
void slot_key_gen_accept()
Definition: KeygenDialog.cpp:103
+
GpgFrontend::UI::KeyGenDialog::slot_activated_key_type
void slot_activated_key_type(int index)
Definition: KeygenDialog.cpp:274
+
GpgFrontend::UI::KeyGenDialog::slot_encryption_box_changed
void slot_encryption_box_changed(int state)
Definition: KeygenDialog.cpp:242
+
GpgFrontend::UI::KeyGenDialog::check_email_address
bool check_email_address(const QString &str)
Definition: KeygenDialog.cpp:363
+
GpgFrontend::UI::KeyGenDialog::slot_key_gen_accept
void slot_key_gen_accept()
Definition: KeygenDialog.cpp:91
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/MainWindow_8h_source.html b/docs/html/MainWindow_8h_source.html index 2d74b615..4c46fff0 100644 --- a/docs/html/MainWindow_8h_source.html +++ b/docs/html/MainWindow_8h_source.html @@ -338,11 +338,11 @@ $(document).ready(function(){initNavTree('MainWindow_8h_source.html',''); initRe
GpgFrontend::UI::MainWindow
Definition: MainWindow.h:53
GpgFrontend::UI::MainWindow::import_key_from_edit_act_
QAction * import_key_from_edit_act_
Action to import key from edit.
Definition: MainWindow.h:404
GpgFrontend::UI::MainWindow::slot_show_key_details
void slot_show_key_details()
Definition: MainWindowSlotFunction.cpp:738
-
GpgFrontend::UI::MainWindow::create_dock_windows
void create_dock_windows()
Definition: MainWindowUI.cpp:590
+
GpgFrontend::UI::MainWindow::create_dock_windows
void create_dock_windows()
Definition: MainWindowUI.cpp:583
GpgFrontend::UI::MainWindow::SlotOpenFile
void SlotOpenFile(QString &path)
Definition: MainWindowSlotFunction.cpp:766
GpgFrontend::UI::MainWindow::Init
void Init() noexcept
Definition: MainWindow.cpp:46
GpgFrontend::UI::MainWindow::close_tab_act_
QAction * close_tab_act_
Action to print.
Definition: MainWindow.h:396
-
GpgFrontend::UI::MainWindow::SlotFileDecrypt
void SlotFileDecrypt()
Definition: MainWindowFileSlotFunction.cpp:292
+
GpgFrontend::UI::MainWindow::SlotFileDecrypt
void SlotFileDecrypt()
Definition: MainWindowFileSlotFunction.cpp:287
GpgFrontend::UI::MainWindow::create_actions
void create_actions()
Definition: MainWindowUI.cpp:37
GpgFrontend::UI::MainWindow::clean_double_line_breaks_act_
QAction * clean_double_line_breaks_act_
Definition: MainWindow.h:405
GpgFrontend::UI::MainWindow::sign_act_
QAction * sign_act_
Action to sign text.
Definition: MainWindow.h:402
@@ -350,16 +350,16 @@ $(document).ready(function(){initNavTree('MainWindow_8h_source.html',''); initRe
GpgFrontend::UI::MainWindow::verify_act_
QAction * verify_act_
Action to verify text.
Definition: MainWindow.h:403
GpgFrontend::UI::MainWindow::key_menu_
QMenu * key_menu_
Submenu for key-operations.
Definition: MainWindow.h:368
GpgFrontend::UI::MainWindow::slot_open_key_management
void slot_open_key_management()
Definition: MainWindowSlotUI.cpp:53
-
GpgFrontend::UI::MainWindow::closeEvent
void closeEvent(QCloseEvent *event) override
Definition: MainWindow.cpp:280
-
GpgFrontend::UI::MainWindow::create_status_bar
void create_status_bar()
Definition: MainWindowUI.cpp:574
+
GpgFrontend::UI::MainWindow::closeEvent
void closeEvent(QCloseEvent *event) override
Definition: MainWindow.cpp:268
+
GpgFrontend::UI::MainWindow::create_status_bar
void create_status_bar()
Definition: MainWindowUI.cpp:567
GpgFrontend::UI::MainWindow::slot_decrypt_verify
void slot_decrypt_verify()
Definition: MainWindowSlotFunction.cpp:516
GpgFrontend::UI::MainWindow::file_tool_bar_
QToolBar * file_tool_bar_
Toolbar holding file actions.
Definition: MainWindow.h:377
GpgFrontend::UI::MainWindow::crypt_menu_
QMenu * crypt_menu_
Submenu for crypt-operations.
Definition: MainWindow.h:365
-
GpgFrontend::UI::MainWindow::restore_settings
void restore_settings()
Definition: MainWindow.cpp:175
+
GpgFrontend::UI::MainWindow::restore_settings
void restore_settings()
Definition: MainWindow.cpp:167
GpgFrontend::UI::MainWindow::save_as_act_
QAction * save_as_act_
Action to save file as.
Definition: MainWindow.h:394
GpgFrontend::UI::MainWindow::encrypt_sign_act_
QAction * encrypt_sign_act_
Action to encrypt and sign text.
Definition: MainWindow.h:399
GpgFrontend::UI::MainWindow::slot_disable_tab_actions
void slot_disable_tab_actions(int number)
Definition: MainWindowSlotUI.cpp:61
-
GpgFrontend::UI::MainWindow::SlotFileEncryptSign
void SlotFileEncryptSign()
Definition: MainWindowFileSlotFunction.cpp:553
+
GpgFrontend::UI::MainWindow::SlotFileEncryptSign
void SlotFileEncryptSign()
Definition: MainWindowFileSlotFunction.cpp:538
GpgFrontend::UI::MainWindow::SlotSetRestartNeeded
void SlotSetRestartNeeded(int)
Definition: MainWindowSlotUI.cpp:184
GpgFrontend::UI::MainWindow::slot_open_file_tab
void slot_open_file_tab()
Definition: MainWindowSlotUI.cpp:59
GpgFrontend::UI::MainWindow::gpg_menu_
QMenu * gpg_menu_
Submenu for help-operations.
Definition: MainWindow.h:366
@@ -372,7 +372,7 @@ $(document).ready(function(){initNavTree('MainWindow_8h_source.html',''); initRe
GpgFrontend::UI::MainWindow::zoom_in_act_
QAction * zoom_in_act_
Action to zoom in.
Definition: MainWindow.h:433
GpgFrontend::UI::MainWindow::slot_sign
void slot_sign()
Definition: MainWindowSlotFunction.cpp:173
GpgFrontend::UI::MainWindow::new_tab_act_
QAction * new_tab_act_
Action to create new tab.
Definition: MainWindow.h:388
-
GpgFrontend::UI::MainWindow::close_attachment_dock
void close_attachment_dock()
Definition: MainWindow.cpp:271
+
GpgFrontend::UI::MainWindow::close_attachment_dock
void close_attachment_dock()
Definition: MainWindow.cpp:259
GpgFrontend::UI::MainWindow::slot_version_upgrade
void slot_version_upgrade(const SoftwareVersion &version)
Definition: MainWindowSlotFunction.cpp:768
GpgFrontend::UI::MainWindow::open_act_
QAction * open_act_
Action to open file.
Definition: MainWindow.h:391
GpgFrontend::UI::MainWindow::slot_import_key_from_edit
void slot_import_key_from_edit()
Definition: MainWindowSlotUI.cpp:47
@@ -386,7 +386,7 @@ $(document).ready(function(){initNavTree('MainWindow_8h_source.html',''); initRe
GpgFrontend::UI::MainWindow::copy_act_
QAction * copy_act_
Action to copy text.
Definition: MainWindow.h:425
GpgFrontend::UI::MainWindow::slot_append_selected_keys
void slot_append_selected_keys()
Definition: MainWindowSlotFunction.cpp:609
GpgFrontend::UI::MainWindow::gnupg_act_
QAction * gnupg_act_
Action to open about dialog.
Definition: MainWindow.h:438
-
GpgFrontend::UI::MainWindow::save_settings
void save_settings()
Definition: MainWindow.cpp:246
+
GpgFrontend::UI::MainWindow::save_settings
void save_settings()
Definition: MainWindow.cpp:238
GpgFrontend::UI::MainWindow::edit_
TextEdit * edit_
Tabwidget holding the edit-windows.
Definition: MainWindow.h:362
GpgFrontend::UI::MainWindow::slot_cut_pgp_header
void slot_cut_pgp_header()
Definition: MainWindowSlotUI.cpp:160
GpgFrontend::UI::MainWindow::slot_add_pgp_header
void slot_add_pgp_header()
Definition: MainWindowSlotUI.cpp:146
@@ -395,26 +395,26 @@ $(document).ready(function(){initNavTree('MainWindow_8h_source.html',''); initRe
GpgFrontend::UI::MainWindow::slot_open_settings_dialog
void slot_open_settings_dialog()
Definition: MainWindowSlotUI.cpp:103
GpgFrontend::UI::MainWindow::switch_tab_down_act_
QAction * switch_tab_down_act_
Action to switch tab down.
Definition: MainWindow.h:390
GpgFrontend::UI::MainWindow::help_menu_
QMenu * help_menu_
Submenu for help-operations.
Definition: MainWindow.h:367
-
GpgFrontend::UI::MainWindow::SlotFileSign
void SlotFileSign()
Definition: MainWindowFileSlotFunction.cpp:365
+
GpgFrontend::UI::MainWindow::SlotFileSign
void SlotFileSign()
Definition: MainWindowFileSlotFunction.cpp:360
GpgFrontend::UI::MainWindow::switch_tab_up_act_
QAction * switch_tab_up_act_
Action to switch tab up.
Definition: MainWindow.h:389
GpgFrontend::UI::MainWindow::import_key_menu_
QMenu * import_key_menu_
Submenu for import operations.
Definition: MainWindow.h:370
GpgFrontend::UI::MainWindow::print_act_
QAction * print_act_
Action to print.
Definition: MainWindow.h:395
GpgFrontend::UI::MainWindow::create_attachment_dock
void create_attachment_dock()
GpgFrontend::UI::MainWindow::add_pgp_header_act_
QAction * add_pgp_header_act_
Action for adding the PGP header.
Definition: MainWindow.h:443
-
GpgFrontend::UI::MainWindow::SlotFileVerify
void SlotFileVerify()
Definition: MainWindowFileSlotFunction.cpp:460
+
GpgFrontend::UI::MainWindow::SlotFileVerify
void SlotFileVerify()
Definition: MainWindowFileSlotFunction.cpp:450
GpgFrontend::UI::MainWindow::about_act_
QAction * about_act_
Action to open about dialog.
Definition: MainWindow.h:435
GpgFrontend::UI::MainWindow::slot_copy_key_id_to_clipboard
void slot_copy_key_id_to_clipboard()
Definition: MainWindowSlotFunction.cpp:725
GpgFrontend::UI::MainWindow::SlotFileEncrypt
void SlotFileEncrypt()
Definition: MainWindowFileSlotFunction.cpp:155
-
GpgFrontend::UI::MainWindow::create_menus
void create_menus()
Definition: MainWindowUI.cpp:451
+
GpgFrontend::UI::MainWindow::create_menus
void create_menus()
Definition: MainWindowUI.cpp:444
GpgFrontend::UI::MainWindow::undo_act_
QAction * undo_act_
Action to undo last action.
Definition: MainWindow.h:431
GpgFrontend::UI::MainWindow::decrypt_act_
QAction * decrypt_act_
Action to decrypt text.
Definition: MainWindow.h:401
GpgFrontend::UI::MainWindow::slot_verify
void slot_verify()
Definition: MainWindowSlotFunction.cpp:327
-
GpgFrontend::UI::MainWindow::create_tool_bars
void create_tool_bars()
Definition: MainWindowUI.cpp:525
+
GpgFrontend::UI::MainWindow::create_tool_bars
void create_tool_bars()
Definition: MainWindowUI.cpp:518
GpgFrontend::UI::MainWindow::slot_start_wizard
void slot_start_wizard()
Definition: MainWindowSlotUI.cpp:41
GpgFrontend::UI::MainWindow::crypt_tool_bar_
QToolBar * crypt_tool_bar_
Toolbar holding crypt actions.
Definition: MainWindow.h:376
GpgFrontend::UI::MainWindow::start_wizard_act_
QAction * start_wizard_act_
Action to open the wizard.
Definition: MainWindow.h:441
GpgFrontend::UI::MainWindow::save_act_
QAction * save_act_
Action to save file.
Definition: MainWindow.h:393
-
GpgFrontend::UI::MainWindow::SlotFileDecryptVerify
void SlotFileDecryptVerify()
Definition: MainWindowFileSlotFunction.cpp:684
+
GpgFrontend::UI::MainWindow::SlotFileDecryptVerify
void SlotFileDecryptVerify()
Definition: MainWindowFileSlotFunction.cpp:664
GpgFrontend::UI::MainWindow::edit_tool_bar_
QToolBar * edit_tool_bar_
Toolbar holding edit actions.
Definition: MainWindow.h:378
GpgFrontend::UI::MainWindow::append_selected_keys_act_
QAction * append_selected_keys_act_
Action to append selected keys to edit.
Definition: MainWindow.h:414
GpgFrontend::UI::MainWindow::quit_act_
QAction * quit_act_
Action to quit application.
Definition: MainWindow.h:397
diff --git a/docs/html/SubkeyGenerateDialog_8h_source.html b/docs/html/SubkeyGenerateDialog_8h_source.html index de860606..f40ab9dc 100644 --- a/docs/html/SubkeyGenerateDialog_8h_source.html +++ b/docs/html/SubkeyGenerateDialog_8h_source.html @@ -156,24 +156,24 @@ $(document).ready(function(){initNavTree('SubkeyGenerateDialog_8h_source.html','
GpgFrontend::UI::GeneralDialog
Definition: GeneralDialog.h:35
GpgFrontend::UI::SubkeyGenerateDialog
Definition: SubkeyGenerateDialog.h:40
GpgFrontend::UI::SubkeyGenerateDialog::no_pass_phrase_check_box_
QCheckBox * no_pass_phrase_check_box_
Checkbox, if key should expire.
Definition: SubkeyGenerateDialog.h:72
-
GpgFrontend::UI::SubkeyGenerateDialog::create_basic_info_group_box
QGroupBox * create_basic_info_group_box()
Create a basic info group box object.
Definition: SubkeyGenerateDialog.cpp:136
-
GpgFrontend::UI::SubkeyGenerateDialog::slot_authentication_box_changed
void slot_authentication_box_changed(int state)
Definition: SubkeyGenerateDialog.cpp:382
-
GpgFrontend::UI::SubkeyGenerateDialog::slot_encryption_box_changed
void slot_encryption_box_changed(int state)
Definition: SubkeyGenerateDialog.cpp:358
-
GpgFrontend::UI::SubkeyGenerateDialog::slot_expire_box_changed
void slot_expire_box_changed()
Definition: SubkeyGenerateDialog.cpp:216
-
GpgFrontend::UI::SubkeyGenerateDialog::refresh_widgets_state
void refresh_widgets_state()
Definition: SubkeyGenerateDialog.cpp:224
-
GpgFrontend::UI::SubkeyGenerateDialog::slot_activated_key_type
void slot_activated_key_type(int index)
Definition: SubkeyGenerateDialog.cpp:390
+
GpgFrontend::UI::SubkeyGenerateDialog::create_basic_info_group_box
QGroupBox * create_basic_info_group_box()
Create a basic info group box object.
Definition: SubkeyGenerateDialog.cpp:124
+
GpgFrontend::UI::SubkeyGenerateDialog::slot_authentication_box_changed
void slot_authentication_box_changed(int state)
Definition: SubkeyGenerateDialog.cpp:370
+
GpgFrontend::UI::SubkeyGenerateDialog::slot_encryption_box_changed
void slot_encryption_box_changed(int state)
Definition: SubkeyGenerateDialog.cpp:346
+
GpgFrontend::UI::SubkeyGenerateDialog::slot_expire_box_changed
void slot_expire_box_changed()
Definition: SubkeyGenerateDialog.cpp:204
+
GpgFrontend::UI::SubkeyGenerateDialog::refresh_widgets_state
void refresh_widgets_state()
Definition: SubkeyGenerateDialog.cpp:212
+
GpgFrontend::UI::SubkeyGenerateDialog::slot_activated_key_type
void slot_activated_key_type(int index)
Definition: SubkeyGenerateDialog.cpp:378
GpgFrontend::UI::SubkeyGenerateDialog::key_usage_check_boxes_
std::vector< QCheckBox * > key_usage_check_boxes_
ENCR, SIGN, CERT, AUTH.
Definition: SubkeyGenerateDialog.h:75
GpgFrontend::UI::SubkeyGenerateDialog::error_label_
QLabel * error_label_
Label containing error message.
Definition: SubkeyGenerateDialog.h:67
-
GpgFrontend::UI::SubkeyGenerateDialog::slot_certification_box_changed
void slot_certification_box_changed(int state)
Definition: SubkeyGenerateDialog.cpp:374
+
GpgFrontend::UI::SubkeyGenerateDialog::slot_certification_box_changed
void slot_certification_box_changed(int state)
Definition: SubkeyGenerateDialog.cpp:362
GpgFrontend::UI::SubkeyGenerateDialog::SubkeyGenerateDialog
SubkeyGenerateDialog(const KeyId &key_id, QWidget *parent)
Construct a new Subkey Generate Dialog object.
Definition: SubkeyGenerateDialog.cpp:40
-
GpgFrontend::UI::SubkeyGenerateDialog::set_signal_slot
void set_signal_slot()
Set the signal slot object.
Definition: SubkeyGenerateDialog.cpp:188
-
GpgFrontend::UI::SubkeyGenerateDialog::create_key_usage_group_box
QGroupBox * create_key_usage_group_box()
Create a key usage group box object.
Definition: SubkeyGenerateDialog.cpp:103
+
GpgFrontend::UI::SubkeyGenerateDialog::set_signal_slot
void set_signal_slot()
Set the signal slot object.
Definition: SubkeyGenerateDialog.cpp:176
+
GpgFrontend::UI::SubkeyGenerateDialog::create_key_usage_group_box
QGroupBox * create_key_usage_group_box()
Create a key usage group box object.
Definition: SubkeyGenerateDialog.cpp:91
GpgFrontend::UI::SubkeyGenerateDialog::date_edit_
QDateTimeEdit * date_edit_
Date edit for expiration date.
Definition: SubkeyGenerateDialog.h:70
GpgFrontend::UI::SubkeyGenerateDialog::key_size_spin_box_
QSpinBox * key_size_spin_box_
Spinbox for the keys size (in bit)
Definition: SubkeyGenerateDialog.h:68
-
GpgFrontend::UI::SubkeyGenerateDialog::slot_key_gen_accept
void slot_key_gen_accept()
Definition: SubkeyGenerateDialog.cpp:271
+
GpgFrontend::UI::SubkeyGenerateDialog::slot_key_gen_accept
void slot_key_gen_accept()
Definition: SubkeyGenerateDialog.cpp:259
GpgFrontend::UI::SubkeyGenerateDialog::button_box_
QDialogButtonBox * button_box_
Box for standard buttons.
Definition: SubkeyGenerateDialog.h:66
GpgFrontend::UI::SubkeyGenerateDialog::key_type_combo_box_
QComboBox * key_type_combo_box_
Combobox for Key tpe.
Definition: SubkeyGenerateDialog.h:69
-
GpgFrontend::UI::SubkeyGenerateDialog::slot_signing_box_changed
void slot_signing_box_changed(int state)
Definition: SubkeyGenerateDialog.cpp:366
+
GpgFrontend::UI::SubkeyGenerateDialog::slot_signing_box_changed
void slot_signing_box_changed(int state)
Definition: SubkeyGenerateDialog.cpp:354
GpgFrontend::UI::SubkeyGenerateDialog::expire_check_box_
QCheckBox * expire_check_box_
Checkbox, if key should expire.
Definition: SubkeyGenerateDialog.h:71
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/VerifyKeyDetailBox_8h_source.html b/docs/html/VerifyKeyDetailBox_8h_source.html index a4835734..35ac41d5 100644 --- a/docs/html/VerifyKeyDetailBox_8h_source.html +++ b/docs/html/VerifyKeyDetailBox_8h_source.html @@ -114,7 +114,7 @@ $(document).ready(function(){initNavTree('VerifyKeyDetailBox_8h_source.html','')
73 #endif // __VERIFYKEYDETAILBOX_H__
GpgFrontend::GpgSignature
Definition: GpgSignature.h:43
GpgFrontend::UI::VerifyKeyDetailBox
Definition: VerifyKeyDetailBox.h:40
-
GpgFrontend::UI::VerifyKeyDetailBox::create_key_info_grid
QGridLayout * create_key_info_grid(const GpgSignature &signature)
Create a key info grid object.
Definition: VerifyKeyDetailBox.cpp:180
+
GpgFrontend::UI::VerifyKeyDetailBox::create_key_info_grid
QGridLayout * create_key_info_grid(const GpgSignature &signature)
Create a key info grid object.
Definition: VerifyKeyDetailBox.cpp:173
GpgFrontend::UI::VerifyKeyDetailBox::fpr_
std::string fpr_
fingerprint of the key
Definition: VerifyKeyDetailBox.h:68
GpgFrontend::UI::VerifyKeyDetailBox::VerifyKeyDetailBox
VerifyKeyDetailBox(const GpgSignature &signature, QWidget *parent)
Construct a new Verify Key Detail Box object.
Definition: VerifyKeyDetailBox.cpp:36
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/Wizard_8h_source.html b/docs/html/Wizard_8h_source.html index ae16f049..ecf9f6dc 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
188 
189 #endif
GpgFrontend::UI::ChoosePage
Definition: Wizard.h:98
-
GpgFrontend::UI::ChoosePage::nextId
int nextId() const override
Definition: Wizard.cpp:178
-
GpgFrontend::UI::ChoosePage::ChoosePage
ChoosePage(QWidget *parent=nullptr)
Construct a new Choose Page object.
Definition: Wizard.cpp:123
-
GpgFrontend::UI::ChoosePage::slot_jump_page
void slot_jump_page(const QString &page)
Definition: Wizard.cpp:180
+
GpgFrontend::UI::ChoosePage::nextId
int nextId() const override
Definition: Wizard.cpp:173
+
GpgFrontend::UI::ChoosePage::ChoosePage
ChoosePage(QWidget *parent=nullptr)
Construct a new Choose Page object.
Definition: Wizard.cpp:118
+
GpgFrontend::UI::ChoosePage::slot_jump_page
void slot_jump_page(const QString &page)
Definition: Wizard.cpp:175
GpgFrontend::UI::ConclusionPage
Definition: Wizard.h:164
-
GpgFrontend::UI::ConclusionPage::nextId
int nextId() const override
Definition: Wizard.cpp:265
-
GpgFrontend::UI::ConclusionPage::ConclusionPage
ConclusionPage(QWidget *parent=nullptr)
Construct a new Conclusion Page object.
Definition: Wizard.cpp:229
+
GpgFrontend::UI::ConclusionPage::nextId
int nextId() const override
Definition: Wizard.cpp:260
+
GpgFrontend::UI::ConclusionPage::ConclusionPage
ConclusionPage(QWidget *parent=nullptr)
Construct a new Conclusion Page object.
Definition: Wizard.cpp:224
GpgFrontend::UI::IntroPage
Definition: Wizard.h:78
-
GpgFrontend::UI::IntroPage::nextId
int nextId() const override
Definition: Wizard.cpp:121
-
GpgFrontend::UI::IntroPage::IntroPage
IntroPage(QWidget *parent=nullptr)
Construct a new Intro Page object.
Definition: Wizard.cpp:84
+
GpgFrontend::UI::IntroPage::nextId
int nextId() const override
Definition: Wizard.cpp:116
+
GpgFrontend::UI::IntroPage::IntroPage
IntroPage(QWidget *parent=nullptr)
Construct a new Intro Page object.
Definition: Wizard.cpp:79
GpgFrontend::UI::KeyGenPage
Definition: Wizard.h:133
-
GpgFrontend::UI::KeyGenPage::KeyGenPage
KeyGenPage(QWidget *parent=nullptr)
Construct a new Key Gen Page object.
Definition: Wizard.cpp:189
-
GpgFrontend::UI::KeyGenPage::nextId
int nextId() const override
Definition: Wizard.cpp:222
+
GpgFrontend::UI::KeyGenPage::KeyGenPage
KeyGenPage(QWidget *parent=nullptr)
Construct a new Key Gen Page object.
Definition: Wizard.cpp:184
+
GpgFrontend::UI::KeyGenPage::nextId
int nextId() const override
Definition: Wizard.cpp:217
GpgFrontend::UI::Wizard
Definition: Wizard.h:44
GpgFrontend::UI::Wizard::Wizard
Wizard(QWidget *parent=nullptr)
Construct a new Wizard object.
Definition: Wizard.cpp:35
GpgFrontend::UI::Wizard::SignalOpenHelp
void SignalOpenHelp(QString page)
diff --git a/docs/html/classGpgFrontend_1_1ChannelObject.html b/docs/html/classGpgFrontend_1_1ChannelObject.html index 9234b7ea..36bbf379 100644 --- a/docs/html/classGpgFrontend_1_1ChannelObject.html +++ b/docs/html/classGpgFrontend_1_1ChannelObject.html @@ -118,20 +118,20 @@ Inheritance diagram for GpgFrontend::ChannelObject: - - - - - - - - - - - - - - + + + + + + + + + + + + + +
diff --git a/docs/html/classGpgFrontend_1_1ChannelObject__inherit__graph.map b/docs/html/classGpgFrontend_1_1ChannelObject__inherit__graph.map index 9fe7650c..e0614bbf 100644 --- a/docs/html/classGpgFrontend_1_1ChannelObject__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1ChannelObject__inherit__graph.map @@ -15,18 +15,18 @@ - - - - - - - - - - - - - - + + + + + + + + + + + + + + diff --git a/docs/html/classGpgFrontend_1_1ChannelObject__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1ChannelObject__inherit__graph.md5 index 9b8173c9..caf7c0ec 100644 --- a/docs/html/classGpgFrontend_1_1ChannelObject__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1ChannelObject__inherit__graph.md5 @@ -1 +1 @@ -2ed67f78500bac86a4cd2e70e3e98442 \ No newline at end of file +93d2928cbbf8af327f5ce00cf0f0e75e \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1ChannelObject__inherit__graph.png b/docs/html/classGpgFrontend_1_1ChannelObject__inherit__graph.png index b114b6de..1bb4bb76 100644 Binary files a/docs/html/classGpgFrontend_1_1ChannelObject__inherit__graph.png and b/docs/html/classGpgFrontend_1_1ChannelObject__inherit__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1DataObjectOperator.html b/docs/html/classGpgFrontend_1_1DataObjectOperator.html index df06fcce..7c33dcf6 100644 --- a/docs/html/classGpgFrontend_1_1DataObjectOperator.html +++ b/docs/html/classGpgFrontend_1_1DataObjectOperator.html @@ -107,12 +107,12 @@ Collaboration diagram for GpgFrontend::DataObjectOperator:
Collaboration graph
- + - +
diff --git a/docs/html/classGpgFrontend_1_1DataObjectOperator__coll__graph.map b/docs/html/classGpgFrontend_1_1DataObjectOperator__coll__graph.map index 74707bed..001c45eb 100644 --- a/docs/html/classGpgFrontend_1_1DataObjectOperator__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1DataObjectOperator__coll__graph.map @@ -1,8 +1,8 @@ - + - + diff --git a/docs/html/classGpgFrontend_1_1DataObjectOperator__coll__graph.md5 b/docs/html/classGpgFrontend_1_1DataObjectOperator__coll__graph.md5 index f70cfc66..6f031fbf 100644 --- a/docs/html/classGpgFrontend_1_1DataObjectOperator__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1DataObjectOperator__coll__graph.md5 @@ -1 +1 @@ -22eb5da53743b5af242bac30a5e74f59 \ No newline at end of file +e32bfce608224c6183c30cb059aaa829 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1DataObjectOperator__coll__graph.png b/docs/html/classGpgFrontend_1_1DataObjectOperator__coll__graph.png index 54db664b..02bc8e8b 100644 Binary files a/docs/html/classGpgFrontend_1_1DataObjectOperator__coll__graph.png and b/docs/html/classGpgFrontend_1_1DataObjectOperator__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1GlobalSettingStation-members.html b/docs/html/classGpgFrontend_1_1GlobalSettingStation-members.html index 5264f6b4..705b1a0a 100644 --- a/docs/html/classGpgFrontend_1_1GlobalSettingStation-members.html +++ b/docs/html/classGpgFrontend_1_1GlobalSettingStation-members.html @@ -114,24 +114,25 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1GlobalSettingStati - + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + +
GetResourceDir() constGpgFrontend::GlobalSettingStationinline
GetStandaloneDatabaseDir() constGpgFrontend::GlobalSettingStationinline
GetStandaloneGpgBinDir() constGpgFrontend::GlobalSettingStationinline
GetUISettings() noexceptGpgFrontend::GlobalSettingStationinline
GetUISettings() noexceptGpgFrontend::GlobalSettingStation
GlobalSettingStation(int channel=SingletonFunctionObject::GetDefaultChannel()) noexceptGpgFrontend::GlobalSettingStationexplicit
init_app_secure_key() (defined in GpgFrontend::GlobalSettingStation)GpgFrontend::GlobalSettingStationprivate
operator=(const SingletonFunctionObject< GlobalSettingStation > &)=deleteGpgFrontend::SingletonFunctionObject< GlobalSettingStation >
operator=(const GlobalSettingStation &)=delete (defined in GpgFrontend::SingletonFunctionObject< GlobalSettingStation >)GpgFrontend::SingletonFunctionObject< GlobalSettingStation >
ReleaseChannel(int channel)GpgFrontend::SingletonFunctionObject< GlobalSettingStation >inlinestatic
SetChannel(int channel)GpgFrontend::ChannelObject
SingletonFunctionObject(const SingletonFunctionObject< GlobalSettingStation > &)=deleteGpgFrontend::SingletonFunctionObject< GlobalSettingStation >
SingletonFunctionObject(GlobalSettingStation &&)=deleteGpgFrontend::SingletonFunctionObject< GlobalSettingStation >
SingletonFunctionObject(const GlobalSettingStation &)=deleteGpgFrontend::SingletonFunctionObject< GlobalSettingStation >
SingletonFunctionObject()=defaultGpgFrontend::SingletonFunctionObject< GlobalSettingStation >protected
SingletonFunctionObject(int channel)GpgFrontend::SingletonFunctionObject< GlobalSettingStation >inlineexplicitprotected
SyncSettings() noexceptGpgFrontend::GlobalSettingStation
ui_cfg_GpgFrontend::GlobalSettingStationprivate
ui_config_dir_path_GpgFrontend::GlobalSettingStationprivate
ui_config_path_GpgFrontend::GlobalSettingStationprivate
~GlobalSettingStation() noexcept overrideGpgFrontend::GlobalSettingStation
~SingletonFunctionObject()=defaultGpgFrontend::SingletonFunctionObject< GlobalSettingStation >protectedvirtual
LookupSettings(std::string path, T default_value) noexceptGpgFrontend::GlobalSettingStationinline
operator=(const SingletonFunctionObject< GlobalSettingStation > &)=deleteGpgFrontend::SingletonFunctionObject< GlobalSettingStation >
operator=(const GlobalSettingStation &)=delete (defined in GpgFrontend::SingletonFunctionObject< GlobalSettingStation >)GpgFrontend::SingletonFunctionObject< GlobalSettingStation >
ReleaseChannel(int channel)GpgFrontend::SingletonFunctionObject< GlobalSettingStation >inlinestatic
SetChannel(int channel)GpgFrontend::ChannelObject
SingletonFunctionObject(const SingletonFunctionObject< GlobalSettingStation > &)=deleteGpgFrontend::SingletonFunctionObject< GlobalSettingStation >
SingletonFunctionObject(GlobalSettingStation &&)=deleteGpgFrontend::SingletonFunctionObject< GlobalSettingStation >
SingletonFunctionObject(const GlobalSettingStation &)=deleteGpgFrontend::SingletonFunctionObject< GlobalSettingStation >
SingletonFunctionObject()=defaultGpgFrontend::SingletonFunctionObject< GlobalSettingStation >protected
SingletonFunctionObject(int channel)GpgFrontend::SingletonFunctionObject< GlobalSettingStation >inlineexplicitprotected
SyncSettings() noexceptGpgFrontend::GlobalSettingStation
ui_cfg_GpgFrontend::GlobalSettingStationprivate
ui_config_dir_path_GpgFrontend::GlobalSettingStationprivate
ui_config_path_GpgFrontend::GlobalSettingStationprivate
~GlobalSettingStation() noexcept overrideGpgFrontend::GlobalSettingStation
~SingletonFunctionObject()=defaultGpgFrontend::SingletonFunctionObject< GlobalSettingStation >protectedvirtual
diff --git a/docs/html/classGpgFrontend_1_1GlobalSettingStation.html b/docs/html/classGpgFrontend_1_1GlobalSettingStation.html index 65e3a147..ba47879f 100644 --- a/docs/html/classGpgFrontend_1_1GlobalSettingStation.html +++ b/docs/html/classGpgFrontend_1_1GlobalSettingStation.html @@ -96,7 +96,7 @@ Inheritance diagram for GpgFrontend::GlobalSettingStation:
Inheritance graph
- + @@ -107,7 +107,7 @@ Collaboration diagram for GpgFrontend::GlobalSettingStation:
Collaboration graph
- + @@ -124,8 +124,11 @@ Public Member Functions  ~GlobalSettingStation () noexcept override  Destroy the Global Setting Station object.
  -libconfig::Setting & GetUISettings () noexcept -  +libconfig::Setting & GetUISettings () noexcept +  +template<typename T > +T LookupSettings (std::string path, T default_value) noexcept +  std::filesystem::path GetAppDir () const  Get the App Dir object. More...
  @@ -470,8 +473,8 @@ virtual  -

◆ GetUISettings()

+ +

◆ GetUISettings()

+ +

◆ LookupSettings()

+ +
+
+
+template<typename T >
+ + + +
+ + + + + + + + + + + + + + + + + + +
T GpgFrontend::GlobalSettingStation::LookupSettings (std::string path,
default_value 
)
+
inlinenoexcept
Returns
libconfig::Setting&
-

Referenced by GpgFrontend::UI::KeyMgmt::create_actions(), GpgFrontend::UI::MainWindow::create_actions(), GpgFrontend::UI::KeyList::dropEvent(), GpgFrontend::UI::GnuPGControllerDialog::GnuPGControllerDialog(), GpgFrontend::UI::init_locale(), GpgFrontend::UI::InitGpgFrontendUI(), GpgFrontend::UI::KeyGenDialog::KeyGenDialog(), GpgFrontend::UI::KeyMgmt::KeyMgmt(), GpgFrontend::UI::KeyPairOperaTab::KeyPairOperaTab(), GpgFrontend::UI::KeyServerImportDialog::KeyServerImportDialog(), GpgFrontend::GpgContext::post_init_ctx(), GpgFrontend::UI::GeneralTab::SetSettings(), GpgFrontend::UI::NetworkTab::SetSettings(), GpgFrontend::UI::MainWindow::SlotFileEncrypt(), GpgFrontend::UI::MainWindow::SlotFileEncryptSign(), GpgFrontend::UI::MainWindow::SlotFileSign(), GpgFrontend::UI::MainWindow::SlotFileVerify(), GpgFrontend::UI::CommonUtils::SlotImportKeyFromKeyServer(), GpgFrontend::UI::SubkeyGenerateDialog::SubkeyGenerateDialog(), GpgFrontend::UI::VerifyKeyDetailBox::VerifyKeyDetailBox(), and GpgFrontend::UI::Wizard::Wizard().

+

Referenced by GpgFrontend::UI::KeyMgmt::create_actions(), GpgFrontend::UI::MainWindow::create_actions(), GpgFrontend::UI::KeyList::dropEvent(), GpgFrontend::UI::InitGpgFrontendUI(), GpgFrontend::UI::KeyGenDialog::KeyGenDialog(), GpgFrontend::UI::KeyServerImportDialog::KeyServerImportDialog(), GpgFrontend::UI::MainWindow::SlotFileEncrypt(), GpgFrontend::UI::MainWindow::SlotFileEncryptSign(), GpgFrontend::UI::MainWindow::SlotFileSign(), GpgFrontend::UI::MainWindow::SlotFileVerify(), GpgFrontend::UI::SubkeyGenerateDialog::SubkeyGenerateDialog(), GpgFrontend::UI::VerifyKeyDetailBox::VerifyKeyDetailBox(), and GpgFrontend::UI::Wizard::Wizard().

@@ -588,7 +634,7 @@ virtual  Initial value:
=
-
std::filesystem::path app_data_path_
Program Data Location.
Definition: GlobalSettingStation.h:147
+
std::filesystem::path app_data_path_
Program Data Location.
Definition: GlobalSettingStation.h:163

Object storage path.

@@ -644,7 +690,7 @@ virtual  Initial value:
=
-
std::filesystem::path app_resource_path_
Program Data Location.
Definition: GlobalSettingStation.h:160
+
std::filesystem::path app_resource_path_
Program Data Location.
Definition: GlobalSettingStation.h:176

Program Data Location.

@@ -729,7 +775,7 @@ virtual  Initial value:
=
-
std::filesystem::path app_path_
Program Location.
Definition: GlobalSettingStation.h:145
+
std::filesystem::path app_path_
Program Location.
Definition: GlobalSettingStation.h:161

Program Data Location.

@@ -756,7 +802,7 @@ virtual  Initial value:
=
-
std::filesystem::path app_configure_path_
Program Configure Location.
Definition: GlobalSettingStation.h:172
+
std::filesystem::path app_configure_path_
Program Configure Location.
Definition: GlobalSettingStation.h:188

Configure File Directory Location.

@@ -785,7 +831,7 @@ virtual  Initial value:
=
-
std::filesystem::path ui_config_dir_path_
Configure File Directory Location.
Definition: GlobalSettingStation.h:175
+
std::filesystem::path ui_config_dir_path_
Configure File Directory Location.
Definition: GlobalSettingStation.h:191

Main Configure File Location.

diff --git a/docs/html/classGpgFrontend_1_1GlobalSettingStation.js b/docs/html/classGpgFrontend_1_1GlobalSettingStation.js index 4368f43b..28507fff 100644 --- a/docs/html/classGpgFrontend_1_1GlobalSettingStation.js +++ b/docs/html/classGpgFrontend_1_1GlobalSettingStation.js @@ -11,8 +11,9 @@ var classGpgFrontend_1_1GlobalSettingStation = [ "GetResourceDir", "classGpgFrontend_1_1GlobalSettingStation.html#afc1aa3dec55ae4e741f92fce1140a2d0", null ], [ "GetStandaloneDatabaseDir", "classGpgFrontend_1_1GlobalSettingStation.html#af484ca46c5df831a9dd76f3a88d66332", null ], [ "GetStandaloneGpgBinDir", "classGpgFrontend_1_1GlobalSettingStation.html#aa93b21af9ac6649d5749c83c809f5b00", null ], - [ "GetUISettings", "classGpgFrontend_1_1GlobalSettingStation.html#a14433405831283cd95091d741614d03b", null ], + [ "GetUISettings", "classGpgFrontend_1_1GlobalSettingStation.html#a1d8b9f91c75ef7a1d008a171f09f2c0e", null ], [ "init_app_secure_key", "classGpgFrontend_1_1GlobalSettingStation.html#a1e1993b72d0ad09d247b643b4447e57c", null ], + [ "LookupSettings", "classGpgFrontend_1_1GlobalSettingStation.html#a819b3f4ea553fc1e839ef0ae230f0ea2", null ], [ "SyncSettings", "classGpgFrontend_1_1GlobalSettingStation.html#ac061ac8e5308f67ea52b98888bbb2e8d", null ], [ "app_configure_path_", "classGpgFrontend_1_1GlobalSettingStation.html#a4d04bb665571921421b853f18b8b300a", null ], [ "app_data_objs_path_", "classGpgFrontend_1_1GlobalSettingStation.html#ad0600d475f6758503b1347722e2a933a", null ], diff --git a/docs/html/classGpgFrontend_1_1GlobalSettingStation__coll__graph.map b/docs/html/classGpgFrontend_1_1GlobalSettingStation__coll__graph.map index cadec3dc..780136d5 100644 --- a/docs/html/classGpgFrontend_1_1GlobalSettingStation__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1GlobalSettingStation__coll__graph.map @@ -1,5 +1,5 @@ - + diff --git a/docs/html/classGpgFrontend_1_1GlobalSettingStation__coll__graph.md5 b/docs/html/classGpgFrontend_1_1GlobalSettingStation__coll__graph.md5 index aeaeb335..585e8ac5 100644 --- a/docs/html/classGpgFrontend_1_1GlobalSettingStation__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1GlobalSettingStation__coll__graph.md5 @@ -1 +1 @@ -f8e533fe202a12036424cce3de95e65a \ No newline at end of file +37fb2bb8856d74cf0f5566e2ac029411 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1GlobalSettingStation__coll__graph.png b/docs/html/classGpgFrontend_1_1GlobalSettingStation__coll__graph.png index 76c3d0b9..26ffc31a 100644 Binary files a/docs/html/classGpgFrontend_1_1GlobalSettingStation__coll__graph.png and b/docs/html/classGpgFrontend_1_1GlobalSettingStation__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1GlobalSettingStation__inherit__graph.map b/docs/html/classGpgFrontend_1_1GlobalSettingStation__inherit__graph.map index cadec3dc..780136d5 100644 --- a/docs/html/classGpgFrontend_1_1GlobalSettingStation__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1GlobalSettingStation__inherit__graph.map @@ -1,5 +1,5 @@ - + diff --git a/docs/html/classGpgFrontend_1_1GlobalSettingStation__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1GlobalSettingStation__inherit__graph.md5 index aeaeb335..585e8ac5 100644 --- a/docs/html/classGpgFrontend_1_1GlobalSettingStation__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1GlobalSettingStation__inherit__graph.md5 @@ -1 +1 @@ -f8e533fe202a12036424cce3de95e65a \ No newline at end of file +37fb2bb8856d74cf0f5566e2ac029411 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1GlobalSettingStation__inherit__graph.png b/docs/html/classGpgFrontend_1_1GlobalSettingStation__inherit__graph.png index 76c3d0b9..26ffc31a 100644 Binary files a/docs/html/classGpgFrontend_1_1GlobalSettingStation__inherit__graph.png and b/docs/html/classGpgFrontend_1_1GlobalSettingStation__inherit__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1GpgAdvancedOperator.html b/docs/html/classGpgFrontend_1_1GpgAdvancedOperator.html index 8083d5c8..6ccd3dfc 100644 --- a/docs/html/classGpgFrontend_1_1GpgAdvancedOperator.html +++ b/docs/html/classGpgFrontend_1_1GpgAdvancedOperator.html @@ -106,21 +106,21 @@ Collaboration diagram for GpgFrontend::GpgAdvancedOperator:
Collaboration graph
- - + + - - - + + + - - + + diff --git a/docs/html/classGpgFrontend_1_1GpgAdvancedOperator__coll__graph.map b/docs/html/classGpgFrontend_1_1GpgAdvancedOperator__coll__graph.map index 1a97b595..5104b842 100644 --- a/docs/html/classGpgFrontend_1_1GpgAdvancedOperator__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1GpgAdvancedOperator__coll__graph.map @@ -1,19 +1,19 @@ - - + + - - - + + + - - + + diff --git a/docs/html/classGpgFrontend_1_1GpgAdvancedOperator__coll__graph.md5 b/docs/html/classGpgFrontend_1_1GpgAdvancedOperator__coll__graph.md5 index b39c8a10..f9883b8a 100644 --- a/docs/html/classGpgFrontend_1_1GpgAdvancedOperator__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1GpgAdvancedOperator__coll__graph.md5 @@ -1 +1 @@ -a211d338b1a0606aa84255aa837e69bc \ No newline at end of file +f753acb0765d9002e601470919090b3f \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1GpgAdvancedOperator__coll__graph.png b/docs/html/classGpgFrontend_1_1GpgAdvancedOperator__coll__graph.png index 6c220000..0aefc2c3 100644 Binary files a/docs/html/classGpgFrontend_1_1GpgAdvancedOperator__coll__graph.png and b/docs/html/classGpgFrontend_1_1GpgAdvancedOperator__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1GpgBasicOperator.html b/docs/html/classGpgFrontend_1_1GpgBasicOperator.html index c0b5a179..6164036a 100644 --- a/docs/html/classGpgFrontend_1_1GpgBasicOperator.html +++ b/docs/html/classGpgFrontend_1_1GpgBasicOperator.html @@ -111,21 +111,21 @@ Collaboration diagram for GpgFrontend::GpgBasicOperator:
Collaboration graph
- - + + - - - + + + - - + + diff --git a/docs/html/classGpgFrontend_1_1GpgBasicOperator__coll__graph.map b/docs/html/classGpgFrontend_1_1GpgBasicOperator__coll__graph.map index b018d350..7cb0759e 100644 --- a/docs/html/classGpgFrontend_1_1GpgBasicOperator__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1GpgBasicOperator__coll__graph.map @@ -1,19 +1,19 @@ - - + + - - - + + + - - + + diff --git a/docs/html/classGpgFrontend_1_1GpgBasicOperator__coll__graph.md5 b/docs/html/classGpgFrontend_1_1GpgBasicOperator__coll__graph.md5 index 70eb98a4..6f5c63f0 100644 --- a/docs/html/classGpgFrontend_1_1GpgBasicOperator__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1GpgBasicOperator__coll__graph.md5 @@ -1 +1 @@ -c76ac110914db542662b53a49f8d34e8 \ No newline at end of file +7ad15d90610a1a2e0ac540cffb1a6eaa \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1GpgBasicOperator__coll__graph.png b/docs/html/classGpgFrontend_1_1GpgBasicOperator__coll__graph.png index a334e516..277245ea 100644 Binary files a/docs/html/classGpgFrontend_1_1GpgBasicOperator__coll__graph.png and b/docs/html/classGpgFrontend_1_1GpgBasicOperator__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1GpgCommandExecutor.html b/docs/html/classGpgFrontend_1_1GpgCommandExecutor.html index 9370a9ea..fb352c3e 100644 --- a/docs/html/classGpgFrontend_1_1GpgCommandExecutor.html +++ b/docs/html/classGpgFrontend_1_1GpgCommandExecutor.html @@ -111,21 +111,21 @@ Collaboration diagram for GpgFrontend::GpgCommandExecutor:
Collaboration graph
- - + + - - - + + + - - + + diff --git a/docs/html/classGpgFrontend_1_1GpgCommandExecutor__coll__graph.map b/docs/html/classGpgFrontend_1_1GpgCommandExecutor__coll__graph.map index a063cebc..76cfc7fc 100644 --- a/docs/html/classGpgFrontend_1_1GpgCommandExecutor__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1GpgCommandExecutor__coll__graph.map @@ -1,19 +1,19 @@ - - + + - - - + + + - - + + diff --git a/docs/html/classGpgFrontend_1_1GpgCommandExecutor__coll__graph.md5 b/docs/html/classGpgFrontend_1_1GpgCommandExecutor__coll__graph.md5 index 7e092a05..aeacd907 100644 --- a/docs/html/classGpgFrontend_1_1GpgCommandExecutor__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1GpgCommandExecutor__coll__graph.md5 @@ -1 +1 @@ -f0344dfc66fcf3d3832dc80adabe3d0d \ No newline at end of file +f7d302c3d843f984c2727fe879d0c666 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1GpgCommandExecutor__coll__graph.png b/docs/html/classGpgFrontend_1_1GpgCommandExecutor__coll__graph.png index d4e86206..0efed16b 100644 Binary files a/docs/html/classGpgFrontend_1_1GpgCommandExecutor__coll__graph.png and b/docs/html/classGpgFrontend_1_1GpgCommandExecutor__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1GpgContext.html b/docs/html/classGpgFrontend_1_1GpgContext.html index c32f8cd1..743266d8 100644 --- a/docs/html/classGpgFrontend_1_1GpgContext.html +++ b/docs/html/classGpgFrontend_1_1GpgContext.html @@ -112,9 +112,9 @@ Collaboration diagram for GpgFrontend::GpgContext:
Collaboration graph
- - - + + + @@ -123,8 +123,8 @@ Collaboration diagram for GpgFrontend::GpgContext:
- - + + @@ -553,7 +553,7 @@ false

Setting the output type must be done at the beginning

think this means ascii-armor --> ?

-

References GpgFrontend::GpgInfo::AppPath, GpgFrontend::check_gpg_error(), GpgFrontend::check_gpg_error_2_err_code(), custom_passphrase_cb(), GpgFrontend::GpgInfo::DatabasePath, GetInfo(), GpgFrontend::CoreSignalStation::GetInstance(), GpgFrontend::SingletonFunctionObject< GlobalSettingStation >::GetInstance(), GpgFrontend::GlobalSettingStation::GetUISettings(), GpgFrontend::GpgInfo::GnupgVersion, SetPassphraseCb(), test_passphrase_cb(), and test_status_cb().

+

References GpgFrontend::GpgInfo::AppPath, GpgFrontend::check_gpg_error(), GpgFrontend::check_gpg_error_2_err_code(), custom_passphrase_cb(), GpgFrontend::GpgInfo::DatabasePath, GetInfo(), GpgFrontend::CoreSignalStation::GetInstance(), GpgFrontend::GpgInfo::GnupgVersion, SetPassphraseCb(), test_passphrase_cb(), and test_status_cb().

Referenced by GpgContext().

diff --git a/docs/html/classGpgFrontend_1_1GpgContext__coll__graph.map b/docs/html/classGpgFrontend_1_1GpgContext__coll__graph.map index 02208a87..1845fab3 100644 --- a/docs/html/classGpgFrontend_1_1GpgContext__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1GpgContext__coll__graph.map @@ -1,7 +1,7 @@ - - - + + + @@ -10,8 +10,8 @@ - - + + diff --git a/docs/html/classGpgFrontend_1_1GpgContext__coll__graph.md5 b/docs/html/classGpgFrontend_1_1GpgContext__coll__graph.md5 index 5eccd69b..c31214f1 100644 --- a/docs/html/classGpgFrontend_1_1GpgContext__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1GpgContext__coll__graph.md5 @@ -1 +1 @@ -0bbc972a6a670b645bee4cda49901f69 \ No newline at end of file +931817bd4914bdac49139f44d425b028 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1GpgContext__coll__graph.png b/docs/html/classGpgFrontend_1_1GpgContext__coll__graph.png index c3e50f8c..2f1f92d4 100644 Binary files a/docs/html/classGpgFrontend_1_1GpgContext__coll__graph.png and b/docs/html/classGpgFrontend_1_1GpgContext__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1GpgKeyGetter.html b/docs/html/classGpgFrontend_1_1GpgKeyGetter.html index 00e17a21..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:
Collaboration graph
- - + + - - + + - - + + @@ -128,8 +128,8 @@ Collaboration diagram for GpgFrontend::GpgKeyGetter:
- - + +
diff --git a/docs/html/classGpgFrontend_1_1GpgKeyGetter__coll__graph.map b/docs/html/classGpgFrontend_1_1GpgKeyGetter__coll__graph.map index accd5290..036fb9e7 100644 --- a/docs/html/classGpgFrontend_1_1GpgKeyGetter__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1GpgKeyGetter__coll__graph.map @@ -1,13 +1,13 @@ - - + + - - + + - - + + @@ -20,7 +20,7 @@ - - + + diff --git a/docs/html/classGpgFrontend_1_1GpgKeyGetter__coll__graph.md5 b/docs/html/classGpgFrontend_1_1GpgKeyGetter__coll__graph.md5 index 04556b90..fddc4127 100644 --- a/docs/html/classGpgFrontend_1_1GpgKeyGetter__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1GpgKeyGetter__coll__graph.md5 @@ -1 +1 @@ -00ca14f0c0495bad961d20b4e1036e2d \ No newline at end of file +1d241d41d01258fed5295b9362f4762e \ 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 8414b6f1..f683683c 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 c99f508c..42ac68c3 100644 --- a/docs/html/classGpgFrontend_1_1GpgKeyImportExporter.html +++ b/docs/html/classGpgFrontend_1_1GpgKeyImportExporter.html @@ -106,21 +106,21 @@ Collaboration diagram for GpgFrontend::GpgKeyImportExporter:
Collaboration graph
- - + + - - - + + + - - + + diff --git a/docs/html/classGpgFrontend_1_1GpgKeyImportExporter__coll__graph.map b/docs/html/classGpgFrontend_1_1GpgKeyImportExporter__coll__graph.map index 5ebcfd7a..d81adaab 100644 --- a/docs/html/classGpgFrontend_1_1GpgKeyImportExporter__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1GpgKeyImportExporter__coll__graph.map @@ -1,19 +1,19 @@ - - + + - - - + + + - - + + diff --git a/docs/html/classGpgFrontend_1_1GpgKeyImportExporter__coll__graph.md5 b/docs/html/classGpgFrontend_1_1GpgKeyImportExporter__coll__graph.md5 index ea8daf9e..d4492ab7 100644 --- a/docs/html/classGpgFrontend_1_1GpgKeyImportExporter__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1GpgKeyImportExporter__coll__graph.md5 @@ -1 +1 @@ -21ef6ea833dff7e6cb88228447d1c32c \ 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 3ce3ba95..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.html b/docs/html/classGpgFrontend_1_1GpgKeyManager.html index 09fd5884..d60491ba 100644 --- a/docs/html/classGpgFrontend_1_1GpgKeyManager.html +++ b/docs/html/classGpgFrontend_1_1GpgKeyManager.html @@ -106,21 +106,21 @@ Collaboration diagram for GpgFrontend::GpgKeyManager:
Collaboration graph
- - + + - - - + + + - - + + diff --git a/docs/html/classGpgFrontend_1_1GpgKeyManager__coll__graph.map b/docs/html/classGpgFrontend_1_1GpgKeyManager__coll__graph.map index d2dc6d6b..0549b559 100644 --- a/docs/html/classGpgFrontend_1_1GpgKeyManager__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1GpgKeyManager__coll__graph.map @@ -1,19 +1,19 @@ - - + + - - - + + + - - + + diff --git a/docs/html/classGpgFrontend_1_1GpgKeyManager__coll__graph.md5 b/docs/html/classGpgFrontend_1_1GpgKeyManager__coll__graph.md5 index 42baf38b..6ba06e78 100644 --- a/docs/html/classGpgFrontend_1_1GpgKeyManager__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1GpgKeyManager__coll__graph.md5 @@ -1 +1 @@ -d41404f797688a383d37f12a91040c70 \ No newline at end of file +5da126807f17423e4a82fe81ebea4839 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1GpgKeyManager__coll__graph.png b/docs/html/classGpgFrontend_1_1GpgKeyManager__coll__graph.png index 1909ef4a..9966b169 100644 Binary files a/docs/html/classGpgFrontend_1_1GpgKeyManager__coll__graph.png and b/docs/html/classGpgFrontend_1_1GpgKeyManager__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1GpgKeyOpera.html b/docs/html/classGpgFrontend_1_1GpgKeyOpera.html index ffd281b1..8550fcc1 100644 --- a/docs/html/classGpgFrontend_1_1GpgKeyOpera.html +++ b/docs/html/classGpgFrontend_1_1GpgKeyOpera.html @@ -107,21 +107,21 @@ Collaboration diagram for GpgFrontend::GpgKeyOpera:
Collaboration graph
- - + + - - - + + + - - + + diff --git a/docs/html/classGpgFrontend_1_1GpgKeyOpera__coll__graph.map b/docs/html/classGpgFrontend_1_1GpgKeyOpera__coll__graph.map index 054d479a..720cee7f 100644 --- a/docs/html/classGpgFrontend_1_1GpgKeyOpera__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1GpgKeyOpera__coll__graph.map @@ -1,19 +1,19 @@ - - + + - - - + + + - - + + diff --git a/docs/html/classGpgFrontend_1_1GpgKeyOpera__coll__graph.md5 b/docs/html/classGpgFrontend_1_1GpgKeyOpera__coll__graph.md5 index 640f3a57..fe9062d8 100644 --- a/docs/html/classGpgFrontend_1_1GpgKeyOpera__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1GpgKeyOpera__coll__graph.md5 @@ -1 +1 @@ -8b49382e3789c44f04736620e8e31c8c \ No newline at end of file +f2725a42e8f9f4ff0a2c6a0b5a81e939 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1GpgKeyOpera__coll__graph.png b/docs/html/classGpgFrontend_1_1GpgKeyOpera__coll__graph.png index 70d03281..0b3006a1 100644 Binary files a/docs/html/classGpgFrontend_1_1GpgKeyOpera__coll__graph.png and b/docs/html/classGpgFrontend_1_1GpgKeyOpera__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1GpgUIDOperator.html b/docs/html/classGpgFrontend_1_1GpgUIDOperator.html index 53269c62..caba26d0 100644 --- a/docs/html/classGpgFrontend_1_1GpgUIDOperator.html +++ b/docs/html/classGpgFrontend_1_1GpgUIDOperator.html @@ -106,21 +106,21 @@ Collaboration diagram for GpgFrontend::GpgUIDOperator:
Collaboration graph
- - + + - - - + + + - - + + diff --git a/docs/html/classGpgFrontend_1_1GpgUIDOperator__coll__graph.map b/docs/html/classGpgFrontend_1_1GpgUIDOperator__coll__graph.map index 88410ba0..d5202160 100644 --- a/docs/html/classGpgFrontend_1_1GpgUIDOperator__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1GpgUIDOperator__coll__graph.map @@ -1,19 +1,19 @@ - - + + - - - + + + - - + + diff --git a/docs/html/classGpgFrontend_1_1GpgUIDOperator__coll__graph.md5 b/docs/html/classGpgFrontend_1_1GpgUIDOperator__coll__graph.md5 index df7ef193..418010c7 100644 --- a/docs/html/classGpgFrontend_1_1GpgUIDOperator__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1GpgUIDOperator__coll__graph.md5 @@ -1 +1 @@ -75cf14670f465531d6d8848525d97fdc \ No newline at end of file +7374468b58fa8d0e4ddd3fde0c96a68b \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1GpgUIDOperator__coll__graph.png b/docs/html/classGpgFrontend_1_1GpgUIDOperator__coll__graph.png index ebb7696a..58fb6a3e 100644 Binary files a/docs/html/classGpgFrontend_1_1GpgUIDOperator__coll__graph.png and b/docs/html/classGpgFrontend_1_1GpgUIDOperator__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1SingletonFunctionObject.html b/docs/html/classGpgFrontend_1_1SingletonFunctionObject.html index 296e55b8..619ee22b 100644 --- a/docs/html/classGpgFrontend_1_1SingletonFunctionObject.html +++ b/docs/html/classGpgFrontend_1_1SingletonFunctionObject.html @@ -114,20 +114,20 @@ Inheritance diagram for GpgFrontend::SingletonFunctionObject< T >:
- - - - - - - - - - - - - - + + + + + + + + + + + + + +
diff --git a/docs/html/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.map b/docs/html/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.map index 41624971..27f6db23 100644 --- a/docs/html/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.map @@ -15,18 +15,18 @@ - - - - - - - - - - - - - - + + + + + + + + + + + + + + diff --git a/docs/html/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.md5 index d4ebf5a8..bf68c0aa 100644 --- a/docs/html/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.md5 @@ -1 +1 @@ -6c391e1a48251d8a7f666d10a3e8df58 \ No newline at end of file +b9d6e38f18e1d3269119c57a19a3f079 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.png b/docs/html/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.png index 46ab30b0..482d9226 100644 Binary files a/docs/html/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.png and b/docs/html/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1CommonUtils.html b/docs/html/classGpgFrontend_1_1UI_1_1CommonUtils.html index 6a1e49a6..893761e1 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1CommonUtils.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1CommonUtils.html @@ -443,7 +443,7 @@ static std::unique_ptr< References GpgFrontend::UI::SettingsObject::Check(), GpgFrontend::SingletonFunctionObject< GpgKeyImportExporter >::GetInstance(), GpgFrontend::SingletonFunctionObject< GlobalSettingStation >::GetInstance(), GpgFrontend::GlobalSettingStation::GetUISettings(), and GpgFrontend::GpgKeyImportExporter::ImportKey().

+

References GpgFrontend::UI::SettingsObject::Check(), GpgFrontend::SingletonFunctionObject< GpgKeyImportExporter >::GetInstance(), GpgFrontend::SingletonFunctionObject< GlobalSettingStation >::GetInstance(), GpgFrontend::GlobalSettingStation::GetUISettings(), and GpgFrontend::GpgKeyImportExporter::ImportKey().

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html index b3d2259c..a505073d 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html @@ -215,7 +215,7 @@ void movePosition2CenterOf -

References GpgFrontend::UI::SignalStation::GetInstance(), GpgFrontend::SingletonFunctionObject< GlobalSettingStation >::GetInstance(), GpgFrontend::GlobalSettingStation::GetUISettings(), SignalRestartNeeded(), and slot_set_restart_needed().

+

References GpgFrontend::UI::SignalStation::GetInstance(), GpgFrontend::SingletonFunctionObject< GlobalSettingStation >::GetInstance(), GpgFrontend::GlobalSettingStation::GetUISettings(), SignalRestartNeeded(), and slot_set_restart_needed().

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog.html index f67223e0..4ad939c1 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog.html @@ -279,7 +279,7 @@ void movePosition2CenterOf -

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

+

References button_box_, GpgFrontend::UI::SignalStation::GetInstance(), GpgFrontend::SingletonFunctionObject< GlobalSettingStation >::GetInstance(), and GpgFrontend::GlobalSettingStation::LookupSettings().

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyList.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyList.html index e3a97266..1f83f9ca 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyList.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyList.html @@ -493,7 +493,7 @@ false -

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

+

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

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt.html index b42e8efb..e39e174e 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt.html @@ -314,7 +314,7 @@ Qt::ToolButtonStyle icon_s -

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

+

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

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html index 3524a8e3..9046c0eb 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html @@ -202,7 +202,7 @@ QMenu * secret_key_export_ -

References CreateOperaMenu(), GpgFrontend::SingletonFunctionObject< GlobalSettingStation >::GetInstance(), GpgFrontend::GlobalSettingStation::GetUISettings(), GpgFrontend::GpgKey::IsHasMasterKey(), and GpgFrontend::GpgKey::IsPrivateKey().

+

References CreateOperaMenu(), GpgFrontend::SingletonFunctionObject< GlobalSettingStation >::GetInstance(), GpgFrontend::GlobalSettingStation::GetUISettings(), GpgFrontend::GpgKey::IsHasMasterKey(), and GpgFrontend::GpgKey::IsPrivateKey().

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html index 76713a59..cde19e43 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html @@ -263,7 +263,7 @@ void movePosition2CenterOf -

References create_comboBox(), create_keys_table(), GpgFrontend::UI::SignalStation::GetInstance(), GpgFrontend::SingletonFunctionObject< GlobalSettingStation >::GetInstance(), GpgFrontend::GlobalSettingStation::GetUISettings(), and slot_import().

+

References create_comboBox(), create_keys_table(), GpgFrontend::UI::SignalStation::GetInstance(), GpgFrontend::SingletonFunctionObject< GlobalSettingStation >::GetInstance(), GpgFrontend::GlobalSettingStation::LookupSettings(), and slot_import().

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1MainWindow.html b/docs/html/classGpgFrontend_1_1UI_1_1MainWindow.html index 731551eb..b2e0c121 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1MainWindow.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1MainWindow.html @@ -660,7 +660,7 @@ Qt::ToolButtonStyle icon_s

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_, GpgFrontend::UI::CommonUtils::GetInstance(), GpgFrontend::SingletonFunctionObject< GpgAdvancedOperator >::GetInstance(), GpgFrontend::SingletonFunctionObject< GlobalSettingStation >::GetInstance(), GpgFrontend::GlobalSettingStation::GetUISettings(), 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_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(), GpgFrontend::UI::TextEdit::SlotCloseTab(), GpgFrontend::UI::TextEdit::SlotCopy(), GpgFrontend::UI::TextEdit::SlotCut(), GpgFrontend::UI::CommonUtils::SlotImportKeyFromClipboard(), GpgFrontend::UI::CommonUtils::SlotImportKeyFromFile(), GpgFrontend::UI::CommonUtils::SlotImportKeyFromKeyServer(), GpgFrontend::UI::TextEdit::SlotNewTab(), GpgFrontend::UI::TextEdit::SlotOpen(), GpgFrontend::UI::TextEdit::SlotPaste(), GpgFrontend::UI::TextEdit::SlotPrint(), GpgFrontend::UI::TextEdit::SlotQuote(), GpgFrontend::UI::TextEdit::SlotRedo(), GpgFrontend::UI::TextEdit::SlotSave(), GpgFrontend::UI::TextEdit::SlotSaveAs(), GpgFrontend::UI::TextEdit::SlotSelectAll(), GpgFrontend::UI::TextEdit::SlotSwitchTabDown(), GpgFrontend::UI::TextEdit::SlotSwitchTabUp(), GpgFrontend::UI::TextEdit::SlotUndo(), 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_, GpgFrontend::UI::CommonUtils::GetInstance(), GpgFrontend::SingletonFunctionObject< GlobalSettingStation >::GetInstance(), GpgFrontend::SingletonFunctionObject< GpgAdvancedOperator >::GetInstance(), gnupg_act_, import_key_from_edit_act_, GpgFrontend::GlobalSettingStation::LookupSettings(), 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(), GpgFrontend::UI::TextEdit::SlotCloseTab(), GpgFrontend::UI::TextEdit::SlotCopy(), GpgFrontend::UI::TextEdit::SlotCut(), GpgFrontend::UI::CommonUtils::SlotImportKeyFromClipboard(), GpgFrontend::UI::CommonUtils::SlotImportKeyFromFile(), GpgFrontend::UI::CommonUtils::SlotImportKeyFromKeyServer(), GpgFrontend::UI::TextEdit::SlotNewTab(), GpgFrontend::UI::TextEdit::SlotOpen(), GpgFrontend::UI::TextEdit::SlotPaste(), GpgFrontend::UI::TextEdit::SlotPrint(), GpgFrontend::UI::TextEdit::SlotQuote(), GpgFrontend::UI::TextEdit::SlotRedo(), GpgFrontend::UI::TextEdit::SlotSave(), GpgFrontend::UI::TextEdit::SlotSaveAs(), GpgFrontend::UI::TextEdit::SlotSelectAll(), GpgFrontend::UI::TextEdit::SlotSwitchTabDown(), GpgFrontend::UI::TextEdit::SlotSwitchTabUp(), GpgFrontend::UI::TextEdit::SlotUndo(), start_wizard_act_, switch_tab_down_act_, switch_tab_up_act_, translate_act_, undo_act_, verify_act_, zoom_in_act_, and zoom_out_act_.

@@ -1675,7 +1675,7 @@ Qt::ToolButtonStyle icon_s

Open dialog for verifying file.

-

References edit_, GpgFrontend::SingletonFunctionObject< GlobalSettingStation >::GetInstance(), GpgFrontend::UI::FilePage::GetSelected(), GpgFrontend::GlobalSettingStation::GetUISettings(), GpgFrontend::UI::import_unknown_key_from_keyserver(), GpgFrontend::UI::process_operation(), GpgFrontend::UI::process_result_analyse(), GpgFrontend::UI::show_verify_details(), GpgFrontend::UI::TextEdit::SlotCurPageFileTreeView(), and GpgFrontend::GpgFileOpera::VerifyFile().

+

References edit_, GpgFrontend::SingletonFunctionObject< GlobalSettingStation >::GetInstance(), GpgFrontend::UI::FilePage::GetSelected(), GpgFrontend::UI::import_unknown_key_from_keyserver(), GpgFrontend::GlobalSettingStation::LookupSettings(), GpgFrontend::UI::process_operation(), GpgFrontend::UI::process_result_analyse(), GpgFrontend::UI::show_verify_details(), GpgFrontend::UI::TextEdit::SlotCurPageFileTreeView(), and GpgFrontend::GpgFileOpera::VerifyFile().

Referenced by slot_verify().

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html index a4c9fc4e..02c2da90 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html @@ -277,7 +277,7 @@ void movePosition2CenterOf -

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

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html b/docs/html/classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html index 9e5b47c0..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(), GpgFrontend::SingletonFunctionObject< GlobalSettingStation >::GetInstance(), GpgFrontend::GpgSignature::GetStatus(), and GpgFrontend::GlobalSettingStation::GetUISettings().

+

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_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/functions_func_g.html b/docs/html/functions_func_g.html index dcaac62d..7eac13e0 100644 --- a/docs/html/functions_func_g.html +++ b/docs/html/functions_func_g.html @@ -419,7 +419,7 @@ $(document).ready(function(){initNavTree('functions_func_g.html',''); initResiza : GpgFrontend::GpgKey
  • GetUISettings() -: GpgFrontend::GlobalSettingStation +: GpgFrontend::GlobalSettingStation
  • GetUserid() : GpgFrontend::GenKeyInfo 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_g.html b/docs/html/functions_g.html index bb9fd9a0..8e2c09d7 100644 --- a/docs/html/functions_g.html +++ b/docs/html/functions_g.html @@ -419,7 +419,7 @@ $(document).ready(function(){initNavTree('functions_g.html',''); initResizable() : GpgFrontend::GpgKey
  • GetUISettings() -: GpgFrontend::GlobalSettingStation +: GpgFrontend::GlobalSettingStation
  • GetUserid() : GpgFrontend::GenKeyInfo 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/navtreedata.js b/docs/html/navtreedata.js index 20d71dd1..059b3d2d 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#a209f6d1d664ab672437198dc10ed8226", -"classGpgFrontend_1_1GpgSignature.html#a222e57e5992e5e91ca36d8dcc77fd402", -"classGpgFrontend_1_1UI_1_1FilePage.html#a250b1950f874c1d11549cd5c0ea9693f", -"classGpgFrontend_1_1UI_1_1KeyMgmt.html#ad8f69aa0d0564245a9924a7cf7ed0c3d", -"classGpgFrontend_1_1UI_1_1MainWindow.html#a2518a8a17ebcc217c7cc34c9c3a411f8", -"classGpgFrontend_1_1UI_1_1TextEdit.html#ab24adc1adb3b9b29469992e4c444436e", -"structGpgFrontend_1_1GpgKey_1_1__key__ref__deleter.html" +"classGpgFrontend_1_1GpgAdvancedOperator.html#a07c32ba25cf6153fbc8ee585c4ba377c", +"classGpgFrontend_1_1GpgSignature.html#a1c4fbd2d10a769c1ed0b644f06e4f871", +"classGpgFrontend_1_1UI_1_1FilePage.html#a00cd511308dceeda07d078a9e4ed0164", +"classGpgFrontend_1_1UI_1_1KeyMgmt.html#acd9298492830efcbf7c77dfb6bd829e7", +"classGpgFrontend_1_1UI_1_1MainWindow.html#a24e58eb0b84709ea665db95e54da865b", +"classGpgFrontend_1_1UI_1_1TextEdit.html#aa30daf558cb85bbdcad55a805a106109", +"structGpgFrontend_1_1GpgData_1_1__data__ref__deleter.html" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/docs/html/navtreeindex0.js b/docs/html/navtreeindex0.js index 27440a9b..e65fd99d 100644 --- a/docs/html/navtreeindex0.js +++ b/docs/html/navtreeindex0.js @@ -225,29 +225,29 @@ var NAVTREEINDEX0 = "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#a1818e08063d6a886975f77354fc5d85c":[2,0,0,10,22], +"classGpgFrontend_1_1GlobalSettingStation.html#a1d8b9f91c75ef7a1d008a171f09f2c0e":[2,0,0,10,11], +"classGpgFrontend_1_1GlobalSettingStation.html#a1d94a126c78ac01ec01f10d2ce575388":[2,0,0,10,21], "classGpgFrontend_1_1GlobalSettingStation.html#a1e1993b72d0ad09d247b643b4447e57c":[2,0,0,10,12], -"classGpgFrontend_1_1GlobalSettingStation.html#a25c1b45a2ccdc21dd2dcba58866169fb":[2,0,0,10,17], +"classGpgFrontend_1_1GlobalSettingStation.html#a25c1b45a2ccdc21dd2dcba58866169fb":[2,0,0,10,18], "classGpgFrontend_1_1GlobalSettingStation.html#a385ae4ab6ad5b17742a5405fa693d789":[2,0,0,10,5], -"classGpgFrontend_1_1GlobalSettingStation.html#a4d04bb665571921421b853f18b8b300a":[2,0,0,10,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#a4d04bb665571921421b853f18b8b300a":[2,0,0,10,15], +"classGpgFrontend_1_1GlobalSettingStation.html#a58fff8a42f98ad7989bffb8322344cd6":[2,0,0,10,17], +"classGpgFrontend_1_1GlobalSettingStation.html#a6459653a71cc8285fa554943c7fb3ca7":[2,0,0,10,19], "classGpgFrontend_1_1GlobalSettingStation.html#a657a17d85d06a3455a2d3ed0782f76a2":[2,0,0,10,3], -"classGpgFrontend_1_1GlobalSettingStation.html#a678f8ba120f9ad050d0adfec4476d7ac":[2,0,0,10,19], +"classGpgFrontend_1_1GlobalSettingStation.html#a678f8ba120f9ad050d0adfec4476d7ac":[2,0,0,10,20], "classGpgFrontend_1_1GlobalSettingStation.html#a73d553587447165c5c7b7a9704771963":[2,0,0,10,2], "classGpgFrontend_1_1GlobalSettingStation.html#a7da9b08291ef2391892f5c9375b8db23":[2,0,0,10,7], +"classGpgFrontend_1_1GlobalSettingStation.html#a819b3f4ea553fc1e839ef0ae230f0ea2":[2,0,0,10,13], "classGpgFrontend_1_1GlobalSettingStation.html#aa93b21af9ac6649d5749c83c809f5b00":[2,0,0,10,10], -"classGpgFrontend_1_1GlobalSettingStation.html#ab618fef68cfd4ff6e42d4a4aa8ea94bb":[2,0,0,10,22], +"classGpgFrontend_1_1GlobalSettingStation.html#ab618fef68cfd4ff6e42d4a4aa8ea94bb":[2,0,0,10,23], "classGpgFrontend_1_1GlobalSettingStation.html#abdc6dda369d4214e43ffa2930f7386b0":[2,0,0,10,0], -"classGpgFrontend_1_1GlobalSettingStation.html#ac061ac8e5308f67ea52b98888bbb2e8d":[2,0,0,10,13], -"classGpgFrontend_1_1GlobalSettingStation.html#ad0600d475f6758503b1347722e2a933a":[2,0,0,10,15], +"classGpgFrontend_1_1GlobalSettingStation.html#ac061ac8e5308f67ea52b98888bbb2e8d":[2,0,0,10,14], +"classGpgFrontend_1_1GlobalSettingStation.html#ad0600d475f6758503b1347722e2a933a":[2,0,0,10,16], "classGpgFrontend_1_1GlobalSettingStation.html#ae9d1da3d01c4a834120968636596c3c3":[2,0,0,10,4], "classGpgFrontend_1_1GlobalSettingStation.html#af484ca46c5df831a9dd76f3a88d66332":[2,0,0,10,9], "classGpgFrontend_1_1GlobalSettingStation.html#af700161900e623a0ea14261d51616451":[2,0,0,10,1], -"classGpgFrontend_1_1GlobalSettingStation.html#afa99ddc25c0d5fd59a4c5f0e61d13830":[2,0,0,10,23], +"classGpgFrontend_1_1GlobalSettingStation.html#afa99ddc25c0d5fd59a4c5f0e61d13830":[2,0,0,10,24], "classGpgFrontend_1_1GlobalSettingStation.html#afc1aa3dec55ae4e741f92fce1140a2d0":[2,0,0,10,8], -"classGpgFrontend_1_1GpgAdvancedOperator.html":[2,0,0,11], -"classGpgFrontend_1_1GpgAdvancedOperator.html#a07c32ba25cf6153fbc8ee585c4ba377c":[2,0,0,11,6] +"classGpgFrontend_1_1GpgAdvancedOperator.html":[2,0,0,11] }; diff --git a/docs/html/navtreeindex1.js b/docs/html/navtreeindex1.js index 89111f81..9c43f9a0 100644 --- a/docs/html/navtreeindex1.js +++ b/docs/html/navtreeindex1.js @@ -1,5 +1,6 @@ var NAVTREEINDEX1 = { +"classGpgFrontend_1_1GpgAdvancedOperator.html#a07c32ba25cf6153fbc8ee585c4ba377c":[2,0,0,11,6], "classGpgFrontend_1_1GpgAdvancedOperator.html#a209f6d1d664ab672437198dc10ed8226":[2,0,0,11,3], "classGpgFrontend_1_1GpgAdvancedOperator.html#a387ad457bb729f340f680d0b743733ad":[2,0,0,11,8], "classGpgFrontend_1_1GpgAdvancedOperator.html#a46085a11235894deccd312fc259d5078":[2,0,0,11,5], @@ -248,6 +249,5 @@ var NAVTREEINDEX1 = "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#a1b705f45de8f6d0ae97f1ffda28185b7":[2,0,0,42,5] }; diff --git a/docs/html/navtreeindex2.js b/docs/html/navtreeindex2.js index 8ab6065a..f442d3b9 100644 --- a/docs/html/navtreeindex2.js +++ b/docs/html/navtreeindex2.js @@ -1,5 +1,6 @@ var NAVTREEINDEX2 = { +"classGpgFrontend_1_1GpgSignature.html#a1c4fbd2d10a769c1ed0b644f06e4f871":[2,0,0,42,16], "classGpgFrontend_1_1GpgSignature.html#a222e57e5992e5e91ca36d8dcc77fd402":[2,0,0,42,6], "classGpgFrontend_1_1GpgSignature.html#a3b143f6e13b71663d81fc0f326aad17f":[2,0,0,42,12], "classGpgFrontend_1_1GpgSignature.html#a44f137a457ac109d145a1cdd8e544e3a":[2,0,0,42,2], @@ -248,6 +249,5 @@ var NAVTREEINDEX2 = "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":[2,0,0,1,50] }; diff --git a/docs/html/navtreeindex3.js b/docs/html/navtreeindex3.js index 4ad8e4f8..7b502a8e 100644 --- a/docs/html/navtreeindex3.js +++ b/docs/html/navtreeindex3.js @@ -1,5 +1,6 @@ var NAVTREEINDEX3 = { +"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,22], @@ -248,6 +249,5 @@ var NAVTREEINDEX3 = "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#acadb7692e422ca8efac192604d875457":[2,0,0,1,39,29] }; diff --git a/docs/html/navtreeindex4.js b/docs/html/navtreeindex4.js index 3dfb8c3b..044a25d8 100644 --- a/docs/html/navtreeindex4.js +++ b/docs/html/navtreeindex4.js @@ -1,5 +1,6 @@ var NAVTREEINDEX4 = { +"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], @@ -248,6 +249,5 @@ var NAVTREEINDEX4 = "classGpgFrontend_1_1UI_1_1MainWindow.html#a22256763ef83ed35a81e446b553d8112":[2,0,0,1,40,114], "classGpgFrontend_1_1UI_1_1MainWindow.html#a23c517e1b4c63d03e0413bf3772ffb92":[2,0,0,1,40,17], "classGpgFrontend_1_1UI_1_1MainWindow.html#a2417c807356e3b876ecb2f572568670b":[2,0,0,1,40,80], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a24a0b0d974fc5f8fdda60c128a82d957":[2,0,0,1,40,30], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a24e58eb0b84709ea665db95e54da865b":[2,0,0,1,40,106] +"classGpgFrontend_1_1UI_1_1MainWindow.html#a24a0b0d974fc5f8fdda60c128a82d957":[2,0,0,1,40,30] }; diff --git a/docs/html/navtreeindex5.js b/docs/html/navtreeindex5.js index 71d91446..40e3bec6 100644 --- a/docs/html/navtreeindex5.js +++ b/docs/html/navtreeindex5.js @@ -1,5 +1,6 @@ var NAVTREEINDEX5 = { +"classGpgFrontend_1_1UI_1_1MainWindow.html#a24e58eb0b84709ea665db95e54da865b":[2,0,0,1,40,106], "classGpgFrontend_1_1UI_1_1MainWindow.html#a2518a8a17ebcc217c7cc34c9c3a411f8":[2,0,0,1,40,51], "classGpgFrontend_1_1UI_1_1MainWindow.html#a25a2e4017d77cffc8362bde9606fad30":[2,0,0,1,40,46], "classGpgFrontend_1_1UI_1_1MainWindow.html#a261fb867b194d5b16ad15ed2ff6c60ec":[2,0,0,1,40,19], @@ -248,6 +249,5 @@ var NAVTREEINDEX5 = "classGpgFrontend_1_1UI_1_1TextEdit.html#a82fe98d45f54909ebea933b540367c39":[2,0,0,1,60,36], "classGpgFrontend_1_1UI_1_1TextEdit.html#a8fad090a19479a9fe89432300cca2b6c":[2,0,0,1,60,4], "classGpgFrontend_1_1UI_1_1TextEdit.html#aa21659aa7acba98dfd6286d69e00ab9b":[2,0,0,1,60,10], -"classGpgFrontend_1_1UI_1_1TextEdit.html#aa2230418dc8f72c400f5a90082a983c9":[2,0,0,1,60,21], -"classGpgFrontend_1_1UI_1_1TextEdit.html#aa30daf558cb85bbdcad55a805a106109":[2,0,0,1,60,1] +"classGpgFrontend_1_1UI_1_1TextEdit.html#aa2230418dc8f72c400f5a90082a983c9":[2,0,0,1,60,21] }; diff --git a/docs/html/navtreeindex6.js b/docs/html/navtreeindex6.js index c9e628f3..8b1f431a 100644 --- a/docs/html/navtreeindex6.js +++ b/docs/html/navtreeindex6.js @@ -1,5 +1,6 @@ var NAVTREEINDEX6 = { +"classGpgFrontend_1_1UI_1_1TextEdit.html#aa30daf558cb85bbdcad55a805a106109":[2,0,0,1,60,1], "classGpgFrontend_1_1UI_1_1TextEdit.html#ab24adc1adb3b9b29469992e4c444436e":[2,0,0,1,60,28], "classGpgFrontend_1_1UI_1_1TextEdit.html#ac9e2fb3d6ebb721f03416aa2da5e1fd1":[2,0,0,1,60,32], "classGpgFrontend_1_1UI_1_1TextEdit.html#ace0b8f4c161db9f4f5db5ecbfd7a91c0":[2,0,0,1,60,25], @@ -239,6 +240,7 @@ var NAVTREEINDEX6 = "structGpgFrontend_1_1GpgContextInitArgs.html#a0ab27875287142f6c72bb7cc7e7bc271":[2,0,0,31,0], "structGpgFrontend_1_1GpgContextInitArgs.html#a12e9e2e6ad393864a4b2d85727350edc":[2,0,0,31,2], "structGpgFrontend_1_1GpgContextInitArgs.html#a25ca282a0a82ed7aa4cb677a86f53eef":[2,0,0,31,10], +"structGpgFrontend_1_1GpgContextInitArgs.html#a2b09f18f4f10ca44370ed204d19de122":[2,0,0,31,11], "structGpgFrontend_1_1GpgContextInitArgs.html#a33cd883333581952ae49784ae86edae7":[2,0,0,31,9], "structGpgFrontend_1_1GpgContextInitArgs.html#a646fd830375ccf3b69ea64ede0c76f52":[2,0,0,31,1], "structGpgFrontend_1_1GpgContextInitArgs.html#a825d8c5daced5eb06be1a949ae0eadfd":[2,0,0,31,7], @@ -247,7 +249,5 @@ var NAVTREEINDEX6 = "structGpgFrontend_1_1GpgContextInitArgs.html#aa850fc1db1cc8f3daae78a0fcefb2fdb":[2,0,0,31,5], "structGpgFrontend_1_1GpgContextInitArgs.html#ac2679300c14d3f0ce29625a267054e6b":[2,0,0,31,8], "structGpgFrontend_1_1GpgContext_1_1__ctx__ref__deleter.html":[2,0,0,32,0], -"structGpgFrontend_1_1GpgContext_1_1__ctx__ref__deleter.html#a1975ed97838072cf98bd80eef72fd3a8":[2,0,0,32,0,0], -"structGpgFrontend_1_1GpgData_1_1__data__ref__deleter.html":[2,0,0,39,0], -"structGpgFrontend_1_1GpgData_1_1__data__ref__deleter.html#a1dec67f70f17e45e7f78a92414d05485":[2,0,0,39,0,0] +"structGpgFrontend_1_1GpgContext_1_1__ctx__ref__deleter.html#a1975ed97838072cf98bd80eef72fd3a8":[2,0,0,32,0,0] }; diff --git a/docs/html/navtreeindex7.js b/docs/html/navtreeindex7.js index 2d573fae..6d93215c 100644 --- a/docs/html/navtreeindex7.js +++ b/docs/html/navtreeindex7.js @@ -1,5 +1,7 @@ var NAVTREEINDEX7 = { +"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], diff --git a/docs/html/search/all_10.js b/docs/html/search/all_10.js index 13cd4b73..5146fc6f 100644 --- a/docs/html/search/all_10.js +++ b/docs/html/search/all_10.js @@ -1,6 +1,6 @@ var searchData= [ - ['quit_5fact_5f_470',['quit_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#abe0683e48485f9fcff622d9519c37ed9',1,'GpgFrontend::UI::MainWindow']]], - ['quitdialog_471',['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_472',['quote_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af9640e5732c2595d0c094e7ff7e371ac',1,'GpgFrontend::UI::MainWindow']]] + ['quit_5fact_5f_471',['quit_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#abe0683e48485f9fcff622d9519c37ed9',1,'GpgFrontend::UI::MainWindow']]], + ['quitdialog_472',['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_473',['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 b8bce722..f2cb764a 100644 --- a/docs/html/search/all_11.js +++ b/docs/html/search/all_11.js @@ -1,25 +1,25 @@ var searchData= [ - ['rd_5f_473',['rd_',['../classGpgFrontend_1_1PassphraseGenerator.html#a12ee6f9b7fff4883074321c7e0de3dfa',1,'GpgFrontend::PassphraseGenerator::rd_()'],['../classGpgFrontend_1_1DataObjectOperator.html#a24c9cdbe9256e332ac93d6dc28c76b90',1,'GpgFrontend::DataObjectOperator::rd_()']]], - ['read2buffer_474',['Read2Buffer',['../classGpgFrontend_1_1GpgData.html#ae382a34ec551561315deca84c71c19c1',1,'GpgFrontend::GpgData']]], - ['read_5fall_5fdata_5fin_5ffile_475',['read_all_data_in_file',['../namespaceGpgFrontend.html#a73f3e2217fb1d72dc75f266e11875f6d',1,'GpgFrontend']]], - ['readdone_476',['ReadDone',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#ac1902b063decfeebe7f0908cbfe618ce',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['readfile_477',['ReadFile',['../classGpgFrontend_1_1FileOperator.html#a28a3572dc01192b6a4d50b544181084c',1,'GpgFrontend::FileOperator']]], - ['readfilestd_478',['ReadFileStd',['../classGpgFrontend_1_1FileOperator.html#ad4424bce4f22ae75a16c542dfb4ddf0a',1,'GpgFrontend::FileOperator']]], - ['redo_5fact_5f_479',['redo_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#abe38474d4e81726147f9df8a9721ce6e',1,'GpgFrontend::UI::MainWindow']]], - ['refresh_480',['Refresh',['../structGpgFrontend_1_1UI_1_1KeyTable.html#aaac381e205c323444098803e0295060f',1,'GpgFrontend::UI::KeyTable']]], - ['refresh_5finfo_5fboard_481',['refresh_info_board',['../namespaceGpgFrontend_1_1UI.html#a204156a333cde4f705f0ace91cd3d333',1,'GpgFrontend::UI']]], - ['refresh_5fkeys_5ffrom_5fkey_5fserver_482',['refresh_keys_from_key_server',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adfa3b3ae1de1fd04c5ea09e3c97c3e98',1,'GpgFrontend::UI::MainWindow']]], - ['refresh_5fwidgets_5fstate_483',['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_484',['ReleaseChannel',['../classGpgFrontend_1_1SingletonStorage.html#adb22cc80a1ab040b6e4bce962625edfd',1,'GpgFrontend::SingletonStorage::ReleaseChannel()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#ab49b1d50252e1934691a9483a6df2106',1,'GpgFrontend::SingletonFunctionObject::ReleaseChannel()']]], - ['reloadgpgcomponents_485',['ReloadGpgComponents',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a6876b6ee63ff7147c274e4f9538d29ce',1,'GpgFrontend::GpgAdvancedOperator']]], - ['resetconfigures_486',['ResetConfigures',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a209f6d1d664ab672437198dc10ed8226',1,'GpgFrontend::GpgAdvancedOperator']]], - ['resetoptionactionsmenu_487',['ResetOptionActionsMenu',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a7d7504339221bd680fb18698dd829b32',1,'GpgFrontend::UI::InfoBoardWidget']]], - ['resettempcachevalue_488',['ResetTempCacheValue',['../classGpgFrontend_1_1CoreCommonUtil.html#ae2df4542d0d7d15a542f9c664f1f295f',1,'GpgFrontend::CoreCommonUtil']]], - ['restartgpgcomponents_489',['RestartGpgComponents',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a5801bf4ea7391cbcc60efd2513d41041',1,'GpgFrontend::GpgAdvancedOperator']]], - ['restore_5fsettings_490',['restore_settings',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a210ab31f4d949a50507d0690c0d1598a',1,'GpgFrontend::UI::MainWindow']]], - ['revsign_491',['RevSign',['../classGpgFrontend_1_1GpgKeyManager.html#aa2c0e804db1c4aaf3b861ee5ab54ebd8',1,'GpgFrontend::GpgKeyManager']]], - ['revuid_492',['RevUID',['../classGpgFrontend_1_1GpgUIDOperator.html#a47f762666afbc806365877ff70947841',1,'GpgFrontend::GpgUIDOperator']]], - ['run_493',['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_494',['RunGpgFrontendUI',['../namespaceGpgFrontend_1_1UI.html#a9e2d085812ef8fdd6f19ea94a241b4da',1,'GpgFrontend::UI']]] + ['rd_5f_474',['rd_',['../classGpgFrontend_1_1PassphraseGenerator.html#a12ee6f9b7fff4883074321c7e0de3dfa',1,'GpgFrontend::PassphraseGenerator::rd_()'],['../classGpgFrontend_1_1DataObjectOperator.html#a24c9cdbe9256e332ac93d6dc28c76b90',1,'GpgFrontend::DataObjectOperator::rd_()']]], + ['read2buffer_475',['Read2Buffer',['../classGpgFrontend_1_1GpgData.html#ae382a34ec551561315deca84c71c19c1',1,'GpgFrontend::GpgData']]], + ['read_5fall_5fdata_5fin_5ffile_476',['read_all_data_in_file',['../namespaceGpgFrontend.html#a73f3e2217fb1d72dc75f266e11875f6d',1,'GpgFrontend']]], + ['readdone_477',['ReadDone',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#ac1902b063decfeebe7f0908cbfe618ce',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['readfile_478',['ReadFile',['../classGpgFrontend_1_1FileOperator.html#a28a3572dc01192b6a4d50b544181084c',1,'GpgFrontend::FileOperator']]], + ['readfilestd_479',['ReadFileStd',['../classGpgFrontend_1_1FileOperator.html#ad4424bce4f22ae75a16c542dfb4ddf0a',1,'GpgFrontend::FileOperator']]], + ['redo_5fact_5f_480',['redo_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#abe38474d4e81726147f9df8a9721ce6e',1,'GpgFrontend::UI::MainWindow']]], + ['refresh_481',['Refresh',['../structGpgFrontend_1_1UI_1_1KeyTable.html#aaac381e205c323444098803e0295060f',1,'GpgFrontend::UI::KeyTable']]], + ['refresh_5finfo_5fboard_482',['refresh_info_board',['../namespaceGpgFrontend_1_1UI.html#a204156a333cde4f705f0ace91cd3d333',1,'GpgFrontend::UI']]], + ['refresh_5fkeys_5ffrom_5fkey_5fserver_483',['refresh_keys_from_key_server',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adfa3b3ae1de1fd04c5ea09e3c97c3e98',1,'GpgFrontend::UI::MainWindow']]], + ['refresh_5fwidgets_5fstate_484',['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_485',['ReleaseChannel',['../classGpgFrontend_1_1SingletonStorage.html#adb22cc80a1ab040b6e4bce962625edfd',1,'GpgFrontend::SingletonStorage::ReleaseChannel()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#ab49b1d50252e1934691a9483a6df2106',1,'GpgFrontend::SingletonFunctionObject::ReleaseChannel()']]], + ['reloadgpgcomponents_486',['ReloadGpgComponents',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a6876b6ee63ff7147c274e4f9538d29ce',1,'GpgFrontend::GpgAdvancedOperator']]], + ['resetconfigures_487',['ResetConfigures',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a209f6d1d664ab672437198dc10ed8226',1,'GpgFrontend::GpgAdvancedOperator']]], + ['resetoptionactionsmenu_488',['ResetOptionActionsMenu',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a7d7504339221bd680fb18698dd829b32',1,'GpgFrontend::UI::InfoBoardWidget']]], + ['resettempcachevalue_489',['ResetTempCacheValue',['../classGpgFrontend_1_1CoreCommonUtil.html#ae2df4542d0d7d15a542f9c664f1f295f',1,'GpgFrontend::CoreCommonUtil']]], + ['restartgpgcomponents_490',['RestartGpgComponents',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a5801bf4ea7391cbcc60efd2513d41041',1,'GpgFrontend::GpgAdvancedOperator']]], + ['restore_5fsettings_491',['restore_settings',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a210ab31f4d949a50507d0690c0d1598a',1,'GpgFrontend::UI::MainWindow']]], + ['revsign_492',['RevSign',['../classGpgFrontend_1_1GpgKeyManager.html#aa2c0e804db1c4aaf3b861ee5ab54ebd8',1,'GpgFrontend::GpgKeyManager']]], + ['revuid_493',['RevUID',['../classGpgFrontend_1_1GpgUIDOperator.html#a47f762666afbc806365877ff70947841',1,'GpgFrontend::GpgUIDOperator']]], + ['run_494',['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_495',['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 38ed05dc..b7f789dd 100644 --- a/docs/html/search/all_12.js +++ b/docs/html/search/all_12.js @@ -1,197 +1,197 @@ var searchData= [ - ['save_5fact_5f_495',['save_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab0f148559d830fcf10b5a1937b0a47dc',1,'GpgFrontend::UI::MainWindow']]], - ['save_5fas_5fact_5f_496',['save_as_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a22256763ef83ed35a81e446b553d8112',1,'GpgFrontend::UI::MainWindow']]], - ['save_5ffile_497',['save_file',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a66b6f6633e7ac71e5fe8b7814a81cadf',1,'GpgFrontend::UI::TextEdit']]], - ['save_5fsettings_498',['save_settings',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7a4b6490038470a8849231e48282da98',1,'GpgFrontend::UI::MainWindow']]], - ['savecache_499',['SaveCache',['../classGpgFrontend_1_1CacheManager.html#a3cbc3238638dcd8b4722bfdf560c73fe',1,'GpgFrontend::CacheManager']]], - ['select_5fall_5fact_5f_500',['select_all_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ac6a42e6e3af7e76f0bd2ecc62c9520cc',1,'GpgFrontend::UI::MainWindow']]], - ['sequency_5f_501',['sequency_',['../classGpgFrontend_1_1Thread_1_1Task.html#a71ed097a2c4b4b735fd385dfe87e6f57',1,'GpgFrontend::Thread::Task']]], - ['set_5fbackground_502',['set_background',['../classGpgFrontend_1_1UI_1_1FindWidget.html#a0c531f2c673caed29225a323e750205f',1,'GpgFrontend::UI::FindWidget']]], - ['set_5floading_503',['set_loading',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ad4a75da57fa18bfcfaeb7fc601f1c8f6',1,'GpgFrontend::UI::KeyServerImportDialog']]], - ['set_5fmessage_504',['set_message',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ab93fbf5e0626bffe398f5baa2bc00b1a',1,'GpgFrontend::UI::KeyServerImportDialog']]], - ['set_5fsignal_5fslot_505',['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_506',['set_status',['../classGpgFrontend_1_1GpgResultAnalyse.html#a7f13592b421c7b0d3853f15cece8d195',1,'GpgFrontend::GpgResultAnalyse']]], - ['setalgo_507',['SetAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#adcd9c4f3e75f989810988e0bc81d401f',1,'GpgFrontend::GenKeyInfo']]], - ['setallowauthentication_508',['SetAllowAuthentication',['../classGpgFrontend_1_1GenKeyInfo.html#aac51d251682ed1bc1090416ebfeba4de',1,'GpgFrontend::GenKeyInfo']]], - ['setallowcertification_509',['SetAllowCertification',['../classGpgFrontend_1_1GenKeyInfo.html#ac5f52f74566618c71a29bdc5e70fce2e',1,'GpgFrontend::GenKeyInfo']]], - ['setallowencryption_510',['SetAllowEncryption',['../classGpgFrontend_1_1GenKeyInfo.html#a965014232f6de22c6d33320231ca4454',1,'GpgFrontend::GenKeyInfo']]], - ['setallowsigning_511',['SetAllowSigning',['../classGpgFrontend_1_1GenKeyInfo.html#a1a01518b24d40d95e187ef73f4dcd52a',1,'GpgFrontend::GenKeyInfo']]], - ['setchannel_512',['SetChannel',['../classGpgFrontend_1_1ChannelObject.html#aa3b19cad6d873b314bba32a3dae85f09',1,'GpgFrontend::ChannelObject']]], - ['setchecked_513',['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_514',['SetColumnWidth',['../classGpgFrontend_1_1UI_1_1KeyList.html#aab3f4facfc850e7eeb917571ca89f4a5',1,'GpgFrontend::UI::KeyList']]], - ['setcomment_515',['SetComment',['../classGpgFrontend_1_1GenKeyInfo.html#a947886456f5699241b1c1b9332e4b29e',1,'GpgFrontend::GenKeyInfo']]], - ['setcryptomenustatus_516',['SetCryptoMenuStatus',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a85a98a1ec5418c110201980fa013d1fd',1,'GpgFrontend::UI::MainWindow']]], - ['setdoubleclickedaction_517',['SetDoubleClickedAction',['../classGpgFrontend_1_1UI_1_1KeyList.html#a7d75246eee6368be295c9ab5fe5ef291',1,'GpgFrontend::UI::KeyList']]], - ['setemail_518',['SetEmail',['../classGpgFrontend_1_1GenKeyInfo.html#a656c81d56f77350184f9a94db1a3ce05',1,'GpgFrontend::GenKeyInfo']]], - ['setexpire_519',['SetExpire',['../classGpgFrontend_1_1GpgKeyManager.html#a1625abfbff168c476e76fa9425a6c37d',1,'GpgFrontend::GpgKeyManager::SetExpire()'],['../classGpgFrontend_1_1GpgKeyOpera.html#a12e6b05b23781861065d7e3243c9349e',1,'GpgFrontend::GpgKeyOpera::SetExpire()']]], - ['setexpiretime_520',['SetExpireTime',['../classGpgFrontend_1_1GenKeyInfo.html#aa3bfeda7fc7c83dc8d48ee2b80780c3a',1,'GpgFrontend::GenKeyInfo']]], - ['setfilepath_521',['SetFilePath',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aa9e82690824c82e7628ba4ace9d6e2fe',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['setfinishafterrun_522',['SetFinishAfterRun',['../classGpgFrontend_1_1Thread_1_1Task.html#a689969e7d88ba7ad73a693a1b38aedd7',1,'GpgFrontend::Thread::Task']]], - ['setinfoboard_523',['SetInfoBoard',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#ac936cfc8e1b3af65d0d71b74fb3f0b02',1,'GpgFrontend::UI::InfoBoardWidget']]], - ['setissubkey_524',['SetIsSubKey',['../classGpgFrontend_1_1GenKeyInfo.html#acd9f7742b739e1db60bd50489690dec1',1,'GpgFrontend::GenKeyInfo']]], - ['setkeylength_525',['SetKeyLength',['../classGpgFrontend_1_1GenKeyInfo.html#ae744395012e4dcb9734ad5a30aa8ed75',1,'GpgFrontend::GenKeyInfo']]], - ['setname_526',['SetName',['../classGpgFrontend_1_1GenKeyInfo.html#a65ebc487e0e64c325f65474c812615f7',1,'GpgFrontend::GenKeyInfo']]], - ['setnonexpired_527',['SetNonExpired',['../classGpgFrontend_1_1GenKeyInfo.html#aea247381c21896f5371bb813ca665329',1,'GpgFrontend::GenKeyInfo']]], - ['setnonpassphrase_528',['SetNonPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#a864407216cbdbef9e7b35e6be694d3ef',1,'GpgFrontend::GenKeyInfo']]], - ['setobjectinchannel_529',['SetObjectInChannel',['../classGpgFrontend_1_1SingletonStorage.html#ab0097bb648b2303d68a975c7cbea5a52',1,'GpgFrontend::SingletonStorage']]], - ['setpassphrase_530',['SetPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#afe1760d4ead397f6096925290a38e1a4',1,'GpgFrontend::GenKeyInfo']]], - ['setpassphrasecb_531',['SetPassphraseCb',['../classGpgFrontend_1_1GpgContext.html#a3399fc60086ff5010a089bff48bbc63c',1,'GpgFrontend::GpgContext']]], - ['setprimaryuid_532',['SetPrimaryUID',['../classGpgFrontend_1_1GpgUIDOperator.html#acbdabec97df508382b0c9b1fffbf1dd5',1,'GpgFrontend::GpgUIDOperator']]], - ['setrtn_533',['SetRTN',['../classGpgFrontend_1_1Thread_1_1Task.html#aa6d702417bdd6a88c447ed6a457fa098',1,'GpgFrontend::Thread::Task']]], - ['setsettings_534',['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_535',['SetSigners',['../classGpgFrontend_1_1GpgBasicOperator.html#ad6ea3596ba7d7543fb1b8233d09996df',1,'GpgFrontend::GpgBasicOperator']]], - ['settempcachevalue_536',['SetTempCacheValue',['../classGpgFrontend_1_1CoreCommonUtil.html#abe5fa8731b0b672613505d59a576a3d7',1,'GpgFrontend::CoreCommonUtil']]], - ['settingsdialog_537',['SettingsDialog',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html',1,'GpgFrontend::UI::SettingsDialog'],['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#a1b7ddc7861d1b4b9dc3810ed98023ffc',1,'GpgFrontend::UI::SettingsDialog::SettingsDialog()']]], - ['settingsobject_538',['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_539',['show_key_details_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#acd41722ceedd20973b7d83852fab407b',1,'GpgFrontend::UI::MainWindow']]], - ['show_5fverify_5fdetails_540',['show_verify_details',['../namespaceGpgFrontend_1_1UI.html#a590a26051105940a6d6e0743b147e281',1,'GpgFrontend::UI']]], - ['showevent_541',['showEvent',['../classGpgFrontend_1_1UI_1_1AboutDialog.html#ab799cd5e07b06a8e953d72105c0a1083',1,'GpgFrontend::UI::AboutDialog']]], - ['shownotificationwidget_542',['ShowNotificationWidget',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#af5dfdfd48ef64cc46e524ec70a22fe3a',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['sign_543',['Sign',['../classGpgFrontend_1_1GpgBasicOperator.html#a988d7e65e85fc7a578f26300332a65d3',1,'GpgFrontend::GpgBasicOperator']]], - ['sign_5fact_5f_544',['sign_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0cded37ef6e07856bbe439b0e90db839',1,'GpgFrontend::UI::MainWindow']]], - ['sign_5fmarked_5f_545',['sign_marked_',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a4f94e9ef7889a169bda5a47b7f657358',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['signaldeeprestartneeded_546',['SignalDeepRestartNeeded',['../classGpgFrontend_1_1UI_1_1GeneralTab.html#afc107d56f13000aa28436a5e26a0876b',1,'GpgFrontend::UI::GeneralTab']]], - ['signalkeydatabaserefreshdone_547',['SignalKeyDatabaseRefreshDone',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a1abc83bba95579aa94d0870181991a28',1,'GpgFrontend::UI::CommonUtils']]], - ['signalkeyserverimportresult_548',['SignalKeyServerImportResult',['../classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a6b2c07d193fb28a57b1738fa493b2b3f',1,'GpgFrontend::UI::KeyServerImportTask']]], - ['signalkeyserverlisttestresult_549',['SignalKeyServerListTestResult',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a20f0147d670be7ab5c9d3051a900f508',1,'GpgFrontend::UI::ListedKeyServerTestTask']]], - ['signalkeyserversearchresult_550',['SignalKeyServerSearchResult',['../classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#ae478130476c95a8b220c3b0e6a7b88b4',1,'GpgFrontend::UI::KeyServerSearchTask']]], - ['signalopenhelp_551',['SignalOpenHelp',['../classGpgFrontend_1_1UI_1_1Wizard.html#a8b5f5ddb1e6470cbf6c87cc6400031fb',1,'GpgFrontend::UI::Wizard']]], - ['signalpathchanged_552',['SignalPathChanged',['../classGpgFrontend_1_1UI_1_1FilePage.html#aec462d16a2097024a4ced24012b905a7',1,'GpgFrontend::UI::FilePage']]], - ['signalproxyconnectiontestresult_553',['SignalProxyConnectionTestResult',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask.html#a31cd14d72c6c28c811c9183f118f5873',1,'GpgFrontend::UI::ProxyConnectionTestTask']]], - ['signalrefreshinfoboard_554',['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_555',['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_556',['SignalReplyFromUpdateServer',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a5e752e01539ccfdc6bbe41a404ddaa95',1,'GpgFrontend::UI::UpdateTab']]], - ['signalrestartneeded_557',['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()']]], + ['save_5fact_5f_496',['save_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab0f148559d830fcf10b5a1937b0a47dc',1,'GpgFrontend::UI::MainWindow']]], + ['save_5fas_5fact_5f_497',['save_as_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a22256763ef83ed35a81e446b553d8112',1,'GpgFrontend::UI::MainWindow']]], + ['save_5ffile_498',['save_file',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a66b6f6633e7ac71e5fe8b7814a81cadf',1,'GpgFrontend::UI::TextEdit']]], + ['save_5fsettings_499',['save_settings',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7a4b6490038470a8849231e48282da98',1,'GpgFrontend::UI::MainWindow']]], + ['savecache_500',['SaveCache',['../classGpgFrontend_1_1CacheManager.html#a3cbc3238638dcd8b4722bfdf560c73fe',1,'GpgFrontend::CacheManager']]], + ['select_5fall_5fact_5f_501',['select_all_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ac6a42e6e3af7e76f0bd2ecc62c9520cc',1,'GpgFrontend::UI::MainWindow']]], + ['sequency_5f_502',['sequency_',['../classGpgFrontend_1_1Thread_1_1Task.html#a71ed097a2c4b4b735fd385dfe87e6f57',1,'GpgFrontend::Thread::Task']]], + ['set_5fbackground_503',['set_background',['../classGpgFrontend_1_1UI_1_1FindWidget.html#a0c531f2c673caed29225a323e750205f',1,'GpgFrontend::UI::FindWidget']]], + ['set_5floading_504',['set_loading',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ad4a75da57fa18bfcfaeb7fc601f1c8f6',1,'GpgFrontend::UI::KeyServerImportDialog']]], + ['set_5fmessage_505',['set_message',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ab93fbf5e0626bffe398f5baa2bc00b1a',1,'GpgFrontend::UI::KeyServerImportDialog']]], + ['set_5fsignal_5fslot_506',['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_507',['set_status',['../classGpgFrontend_1_1GpgResultAnalyse.html#a7f13592b421c7b0d3853f15cece8d195',1,'GpgFrontend::GpgResultAnalyse']]], + ['setalgo_508',['SetAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#adcd9c4f3e75f989810988e0bc81d401f',1,'GpgFrontend::GenKeyInfo']]], + ['setallowauthentication_509',['SetAllowAuthentication',['../classGpgFrontend_1_1GenKeyInfo.html#aac51d251682ed1bc1090416ebfeba4de',1,'GpgFrontend::GenKeyInfo']]], + ['setallowcertification_510',['SetAllowCertification',['../classGpgFrontend_1_1GenKeyInfo.html#ac5f52f74566618c71a29bdc5e70fce2e',1,'GpgFrontend::GenKeyInfo']]], + ['setallowencryption_511',['SetAllowEncryption',['../classGpgFrontend_1_1GenKeyInfo.html#a965014232f6de22c6d33320231ca4454',1,'GpgFrontend::GenKeyInfo']]], + ['setallowsigning_512',['SetAllowSigning',['../classGpgFrontend_1_1GenKeyInfo.html#a1a01518b24d40d95e187ef73f4dcd52a',1,'GpgFrontend::GenKeyInfo']]], + ['setchannel_513',['SetChannel',['../classGpgFrontend_1_1ChannelObject.html#aa3b19cad6d873b314bba32a3dae85f09',1,'GpgFrontend::ChannelObject']]], + ['setchecked_514',['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_515',['SetColumnWidth',['../classGpgFrontend_1_1UI_1_1KeyList.html#aab3f4facfc850e7eeb917571ca89f4a5',1,'GpgFrontend::UI::KeyList']]], + ['setcomment_516',['SetComment',['../classGpgFrontend_1_1GenKeyInfo.html#a947886456f5699241b1c1b9332e4b29e',1,'GpgFrontend::GenKeyInfo']]], + ['setcryptomenustatus_517',['SetCryptoMenuStatus',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a85a98a1ec5418c110201980fa013d1fd',1,'GpgFrontend::UI::MainWindow']]], + ['setdoubleclickedaction_518',['SetDoubleClickedAction',['../classGpgFrontend_1_1UI_1_1KeyList.html#a7d75246eee6368be295c9ab5fe5ef291',1,'GpgFrontend::UI::KeyList']]], + ['setemail_519',['SetEmail',['../classGpgFrontend_1_1GenKeyInfo.html#a656c81d56f77350184f9a94db1a3ce05',1,'GpgFrontend::GenKeyInfo']]], + ['setexpire_520',['SetExpire',['../classGpgFrontend_1_1GpgKeyManager.html#a1625abfbff168c476e76fa9425a6c37d',1,'GpgFrontend::GpgKeyManager::SetExpire()'],['../classGpgFrontend_1_1GpgKeyOpera.html#a12e6b05b23781861065d7e3243c9349e',1,'GpgFrontend::GpgKeyOpera::SetExpire()']]], + ['setexpiretime_521',['SetExpireTime',['../classGpgFrontend_1_1GenKeyInfo.html#aa3bfeda7fc7c83dc8d48ee2b80780c3a',1,'GpgFrontend::GenKeyInfo']]], + ['setfilepath_522',['SetFilePath',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aa9e82690824c82e7628ba4ace9d6e2fe',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['setfinishafterrun_523',['SetFinishAfterRun',['../classGpgFrontend_1_1Thread_1_1Task.html#a689969e7d88ba7ad73a693a1b38aedd7',1,'GpgFrontend::Thread::Task']]], + ['setinfoboard_524',['SetInfoBoard',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#ac936cfc8e1b3af65d0d71b74fb3f0b02',1,'GpgFrontend::UI::InfoBoardWidget']]], + ['setissubkey_525',['SetIsSubKey',['../classGpgFrontend_1_1GenKeyInfo.html#acd9f7742b739e1db60bd50489690dec1',1,'GpgFrontend::GenKeyInfo']]], + ['setkeylength_526',['SetKeyLength',['../classGpgFrontend_1_1GenKeyInfo.html#ae744395012e4dcb9734ad5a30aa8ed75',1,'GpgFrontend::GenKeyInfo']]], + ['setname_527',['SetName',['../classGpgFrontend_1_1GenKeyInfo.html#a65ebc487e0e64c325f65474c812615f7',1,'GpgFrontend::GenKeyInfo']]], + ['setnonexpired_528',['SetNonExpired',['../classGpgFrontend_1_1GenKeyInfo.html#aea247381c21896f5371bb813ca665329',1,'GpgFrontend::GenKeyInfo']]], + ['setnonpassphrase_529',['SetNonPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#a864407216cbdbef9e7b35e6be694d3ef',1,'GpgFrontend::GenKeyInfo']]], + ['setobjectinchannel_530',['SetObjectInChannel',['../classGpgFrontend_1_1SingletonStorage.html#ab0097bb648b2303d68a975c7cbea5a52',1,'GpgFrontend::SingletonStorage']]], + ['setpassphrase_531',['SetPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#afe1760d4ead397f6096925290a38e1a4',1,'GpgFrontend::GenKeyInfo']]], + ['setpassphrasecb_532',['SetPassphraseCb',['../classGpgFrontend_1_1GpgContext.html#a3399fc60086ff5010a089bff48bbc63c',1,'GpgFrontend::GpgContext']]], + ['setprimaryuid_533',['SetPrimaryUID',['../classGpgFrontend_1_1GpgUIDOperator.html#acbdabec97df508382b0c9b1fffbf1dd5',1,'GpgFrontend::GpgUIDOperator']]], + ['setrtn_534',['SetRTN',['../classGpgFrontend_1_1Thread_1_1Task.html#aa6d702417bdd6a88c447ed6a457fa098',1,'GpgFrontend::Thread::Task']]], + ['setsettings_535',['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_536',['SetSigners',['../classGpgFrontend_1_1GpgBasicOperator.html#ad6ea3596ba7d7543fb1b8233d09996df',1,'GpgFrontend::GpgBasicOperator']]], + ['settempcachevalue_537',['SetTempCacheValue',['../classGpgFrontend_1_1CoreCommonUtil.html#abe5fa8731b0b672613505d59a576a3d7',1,'GpgFrontend::CoreCommonUtil']]], + ['settingsdialog_538',['SettingsDialog',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html',1,'GpgFrontend::UI::SettingsDialog'],['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#a1b7ddc7861d1b4b9dc3810ed98023ffc',1,'GpgFrontend::UI::SettingsDialog::SettingsDialog()']]], + ['settingsobject_539',['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_540',['show_key_details_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#acd41722ceedd20973b7d83852fab407b',1,'GpgFrontend::UI::MainWindow']]], + ['show_5fverify_5fdetails_541',['show_verify_details',['../namespaceGpgFrontend_1_1UI.html#a590a26051105940a6d6e0743b147e281',1,'GpgFrontend::UI']]], + ['showevent_542',['showEvent',['../classGpgFrontend_1_1UI_1_1AboutDialog.html#ab799cd5e07b06a8e953d72105c0a1083',1,'GpgFrontend::UI::AboutDialog']]], + ['shownotificationwidget_543',['ShowNotificationWidget',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#af5dfdfd48ef64cc46e524ec70a22fe3a',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['sign_544',['Sign',['../classGpgFrontend_1_1GpgBasicOperator.html#a988d7e65e85fc7a578f26300332a65d3',1,'GpgFrontend::GpgBasicOperator']]], + ['sign_5fact_5f_545',['sign_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0cded37ef6e07856bbe439b0e90db839',1,'GpgFrontend::UI::MainWindow']]], + ['sign_5fmarked_5f_546',['sign_marked_',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a4f94e9ef7889a169bda5a47b7f657358',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['signaldeeprestartneeded_547',['SignalDeepRestartNeeded',['../classGpgFrontend_1_1UI_1_1GeneralTab.html#afc107d56f13000aa28436a5e26a0876b',1,'GpgFrontend::UI::GeneralTab']]], + ['signalkeydatabaserefreshdone_548',['SignalKeyDatabaseRefreshDone',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a1abc83bba95579aa94d0870181991a28',1,'GpgFrontend::UI::CommonUtils']]], + ['signalkeyserverimportresult_549',['SignalKeyServerImportResult',['../classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a6b2c07d193fb28a57b1738fa493b2b3f',1,'GpgFrontend::UI::KeyServerImportTask']]], + ['signalkeyserverlisttestresult_550',['SignalKeyServerListTestResult',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a20f0147d670be7ab5c9d3051a900f508',1,'GpgFrontend::UI::ListedKeyServerTestTask']]], + ['signalkeyserversearchresult_551',['SignalKeyServerSearchResult',['../classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#ae478130476c95a8b220c3b0e6a7b88b4',1,'GpgFrontend::UI::KeyServerSearchTask']]], + ['signalopenhelp_552',['SignalOpenHelp',['../classGpgFrontend_1_1UI_1_1Wizard.html#a8b5f5ddb1e6470cbf6c87cc6400031fb',1,'GpgFrontend::UI::Wizard']]], + ['signalpathchanged_553',['SignalPathChanged',['../classGpgFrontend_1_1UI_1_1FilePage.html#aec462d16a2097024a4ced24012b905a7',1,'GpgFrontend::UI::FilePage']]], + ['signalproxyconnectiontestresult_554',['SignalProxyConnectionTestResult',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask.html#a31cd14d72c6c28c811c9183f118f5873',1,'GpgFrontend::UI::ProxyConnectionTestTask']]], + ['signalrefreshinfoboard_555',['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_556',['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_557',['SignalReplyFromUpdateServer',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a5e752e01539ccfdc6bbe41a404ddaa95',1,'GpgFrontend::UI::UpdateTab']]], ['signalrestartneeded_558',['signalRestartNeeded',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html#abff49b636449815a9ebff52f5c067712',1,'GpgFrontend::UI::AppearanceTab']]], - ['signalstation_559',['SignalStation',['../classGpgFrontend_1_1UI_1_1SignalStation.html',1,'GpgFrontend::UI']]], - ['signaltaskend_560',['SignalTaskEnd',['../classGpgFrontend_1_1Thread_1_1Task.html#abbbb68bcac48b6c31d6fe8ee1572f151',1,'GpgFrontend::Thread::Task']]], - ['signaltaskrunnableend_561',['SignalTaskRunnableEnd',['../classGpgFrontend_1_1Thread_1_1Task.html#a125b7e71f21dadf10618e30ee0386b12',1,'GpgFrontend::Thread::Task']]], - ['signaluibytesdisplayed_562',['SignalUIBytesDisplayed',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#afd3749488fdd3d1c53446fb8c833f3f4',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['signalupgradeversion_563',['SignalUpgradeVersion',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a36c5597674253348477d78ad6af380ab',1,'GpgFrontend::UI::VersionCheckTask']]], - ['signaturedetailsdialog_564',['SignatureDetailsDialog',['../classSignatureDetailsDialog.html',1,'']]], - ['signerspicker_565',['SignersPicker',['../classGpgFrontend_1_1UI_1_1SignersPicker.html',1,'GpgFrontend::UI::SignersPicker'],['../classGpgFrontend_1_1UI_1_1SignersPicker.html#a02c3ba737702894fc6d4ac1a1c543ccb',1,'GpgFrontend::UI::SignersPicker::SignersPicker()']]], - ['signfile_566',['SignFile',['../classGpgFrontend_1_1GpgFileOpera.html#a350df1c07c054625c4755a78e6ca5ca8',1,'GpgFrontend::GpgFileOpera']]], - ['signkey_567',['SignKey',['../classGpgFrontend_1_1GpgKeyManager.html#a12138780c53add7589f78f056019e5e0',1,'GpgFrontend::GpgKeyManager']]], - ['singletonfunctionobject_568',['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_569',['SingletonFunctionObject< DataObjectOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20globalsettingstation_20_3e_570',['SingletonFunctionObject< GlobalSettingStation >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgadvancedoperator_20_3e_571',['SingletonFunctionObject< GpgAdvancedOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgbasicoperator_20_3e_572',['SingletonFunctionObject< GpgBasicOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgcommandexecutor_20_3e_573',['SingletonFunctionObject< GpgCommandExecutor >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgcontext_20_3e_574',['SingletonFunctionObject< GpgContext >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgfileopera_20_3e_575',['SingletonFunctionObject< GpgFileOpera >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgkeygetter_20_3e_576',['SingletonFunctionObject< GpgKeyGetter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgkeyimportexporter_20_3e_577',['SingletonFunctionObject< GpgKeyImportExporter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgkeymanager_20_3e_578',['SingletonFunctionObject< GpgKeyManager >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgkeyopera_20_3e_579',['SingletonFunctionObject< GpgKeyOpera >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpguidoperator_20_3e_580',['SingletonFunctionObject< GpgUIDOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20passphrasegenerator_20_3e_581',['SingletonFunctionObject< PassphraseGenerator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20taskrunnergetter_20_3e_582',['SingletonFunctionObject< TaskRunnerGetter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonstorage_583',['SingletonStorage',['../classGpgFrontend_1_1SingletonStorage.html',1,'GpgFrontend']]], - ['singletonstoragecollection_584',['SingletonStorageCollection',['../classGpgFrontend_1_1SingletonStorageCollection.html',1,'GpgFrontend']]], - ['slot_5factivated_5fkey_5ftype_585',['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_586',['slot_add_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a821247d738457c4ee046162aad6728f9',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fadd_5fuid_5fresult_587',['slot_add_uid_result',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a16f1ae88d6a417b614cfc6ae1852187c',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['slot_5fappend_5fselected_5fkeys_588',['slot_append_selected_keys',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a76bf3784d751db78ed13bd9962e14472',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fauthentication_5fbox_5fchanged_589',['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_590',['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_591',['slot_clean_double_line_breaks',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aea9274389c3b049793fe5aa5a6adf63c',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fcompress_5ffiles_592',['slot_compress_files',['../classGpgFrontend_1_1UI_1_1FilePage.html#a250b1950f874c1d11549cd5c0ea9693f',1,'GpgFrontend::UI::FilePage']]], - ['slot_5fcopy_5fdefault_5fuid_5fto_5fclipboard_593',['slot_copy_default_uid_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3982432b140738859415e487e2c5f5eb',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fcopy_5ffingerprint_594',['slot_copy_fingerprint',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#af8b600fbd7cd0fbb5b6183403bf870b2',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['slot_5fcopy_5fkey_5fid_5fto_5fclipboard_595',['slot_copy_key_id_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9e2ddb2135df42d76134bea168fbdce9',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fcopy_5fmail_5faddress_5fto_5fclipboard_596',['slot_copy_mail_address_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af93d72eaf58326f1f9e926752c6b1fc6',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fcreate_5fnew_5fuid_597',['slot_create_new_uid',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a4e115ce46a85c2f9e4e0e2427839fc7c',1,'GpgFrontend::UI::KeyNewUIDDialog']]], - ['slot_5fcut_5fpgp_5fheader_598',['slot_cut_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7f5a88922d06bee977335fb4b5f1d86d',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fdecrypt_599',['slot_decrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae2d89e2cc6c99ff0e16b396d2381f904',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fdecrypt_5fverify_600',['slot_decrypt_verify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1d61ea803e6c825bd54f42ba9ae85919',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fdisable_5ftab_5factions_601',['slot_disable_tab_actions',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a24a0b0d974fc5f8fdda60c128a82d957',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fdouble_5fclicked_602',['slot_double_clicked',['../classGpgFrontend_1_1UI_1_1KeyList.html#a69e54f06d546d516a0dcdf1055b8028e',1,'GpgFrontend::UI::KeyList']]], - ['slot_5fencrypt_603',['slot_encrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae11d01211c2914ecc148e13dd7de506e',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fencrypt_5fsign_604',['slot_encrypt_sign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a304efe91afa31b32725caa00c27475a4',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fencryption_5fbox_5fchanged_605',['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_606',['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_607',['slot_export_private_key',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a384f4250e58110da58c0e6996b42a8ab',1,'GpgFrontend::UI::KeyPairOperaTab']]], - ['slot_5ffile_5ftree_5fview_5fitem_5fclicked_608',['slot_file_tree_view_item_clicked',['../classGpgFrontend_1_1UI_1_1FilePage.html#a676917817d6f519e043742d1d87f97f1',1,'GpgFrontend::UI::FilePage']]], - ['slot_5ffile_5ftree_5fview_5fitem_5fdouble_5fclicked_609',['slot_file_tree_view_item_double_clicked',['../classGpgFrontend_1_1UI_1_1FilePage.html#ad3c54320bdafbbb2c06a20d6c7dea9d6',1,'GpgFrontend::UI::FilePage']]], - ['slot_5ffind_610',['slot_find',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae28089efbd236708601470f30f26faaa',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fformat_5fgpg_5fheader_611',['slot_format_gpg_header',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a45267bcfc8fc83851894061c0fe2a9c2',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['slot_5fimport_612',['slot_import',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ac9c14bbc97945c94fd02c8e067ccab06',1,'GpgFrontend::UI::KeyServerImportDialog']]], - ['slot_5fimport_5ffinished_613',['slot_import_finished',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a6f1c5238da7cd6f117bed8018469b37a',1,'GpgFrontend::UI::KeyServerImportDialog']]], - ['slot_5fimport_5fkey_5ffrom_5fedit_614',['slot_import_key_from_edit',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a55926649e28a96318b89afba01b966bf',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5finsert_5ftext_615',['slot_insert_text',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a184985104f23da8fdf2b9aaf7b27405b',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['slot_5fjump_5fpage_616',['slot_jump_page',['../classGpgFrontend_1_1UI_1_1ChoosePage.html#af0d7890fe65385b7785719b9cff0718b',1,'GpgFrontend::UI::ChoosePage']]], - ['slot_5fkey_5fgen_5faccept_617',['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_618',['slot_non_expired_checked',['../classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#adde2b33bd17f521f0630702987b1d274',1,'GpgFrontend::UI::KeySetExpireDateDialog']]], - ['slot_5fopen_5ffile_5ftab_619',['slot_open_file_tab',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a29a811d4d440c79c1bd2cc2bb40cdf7e',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fopen_5fkey_5fmanagement_620',['slot_open_key_management',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a16ddebec90a4bd0d13baa9d972c3445f',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fopen_5fsettings_5fdialog_621',['slot_open_settings_dialog',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a874b505fbc1046f579a736683f5a7f65',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fopen_5furl_622',['slot_open_url',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a51ff99077a75507365307f5dd783df99',1,'GpgFrontend::UI::HelpPage']]], - ['slot_5fprocess_5fnetwork_5freply_623',['slot_process_network_reply',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#af9350e0a8d5993e5be0a5478fcb161be',1,'GpgFrontend::UI::ListedKeyServerTestTask']]], - ['slot_5fremove_5ftab_624',['slot_remove_tab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a12f65fbc4984c266a5df4505ecde7c42',1,'GpgFrontend::UI::TextEdit']]], - ['slot_5fsave_5fstatus_5fto_5fcache_5ffor_5frevovery_625',['slot_save_status_to_cache_for_revovery',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a1bf57ebe1e32b12c48bb633b7dd7a4f1',1,'GpgFrontend::UI::TextEdit']]], - ['slot_5fset_5frestart_5fneeded_626',['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_627',['slot_show_key_details',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a033d448541b44fa48b76dec828a4eb0e',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fshow_5fversion_5fstatus_628',['slot_show_version_status',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a1003bd969ecbc5deba940e39436968f4',1,'GpgFrontend::UI::UpdateTab']]], - ['slot_5fsign_629',['slot_sign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3f3d03b0ec22385bee559fbd2aeb881b',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fsign_5fkey_630',['slot_sign_key',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#a82f6bf641ff3b64341a0bdcf76571c43',1,'GpgFrontend::UI::KeyUIDSignDialog']]], - ['slot_5fsigning_5fbox_5fchanged_631',['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_632',['slot_start_wizard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aabf3ddf6b624790369f164b4889c95be',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fupdate_5fkey_5fstatus_633',['slot_update_key_status',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#ab4ac26378d6a07757720163eb4b1cb0e',1,'GpgFrontend::UI::CommonUtils']]], - ['slot_5fupload_5fkey_5fto_5fserver_634',['slot_upload_key_to_server',['../classGpgFrontend_1_1UI_1_1KeyUploadDialog.html#a0f724649ca953b888f07d69c97fe45b6',1,'GpgFrontend::UI::KeyUploadDialog']]], - ['slot_5fverify_635',['slot_verify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa9c986dd95984811479ea93230c74b5d',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fversion_5fupgrade_636',['slot_version_upgrade',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a48368c77af7b1f4cb632870b8d914a28',1,'GpgFrontend::UI::MainWindow']]], - ['slotclosetab_637',['SlotCloseTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa21659aa7acba98dfd6286d69e00ab9b',1,'GpgFrontend::UI::TextEdit']]], - ['slotcopy_638',['SlotCopy',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3599bd01636a873cf3437ab6b9d38780',1,'GpgFrontend::UI::TextEdit']]], - ['slotcurpagefiletreeview_639',['SlotCurPageFileTreeView',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a72014409d407c161b048e07c061b4cf9',1,'GpgFrontend::UI::TextEdit']]], - ['slotcurpagetextedit_640',['SlotCurPageTextEdit',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a48351dc1529da3b8da311f65b735b5f1',1,'GpgFrontend::UI::TextEdit']]], - ['slotcut_641',['SlotCut',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae1e710c6722910b8d35df97aaabb3162',1,'GpgFrontend::UI::TextEdit']]], - ['slotexecutecommand_642',['SlotExecuteCommand',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a95cd625a2e0e74ee4d564843c6d16791',1,'GpgFrontend::UI::CommonUtils']]], - ['slotexecutegpgcommand_643',['SlotExecuteGpgCommand',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#afc845c1c37487c99f78d8e66f6874f6d',1,'GpgFrontend::UI::CommonUtils']]], - ['slotfiledecrypt_644',['SlotFileDecrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0a6d0618f2835a6dcae707a4ca770a48',1,'GpgFrontend::UI::MainWindow']]], - ['slotfiledecryptverify_645',['SlotFileDecryptVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab23c7e67dd1f5295b3c49ad79dfd5919',1,'GpgFrontend::UI::MainWindow']]], - ['slotfileencrypt_646',['SlotFileEncrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9ec699536a35a37961a8c6da1e231ae3',1,'GpgFrontend::UI::MainWindow']]], - ['slotfileencryptsign_647',['SlotFileEncryptSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a25a2e4017d77cffc8362bde9606fad30',1,'GpgFrontend::UI::MainWindow']]], - ['slotfilesign_648',['SlotFileSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8bcdcbe678b8dc0837fffda2ebfe79bf',1,'GpgFrontend::UI::MainWindow']]], - ['slotfileverify_649',['SlotFileVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9879061cfd321c6757c77f75d46dc7d8',1,'GpgFrontend::UI::MainWindow']]], - ['slotfilltexteditwithtext_650',['SlotFillTextEditWithText',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af466ec2b8ab3f695d206efc0574bbe20',1,'GpgFrontend::UI::TextEdit']]], - ['slotimport_651',['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_652',['SlotImportKeyFromClipboard',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a0c8bf56fc5371cd2c5e9d2a0f67bf72a',1,'GpgFrontend::UI::CommonUtils']]], - ['slotimportkeyfromfile_653',['SlotImportKeyFromFile',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a057526790f6b2f6288c3a35322c34d8d',1,'GpgFrontend::UI::CommonUtils']]], - ['slotimportkeyfromkeyserver_654',['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_655',['SlotImportKeys',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a3bc26cc1e0f00f0ce2f95c0b6c8778d8',1,'GpgFrontend::UI::CommonUtils']]], - ['slotnewfiletab_656',['SlotNewFileTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae22ecadf31648f424eb8ab86bd28ef39',1,'GpgFrontend::UI::TextEdit']]], - ['slotnewhelptab_657',['slotNewHelpTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3c17fdf3abf9c4fb6ce35cfb8f0f8fc4',1,'GpgFrontend::UI::TextEdit']]], - ['slotnewtab_658',['SlotNewTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a57a46ab5595622ae0b7bceef7d56bd7c',1,'GpgFrontend::UI::TextEdit']]], - ['slotopen_659',['SlotOpen',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a15335d38187ddf580b7200d856768cfb',1,'GpgFrontend::UI::TextEdit']]], - ['slotopenfile_660',['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_661',['SlotPaste',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa2230418dc8f72c400f5a90082a983c9',1,'GpgFrontend::UI::TextEdit']]], - ['slotprint_662',['SlotPrint',['../classGpgFrontend_1_1UI_1_1TextEdit.html#adca2bbfa746b5598f2a4f74026b84224',1,'GpgFrontend::UI::TextEdit']]], - ['slotquote_663',['SlotQuote',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6a02fce9dc4039c982d6dd19231517ee',1,'GpgFrontend::UI::TextEdit']]], - ['slotredo_664',['SlotRedo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae2b3bf422789d56087face98b6a9e929',1,'GpgFrontend::UI::TextEdit']]], - ['slotrefresh_665',['SlotRefresh',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a68f984815100f4ce281b9794f193e516',1,'GpgFrontend::UI::InfoBoardWidget']]], - ['slotsave_666',['SlotSave',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ace0b8f4c161db9f4f5db5ecbfd7a91c0',1,'GpgFrontend::UI::TextEdit']]], - ['slotsaveas_667',['SlotSaveAs',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a02fa44ba0c56f3f6ae125f8490faf254',1,'GpgFrontend::UI::TextEdit']]], - ['slotselectall_668',['SlotSelectAll',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6c814253dfc061bfdae0fa71c6196c55',1,'GpgFrontend::UI::TextEdit']]], - ['slotsetrestartneeded_669',['SlotSetRestartNeeded',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a276e843e2f5eda8934fb350fb6f89327',1,'GpgFrontend::UI::MainWindow']]], - ['slotshowmodified_670',['SlotShowModified',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ab24adc1adb3b9b29469992e4c444436e',1,'GpgFrontend::UI::TextEdit']]], - ['slotswitchtabdown_671',['SlotSwitchTabDown',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a576e06390e65576465297d2ab8d7d474',1,'GpgFrontend::UI::TextEdit']]], - ['slotswitchtabup_672',['SlotSwitchTabUp',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af1e364b513f566c743a5d36c19098762',1,'GpgFrontend::UI::TextEdit']]], - ['slotundo_673',['SlotUndo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a4a81e69f6dc74ea649ca9a2358342fd5',1,'GpgFrontend::UI::TextEdit']]], - ['softwareversion_674',['SoftwareVersion',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html',1,'GpgFrontend::UI']]], - ['special_5fedit_5ftool_5fbar_5f_675',['special_edit_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af2b3e3a0e9894633e1839df289f5ffe0',1,'GpgFrontend::UI::MainWindow']]], - ['start_5fwizard_5fact_5f_676',['start_wizard_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab0019ca316b971c594c2f20f418256a6',1,'GpgFrontend::UI::MainWindow']]], - ['startdirmngr_677',['StartDirmngr',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a46085a11235894deccd312fc259d5078',1,'GpgFrontend::GpgAdvancedOperator']]], - ['startgpgagent_678',['StartGpgAgent',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a07c32ba25cf6153fbc8ee585c4ba377c',1,'GpgFrontend::GpgAdvancedOperator']]], - ['startkeyboxd_679',['StartKeyBoxd',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a9313410359ed9cff9ee66fa9b4b095ee',1,'GpgFrontend::GpgAdvancedOperator']]], - ['steganography_5fmenu_5f_680',['steganography_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af763a506aed7d0fb2125d1859583b853',1,'GpgFrontend::UI::MainWindow']]], - ['storages_5fmutex_5f_681',['storages_mutex_',['../classGpgFrontend_1_1SingletonStorageCollection.html#ab648cb257beb2475eb5fca6453c331f9',1,'GpgFrontend::SingletonStorageCollection']]], - ['stripped_5fname_682',['stripped_name',['../classGpgFrontend_1_1UI_1_1TextEdit.html#afb9b7a7d88154d774b3d727d8e640cbb',1,'GpgFrontend::UI::TextEdit']]], - ['subkeygeneratedialog_683',['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_684',['switch_tab_down_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a88af746cd550792ab6095d2ebbd29b41',1,'GpgFrontend::UI::MainWindow']]], - ['switch_5ftab_5fup_5fact_5f_685',['switch_tab_up_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8d5ce6514ef3fa8ac3223176f5fa2701',1,'GpgFrontend::UI::MainWindow']]], - ['switch_5fui_5fenabled_686',['switch_ui_enabled',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#ae3d97948f205e84f0604d4da634a4513',1,'GpgFrontend::UI::NetworkTab']]], - ['switch_5fui_5fproxy_5ftype_687',['switch_ui_proxy_type',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#a1b0297158f13daec77645c88e5a8adcd',1,'GpgFrontend::UI::NetworkTab']]], - ['syncsettings_688',['SyncSettings',['../classGpgFrontend_1_1GlobalSettingStation.html#ac061ac8e5308f67ea52b98888bbb2e8d',1,'GpgFrontend::GlobalSettingStation']]] + ['signalrestartneeded_559',['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_560',['SignalStation',['../classGpgFrontend_1_1UI_1_1SignalStation.html',1,'GpgFrontend::UI']]], + ['signaltaskend_561',['SignalTaskEnd',['../classGpgFrontend_1_1Thread_1_1Task.html#abbbb68bcac48b6c31d6fe8ee1572f151',1,'GpgFrontend::Thread::Task']]], + ['signaltaskrunnableend_562',['SignalTaskRunnableEnd',['../classGpgFrontend_1_1Thread_1_1Task.html#a125b7e71f21dadf10618e30ee0386b12',1,'GpgFrontend::Thread::Task']]], + ['signaluibytesdisplayed_563',['SignalUIBytesDisplayed',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#afd3749488fdd3d1c53446fb8c833f3f4',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['signalupgradeversion_564',['SignalUpgradeVersion',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a36c5597674253348477d78ad6af380ab',1,'GpgFrontend::UI::VersionCheckTask']]], + ['signaturedetailsdialog_565',['SignatureDetailsDialog',['../classSignatureDetailsDialog.html',1,'']]], + ['signerspicker_566',['SignersPicker',['../classGpgFrontend_1_1UI_1_1SignersPicker.html',1,'GpgFrontend::UI::SignersPicker'],['../classGpgFrontend_1_1UI_1_1SignersPicker.html#a02c3ba737702894fc6d4ac1a1c543ccb',1,'GpgFrontend::UI::SignersPicker::SignersPicker()']]], + ['signfile_567',['SignFile',['../classGpgFrontend_1_1GpgFileOpera.html#a350df1c07c054625c4755a78e6ca5ca8',1,'GpgFrontend::GpgFileOpera']]], + ['signkey_568',['SignKey',['../classGpgFrontend_1_1GpgKeyManager.html#a12138780c53add7589f78f056019e5e0',1,'GpgFrontend::GpgKeyManager']]], + ['singletonfunctionobject_569',['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_570',['SingletonFunctionObject< DataObjectOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20globalsettingstation_20_3e_571',['SingletonFunctionObject< GlobalSettingStation >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgadvancedoperator_20_3e_572',['SingletonFunctionObject< GpgAdvancedOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgbasicoperator_20_3e_573',['SingletonFunctionObject< GpgBasicOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgcommandexecutor_20_3e_574',['SingletonFunctionObject< GpgCommandExecutor >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgcontext_20_3e_575',['SingletonFunctionObject< GpgContext >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgfileopera_20_3e_576',['SingletonFunctionObject< GpgFileOpera >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgkeygetter_20_3e_577',['SingletonFunctionObject< GpgKeyGetter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgkeyimportexporter_20_3e_578',['SingletonFunctionObject< GpgKeyImportExporter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgkeymanager_20_3e_579',['SingletonFunctionObject< GpgKeyManager >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgkeyopera_20_3e_580',['SingletonFunctionObject< GpgKeyOpera >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpguidoperator_20_3e_581',['SingletonFunctionObject< GpgUIDOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20passphrasegenerator_20_3e_582',['SingletonFunctionObject< PassphraseGenerator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20taskrunnergetter_20_3e_583',['SingletonFunctionObject< TaskRunnerGetter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonstorage_584',['SingletonStorage',['../classGpgFrontend_1_1SingletonStorage.html',1,'GpgFrontend']]], + ['singletonstoragecollection_585',['SingletonStorageCollection',['../classGpgFrontend_1_1SingletonStorageCollection.html',1,'GpgFrontend']]], + ['slot_5factivated_5fkey_5ftype_586',['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_587',['slot_add_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a821247d738457c4ee046162aad6728f9',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fadd_5fuid_5fresult_588',['slot_add_uid_result',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a16f1ae88d6a417b614cfc6ae1852187c',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['slot_5fappend_5fselected_5fkeys_589',['slot_append_selected_keys',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a76bf3784d751db78ed13bd9962e14472',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fauthentication_5fbox_5fchanged_590',['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_591',['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_592',['slot_clean_double_line_breaks',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aea9274389c3b049793fe5aa5a6adf63c',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fcompress_5ffiles_593',['slot_compress_files',['../classGpgFrontend_1_1UI_1_1FilePage.html#a250b1950f874c1d11549cd5c0ea9693f',1,'GpgFrontend::UI::FilePage']]], + ['slot_5fcopy_5fdefault_5fuid_5fto_5fclipboard_594',['slot_copy_default_uid_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3982432b140738859415e487e2c5f5eb',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fcopy_5ffingerprint_595',['slot_copy_fingerprint',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#af8b600fbd7cd0fbb5b6183403bf870b2',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['slot_5fcopy_5fkey_5fid_5fto_5fclipboard_596',['slot_copy_key_id_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9e2ddb2135df42d76134bea168fbdce9',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fcopy_5fmail_5faddress_5fto_5fclipboard_597',['slot_copy_mail_address_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af93d72eaf58326f1f9e926752c6b1fc6',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fcreate_5fnew_5fuid_598',['slot_create_new_uid',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a4e115ce46a85c2f9e4e0e2427839fc7c',1,'GpgFrontend::UI::KeyNewUIDDialog']]], + ['slot_5fcut_5fpgp_5fheader_599',['slot_cut_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7f5a88922d06bee977335fb4b5f1d86d',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fdecrypt_600',['slot_decrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae2d89e2cc6c99ff0e16b396d2381f904',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fdecrypt_5fverify_601',['slot_decrypt_verify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1d61ea803e6c825bd54f42ba9ae85919',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fdisable_5ftab_5factions_602',['slot_disable_tab_actions',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a24a0b0d974fc5f8fdda60c128a82d957',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fdouble_5fclicked_603',['slot_double_clicked',['../classGpgFrontend_1_1UI_1_1KeyList.html#a69e54f06d546d516a0dcdf1055b8028e',1,'GpgFrontend::UI::KeyList']]], + ['slot_5fencrypt_604',['slot_encrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae11d01211c2914ecc148e13dd7de506e',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fencrypt_5fsign_605',['slot_encrypt_sign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a304efe91afa31b32725caa00c27475a4',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fencryption_5fbox_5fchanged_606',['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_607',['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_608',['slot_export_private_key',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a384f4250e58110da58c0e6996b42a8ab',1,'GpgFrontend::UI::KeyPairOperaTab']]], + ['slot_5ffile_5ftree_5fview_5fitem_5fclicked_609',['slot_file_tree_view_item_clicked',['../classGpgFrontend_1_1UI_1_1FilePage.html#a676917817d6f519e043742d1d87f97f1',1,'GpgFrontend::UI::FilePage']]], + ['slot_5ffile_5ftree_5fview_5fitem_5fdouble_5fclicked_610',['slot_file_tree_view_item_double_clicked',['../classGpgFrontend_1_1UI_1_1FilePage.html#ad3c54320bdafbbb2c06a20d6c7dea9d6',1,'GpgFrontend::UI::FilePage']]], + ['slot_5ffind_611',['slot_find',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae28089efbd236708601470f30f26faaa',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fformat_5fgpg_5fheader_612',['slot_format_gpg_header',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a45267bcfc8fc83851894061c0fe2a9c2',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['slot_5fimport_613',['slot_import',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ac9c14bbc97945c94fd02c8e067ccab06',1,'GpgFrontend::UI::KeyServerImportDialog']]], + ['slot_5fimport_5ffinished_614',['slot_import_finished',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a6f1c5238da7cd6f117bed8018469b37a',1,'GpgFrontend::UI::KeyServerImportDialog']]], + ['slot_5fimport_5fkey_5ffrom_5fedit_615',['slot_import_key_from_edit',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a55926649e28a96318b89afba01b966bf',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5finsert_5ftext_616',['slot_insert_text',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a184985104f23da8fdf2b9aaf7b27405b',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['slot_5fjump_5fpage_617',['slot_jump_page',['../classGpgFrontend_1_1UI_1_1ChoosePage.html#af0d7890fe65385b7785719b9cff0718b',1,'GpgFrontend::UI::ChoosePage']]], + ['slot_5fkey_5fgen_5faccept_618',['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_619',['slot_non_expired_checked',['../classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#adde2b33bd17f521f0630702987b1d274',1,'GpgFrontend::UI::KeySetExpireDateDialog']]], + ['slot_5fopen_5ffile_5ftab_620',['slot_open_file_tab',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a29a811d4d440c79c1bd2cc2bb40cdf7e',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fopen_5fkey_5fmanagement_621',['slot_open_key_management',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a16ddebec90a4bd0d13baa9d972c3445f',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fopen_5fsettings_5fdialog_622',['slot_open_settings_dialog',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a874b505fbc1046f579a736683f5a7f65',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fopen_5furl_623',['slot_open_url',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a51ff99077a75507365307f5dd783df99',1,'GpgFrontend::UI::HelpPage']]], + ['slot_5fprocess_5fnetwork_5freply_624',['slot_process_network_reply',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#af9350e0a8d5993e5be0a5478fcb161be',1,'GpgFrontend::UI::ListedKeyServerTestTask']]], + ['slot_5fremove_5ftab_625',['slot_remove_tab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a12f65fbc4984c266a5df4505ecde7c42',1,'GpgFrontend::UI::TextEdit']]], + ['slot_5fsave_5fstatus_5fto_5fcache_5ffor_5frevovery_626',['slot_save_status_to_cache_for_revovery',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a1bf57ebe1e32b12c48bb633b7dd7a4f1',1,'GpgFrontend::UI::TextEdit']]], + ['slot_5fset_5frestart_5fneeded_627',['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_628',['slot_show_key_details',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a033d448541b44fa48b76dec828a4eb0e',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fshow_5fversion_5fstatus_629',['slot_show_version_status',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a1003bd969ecbc5deba940e39436968f4',1,'GpgFrontend::UI::UpdateTab']]], + ['slot_5fsign_630',['slot_sign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3f3d03b0ec22385bee559fbd2aeb881b',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fsign_5fkey_631',['slot_sign_key',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#a82f6bf641ff3b64341a0bdcf76571c43',1,'GpgFrontend::UI::KeyUIDSignDialog']]], + ['slot_5fsigning_5fbox_5fchanged_632',['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_633',['slot_start_wizard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aabf3ddf6b624790369f164b4889c95be',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fupdate_5fkey_5fstatus_634',['slot_update_key_status',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#ab4ac26378d6a07757720163eb4b1cb0e',1,'GpgFrontend::UI::CommonUtils']]], + ['slot_5fupload_5fkey_5fto_5fserver_635',['slot_upload_key_to_server',['../classGpgFrontend_1_1UI_1_1KeyUploadDialog.html#a0f724649ca953b888f07d69c97fe45b6',1,'GpgFrontend::UI::KeyUploadDialog']]], + ['slot_5fverify_636',['slot_verify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa9c986dd95984811479ea93230c74b5d',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fversion_5fupgrade_637',['slot_version_upgrade',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a48368c77af7b1f4cb632870b8d914a28',1,'GpgFrontend::UI::MainWindow']]], + ['slotclosetab_638',['SlotCloseTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa21659aa7acba98dfd6286d69e00ab9b',1,'GpgFrontend::UI::TextEdit']]], + ['slotcopy_639',['SlotCopy',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3599bd01636a873cf3437ab6b9d38780',1,'GpgFrontend::UI::TextEdit']]], + ['slotcurpagefiletreeview_640',['SlotCurPageFileTreeView',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a72014409d407c161b048e07c061b4cf9',1,'GpgFrontend::UI::TextEdit']]], + ['slotcurpagetextedit_641',['SlotCurPageTextEdit',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a48351dc1529da3b8da311f65b735b5f1',1,'GpgFrontend::UI::TextEdit']]], + ['slotcut_642',['SlotCut',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae1e710c6722910b8d35df97aaabb3162',1,'GpgFrontend::UI::TextEdit']]], + ['slotexecutecommand_643',['SlotExecuteCommand',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a95cd625a2e0e74ee4d564843c6d16791',1,'GpgFrontend::UI::CommonUtils']]], + ['slotexecutegpgcommand_644',['SlotExecuteGpgCommand',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#afc845c1c37487c99f78d8e66f6874f6d',1,'GpgFrontend::UI::CommonUtils']]], + ['slotfiledecrypt_645',['SlotFileDecrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0a6d0618f2835a6dcae707a4ca770a48',1,'GpgFrontend::UI::MainWindow']]], + ['slotfiledecryptverify_646',['SlotFileDecryptVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab23c7e67dd1f5295b3c49ad79dfd5919',1,'GpgFrontend::UI::MainWindow']]], + ['slotfileencrypt_647',['SlotFileEncrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9ec699536a35a37961a8c6da1e231ae3',1,'GpgFrontend::UI::MainWindow']]], + ['slotfileencryptsign_648',['SlotFileEncryptSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a25a2e4017d77cffc8362bde9606fad30',1,'GpgFrontend::UI::MainWindow']]], + ['slotfilesign_649',['SlotFileSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8bcdcbe678b8dc0837fffda2ebfe79bf',1,'GpgFrontend::UI::MainWindow']]], + ['slotfileverify_650',['SlotFileVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9879061cfd321c6757c77f75d46dc7d8',1,'GpgFrontend::UI::MainWindow']]], + ['slotfilltexteditwithtext_651',['SlotFillTextEditWithText',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af466ec2b8ab3f695d206efc0574bbe20',1,'GpgFrontend::UI::TextEdit']]], + ['slotimport_652',['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_653',['SlotImportKeyFromClipboard',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a0c8bf56fc5371cd2c5e9d2a0f67bf72a',1,'GpgFrontend::UI::CommonUtils']]], + ['slotimportkeyfromfile_654',['SlotImportKeyFromFile',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a057526790f6b2f6288c3a35322c34d8d',1,'GpgFrontend::UI::CommonUtils']]], + ['slotimportkeyfromkeyserver_655',['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_656',['SlotImportKeys',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a3bc26cc1e0f00f0ce2f95c0b6c8778d8',1,'GpgFrontend::UI::CommonUtils']]], + ['slotnewfiletab_657',['SlotNewFileTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae22ecadf31648f424eb8ab86bd28ef39',1,'GpgFrontend::UI::TextEdit']]], + ['slotnewhelptab_658',['slotNewHelpTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3c17fdf3abf9c4fb6ce35cfb8f0f8fc4',1,'GpgFrontend::UI::TextEdit']]], + ['slotnewtab_659',['SlotNewTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a57a46ab5595622ae0b7bceef7d56bd7c',1,'GpgFrontend::UI::TextEdit']]], + ['slotopen_660',['SlotOpen',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a15335d38187ddf580b7200d856768cfb',1,'GpgFrontend::UI::TextEdit']]], + ['slotopenfile_661',['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_662',['SlotPaste',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa2230418dc8f72c400f5a90082a983c9',1,'GpgFrontend::UI::TextEdit']]], + ['slotprint_663',['SlotPrint',['../classGpgFrontend_1_1UI_1_1TextEdit.html#adca2bbfa746b5598f2a4f74026b84224',1,'GpgFrontend::UI::TextEdit']]], + ['slotquote_664',['SlotQuote',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6a02fce9dc4039c982d6dd19231517ee',1,'GpgFrontend::UI::TextEdit']]], + ['slotredo_665',['SlotRedo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae2b3bf422789d56087face98b6a9e929',1,'GpgFrontend::UI::TextEdit']]], + ['slotrefresh_666',['SlotRefresh',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a68f984815100f4ce281b9794f193e516',1,'GpgFrontend::UI::InfoBoardWidget']]], + ['slotsave_667',['SlotSave',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ace0b8f4c161db9f4f5db5ecbfd7a91c0',1,'GpgFrontend::UI::TextEdit']]], + ['slotsaveas_668',['SlotSaveAs',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a02fa44ba0c56f3f6ae125f8490faf254',1,'GpgFrontend::UI::TextEdit']]], + ['slotselectall_669',['SlotSelectAll',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6c814253dfc061bfdae0fa71c6196c55',1,'GpgFrontend::UI::TextEdit']]], + ['slotsetrestartneeded_670',['SlotSetRestartNeeded',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a276e843e2f5eda8934fb350fb6f89327',1,'GpgFrontend::UI::MainWindow']]], + ['slotshowmodified_671',['SlotShowModified',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ab24adc1adb3b9b29469992e4c444436e',1,'GpgFrontend::UI::TextEdit']]], + ['slotswitchtabdown_672',['SlotSwitchTabDown',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a576e06390e65576465297d2ab8d7d474',1,'GpgFrontend::UI::TextEdit']]], + ['slotswitchtabup_673',['SlotSwitchTabUp',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af1e364b513f566c743a5d36c19098762',1,'GpgFrontend::UI::TextEdit']]], + ['slotundo_674',['SlotUndo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a4a81e69f6dc74ea649ca9a2358342fd5',1,'GpgFrontend::UI::TextEdit']]], + ['softwareversion_675',['SoftwareVersion',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html',1,'GpgFrontend::UI']]], + ['special_5fedit_5ftool_5fbar_5f_676',['special_edit_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af2b3e3a0e9894633e1839df289f5ffe0',1,'GpgFrontend::UI::MainWindow']]], + ['start_5fwizard_5fact_5f_677',['start_wizard_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab0019ca316b971c594c2f20f418256a6',1,'GpgFrontend::UI::MainWindow']]], + ['startdirmngr_678',['StartDirmngr',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a46085a11235894deccd312fc259d5078',1,'GpgFrontend::GpgAdvancedOperator']]], + ['startgpgagent_679',['StartGpgAgent',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a07c32ba25cf6153fbc8ee585c4ba377c',1,'GpgFrontend::GpgAdvancedOperator']]], + ['startkeyboxd_680',['StartKeyBoxd',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a9313410359ed9cff9ee66fa9b4b095ee',1,'GpgFrontend::GpgAdvancedOperator']]], + ['steganography_5fmenu_5f_681',['steganography_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af763a506aed7d0fb2125d1859583b853',1,'GpgFrontend::UI::MainWindow']]], + ['storages_5fmutex_5f_682',['storages_mutex_',['../classGpgFrontend_1_1SingletonStorageCollection.html#ab648cb257beb2475eb5fca6453c331f9',1,'GpgFrontend::SingletonStorageCollection']]], + ['stripped_5fname_683',['stripped_name',['../classGpgFrontend_1_1UI_1_1TextEdit.html#afb9b7a7d88154d774b3d727d8e640cbb',1,'GpgFrontend::UI::TextEdit']]], + ['subkeygeneratedialog_684',['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_685',['switch_tab_down_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a88af746cd550792ab6095d2ebbd29b41',1,'GpgFrontend::UI::MainWindow']]], + ['switch_5ftab_5fup_5fact_5f_686',['switch_tab_up_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8d5ce6514ef3fa8ac3223176f5fa2701',1,'GpgFrontend::UI::MainWindow']]], + ['switch_5fui_5fenabled_687',['switch_ui_enabled',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#ae3d97948f205e84f0604d4da634a4513',1,'GpgFrontend::UI::NetworkTab']]], + ['switch_5fui_5fproxy_5ftype_688',['switch_ui_proxy_type',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#a1b0297158f13daec77645c88e5a8adcd',1,'GpgFrontend::UI::NetworkTab']]], + ['syncsettings_689',['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 f6a61b15..090bb9e2 100644 --- a/docs/html/search/all_13.js +++ b/docs/html/search/all_13.js @@ -1,19 +1,19 @@ var searchData= [ - ['tabcount_689',['TabCount',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a05c54658597b04c3976c72d3a5f9add9',1,'GpgFrontend::UI::TextEdit']]], - ['takechargeofresult_690',['TakeChargeOfResult',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#acdb7839a5158f078b38d60f0fefc5155',1,'GpgFrontend::GpgVerifyResultAnalyse']]], - ['task_691',['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_692',['TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html',1,'GpgFrontend::Thread::TaskRunner'],['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#ad3c8612cbe60112f9b14e616fb0a4acf',1,'GpgFrontend::Thread::TaskRunner::TaskRunner()']]], - ['taskrunnergetter_693',['TaskRunnerGetter',['../classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html',1,'GpgFrontend::Thread::TaskRunnerGetter'],['../classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html#a80794d81179f66f4b4ed3122a64f27cf',1,'GpgFrontend::Thread::TaskRunnerGetter::TaskRunnerGetter()']]], - ['tasks_694',['tasks',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a774775e9a91d33072b27dcf78cead6e2',1,'GpgFrontend::Thread::TaskRunner']]], - ['tasks_5fmutex_5f_695',['tasks_mutex_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a5e72f1ce00d41c225a4304f1ed20b3f1',1,'GpgFrontend::Thread::TaskRunner']]], - ['test_5fpassphrase_5fcb_696',['test_passphrase_cb',['../classGpgFrontend_1_1GpgContext.html#acc4234054002065dfbc5d5261a4950d4',1,'GpgFrontend::GpgContext']]], - ['test_5fstatus_5fcb_697',['test_status_cb',['../classGpgFrontend_1_1GpgContext.html#a3844cd0966134939e5c4be9a725e5271',1,'GpgFrontend::GpgContext']]], - ['testlistedkeyserverthread_698',['TestListedKeyServerThread',['../classTestListedKeyServerThread.html',1,'']]], - ['text_5fis_5fsigned_699',['text_is_signed',['../namespaceGpgFrontend.html#a2a0394c8bdd277f5235f9875a1d69a99',1,'GpgFrontend']]], - ['textedit_700',['TextEdit',['../classGpgFrontend_1_1UI_1_1TextEdit.html',1,'GpgFrontend::UI']]], - ['thread_5fpool_5f_701',['thread_pool_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a2bdc321dd0732ba7a72499b2dc12f7c9',1,'GpgFrontend::Thread::TaskRunner']]], - ['tofuinfopage_702',['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_703',['translate_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adbac799672c43c90810366825d837e4e',1,'GpgFrontend::UI::MainWindow']]], - ['translatorstab_704',['TranslatorsTab',['../classGpgFrontend_1_1UI_1_1TranslatorsTab.html',1,'GpgFrontend::UI::TranslatorsTab'],['../classGpgFrontend_1_1UI_1_1TranslatorsTab.html#a89e5c7b9c17fb41b7c7bf461fb8ad99e',1,'GpgFrontend::UI::TranslatorsTab::TranslatorsTab()']]] + ['tabcount_690',['TabCount',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a05c54658597b04c3976c72d3a5f9add9',1,'GpgFrontend::UI::TextEdit']]], + ['takechargeofresult_691',['TakeChargeOfResult',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#acdb7839a5158f078b38d60f0fefc5155',1,'GpgFrontend::GpgVerifyResultAnalyse']]], + ['task_692',['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_693',['TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html',1,'GpgFrontend::Thread::TaskRunner'],['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#ad3c8612cbe60112f9b14e616fb0a4acf',1,'GpgFrontend::Thread::TaskRunner::TaskRunner()']]], + ['taskrunnergetter_694',['TaskRunnerGetter',['../classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html',1,'GpgFrontend::Thread::TaskRunnerGetter'],['../classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html#a80794d81179f66f4b4ed3122a64f27cf',1,'GpgFrontend::Thread::TaskRunnerGetter::TaskRunnerGetter()']]], + ['tasks_695',['tasks',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a774775e9a91d33072b27dcf78cead6e2',1,'GpgFrontend::Thread::TaskRunner']]], + ['tasks_5fmutex_5f_696',['tasks_mutex_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a5e72f1ce00d41c225a4304f1ed20b3f1',1,'GpgFrontend::Thread::TaskRunner']]], + ['test_5fpassphrase_5fcb_697',['test_passphrase_cb',['../classGpgFrontend_1_1GpgContext.html#acc4234054002065dfbc5d5261a4950d4',1,'GpgFrontend::GpgContext']]], + ['test_5fstatus_5fcb_698',['test_status_cb',['../classGpgFrontend_1_1GpgContext.html#a3844cd0966134939e5c4be9a725e5271',1,'GpgFrontend::GpgContext']]], + ['testlistedkeyserverthread_699',['TestListedKeyServerThread',['../classTestListedKeyServerThread.html',1,'']]], + ['text_5fis_5fsigned_700',['text_is_signed',['../namespaceGpgFrontend.html#a2a0394c8bdd277f5235f9875a1d69a99',1,'GpgFrontend']]], + ['textedit_701',['TextEdit',['../classGpgFrontend_1_1UI_1_1TextEdit.html',1,'GpgFrontend::UI']]], + ['thread_5fpool_5f_702',['thread_pool_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a2bdc321dd0732ba7a72499b2dc12f7c9',1,'GpgFrontend::Thread::TaskRunner']]], + ['tofuinfopage_703',['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_704',['translate_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adbac799672c43c90810366825d837e4e',1,'GpgFrontend::UI::MainWindow']]], + ['translatorstab_705',['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 dd542606..0c15f671 100644 --- a/docs/html/search/all_14.js +++ b/docs/html/search/all_14.js @@ -1,10 +1,10 @@ var searchData= [ - ['ui_5fcfg_5f_705',['ui_cfg_',['../classGpgFrontend_1_1GlobalSettingStation.html#a1818e08063d6a886975f77354fc5d85c',1,'GpgFrontend::GlobalSettingStation']]], - ['ui_5fconfig_5fdir_5fpath_5f_706',['ui_config_dir_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#ab618fef68cfd4ff6e42d4a4aa8ea94bb',1,'GpgFrontend::GlobalSettingStation']]], - ['ui_5fconfig_5fpath_5f_707',['ui_config_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#afa99ddc25c0d5fd59a4c5f0e61d13830',1,'GpgFrontend::GlobalSettingStation']]], - ['undo_5fact_5f_708',['undo_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa498dfecac36590e4b60d50824dff58c',1,'GpgFrontend::UI::MainWindow']]], - ['unsaveddocuments_709',['UnsavedDocuments',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a82fe98d45f54909ebea933b540367c39',1,'GpgFrontend::UI::TextEdit']]], - ['updatetab_710',['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_711',['upload_key_to_server',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad27dcf3f534f13d8df71df680c4d177c',1,'GpgFrontend::UI::MainWindow']]] + ['ui_5fcfg_5f_706',['ui_cfg_',['../classGpgFrontend_1_1GlobalSettingStation.html#a1818e08063d6a886975f77354fc5d85c',1,'GpgFrontend::GlobalSettingStation']]], + ['ui_5fconfig_5fdir_5fpath_5f_707',['ui_config_dir_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#ab618fef68cfd4ff6e42d4a4aa8ea94bb',1,'GpgFrontend::GlobalSettingStation']]], + ['ui_5fconfig_5fpath_5f_708',['ui_config_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#afa99ddc25c0d5fd59a4c5f0e61d13830',1,'GpgFrontend::GlobalSettingStation']]], + ['undo_5fact_5f_709',['undo_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa498dfecac36590e4b60d50824dff58c',1,'GpgFrontend::UI::MainWindow']]], + ['unsaveddocuments_710',['UnsavedDocuments',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a82fe98d45f54909ebea933b540367c39',1,'GpgFrontend::UI::TextEdit']]], + ['updatetab_711',['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_712',['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 7b37bb4f..09005f2f 100644 --- a/docs/html/search/all_15.js +++ b/docs/html/search/all_15.js @@ -1,12 +1,12 @@ var searchData= [ - ['verify_712',['Verify',['../classGpgFrontend_1_1GpgBasicOperator.html#af0347cb28ff73b2250395ceaa9001509',1,'GpgFrontend::GpgBasicOperator']]], - ['verify_5fact_5f_713',['verify_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a14bb12fa25620e1a93bd23c9f7c84081',1,'GpgFrontend::UI::MainWindow']]], - ['verifydetailsdialog_714',['VerifyDetailsDialog',['../classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html',1,'GpgFrontend::UI::VerifyDetailsDialog'],['../classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#ac73f0405e249f623ddd0de22b5130fda',1,'GpgFrontend::UI::VerifyDetailsDialog::VerifyDetailsDialog()']]], - ['verifyfile_715',['VerifyFile',['../classGpgFrontend_1_1GpgFileOpera.html#a14cddfe822c9410cd9c301d08963b7e7',1,'GpgFrontend::GpgFileOpera']]], - ['verifykeydetailbox_716',['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_717',['version_compare',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#ae1989b6a34c76103f4bd06f35686d536',1,'GpgFrontend::UI::SoftwareVersion']]], - ['versionchecktask_718',['VersionCheckTask',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html',1,'GpgFrontend::UI::VersionCheckTask'],['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9f7a810ae1aa78c2a61e86e7757da385',1,'GpgFrontend::UI::VersionCheckTask::VersionCheckTask()']]], - ['versionwithdrawn_719',['VersionWithDrawn',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a587a3fdb047a15c3771c2af5eebdbf4b',1,'GpgFrontend::UI::SoftwareVersion']]], - ['view_5fmenu_5f_720',['view_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0e9920cf0fc974ac2f70d3f039f009f2',1,'GpgFrontend::UI::MainWindow']]] + ['verify_713',['Verify',['../classGpgFrontend_1_1GpgBasicOperator.html#af0347cb28ff73b2250395ceaa9001509',1,'GpgFrontend::GpgBasicOperator']]], + ['verify_5fact_5f_714',['verify_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a14bb12fa25620e1a93bd23c9f7c84081',1,'GpgFrontend::UI::MainWindow']]], + ['verifydetailsdialog_715',['VerifyDetailsDialog',['../classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html',1,'GpgFrontend::UI::VerifyDetailsDialog'],['../classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#ac73f0405e249f623ddd0de22b5130fda',1,'GpgFrontend::UI::VerifyDetailsDialog::VerifyDetailsDialog()']]], + ['verifyfile_716',['VerifyFile',['../classGpgFrontend_1_1GpgFileOpera.html#a14cddfe822c9410cd9c301d08963b7e7',1,'GpgFrontend::GpgFileOpera']]], + ['verifykeydetailbox_717',['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_718',['version_compare',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#ae1989b6a34c76103f4bd06f35686d536',1,'GpgFrontend::UI::SoftwareVersion']]], + ['versionchecktask_719',['VersionCheckTask',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html',1,'GpgFrontend::UI::VersionCheckTask'],['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9f7a810ae1aa78c2a61e86e7757da385',1,'GpgFrontend::UI::VersionCheckTask::VersionCheckTask()']]], + ['versionwithdrawn_720',['VersionWithDrawn',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a587a3fdb047a15c3771c2af5eebdbf4b',1,'GpgFrontend::UI::SoftwareVersion']]], + ['view_5fmenu_5f_721',['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 53d10a9b..3f11aacf 100644 --- a/docs/html/search/all_16.js +++ b/docs/html/search/all_16.js @@ -1,9 +1,9 @@ var searchData= [ - ['waitingdialog_721',['WaitingDialog',['../classGpgFrontend_1_1UI_1_1WaitingDialog.html',1,'GpgFrontend::UI::WaitingDialog'],['../classGpgFrontend_1_1UI_1_1WaitingDialog.html#a809d0ffc8208eb2ff5d8da76c8ee10dc',1,'GpgFrontend::UI::WaitingDialog::WaitingDialog()']]], - ['willcharsetchange_722',['WillCharsetChange',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a1c1c0174ed1ed9c5a90739eafc5c3267',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['wizard_723',['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_724',['write_buffer_to_file',['../namespaceGpgFrontend.html#a5135069571678eda9c1f07d17ed9ac41',1,'GpgFrontend']]], - ['writefile_725',['WriteFile',['../classGpgFrontend_1_1FileOperator.html#a2f21ef4a88448b1eddf756302913d338',1,'GpgFrontend::FileOperator']]], - ['writefilestd_726',['WriteFileStd',['../classGpgFrontend_1_1FileOperator.html#a51121c94dc32a83d7073fbe7138b603b',1,'GpgFrontend::FileOperator']]] + ['waitingdialog_722',['WaitingDialog',['../classGpgFrontend_1_1UI_1_1WaitingDialog.html',1,'GpgFrontend::UI::WaitingDialog'],['../classGpgFrontend_1_1UI_1_1WaitingDialog.html#a809d0ffc8208eb2ff5d8da76c8ee10dc',1,'GpgFrontend::UI::WaitingDialog::WaitingDialog()']]], + ['willcharsetchange_723',['WillCharsetChange',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a1c1c0174ed1ed9c5a90739eafc5c3267',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['wizard_724',['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_725',['write_buffer_to_file',['../namespaceGpgFrontend.html#a5135069571678eda9c1f07d17ed9ac41',1,'GpgFrontend']]], + ['writefile_726',['WriteFile',['../classGpgFrontend_1_1FileOperator.html#a2f21ef4a88448b1eddf756302913d338',1,'GpgFrontend::FileOperator']]], + ['writefilestd_727',['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 1de3fa74..336e5d6e 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_727',['zoom_in_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3cb7daedbef61c1be27635c9ebc9e689',1,'GpgFrontend::UI::MainWindow']]], - ['zoom_5fout_5fact_5f_728',['zoom_out_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a70397629ae3ffe039051b80a099c7979',1,'GpgFrontend::UI::MainWindow']]] + ['zoom_5fin_5fact_5f_728',['zoom_in_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3cb7daedbef61c1be27635c9ebc9e689',1,'GpgFrontend::UI::MainWindow']]], + ['zoom_5fout_5fact_5f_729',['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 c3344a57..a1e26266 100644 --- a/docs/html/search/all_18.js +++ b/docs/html/search/all_18.js @@ -1,14 +1,14 @@ var searchData= [ - ['_7edataobject_729',['~DataObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a85bb3c482bf6f47edcd6593cca568a22',1,'GpgFrontend::Thread::Task::DataObject']]], - ['_7eglobalsettingstation_730',['~GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html#af700161900e623a0ea14261d51616451',1,'GpgFrontend::GlobalSettingStation']]], - ['_7egpgcontext_731',['~GpgContext',['../classGpgFrontend_1_1GpgContext.html#ae89dee551354c1541337881898832725',1,'GpgFrontend::GpgContext']]], - ['_7egpgfrontendapplication_732',['~GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a32f0e7dda69f7b1e3cc869340736c590',1,'GpgFrontend::UI::GpgFrontendApplication']]], - ['_7egpgkey_733',['~GpgKey',['../classGpgFrontend_1_1GpgKey.html#a1e9223bb1ad8fbb4e769680de39b3697',1,'GpgFrontend::GpgKey']]], - ['_7egpgkeysignature_734',['~GpgKeySignature',['../classGpgFrontend_1_1GpgKeySignature.html#ab4d7044f4e1ddcf0ae0d28be43f0fcb3',1,'GpgFrontend::GpgKeySignature']]], - ['_7egpgsignature_735',['~GpgSignature',['../classGpgFrontend_1_1GpgSignature.html#a44f137a457ac109d145a1cdd8e544e3a',1,'GpgFrontend::GpgSignature']]], - ['_7esettingsobject_736',['~SettingsObject',['../classGpgFrontend_1_1UI_1_1SettingsObject.html#ae71336d240ace35756d1852a46271f6c',1,'GpgFrontend::UI::SettingsObject']]], - ['_7esingletonfunctionobject_737',['~SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html#a8296be8c449f88175285186831b995bc',1,'GpgFrontend::SingletonFunctionObject']]], - ['_7etask_738',['~Task',['../classGpgFrontend_1_1Thread_1_1Task.html#a37766a505662b33ad14672c29e209ea8',1,'GpgFrontend::Thread::Task']]], - ['_7etaskrunner_739',['~TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#ac3e57b59d537e2a75e741d4a5418ae6d',1,'GpgFrontend::Thread::TaskRunner']]] + ['_7edataobject_730',['~DataObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a85bb3c482bf6f47edcd6593cca568a22',1,'GpgFrontend::Thread::Task::DataObject']]], + ['_7eglobalsettingstation_731',['~GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html#af700161900e623a0ea14261d51616451',1,'GpgFrontend::GlobalSettingStation']]], + ['_7egpgcontext_732',['~GpgContext',['../classGpgFrontend_1_1GpgContext.html#ae89dee551354c1541337881898832725',1,'GpgFrontend::GpgContext']]], + ['_7egpgfrontendapplication_733',['~GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a32f0e7dda69f7b1e3cc869340736c590',1,'GpgFrontend::UI::GpgFrontendApplication']]], + ['_7egpgkey_734',['~GpgKey',['../classGpgFrontend_1_1GpgKey.html#a1e9223bb1ad8fbb4e769680de39b3697',1,'GpgFrontend::GpgKey']]], + ['_7egpgkeysignature_735',['~GpgKeySignature',['../classGpgFrontend_1_1GpgKeySignature.html#ab4d7044f4e1ddcf0ae0d28be43f0fcb3',1,'GpgFrontend::GpgKeySignature']]], + ['_7egpgsignature_736',['~GpgSignature',['../classGpgFrontend_1_1GpgSignature.html#a44f137a457ac109d145a1cdd8e544e3a',1,'GpgFrontend::GpgSignature']]], + ['_7esettingsobject_737',['~SettingsObject',['../classGpgFrontend_1_1UI_1_1SettingsObject.html#ae71336d240ace35756d1852a46271f6c',1,'GpgFrontend::UI::SettingsObject']]], + ['_7esingletonfunctionobject_738',['~SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html#a8296be8c449f88175285186831b995bc',1,'GpgFrontend::SingletonFunctionObject']]], + ['_7etask_739',['~Task',['../classGpgFrontend_1_1Thread_1_1Task.html#a37766a505662b33ad14672c29e209ea8',1,'GpgFrontend::Thread::Task']]], + ['_7etaskrunner_740',['~TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#ac3e57b59d537e2a75e741d4a5418ae6d',1,'GpgFrontend::Thread::TaskRunner']]] ]; diff --git a/docs/html/search/all_7.js b/docs/html/search/all_7.js index c83483e4..4c87d2cb 100644 --- a/docs/html/search/all_7.js +++ b/docs/html/search/all_7.js @@ -100,7 +100,7 @@ var searchData= ['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']]], + ['getuisettings_276',['GetUISettings',['../classGpgFrontend_1_1GlobalSettingStation.html#a1d8b9f91c75ef7a1d008a171f09f2c0e',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()']]], diff --git a/docs/html/search/all_b.js b/docs/html/search/all_b.js index 1550bc5a..5e2591b1 100644 --- a/docs/html/search/all_b.js +++ b/docs/html/search/all_b.js @@ -4,5 +4,6 @@ var searchData= ['listedkeyservertesttask_418',['ListedKeyServerTestTask',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html',1,'GpgFrontend::UI::ListedKeyServerTestTask'],['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#ae25b5d59b53facc15648ab80ff19ed77',1,'GpgFrontend::UI::ListedKeyServerTestTask::ListedKeyServerTestTask()']]], ['listlanguages_419',['ListLanguages',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#acd22ac2fd91704551e5317e2c549ae26',1,'GpgFrontend::UI::SettingsDialog']]], ['loadfile_420',['LoadFile',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a72ed46454c833adb038c36d8d4322d18',1,'GpgFrontend::UI::TextEdit']]], - ['localized_5fhelp_421',['localized_help',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a49fbde87f2ef385b44225acd6ffbc84f',1,'GpgFrontend::UI::HelpPage']]] + ['localized_5fhelp_421',['localized_help',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a49fbde87f2ef385b44225acd6ffbc84f',1,'GpgFrontend::UI::HelpPage']]], + ['lookupsettings_422',['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 e920f54d..09be00bd 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_422',['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_423',['MainWindow',['../classGpgFrontend_1_1UI_1_1MainWindow.html',1,'GpgFrontend::UI']]], - ['markkeys_424',['MarkKeys',['../classGpgFrontend_1_1UI_1_1KeyList.html#a31a4c067eed90830203862cb4adf951e',1,'GpgFrontend::UI::KeyList']]], - ['maybe_5fsave_5fcurrent_5ftab_425',['maybe_save_current_tab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a8fad090a19479a9fe89432300cca2b6c',1,'GpgFrontend::UI::TextEdit']]], - ['maybesaveanytab_426',['MaybeSaveAnyTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3c976a5494d06c2186d94e7cc8ebe457',1,'GpgFrontend::UI::TextEdit']]], - ['modifypassword_427',['ModifyPassword',['../classGpgFrontend_1_1GpgKeyOpera.html#ab7e16d1f4cba23ea5b5b9f6009ce5ee2',1,'GpgFrontend::GpgKeyOpera']]], - ['modifytofupolicy_428',['ModifyTOFUPolicy',['../classGpgFrontend_1_1GpgKeyOpera.html#a76a7f59701add8a59d8835919dad2000',1,'GpgFrontend::GpgKeyOpera']]], - ['mt_5f_429',['mt_',['../classGpgFrontend_1_1DataObjectOperator.html#a9fc92c7d497f2a2057776adfca40e8ca',1,'GpgFrontend::DataObjectOperator::mt_()'],['../classGpgFrontend_1_1PassphraseGenerator.html#a19ac4999bbd5fb7e6c42a4aef9606892',1,'GpgFrontend::PassphraseGenerator::mt_()']]] + ['m_5ftext_5fpage_5f_423',['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_424',['MainWindow',['../classGpgFrontend_1_1UI_1_1MainWindow.html',1,'GpgFrontend::UI']]], + ['markkeys_425',['MarkKeys',['../classGpgFrontend_1_1UI_1_1KeyList.html#a31a4c067eed90830203862cb4adf951e',1,'GpgFrontend::UI::KeyList']]], + ['maybe_5fsave_5fcurrent_5ftab_426',['maybe_save_current_tab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a8fad090a19479a9fe89432300cca2b6c',1,'GpgFrontend::UI::TextEdit']]], + ['maybesaveanytab_427',['MaybeSaveAnyTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3c976a5494d06c2186d94e7cc8ebe457',1,'GpgFrontend::UI::TextEdit']]], + ['modifypassword_428',['ModifyPassword',['../classGpgFrontend_1_1GpgKeyOpera.html#ab7e16d1f4cba23ea5b5b9f6009ce5ee2',1,'GpgFrontend::GpgKeyOpera']]], + ['modifytofupolicy_429',['ModifyTOFUPolicy',['../classGpgFrontend_1_1GpgKeyOpera.html#a76a7f59701add8a59d8835919dad2000',1,'GpgFrontend::GpgKeyOpera']]], + ['mt_5f_430',['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 3e585bbf..78ad5aa3 100644 --- a/docs/html/search/all_d.js +++ b/docs/html/search/all_d.js @@ -1,14 +1,14 @@ var searchData= [ - ['name_5fedit_5f_430',['name_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7ed095cce29c658741ae0520049010c0',1,'GpgFrontend::UI::KeyGenDialog']]], - ['name_5fvar_5flabel_5f_431',['name_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a9d57be18c2091827c04ec8809f4154be',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['need_5fuser_5finput_5fpassphrase_432',['need_user_input_passphrase',['../classGpgFrontend_1_1GpgContext.html#ac7c9b2212a77e7cede94d68243541b1b',1,'GpgFrontend::GpgContext']]], - ['needupgrade_433',['NeedUpgrade',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#abc311fd0e15da1a04b995587ca74e1a6',1,'GpgFrontend::UI::SoftwareVersion']]], - ['networktab_434',['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_435',['new_default_settings_channel',['../namespaceGpgFrontend.html#aafb9aa0ba1d03afa09085b1b8136c55f',1,'GpgFrontend']]], - ['new_5ftab_5fact_5f_436',['new_tab_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a472500fec64442b114e9ce9faf4b6a73',1,'GpgFrontend::UI::MainWindow']]], - ['nextid_437',['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_438',['no_pass_phrase_check_box_',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a001803152c0e5bd9de7c7dd04cef8ad4',1,'GpgFrontend::UI::SubkeyGenerateDialog']]], - ['notify_439',['notify',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a6f8ab335d89948c48cd634ab20ff9aa0',1,'GpgFrontend::UI::GpgFrontendApplication']]], - ['notifyfilesaved_440',['NotifyFileSaved',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a29b3d63ba9590e775f42c779c76102e5',1,'GpgFrontend::UI::PlainTextEditorPage']]] + ['name_5fedit_5f_431',['name_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7ed095cce29c658741ae0520049010c0',1,'GpgFrontend::UI::KeyGenDialog']]], + ['name_5fvar_5flabel_5f_432',['name_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a9d57be18c2091827c04ec8809f4154be',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['need_5fuser_5finput_5fpassphrase_433',['need_user_input_passphrase',['../classGpgFrontend_1_1GpgContext.html#ac7c9b2212a77e7cede94d68243541b1b',1,'GpgFrontend::GpgContext']]], + ['needupgrade_434',['NeedUpgrade',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#abc311fd0e15da1a04b995587ca74e1a6',1,'GpgFrontend::UI::SoftwareVersion']]], + ['networktab_435',['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_436',['new_default_settings_channel',['../namespaceGpgFrontend.html#aafb9aa0ba1d03afa09085b1b8136c55f',1,'GpgFrontend']]], + ['new_5ftab_5fact_5f_437',['new_tab_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a472500fec64442b114e9ce9faf4b6a73',1,'GpgFrontend::UI::MainWindow']]], + ['nextid_438',['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_439',['no_pass_phrase_check_box_',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a001803152c0e5bd9de7c7dd04cef8ad4',1,'GpgFrontend::UI::SubkeyGenerateDialog']]], + ['notify_440',['notify',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a6f8ab335d89948c48cd634ab20ff9aa0',1,'GpgFrontend::UI::GpgFrontendApplication']]], + ['notifyfilesaved_441',['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 e727deaf..1683fffd 100644 --- a/docs/html/search/all_e.js +++ b/docs/html/search/all_e.js @@ -1,14 +1,14 @@ var searchData= [ - ['oncustomcontextmenu_441',['onCustomContextMenu',['../classGpgFrontend_1_1UI_1_1FilePage.html#aa80dc1b74a0ec65d06e5dffaa21cc785',1,'GpgFrontend::UI::FilePage']]], - ['open_5fact_5f_442',['open_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a4a1edafb8c67b181ff3c29394147571d',1,'GpgFrontend::UI::MainWindow']]], - ['open_5fkey_5fmanagement_5fact_5f_443',['open_key_management_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad7b22560df7e3bb38b660d3ffc84dc83',1,'GpgFrontend::UI::MainWindow']]], - ['open_5fsettings_5fact_5f_444',['open_settings_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#afab1e0363a4b97ff68228cd4bd7cbc62',1,'GpgFrontend::UI::MainWindow']]], - ['operator_20gpgme_5fctx_5ft_445',['operator gpgme_ctx_t',['../classGpgFrontend_1_1GpgContext.html#a5b419175bd9927f3d449637db8ba6524',1,'GpgFrontend::GpgContext']]], - ['operator_20gpgme_5fdata_5ft_446',['operator gpgme_data_t',['../classGpgFrontend_1_1GpgData.html#afca7a03bd71436c8b3c4f6e8c2acd700',1,'GpgFrontend::GpgData']]], - ['operator_20gpgme_5fkey_5ft_447',['operator gpgme_key_t',['../classGpgFrontend_1_1GpgKey.html#a827962251cf47c41dbea56665ae4207b',1,'GpgFrontend::GpgKey']]], - ['operator_3c_3d_448',['operator<=',['../classGpgFrontend_1_1GpgKey.html#adc22a349796af0ff5dd4499624b6d03d',1,'GpgFrontend::GpgKey']]], - ['operator_3d_449',['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_450',['operator==',['../classGpgFrontend_1_1GpgKey.html#a4f50b2f13b3a5dc7298ee9665e7a5367',1,'GpgFrontend::GpgKey::operator==()'],['../classGpgFrontend_1_1GpgSubKey.html#a1c88420ec4756f2e5bda1b76ff2f7c2d',1,'GpgFrontend::GpgSubKey::operator==()']]], - ['owner_5fbox_5f_451',['owner_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#ad8c25061351d8e739b70d5466b87410e',1,'GpgFrontend::UI::KeyPairDetailTab']]] + ['oncustomcontextmenu_442',['onCustomContextMenu',['../classGpgFrontend_1_1UI_1_1FilePage.html#aa80dc1b74a0ec65d06e5dffaa21cc785',1,'GpgFrontend::UI::FilePage']]], + ['open_5fact_5f_443',['open_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a4a1edafb8c67b181ff3c29394147571d',1,'GpgFrontend::UI::MainWindow']]], + ['open_5fkey_5fmanagement_5fact_5f_444',['open_key_management_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad7b22560df7e3bb38b660d3ffc84dc83',1,'GpgFrontend::UI::MainWindow']]], + ['open_5fsettings_5fact_5f_445',['open_settings_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#afab1e0363a4b97ff68228cd4bd7cbc62',1,'GpgFrontend::UI::MainWindow']]], + ['operator_20gpgme_5fctx_5ft_446',['operator gpgme_ctx_t',['../classGpgFrontend_1_1GpgContext.html#a5b419175bd9927f3d449637db8ba6524',1,'GpgFrontend::GpgContext']]], + ['operator_20gpgme_5fdata_5ft_447',['operator gpgme_data_t',['../classGpgFrontend_1_1GpgData.html#afca7a03bd71436c8b3c4f6e8c2acd700',1,'GpgFrontend::GpgData']]], + ['operator_20gpgme_5fkey_5ft_448',['operator gpgme_key_t',['../classGpgFrontend_1_1GpgKey.html#a827962251cf47c41dbea56665ae4207b',1,'GpgFrontend::GpgKey']]], + ['operator_3c_3d_449',['operator<=',['../classGpgFrontend_1_1GpgKey.html#adc22a349796af0ff5dd4499624b6d03d',1,'GpgFrontend::GpgKey']]], + ['operator_3d_450',['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_451',['operator==',['../classGpgFrontend_1_1GpgKey.html#a4f50b2f13b3a5dc7298ee9665e7a5367',1,'GpgFrontend::GpgKey::operator==()'],['../classGpgFrontend_1_1GpgSubKey.html#a1c88420ec4756f2e5bda1b76ff2f7c2d',1,'GpgFrontend::GpgSubKey::operator==()']]], + ['owner_5fbox_5f_452',['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 65d42bd2..dc164879 100644 --- a/docs/html/search/all_f.js +++ b/docs/html/search/all_f.js @@ -1,21 +1,21 @@ var searchData= [ - ['passphrasegenerator_452',['PassphraseGenerator',['../classGpgFrontend_1_1PassphraseGenerator.html',1,'GpgFrontend::PassphraseGenerator'],['../classGpgFrontend_1_1PassphraseGenerator.html#ac82ef545a54468ad02253a61cc62e3cf',1,'GpgFrontend::PassphraseGenerator::PassphraseGenerator()']]], - ['paste_5fact_5f_453',['paste_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a62ea61c38e758022ba655c6faf54322b',1,'GpgFrontend::UI::MainWindow']]], - ['pending_5ftasks_5f_454',['pending_tasks_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a6d92421bbbfcf3136335a5173d1b2a22',1,'GpgFrontend::Thread::TaskRunner']]], - ['pgp_5fcrypt_5fbegin_455',['PGP_CRYPT_BEGIN',['../classGpgFrontend_1_1GpgConstants.html#a237006d6db30c7e3f8de171210eb35f2',1,'GpgFrontend::GpgConstants']]], - ['plaintexteditorpage_456',['PlainTextEditorPage',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html',1,'GpgFrontend::UI::PlainTextEditorPage'],['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a8759224e57d4c322933ed3df6d96e5f1',1,'GpgFrontend::UI::PlainTextEditorPage::PlainTextEditorPage()']]], - ['popobject_457',['PopObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a5ef5ddec0b82017cc4ad7f34b9b13f64',1,'GpgFrontend::Thread::Task::DataObject']]], - ['post_5finit_5fctx_458',['post_init_ctx',['../classGpgFrontend_1_1GpgContext.html#aaf3f394ff1790897c315c3249b1f06fe',1,'GpgFrontend::GpgContext']]], - ['postscheduletask_459',['PostScheduleTask',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#aaddb0cdd8eb57aac08ca9caf8b8e6bac',1,'GpgFrontend::Thread::TaskRunner']]], - ['posttask_460',['PostTask',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a4fae01eb0a5b296b8c4c6bf8408f1c6b',1,'GpgFrontend::Thread::TaskRunner']]], - ['print_5fact_5f_461',['print_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8f9dd7edba23321a13ed630cdef7fdcc',1,'GpgFrontend::UI::MainWindow']]], - ['print_5frecipient_462',['print_recipient',['../classGpgFrontend_1_1GpgDecryptResultAnalyse.html#a1aac1c1f77a12069479a47f54a934c44',1,'GpgFrontend::GpgDecryptResultAnalyse']]], - ['print_5fsigner_463',['print_signer',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a57bf4a26466e07f7f0ecc19de3782104',1,'GpgFrontend::GpgVerifyResultAnalyse']]], - ['process_5fdirectory_5finto_5ftarball_464',['process_directory_into_tarball',['../namespaceGpgFrontend_1_1UI.html#a5470872566b41ce628f64039f34b964a',1,'GpgFrontend::UI']]], - ['process_5foperation_465',['process_operation',['../namespaceGpgFrontend_1_1UI.html#a3c971eeb5c620d08d6d92f0752ceaf9f',1,'GpgFrontend::UI']]], - ['process_5fresult_5fanalyse_466',['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_467',['process_tarball_into_directory',['../namespaceGpgFrontend_1_1UI.html#a57d0a4dba23cd3d9b42222d40c710dc1',1,'GpgFrontend::UI']]], - ['proxyconnectiontesttask_468',['ProxyConnectionTestTask',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask.html',1,'GpgFrontend::UI::ProxyConnectionTestTask'],['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask.html#a8036aaf9a2adcf033fc9f8e51da59956',1,'GpgFrontend::UI::ProxyConnectionTestTask::ProxyConnectionTestTask()']]], - ['proxyconnectiontestthread_469',['ProxyConnectionTestThread',['../classProxyConnectionTestThread.html',1,'']]] + ['passphrasegenerator_453',['PassphraseGenerator',['../classGpgFrontend_1_1PassphraseGenerator.html',1,'GpgFrontend::PassphraseGenerator'],['../classGpgFrontend_1_1PassphraseGenerator.html#ac82ef545a54468ad02253a61cc62e3cf',1,'GpgFrontend::PassphraseGenerator::PassphraseGenerator()']]], + ['paste_5fact_5f_454',['paste_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a62ea61c38e758022ba655c6faf54322b',1,'GpgFrontend::UI::MainWindow']]], + ['pending_5ftasks_5f_455',['pending_tasks_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a6d92421bbbfcf3136335a5173d1b2a22',1,'GpgFrontend::Thread::TaskRunner']]], + ['pgp_5fcrypt_5fbegin_456',['PGP_CRYPT_BEGIN',['../classGpgFrontend_1_1GpgConstants.html#a237006d6db30c7e3f8de171210eb35f2',1,'GpgFrontend::GpgConstants']]], + ['plaintexteditorpage_457',['PlainTextEditorPage',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html',1,'GpgFrontend::UI::PlainTextEditorPage'],['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a8759224e57d4c322933ed3df6d96e5f1',1,'GpgFrontend::UI::PlainTextEditorPage::PlainTextEditorPage()']]], + ['popobject_458',['PopObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a5ef5ddec0b82017cc4ad7f34b9b13f64',1,'GpgFrontend::Thread::Task::DataObject']]], + ['post_5finit_5fctx_459',['post_init_ctx',['../classGpgFrontend_1_1GpgContext.html#aaf3f394ff1790897c315c3249b1f06fe',1,'GpgFrontend::GpgContext']]], + ['postscheduletask_460',['PostScheduleTask',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#aaddb0cdd8eb57aac08ca9caf8b8e6bac',1,'GpgFrontend::Thread::TaskRunner']]], + ['posttask_461',['PostTask',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a4fae01eb0a5b296b8c4c6bf8408f1c6b',1,'GpgFrontend::Thread::TaskRunner']]], + ['print_5fact_5f_462',['print_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8f9dd7edba23321a13ed630cdef7fdcc',1,'GpgFrontend::UI::MainWindow']]], + ['print_5frecipient_463',['print_recipient',['../classGpgFrontend_1_1GpgDecryptResultAnalyse.html#a1aac1c1f77a12069479a47f54a934c44',1,'GpgFrontend::GpgDecryptResultAnalyse']]], + ['print_5fsigner_464',['print_signer',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a57bf4a26466e07f7f0ecc19de3782104',1,'GpgFrontend::GpgVerifyResultAnalyse']]], + ['process_5fdirectory_5finto_5ftarball_465',['process_directory_into_tarball',['../namespaceGpgFrontend_1_1UI.html#a5470872566b41ce628f64039f34b964a',1,'GpgFrontend::UI']]], + ['process_5foperation_466',['process_operation',['../namespaceGpgFrontend_1_1UI.html#a3c971eeb5c620d08d6d92f0752ceaf9f',1,'GpgFrontend::UI']]], + ['process_5fresult_5fanalyse_467',['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_468',['process_tarball_into_directory',['../namespaceGpgFrontend_1_1UI.html#a57d0a4dba23cd3d9b42222d40c710dc1',1,'GpgFrontend::UI']]], + ['proxyconnectiontesttask_469',['ProxyConnectionTestTask',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask.html',1,'GpgFrontend::UI::ProxyConnectionTestTask'],['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask.html#a8036aaf9a2adcf033fc9f8e51da59956',1,'GpgFrontend::UI::ProxyConnectionTestTask::ProxyConnectionTestTask()']]], + ['proxyconnectiontestthread_470',['ProxyConnectionTestThread',['../classProxyConnectionTestThread.html',1,'']]] ]; diff --git a/docs/html/search/classes_0.js b/docs/html/search/classes_0.js index 1c8aa318..01d7e245 100644 --- a/docs/html/search/classes_0.js +++ b/docs/html/search/classes_0.js @@ -1,7 +1,7 @@ var searchData= [ - ['_5fctx_5fref_5fdeleter_740',['_ctx_ref_deleter',['../structGpgFrontend_1_1GpgContext_1_1__ctx__ref__deleter.html',1,'GpgFrontend::GpgContext']]], - ['_5fdata_5fref_5fdeleter_741',['_data_ref_deleter',['../structGpgFrontend_1_1GpgData_1_1__data__ref__deleter.html',1,'GpgFrontend::GpgData']]], - ['_5fkey_5fref_5fdeleter_742',['_key_ref_deleter',['../structGpgFrontend_1_1GpgKey_1_1__key__ref__deleter.html',1,'GpgFrontend::GpgKey']]], - ['_5fresult_5fref_5fdeletor_743',['_result_ref_deletor',['../structGpgFrontend_1_1__result__ref__deletor.html',1,'GpgFrontend']]] + ['_5fctx_5fref_5fdeleter_741',['_ctx_ref_deleter',['../structGpgFrontend_1_1GpgContext_1_1__ctx__ref__deleter.html',1,'GpgFrontend::GpgContext']]], + ['_5fdata_5fref_5fdeleter_742',['_data_ref_deleter',['../structGpgFrontend_1_1GpgData_1_1__data__ref__deleter.html',1,'GpgFrontend::GpgData']]], + ['_5fkey_5fref_5fdeleter_743',['_key_ref_deleter',['../structGpgFrontend_1_1GpgKey_1_1__key__ref__deleter.html',1,'GpgFrontend::GpgKey']]], + ['_5fresult_5fref_5fdeletor_744',['_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 b198a99e..833feae1 100644 --- a/docs/html/search/classes_1.js +++ b/docs/html/search/classes_1.js @@ -1,8 +1,8 @@ var searchData= [ - ['aboutdialog_744',['AboutDialog',['../classGpgFrontend_1_1UI_1_1AboutDialog.html',1,'GpgFrontend::UI']]], - ['advancedtab_745',['AdvancedTab',['../classGpgFrontend_1_1UI_1_1AdvancedTab.html',1,'GpgFrontend::UI']]], - ['appearancetab_746',['AppearanceTab',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html',1,'GpgFrontend::UI']]], - ['archivefileoperator_747',['ArchiveFileOperator',['../classGpgFrontend_1_1ArchiveFileOperator.html',1,'GpgFrontend']]], - ['archivestruct_748',['ArchiveStruct',['../structGpgFrontend_1_1ArchiveStruct.html',1,'GpgFrontend']]] + ['aboutdialog_745',['AboutDialog',['../classGpgFrontend_1_1UI_1_1AboutDialog.html',1,'GpgFrontend::UI']]], + ['advancedtab_746',['AdvancedTab',['../classGpgFrontend_1_1UI_1_1AdvancedTab.html',1,'GpgFrontend::UI']]], + ['appearancetab_747',['AppearanceTab',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html',1,'GpgFrontend::UI']]], + ['archivefileoperator_748',['ArchiveFileOperator',['../classGpgFrontend_1_1ArchiveFileOperator.html',1,'GpgFrontend']]], + ['archivestruct_749',['ArchiveStruct',['../structGpgFrontend_1_1ArchiveStruct.html',1,'GpgFrontend']]] ]; diff --git a/docs/html/search/classes_10.js b/docs/html/search/classes_10.js index 09a8bad6..c0468e2d 100644 --- a/docs/html/search/classes_10.js +++ b/docs/html/search/classes_10.js @@ -1,10 +1,10 @@ var searchData= [ - ['task_862',['Task',['../classGpgFrontend_1_1Thread_1_1Task.html',1,'GpgFrontend::Thread']]], - ['taskrunner_863',['TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html',1,'GpgFrontend::Thread']]], - ['taskrunnergetter_864',['TaskRunnerGetter',['../classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html',1,'GpgFrontend::Thread']]], - ['testlistedkeyserverthread_865',['TestListedKeyServerThread',['../classTestListedKeyServerThread.html',1,'']]], - ['textedit_866',['TextEdit',['../classGpgFrontend_1_1UI_1_1TextEdit.html',1,'GpgFrontend::UI']]], - ['tofuinfopage_867',['TOFUInfoPage',['../classGpgFrontend_1_1UI_1_1TOFUInfoPage.html',1,'GpgFrontend::UI']]], - ['translatorstab_868',['TranslatorsTab',['../classGpgFrontend_1_1UI_1_1TranslatorsTab.html',1,'GpgFrontend::UI']]] + ['task_863',['Task',['../classGpgFrontend_1_1Thread_1_1Task.html',1,'GpgFrontend::Thread']]], + ['taskrunner_864',['TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html',1,'GpgFrontend::Thread']]], + ['taskrunnergetter_865',['TaskRunnerGetter',['../classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html',1,'GpgFrontend::Thread']]], + ['testlistedkeyserverthread_866',['TestListedKeyServerThread',['../classTestListedKeyServerThread.html',1,'']]], + ['textedit_867',['TextEdit',['../classGpgFrontend_1_1UI_1_1TextEdit.html',1,'GpgFrontend::UI']]], + ['tofuinfopage_868',['TOFUInfoPage',['../classGpgFrontend_1_1UI_1_1TOFUInfoPage.html',1,'GpgFrontend::UI']]], + ['translatorstab_869',['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 28949c3c..b2641338 100644 --- a/docs/html/search/classes_11.js +++ b/docs/html/search/classes_11.js @@ -1,4 +1,4 @@ var searchData= [ - ['updatetab_869',['UpdateTab',['../classGpgFrontend_1_1UI_1_1UpdateTab.html',1,'GpgFrontend::UI']]] + ['updatetab_870',['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 d64185e2..1b5e3ed4 100644 --- a/docs/html/search/classes_12.js +++ b/docs/html/search/classes_12.js @@ -1,6 +1,6 @@ var searchData= [ - ['verifydetailsdialog_870',['VerifyDetailsDialog',['../classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html',1,'GpgFrontend::UI']]], - ['verifykeydetailbox_871',['VerifyKeyDetailBox',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html',1,'GpgFrontend::UI']]], - ['versionchecktask_872',['VersionCheckTask',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html',1,'GpgFrontend::UI']]] + ['verifydetailsdialog_871',['VerifyDetailsDialog',['../classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html',1,'GpgFrontend::UI']]], + ['verifykeydetailbox_872',['VerifyKeyDetailBox',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html',1,'GpgFrontend::UI']]], + ['versionchecktask_873',['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 a2f36d8c..e8d2e4ac 100644 --- a/docs/html/search/classes_13.js +++ b/docs/html/search/classes_13.js @@ -1,5 +1,5 @@ var searchData= [ - ['waitingdialog_873',['WaitingDialog',['../classGpgFrontend_1_1UI_1_1WaitingDialog.html',1,'GpgFrontend::UI']]], - ['wizard_874',['Wizard',['../classGpgFrontend_1_1UI_1_1Wizard.html',1,'GpgFrontend::UI']]] + ['waitingdialog_874',['WaitingDialog',['../classGpgFrontend_1_1UI_1_1WaitingDialog.html',1,'GpgFrontend::UI']]], + ['wizard_875',['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 057c935b..4636275a 100644 --- a/docs/html/search/classes_2.js +++ b/docs/html/search/classes_2.js @@ -1,14 +1,14 @@ var searchData= [ - ['cachemanager_749',['CacheManager',['../classGpgFrontend_1_1CacheManager.html',1,'GpgFrontend']]], - ['channelobject_750',['ChannelObject',['../classGpgFrontend_1_1ChannelObject.html',1,'GpgFrontend']]], - ['charsetoperator_751',['CharsetOperator',['../classGpgFrontend_1_1CharsetOperator.html',1,'GpgFrontend']]], - ['choosepage_752',['ChoosePage',['../classGpgFrontend_1_1UI_1_1ChoosePage.html',1,'GpgFrontend::UI']]], - ['class_753',['class',['../classclass.html',1,'']]], - ['commonutils_754',['CommonUtils',['../classGpgFrontend_1_1UI_1_1CommonUtils.html',1,'GpgFrontend::UI']]], - ['conclusionpage_755',['ConclusionPage',['../classGpgFrontend_1_1UI_1_1ConclusionPage.html',1,'GpgFrontend::UI']]], - ['corecommonutil_756',['CoreCommonUtil',['../classGpgFrontend_1_1CoreCommonUtil.html',1,'GpgFrontend']]], - ['coresignalstation_757',['CoreSignalStation',['../classGpgFrontend_1_1CoreSignalStation.html',1,'GpgFrontend']]], - ['cryptomenu_758',['CryptoMenu',['../structGpgFrontend_1_1UI_1_1MainWindow_1_1CryptoMenu.html',1,'GpgFrontend::UI::MainWindow']]], - ['ctxchecktask_759',['CtxCheckTask',['../classGpgFrontend_1_1Thread_1_1CtxCheckTask.html',1,'GpgFrontend::Thread']]] + ['cachemanager_750',['CacheManager',['../classGpgFrontend_1_1CacheManager.html',1,'GpgFrontend']]], + ['channelobject_751',['ChannelObject',['../classGpgFrontend_1_1ChannelObject.html',1,'GpgFrontend']]], + ['charsetoperator_752',['CharsetOperator',['../classGpgFrontend_1_1CharsetOperator.html',1,'GpgFrontend']]], + ['choosepage_753',['ChoosePage',['../classGpgFrontend_1_1UI_1_1ChoosePage.html',1,'GpgFrontend::UI']]], + ['class_754',['class',['../classclass.html',1,'']]], + ['commonutils_755',['CommonUtils',['../classGpgFrontend_1_1UI_1_1CommonUtils.html',1,'GpgFrontend::UI']]], + ['conclusionpage_756',['ConclusionPage',['../classGpgFrontend_1_1UI_1_1ConclusionPage.html',1,'GpgFrontend::UI']]], + ['corecommonutil_757',['CoreCommonUtil',['../classGpgFrontend_1_1CoreCommonUtil.html',1,'GpgFrontend']]], + ['coresignalstation_758',['CoreSignalStation',['../classGpgFrontend_1_1CoreSignalStation.html',1,'GpgFrontend']]], + ['cryptomenu_759',['CryptoMenu',['../structGpgFrontend_1_1UI_1_1MainWindow_1_1CryptoMenu.html',1,'GpgFrontend::UI::MainWindow']]], + ['ctxchecktask_760',['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 1995c15d..6437b350 100644 --- a/docs/html/search/classes_3.js +++ b/docs/html/search/classes_3.js @@ -1,6 +1,6 @@ var searchData= [ - ['dataobject_760',['DataObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html',1,'GpgFrontend::Thread::Task']]], - ['dataobjectoperator_761',['DataObjectOperator',['../classGpgFrontend_1_1DataObjectOperator.html',1,'GpgFrontend']]], - ['destructor_762',['Destructor',['../structGpgFrontend_1_1Thread_1_1Task_1_1DataObject_1_1Destructor.html',1,'GpgFrontend::Thread::Task::DataObject']]] + ['dataobject_761',['DataObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html',1,'GpgFrontend::Thread::Task']]], + ['dataobjectoperator_762',['DataObjectOperator',['../classGpgFrontend_1_1DataObjectOperator.html',1,'GpgFrontend']]], + ['destructor_763',['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 e8101679..2edcdc0c 100644 --- a/docs/html/search/classes_4.js +++ b/docs/html/search/classes_4.js @@ -1,4 +1,4 @@ var searchData= [ - ['exportkeypackagedialog_763',['ExportKeyPackageDialog',['../classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html',1,'GpgFrontend::UI']]] + ['exportkeypackagedialog_764',['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 fac2c39d..4e085df0 100644 --- a/docs/html/search/classes_5.js +++ b/docs/html/search/classes_5.js @@ -1,7 +1,7 @@ var searchData= [ - ['fileoperator_764',['FileOperator',['../classGpgFrontend_1_1FileOperator.html',1,'GpgFrontend']]], - ['filepage_765',['FilePage',['../classGpgFrontend_1_1UI_1_1FilePage.html',1,'GpgFrontend::UI']]], - ['filereadtask_766',['FileReadTask',['../classGpgFrontend_1_1UI_1_1FileReadTask.html',1,'GpgFrontend::UI']]], - ['findwidget_767',['FindWidget',['../classGpgFrontend_1_1UI_1_1FindWidget.html',1,'GpgFrontend::UI']]] + ['fileoperator_765',['FileOperator',['../classGpgFrontend_1_1FileOperator.html',1,'GpgFrontend']]], + ['filepage_766',['FilePage',['../classGpgFrontend_1_1UI_1_1FilePage.html',1,'GpgFrontend::UI']]], + ['filereadtask_767',['FileReadTask',['../classGpgFrontend_1_1UI_1_1FileReadTask.html',1,'GpgFrontend::UI']]], + ['findwidget_768',['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 ca8cc4fe..363a4fdb 100644 --- a/docs/html/search/classes_6.js +++ b/docs/html/search/classes_6.js @@ -1,38 +1,38 @@ var searchData= [ - ['generaldialog_768',['GeneralDialog',['../classGpgFrontend_1_1UI_1_1GeneralDialog.html',1,'GpgFrontend::UI']]], - ['generalmainwindow_769',['GeneralMainWindow',['../classGpgFrontend_1_1UI_1_1GeneralMainWindow.html',1,'GpgFrontend::UI']]], - ['generaltab_770',['GeneralTab',['../classGpgFrontend_1_1UI_1_1GeneralTab.html',1,'GpgFrontend::UI']]], - ['genkeyinfo_771',['GenKeyInfo',['../classGpgFrontend_1_1GenKeyInfo.html',1,'GpgFrontend']]], - ['globalsettingstation_772',['GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html',1,'GpgFrontend']]], - ['gnupgcontrollerdialog_773',['GnuPGControllerDialog',['../classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html',1,'GpgFrontend::UI']]], - ['gnupgtab_774',['GnupgTab',['../classGpgFrontend_1_1UI_1_1GnupgTab.html',1,'GpgFrontend::UI']]], - ['gpgadvancedoperator_775',['GpgAdvancedOperator',['../classGpgFrontend_1_1GpgAdvancedOperator.html',1,'GpgFrontend']]], - ['gpgbasicoperator_776',['GpgBasicOperator',['../classGpgFrontend_1_1GpgBasicOperator.html',1,'GpgFrontend']]], - ['gpgcommandexecutor_777',['GpgCommandExecutor',['../classGpgFrontend_1_1GpgCommandExecutor.html',1,'GpgFrontend']]], - ['gpgconstants_778',['GpgConstants',['../classGpgFrontend_1_1GpgConstants.html',1,'GpgFrontend']]], - ['gpgcontext_779',['GpgContext',['../classGpgFrontend_1_1GpgContext.html',1,'GpgFrontend']]], - ['gpgcontextinitargs_780',['GpgContextInitArgs',['../structGpgFrontend_1_1GpgContextInitArgs.html',1,'GpgFrontend']]], - ['gpgdata_781',['GpgData',['../classGpgFrontend_1_1GpgData.html',1,'GpgFrontend']]], - ['gpgdecryptresultanalyse_782',['GpgDecryptResultAnalyse',['../classGpgFrontend_1_1GpgDecryptResultAnalyse.html',1,'GpgFrontend']]], - ['gpgencryptresultanalyse_783',['GpgEncryptResultAnalyse',['../classGpgFrontend_1_1GpgEncryptResultAnalyse.html',1,'GpgFrontend']]], - ['gpgfileopera_784',['GpgFileOpera',['../classGpgFrontend_1_1GpgFileOpera.html',1,'GpgFrontend']]], - ['gpgfrontendapplication_785',['GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html',1,'GpgFrontend::UI']]], - ['gpgimportedkey_786',['GpgImportedKey',['../classGpgFrontend_1_1GpgImportedKey.html',1,'GpgFrontend']]], - ['gpgimportinformation_787',['GpgImportInformation',['../classGpgFrontend_1_1GpgImportInformation.html',1,'GpgFrontend']]], - ['gpginfo_788',['GpgInfo',['../classGpgFrontend_1_1GpgInfo.html',1,'GpgFrontend']]], - ['gpgkey_789',['GpgKey',['../classGpgFrontend_1_1GpgKey.html',1,'GpgFrontend']]], - ['gpgkeygetter_790',['GpgKeyGetter',['../classGpgFrontend_1_1GpgKeyGetter.html',1,'GpgFrontend']]], - ['gpgkeyimportexporter_791',['GpgKeyImportExporter',['../classGpgFrontend_1_1GpgKeyImportExporter.html',1,'GpgFrontend']]], - ['gpgkeymanager_792',['GpgKeyManager',['../classGpgFrontend_1_1GpgKeyManager.html',1,'GpgFrontend']]], - ['gpgkeyopera_793',['GpgKeyOpera',['../classGpgFrontend_1_1GpgKeyOpera.html',1,'GpgFrontend']]], - ['gpgkeysignature_794',['GpgKeySignature',['../classGpgFrontend_1_1GpgKeySignature.html',1,'GpgFrontend']]], - ['gpgresultanalyse_795',['GpgResultAnalyse',['../classGpgFrontend_1_1GpgResultAnalyse.html',1,'GpgFrontend']]], - ['gpgsignature_796',['GpgSignature',['../classGpgFrontend_1_1GpgSignature.html',1,'GpgFrontend']]], - ['gpgsignresultanalyse_797',['GpgSignResultAnalyse',['../classGpgFrontend_1_1GpgSignResultAnalyse.html',1,'GpgFrontend']]], - ['gpgsubkey_798',['GpgSubKey',['../classGpgFrontend_1_1GpgSubKey.html',1,'GpgFrontend']]], - ['gpgtofuinfo_799',['GpgTOFUInfo',['../classGpgFrontend_1_1GpgTOFUInfo.html',1,'GpgFrontend']]], - ['gpguid_800',['GpgUID',['../classGpgFrontend_1_1GpgUID.html',1,'GpgFrontend']]], - ['gpguidoperator_801',['GpgUIDOperator',['../classGpgFrontend_1_1GpgUIDOperator.html',1,'GpgFrontend']]], - ['gpgverifyresultanalyse_802',['GpgVerifyResultAnalyse',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html',1,'GpgFrontend']]] + ['generaldialog_769',['GeneralDialog',['../classGpgFrontend_1_1UI_1_1GeneralDialog.html',1,'GpgFrontend::UI']]], + ['generalmainwindow_770',['GeneralMainWindow',['../classGpgFrontend_1_1UI_1_1GeneralMainWindow.html',1,'GpgFrontend::UI']]], + ['generaltab_771',['GeneralTab',['../classGpgFrontend_1_1UI_1_1GeneralTab.html',1,'GpgFrontend::UI']]], + ['genkeyinfo_772',['GenKeyInfo',['../classGpgFrontend_1_1GenKeyInfo.html',1,'GpgFrontend']]], + ['globalsettingstation_773',['GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html',1,'GpgFrontend']]], + ['gnupgcontrollerdialog_774',['GnuPGControllerDialog',['../classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html',1,'GpgFrontend::UI']]], + ['gnupgtab_775',['GnupgTab',['../classGpgFrontend_1_1UI_1_1GnupgTab.html',1,'GpgFrontend::UI']]], + ['gpgadvancedoperator_776',['GpgAdvancedOperator',['../classGpgFrontend_1_1GpgAdvancedOperator.html',1,'GpgFrontend']]], + ['gpgbasicoperator_777',['GpgBasicOperator',['../classGpgFrontend_1_1GpgBasicOperator.html',1,'GpgFrontend']]], + ['gpgcommandexecutor_778',['GpgCommandExecutor',['../classGpgFrontend_1_1GpgCommandExecutor.html',1,'GpgFrontend']]], + ['gpgconstants_779',['GpgConstants',['../classGpgFrontend_1_1GpgConstants.html',1,'GpgFrontend']]], + ['gpgcontext_780',['GpgContext',['../classGpgFrontend_1_1GpgContext.html',1,'GpgFrontend']]], + ['gpgcontextinitargs_781',['GpgContextInitArgs',['../structGpgFrontend_1_1GpgContextInitArgs.html',1,'GpgFrontend']]], + ['gpgdata_782',['GpgData',['../classGpgFrontend_1_1GpgData.html',1,'GpgFrontend']]], + ['gpgdecryptresultanalyse_783',['GpgDecryptResultAnalyse',['../classGpgFrontend_1_1GpgDecryptResultAnalyse.html',1,'GpgFrontend']]], + ['gpgencryptresultanalyse_784',['GpgEncryptResultAnalyse',['../classGpgFrontend_1_1GpgEncryptResultAnalyse.html',1,'GpgFrontend']]], + ['gpgfileopera_785',['GpgFileOpera',['../classGpgFrontend_1_1GpgFileOpera.html',1,'GpgFrontend']]], + ['gpgfrontendapplication_786',['GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html',1,'GpgFrontend::UI']]], + ['gpgimportedkey_787',['GpgImportedKey',['../classGpgFrontend_1_1GpgImportedKey.html',1,'GpgFrontend']]], + ['gpgimportinformation_788',['GpgImportInformation',['../classGpgFrontend_1_1GpgImportInformation.html',1,'GpgFrontend']]], + ['gpginfo_789',['GpgInfo',['../classGpgFrontend_1_1GpgInfo.html',1,'GpgFrontend']]], + ['gpgkey_790',['GpgKey',['../classGpgFrontend_1_1GpgKey.html',1,'GpgFrontend']]], + ['gpgkeygetter_791',['GpgKeyGetter',['../classGpgFrontend_1_1GpgKeyGetter.html',1,'GpgFrontend']]], + ['gpgkeyimportexporter_792',['GpgKeyImportExporter',['../classGpgFrontend_1_1GpgKeyImportExporter.html',1,'GpgFrontend']]], + ['gpgkeymanager_793',['GpgKeyManager',['../classGpgFrontend_1_1GpgKeyManager.html',1,'GpgFrontend']]], + ['gpgkeyopera_794',['GpgKeyOpera',['../classGpgFrontend_1_1GpgKeyOpera.html',1,'GpgFrontend']]], + ['gpgkeysignature_795',['GpgKeySignature',['../classGpgFrontend_1_1GpgKeySignature.html',1,'GpgFrontend']]], + ['gpgresultanalyse_796',['GpgResultAnalyse',['../classGpgFrontend_1_1GpgResultAnalyse.html',1,'GpgFrontend']]], + ['gpgsignature_797',['GpgSignature',['../classGpgFrontend_1_1GpgSignature.html',1,'GpgFrontend']]], + ['gpgsignresultanalyse_798',['GpgSignResultAnalyse',['../classGpgFrontend_1_1GpgSignResultAnalyse.html',1,'GpgFrontend']]], + ['gpgsubkey_799',['GpgSubKey',['../classGpgFrontend_1_1GpgSubKey.html',1,'GpgFrontend']]], + ['gpgtofuinfo_800',['GpgTOFUInfo',['../classGpgFrontend_1_1GpgTOFUInfo.html',1,'GpgFrontend']]], + ['gpguid_801',['GpgUID',['../classGpgFrontend_1_1GpgUID.html',1,'GpgFrontend']]], + ['gpguidoperator_802',['GpgUIDOperator',['../classGpgFrontend_1_1GpgUIDOperator.html',1,'GpgFrontend']]], + ['gpgverifyresultanalyse_803',['GpgVerifyResultAnalyse',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html',1,'GpgFrontend']]] ]; diff --git a/docs/html/search/classes_7.js b/docs/html/search/classes_7.js index 59a9e923..6aaa1724 100644 --- a/docs/html/search/classes_7.js +++ b/docs/html/search/classes_7.js @@ -1,4 +1,4 @@ var searchData= [ - ['helppage_803',['HelpPage',['../classGpgFrontend_1_1UI_1_1HelpPage.html',1,'GpgFrontend::UI']]] + ['helppage_804',['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 81748dcc..4a3b9277 100644 --- a/docs/html/search/classes_8.js +++ b/docs/html/search/classes_8.js @@ -1,6 +1,6 @@ var searchData= [ - ['infoboardwidget_804',['InfoBoardWidget',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html',1,'GpgFrontend::UI']]], - ['infotab_805',['InfoTab',['../classGpgFrontend_1_1UI_1_1InfoTab.html',1,'GpgFrontend::UI']]], - ['intropage_806',['IntroPage',['../classGpgFrontend_1_1UI_1_1IntroPage.html',1,'GpgFrontend::UI']]] + ['infoboardwidget_805',['InfoBoardWidget',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html',1,'GpgFrontend::UI']]], + ['infotab_806',['InfoTab',['../classGpgFrontend_1_1UI_1_1InfoTab.html',1,'GpgFrontend::UI']]], + ['intropage_807',['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 e6105ad5..e38b7915 100644 --- a/docs/html/search/classes_9.js +++ b/docs/html/search/classes_9.js @@ -1,26 +1,26 @@ var searchData= [ - ['keydetailsdialog_807',['KeyDetailsDialog',['../classGpgFrontend_1_1UI_1_1KeyDetailsDialog.html',1,'GpgFrontend::UI']]], - ['keygendialog_808',['KeyGenDialog',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html',1,'GpgFrontend::UI']]], - ['keygenpage_809',['KeyGenPage',['../classGpgFrontend_1_1UI_1_1KeyGenPage.html',1,'GpgFrontend::UI']]], - ['keyimportdetaildialog_810',['KeyImportDetailDialog',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html',1,'GpgFrontend::UI']]], - ['keylist_811',['KeyList',['../classGpgFrontend_1_1UI_1_1KeyList.html',1,'GpgFrontend::UI']]], - ['keylistcolumn_812',['KeyListColumn',['../structGpgFrontend_1_1UI_1_1KeyListColumn.html',1,'GpgFrontend::UI']]], - ['keylistrow_813',['KeyListRow',['../structGpgFrontend_1_1UI_1_1KeyListRow.html',1,'GpgFrontend::UI']]], - ['keymenuability_814',['KeyMenuAbility',['../structGpgFrontend_1_1UI_1_1KeyMenuAbility.html',1,'GpgFrontend::UI']]], - ['keymgmt_815',['KeyMgmt',['../classGpgFrontend_1_1UI_1_1KeyMgmt.html',1,'GpgFrontend::UI']]], - ['keynewuiddialog_816',['KeyNewUIDDialog',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html',1,'GpgFrontend::UI']]], - ['keypackageoperator_817',['KeyPackageOperator',['../classGpgFrontend_1_1KeyPackageOperator.html',1,'GpgFrontend']]], - ['keypairdetailtab_818',['KeyPairDetailTab',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html',1,'GpgFrontend::UI']]], - ['keypairoperatab_819',['KeyPairOperaTab',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html',1,'GpgFrontend::UI']]], - ['keypairsubkeytab_820',['KeyPairSubkeyTab',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html',1,'GpgFrontend::UI']]], - ['keypairuidtab_821',['KeyPairUIDTab',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html',1,'GpgFrontend::UI']]], - ['keyserverimportdialog_822',['KeyServerImportDialog',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html',1,'GpgFrontend::UI']]], - ['keyserverimporttask_823',['KeyServerImportTask',['../classGpgFrontend_1_1UI_1_1KeyServerImportTask.html',1,'GpgFrontend::UI']]], - ['keyserversearchtask_824',['KeyServerSearchTask',['../classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html',1,'GpgFrontend::UI']]], - ['keyservertab_825',['KeyserverTab',['../classGpgFrontend_1_1UI_1_1KeyserverTab.html',1,'GpgFrontend::UI']]], - ['keysetexpiredatedialog_826',['KeySetExpireDateDialog',['../classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html',1,'GpgFrontend::UI']]], - ['keytable_827',['KeyTable',['../structGpgFrontend_1_1UI_1_1KeyTable.html',1,'GpgFrontend::UI']]], - ['keyuidsigndialog_828',['KeyUIDSignDialog',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html',1,'GpgFrontend::UI']]], - ['keyuploaddialog_829',['KeyUploadDialog',['../classGpgFrontend_1_1UI_1_1KeyUploadDialog.html',1,'GpgFrontend::UI']]] + ['keydetailsdialog_808',['KeyDetailsDialog',['../classGpgFrontend_1_1UI_1_1KeyDetailsDialog.html',1,'GpgFrontend::UI']]], + ['keygendialog_809',['KeyGenDialog',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html',1,'GpgFrontend::UI']]], + ['keygenpage_810',['KeyGenPage',['../classGpgFrontend_1_1UI_1_1KeyGenPage.html',1,'GpgFrontend::UI']]], + ['keyimportdetaildialog_811',['KeyImportDetailDialog',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html',1,'GpgFrontend::UI']]], + ['keylist_812',['KeyList',['../classGpgFrontend_1_1UI_1_1KeyList.html',1,'GpgFrontend::UI']]], + ['keylistcolumn_813',['KeyListColumn',['../structGpgFrontend_1_1UI_1_1KeyListColumn.html',1,'GpgFrontend::UI']]], + ['keylistrow_814',['KeyListRow',['../structGpgFrontend_1_1UI_1_1KeyListRow.html',1,'GpgFrontend::UI']]], + ['keymenuability_815',['KeyMenuAbility',['../structGpgFrontend_1_1UI_1_1KeyMenuAbility.html',1,'GpgFrontend::UI']]], + ['keymgmt_816',['KeyMgmt',['../classGpgFrontend_1_1UI_1_1KeyMgmt.html',1,'GpgFrontend::UI']]], + ['keynewuiddialog_817',['KeyNewUIDDialog',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html',1,'GpgFrontend::UI']]], + ['keypackageoperator_818',['KeyPackageOperator',['../classGpgFrontend_1_1KeyPackageOperator.html',1,'GpgFrontend']]], + ['keypairdetailtab_819',['KeyPairDetailTab',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html',1,'GpgFrontend::UI']]], + ['keypairoperatab_820',['KeyPairOperaTab',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html',1,'GpgFrontend::UI']]], + ['keypairsubkeytab_821',['KeyPairSubkeyTab',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html',1,'GpgFrontend::UI']]], + ['keypairuidtab_822',['KeyPairUIDTab',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html',1,'GpgFrontend::UI']]], + ['keyserverimportdialog_823',['KeyServerImportDialog',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html',1,'GpgFrontend::UI']]], + ['keyserverimporttask_824',['KeyServerImportTask',['../classGpgFrontend_1_1UI_1_1KeyServerImportTask.html',1,'GpgFrontend::UI']]], + ['keyserversearchtask_825',['KeyServerSearchTask',['../classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html',1,'GpgFrontend::UI']]], + ['keyservertab_826',['KeyserverTab',['../classGpgFrontend_1_1UI_1_1KeyserverTab.html',1,'GpgFrontend::UI']]], + ['keysetexpiredatedialog_827',['KeySetExpireDateDialog',['../classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html',1,'GpgFrontend::UI']]], + ['keytable_828',['KeyTable',['../structGpgFrontend_1_1UI_1_1KeyTable.html',1,'GpgFrontend::UI']]], + ['keyuidsigndialog_829',['KeyUIDSignDialog',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html',1,'GpgFrontend::UI']]], + ['keyuploaddialog_830',['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 05d79956..f8ef9602 100644 --- a/docs/html/search/classes_a.js +++ b/docs/html/search/classes_a.js @@ -1,4 +1,4 @@ var searchData= [ - ['listedkeyservertesttask_830',['ListedKeyServerTestTask',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html',1,'GpgFrontend::UI']]] + ['listedkeyservertesttask_831',['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 4a9b816a..cfce2acb 100644 --- a/docs/html/search/classes_b.js +++ b/docs/html/search/classes_b.js @@ -1,4 +1,4 @@ var searchData= [ - ['mainwindow_831',['MainWindow',['../classGpgFrontend_1_1UI_1_1MainWindow.html',1,'GpgFrontend::UI']]] + ['mainwindow_832',['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 5decb09b..2d6a0541 100644 --- a/docs/html/search/classes_c.js +++ b/docs/html/search/classes_c.js @@ -1,4 +1,4 @@ var searchData= [ - ['networktab_832',['NetworkTab',['../classGpgFrontend_1_1UI_1_1NetworkTab.html',1,'GpgFrontend::UI']]] + ['networktab_833',['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 1f4a1586..e7db61d7 100644 --- a/docs/html/search/classes_d.js +++ b/docs/html/search/classes_d.js @@ -1,7 +1,7 @@ var searchData= [ - ['passphrasegenerator_833',['PassphraseGenerator',['../classGpgFrontend_1_1PassphraseGenerator.html',1,'GpgFrontend']]], - ['plaintexteditorpage_834',['PlainTextEditorPage',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html',1,'GpgFrontend::UI']]], - ['proxyconnectiontesttask_835',['ProxyConnectionTestTask',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask.html',1,'GpgFrontend::UI']]], - ['proxyconnectiontestthread_836',['ProxyConnectionTestThread',['../classProxyConnectionTestThread.html',1,'']]] + ['passphrasegenerator_834',['PassphraseGenerator',['../classGpgFrontend_1_1PassphraseGenerator.html',1,'GpgFrontend']]], + ['plaintexteditorpage_835',['PlainTextEditorPage',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html',1,'GpgFrontend::UI']]], + ['proxyconnectiontesttask_836',['ProxyConnectionTestTask',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask.html',1,'GpgFrontend::UI']]], + ['proxyconnectiontestthread_837',['ProxyConnectionTestThread',['../classProxyConnectionTestThread.html',1,'']]] ]; diff --git a/docs/html/search/classes_e.js b/docs/html/search/classes_e.js index 96b79403..b5defe1e 100644 --- a/docs/html/search/classes_e.js +++ b/docs/html/search/classes_e.js @@ -1,4 +1,4 @@ var searchData= [ - ['quitdialog_837',['QuitDialog',['../classGpgFrontend_1_1UI_1_1QuitDialog.html',1,'GpgFrontend::UI']]] + ['quitdialog_838',['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 2bc25d9e..9acf4b4b 100644 --- a/docs/html/search/classes_f.js +++ b/docs/html/search/classes_f.js @@ -1,27 +1,27 @@ var searchData= [ - ['settingsdialog_838',['SettingsDialog',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html',1,'GpgFrontend::UI']]], - ['settingsobject_839',['SettingsObject',['../classGpgFrontend_1_1UI_1_1SettingsObject.html',1,'GpgFrontend::UI']]], - ['signalstation_840',['SignalStation',['../classGpgFrontend_1_1UI_1_1SignalStation.html',1,'GpgFrontend::UI']]], - ['signaturedetailsdialog_841',['SignatureDetailsDialog',['../classSignatureDetailsDialog.html',1,'']]], - ['signerspicker_842',['SignersPicker',['../classGpgFrontend_1_1UI_1_1SignersPicker.html',1,'GpgFrontend::UI']]], - ['singletonfunctionobject_843',['SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20dataobjectoperator_20_3e_844',['SingletonFunctionObject< DataObjectOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20globalsettingstation_20_3e_845',['SingletonFunctionObject< GlobalSettingStation >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgadvancedoperator_20_3e_846',['SingletonFunctionObject< GpgAdvancedOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgbasicoperator_20_3e_847',['SingletonFunctionObject< GpgBasicOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgcommandexecutor_20_3e_848',['SingletonFunctionObject< GpgCommandExecutor >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgcontext_20_3e_849',['SingletonFunctionObject< GpgContext >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgfileopera_20_3e_850',['SingletonFunctionObject< GpgFileOpera >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgkeygetter_20_3e_851',['SingletonFunctionObject< GpgKeyGetter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgkeyimportexporter_20_3e_852',['SingletonFunctionObject< GpgKeyImportExporter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgkeymanager_20_3e_853',['SingletonFunctionObject< GpgKeyManager >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgkeyopera_20_3e_854',['SingletonFunctionObject< GpgKeyOpera >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpguidoperator_20_3e_855',['SingletonFunctionObject< GpgUIDOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20passphrasegenerator_20_3e_856',['SingletonFunctionObject< PassphraseGenerator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20taskrunnergetter_20_3e_857',['SingletonFunctionObject< TaskRunnerGetter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonstorage_858',['SingletonStorage',['../classGpgFrontend_1_1SingletonStorage.html',1,'GpgFrontend']]], - ['singletonstoragecollection_859',['SingletonStorageCollection',['../classGpgFrontend_1_1SingletonStorageCollection.html',1,'GpgFrontend']]], - ['softwareversion_860',['SoftwareVersion',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html',1,'GpgFrontend::UI']]], - ['subkeygeneratedialog_861',['SubkeyGenerateDialog',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html',1,'GpgFrontend::UI']]] + ['settingsdialog_839',['SettingsDialog',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html',1,'GpgFrontend::UI']]], + ['settingsobject_840',['SettingsObject',['../classGpgFrontend_1_1UI_1_1SettingsObject.html',1,'GpgFrontend::UI']]], + ['signalstation_841',['SignalStation',['../classGpgFrontend_1_1UI_1_1SignalStation.html',1,'GpgFrontend::UI']]], + ['signaturedetailsdialog_842',['SignatureDetailsDialog',['../classSignatureDetailsDialog.html',1,'']]], + ['signerspicker_843',['SignersPicker',['../classGpgFrontend_1_1UI_1_1SignersPicker.html',1,'GpgFrontend::UI']]], + ['singletonfunctionobject_844',['SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20dataobjectoperator_20_3e_845',['SingletonFunctionObject< DataObjectOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20globalsettingstation_20_3e_846',['SingletonFunctionObject< GlobalSettingStation >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgadvancedoperator_20_3e_847',['SingletonFunctionObject< GpgAdvancedOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgbasicoperator_20_3e_848',['SingletonFunctionObject< GpgBasicOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgcommandexecutor_20_3e_849',['SingletonFunctionObject< GpgCommandExecutor >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgcontext_20_3e_850',['SingletonFunctionObject< GpgContext >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgfileopera_20_3e_851',['SingletonFunctionObject< GpgFileOpera >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgkeygetter_20_3e_852',['SingletonFunctionObject< GpgKeyGetter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgkeyimportexporter_20_3e_853',['SingletonFunctionObject< GpgKeyImportExporter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgkeymanager_20_3e_854',['SingletonFunctionObject< GpgKeyManager >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgkeyopera_20_3e_855',['SingletonFunctionObject< GpgKeyOpera >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpguidoperator_20_3e_856',['SingletonFunctionObject< GpgUIDOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20passphrasegenerator_20_3e_857',['SingletonFunctionObject< PassphraseGenerator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20taskrunnergetter_20_3e_858',['SingletonFunctionObject< TaskRunnerGetter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonstorage_859',['SingletonStorage',['../classGpgFrontend_1_1SingletonStorage.html',1,'GpgFrontend']]], + ['singletonstoragecollection_860',['SingletonStorageCollection',['../classGpgFrontend_1_1SingletonStorageCollection.html',1,'GpgFrontend']]], + ['softwareversion_861',['SoftwareVersion',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html',1,'GpgFrontend::UI']]], + ['subkeygeneratedialog_862',['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 70a21fe3..3a23e0e8 100644 --- a/docs/html/search/enums_0.js +++ b/docs/html/search/enums_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['infoboardstatus_1565',['InfoBoardStatus',['../namespaceGpgFrontend_1_1UI.html#acbaebd342a317b1f067942e5144bb00d',1,'GpgFrontend::UI']]] + ['infoboardstatus_1566',['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 711b4e11..d7b30acd 100644 --- a/docs/html/search/functions_0.js +++ b/docs/html/search/functions_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['_5fnew_5fresult_879',['_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_880',['_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 305d395b..91613ec2 100644 --- a/docs/html/search/functions_1.js +++ b/docs/html/search/functions_1.js @@ -1,15 +1,15 @@ var searchData= [ - ['aboutdialog_880',['AboutDialog',['../classGpgFrontend_1_1UI_1_1AboutDialog.html#ab04683ab4c4d682af1e259705c60d85a',1,'GpgFrontend::UI::AboutDialog']]], - ['addlistgrouptab_881',['AddListGroupTab',['../classGpgFrontend_1_1UI_1_1KeyList.html#a73ddb7feb1f70eac44e038c3dc925fec',1,'GpgFrontend::UI::KeyList']]], - ['addmenuaction_882',['AddMenuAction',['../classGpgFrontend_1_1UI_1_1KeyList.html#aa961e3ba3c48f84dea4bb7ab4f756886',1,'GpgFrontend::UI::KeyList']]], - ['addoptionalaction_883',['AddOptionalAction',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a456f15315a03107f7757d84362c1af71',1,'GpgFrontend::UI::InfoBoardWidget']]], - ['adduid_884',['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_885',['aes_256_cbc_decrypt',['../namespaceGpgFrontend_1_1RawAPI.html#a2e388ecafc7b859eda84b4e3c4e2576f',1,'GpgFrontend::RawAPI']]], - ['aes_5f256_5fcbc_5fencrypt_886',['aes_256_cbc_encrypt',['../namespaceGpgFrontend_1_1RawAPI.html#aa2bc88cf78b8da893f1b5c7e2e8ccf42',1,'GpgFrontend::RawAPI']]], - ['aes_5f256_5fcbc_5finit_887',['aes_256_cbc_init',['../namespaceGpgFrontend_1_1RawAPI.html#a1f2f6c82e9c904c3875a123a65564697',1,'GpgFrontend::RawAPI']]], - ['appearancetab_888',['AppearanceTab',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html#abfca670540bc0409b9be4459ee6a3b6c',1,'GpgFrontend::UI::AppearanceTab']]], - ['appendobject_889',['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_890',['AssociateTabWidget',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#adfa4acd435d2ec29f951f4e7e6a43f38',1,'GpgFrontend::UI::InfoBoardWidget']]], - ['associatetextedit_891',['AssociateTextEdit',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a4fd6f91eb435feb41ae93e44485646ab',1,'GpgFrontend::UI::InfoBoardWidget']]] + ['aboutdialog_881',['AboutDialog',['../classGpgFrontend_1_1UI_1_1AboutDialog.html#ab04683ab4c4d682af1e259705c60d85a',1,'GpgFrontend::UI::AboutDialog']]], + ['addlistgrouptab_882',['AddListGroupTab',['../classGpgFrontend_1_1UI_1_1KeyList.html#a73ddb7feb1f70eac44e038c3dc925fec',1,'GpgFrontend::UI::KeyList']]], + ['addmenuaction_883',['AddMenuAction',['../classGpgFrontend_1_1UI_1_1KeyList.html#aa961e3ba3c48f84dea4bb7ab4f756886',1,'GpgFrontend::UI::KeyList']]], + ['addoptionalaction_884',['AddOptionalAction',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a456f15315a03107f7757d84362c1af71',1,'GpgFrontend::UI::InfoBoardWidget']]], + ['adduid_885',['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_886',['aes_256_cbc_decrypt',['../namespaceGpgFrontend_1_1RawAPI.html#a2e388ecafc7b859eda84b4e3c4e2576f',1,'GpgFrontend::RawAPI']]], + ['aes_5f256_5fcbc_5fencrypt_887',['aes_256_cbc_encrypt',['../namespaceGpgFrontend_1_1RawAPI.html#aa2bc88cf78b8da893f1b5c7e2e8ccf42',1,'GpgFrontend::RawAPI']]], + ['aes_5f256_5fcbc_5finit_888',['aes_256_cbc_init',['../namespaceGpgFrontend_1_1RawAPI.html#a1f2f6c82e9c904c3875a123a65564697',1,'GpgFrontend::RawAPI']]], + ['appearancetab_889',['AppearanceTab',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html#abfca670540bc0409b9be4459ee6a3b6c',1,'GpgFrontend::UI::AppearanceTab']]], + ['appendobject_890',['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_891',['AssociateTabWidget',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#adfa4acd435d2ec29f951f4e7e6a43f38',1,'GpgFrontend::UI::InfoBoardWidget']]], + ['associatetextedit_892',['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 09249038..de94930f 100644 --- a/docs/html/search/functions_10.js +++ b/docs/html/search/functions_10.js @@ -1,4 +1,4 @@ var searchData= [ - ['quitdialog_1207',['QuitDialog',['../classGpgFrontend_1_1UI_1_1QuitDialog.html#a60419bf8e817db25128c2f941fc42a3d',1,'GpgFrontend::UI::QuitDialog']]] + ['quitdialog_1209',['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 80c387f9..f98c337f 100644 --- a/docs/html/search/functions_11.js +++ b/docs/html/search/functions_11.js @@ -1,23 +1,23 @@ var searchData= [ - ['read2buffer_1208',['Read2Buffer',['../classGpgFrontend_1_1GpgData.html#ae382a34ec551561315deca84c71c19c1',1,'GpgFrontend::GpgData']]], - ['read_5fall_5fdata_5fin_5ffile_1209',['read_all_data_in_file',['../namespaceGpgFrontend.html#a73f3e2217fb1d72dc75f266e11875f6d',1,'GpgFrontend']]], - ['readdone_1210',['ReadDone',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#ac1902b063decfeebe7f0908cbfe618ce',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['readfile_1211',['ReadFile',['../classGpgFrontend_1_1FileOperator.html#a28a3572dc01192b6a4d50b544181084c',1,'GpgFrontend::FileOperator']]], - ['readfilestd_1212',['ReadFileStd',['../classGpgFrontend_1_1FileOperator.html#ad4424bce4f22ae75a16c542dfb4ddf0a',1,'GpgFrontend::FileOperator']]], - ['refresh_1213',['Refresh',['../structGpgFrontend_1_1UI_1_1KeyTable.html#aaac381e205c323444098803e0295060f',1,'GpgFrontend::UI::KeyTable']]], - ['refresh_5finfo_5fboard_1214',['refresh_info_board',['../namespaceGpgFrontend_1_1UI.html#a204156a333cde4f705f0ace91cd3d333',1,'GpgFrontend::UI']]], - ['refresh_5fkeys_5ffrom_5fkey_5fserver_1215',['refresh_keys_from_key_server',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adfa3b3ae1de1fd04c5ea09e3c97c3e98',1,'GpgFrontend::UI::MainWindow']]], - ['refresh_5fwidgets_5fstate_1216',['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_1217',['ReleaseChannel',['../classGpgFrontend_1_1SingletonStorage.html#adb22cc80a1ab040b6e4bce962625edfd',1,'GpgFrontend::SingletonStorage::ReleaseChannel()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#ab49b1d50252e1934691a9483a6df2106',1,'GpgFrontend::SingletonFunctionObject::ReleaseChannel()']]], - ['reloadgpgcomponents_1218',['ReloadGpgComponents',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a6876b6ee63ff7147c274e4f9538d29ce',1,'GpgFrontend::GpgAdvancedOperator']]], - ['resetconfigures_1219',['ResetConfigures',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a209f6d1d664ab672437198dc10ed8226',1,'GpgFrontend::GpgAdvancedOperator']]], - ['resetoptionactionsmenu_1220',['ResetOptionActionsMenu',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a7d7504339221bd680fb18698dd829b32',1,'GpgFrontend::UI::InfoBoardWidget']]], - ['resettempcachevalue_1221',['ResetTempCacheValue',['../classGpgFrontend_1_1CoreCommonUtil.html#ae2df4542d0d7d15a542f9c664f1f295f',1,'GpgFrontend::CoreCommonUtil']]], - ['restartgpgcomponents_1222',['RestartGpgComponents',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a5801bf4ea7391cbcc60efd2513d41041',1,'GpgFrontend::GpgAdvancedOperator']]], - ['restore_5fsettings_1223',['restore_settings',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a210ab31f4d949a50507d0690c0d1598a',1,'GpgFrontend::UI::MainWindow']]], - ['revsign_1224',['RevSign',['../classGpgFrontend_1_1GpgKeyManager.html#aa2c0e804db1c4aaf3b861ee5ab54ebd8',1,'GpgFrontend::GpgKeyManager']]], - ['revuid_1225',['RevUID',['../classGpgFrontend_1_1GpgUIDOperator.html#a47f762666afbc806365877ff70947841',1,'GpgFrontend::GpgUIDOperator']]], - ['run_1226',['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_1227',['RunGpgFrontendUI',['../namespaceGpgFrontend_1_1UI.html#a9e2d085812ef8fdd6f19ea94a241b4da',1,'GpgFrontend::UI']]] + ['read2buffer_1210',['Read2Buffer',['../classGpgFrontend_1_1GpgData.html#ae382a34ec551561315deca84c71c19c1',1,'GpgFrontend::GpgData']]], + ['read_5fall_5fdata_5fin_5ffile_1211',['read_all_data_in_file',['../namespaceGpgFrontend.html#a73f3e2217fb1d72dc75f266e11875f6d',1,'GpgFrontend']]], + ['readdone_1212',['ReadDone',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#ac1902b063decfeebe7f0908cbfe618ce',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['readfile_1213',['ReadFile',['../classGpgFrontend_1_1FileOperator.html#a28a3572dc01192b6a4d50b544181084c',1,'GpgFrontend::FileOperator']]], + ['readfilestd_1214',['ReadFileStd',['../classGpgFrontend_1_1FileOperator.html#ad4424bce4f22ae75a16c542dfb4ddf0a',1,'GpgFrontend::FileOperator']]], + ['refresh_1215',['Refresh',['../structGpgFrontend_1_1UI_1_1KeyTable.html#aaac381e205c323444098803e0295060f',1,'GpgFrontend::UI::KeyTable']]], + ['refresh_5finfo_5fboard_1216',['refresh_info_board',['../namespaceGpgFrontend_1_1UI.html#a204156a333cde4f705f0ace91cd3d333',1,'GpgFrontend::UI']]], + ['refresh_5fkeys_5ffrom_5fkey_5fserver_1217',['refresh_keys_from_key_server',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adfa3b3ae1de1fd04c5ea09e3c97c3e98',1,'GpgFrontend::UI::MainWindow']]], + ['refresh_5fwidgets_5fstate_1218',['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_1219',['ReleaseChannel',['../classGpgFrontend_1_1SingletonStorage.html#adb22cc80a1ab040b6e4bce962625edfd',1,'GpgFrontend::SingletonStorage::ReleaseChannel()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#ab49b1d50252e1934691a9483a6df2106',1,'GpgFrontend::SingletonFunctionObject::ReleaseChannel()']]], + ['reloadgpgcomponents_1220',['ReloadGpgComponents',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a6876b6ee63ff7147c274e4f9538d29ce',1,'GpgFrontend::GpgAdvancedOperator']]], + ['resetconfigures_1221',['ResetConfigures',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a209f6d1d664ab672437198dc10ed8226',1,'GpgFrontend::GpgAdvancedOperator']]], + ['resetoptionactionsmenu_1222',['ResetOptionActionsMenu',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a7d7504339221bd680fb18698dd829b32',1,'GpgFrontend::UI::InfoBoardWidget']]], + ['resettempcachevalue_1223',['ResetTempCacheValue',['../classGpgFrontend_1_1CoreCommonUtil.html#ae2df4542d0d7d15a542f9c664f1f295f',1,'GpgFrontend::CoreCommonUtil']]], + ['restartgpgcomponents_1224',['RestartGpgComponents',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a5801bf4ea7391cbcc60efd2513d41041',1,'GpgFrontend::GpgAdvancedOperator']]], + ['restore_5fsettings_1225',['restore_settings',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a210ab31f4d949a50507d0690c0d1598a',1,'GpgFrontend::UI::MainWindow']]], + ['revsign_1226',['RevSign',['../classGpgFrontend_1_1GpgKeyManager.html#aa2c0e804db1c4aaf3b861ee5ab54ebd8',1,'GpgFrontend::GpgKeyManager']]], + ['revuid_1227',['RevUID',['../classGpgFrontend_1_1GpgUIDOperator.html#a47f762666afbc806365877ff70947841',1,'GpgFrontend::GpgUIDOperator']]], + ['run_1228',['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_1229',['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 b1b5f606..6e73ea22 100644 --- a/docs/html/search/functions_12.js +++ b/docs/html/search/functions_12.js @@ -1,166 +1,165 @@ var searchData= [ - ['save_5ffile_1228',['save_file',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a66b6f6633e7ac71e5fe8b7814a81cadf',1,'GpgFrontend::UI::TextEdit']]], - ['save_5fsettings_1229',['save_settings',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7a4b6490038470a8849231e48282da98',1,'GpgFrontend::UI::MainWindow']]], - ['savecache_1230',['SaveCache',['../classGpgFrontend_1_1CacheManager.html#a3cbc3238638dcd8b4722bfdf560c73fe',1,'GpgFrontend::CacheManager']]], - ['set_5fbackground_1231',['set_background',['../classGpgFrontend_1_1UI_1_1FindWidget.html#a0c531f2c673caed29225a323e750205f',1,'GpgFrontend::UI::FindWidget']]], - ['set_5floading_1232',['set_loading',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ad4a75da57fa18bfcfaeb7fc601f1c8f6',1,'GpgFrontend::UI::KeyServerImportDialog']]], - ['set_5fmessage_1233',['set_message',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ab93fbf5e0626bffe398f5baa2bc00b1a',1,'GpgFrontend::UI::KeyServerImportDialog']]], - ['set_5fsignal_5fslot_1234',['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_1235',['set_status',['../classGpgFrontend_1_1GpgResultAnalyse.html#a7f13592b421c7b0d3853f15cece8d195',1,'GpgFrontend::GpgResultAnalyse']]], - ['setalgo_1236',['SetAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#adcd9c4f3e75f989810988e0bc81d401f',1,'GpgFrontend::GenKeyInfo']]], - ['setallowauthentication_1237',['SetAllowAuthentication',['../classGpgFrontend_1_1GenKeyInfo.html#aac51d251682ed1bc1090416ebfeba4de',1,'GpgFrontend::GenKeyInfo']]], - ['setallowcertification_1238',['SetAllowCertification',['../classGpgFrontend_1_1GenKeyInfo.html#ac5f52f74566618c71a29bdc5e70fce2e',1,'GpgFrontend::GenKeyInfo']]], - ['setallowencryption_1239',['SetAllowEncryption',['../classGpgFrontend_1_1GenKeyInfo.html#a965014232f6de22c6d33320231ca4454',1,'GpgFrontend::GenKeyInfo']]], - ['setallowsigning_1240',['SetAllowSigning',['../classGpgFrontend_1_1GenKeyInfo.html#a1a01518b24d40d95e187ef73f4dcd52a',1,'GpgFrontend::GenKeyInfo']]], - ['setchannel_1241',['SetChannel',['../classGpgFrontend_1_1ChannelObject.html#aa3b19cad6d873b314bba32a3dae85f09',1,'GpgFrontend::ChannelObject']]], - ['setchecked_1242',['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_1243',['SetColumnWidth',['../classGpgFrontend_1_1UI_1_1KeyList.html#aab3f4facfc850e7eeb917571ca89f4a5',1,'GpgFrontend::UI::KeyList']]], - ['setcomment_1244',['SetComment',['../classGpgFrontend_1_1GenKeyInfo.html#a947886456f5699241b1c1b9332e4b29e',1,'GpgFrontend::GenKeyInfo']]], - ['setcryptomenustatus_1245',['SetCryptoMenuStatus',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a85a98a1ec5418c110201980fa013d1fd',1,'GpgFrontend::UI::MainWindow']]], - ['setdoubleclickedaction_1246',['SetDoubleClickedAction',['../classGpgFrontend_1_1UI_1_1KeyList.html#a7d75246eee6368be295c9ab5fe5ef291',1,'GpgFrontend::UI::KeyList']]], - ['setemail_1247',['SetEmail',['../classGpgFrontend_1_1GenKeyInfo.html#a656c81d56f77350184f9a94db1a3ce05',1,'GpgFrontend::GenKeyInfo']]], - ['setexpire_1248',['SetExpire',['../classGpgFrontend_1_1GpgKeyManager.html#a1625abfbff168c476e76fa9425a6c37d',1,'GpgFrontend::GpgKeyManager::SetExpire()'],['../classGpgFrontend_1_1GpgKeyOpera.html#a12e6b05b23781861065d7e3243c9349e',1,'GpgFrontend::GpgKeyOpera::SetExpire()']]], - ['setexpiretime_1249',['SetExpireTime',['../classGpgFrontend_1_1GenKeyInfo.html#aa3bfeda7fc7c83dc8d48ee2b80780c3a',1,'GpgFrontend::GenKeyInfo']]], - ['setfilepath_1250',['SetFilePath',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aa9e82690824c82e7628ba4ace9d6e2fe',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['setfinishafterrun_1251',['SetFinishAfterRun',['../classGpgFrontend_1_1Thread_1_1Task.html#a689969e7d88ba7ad73a693a1b38aedd7',1,'GpgFrontend::Thread::Task']]], - ['setinfoboard_1252',['SetInfoBoard',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#ac936cfc8e1b3af65d0d71b74fb3f0b02',1,'GpgFrontend::UI::InfoBoardWidget']]], - ['setissubkey_1253',['SetIsSubKey',['../classGpgFrontend_1_1GenKeyInfo.html#acd9f7742b739e1db60bd50489690dec1',1,'GpgFrontend::GenKeyInfo']]], - ['setkeylength_1254',['SetKeyLength',['../classGpgFrontend_1_1GenKeyInfo.html#ae744395012e4dcb9734ad5a30aa8ed75',1,'GpgFrontend::GenKeyInfo']]], - ['setname_1255',['SetName',['../classGpgFrontend_1_1GenKeyInfo.html#a65ebc487e0e64c325f65474c812615f7',1,'GpgFrontend::GenKeyInfo']]], - ['setnonexpired_1256',['SetNonExpired',['../classGpgFrontend_1_1GenKeyInfo.html#aea247381c21896f5371bb813ca665329',1,'GpgFrontend::GenKeyInfo']]], - ['setnonpassphrase_1257',['SetNonPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#a864407216cbdbef9e7b35e6be694d3ef',1,'GpgFrontend::GenKeyInfo']]], - ['setobjectinchannel_1258',['SetObjectInChannel',['../classGpgFrontend_1_1SingletonStorage.html#ab0097bb648b2303d68a975c7cbea5a52',1,'GpgFrontend::SingletonStorage']]], - ['setpassphrase_1259',['SetPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#afe1760d4ead397f6096925290a38e1a4',1,'GpgFrontend::GenKeyInfo']]], - ['setpassphrasecb_1260',['SetPassphraseCb',['../classGpgFrontend_1_1GpgContext.html#a3399fc60086ff5010a089bff48bbc63c',1,'GpgFrontend::GpgContext']]], - ['setprimaryuid_1261',['SetPrimaryUID',['../classGpgFrontend_1_1GpgUIDOperator.html#acbdabec97df508382b0c9b1fffbf1dd5',1,'GpgFrontend::GpgUIDOperator']]], - ['setrtn_1262',['SetRTN',['../classGpgFrontend_1_1Thread_1_1Task.html#aa6d702417bdd6a88c447ed6a457fa098',1,'GpgFrontend::Thread::Task']]], - ['setsettings_1263',['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_1264',['SetSigners',['../classGpgFrontend_1_1GpgBasicOperator.html#ad6ea3596ba7d7543fb1b8233d09996df',1,'GpgFrontend::GpgBasicOperator']]], - ['settempcachevalue_1265',['SetTempCacheValue',['../classGpgFrontend_1_1CoreCommonUtil.html#abe5fa8731b0b672613505d59a576a3d7',1,'GpgFrontend::CoreCommonUtil']]], - ['settingsdialog_1266',['SettingsDialog',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#a1b7ddc7861d1b4b9dc3810ed98023ffc',1,'GpgFrontend::UI::SettingsDialog']]], - ['settingsobject_1267',['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_1268',['show_verify_details',['../namespaceGpgFrontend_1_1UI.html#a590a26051105940a6d6e0743b147e281',1,'GpgFrontend::UI']]], - ['showevent_1269',['showEvent',['../classGpgFrontend_1_1UI_1_1AboutDialog.html#ab799cd5e07b06a8e953d72105c0a1083',1,'GpgFrontend::UI::AboutDialog']]], - ['shownotificationwidget_1270',['ShowNotificationWidget',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#af5dfdfd48ef64cc46e524ec70a22fe3a',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['sign_1271',['Sign',['../classGpgFrontend_1_1GpgBasicOperator.html#a988d7e65e85fc7a578f26300332a65d3',1,'GpgFrontend::GpgBasicOperator']]], - ['signaldeeprestartneeded_1272',['SignalDeepRestartNeeded',['../classGpgFrontend_1_1UI_1_1GeneralTab.html#afc107d56f13000aa28436a5e26a0876b',1,'GpgFrontend::UI::GeneralTab']]], - ['signalkeydatabaserefreshdone_1273',['SignalKeyDatabaseRefreshDone',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a1abc83bba95579aa94d0870181991a28',1,'GpgFrontend::UI::CommonUtils']]], - ['signalkeyserverimportresult_1274',['SignalKeyServerImportResult',['../classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a6b2c07d193fb28a57b1738fa493b2b3f',1,'GpgFrontend::UI::KeyServerImportTask']]], - ['signalkeyserverlisttestresult_1275',['SignalKeyServerListTestResult',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a20f0147d670be7ab5c9d3051a900f508',1,'GpgFrontend::UI::ListedKeyServerTestTask']]], - ['signalkeyserversearchresult_1276',['SignalKeyServerSearchResult',['../classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#ae478130476c95a8b220c3b0e6a7b88b4',1,'GpgFrontend::UI::KeyServerSearchTask']]], - ['signalopenhelp_1277',['SignalOpenHelp',['../classGpgFrontend_1_1UI_1_1Wizard.html#a8b5f5ddb1e6470cbf6c87cc6400031fb',1,'GpgFrontend::UI::Wizard']]], - ['signalpathchanged_1278',['SignalPathChanged',['../classGpgFrontend_1_1UI_1_1FilePage.html#aec462d16a2097024a4ced24012b905a7',1,'GpgFrontend::UI::FilePage']]], - ['signalproxyconnectiontestresult_1279',['SignalProxyConnectionTestResult',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask.html#a31cd14d72c6c28c811c9183f118f5873',1,'GpgFrontend::UI::ProxyConnectionTestTask']]], - ['signalrefreshinfoboard_1280',['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_1281',['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_1282',['SignalReplyFromUpdateServer',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a5e752e01539ccfdc6bbe41a404ddaa95',1,'GpgFrontend::UI::UpdateTab']]], - ['signalrestartneeded_1283',['SignalRestartNeeded',['../classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html#a35a707865fbcc95b6261e382a6ff171c',1,'GpgFrontend::UI::GnuPGControllerDialog']]], - ['signalrestartneeded_1284',['signalRestartNeeded',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html#abff49b636449815a9ebff52f5c067712',1,'GpgFrontend::UI::AppearanceTab']]], - ['signalrestartneeded_1285',['SignalRestartNeeded',['../classGpgFrontend_1_1UI_1_1GeneralTab.html#aa88ccbda61728be6de0aa2d9b92e0b69',1,'GpgFrontend::UI::GeneralTab::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#af5ba6646af45d0d1d794bc52ee54b1b9',1,'GpgFrontend::UI::SettingsDialog::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#a26449a77844d9db69a543ff88f10e347',1,'GpgFrontend::UI::KeyserverTab::SignalRestartNeeded()']]], - ['signaltaskend_1286',['SignalTaskEnd',['../classGpgFrontend_1_1Thread_1_1Task.html#abbbb68bcac48b6c31d6fe8ee1572f151',1,'GpgFrontend::Thread::Task']]], - ['signaltaskrunnableend_1287',['SignalTaskRunnableEnd',['../classGpgFrontend_1_1Thread_1_1Task.html#a125b7e71f21dadf10618e30ee0386b12',1,'GpgFrontend::Thread::Task']]], - ['signaluibytesdisplayed_1288',['SignalUIBytesDisplayed',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#afd3749488fdd3d1c53446fb8c833f3f4',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['signalupgradeversion_1289',['SignalUpgradeVersion',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a36c5597674253348477d78ad6af380ab',1,'GpgFrontend::UI::VersionCheckTask']]], - ['signerspicker_1290',['SignersPicker',['../classGpgFrontend_1_1UI_1_1SignersPicker.html#a02c3ba737702894fc6d4ac1a1c543ccb',1,'GpgFrontend::UI::SignersPicker']]], - ['signfile_1291',['SignFile',['../classGpgFrontend_1_1GpgFileOpera.html#a350df1c07c054625c4755a78e6ca5ca8',1,'GpgFrontend::GpgFileOpera']]], - ['signkey_1292',['SignKey',['../classGpgFrontend_1_1GpgKeyManager.html#a12138780c53add7589f78f056019e5e0',1,'GpgFrontend::GpgKeyManager']]], - ['singletonfunctionobject_1293',['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_1294',['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_1295',['slot_add_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a821247d738457c4ee046162aad6728f9',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fadd_5fuid_5fresult_1296',['slot_add_uid_result',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a16f1ae88d6a417b614cfc6ae1852187c',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['slot_5fappend_5fselected_5fkeys_1297',['slot_append_selected_keys',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a76bf3784d751db78ed13bd9962e14472',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fauthentication_5fbox_5fchanged_1298',['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_1299',['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_1300',['slot_clean_double_line_breaks',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aea9274389c3b049793fe5aa5a6adf63c',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fcompress_5ffiles_1301',['slot_compress_files',['../classGpgFrontend_1_1UI_1_1FilePage.html#a250b1950f874c1d11549cd5c0ea9693f',1,'GpgFrontend::UI::FilePage']]], - ['slot_5fcopy_5fdefault_5fuid_5fto_5fclipboard_1302',['slot_copy_default_uid_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3982432b140738859415e487e2c5f5eb',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fcopy_5ffingerprint_1303',['slot_copy_fingerprint',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#af8b600fbd7cd0fbb5b6183403bf870b2',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['slot_5fcopy_5fkey_5fid_5fto_5fclipboard_1304',['slot_copy_key_id_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9e2ddb2135df42d76134bea168fbdce9',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fcopy_5fmail_5faddress_5fto_5fclipboard_1305',['slot_copy_mail_address_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af93d72eaf58326f1f9e926752c6b1fc6',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fcreate_5fnew_5fuid_1306',['slot_create_new_uid',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a4e115ce46a85c2f9e4e0e2427839fc7c',1,'GpgFrontend::UI::KeyNewUIDDialog']]], - ['slot_5fcut_5fpgp_5fheader_1307',['slot_cut_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7f5a88922d06bee977335fb4b5f1d86d',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fdecrypt_1308',['slot_decrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae2d89e2cc6c99ff0e16b396d2381f904',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fdecrypt_5fverify_1309',['slot_decrypt_verify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1d61ea803e6c825bd54f42ba9ae85919',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fdisable_5ftab_5factions_1310',['slot_disable_tab_actions',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a24a0b0d974fc5f8fdda60c128a82d957',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fdouble_5fclicked_1311',['slot_double_clicked',['../classGpgFrontend_1_1UI_1_1KeyList.html#a69e54f06d546d516a0dcdf1055b8028e',1,'GpgFrontend::UI::KeyList']]], - ['slot_5fencrypt_1312',['slot_encrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae11d01211c2914ecc148e13dd7de506e',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fencrypt_5fsign_1313',['slot_encrypt_sign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a304efe91afa31b32725caa00c27475a4',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fencryption_5fbox_5fchanged_1314',['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_1315',['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_1316',['slot_export_private_key',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a384f4250e58110da58c0e6996b42a8ab',1,'GpgFrontend::UI::KeyPairOperaTab']]], - ['slot_5ffile_5ftree_5fview_5fitem_5fclicked_1317',['slot_file_tree_view_item_clicked',['../classGpgFrontend_1_1UI_1_1FilePage.html#a676917817d6f519e043742d1d87f97f1',1,'GpgFrontend::UI::FilePage']]], - ['slot_5ffile_5ftree_5fview_5fitem_5fdouble_5fclicked_1318',['slot_file_tree_view_item_double_clicked',['../classGpgFrontend_1_1UI_1_1FilePage.html#ad3c54320bdafbbb2c06a20d6c7dea9d6',1,'GpgFrontend::UI::FilePage']]], - ['slot_5ffind_1319',['slot_find',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae28089efbd236708601470f30f26faaa',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fformat_5fgpg_5fheader_1320',['slot_format_gpg_header',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a45267bcfc8fc83851894061c0fe2a9c2',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['slot_5fimport_1321',['slot_import',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ac9c14bbc97945c94fd02c8e067ccab06',1,'GpgFrontend::UI::KeyServerImportDialog']]], - ['slot_5fimport_5ffinished_1322',['slot_import_finished',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a6f1c5238da7cd6f117bed8018469b37a',1,'GpgFrontend::UI::KeyServerImportDialog']]], - ['slot_5fimport_5fkey_5ffrom_5fedit_1323',['slot_import_key_from_edit',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a55926649e28a96318b89afba01b966bf',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5finsert_5ftext_1324',['slot_insert_text',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a184985104f23da8fdf2b9aaf7b27405b',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['slot_5fjump_5fpage_1325',['slot_jump_page',['../classGpgFrontend_1_1UI_1_1ChoosePage.html#af0d7890fe65385b7785719b9cff0718b',1,'GpgFrontend::UI::ChoosePage']]], - ['slot_5fkey_5fgen_5faccept_1326',['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_1327',['slot_non_expired_checked',['../classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#adde2b33bd17f521f0630702987b1d274',1,'GpgFrontend::UI::KeySetExpireDateDialog']]], - ['slot_5fopen_5ffile_5ftab_1328',['slot_open_file_tab',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a29a811d4d440c79c1bd2cc2bb40cdf7e',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fopen_5fkey_5fmanagement_1329',['slot_open_key_management',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a16ddebec90a4bd0d13baa9d972c3445f',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fopen_5fsettings_5fdialog_1330',['slot_open_settings_dialog',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a874b505fbc1046f579a736683f5a7f65',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fopen_5furl_1331',['slot_open_url',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a51ff99077a75507365307f5dd783df99',1,'GpgFrontend::UI::HelpPage']]], - ['slot_5fprocess_5fnetwork_5freply_1332',['slot_process_network_reply',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#af9350e0a8d5993e5be0a5478fcb161be',1,'GpgFrontend::UI::ListedKeyServerTestTask']]], - ['slot_5fremove_5ftab_1333',['slot_remove_tab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a12f65fbc4984c266a5df4505ecde7c42',1,'GpgFrontend::UI::TextEdit']]], - ['slot_5fsave_5fstatus_5fto_5fcache_5ffor_5frevovery_1334',['slot_save_status_to_cache_for_revovery',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a1bf57ebe1e32b12c48bb633b7dd7a4f1',1,'GpgFrontend::UI::TextEdit']]], - ['slot_5fset_5frestart_5fneeded_1335',['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_1336',['slot_show_key_details',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a033d448541b44fa48b76dec828a4eb0e',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fshow_5fversion_5fstatus_1337',['slot_show_version_status',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a1003bd969ecbc5deba940e39436968f4',1,'GpgFrontend::UI::UpdateTab']]], - ['slot_5fsign_1338',['slot_sign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3f3d03b0ec22385bee559fbd2aeb881b',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fsign_5fkey_1339',['slot_sign_key',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#a82f6bf641ff3b64341a0bdcf76571c43',1,'GpgFrontend::UI::KeyUIDSignDialog']]], - ['slot_5fsigning_5fbox_5fchanged_1340',['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_1341',['slot_start_wizard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aabf3ddf6b624790369f164b4889c95be',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fupdate_5fkey_5fstatus_1342',['slot_update_key_status',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#ab4ac26378d6a07757720163eb4b1cb0e',1,'GpgFrontend::UI::CommonUtils']]], - ['slot_5fupload_5fkey_5fto_5fserver_1343',['slot_upload_key_to_server',['../classGpgFrontend_1_1UI_1_1KeyUploadDialog.html#a0f724649ca953b888f07d69c97fe45b6',1,'GpgFrontend::UI::KeyUploadDialog']]], - ['slot_5fverify_1344',['slot_verify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa9c986dd95984811479ea93230c74b5d',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fversion_5fupgrade_1345',['slot_version_upgrade',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a48368c77af7b1f4cb632870b8d914a28',1,'GpgFrontend::UI::MainWindow']]], - ['slotclosetab_1346',['SlotCloseTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa21659aa7acba98dfd6286d69e00ab9b',1,'GpgFrontend::UI::TextEdit']]], - ['slotcopy_1347',['SlotCopy',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3599bd01636a873cf3437ab6b9d38780',1,'GpgFrontend::UI::TextEdit']]], - ['slotcurpagefiletreeview_1348',['SlotCurPageFileTreeView',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a72014409d407c161b048e07c061b4cf9',1,'GpgFrontend::UI::TextEdit']]], - ['slotcurpagetextedit_1349',['SlotCurPageTextEdit',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a48351dc1529da3b8da311f65b735b5f1',1,'GpgFrontend::UI::TextEdit']]], - ['slotcut_1350',['SlotCut',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae1e710c6722910b8d35df97aaabb3162',1,'GpgFrontend::UI::TextEdit']]], - ['slotexecutecommand_1351',['SlotExecuteCommand',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a95cd625a2e0e74ee4d564843c6d16791',1,'GpgFrontend::UI::CommonUtils']]], - ['slotexecutegpgcommand_1352',['SlotExecuteGpgCommand',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#afc845c1c37487c99f78d8e66f6874f6d',1,'GpgFrontend::UI::CommonUtils']]], - ['slotfiledecrypt_1353',['SlotFileDecrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0a6d0618f2835a6dcae707a4ca770a48',1,'GpgFrontend::UI::MainWindow']]], - ['slotfiledecryptverify_1354',['SlotFileDecryptVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab23c7e67dd1f5295b3c49ad79dfd5919',1,'GpgFrontend::UI::MainWindow']]], - ['slotfileencrypt_1355',['SlotFileEncrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9ec699536a35a37961a8c6da1e231ae3',1,'GpgFrontend::UI::MainWindow']]], - ['slotfileencryptsign_1356',['SlotFileEncryptSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a25a2e4017d77cffc8362bde9606fad30',1,'GpgFrontend::UI::MainWindow']]], - ['slotfilesign_1357',['SlotFileSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8bcdcbe678b8dc0837fffda2ebfe79bf',1,'GpgFrontend::UI::MainWindow']]], - ['slotfileverify_1358',['SlotFileVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9879061cfd321c6757c77f75d46dc7d8',1,'GpgFrontend::UI::MainWindow']]], - ['slotfilltexteditwithtext_1359',['SlotFillTextEditWithText',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af466ec2b8ab3f695d206efc0574bbe20',1,'GpgFrontend::UI::TextEdit']]], - ['slotimport_1360',['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_1361',['SlotImportKeyFromClipboard',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a0c8bf56fc5371cd2c5e9d2a0f67bf72a',1,'GpgFrontend::UI::CommonUtils']]], - ['slotimportkeyfromfile_1362',['SlotImportKeyFromFile',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a057526790f6b2f6288c3a35322c34d8d',1,'GpgFrontend::UI::CommonUtils']]], - ['slotimportkeyfromkeyserver_1363',['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_1364',['SlotImportKeys',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a3bc26cc1e0f00f0ce2f95c0b6c8778d8',1,'GpgFrontend::UI::CommonUtils']]], - ['slotnewfiletab_1365',['SlotNewFileTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae22ecadf31648f424eb8ab86bd28ef39',1,'GpgFrontend::UI::TextEdit']]], - ['slotnewhelptab_1366',['slotNewHelpTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3c17fdf3abf9c4fb6ce35cfb8f0f8fc4',1,'GpgFrontend::UI::TextEdit']]], - ['slotnewtab_1367',['SlotNewTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a57a46ab5595622ae0b7bceef7d56bd7c',1,'GpgFrontend::UI::TextEdit']]], - ['slotopen_1368',['SlotOpen',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a15335d38187ddf580b7200d856768cfb',1,'GpgFrontend::UI::TextEdit']]], - ['slotopenfile_1369',['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_1370',['SlotPaste',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa2230418dc8f72c400f5a90082a983c9',1,'GpgFrontend::UI::TextEdit']]], - ['slotprint_1371',['SlotPrint',['../classGpgFrontend_1_1UI_1_1TextEdit.html#adca2bbfa746b5598f2a4f74026b84224',1,'GpgFrontend::UI::TextEdit']]], - ['slotquote_1372',['SlotQuote',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6a02fce9dc4039c982d6dd19231517ee',1,'GpgFrontend::UI::TextEdit']]], - ['slotredo_1373',['SlotRedo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae2b3bf422789d56087face98b6a9e929',1,'GpgFrontend::UI::TextEdit']]], - ['slotrefresh_1374',['SlotRefresh',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a68f984815100f4ce281b9794f193e516',1,'GpgFrontend::UI::InfoBoardWidget']]], - ['slotsave_1375',['SlotSave',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ace0b8f4c161db9f4f5db5ecbfd7a91c0',1,'GpgFrontend::UI::TextEdit']]], - ['slotsaveas_1376',['SlotSaveAs',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a02fa44ba0c56f3f6ae125f8490faf254',1,'GpgFrontend::UI::TextEdit']]], - ['slotselectall_1377',['SlotSelectAll',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6c814253dfc061bfdae0fa71c6196c55',1,'GpgFrontend::UI::TextEdit']]], - ['slotsetrestartneeded_1378',['SlotSetRestartNeeded',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a276e843e2f5eda8934fb350fb6f89327',1,'GpgFrontend::UI::MainWindow']]], - ['slotshowmodified_1379',['SlotShowModified',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ab24adc1adb3b9b29469992e4c444436e',1,'GpgFrontend::UI::TextEdit']]], - ['slotswitchtabdown_1380',['SlotSwitchTabDown',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a576e06390e65576465297d2ab8d7d474',1,'GpgFrontend::UI::TextEdit']]], - ['slotswitchtabup_1381',['SlotSwitchTabUp',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af1e364b513f566c743a5d36c19098762',1,'GpgFrontend::UI::TextEdit']]], - ['slotundo_1382',['SlotUndo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a4a81e69f6dc74ea649ca9a2358342fd5',1,'GpgFrontend::UI::TextEdit']]], - ['startdirmngr_1383',['StartDirmngr',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a46085a11235894deccd312fc259d5078',1,'GpgFrontend::GpgAdvancedOperator']]], - ['startgpgagent_1384',['StartGpgAgent',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a07c32ba25cf6153fbc8ee585c4ba377c',1,'GpgFrontend::GpgAdvancedOperator']]], - ['startkeyboxd_1385',['StartKeyBoxd',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a9313410359ed9cff9ee66fa9b4b095ee',1,'GpgFrontend::GpgAdvancedOperator']]], - ['stripped_5fname_1386',['stripped_name',['../classGpgFrontend_1_1UI_1_1TextEdit.html#afb9b7a7d88154d774b3d727d8e640cbb',1,'GpgFrontend::UI::TextEdit']]], - ['subkeygeneratedialog_1387',['SubkeyGenerateDialog',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a8f9d8baa7b576a4aa857818b87c26bcd',1,'GpgFrontend::UI::SubkeyGenerateDialog']]], - ['switch_5fui_5fenabled_1388',['switch_ui_enabled',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#ae3d97948f205e84f0604d4da634a4513',1,'GpgFrontend::UI::NetworkTab']]], - ['switch_5fui_5fproxy_5ftype_1389',['switch_ui_proxy_type',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#a1b0297158f13daec77645c88e5a8adcd',1,'GpgFrontend::UI::NetworkTab']]], - ['syncsettings_1390',['SyncSettings',['../classGpgFrontend_1_1GlobalSettingStation.html#ac061ac8e5308f67ea52b98888bbb2e8d',1,'GpgFrontend::GlobalSettingStation']]] + ['save_5ffile_1230',['save_file',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a66b6f6633e7ac71e5fe8b7814a81cadf',1,'GpgFrontend::UI::TextEdit']]], + ['save_5fsettings_1231',['save_settings',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7a4b6490038470a8849231e48282da98',1,'GpgFrontend::UI::MainWindow']]], + ['savecache_1232',['SaveCache',['../classGpgFrontend_1_1CacheManager.html#a3cbc3238638dcd8b4722bfdf560c73fe',1,'GpgFrontend::CacheManager']]], + ['set_5fbackground_1233',['set_background',['../classGpgFrontend_1_1UI_1_1FindWidget.html#a0c531f2c673caed29225a323e750205f',1,'GpgFrontend::UI::FindWidget']]], + ['set_5floading_1234',['set_loading',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ad4a75da57fa18bfcfaeb7fc601f1c8f6',1,'GpgFrontend::UI::KeyServerImportDialog']]], + ['set_5fmessage_1235',['set_message',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ab93fbf5e0626bffe398f5baa2bc00b1a',1,'GpgFrontend::UI::KeyServerImportDialog']]], + ['set_5fsignal_5fslot_1236',['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_1237',['set_status',['../classGpgFrontend_1_1GpgResultAnalyse.html#a7f13592b421c7b0d3853f15cece8d195',1,'GpgFrontend::GpgResultAnalyse']]], + ['setalgo_1238',['SetAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#adcd9c4f3e75f989810988e0bc81d401f',1,'GpgFrontend::GenKeyInfo']]], + ['setallowauthentication_1239',['SetAllowAuthentication',['../classGpgFrontend_1_1GenKeyInfo.html#aac51d251682ed1bc1090416ebfeba4de',1,'GpgFrontend::GenKeyInfo']]], + ['setallowcertification_1240',['SetAllowCertification',['../classGpgFrontend_1_1GenKeyInfo.html#ac5f52f74566618c71a29bdc5e70fce2e',1,'GpgFrontend::GenKeyInfo']]], + ['setallowencryption_1241',['SetAllowEncryption',['../classGpgFrontend_1_1GenKeyInfo.html#a965014232f6de22c6d33320231ca4454',1,'GpgFrontend::GenKeyInfo']]], + ['setallowsigning_1242',['SetAllowSigning',['../classGpgFrontend_1_1GenKeyInfo.html#a1a01518b24d40d95e187ef73f4dcd52a',1,'GpgFrontend::GenKeyInfo']]], + ['setchannel_1243',['SetChannel',['../classGpgFrontend_1_1ChannelObject.html#aa3b19cad6d873b314bba32a3dae85f09',1,'GpgFrontend::ChannelObject']]], + ['setchecked_1244',['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_1245',['SetColumnWidth',['../classGpgFrontend_1_1UI_1_1KeyList.html#aab3f4facfc850e7eeb917571ca89f4a5',1,'GpgFrontend::UI::KeyList']]], + ['setcomment_1246',['SetComment',['../classGpgFrontend_1_1GenKeyInfo.html#a947886456f5699241b1c1b9332e4b29e',1,'GpgFrontend::GenKeyInfo']]], + ['setcryptomenustatus_1247',['SetCryptoMenuStatus',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a85a98a1ec5418c110201980fa013d1fd',1,'GpgFrontend::UI::MainWindow']]], + ['setdoubleclickedaction_1248',['SetDoubleClickedAction',['../classGpgFrontend_1_1UI_1_1KeyList.html#a7d75246eee6368be295c9ab5fe5ef291',1,'GpgFrontend::UI::KeyList']]], + ['setemail_1249',['SetEmail',['../classGpgFrontend_1_1GenKeyInfo.html#a656c81d56f77350184f9a94db1a3ce05',1,'GpgFrontend::GenKeyInfo']]], + ['setexpire_1250',['SetExpire',['../classGpgFrontend_1_1GpgKeyManager.html#a1625abfbff168c476e76fa9425a6c37d',1,'GpgFrontend::GpgKeyManager::SetExpire()'],['../classGpgFrontend_1_1GpgKeyOpera.html#a12e6b05b23781861065d7e3243c9349e',1,'GpgFrontend::GpgKeyOpera::SetExpire()']]], + ['setexpiretime_1251',['SetExpireTime',['../classGpgFrontend_1_1GenKeyInfo.html#aa3bfeda7fc7c83dc8d48ee2b80780c3a',1,'GpgFrontend::GenKeyInfo']]], + ['setfilepath_1252',['SetFilePath',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aa9e82690824c82e7628ba4ace9d6e2fe',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['setfinishafterrun_1253',['SetFinishAfterRun',['../classGpgFrontend_1_1Thread_1_1Task.html#a689969e7d88ba7ad73a693a1b38aedd7',1,'GpgFrontend::Thread::Task']]], + ['setinfoboard_1254',['SetInfoBoard',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#ac936cfc8e1b3af65d0d71b74fb3f0b02',1,'GpgFrontend::UI::InfoBoardWidget']]], + ['setissubkey_1255',['SetIsSubKey',['../classGpgFrontend_1_1GenKeyInfo.html#acd9f7742b739e1db60bd50489690dec1',1,'GpgFrontend::GenKeyInfo']]], + ['setkeylength_1256',['SetKeyLength',['../classGpgFrontend_1_1GenKeyInfo.html#ae744395012e4dcb9734ad5a30aa8ed75',1,'GpgFrontend::GenKeyInfo']]], + ['setname_1257',['SetName',['../classGpgFrontend_1_1GenKeyInfo.html#a65ebc487e0e64c325f65474c812615f7',1,'GpgFrontend::GenKeyInfo']]], + ['setnonexpired_1258',['SetNonExpired',['../classGpgFrontend_1_1GenKeyInfo.html#aea247381c21896f5371bb813ca665329',1,'GpgFrontend::GenKeyInfo']]], + ['setnonpassphrase_1259',['SetNonPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#a864407216cbdbef9e7b35e6be694d3ef',1,'GpgFrontend::GenKeyInfo']]], + ['setobjectinchannel_1260',['SetObjectInChannel',['../classGpgFrontend_1_1SingletonStorage.html#ab0097bb648b2303d68a975c7cbea5a52',1,'GpgFrontend::SingletonStorage']]], + ['setpassphrase_1261',['SetPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#afe1760d4ead397f6096925290a38e1a4',1,'GpgFrontend::GenKeyInfo']]], + ['setpassphrasecb_1262',['SetPassphraseCb',['../classGpgFrontend_1_1GpgContext.html#a3399fc60086ff5010a089bff48bbc63c',1,'GpgFrontend::GpgContext']]], + ['setprimaryuid_1263',['SetPrimaryUID',['../classGpgFrontend_1_1GpgUIDOperator.html#acbdabec97df508382b0c9b1fffbf1dd5',1,'GpgFrontend::GpgUIDOperator']]], + ['setrtn_1264',['SetRTN',['../classGpgFrontend_1_1Thread_1_1Task.html#aa6d702417bdd6a88c447ed6a457fa098',1,'GpgFrontend::Thread::Task']]], + ['setsettings_1265',['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_1266',['SetSigners',['../classGpgFrontend_1_1GpgBasicOperator.html#ad6ea3596ba7d7543fb1b8233d09996df',1,'GpgFrontend::GpgBasicOperator']]], + ['settempcachevalue_1267',['SetTempCacheValue',['../classGpgFrontend_1_1CoreCommonUtil.html#abe5fa8731b0b672613505d59a576a3d7',1,'GpgFrontend::CoreCommonUtil']]], + ['settingsdialog_1268',['SettingsDialog',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#a1b7ddc7861d1b4b9dc3810ed98023ffc',1,'GpgFrontend::UI::SettingsDialog']]], + ['settingsobject_1269',['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_1270',['show_verify_details',['../namespaceGpgFrontend_1_1UI.html#a590a26051105940a6d6e0743b147e281',1,'GpgFrontend::UI']]], + ['showevent_1271',['showEvent',['../classGpgFrontend_1_1UI_1_1AboutDialog.html#ab799cd5e07b06a8e953d72105c0a1083',1,'GpgFrontend::UI::AboutDialog']]], + ['shownotificationwidget_1272',['ShowNotificationWidget',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#af5dfdfd48ef64cc46e524ec70a22fe3a',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['sign_1273',['Sign',['../classGpgFrontend_1_1GpgBasicOperator.html#a988d7e65e85fc7a578f26300332a65d3',1,'GpgFrontend::GpgBasicOperator']]], + ['signaldeeprestartneeded_1274',['SignalDeepRestartNeeded',['../classGpgFrontend_1_1UI_1_1GeneralTab.html#afc107d56f13000aa28436a5e26a0876b',1,'GpgFrontend::UI::GeneralTab']]], + ['signalkeydatabaserefreshdone_1275',['SignalKeyDatabaseRefreshDone',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a1abc83bba95579aa94d0870181991a28',1,'GpgFrontend::UI::CommonUtils']]], + ['signalkeyserverimportresult_1276',['SignalKeyServerImportResult',['../classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a6b2c07d193fb28a57b1738fa493b2b3f',1,'GpgFrontend::UI::KeyServerImportTask']]], + ['signalkeyserverlisttestresult_1277',['SignalKeyServerListTestResult',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a20f0147d670be7ab5c9d3051a900f508',1,'GpgFrontend::UI::ListedKeyServerTestTask']]], + ['signalkeyserversearchresult_1278',['SignalKeyServerSearchResult',['../classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#ae478130476c95a8b220c3b0e6a7b88b4',1,'GpgFrontend::UI::KeyServerSearchTask']]], + ['signalopenhelp_1279',['SignalOpenHelp',['../classGpgFrontend_1_1UI_1_1Wizard.html#a8b5f5ddb1e6470cbf6c87cc6400031fb',1,'GpgFrontend::UI::Wizard']]], + ['signalpathchanged_1280',['SignalPathChanged',['../classGpgFrontend_1_1UI_1_1FilePage.html#aec462d16a2097024a4ced24012b905a7',1,'GpgFrontend::UI::FilePage']]], + ['signalproxyconnectiontestresult_1281',['SignalProxyConnectionTestResult',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask.html#a31cd14d72c6c28c811c9183f118f5873',1,'GpgFrontend::UI::ProxyConnectionTestTask']]], + ['signalrefreshinfoboard_1282',['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_1283',['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_1284',['SignalReplyFromUpdateServer',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a5e752e01539ccfdc6bbe41a404ddaa95',1,'GpgFrontend::UI::UpdateTab']]], + ['signalrestartneeded_1285',['signalRestartNeeded',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html#abff49b636449815a9ebff52f5c067712',1,'GpgFrontend::UI::AppearanceTab']]], + ['signalrestartneeded_1286',['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_1287',['SignalTaskEnd',['../classGpgFrontend_1_1Thread_1_1Task.html#abbbb68bcac48b6c31d6fe8ee1572f151',1,'GpgFrontend::Thread::Task']]], + ['signaltaskrunnableend_1288',['SignalTaskRunnableEnd',['../classGpgFrontend_1_1Thread_1_1Task.html#a125b7e71f21dadf10618e30ee0386b12',1,'GpgFrontend::Thread::Task']]], + ['signaluibytesdisplayed_1289',['SignalUIBytesDisplayed',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#afd3749488fdd3d1c53446fb8c833f3f4',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['signalupgradeversion_1290',['SignalUpgradeVersion',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a36c5597674253348477d78ad6af380ab',1,'GpgFrontend::UI::VersionCheckTask']]], + ['signerspicker_1291',['SignersPicker',['../classGpgFrontend_1_1UI_1_1SignersPicker.html#a02c3ba737702894fc6d4ac1a1c543ccb',1,'GpgFrontend::UI::SignersPicker']]], + ['signfile_1292',['SignFile',['../classGpgFrontend_1_1GpgFileOpera.html#a350df1c07c054625c4755a78e6ca5ca8',1,'GpgFrontend::GpgFileOpera']]], + ['signkey_1293',['SignKey',['../classGpgFrontend_1_1GpgKeyManager.html#a12138780c53add7589f78f056019e5e0',1,'GpgFrontend::GpgKeyManager']]], + ['singletonfunctionobject_1294',['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_1295',['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_1296',['slot_add_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a821247d738457c4ee046162aad6728f9',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fadd_5fuid_5fresult_1297',['slot_add_uid_result',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a16f1ae88d6a417b614cfc6ae1852187c',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['slot_5fappend_5fselected_5fkeys_1298',['slot_append_selected_keys',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a76bf3784d751db78ed13bd9962e14472',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fauthentication_5fbox_5fchanged_1299',['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_1300',['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_1301',['slot_clean_double_line_breaks',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aea9274389c3b049793fe5aa5a6adf63c',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fcompress_5ffiles_1302',['slot_compress_files',['../classGpgFrontend_1_1UI_1_1FilePage.html#a250b1950f874c1d11549cd5c0ea9693f',1,'GpgFrontend::UI::FilePage']]], + ['slot_5fcopy_5fdefault_5fuid_5fto_5fclipboard_1303',['slot_copy_default_uid_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3982432b140738859415e487e2c5f5eb',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fcopy_5ffingerprint_1304',['slot_copy_fingerprint',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#af8b600fbd7cd0fbb5b6183403bf870b2',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['slot_5fcopy_5fkey_5fid_5fto_5fclipboard_1305',['slot_copy_key_id_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9e2ddb2135df42d76134bea168fbdce9',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fcopy_5fmail_5faddress_5fto_5fclipboard_1306',['slot_copy_mail_address_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af93d72eaf58326f1f9e926752c6b1fc6',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fcreate_5fnew_5fuid_1307',['slot_create_new_uid',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a4e115ce46a85c2f9e4e0e2427839fc7c',1,'GpgFrontend::UI::KeyNewUIDDialog']]], + ['slot_5fcut_5fpgp_5fheader_1308',['slot_cut_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7f5a88922d06bee977335fb4b5f1d86d',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fdecrypt_1309',['slot_decrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae2d89e2cc6c99ff0e16b396d2381f904',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fdecrypt_5fverify_1310',['slot_decrypt_verify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1d61ea803e6c825bd54f42ba9ae85919',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fdisable_5ftab_5factions_1311',['slot_disable_tab_actions',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a24a0b0d974fc5f8fdda60c128a82d957',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fdouble_5fclicked_1312',['slot_double_clicked',['../classGpgFrontend_1_1UI_1_1KeyList.html#a69e54f06d546d516a0dcdf1055b8028e',1,'GpgFrontend::UI::KeyList']]], + ['slot_5fencrypt_1313',['slot_encrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae11d01211c2914ecc148e13dd7de506e',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fencrypt_5fsign_1314',['slot_encrypt_sign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a304efe91afa31b32725caa00c27475a4',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fencryption_5fbox_5fchanged_1315',['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_1316',['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_1317',['slot_export_private_key',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a384f4250e58110da58c0e6996b42a8ab',1,'GpgFrontend::UI::KeyPairOperaTab']]], + ['slot_5ffile_5ftree_5fview_5fitem_5fclicked_1318',['slot_file_tree_view_item_clicked',['../classGpgFrontend_1_1UI_1_1FilePage.html#a676917817d6f519e043742d1d87f97f1',1,'GpgFrontend::UI::FilePage']]], + ['slot_5ffile_5ftree_5fview_5fitem_5fdouble_5fclicked_1319',['slot_file_tree_view_item_double_clicked',['../classGpgFrontend_1_1UI_1_1FilePage.html#ad3c54320bdafbbb2c06a20d6c7dea9d6',1,'GpgFrontend::UI::FilePage']]], + ['slot_5ffind_1320',['slot_find',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae28089efbd236708601470f30f26faaa',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fformat_5fgpg_5fheader_1321',['slot_format_gpg_header',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a45267bcfc8fc83851894061c0fe2a9c2',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['slot_5fimport_1322',['slot_import',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ac9c14bbc97945c94fd02c8e067ccab06',1,'GpgFrontend::UI::KeyServerImportDialog']]], + ['slot_5fimport_5ffinished_1323',['slot_import_finished',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a6f1c5238da7cd6f117bed8018469b37a',1,'GpgFrontend::UI::KeyServerImportDialog']]], + ['slot_5fimport_5fkey_5ffrom_5fedit_1324',['slot_import_key_from_edit',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a55926649e28a96318b89afba01b966bf',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5finsert_5ftext_1325',['slot_insert_text',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a184985104f23da8fdf2b9aaf7b27405b',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['slot_5fjump_5fpage_1326',['slot_jump_page',['../classGpgFrontend_1_1UI_1_1ChoosePage.html#af0d7890fe65385b7785719b9cff0718b',1,'GpgFrontend::UI::ChoosePage']]], + ['slot_5fkey_5fgen_5faccept_1327',['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_1328',['slot_non_expired_checked',['../classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#adde2b33bd17f521f0630702987b1d274',1,'GpgFrontend::UI::KeySetExpireDateDialog']]], + ['slot_5fopen_5ffile_5ftab_1329',['slot_open_file_tab',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a29a811d4d440c79c1bd2cc2bb40cdf7e',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fopen_5fkey_5fmanagement_1330',['slot_open_key_management',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a16ddebec90a4bd0d13baa9d972c3445f',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fopen_5fsettings_5fdialog_1331',['slot_open_settings_dialog',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a874b505fbc1046f579a736683f5a7f65',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fopen_5furl_1332',['slot_open_url',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a51ff99077a75507365307f5dd783df99',1,'GpgFrontend::UI::HelpPage']]], + ['slot_5fprocess_5fnetwork_5freply_1333',['slot_process_network_reply',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#af9350e0a8d5993e5be0a5478fcb161be',1,'GpgFrontend::UI::ListedKeyServerTestTask']]], + ['slot_5fremove_5ftab_1334',['slot_remove_tab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a12f65fbc4984c266a5df4505ecde7c42',1,'GpgFrontend::UI::TextEdit']]], + ['slot_5fsave_5fstatus_5fto_5fcache_5ffor_5frevovery_1335',['slot_save_status_to_cache_for_revovery',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a1bf57ebe1e32b12c48bb633b7dd7a4f1',1,'GpgFrontend::UI::TextEdit']]], + ['slot_5fset_5frestart_5fneeded_1336',['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_1337',['slot_show_key_details',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a033d448541b44fa48b76dec828a4eb0e',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fshow_5fversion_5fstatus_1338',['slot_show_version_status',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a1003bd969ecbc5deba940e39436968f4',1,'GpgFrontend::UI::UpdateTab']]], + ['slot_5fsign_1339',['slot_sign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3f3d03b0ec22385bee559fbd2aeb881b',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fsign_5fkey_1340',['slot_sign_key',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#a82f6bf641ff3b64341a0bdcf76571c43',1,'GpgFrontend::UI::KeyUIDSignDialog']]], + ['slot_5fsigning_5fbox_5fchanged_1341',['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_1342',['slot_start_wizard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aabf3ddf6b624790369f164b4889c95be',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fupdate_5fkey_5fstatus_1343',['slot_update_key_status',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#ab4ac26378d6a07757720163eb4b1cb0e',1,'GpgFrontend::UI::CommonUtils']]], + ['slot_5fupload_5fkey_5fto_5fserver_1344',['slot_upload_key_to_server',['../classGpgFrontend_1_1UI_1_1KeyUploadDialog.html#a0f724649ca953b888f07d69c97fe45b6',1,'GpgFrontend::UI::KeyUploadDialog']]], + ['slot_5fverify_1345',['slot_verify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa9c986dd95984811479ea93230c74b5d',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fversion_5fupgrade_1346',['slot_version_upgrade',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a48368c77af7b1f4cb632870b8d914a28',1,'GpgFrontend::UI::MainWindow']]], + ['slotclosetab_1347',['SlotCloseTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa21659aa7acba98dfd6286d69e00ab9b',1,'GpgFrontend::UI::TextEdit']]], + ['slotcopy_1348',['SlotCopy',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3599bd01636a873cf3437ab6b9d38780',1,'GpgFrontend::UI::TextEdit']]], + ['slotcurpagefiletreeview_1349',['SlotCurPageFileTreeView',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a72014409d407c161b048e07c061b4cf9',1,'GpgFrontend::UI::TextEdit']]], + ['slotcurpagetextedit_1350',['SlotCurPageTextEdit',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a48351dc1529da3b8da311f65b735b5f1',1,'GpgFrontend::UI::TextEdit']]], + ['slotcut_1351',['SlotCut',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae1e710c6722910b8d35df97aaabb3162',1,'GpgFrontend::UI::TextEdit']]], + ['slotexecutecommand_1352',['SlotExecuteCommand',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a95cd625a2e0e74ee4d564843c6d16791',1,'GpgFrontend::UI::CommonUtils']]], + ['slotexecutegpgcommand_1353',['SlotExecuteGpgCommand',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#afc845c1c37487c99f78d8e66f6874f6d',1,'GpgFrontend::UI::CommonUtils']]], + ['slotfiledecrypt_1354',['SlotFileDecrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0a6d0618f2835a6dcae707a4ca770a48',1,'GpgFrontend::UI::MainWindow']]], + ['slotfiledecryptverify_1355',['SlotFileDecryptVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab23c7e67dd1f5295b3c49ad79dfd5919',1,'GpgFrontend::UI::MainWindow']]], + ['slotfileencrypt_1356',['SlotFileEncrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9ec699536a35a37961a8c6da1e231ae3',1,'GpgFrontend::UI::MainWindow']]], + ['slotfileencryptsign_1357',['SlotFileEncryptSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a25a2e4017d77cffc8362bde9606fad30',1,'GpgFrontend::UI::MainWindow']]], + ['slotfilesign_1358',['SlotFileSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8bcdcbe678b8dc0837fffda2ebfe79bf',1,'GpgFrontend::UI::MainWindow']]], + ['slotfileverify_1359',['SlotFileVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9879061cfd321c6757c77f75d46dc7d8',1,'GpgFrontend::UI::MainWindow']]], + ['slotfilltexteditwithtext_1360',['SlotFillTextEditWithText',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af466ec2b8ab3f695d206efc0574bbe20',1,'GpgFrontend::UI::TextEdit']]], + ['slotimport_1361',['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_1362',['SlotImportKeyFromClipboard',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a0c8bf56fc5371cd2c5e9d2a0f67bf72a',1,'GpgFrontend::UI::CommonUtils']]], + ['slotimportkeyfromfile_1363',['SlotImportKeyFromFile',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a057526790f6b2f6288c3a35322c34d8d',1,'GpgFrontend::UI::CommonUtils']]], + ['slotimportkeyfromkeyserver_1364',['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_1365',['SlotImportKeys',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a3bc26cc1e0f00f0ce2f95c0b6c8778d8',1,'GpgFrontend::UI::CommonUtils']]], + ['slotnewfiletab_1366',['SlotNewFileTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae22ecadf31648f424eb8ab86bd28ef39',1,'GpgFrontend::UI::TextEdit']]], + ['slotnewhelptab_1367',['slotNewHelpTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3c17fdf3abf9c4fb6ce35cfb8f0f8fc4',1,'GpgFrontend::UI::TextEdit']]], + ['slotnewtab_1368',['SlotNewTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a57a46ab5595622ae0b7bceef7d56bd7c',1,'GpgFrontend::UI::TextEdit']]], + ['slotopen_1369',['SlotOpen',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a15335d38187ddf580b7200d856768cfb',1,'GpgFrontend::UI::TextEdit']]], + ['slotopenfile_1370',['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_1371',['SlotPaste',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa2230418dc8f72c400f5a90082a983c9',1,'GpgFrontend::UI::TextEdit']]], + ['slotprint_1372',['SlotPrint',['../classGpgFrontend_1_1UI_1_1TextEdit.html#adca2bbfa746b5598f2a4f74026b84224',1,'GpgFrontend::UI::TextEdit']]], + ['slotquote_1373',['SlotQuote',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6a02fce9dc4039c982d6dd19231517ee',1,'GpgFrontend::UI::TextEdit']]], + ['slotredo_1374',['SlotRedo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae2b3bf422789d56087face98b6a9e929',1,'GpgFrontend::UI::TextEdit']]], + ['slotrefresh_1375',['SlotRefresh',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a68f984815100f4ce281b9794f193e516',1,'GpgFrontend::UI::InfoBoardWidget']]], + ['slotsave_1376',['SlotSave',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ace0b8f4c161db9f4f5db5ecbfd7a91c0',1,'GpgFrontend::UI::TextEdit']]], + ['slotsaveas_1377',['SlotSaveAs',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a02fa44ba0c56f3f6ae125f8490faf254',1,'GpgFrontend::UI::TextEdit']]], + ['slotselectall_1378',['SlotSelectAll',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6c814253dfc061bfdae0fa71c6196c55',1,'GpgFrontend::UI::TextEdit']]], + ['slotsetrestartneeded_1379',['SlotSetRestartNeeded',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a276e843e2f5eda8934fb350fb6f89327',1,'GpgFrontend::UI::MainWindow']]], + ['slotshowmodified_1380',['SlotShowModified',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ab24adc1adb3b9b29469992e4c444436e',1,'GpgFrontend::UI::TextEdit']]], + ['slotswitchtabdown_1381',['SlotSwitchTabDown',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a576e06390e65576465297d2ab8d7d474',1,'GpgFrontend::UI::TextEdit']]], + ['slotswitchtabup_1382',['SlotSwitchTabUp',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af1e364b513f566c743a5d36c19098762',1,'GpgFrontend::UI::TextEdit']]], + ['slotundo_1383',['SlotUndo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a4a81e69f6dc74ea649ca9a2358342fd5',1,'GpgFrontend::UI::TextEdit']]], + ['startdirmngr_1384',['StartDirmngr',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a46085a11235894deccd312fc259d5078',1,'GpgFrontend::GpgAdvancedOperator']]], + ['startgpgagent_1385',['StartGpgAgent',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a07c32ba25cf6153fbc8ee585c4ba377c',1,'GpgFrontend::GpgAdvancedOperator']]], + ['startkeyboxd_1386',['StartKeyBoxd',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a9313410359ed9cff9ee66fa9b4b095ee',1,'GpgFrontend::GpgAdvancedOperator']]], + ['stripped_5fname_1387',['stripped_name',['../classGpgFrontend_1_1UI_1_1TextEdit.html#afb9b7a7d88154d774b3d727d8e640cbb',1,'GpgFrontend::UI::TextEdit']]], + ['subkeygeneratedialog_1388',['SubkeyGenerateDialog',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a8f9d8baa7b576a4aa857818b87c26bcd',1,'GpgFrontend::UI::SubkeyGenerateDialog']]], + ['switch_5fui_5fenabled_1389',['switch_ui_enabled',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#ae3d97948f205e84f0604d4da634a4513',1,'GpgFrontend::UI::NetworkTab']]], + ['switch_5fui_5fproxy_5ftype_1390',['switch_ui_proxy_type',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#a1b0297158f13daec77645c88e5a8adcd',1,'GpgFrontend::UI::NetworkTab']]], + ['syncsettings_1391',['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 89afb429..eb560b61 100644 --- a/docs/html/search/functions_13.js +++ b/docs/html/search/functions_13.js @@ -1,13 +1,13 @@ var searchData= [ - ['tabcount_1391',['TabCount',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a05c54658597b04c3976c72d3a5f9add9',1,'GpgFrontend::UI::TextEdit']]], - ['takechargeofresult_1392',['TakeChargeOfResult',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#acdb7839a5158f078b38d60f0fefc5155',1,'GpgFrontend::GpgVerifyResultAnalyse']]], - ['task_1393',['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_1394',['TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#ad3c8612cbe60112f9b14e616fb0a4acf',1,'GpgFrontend::Thread::TaskRunner']]], - ['taskrunnergetter_1395',['TaskRunnerGetter',['../classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html#a80794d81179f66f4b4ed3122a64f27cf',1,'GpgFrontend::Thread::TaskRunnerGetter']]], - ['test_5fpassphrase_5fcb_1396',['test_passphrase_cb',['../classGpgFrontend_1_1GpgContext.html#acc4234054002065dfbc5d5261a4950d4',1,'GpgFrontend::GpgContext']]], - ['test_5fstatus_5fcb_1397',['test_status_cb',['../classGpgFrontend_1_1GpgContext.html#a3844cd0966134939e5c4be9a725e5271',1,'GpgFrontend::GpgContext']]], - ['text_5fis_5fsigned_1398',['text_is_signed',['../namespaceGpgFrontend.html#a2a0394c8bdd277f5235f9875a1d69a99',1,'GpgFrontend']]], - ['tofuinfopage_1399',['TOFUInfoPage',['../classGpgFrontend_1_1UI_1_1TOFUInfoPage.html#a9adc1666e3f57536594876520019e395',1,'GpgFrontend::UI::TOFUInfoPage']]], - ['translatorstab_1400',['TranslatorsTab',['../classGpgFrontend_1_1UI_1_1TranslatorsTab.html#a89e5c7b9c17fb41b7c7bf461fb8ad99e',1,'GpgFrontend::UI::TranslatorsTab']]] + ['tabcount_1392',['TabCount',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a05c54658597b04c3976c72d3a5f9add9',1,'GpgFrontend::UI::TextEdit']]], + ['takechargeofresult_1393',['TakeChargeOfResult',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#acdb7839a5158f078b38d60f0fefc5155',1,'GpgFrontend::GpgVerifyResultAnalyse']]], + ['task_1394',['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_1395',['TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#ad3c8612cbe60112f9b14e616fb0a4acf',1,'GpgFrontend::Thread::TaskRunner']]], + ['taskrunnergetter_1396',['TaskRunnerGetter',['../classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html#a80794d81179f66f4b4ed3122a64f27cf',1,'GpgFrontend::Thread::TaskRunnerGetter']]], + ['test_5fpassphrase_5fcb_1397',['test_passphrase_cb',['../classGpgFrontend_1_1GpgContext.html#acc4234054002065dfbc5d5261a4950d4',1,'GpgFrontend::GpgContext']]], + ['test_5fstatus_5fcb_1398',['test_status_cb',['../classGpgFrontend_1_1GpgContext.html#a3844cd0966134939e5c4be9a725e5271',1,'GpgFrontend::GpgContext']]], + ['text_5fis_5fsigned_1399',['text_is_signed',['../namespaceGpgFrontend.html#a2a0394c8bdd277f5235f9875a1d69a99',1,'GpgFrontend']]], + ['tofuinfopage_1400',['TOFUInfoPage',['../classGpgFrontend_1_1UI_1_1TOFUInfoPage.html#a9adc1666e3f57536594876520019e395',1,'GpgFrontend::UI::TOFUInfoPage']]], + ['translatorstab_1401',['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 c1aab957..485ce34f 100644 --- a/docs/html/search/functions_14.js +++ b/docs/html/search/functions_14.js @@ -1,6 +1,6 @@ var searchData= [ - ['unsaveddocuments_1401',['UnsavedDocuments',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a82fe98d45f54909ebea933b540367c39',1,'GpgFrontend::UI::TextEdit']]], - ['updatetab_1402',['UpdateTab',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a833c5f709607032bac530aacf389a117',1,'GpgFrontend::UI::UpdateTab']]], - ['upload_5fkey_5fto_5fserver_1403',['upload_key_to_server',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad27dcf3f534f13d8df71df680c4d177c',1,'GpgFrontend::UI::MainWindow']]] + ['unsaveddocuments_1402',['UnsavedDocuments',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a82fe98d45f54909ebea933b540367c39',1,'GpgFrontend::UI::TextEdit']]], + ['updatetab_1403',['UpdateTab',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a833c5f709607032bac530aacf389a117',1,'GpgFrontend::UI::UpdateTab']]], + ['upload_5fkey_5fto_5fserver_1404',['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 2c0c1e4f..65c85aae 100644 --- a/docs/html/search/functions_15.js +++ b/docs/html/search/functions_15.js @@ -1,10 +1,10 @@ var searchData= [ - ['verify_1404',['Verify',['../classGpgFrontend_1_1GpgBasicOperator.html#af0347cb28ff73b2250395ceaa9001509',1,'GpgFrontend::GpgBasicOperator']]], - ['verifydetailsdialog_1405',['VerifyDetailsDialog',['../classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#ac73f0405e249f623ddd0de22b5130fda',1,'GpgFrontend::UI::VerifyDetailsDialog']]], - ['verifyfile_1406',['VerifyFile',['../classGpgFrontend_1_1GpgFileOpera.html#a14cddfe822c9410cd9c301d08963b7e7',1,'GpgFrontend::GpgFileOpera']]], - ['verifykeydetailbox_1407',['VerifyKeyDetailBox',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#afbbe8e87786cca020c9aa8759eb041a0',1,'GpgFrontend::UI::VerifyKeyDetailBox']]], - ['version_5fcompare_1408',['version_compare',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#ae1989b6a34c76103f4bd06f35686d536',1,'GpgFrontend::UI::SoftwareVersion']]], - ['versionchecktask_1409',['VersionCheckTask',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9f7a810ae1aa78c2a61e86e7757da385',1,'GpgFrontend::UI::VersionCheckTask']]], - ['versionwithdrawn_1410',['VersionWithDrawn',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a587a3fdb047a15c3771c2af5eebdbf4b',1,'GpgFrontend::UI::SoftwareVersion']]] + ['verify_1405',['Verify',['../classGpgFrontend_1_1GpgBasicOperator.html#af0347cb28ff73b2250395ceaa9001509',1,'GpgFrontend::GpgBasicOperator']]], + ['verifydetailsdialog_1406',['VerifyDetailsDialog',['../classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#ac73f0405e249f623ddd0de22b5130fda',1,'GpgFrontend::UI::VerifyDetailsDialog']]], + ['verifyfile_1407',['VerifyFile',['../classGpgFrontend_1_1GpgFileOpera.html#a14cddfe822c9410cd9c301d08963b7e7',1,'GpgFrontend::GpgFileOpera']]], + ['verifykeydetailbox_1408',['VerifyKeyDetailBox',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#afbbe8e87786cca020c9aa8759eb041a0',1,'GpgFrontend::UI::VerifyKeyDetailBox']]], + ['version_5fcompare_1409',['version_compare',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#ae1989b6a34c76103f4bd06f35686d536',1,'GpgFrontend::UI::SoftwareVersion']]], + ['versionchecktask_1410',['VersionCheckTask',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9f7a810ae1aa78c2a61e86e7757da385',1,'GpgFrontend::UI::VersionCheckTask']]], + ['versionwithdrawn_1411',['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 dc74bdd8..76bb5315 100644 --- a/docs/html/search/functions_16.js +++ b/docs/html/search/functions_16.js @@ -1,9 +1,9 @@ var searchData= [ - ['waitingdialog_1411',['WaitingDialog',['../classGpgFrontend_1_1UI_1_1WaitingDialog.html#a809d0ffc8208eb2ff5d8da76c8ee10dc',1,'GpgFrontend::UI::WaitingDialog']]], - ['willcharsetchange_1412',['WillCharsetChange',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a1c1c0174ed1ed9c5a90739eafc5c3267',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['wizard_1413',['Wizard',['../classGpgFrontend_1_1UI_1_1Wizard.html#a448db8fe5ace96418ffd1f23b0142b10',1,'GpgFrontend::UI::Wizard']]], - ['write_5fbuffer_5fto_5ffile_1414',['write_buffer_to_file',['../namespaceGpgFrontend.html#a5135069571678eda9c1f07d17ed9ac41',1,'GpgFrontend']]], - ['writefile_1415',['WriteFile',['../classGpgFrontend_1_1FileOperator.html#a2f21ef4a88448b1eddf756302913d338',1,'GpgFrontend::FileOperator']]], - ['writefilestd_1416',['WriteFileStd',['../classGpgFrontend_1_1FileOperator.html#a51121c94dc32a83d7073fbe7138b603b',1,'GpgFrontend::FileOperator']]] + ['waitingdialog_1412',['WaitingDialog',['../classGpgFrontend_1_1UI_1_1WaitingDialog.html#a809d0ffc8208eb2ff5d8da76c8ee10dc',1,'GpgFrontend::UI::WaitingDialog']]], + ['willcharsetchange_1413',['WillCharsetChange',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a1c1c0174ed1ed9c5a90739eafc5c3267',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['wizard_1414',['Wizard',['../classGpgFrontend_1_1UI_1_1Wizard.html#a448db8fe5ace96418ffd1f23b0142b10',1,'GpgFrontend::UI::Wizard']]], + ['write_5fbuffer_5fto_5ffile_1415',['write_buffer_to_file',['../namespaceGpgFrontend.html#a5135069571678eda9c1f07d17ed9ac41',1,'GpgFrontend']]], + ['writefile_1416',['WriteFile',['../classGpgFrontend_1_1FileOperator.html#a2f21ef4a88448b1eddf756302913d338',1,'GpgFrontend::FileOperator']]], + ['writefilestd_1417',['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 7c595bdb..ce702aa3 100644 --- a/docs/html/search/functions_17.js +++ b/docs/html/search/functions_17.js @@ -1,14 +1,14 @@ var searchData= [ - ['_7edataobject_1417',['~DataObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a85bb3c482bf6f47edcd6593cca568a22',1,'GpgFrontend::Thread::Task::DataObject']]], - ['_7eglobalsettingstation_1418',['~GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html#af700161900e623a0ea14261d51616451',1,'GpgFrontend::GlobalSettingStation']]], - ['_7egpgcontext_1419',['~GpgContext',['../classGpgFrontend_1_1GpgContext.html#ae89dee551354c1541337881898832725',1,'GpgFrontend::GpgContext']]], - ['_7egpgfrontendapplication_1420',['~GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a32f0e7dda69f7b1e3cc869340736c590',1,'GpgFrontend::UI::GpgFrontendApplication']]], - ['_7egpgkey_1421',['~GpgKey',['../classGpgFrontend_1_1GpgKey.html#a1e9223bb1ad8fbb4e769680de39b3697',1,'GpgFrontend::GpgKey']]], - ['_7egpgkeysignature_1422',['~GpgKeySignature',['../classGpgFrontend_1_1GpgKeySignature.html#ab4d7044f4e1ddcf0ae0d28be43f0fcb3',1,'GpgFrontend::GpgKeySignature']]], - ['_7egpgsignature_1423',['~GpgSignature',['../classGpgFrontend_1_1GpgSignature.html#a44f137a457ac109d145a1cdd8e544e3a',1,'GpgFrontend::GpgSignature']]], - ['_7esettingsobject_1424',['~SettingsObject',['../classGpgFrontend_1_1UI_1_1SettingsObject.html#ae71336d240ace35756d1852a46271f6c',1,'GpgFrontend::UI::SettingsObject']]], - ['_7esingletonfunctionobject_1425',['~SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html#a8296be8c449f88175285186831b995bc',1,'GpgFrontend::SingletonFunctionObject']]], - ['_7etask_1426',['~Task',['../classGpgFrontend_1_1Thread_1_1Task.html#a37766a505662b33ad14672c29e209ea8',1,'GpgFrontend::Thread::Task']]], - ['_7etaskrunner_1427',['~TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#ac3e57b59d537e2a75e741d4a5418ae6d',1,'GpgFrontend::Thread::TaskRunner']]] + ['_7edataobject_1418',['~DataObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a85bb3c482bf6f47edcd6593cca568a22',1,'GpgFrontend::Thread::Task::DataObject']]], + ['_7eglobalsettingstation_1419',['~GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html#af700161900e623a0ea14261d51616451',1,'GpgFrontend::GlobalSettingStation']]], + ['_7egpgcontext_1420',['~GpgContext',['../classGpgFrontend_1_1GpgContext.html#ae89dee551354c1541337881898832725',1,'GpgFrontend::GpgContext']]], + ['_7egpgfrontendapplication_1421',['~GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a32f0e7dda69f7b1e3cc869340736c590',1,'GpgFrontend::UI::GpgFrontendApplication']]], + ['_7egpgkey_1422',['~GpgKey',['../classGpgFrontend_1_1GpgKey.html#a1e9223bb1ad8fbb4e769680de39b3697',1,'GpgFrontend::GpgKey']]], + ['_7egpgkeysignature_1423',['~GpgKeySignature',['../classGpgFrontend_1_1GpgKeySignature.html#ab4d7044f4e1ddcf0ae0d28be43f0fcb3',1,'GpgFrontend::GpgKeySignature']]], + ['_7egpgsignature_1424',['~GpgSignature',['../classGpgFrontend_1_1GpgSignature.html#a44f137a457ac109d145a1cdd8e544e3a',1,'GpgFrontend::GpgSignature']]], + ['_7esettingsobject_1425',['~SettingsObject',['../classGpgFrontend_1_1UI_1_1SettingsObject.html#ae71336d240ace35756d1852a46271f6c',1,'GpgFrontend::UI::SettingsObject']]], + ['_7esingletonfunctionobject_1426',['~SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html#a8296be8c449f88175285186831b995bc',1,'GpgFrontend::SingletonFunctionObject']]], + ['_7etask_1427',['~Task',['../classGpgFrontend_1_1Thread_1_1Task.html#a37766a505662b33ad14672c29e209ea8',1,'GpgFrontend::Thread::Task']]], + ['_7etaskrunner_1428',['~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 c5bad46d..b3d6534f 100644 --- a/docs/html/search/functions_2.js +++ b/docs/html/search/functions_2.js @@ -1,4 +1,4 @@ var searchData= [ - ['beautify_5ffingerprint_892',['beautify_fingerprint',['../namespaceGpgFrontend.html#ac494a4b0d91e08a70db77a399c9a0f30',1,'GpgFrontend']]] + ['beautify_5ffingerprint_893',['beautify_fingerprint',['../namespaceGpgFrontend.html#ac494a4b0d91e08a70db77a399c9a0f30',1,'GpgFrontend']]] ]; diff --git a/docs/html/search/functions_3.js b/docs/html/search/functions_3.js index 0d3fd443..f4550792 100644 --- a/docs/html/search/functions_3.js +++ b/docs/html/search/functions_3.js @@ -1,49 +1,49 @@ var searchData= [ - ['calculatehash_893',['CalculateHash',['../classGpgFrontend_1_1FileOperator.html#a08baef750a723ee709804120a34d19c9',1,'GpgFrontend::FileOperator']]], - ['channelobject_894',['ChannelObject',['../classGpgFrontend_1_1ChannelObject.html#aedbf32eddc701e521bd8e790ef208da0',1,'GpgFrontend::ChannelObject::ChannelObject() noexcept'],['../classGpgFrontend_1_1ChannelObject.html#a68ad2a19339e3cd50626fe0eaad17ccd',1,'GpgFrontend::ChannelObject::ChannelObject(int channel)']]], - ['check_895',['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_896',['check_binary_chacksum',['../classGpgFrontend_1_1GpgContext.html#a76fba43d1439c7811e1a9424d0c16d40',1,'GpgFrontend::GpgContext']]], - ['check_5femail_5faddress_897',['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_898',['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_899',['check_gpg_error_2_err_code',['../namespaceGpgFrontend.html#a4edac6df92596ba8eea3a8cdc1173684',1,'GpgFrontend']]], - ['choosepage_900',['ChoosePage',['../classGpgFrontend_1_1UI_1_1ChoosePage.html#ae370e789009be3926410cb749c86907b',1,'GpgFrontend::UI::ChoosePage']]], - ['cleargpgpasswordcache_901',['ClearGpgPasswordCache',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a71eb87ed095754ee1e9fa79125240f3e',1,'GpgFrontend::GpgAdvancedOperator']]], - ['close_5fattachment_5fdock_902',['close_attachment_dock',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a473b679fa0dc3cdf4f6f98d6553fa0ec',1,'GpgFrontend::UI::MainWindow']]], - ['closeevent_903',['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_904',['CloseNoteByClass',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aee4f46e54f29da671838ed232e526700',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['commonutils_905',['CommonUtils',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a78f5c2696152e9326e845c76c94be965',1,'GpgFrontend::UI::CommonUtils']]], - ['conclusionpage_906',['ConclusionPage',['../classGpgFrontend_1_1UI_1_1ConclusionPage.html#afcd98b4735047807d384e6b3d3aea3a7',1,'GpgFrontend::UI::ConclusionPage']]], - ['containsprivatekeys_907',['ContainsPrivateKeys',['../classGpgFrontend_1_1UI_1_1KeyList.html#a20c4a242f49123bd64982952fdad08e9',1,'GpgFrontend::UI::KeyList']]], - ['contextmenuevent_908',['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_909',['Copy',['../classGpgFrontend_1_1GpgKey.html#ac90afba6a5aec0bc2c0f1e01de417ec8',1,'GpgFrontend::GpgKey']]], - ['create_5factions_910',['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_911',['create_attachment_dock',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a92a6d8d46e197e25eaacc3ad7ed289ab',1,'GpgFrontend::UI::MainWindow']]], - ['create_5fbasic_5finfo_5fgroup_5fbox_912',['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_913',['create_button',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a4c5d8a43fd8a6f1c217d83694dcc689c',1,'GpgFrontend::UI::KeyServerImportDialog']]], - ['create_5fbutton_5fbox_914',['create_button_box',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a9f5912ff99e3820d5fa6a58ed14a70c8',1,'GpgFrontend::UI::KeyImportDetailDialog']]], - ['create_5fcombobox_915',['create_comboBox',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ab9e2fe38d54c0f0d3d73907300faa513',1,'GpgFrontend::UI::KeyServerImportDialog']]], - ['create_5fdock_5fwindows_916',['create_dock_windows',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a04668246525874760f47a340b4b7d8de',1,'GpgFrontend::UI::MainWindow']]], - ['create_5fgeneral_5finfo_5fbox_917',['create_general_info_box',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#af88ee416b2227ce847a3b8123a23ce24',1,'GpgFrontend::UI::KeyImportDetailDialog']]], - ['create_5fkey_5finfo_5fgrid_918',['create_key_info_grid',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#a25b96a986a009d35847f94719ec327c1',1,'GpgFrontend::UI::VerifyKeyDetailBox']]], - ['create_5fkey_5fusage_5fgroup_5fbox_919',['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_920',['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_921',['create_manage_uid_menu',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a5c029e55323d54aa2306267cea1809ea',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['create_5fmenus_922',['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_923',['create_popup_menu',['../classGpgFrontend_1_1UI_1_1FilePage.html#a73e4b62f4926b1aeb3f2183a1d05d871',1,'GpgFrontend::UI::FilePage']]], - ['create_5fsign_5flist_924',['create_sign_list',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a32dc14242d88ca168ae71e9a895d2b29',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['create_5fsign_5fpopup_5fmenu_925',['create_sign_popup_menu',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a7653654c81149c48e7e4d5f0c00c360f',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['create_5fstatus_5fbar_926',['create_status_bar',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1ab1f3f57f9969447491e63f54420585',1,'GpgFrontend::UI::MainWindow']]], - ['create_5fsubkey_5flist_927',['create_subkey_list',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a0503508ce7e11f497a05cdf6f536a253',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], - ['create_5fsubkey_5fopera_5fmenu_928',['create_subkey_opera_menu',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a324446276f111be455773381ee8b6739',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], - ['create_5ftool_5fbars_929',['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_930',['create_uid_list',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a0511f5714548920cf3563306536d0bd7',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['create_5fuid_5fpopup_5fmenu_931',['create_uid_popup_menu',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a2a87d3ed720a57a5d96a108c7a9827d7',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['createinstance_932',['CreateInstance',['../classGpgFrontend_1_1SingletonFunctionObject.html#a083807ff8cec58dc0aa732844edaf518',1,'GpgFrontend::SingletonFunctionObject']]], - ['createoperamenu_933',['CreateOperaMenu',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a4dcec352e412afe5c5491f941495090f',1,'GpgFrontend::UI::KeyPairOperaTab']]], - ['ctxchecktask_934',['CtxCheckTask',['../classGpgFrontend_1_1Thread_1_1CtxCheckTask.html#a9d5f0969bcedc5687e0a50ed3b36a869',1,'GpgFrontend::Thread::CtxCheckTask']]], - ['curfilepage_935',['CurFilePage',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa30daf558cb85bbdcad55a805a106109',1,'GpgFrontend::UI::TextEdit']]], - ['currentversionreleased_936',['CurrentVersionReleased',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a43663cd2d086299a0f0304f5bde9c663',1,'GpgFrontend::UI::SoftwareVersion']]], - ['curtextpage_937',['CurTextPage',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a7aa1230fbf796225bd6b83d381e11a3b',1,'GpgFrontend::UI::TextEdit']]], - ['custom_5fpassphrase_5fcb_938',['custom_passphrase_cb',['../classGpgFrontend_1_1GpgContext.html#af46f09a4f5c77429c3e782b551812ec2',1,'GpgFrontend::GpgContext']]] + ['calculatehash_894',['CalculateHash',['../classGpgFrontend_1_1FileOperator.html#a08baef750a723ee709804120a34d19c9',1,'GpgFrontend::FileOperator']]], + ['channelobject_895',['ChannelObject',['../classGpgFrontend_1_1ChannelObject.html#aedbf32eddc701e521bd8e790ef208da0',1,'GpgFrontend::ChannelObject::ChannelObject() noexcept'],['../classGpgFrontend_1_1ChannelObject.html#a68ad2a19339e3cd50626fe0eaad17ccd',1,'GpgFrontend::ChannelObject::ChannelObject(int channel)']]], + ['check_896',['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_897',['check_binary_chacksum',['../classGpgFrontend_1_1GpgContext.html#a76fba43d1439c7811e1a9424d0c16d40',1,'GpgFrontend::GpgContext']]], + ['check_5femail_5faddress_898',['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_899',['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_900',['check_gpg_error_2_err_code',['../namespaceGpgFrontend.html#a4edac6df92596ba8eea3a8cdc1173684',1,'GpgFrontend']]], + ['choosepage_901',['ChoosePage',['../classGpgFrontend_1_1UI_1_1ChoosePage.html#ae370e789009be3926410cb749c86907b',1,'GpgFrontend::UI::ChoosePage']]], + ['cleargpgpasswordcache_902',['ClearGpgPasswordCache',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a71eb87ed095754ee1e9fa79125240f3e',1,'GpgFrontend::GpgAdvancedOperator']]], + ['close_5fattachment_5fdock_903',['close_attachment_dock',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a473b679fa0dc3cdf4f6f98d6553fa0ec',1,'GpgFrontend::UI::MainWindow']]], + ['closeevent_904',['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_905',['CloseNoteByClass',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aee4f46e54f29da671838ed232e526700',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['commonutils_906',['CommonUtils',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a78f5c2696152e9326e845c76c94be965',1,'GpgFrontend::UI::CommonUtils']]], + ['conclusionpage_907',['ConclusionPage',['../classGpgFrontend_1_1UI_1_1ConclusionPage.html#afcd98b4735047807d384e6b3d3aea3a7',1,'GpgFrontend::UI::ConclusionPage']]], + ['containsprivatekeys_908',['ContainsPrivateKeys',['../classGpgFrontend_1_1UI_1_1KeyList.html#a20c4a242f49123bd64982952fdad08e9',1,'GpgFrontend::UI::KeyList']]], + ['contextmenuevent_909',['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_910',['Copy',['../classGpgFrontend_1_1GpgKey.html#ac90afba6a5aec0bc2c0f1e01de417ec8',1,'GpgFrontend::GpgKey']]], + ['create_5factions_911',['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_912',['create_attachment_dock',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a92a6d8d46e197e25eaacc3ad7ed289ab',1,'GpgFrontend::UI::MainWindow']]], + ['create_5fbasic_5finfo_5fgroup_5fbox_913',['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_914',['create_button',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a4c5d8a43fd8a6f1c217d83694dcc689c',1,'GpgFrontend::UI::KeyServerImportDialog']]], + ['create_5fbutton_5fbox_915',['create_button_box',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a9f5912ff99e3820d5fa6a58ed14a70c8',1,'GpgFrontend::UI::KeyImportDetailDialog']]], + ['create_5fcombobox_916',['create_comboBox',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ab9e2fe38d54c0f0d3d73907300faa513',1,'GpgFrontend::UI::KeyServerImportDialog']]], + ['create_5fdock_5fwindows_917',['create_dock_windows',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a04668246525874760f47a340b4b7d8de',1,'GpgFrontend::UI::MainWindow']]], + ['create_5fgeneral_5finfo_5fbox_918',['create_general_info_box',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#af88ee416b2227ce847a3b8123a23ce24',1,'GpgFrontend::UI::KeyImportDetailDialog']]], + ['create_5fkey_5finfo_5fgrid_919',['create_key_info_grid',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#a25b96a986a009d35847f94719ec327c1',1,'GpgFrontend::UI::VerifyKeyDetailBox']]], + ['create_5fkey_5fusage_5fgroup_5fbox_920',['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_921',['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_922',['create_manage_uid_menu',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a5c029e55323d54aa2306267cea1809ea',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['create_5fmenus_923',['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_924',['create_popup_menu',['../classGpgFrontend_1_1UI_1_1FilePage.html#a73e4b62f4926b1aeb3f2183a1d05d871',1,'GpgFrontend::UI::FilePage']]], + ['create_5fsign_5flist_925',['create_sign_list',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a32dc14242d88ca168ae71e9a895d2b29',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['create_5fsign_5fpopup_5fmenu_926',['create_sign_popup_menu',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a7653654c81149c48e7e4d5f0c00c360f',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['create_5fstatus_5fbar_927',['create_status_bar',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1ab1f3f57f9969447491e63f54420585',1,'GpgFrontend::UI::MainWindow']]], + ['create_5fsubkey_5flist_928',['create_subkey_list',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a0503508ce7e11f497a05cdf6f536a253',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], + ['create_5fsubkey_5fopera_5fmenu_929',['create_subkey_opera_menu',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a324446276f111be455773381ee8b6739',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], + ['create_5ftool_5fbars_930',['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_931',['create_uid_list',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a0511f5714548920cf3563306536d0bd7',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['create_5fuid_5fpopup_5fmenu_932',['create_uid_popup_menu',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a2a87d3ed720a57a5d96a108c7a9827d7',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['createinstance_933',['CreateInstance',['../classGpgFrontend_1_1SingletonFunctionObject.html#a083807ff8cec58dc0aa732844edaf518',1,'GpgFrontend::SingletonFunctionObject']]], + ['createoperamenu_934',['CreateOperaMenu',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a4dcec352e412afe5c5491f941495090f',1,'GpgFrontend::UI::KeyPairOperaTab']]], + ['ctxchecktask_935',['CtxCheckTask',['../classGpgFrontend_1_1Thread_1_1CtxCheckTask.html#a9d5f0969bcedc5687e0a50ed3b36a869',1,'GpgFrontend::Thread::CtxCheckTask']]], + ['curfilepage_936',['CurFilePage',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa30daf558cb85bbdcad55a805a106109',1,'GpgFrontend::UI::TextEdit']]], + ['currentversionreleased_937',['CurrentVersionReleased',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a43663cd2d086299a0f0304f5bde9c663',1,'GpgFrontend::UI::SoftwareVersion']]], + ['curtextpage_938',['CurTextPage',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a7aa1230fbf796225bd6b83d381e11a3b',1,'GpgFrontend::UI::TextEdit']]], + ['custom_5fpassphrase_5fcb_939',['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 af7a1ca4..fe2aee34 100644 --- a/docs/html/search/functions_4.js +++ b/docs/html/search/functions_4.js @@ -1,17 +1,17 @@ var searchData= [ - ['dataobjectoperator_939',['DataObjectOperator',['../classGpgFrontend_1_1DataObjectOperator.html#a3a8ae5c36fec01d0d5c3e5f9aed457a6',1,'GpgFrontend::DataObjectOperator']]], - ['decrypt_940',['Decrypt',['../classGpgFrontend_1_1GpgBasicOperator.html#a9ea9e81194917e08f46eb657281b7953',1,'GpgFrontend::GpgBasicOperator']]], - ['decryptfile_941',['DecryptFile',['../classGpgFrontend_1_1GpgFileOpera.html#a74eb3ba532a236d8ad284b41265b0ccd',1,'GpgFrontend::GpgFileOpera']]], - ['decryptverify_942',['DecryptVerify',['../classGpgFrontend_1_1GpgBasicOperator.html#a11845a9a3ea2941e14faa9130f0ac9ef',1,'GpgFrontend::GpgBasicOperator']]], - ['decryptverifyfile_943',['DecryptVerifyFile',['../classGpgFrontend_1_1GpgFileOpera.html#a90949b4e9e6116784260cd0e416551db',1,'GpgFrontend::GpgFileOpera']]], - ['delete_5fkeys_5fwith_5fwarning_944',['delete_keys_with_warning',['../classGpgFrontend_1_1UI_1_1KeyMgmt.html#a0b139ae0d4baa234932cf228e94abd6b',1,'GpgFrontend::UI::KeyMgmt']]], - ['delete_5fwidgets_5fin_5flayout_945',['delete_widgets_in_layout',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a852c1fe10c7d3153a2146bcea4dbe9ad',1,'GpgFrontend::UI::InfoBoardWidget']]], - ['deletekey_946',['DeleteKey',['../classGpgFrontend_1_1GpgKeyOpera.html#a151c47b997951e9162f8b036c3cb15e0',1,'GpgFrontend::GpgKeyOpera']]], - ['deletekeys_947',['DeleteKeys',['../classGpgFrontend_1_1GpgKeyOpera.html#a8a06d0f7a600d4428359b653a68f717e',1,'GpgFrontend::GpgKeyOpera']]], - ['detect_948',['Detect',['../classGpgFrontend_1_1CharsetOperator.html#a5a444a0fbd508f6af6a56f4151c21c1f',1,'GpgFrontend::CharsetOperator']]], - ['detect_5fcr_5flf_949',['detect_cr_lf',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#af08be6a1eaec76403b12dc6e42df546c',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['detect_5fencoding_950',['detect_encoding',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a14b7431a786ce59e98576e3680cb9a58',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['dragenterevent_951',['dragEnterEvent',['../classGpgFrontend_1_1UI_1_1KeyList.html#ae3ad87e114432b0d659a0297d520d72f',1,'GpgFrontend::UI::KeyList']]], - ['dropevent_952',['dropEvent',['../classGpgFrontend_1_1UI_1_1KeyList.html#a23ebf79be8de637560d41afd0433c35f',1,'GpgFrontend::UI::KeyList']]] + ['dataobjectoperator_940',['DataObjectOperator',['../classGpgFrontend_1_1DataObjectOperator.html#a3a8ae5c36fec01d0d5c3e5f9aed457a6',1,'GpgFrontend::DataObjectOperator']]], + ['decrypt_941',['Decrypt',['../classGpgFrontend_1_1GpgBasicOperator.html#a9ea9e81194917e08f46eb657281b7953',1,'GpgFrontend::GpgBasicOperator']]], + ['decryptfile_942',['DecryptFile',['../classGpgFrontend_1_1GpgFileOpera.html#a74eb3ba532a236d8ad284b41265b0ccd',1,'GpgFrontend::GpgFileOpera']]], + ['decryptverify_943',['DecryptVerify',['../classGpgFrontend_1_1GpgBasicOperator.html#a11845a9a3ea2941e14faa9130f0ac9ef',1,'GpgFrontend::GpgBasicOperator']]], + ['decryptverifyfile_944',['DecryptVerifyFile',['../classGpgFrontend_1_1GpgFileOpera.html#a90949b4e9e6116784260cd0e416551db',1,'GpgFrontend::GpgFileOpera']]], + ['delete_5fkeys_5fwith_5fwarning_945',['delete_keys_with_warning',['../classGpgFrontend_1_1UI_1_1KeyMgmt.html#a0b139ae0d4baa234932cf228e94abd6b',1,'GpgFrontend::UI::KeyMgmt']]], + ['delete_5fwidgets_5fin_5flayout_946',['delete_widgets_in_layout',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a852c1fe10c7d3153a2146bcea4dbe9ad',1,'GpgFrontend::UI::InfoBoardWidget']]], + ['deletekey_947',['DeleteKey',['../classGpgFrontend_1_1GpgKeyOpera.html#a151c47b997951e9162f8b036c3cb15e0',1,'GpgFrontend::GpgKeyOpera']]], + ['deletekeys_948',['DeleteKeys',['../classGpgFrontend_1_1GpgKeyOpera.html#a8a06d0f7a600d4428359b653a68f717e',1,'GpgFrontend::GpgKeyOpera']]], + ['detect_949',['Detect',['../classGpgFrontend_1_1CharsetOperator.html#a5a444a0fbd508f6af6a56f4151c21c1f',1,'GpgFrontend::CharsetOperator']]], + ['detect_5fcr_5flf_950',['detect_cr_lf',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#af08be6a1eaec76403b12dc6e42df546c',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['detect_5fencoding_951',['detect_encoding',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a14b7431a786ce59e98576e3680cb9a58',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['dragenterevent_952',['dragEnterEvent',['../classGpgFrontend_1_1UI_1_1KeyList.html#ae3ad87e114432b0d659a0297d520d72f',1,'GpgFrontend::UI::KeyList']]], + ['dropevent_953',['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 8083b94e..75b65bdd 100644 --- a/docs/html/search/functions_5.js +++ b/docs/html/search/functions_5.js @@ -1,17 +1,17 @@ var searchData= [ - ['encrypt_953',['Encrypt',['../classGpgFrontend_1_1GpgBasicOperator.html#a32e1eac6bb0f322588ae75ae36a9884a',1,'GpgFrontend::GpgBasicOperator']]], - ['encryptfile_954',['EncryptFile',['../classGpgFrontend_1_1GpgFileOpera.html#a234d939ae0b2c3f799dd01130fad9379',1,'GpgFrontend::GpgFileOpera']]], - ['encryptfilesymmetric_955',['EncryptFileSymmetric',['../classGpgFrontend_1_1GpgFileOpera.html#a826efca057afb07157453b3b9e267b0f',1,'GpgFrontend::GpgFileOpera']]], - ['encryptsign_956',['EncryptSign',['../classGpgFrontend_1_1GpgBasicOperator.html#a08906cf2bc2ddad8489438610f388f8a',1,'GpgFrontend::GpgBasicOperator']]], - ['encryptsignfile_957',['EncryptSignFile',['../classGpgFrontend_1_1GpgFileOpera.html#a6353e1688b113e5746aced6aa7f3876e',1,'GpgFrontend::GpgFileOpera']]], - ['encryptsymmetric_958',['EncryptSymmetric',['../classGpgFrontend_1_1GpgBasicOperator.html#a8f4ef57e941a066ad9d070eee51e2073',1,'GpgFrontend::GpgBasicOperator']]], - ['execute_959',['Execute',['../classGpgFrontend_1_1GpgCommandExecutor.html#affa984ec4c2982c527761289f73c1ab4',1,'GpgFrontend::GpgCommandExecutor']]], - ['exportallkeys_960',['ExportAllKeys',['../classGpgFrontend_1_1GpgKeyImportExporter.html#ae7d61a8c39ef7e7f1562895dbf108e68',1,'GpgFrontend::GpgKeyImportExporter']]], - ['exportkey_961',['ExportKey',['../classGpgFrontend_1_1GpgKeyImportExporter.html#a51cb18aa7302d7a48ccd1ee17f060391',1,'GpgFrontend::GpgKeyImportExporter']]], - ['exportkeyopenssh_962',['ExportKeyOpenSSH',['../classGpgFrontend_1_1GpgKeyImportExporter.html#aa0a73314ef94f397e2ef53d40abc9731',1,'GpgFrontend::GpgKeyImportExporter']]], - ['exportkeypackagedialog_963',['ExportKeyPackageDialog',['../classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html#a7d1899302ef743671c3002d04f6c9dd8',1,'GpgFrontend::UI::ExportKeyPackageDialog']]], - ['exportkeys_964',['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_965',['ExportSecretKey',['../classGpgFrontend_1_1GpgKeyImportExporter.html#a6a5e8d642ac5a3e98799af6495ef590b',1,'GpgFrontend::GpgKeyImportExporter']]], - ['exportsecretkeyshortest_966',['ExportSecretKeyShortest',['../classGpgFrontend_1_1GpgKeyImportExporter.html#abf7c0442549ae8602e1249cdf0da55df',1,'GpgFrontend::GpgKeyImportExporter']]] + ['encrypt_954',['Encrypt',['../classGpgFrontend_1_1GpgBasicOperator.html#a32e1eac6bb0f322588ae75ae36a9884a',1,'GpgFrontend::GpgBasicOperator']]], + ['encryptfile_955',['EncryptFile',['../classGpgFrontend_1_1GpgFileOpera.html#a234d939ae0b2c3f799dd01130fad9379',1,'GpgFrontend::GpgFileOpera']]], + ['encryptfilesymmetric_956',['EncryptFileSymmetric',['../classGpgFrontend_1_1GpgFileOpera.html#a826efca057afb07157453b3b9e267b0f',1,'GpgFrontend::GpgFileOpera']]], + ['encryptsign_957',['EncryptSign',['../classGpgFrontend_1_1GpgBasicOperator.html#a08906cf2bc2ddad8489438610f388f8a',1,'GpgFrontend::GpgBasicOperator']]], + ['encryptsignfile_958',['EncryptSignFile',['../classGpgFrontend_1_1GpgFileOpera.html#a6353e1688b113e5746aced6aa7f3876e',1,'GpgFrontend::GpgFileOpera']]], + ['encryptsymmetric_959',['EncryptSymmetric',['../classGpgFrontend_1_1GpgBasicOperator.html#a8f4ef57e941a066ad9d070eee51e2073',1,'GpgFrontend::GpgBasicOperator']]], + ['execute_960',['Execute',['../classGpgFrontend_1_1GpgCommandExecutor.html#affa984ec4c2982c527761289f73c1ab4',1,'GpgFrontend::GpgCommandExecutor']]], + ['exportallkeys_961',['ExportAllKeys',['../classGpgFrontend_1_1GpgKeyImportExporter.html#ae7d61a8c39ef7e7f1562895dbf108e68',1,'GpgFrontend::GpgKeyImportExporter']]], + ['exportkey_962',['ExportKey',['../classGpgFrontend_1_1GpgKeyImportExporter.html#a51cb18aa7302d7a48ccd1ee17f060391',1,'GpgFrontend::GpgKeyImportExporter']]], + ['exportkeyopenssh_963',['ExportKeyOpenSSH',['../classGpgFrontend_1_1GpgKeyImportExporter.html#aa0a73314ef94f397e2ef53d40abc9731',1,'GpgFrontend::GpgKeyImportExporter']]], + ['exportkeypackagedialog_964',['ExportKeyPackageDialog',['../classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html#a7d1899302ef743671c3002d04f6c9dd8',1,'GpgFrontend::UI::ExportKeyPackageDialog']]], + ['exportkeys_965',['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_966',['ExportSecretKey',['../classGpgFrontend_1_1GpgKeyImportExporter.html#a6a5e8d642ac5a3e98799af6495ef590b',1,'GpgFrontend::GpgKeyImportExporter']]], + ['exportsecretkeyshortest_967',['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 378ca90b..1c1b152b 100644 --- a/docs/html/search/functions_6.js +++ b/docs/html/search/functions_6.js @@ -1,9 +1,9 @@ var searchData= [ - ['fetchkey_967',['FetchKey',['../classGpgFrontend_1_1GpgKeyGetter.html#afe78ac470287d70e7df51aae327b9f54',1,'GpgFrontend::GpgKeyGetter']]], - ['filepage_968',['FilePage',['../classGpgFrontend_1_1UI_1_1FilePage.html#a48fb14a3296f19f9b1c3b9b48c3a1bf3',1,'GpgFrontend::UI::FilePage']]], - ['findobjectinchannel_969',['FindObjectInChannel',['../classGpgFrontend_1_1SingletonStorage.html#a4c16c32e549494e394a0ddd859890a02',1,'GpgFrontend::SingletonStorage']]], - ['findwidget_970',['FindWidget',['../classGpgFrontend_1_1UI_1_1FindWidget.html#a495f281e72e5ddc10c8e944183b96dd9',1,'GpgFrontend::UI::FindWidget']]], - ['flushkeycache_971',['FlushKeyCache',['../classGpgFrontend_1_1GpgKeyGetter.html#ad9a902ea54566d4583304b072c4add51',1,'GpgFrontend::GpgKeyGetter']]], - ['free_5fheap_5fptr_972',['free_heap_ptr',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a17252d07835dab3772381639ec8473ea',1,'GpgFrontend::Thread::Task::DataObject']]] + ['fetchkey_968',['FetchKey',['../classGpgFrontend_1_1GpgKeyGetter.html#afe78ac470287d70e7df51aae327b9f54',1,'GpgFrontend::GpgKeyGetter']]], + ['filepage_969',['FilePage',['../classGpgFrontend_1_1UI_1_1FilePage.html#a48fb14a3296f19f9b1c3b9b48c3a1bf3',1,'GpgFrontend::UI::FilePage']]], + ['findobjectinchannel_970',['FindObjectInChannel',['../classGpgFrontend_1_1SingletonStorage.html#a4c16c32e549494e394a0ddd859890a02',1,'GpgFrontend::SingletonStorage']]], + ['findwidget_971',['FindWidget',['../classGpgFrontend_1_1UI_1_1FindWidget.html#a495f281e72e5ddc10c8e944183b96dd9',1,'GpgFrontend::UI::FindWidget']]], + ['flushkeycache_972',['FlushKeyCache',['../classGpgFrontend_1_1GpgKeyGetter.html#ad9a902ea54566d4583304b072c4add51',1,'GpgFrontend::GpgKeyGetter']]], + ['free_5fheap_5fptr_973',['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 5296903b..14bf2820 100644 --- a/docs/html/search/functions_7.js +++ b/docs/html/search/functions_7.js @@ -1,135 +1,135 @@ var searchData= [ - ['generaldialog_973',['GeneralDialog',['../classGpgFrontend_1_1UI_1_1GeneralDialog.html#ac9de4c49668ffaeb6916c64f878a202c',1,'GpgFrontend::UI::GeneralDialog']]], - ['generalmainwindow_974',['GeneralMainWindow',['../classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a62b24183ebf9da18852084879bcb1013',1,'GpgFrontend::UI::GeneralMainWindow']]], - ['generaltab_975',['GeneralTab',['../classGpgFrontend_1_1UI_1_1GeneralTab.html#a214079dfbacdc6898146c8468611cf0c',1,'GpgFrontend::UI::GeneralTab']]], - ['generate_976',['Generate',['../classGpgFrontend_1_1PassphraseGenerator.html#a8b4ee1083343fba6d947b85cd66079b8',1,'GpgFrontend::PassphraseGenerator']]], - ['generate_5fkey_5fpackage_5fname_977',['generate_key_package_name',['../classGpgFrontend_1_1KeyPackageOperator.html#a825d987dacd8a99d9d87729e1861a152',1,'GpgFrontend::KeyPackageOperator']]], - ['generate_5fuuid_978',['generate_uuid',['../classGpgFrontend_1_1Thread_1_1Task.html#a96d087abb7cf99d16f778f1a93b4f9e5',1,'GpgFrontend::Thread::Task']]], - ['generatekey_979',['GenerateKey',['../classGpgFrontend_1_1GpgKeyOpera.html#a4cc3ac91613164d7dc61a016a2b4caea',1,'GpgFrontend::GpgKeyOpera']]], - ['generatekeypackage_980',['GenerateKeyPackage',['../classGpgFrontend_1_1KeyPackageOperator.html#ade02f022e405e98377343c4667c206e9',1,'GpgFrontend::KeyPackageOperator']]], - ['generatekeypackagename_981',['GenerateKeyPackageName',['../classGpgFrontend_1_1KeyPackageOperator.html#ae90b362a32b6f6014cda1dc232bd3f0e',1,'GpgFrontend::KeyPackageOperator']]], - ['generatepassphrase_982',['GeneratePassphrase',['../classGpgFrontend_1_1KeyPackageOperator.html#a6d9cf022a1e0cf54c061495f59c1b4b9',1,'GpgFrontend::KeyPackageOperator']]], - ['generaterevokecert_983',['GenerateRevokeCert',['../classGpgFrontend_1_1GpgKeyOpera.html#a91a9a9f24f6b620ea7b906c529e3d9a4',1,'GpgFrontend::GpgKeyOpera']]], - ['generatesubkey_984',['GenerateSubkey',['../classGpgFrontend_1_1GpgKeyOpera.html#a882d99e8407cc22fb8b6e61c531fbe85',1,'GpgFrontend::GpgKeyOpera']]], - ['genkeyinfo_985',['GenKeyInfo',['../classGpgFrontend_1_1GenKeyInfo.html#a34eca1662ba8d4645751f3ee66582b04',1,'GpgFrontend::GenKeyInfo']]], - ['get_5ffile_5fextension_986',['get_file_extension',['../namespaceGpgFrontend.html#acff2cf5dd5b112b324fa6574ee935f79',1,'GpgFrontend']]], - ['get_5fheap_5fptr_987',['get_heap_ptr',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a0e1ab5e5bf5ef647a30a5ee2884ac63a',1,'GpgFrontend::Thread::Task::DataObject']]], - ['get_5fkey_5fin_5fcache_988',['get_key_in_cache',['../classGpgFrontend_1_1GpgKeyGetter.html#ab5196ef4ed5323fc2af70abf801ea260',1,'GpgFrontend::GpgKeyGetter']]], - ['get_5fonly_5ffile_5fname_5fwith_5fpath_989',['get_only_file_name_with_path',['../namespaceGpgFrontend.html#a5a2f5fc1ad3de55e41a1b7a388821328',1,'GpgFrontend']]], - ['get_5frestart_5fneeded_990',['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_991',['get_selected_subkey',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#aedc5f77d6bf9b780b96552a43b323feb',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], - ['get_5fsign_5fselected_992',['get_sign_selected',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a2d7c328d726436061f19a287e481268d',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['get_5fstatus_5fstring_993',['get_status_string',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#ae682853c7eccfd3a6be43765f162f5a4',1,'GpgFrontend::UI::KeyImportDetailDialog']]], - ['get_5fuid_5fchecked_994',['get_uid_checked',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a7898b6fa328bfbc55ee2721bca4b2af1',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['get_5fuid_5fselected_995',['get_uid_selected',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a161bc9787be40a32f487c79faaeb54bf',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['getalgo_996',['GetAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#a6a65ba347156373b6cf98eb8e851d28d',1,'GpgFrontend::GenKeyInfo']]], - ['getallchannelid_997',['GetAllChannelId',['../classGpgFrontend_1_1SingletonFunctionObject.html#a5f2f0474871971f86ff91fb6a2408621',1,'GpgFrontend::SingletonFunctionObject::GetAllChannelId()'],['../classGpgFrontend_1_1SingletonStorage.html#a3f09424ebdc097fbdab77564a7d723ea',1,'GpgFrontend::SingletonStorage::GetAllChannelId()']]], - ['getallprivatekeys_998',['GetAllPrivateKeys',['../classGpgFrontend_1_1UI_1_1KeyList.html#a7ead8845ceb7c9310e3f4742251e1d87',1,'GpgFrontend::UI::KeyList']]], - ['getappdir_999',['GetAppDir',['../classGpgFrontend_1_1GlobalSettingStation.html#ae9d1da3d01c4a834120968636596c3c3',1,'GpgFrontend::GlobalSettingStation']]], - ['getbrowser_1000',['GetBrowser',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a92c31eea47b42be28c86431384b27846',1,'GpgFrontend::UI::HelpPage']]], - ['getcertsdir_1001',['GetCertsDir',['../classGpgFrontend_1_1GlobalSettingStation.html#a385ae4ab6ad5b17742a5405fa693d789',1,'GpgFrontend::GlobalSettingStation']]], - ['getchannel_1002',['GetChannel',['../classGpgFrontend_1_1ChannelObject.html#a0e13a4bff1cfb679f68a3a2590a3b1b8',1,'GpgFrontend::ChannelObject::GetChannel()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#aa99440b9177f5d0c18840f08a40d64b7',1,'GpgFrontend::SingletonFunctionObject::GetChannel()']]], - ['getchecked_1003',['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_1004',['GetCheckedSigners',['../classGpgFrontend_1_1UI_1_1SignersPicker.html#a2e98dcdf647a2e0e6455998b018aed00',1,'GpgFrontend::UI::SignersPicker']]], - ['getcomment_1005',['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_1006',['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_1007',['GetDefaultChannel',['../classGpgFrontend_1_1ChannelObject.html#aece9c525c49900734bc1bebf85b644ef',1,'GpgFrontend::ChannelObject::GetDefaultChannel()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a50e2b3794d6553f4231eaec72d9d0a50',1,'GpgFrontend::SingletonFunctionObject::GetDefaultChannel()']]], - ['getdescription_1008',['GetDescription',['../classGpgFrontend_1_1GpgTOFUInfo.html#a471a08bc906d74699f394e34d2581b78',1,'GpgFrontend::GpgTOFUInfo']]], - ['getemail_1009',['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_1010',['GetEncrCount',['../classGpgFrontend_1_1GpgTOFUInfo.html#abc53f7ca1b737ed1a913ad2f90a346e4',1,'GpgFrontend::GpgTOFUInfo']]], - ['getencrlast_1011',['GetEncrLast',['../classGpgFrontend_1_1GpgTOFUInfo.html#a03f286ac6f16ec6d33eb3dcfd4e3f6d5',1,'GpgFrontend::GpgTOFUInfo']]], - ['getexpiretime_1012',['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_1013',['GetFilePath',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aff81f0f98a399fa55b6b0ebf2230d4cf',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['getfingerprint_1014',['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_1015',['GetFullID',['../classGpgFrontend_1_1Thread_1_1Task.html#a3df2340426251e9145e5fe4419937e2a',1,'GpgFrontend::Thread::Task']]], - ['gethashalgo_1016',['GetHashAlgo',['../classGpgFrontend_1_1GpgSignature.html#ace10a3ac7f4dc3888b2ad62157213f1c',1,'GpgFrontend::GpgSignature']]], - ['getid_1017',['GetId',['../classGpgFrontend_1_1GpgKey.html#a8930f958f3ca1f5566f63e8c2273837e',1,'GpgFrontend::GpgKey']]], - ['getid_1018',['GetID',['../classGpgFrontend_1_1GpgSubKey.html#a48d3dfbd3aae9523ffbdb916aad8ad53',1,'GpgFrontend::GpgSubKey']]], - ['getinfo_1019',['GetInfo',['../classGpgFrontend_1_1GpgContext.html#a4a8f6ff37e45979159ab375b2c7d48c3',1,'GpgFrontend::GpgContext']]], - ['getinstance_1020',['GetInstance',['../classGpgFrontend_1_1SingletonFunctionObject.html#a70484d7cfe9f9dcbcd5f8bb749250f36',1,'GpgFrontend::SingletonFunctionObject::GetInstance()'],['../classGpgFrontend_1_1SingletonStorageCollection.html#ac56d19e0d4b99e7b8a86a017721f3db1',1,'GpgFrontend::SingletonStorageCollection::GetInstance()'],['../classGpgFrontend_1_1UI_1_1CommonUtils.html#aed529969f54e39e3f9da14ae6dd00d49',1,'GpgFrontend::UI::CommonUtils::GetInstance()'],['../classGpgFrontend_1_1CoreSignalStation.html#a0c5893909726b919ea733de9906cfb36',1,'GpgFrontend::CoreSignalStation::GetInstance()'],['../classGpgFrontend_1_1UI_1_1SignalStation.html#abe381ce56a7b157a3760b2fd9c3b7419',1,'GpgFrontend::UI::SignalStation::GetInstance()'],['../classGpgFrontend_1_1CoreCommonUtil.html#a8588dfa6ccb57c055f022b13e2da1e7c',1,'GpgFrontend::CoreCommonUtil::GetInstance()'],['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a9b341a1a903cec0c70a6af4bb230905e',1,'GpgFrontend::UI::GpgFrontendApplication::GetInstance()']]], - ['getinvalid_1021',['GetInvalid',['../classGpgFrontend_1_1GpgUID.html#a388ad367d353edd5eeb6e529977c924c',1,'GpgFrontend::GpgUID']]], - ['getkey_1022',['GetKey',['../classGpgFrontend_1_1GpgKeyGetter.html#a94243d09c9418c8ebf0c7cdab4a2b7f1',1,'GpgFrontend::GpgKeyGetter']]], - ['getkeyid_1023',['GetKeyID',['../classGpgFrontend_1_1GpgKeySignature.html#a4277f6deb7c07aaba62fbe8e7867b1fe',1,'GpgFrontend::GpgKeySignature']]], - ['getkeylength_1024',['GetKeyLength',['../classGpgFrontend_1_1GpgSubKey.html#a18d7a2f0a3cee32a123b780f2b8b8708',1,'GpgFrontend::GpgSubKey::GetKeyLength()'],['../classGpgFrontend_1_1GenKeyInfo.html#a4927a9091fa2b2f68f6b60ce78ab2fe9',1,'GpgFrontend::GenKeyInfo::GetKeyLength()']]], - ['getkeys_1025',['GetKeys',['../classGpgFrontend_1_1GpgKeyGetter.html#aa5979c21af58b874b33c203752dcc805',1,'GpgFrontend::GpgKeyGetter']]], - ['getkeyscopy_1026',['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_1027',['GetKeySizeStr',['../classGpgFrontend_1_1GenKeyInfo.html#a0bda4b4161d805582869ec0e56ade07c',1,'GpgFrontend::GenKeyInfo']]], - ['getlastupdatetime_1028',['GetLastUpdateTime',['../classGpgFrontend_1_1GpgKey.html#a3532e20298b642f5d312712fa8a791df',1,'GpgFrontend::GpgKey']]], - ['getlatestversion_1029',['getLatestVersion',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a7329657135624fc42ad80d821e11befe',1,'GpgFrontend::UI::UpdateTab']]], - ['getlocaledir_1030',['GetLocaleDir',['../classGpgFrontend_1_1GlobalSettingStation.html#a0b3780564305e9b210d66ef377c21565',1,'GpgFrontend::GlobalSettingStation']]], - ['getlogdir_1031',['GetLogDir',['../classGpgFrontend_1_1GlobalSettingStation.html#a7da9b08291ef2391892f5c9375b8db23',1,'GpgFrontend::GlobalSettingStation']]], - ['getname_1032',['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_1033',['GetObjectSize',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#aa35e6ad1ef3a5733fb338f3333b5c637',1,'GpgFrontend::Thread::Task::DataObject']]], - ['getownertrust_1034',['GetOwnerTrust',['../classGpgFrontend_1_1GpgKey.html#a3327ad34ff14feb75f3fbfc2bfb7fc44',1,'GpgFrontend::GpgKey']]], - ['getpassphrase_1035',['GetPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#a890ee16ef6088570360a073a6b531c89',1,'GpgFrontend::GenKeyInfo']]], - ['getpolicy_1036',['GetPolicy',['../classGpgFrontend_1_1GpgTOFUInfo.html#a34d1073bb25a8958e70016f3cd6b167f',1,'GpgFrontend::GpgTOFUInfo']]], - ['getprimarykeylength_1037',['GetPrimaryKeyLength',['../classGpgFrontend_1_1GpgKey.html#a5b276fdeb438fe14ec2850d799401be6',1,'GpgFrontend::GpgKey']]], - ['getprivatechecked_1038',['GetPrivateChecked',['../classGpgFrontend_1_1UI_1_1KeyList.html#a81c2e36427371fa6ae6381870b9b5bdd',1,'GpgFrontend::UI::KeyList']]], - ['getprotocol_1039',['GetProtocol',['../classGpgFrontend_1_1GpgKey.html#ad2440a2902c81192d5549fe951ddb130',1,'GpgFrontend::GpgKey']]], - ['getpubkey_1040',['GetPubkey',['../classGpgFrontend_1_1GpgKeyGetter.html#a7a8bc7c0f12a11e108051e4c824fc430',1,'GpgFrontend::GpgKeyGetter']]], - ['getpubkeyalgo_1041',['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_1042',['GetPublicKeyAlgo',['../classGpgFrontend_1_1GpgKey.html#a1c21bc3b1788753f56272ad73052fc5f',1,'GpgFrontend::GpgKey']]], - ['getresourcedir_1043',['GetResourceDir',['../classGpgFrontend_1_1GlobalSettingStation.html#afc1aa3dec55ae4e741f92fce1140a2d0',1,'GpgFrontend::GlobalSettingStation']]], - ['getresultreport_1044',['GetResultReport',['../classGpgFrontend_1_1GpgResultAnalyse.html#aa9e35e573ea4c0ebdbb014d1afbaab9d',1,'GpgFrontend::GpgResultAnalyse']]], - ['getrevoked_1045',['GetRevoked',['../classGpgFrontend_1_1GpgUID.html#a32450fbf22c64cf522e9a090423344a2',1,'GpgFrontend::GpgUID']]], - ['getselected_1046',['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_1047',['GetSelectedKey',['../classGpgFrontend_1_1UI_1_1KeyList.html#ab4368b81402e2468a9e960de8fb7080f',1,'GpgFrontend::UI::KeyList']]], - ['getsequency_1048',['GetSequency',['../classGpgFrontend_1_1Thread_1_1Task.html#a80f47accc0832e3aee686ee2879b431e',1,'GpgFrontend::Thread::Task']]], - ['getsignatures_1049',['GetSignatures',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a2063acf8262e2c600b14ed1948486ac3',1,'GpgFrontend::GpgVerifyResultAnalyse::GetSignatures()'],['../classGpgFrontend_1_1GpgUID.html#af7b5310b319378c30c488277e95ef601',1,'GpgFrontend::GpgUID::GetSignatures()']]], - ['getsigncount_1050',['GetSignCount',['../classGpgFrontend_1_1GpgTOFUInfo.html#a681046a3916d0d0cdcf0852bfa76fdb0',1,'GpgFrontend::GpgTOFUInfo']]], - ['getsigners_1051',['GetSigners',['../classGpgFrontend_1_1GpgBasicOperator.html#a78f37b8d5afd6c0248665a4415f880cf',1,'GpgFrontend::GpgBasicOperator']]], - ['getsignfirst_1052',['GetSignFirst',['../classGpgFrontend_1_1GpgTOFUInfo.html#a788a439b206882c6317162878e2fe0b8',1,'GpgFrontend::GpgTOFUInfo']]], - ['getsignlast_1053',['GetSignLast',['../classGpgFrontend_1_1GpgTOFUInfo.html#a746cbcf731af6b19ade42debbf1e2c8f',1,'GpgFrontend::GpgTOFUInfo']]], - ['getsingletonstorage_1054',['GetSingletonStorage',['../classGpgFrontend_1_1SingletonStorageCollection.html#a6f933390c54b7f55d5ffb4624074725f',1,'GpgFrontend::SingletonStorageCollection']]], - ['getsizechangestep_1055',['GetSizeChangeStep',['../classGpgFrontend_1_1GenKeyInfo.html#ac211a7a615805ae97ff284b46abfeab7',1,'GpgFrontend::GenKeyInfo']]], - ['getstandalonedatabasedir_1056',['GetStandaloneDatabaseDir',['../classGpgFrontend_1_1GlobalSettingStation.html#af484ca46c5df831a9dd76f3a88d66332',1,'GpgFrontend::GlobalSettingStation']]], - ['getstandalonegpgbindir_1057',['GetStandaloneGpgBinDir',['../classGpgFrontend_1_1GlobalSettingStation.html#aa93b21af9ac6649d5749c83c809f5b00',1,'GpgFrontend::GlobalSettingStation']]], - ['getstatus_1058',['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_1059',['GetSubKeys',['../classGpgFrontend_1_1GpgKey.html#a746699842f6c49687af0487a8b3b163d',1,'GpgFrontend::GpgKey']]], - ['getsuggestmaxkeysize_1060',['GetSuggestMaxKeySize',['../classGpgFrontend_1_1GenKeyInfo.html#ae461a553176ad1ab0c1121ea6de6c8c2',1,'GpgFrontend::GenKeyInfo']]], - ['getsuggestminkeysize_1061',['GetSuggestMinKeySize',['../classGpgFrontend_1_1GenKeyInfo.html#a0b1612421148b86919b7130ed148ca51',1,'GpgFrontend::GenKeyInfo']]], - ['getsummary_1062',['GetSummary',['../classGpgFrontend_1_1GpgSignature.html#a3b143f6e13b71663d81fc0f326aad17f',1,'GpgFrontend::GpgSignature']]], - ['getsupportedkeyalgo_1063',['GetSupportedKeyAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#ac0dbb2d89b1e5f9b272679ba3f24314e',1,'GpgFrontend::GenKeyInfo']]], - ['getsupportedkeyalgostandalone_1064',['GetSupportedKeyAlgoStandalone',['../classGpgFrontend_1_1GenKeyInfo.html#afb8315b6612c64b3921b72df98ebcc74',1,'GpgFrontend::GenKeyInfo']]], - ['getsupportedsubkeyalgo_1065',['GetSupportedSubkeyAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#a168d6fe5252812f5984ba6d8046c7741',1,'GpgFrontend::GenKeyInfo']]], - ['getsupportedsubkeyalgostandalone_1066',['GetSupportedSubkeyAlgoStandalone',['../classGpgFrontend_1_1GenKeyInfo.html#a6819b0ca3ef7712b85ae320030cde023',1,'GpgFrontend::GenKeyInfo']]], - ['gettabidstosave_1067',['GetTabIdsToSave',['../classGpgFrontend_1_1UI_1_1QuitDialog.html#aec364c38056b6d92c172f8cdfb5f8e82',1,'GpgFrontend::UI::QuitDialog']]], - ['gettempcachevalue_1068',['GetTempCacheValue',['../classGpgFrontend_1_1CoreCommonUtil.html#aa3e4003ca3248537973ea6cf42e9f040',1,'GpgFrontend::CoreCommonUtil']]], - ['gettextpage_1069',['GetTextPage',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a6218e6e12bdba0228e4ab4276f7fed7a',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['gettofuinfos_1070',['GetTofuInfos',['../classGpgFrontend_1_1GpgUID.html#a2a36376484f7c1a4a19377d24e47a0b2',1,'GpgFrontend::GpgUID']]], - ['getuid_1071',['GetUID',['../classGpgFrontend_1_1GpgKeySignature.html#a95254ea2c00829b9dc87adc4a317cde5',1,'GpgFrontend::GpgKeySignature::GetUID()'],['../classGpgFrontend_1_1GpgUID.html#a467897d43a18b0cadd2e2e44384f6cdd',1,'GpgFrontend::GpgUID::GetUID()']]], - ['getuids_1072',['GetUIDs',['../classGpgFrontend_1_1GpgKey.html#ac8b13b45e487cdc423b78d3017897f99',1,'GpgFrontend::GpgKey']]], - ['getuisettings_1073',['GetUISettings',['../classGpgFrontend_1_1GlobalSettingStation.html#a14433405831283cd95091d741614d03b',1,'GpgFrontend::GlobalSettingStation']]], - ['getuserid_1074',['GetUserid',['../classGpgFrontend_1_1GenKeyInfo.html#a4ee4a0659e76376d9bfc527c334392e1',1,'GpgFrontend::GenKeyInfo']]], - ['getuuid_1075',['GetUUID',['../classGpgFrontend_1_1Thread_1_1Task.html#a50b91d27874af31ef13c493b00824ccf',1,'GpgFrontend::Thread::Task']]], - ['getvalidity_1076',['GetValidity',['../classGpgFrontend_1_1GpgSignature.html#a09cb6b465e85dffcf7867e70a276e9ad',1,'GpgFrontend::GpgSignature::GetValidity()'],['../classGpgFrontend_1_1GpgTOFUInfo.html#a8770062c9e0c3875083d2c92ebe8ccb0',1,'GpgFrontend::GpgTOFUInfo::GetValidity()']]], - ['globalsettingstation_1077',['GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html#abdc6dda369d4214e43ffa2930f7386b0',1,'GpgFrontend::GlobalSettingStation']]], - ['gnupgcontrollerdialog_1078',['GnuPGControllerDialog',['../classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html#add69685b9c83ed03ed24d36f2badd835',1,'GpgFrontend::UI::GnuPGControllerDialog']]], - ['gnupgtab_1079',['GnupgTab',['../classGpgFrontend_1_1UI_1_1GnupgTab.html#ab9d9e8af4494659f13b87804e7318a79',1,'GpgFrontend::UI::GnupgTab']]], - ['good_1080',['good',['../classGpgFrontend_1_1GpgContext.html#a73c505a2f3d39d1638dc4d9a3e13a913',1,'GpgFrontend::GpgContext']]], - ['gpgadvancedoperator_1081',['GpgAdvancedOperator',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a9233156767f1d45272b95decd18241e3',1,'GpgFrontend::GpgAdvancedOperator']]], - ['gpgbasicoperator_1082',['GpgBasicOperator',['../classGpgFrontend_1_1GpgBasicOperator.html#a139be86330f88e5f833aa24263a3b2ae',1,'GpgFrontend::GpgBasicOperator']]], - ['gpgcommandexecutor_1083',['GpgCommandExecutor',['../classGpgFrontend_1_1GpgCommandExecutor.html#a94240f423464600938bfcafa2b186c38',1,'GpgFrontend::GpgCommandExecutor']]], - ['gpgcontext_1084',['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_1085',['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_1086',['GpgDecryptResultAnalyse',['../classGpgFrontend_1_1GpgDecryptResultAnalyse.html#a442438ae58cdd7220f0e4b0792e5a372',1,'GpgFrontend::GpgDecryptResultAnalyse']]], - ['gpgencryptresultanalyse_1087',['GpgEncryptResultAnalyse',['../classGpgFrontend_1_1GpgEncryptResultAnalyse.html#a0801e32c8709da373f6715bc994a7747',1,'GpgFrontend::GpgEncryptResultAnalyse']]], - ['gpgfileopera_1088',['GpgFileOpera',['../classGpgFrontend_1_1GpgFileOpera.html#aa81da3d72c4fbc57e7138bfec7731152',1,'GpgFrontend::GpgFileOpera']]], - ['gpgfrontendapplication_1089',['GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#ac0290f06e08f2714f9727bb578df1298',1,'GpgFrontend::UI::GpgFrontendApplication']]], - ['gpgimportinformation_1090',['GpgImportInformation',['../classGpgFrontend_1_1GpgImportInformation.html#ab282d4f701403cd68eb02d1aad30be56',1,'GpgFrontend::GpgImportInformation']]], - ['gpgkey_1091',['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_1092',['GpgKeyGetter',['../classGpgFrontend_1_1GpgKeyGetter.html#a8eeee9f6dd74dc24c24794ce63c62285',1,'GpgFrontend::GpgKeyGetter']]], - ['gpgkeyimportexporter_1093',['GpgKeyImportExporter',['../classGpgFrontend_1_1GpgKeyImportExporter.html#a0eede7c782d17b32d6c1f30cd8496561',1,'GpgFrontend::GpgKeyImportExporter']]], - ['gpgkeymanager_1094',['GpgKeyManager',['../classGpgFrontend_1_1GpgKeyManager.html#a210b717fd8ee63b064d77f32b0df4c5d',1,'GpgFrontend::GpgKeyManager']]], - ['gpgkeyopera_1095',['GpgKeyOpera',['../classGpgFrontend_1_1GpgKeyOpera.html#a01d6a920156a38a34c57d9c49c361079',1,'GpgFrontend::GpgKeyOpera']]], - ['gpgkeysignature_1096',['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_1097',['GpgResultAnalyse',['../classGpgFrontend_1_1GpgResultAnalyse.html#aa3c9bdf1ea4c87476010ef32fd2fb426',1,'GpgFrontend::GpgResultAnalyse']]], - ['gpgsignature_1098',['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_1099',['GpgSignResultAnalyse',['../classGpgFrontend_1_1GpgSignResultAnalyse.html#a3ddd2d52ad91fdf7f4c8740312570c8e',1,'GpgFrontend::GpgSignResultAnalyse']]], - ['gpgsubkey_1100',['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_1101',['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_1102',['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_1103',['GpgUIDOperator',['../classGpgFrontend_1_1GpgUIDOperator.html#ab74a830c858ab9ff135375743393a7c7',1,'GpgFrontend::GpgUIDOperator']]], - ['gpgverifyresultanalyse_1104',['GpgVerifyResultAnalyse',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#ab1d67da5dbe5bd2d665f7121e5f5354b',1,'GpgFrontend::GpgVerifyResultAnalyse']]] + ['generaldialog_974',['GeneralDialog',['../classGpgFrontend_1_1UI_1_1GeneralDialog.html#ac9de4c49668ffaeb6916c64f878a202c',1,'GpgFrontend::UI::GeneralDialog']]], + ['generalmainwindow_975',['GeneralMainWindow',['../classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a62b24183ebf9da18852084879bcb1013',1,'GpgFrontend::UI::GeneralMainWindow']]], + ['generaltab_976',['GeneralTab',['../classGpgFrontend_1_1UI_1_1GeneralTab.html#a214079dfbacdc6898146c8468611cf0c',1,'GpgFrontend::UI::GeneralTab']]], + ['generate_977',['Generate',['../classGpgFrontend_1_1PassphraseGenerator.html#a8b4ee1083343fba6d947b85cd66079b8',1,'GpgFrontend::PassphraseGenerator']]], + ['generate_5fkey_5fpackage_5fname_978',['generate_key_package_name',['../classGpgFrontend_1_1KeyPackageOperator.html#a825d987dacd8a99d9d87729e1861a152',1,'GpgFrontend::KeyPackageOperator']]], + ['generate_5fuuid_979',['generate_uuid',['../classGpgFrontend_1_1Thread_1_1Task.html#a96d087abb7cf99d16f778f1a93b4f9e5',1,'GpgFrontend::Thread::Task']]], + ['generatekey_980',['GenerateKey',['../classGpgFrontend_1_1GpgKeyOpera.html#a4cc3ac91613164d7dc61a016a2b4caea',1,'GpgFrontend::GpgKeyOpera']]], + ['generatekeypackage_981',['GenerateKeyPackage',['../classGpgFrontend_1_1KeyPackageOperator.html#ade02f022e405e98377343c4667c206e9',1,'GpgFrontend::KeyPackageOperator']]], + ['generatekeypackagename_982',['GenerateKeyPackageName',['../classGpgFrontend_1_1KeyPackageOperator.html#ae90b362a32b6f6014cda1dc232bd3f0e',1,'GpgFrontend::KeyPackageOperator']]], + ['generatepassphrase_983',['GeneratePassphrase',['../classGpgFrontend_1_1KeyPackageOperator.html#a6d9cf022a1e0cf54c061495f59c1b4b9',1,'GpgFrontend::KeyPackageOperator']]], + ['generaterevokecert_984',['GenerateRevokeCert',['../classGpgFrontend_1_1GpgKeyOpera.html#a91a9a9f24f6b620ea7b906c529e3d9a4',1,'GpgFrontend::GpgKeyOpera']]], + ['generatesubkey_985',['GenerateSubkey',['../classGpgFrontend_1_1GpgKeyOpera.html#a882d99e8407cc22fb8b6e61c531fbe85',1,'GpgFrontend::GpgKeyOpera']]], + ['genkeyinfo_986',['GenKeyInfo',['../classGpgFrontend_1_1GenKeyInfo.html#a34eca1662ba8d4645751f3ee66582b04',1,'GpgFrontend::GenKeyInfo']]], + ['get_5ffile_5fextension_987',['get_file_extension',['../namespaceGpgFrontend.html#acff2cf5dd5b112b324fa6574ee935f79',1,'GpgFrontend']]], + ['get_5fheap_5fptr_988',['get_heap_ptr',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a0e1ab5e5bf5ef647a30a5ee2884ac63a',1,'GpgFrontend::Thread::Task::DataObject']]], + ['get_5fkey_5fin_5fcache_989',['get_key_in_cache',['../classGpgFrontend_1_1GpgKeyGetter.html#ab5196ef4ed5323fc2af70abf801ea260',1,'GpgFrontend::GpgKeyGetter']]], + ['get_5fonly_5ffile_5fname_5fwith_5fpath_990',['get_only_file_name_with_path',['../namespaceGpgFrontend.html#a5a2f5fc1ad3de55e41a1b7a388821328',1,'GpgFrontend']]], + ['get_5frestart_5fneeded_991',['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_992',['get_selected_subkey',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#aedc5f77d6bf9b780b96552a43b323feb',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], + ['get_5fsign_5fselected_993',['get_sign_selected',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a2d7c328d726436061f19a287e481268d',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['get_5fstatus_5fstring_994',['get_status_string',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#ae682853c7eccfd3a6be43765f162f5a4',1,'GpgFrontend::UI::KeyImportDetailDialog']]], + ['get_5fuid_5fchecked_995',['get_uid_checked',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a7898b6fa328bfbc55ee2721bca4b2af1',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['get_5fuid_5fselected_996',['get_uid_selected',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a161bc9787be40a32f487c79faaeb54bf',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['getalgo_997',['GetAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#a6a65ba347156373b6cf98eb8e851d28d',1,'GpgFrontend::GenKeyInfo']]], + ['getallchannelid_998',['GetAllChannelId',['../classGpgFrontend_1_1SingletonFunctionObject.html#a5f2f0474871971f86ff91fb6a2408621',1,'GpgFrontend::SingletonFunctionObject::GetAllChannelId()'],['../classGpgFrontend_1_1SingletonStorage.html#a3f09424ebdc097fbdab77564a7d723ea',1,'GpgFrontend::SingletonStorage::GetAllChannelId()']]], + ['getallprivatekeys_999',['GetAllPrivateKeys',['../classGpgFrontend_1_1UI_1_1KeyList.html#a7ead8845ceb7c9310e3f4742251e1d87',1,'GpgFrontend::UI::KeyList']]], + ['getappdir_1000',['GetAppDir',['../classGpgFrontend_1_1GlobalSettingStation.html#ae9d1da3d01c4a834120968636596c3c3',1,'GpgFrontend::GlobalSettingStation']]], + ['getbrowser_1001',['GetBrowser',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a92c31eea47b42be28c86431384b27846',1,'GpgFrontend::UI::HelpPage']]], + ['getcertsdir_1002',['GetCertsDir',['../classGpgFrontend_1_1GlobalSettingStation.html#a385ae4ab6ad5b17742a5405fa693d789',1,'GpgFrontend::GlobalSettingStation']]], + ['getchannel_1003',['GetChannel',['../classGpgFrontend_1_1ChannelObject.html#a0e13a4bff1cfb679f68a3a2590a3b1b8',1,'GpgFrontend::ChannelObject::GetChannel()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#aa99440b9177f5d0c18840f08a40d64b7',1,'GpgFrontend::SingletonFunctionObject::GetChannel()']]], + ['getchecked_1004',['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_1005',['GetCheckedSigners',['../classGpgFrontend_1_1UI_1_1SignersPicker.html#a2e98dcdf647a2e0e6455998b018aed00',1,'GpgFrontend::UI::SignersPicker']]], + ['getcomment_1006',['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_1007',['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_1008',['GetDefaultChannel',['../classGpgFrontend_1_1ChannelObject.html#aece9c525c49900734bc1bebf85b644ef',1,'GpgFrontend::ChannelObject::GetDefaultChannel()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a50e2b3794d6553f4231eaec72d9d0a50',1,'GpgFrontend::SingletonFunctionObject::GetDefaultChannel()']]], + ['getdescription_1009',['GetDescription',['../classGpgFrontend_1_1GpgTOFUInfo.html#a471a08bc906d74699f394e34d2581b78',1,'GpgFrontend::GpgTOFUInfo']]], + ['getemail_1010',['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_1011',['GetEncrCount',['../classGpgFrontend_1_1GpgTOFUInfo.html#abc53f7ca1b737ed1a913ad2f90a346e4',1,'GpgFrontend::GpgTOFUInfo']]], + ['getencrlast_1012',['GetEncrLast',['../classGpgFrontend_1_1GpgTOFUInfo.html#a03f286ac6f16ec6d33eb3dcfd4e3f6d5',1,'GpgFrontend::GpgTOFUInfo']]], + ['getexpiretime_1013',['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_1014',['GetFilePath',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aff81f0f98a399fa55b6b0ebf2230d4cf',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['getfingerprint_1015',['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_1016',['GetFullID',['../classGpgFrontend_1_1Thread_1_1Task.html#a3df2340426251e9145e5fe4419937e2a',1,'GpgFrontend::Thread::Task']]], + ['gethashalgo_1017',['GetHashAlgo',['../classGpgFrontend_1_1GpgSignature.html#ace10a3ac7f4dc3888b2ad62157213f1c',1,'GpgFrontend::GpgSignature']]], + ['getid_1018',['GetId',['../classGpgFrontend_1_1GpgKey.html#a8930f958f3ca1f5566f63e8c2273837e',1,'GpgFrontend::GpgKey']]], + ['getid_1019',['GetID',['../classGpgFrontend_1_1GpgSubKey.html#a48d3dfbd3aae9523ffbdb916aad8ad53',1,'GpgFrontend::GpgSubKey']]], + ['getinfo_1020',['GetInfo',['../classGpgFrontend_1_1GpgContext.html#a4a8f6ff37e45979159ab375b2c7d48c3',1,'GpgFrontend::GpgContext']]], + ['getinstance_1021',['GetInstance',['../classGpgFrontend_1_1SingletonFunctionObject.html#a70484d7cfe9f9dcbcd5f8bb749250f36',1,'GpgFrontend::SingletonFunctionObject::GetInstance()'],['../classGpgFrontend_1_1SingletonStorageCollection.html#ac56d19e0d4b99e7b8a86a017721f3db1',1,'GpgFrontend::SingletonStorageCollection::GetInstance()'],['../classGpgFrontend_1_1UI_1_1CommonUtils.html#aed529969f54e39e3f9da14ae6dd00d49',1,'GpgFrontend::UI::CommonUtils::GetInstance()'],['../classGpgFrontend_1_1CoreSignalStation.html#a0c5893909726b919ea733de9906cfb36',1,'GpgFrontend::CoreSignalStation::GetInstance()'],['../classGpgFrontend_1_1UI_1_1SignalStation.html#abe381ce56a7b157a3760b2fd9c3b7419',1,'GpgFrontend::UI::SignalStation::GetInstance()'],['../classGpgFrontend_1_1CoreCommonUtil.html#a8588dfa6ccb57c055f022b13e2da1e7c',1,'GpgFrontend::CoreCommonUtil::GetInstance()'],['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a9b341a1a903cec0c70a6af4bb230905e',1,'GpgFrontend::UI::GpgFrontendApplication::GetInstance()']]], + ['getinvalid_1022',['GetInvalid',['../classGpgFrontend_1_1GpgUID.html#a388ad367d353edd5eeb6e529977c924c',1,'GpgFrontend::GpgUID']]], + ['getkey_1023',['GetKey',['../classGpgFrontend_1_1GpgKeyGetter.html#a94243d09c9418c8ebf0c7cdab4a2b7f1',1,'GpgFrontend::GpgKeyGetter']]], + ['getkeyid_1024',['GetKeyID',['../classGpgFrontend_1_1GpgKeySignature.html#a4277f6deb7c07aaba62fbe8e7867b1fe',1,'GpgFrontend::GpgKeySignature']]], + ['getkeylength_1025',['GetKeyLength',['../classGpgFrontend_1_1GpgSubKey.html#a18d7a2f0a3cee32a123b780f2b8b8708',1,'GpgFrontend::GpgSubKey::GetKeyLength()'],['../classGpgFrontend_1_1GenKeyInfo.html#a4927a9091fa2b2f68f6b60ce78ab2fe9',1,'GpgFrontend::GenKeyInfo::GetKeyLength()']]], + ['getkeys_1026',['GetKeys',['../classGpgFrontend_1_1GpgKeyGetter.html#aa5979c21af58b874b33c203752dcc805',1,'GpgFrontend::GpgKeyGetter']]], + ['getkeyscopy_1027',['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_1028',['GetKeySizeStr',['../classGpgFrontend_1_1GenKeyInfo.html#a0bda4b4161d805582869ec0e56ade07c',1,'GpgFrontend::GenKeyInfo']]], + ['getlastupdatetime_1029',['GetLastUpdateTime',['../classGpgFrontend_1_1GpgKey.html#a3532e20298b642f5d312712fa8a791df',1,'GpgFrontend::GpgKey']]], + ['getlatestversion_1030',['getLatestVersion',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a7329657135624fc42ad80d821e11befe',1,'GpgFrontend::UI::UpdateTab']]], + ['getlocaledir_1031',['GetLocaleDir',['../classGpgFrontend_1_1GlobalSettingStation.html#a0b3780564305e9b210d66ef377c21565',1,'GpgFrontend::GlobalSettingStation']]], + ['getlogdir_1032',['GetLogDir',['../classGpgFrontend_1_1GlobalSettingStation.html#a7da9b08291ef2391892f5c9375b8db23',1,'GpgFrontend::GlobalSettingStation']]], + ['getname_1033',['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_1034',['GetObjectSize',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#aa35e6ad1ef3a5733fb338f3333b5c637',1,'GpgFrontend::Thread::Task::DataObject']]], + ['getownertrust_1035',['GetOwnerTrust',['../classGpgFrontend_1_1GpgKey.html#a3327ad34ff14feb75f3fbfc2bfb7fc44',1,'GpgFrontend::GpgKey']]], + ['getpassphrase_1036',['GetPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#a890ee16ef6088570360a073a6b531c89',1,'GpgFrontend::GenKeyInfo']]], + ['getpolicy_1037',['GetPolicy',['../classGpgFrontend_1_1GpgTOFUInfo.html#a34d1073bb25a8958e70016f3cd6b167f',1,'GpgFrontend::GpgTOFUInfo']]], + ['getprimarykeylength_1038',['GetPrimaryKeyLength',['../classGpgFrontend_1_1GpgKey.html#a5b276fdeb438fe14ec2850d799401be6',1,'GpgFrontend::GpgKey']]], + ['getprivatechecked_1039',['GetPrivateChecked',['../classGpgFrontend_1_1UI_1_1KeyList.html#a81c2e36427371fa6ae6381870b9b5bdd',1,'GpgFrontend::UI::KeyList']]], + ['getprotocol_1040',['GetProtocol',['../classGpgFrontend_1_1GpgKey.html#ad2440a2902c81192d5549fe951ddb130',1,'GpgFrontend::GpgKey']]], + ['getpubkey_1041',['GetPubkey',['../classGpgFrontend_1_1GpgKeyGetter.html#a7a8bc7c0f12a11e108051e4c824fc430',1,'GpgFrontend::GpgKeyGetter']]], + ['getpubkeyalgo_1042',['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_1043',['GetPublicKeyAlgo',['../classGpgFrontend_1_1GpgKey.html#a1c21bc3b1788753f56272ad73052fc5f',1,'GpgFrontend::GpgKey']]], + ['getresourcedir_1044',['GetResourceDir',['../classGpgFrontend_1_1GlobalSettingStation.html#afc1aa3dec55ae4e741f92fce1140a2d0',1,'GpgFrontend::GlobalSettingStation']]], + ['getresultreport_1045',['GetResultReport',['../classGpgFrontend_1_1GpgResultAnalyse.html#aa9e35e573ea4c0ebdbb014d1afbaab9d',1,'GpgFrontend::GpgResultAnalyse']]], + ['getrevoked_1046',['GetRevoked',['../classGpgFrontend_1_1GpgUID.html#a32450fbf22c64cf522e9a090423344a2',1,'GpgFrontend::GpgUID']]], + ['getselected_1047',['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_1048',['GetSelectedKey',['../classGpgFrontend_1_1UI_1_1KeyList.html#ab4368b81402e2468a9e960de8fb7080f',1,'GpgFrontend::UI::KeyList']]], + ['getsequency_1049',['GetSequency',['../classGpgFrontend_1_1Thread_1_1Task.html#a80f47accc0832e3aee686ee2879b431e',1,'GpgFrontend::Thread::Task']]], + ['getsignatures_1050',['GetSignatures',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a2063acf8262e2c600b14ed1948486ac3',1,'GpgFrontend::GpgVerifyResultAnalyse::GetSignatures()'],['../classGpgFrontend_1_1GpgUID.html#af7b5310b319378c30c488277e95ef601',1,'GpgFrontend::GpgUID::GetSignatures()']]], + ['getsigncount_1051',['GetSignCount',['../classGpgFrontend_1_1GpgTOFUInfo.html#a681046a3916d0d0cdcf0852bfa76fdb0',1,'GpgFrontend::GpgTOFUInfo']]], + ['getsigners_1052',['GetSigners',['../classGpgFrontend_1_1GpgBasicOperator.html#a78f37b8d5afd6c0248665a4415f880cf',1,'GpgFrontend::GpgBasicOperator']]], + ['getsignfirst_1053',['GetSignFirst',['../classGpgFrontend_1_1GpgTOFUInfo.html#a788a439b206882c6317162878e2fe0b8',1,'GpgFrontend::GpgTOFUInfo']]], + ['getsignlast_1054',['GetSignLast',['../classGpgFrontend_1_1GpgTOFUInfo.html#a746cbcf731af6b19ade42debbf1e2c8f',1,'GpgFrontend::GpgTOFUInfo']]], + ['getsingletonstorage_1055',['GetSingletonStorage',['../classGpgFrontend_1_1SingletonStorageCollection.html#a6f933390c54b7f55d5ffb4624074725f',1,'GpgFrontend::SingletonStorageCollection']]], + ['getsizechangestep_1056',['GetSizeChangeStep',['../classGpgFrontend_1_1GenKeyInfo.html#ac211a7a615805ae97ff284b46abfeab7',1,'GpgFrontend::GenKeyInfo']]], + ['getstandalonedatabasedir_1057',['GetStandaloneDatabaseDir',['../classGpgFrontend_1_1GlobalSettingStation.html#af484ca46c5df831a9dd76f3a88d66332',1,'GpgFrontend::GlobalSettingStation']]], + ['getstandalonegpgbindir_1058',['GetStandaloneGpgBinDir',['../classGpgFrontend_1_1GlobalSettingStation.html#aa93b21af9ac6649d5749c83c809f5b00',1,'GpgFrontend::GlobalSettingStation']]], + ['getstatus_1059',['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_1060',['GetSubKeys',['../classGpgFrontend_1_1GpgKey.html#a746699842f6c49687af0487a8b3b163d',1,'GpgFrontend::GpgKey']]], + ['getsuggestmaxkeysize_1061',['GetSuggestMaxKeySize',['../classGpgFrontend_1_1GenKeyInfo.html#ae461a553176ad1ab0c1121ea6de6c8c2',1,'GpgFrontend::GenKeyInfo']]], + ['getsuggestminkeysize_1062',['GetSuggestMinKeySize',['../classGpgFrontend_1_1GenKeyInfo.html#a0b1612421148b86919b7130ed148ca51',1,'GpgFrontend::GenKeyInfo']]], + ['getsummary_1063',['GetSummary',['../classGpgFrontend_1_1GpgSignature.html#a3b143f6e13b71663d81fc0f326aad17f',1,'GpgFrontend::GpgSignature']]], + ['getsupportedkeyalgo_1064',['GetSupportedKeyAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#ac0dbb2d89b1e5f9b272679ba3f24314e',1,'GpgFrontend::GenKeyInfo']]], + ['getsupportedkeyalgostandalone_1065',['GetSupportedKeyAlgoStandalone',['../classGpgFrontend_1_1GenKeyInfo.html#afb8315b6612c64b3921b72df98ebcc74',1,'GpgFrontend::GenKeyInfo']]], + ['getsupportedsubkeyalgo_1066',['GetSupportedSubkeyAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#a168d6fe5252812f5984ba6d8046c7741',1,'GpgFrontend::GenKeyInfo']]], + ['getsupportedsubkeyalgostandalone_1067',['GetSupportedSubkeyAlgoStandalone',['../classGpgFrontend_1_1GenKeyInfo.html#a6819b0ca3ef7712b85ae320030cde023',1,'GpgFrontend::GenKeyInfo']]], + ['gettabidstosave_1068',['GetTabIdsToSave',['../classGpgFrontend_1_1UI_1_1QuitDialog.html#aec364c38056b6d92c172f8cdfb5f8e82',1,'GpgFrontend::UI::QuitDialog']]], + ['gettempcachevalue_1069',['GetTempCacheValue',['../classGpgFrontend_1_1CoreCommonUtil.html#aa3e4003ca3248537973ea6cf42e9f040',1,'GpgFrontend::CoreCommonUtil']]], + ['gettextpage_1070',['GetTextPage',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a6218e6e12bdba0228e4ab4276f7fed7a',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['gettofuinfos_1071',['GetTofuInfos',['../classGpgFrontend_1_1GpgUID.html#a2a36376484f7c1a4a19377d24e47a0b2',1,'GpgFrontend::GpgUID']]], + ['getuid_1072',['GetUID',['../classGpgFrontend_1_1GpgKeySignature.html#a95254ea2c00829b9dc87adc4a317cde5',1,'GpgFrontend::GpgKeySignature::GetUID()'],['../classGpgFrontend_1_1GpgUID.html#a467897d43a18b0cadd2e2e44384f6cdd',1,'GpgFrontend::GpgUID::GetUID()']]], + ['getuids_1073',['GetUIDs',['../classGpgFrontend_1_1GpgKey.html#ac8b13b45e487cdc423b78d3017897f99',1,'GpgFrontend::GpgKey']]], + ['getuisettings_1074',['GetUISettings',['../classGpgFrontend_1_1GlobalSettingStation.html#a1d8b9f91c75ef7a1d008a171f09f2c0e',1,'GpgFrontend::GlobalSettingStation']]], + ['getuserid_1075',['GetUserid',['../classGpgFrontend_1_1GenKeyInfo.html#a4ee4a0659e76376d9bfc527c334392e1',1,'GpgFrontend::GenKeyInfo']]], + ['getuuid_1076',['GetUUID',['../classGpgFrontend_1_1Thread_1_1Task.html#a50b91d27874af31ef13c493b00824ccf',1,'GpgFrontend::Thread::Task']]], + ['getvalidity_1077',['GetValidity',['../classGpgFrontend_1_1GpgSignature.html#a09cb6b465e85dffcf7867e70a276e9ad',1,'GpgFrontend::GpgSignature::GetValidity()'],['../classGpgFrontend_1_1GpgTOFUInfo.html#a8770062c9e0c3875083d2c92ebe8ccb0',1,'GpgFrontend::GpgTOFUInfo::GetValidity()']]], + ['globalsettingstation_1078',['GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html#abdc6dda369d4214e43ffa2930f7386b0',1,'GpgFrontend::GlobalSettingStation']]], + ['gnupgcontrollerdialog_1079',['GnuPGControllerDialog',['../classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html#add69685b9c83ed03ed24d36f2badd835',1,'GpgFrontend::UI::GnuPGControllerDialog']]], + ['gnupgtab_1080',['GnupgTab',['../classGpgFrontend_1_1UI_1_1GnupgTab.html#ab9d9e8af4494659f13b87804e7318a79',1,'GpgFrontend::UI::GnupgTab']]], + ['good_1081',['good',['../classGpgFrontend_1_1GpgContext.html#a73c505a2f3d39d1638dc4d9a3e13a913',1,'GpgFrontend::GpgContext']]], + ['gpgadvancedoperator_1082',['GpgAdvancedOperator',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a9233156767f1d45272b95decd18241e3',1,'GpgFrontend::GpgAdvancedOperator']]], + ['gpgbasicoperator_1083',['GpgBasicOperator',['../classGpgFrontend_1_1GpgBasicOperator.html#a139be86330f88e5f833aa24263a3b2ae',1,'GpgFrontend::GpgBasicOperator']]], + ['gpgcommandexecutor_1084',['GpgCommandExecutor',['../classGpgFrontend_1_1GpgCommandExecutor.html#a94240f423464600938bfcafa2b186c38',1,'GpgFrontend::GpgCommandExecutor']]], + ['gpgcontext_1085',['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_1086',['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_1087',['GpgDecryptResultAnalyse',['../classGpgFrontend_1_1GpgDecryptResultAnalyse.html#a442438ae58cdd7220f0e4b0792e5a372',1,'GpgFrontend::GpgDecryptResultAnalyse']]], + ['gpgencryptresultanalyse_1088',['GpgEncryptResultAnalyse',['../classGpgFrontend_1_1GpgEncryptResultAnalyse.html#a0801e32c8709da373f6715bc994a7747',1,'GpgFrontend::GpgEncryptResultAnalyse']]], + ['gpgfileopera_1089',['GpgFileOpera',['../classGpgFrontend_1_1GpgFileOpera.html#aa81da3d72c4fbc57e7138bfec7731152',1,'GpgFrontend::GpgFileOpera']]], + ['gpgfrontendapplication_1090',['GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#ac0290f06e08f2714f9727bb578df1298',1,'GpgFrontend::UI::GpgFrontendApplication']]], + ['gpgimportinformation_1091',['GpgImportInformation',['../classGpgFrontend_1_1GpgImportInformation.html#ab282d4f701403cd68eb02d1aad30be56',1,'GpgFrontend::GpgImportInformation']]], + ['gpgkey_1092',['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_1093',['GpgKeyGetter',['../classGpgFrontend_1_1GpgKeyGetter.html#a8eeee9f6dd74dc24c24794ce63c62285',1,'GpgFrontend::GpgKeyGetter']]], + ['gpgkeyimportexporter_1094',['GpgKeyImportExporter',['../classGpgFrontend_1_1GpgKeyImportExporter.html#a0eede7c782d17b32d6c1f30cd8496561',1,'GpgFrontend::GpgKeyImportExporter']]], + ['gpgkeymanager_1095',['GpgKeyManager',['../classGpgFrontend_1_1GpgKeyManager.html#a210b717fd8ee63b064d77f32b0df4c5d',1,'GpgFrontend::GpgKeyManager']]], + ['gpgkeyopera_1096',['GpgKeyOpera',['../classGpgFrontend_1_1GpgKeyOpera.html#a01d6a920156a38a34c57d9c49c361079',1,'GpgFrontend::GpgKeyOpera']]], + ['gpgkeysignature_1097',['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_1098',['GpgResultAnalyse',['../classGpgFrontend_1_1GpgResultAnalyse.html#aa3c9bdf1ea4c87476010ef32fd2fb426',1,'GpgFrontend::GpgResultAnalyse']]], + ['gpgsignature_1099',['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_1100',['GpgSignResultAnalyse',['../classGpgFrontend_1_1GpgSignResultAnalyse.html#a3ddd2d52ad91fdf7f4c8740312570c8e',1,'GpgFrontend::GpgSignResultAnalyse']]], + ['gpgsubkey_1101',['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_1102',['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_1103',['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_1104',['GpgUIDOperator',['../classGpgFrontend_1_1GpgUIDOperator.html#ab74a830c858ab9ff135375743393a7c7',1,'GpgFrontend::GpgUIDOperator']]], + ['gpgverifyresultanalyse_1105',['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 2d5f5870..98a0c465 100644 --- a/docs/html/search/functions_8.js +++ b/docs/html/search/functions_8.js @@ -1,4 +1,4 @@ var searchData= [ - ['helppage_1105',['HelpPage',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a1be8f5b79fef3d1d62ff4620b8535006',1,'GpgFrontend::UI::HelpPage']]] + ['helppage_1106',['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 cca04d8c..53d60c71 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_1106',['import_key_from_keyserver',['../namespaceGpgFrontend_1_1UI.html#aa346bd199cecc61b15ef406728b58770',1,'GpgFrontend::UI']]], - ['import_5fkeys_1107',['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_1108',['import_unknown_key_from_keyserver',['../namespaceGpgFrontend_1_1UI.html#a9ab218dde057182cb4911c4792acd925',1,'GpgFrontend::UI']]], - ['importkey_1109',['ImportKey',['../classGpgFrontend_1_1GpgKeyImportExporter.html#ab7a9be5283047695cd47562775adf79d',1,'GpgFrontend::GpgKeyImportExporter']]], - ['importkeypackage_1110',['ImportKeyPackage',['../classGpgFrontend_1_1KeyPackageOperator.html#a89538b180a42eb7d6ae53583fe10ee07',1,'GpgFrontend::KeyPackageOperator']]], - ['infoboardwidget_1111',['InfoBoardWidget',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#adeef521a8838bf2a1692c25d9b108010',1,'GpgFrontend::UI::InfoBoardWidget']]], - ['infotab_1112',['InfoTab',['../classGpgFrontend_1_1UI_1_1InfoTab.html#a99d8b059ee28ea257981892e0b35d4cc',1,'GpgFrontend::UI::InfoTab']]], - ['infovalid_1113',['InfoValid',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#aec79eefdc19c90e046cb48bca347ff1c',1,'GpgFrontend::UI::SoftwareVersion']]], - ['init_1114',['Init',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a08ba4521f68c488b23b651e201011759',1,'GpgFrontend::UI::MainWindow']]], - ['init_5fapp_5fsecure_5fkey_1115',['init_app_secure_key',['../classGpgFrontend_1_1DataObjectOperator.html#a6b357780482f0e0c021ad55a81eb37cf',1,'GpgFrontend::DataObjectOperator']]], - ['init_5flocale_1116',['init_locale',['../namespaceGpgFrontend_1_1UI.html#a157c74e50283da9ed554cf7bf90afbee',1,'GpgFrontend::UI']]], - ['initcoreloggingsystem_1117',['InitCoreLoggingSystem',['../namespaceGpgFrontend.html#ab4a865228be071282d2a08e66ef6cb68',1,'GpgFrontend']]], - ['initgpgfrontendui_1118',['InitGpgFrontendUI',['../namespaceGpgFrontend_1_1UI.html#ab0311557c1d7bde9c56cbca85fefa6ad',1,'GpgFrontend::UI']]], - ['intropage_1119',['IntroPage',['../classGpgFrontend_1_1UI_1_1IntroPage.html#aed4220a7372b192ee4e8bc5024db922d',1,'GpgFrontend::UI::IntroPage']]], - ['isallowauthentication_1120',['IsAllowAuthentication',['../classGpgFrontend_1_1GenKeyInfo.html#aabdf981c65a0efde1e8905441b9b9c87',1,'GpgFrontend::GenKeyInfo']]], - ['isallowcertification_1121',['IsAllowCertification',['../classGpgFrontend_1_1GenKeyInfo.html#ad47ceeb1ccfa8862843034e51b4d8be7',1,'GpgFrontend::GenKeyInfo']]], - ['isallowchangeauthentication_1122',['IsAllowChangeAuthentication',['../classGpgFrontend_1_1GenKeyInfo.html#aaf8ab7c6564a2836837a537111d6f5b4',1,'GpgFrontend::GenKeyInfo']]], - ['isallowchangecertification_1123',['IsAllowChangeCertification',['../classGpgFrontend_1_1GenKeyInfo.html#adbcddd0fa0a273f9b77fe1297633dabc',1,'GpgFrontend::GenKeyInfo']]], - ['isallowchangeencryption_1124',['IsAllowChangeEncryption',['../classGpgFrontend_1_1GenKeyInfo.html#ad04a906300bea028c6fb6b1b2da1d149',1,'GpgFrontend::GenKeyInfo']]], - ['isallowchangesigning_1125',['IsAllowChangeSigning',['../classGpgFrontend_1_1GenKeyInfo.html#a06f95a8d26da79bcbe7d51e266879a94',1,'GpgFrontend::GenKeyInfo']]], - ['isallowencryption_1126',['IsAllowEncryption',['../classGpgFrontend_1_1GenKeyInfo.html#a28ed8a65243e5bc69403305752c2cdc9',1,'GpgFrontend::GenKeyInfo']]], - ['isallownopassphrase_1127',['IsAllowNoPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#af6a79124a4571ff7f37c1c5e6c1a9415',1,'GpgFrontend::GenKeyInfo']]], - ['isallowsigning_1128',['IsAllowSigning',['../classGpgFrontend_1_1GenKeyInfo.html#ad972292c408cb83c08e739327795a5f0',1,'GpgFrontend::GenKeyInfo']]], - ['iscardkey_1129',['IsCardKey',['../classGpgFrontend_1_1GpgSubKey.html#ad818aa66e47d6686eb8ff253b3c21814',1,'GpgFrontend::GpgSubKey']]], - ['isdisabled_1130',['IsDisabled',['../classGpgFrontend_1_1GpgSubKey.html#a75abb60a2130efc7fad8ab8fb3157042',1,'GpgFrontend::GpgSubKey::IsDisabled()'],['../classGpgFrontend_1_1GpgKey.html#a7eaf1e722d8a59f6a86d8e732217d89c',1,'GpgFrontend::GpgKey::IsDisabled()']]], - ['isdiscarded_1131',['IsDiscarded',['../classGpgFrontend_1_1UI_1_1QuitDialog.html#a4c4bc06d1d168f01569ed83dcfd50d55',1,'GpgFrontend::UI::QuitDialog']]], - ['isexpired_1132',['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_1133',['IsExportable',['../classGpgFrontend_1_1GpgKeySignature.html#a19fc1ca3733b576e12628e333e2c449e',1,'GpgFrontend::GpgKeySignature']]], - ['isgood_1134',['IsGood',['../classGpgFrontend_1_1GpgKey.html#a59e76d40f01e765f0544e5c6a2851be6',1,'GpgFrontend::GpgKey']]], - ['ishasactualauthenticationcapability_1135',['IsHasActualAuthenticationCapability',['../classGpgFrontend_1_1GpgKey.html#a371a24c4e9d3b99a36f76ff8c7f2d0e6',1,'GpgFrontend::GpgKey']]], - ['ishasactualcertificationcapability_1136',['IsHasActualCertificationCapability',['../classGpgFrontend_1_1GpgKey.html#ae370e41a7ea7307fbf4d28e0f2a67e0c',1,'GpgFrontend::GpgKey']]], - ['ishasactualencryptioncapability_1137',['IsHasActualEncryptionCapability',['../classGpgFrontend_1_1GpgKey.html#aaa66d803456152fed9ba4cf5bce7b99d',1,'GpgFrontend::GpgKey']]], - ['ishasactualsigningcapability_1138',['IsHasActualSigningCapability',['../classGpgFrontend_1_1GpgKey.html#aefa0a44adb1b7c49553a85b545fdffe1',1,'GpgFrontend::GpgKey']]], - ['ishasauthenticationcapability_1139',['IsHasAuthenticationCapability',['../classGpgFrontend_1_1GpgKey.html#afdffba6dfb6009a0b320623df7a26be0',1,'GpgFrontend::GpgKey::IsHasAuthenticationCapability()'],['../classGpgFrontend_1_1GpgSubKey.html#a04d9df643cd08200cd742dc243be6cd6',1,'GpgFrontend::GpgSubKey::IsHasAuthenticationCapability()']]], - ['ishascardkey_1140',['IsHasCardKey',['../classGpgFrontend_1_1GpgKey.html#afedc843415bd4b59687e975006e470ed',1,'GpgFrontend::GpgKey']]], - ['ishascertificationcapability_1141',['IsHasCertificationCapability',['../classGpgFrontend_1_1GpgSubKey.html#a56938360f873949aa9ba3dbdaab519d1',1,'GpgFrontend::GpgSubKey::IsHasCertificationCapability()'],['../classGpgFrontend_1_1GpgKey.html#a2d28e72cfb741deeadfe02ff456fb490',1,'GpgFrontend::GpgKey::IsHasCertificationCapability()']]], - ['ishasencryptioncapability_1142',['IsHasEncryptionCapability',['../classGpgFrontend_1_1GpgSubKey.html#ab67395a986184cb9b20f3dc178fc52be',1,'GpgFrontend::GpgSubKey::IsHasEncryptionCapability()'],['../classGpgFrontend_1_1GpgKey.html#a60b342ca6e1062d4489d8ba8f7a5a605',1,'GpgFrontend::GpgKey::IsHasEncryptionCapability() const']]], - ['ishasmasterkey_1143',['IsHasMasterKey',['../classGpgFrontend_1_1GpgKey.html#aadac1b776764ee9d0ca4f8bb9f9e0741',1,'GpgFrontend::GpgKey']]], - ['ishassigningcapability_1144',['IsHasSigningCapability',['../classGpgFrontend_1_1GpgSubKey.html#ab9208165c74b93fa8c5b7a06cd808f56',1,'GpgFrontend::GpgSubKey::IsHasSigningCapability()'],['../classGpgFrontend_1_1GpgKey.html#a635bbf8f08268cfdac1bc120981df877',1,'GpgFrontend::GpgKey::IsHasSigningCapability()']]], - ['isinvalid_1145',['IsInvalid',['../classGpgFrontend_1_1GpgKeySignature.html#a1725474a1c61c0a3d724dc2f999cb24a',1,'GpgFrontend::GpgKeySignature']]], - ['isnonexpired_1146',['IsNonExpired',['../classGpgFrontend_1_1GenKeyInfo.html#aeef7697c91b5b5998088979e09332380',1,'GpgFrontend::GenKeyInfo']]], - ['isnopassphrase_1147',['IsNoPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#a848181796a99bec8d32dc5eac240ee01',1,'GpgFrontend::GenKeyInfo']]], - ['isprivatekey_1148',['IsPrivateKey',['../classGpgFrontend_1_1GpgKey.html#a888c0263f04bdd52967e092b9c73eb6d',1,'GpgFrontend::GpgKey::IsPrivateKey()'],['../classGpgFrontend_1_1GpgSubKey.html#accb86b50755698b3e1e7fdfe06f44e84',1,'GpgFrontend::GpgSubKey::IsPrivateKey()']]], - ['isrevoked_1149',['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_1150',['IsSecretKey',['../classGpgFrontend_1_1GpgSubKey.html#a8fcbeae2ef3ad73a5aedee19f6de3e60',1,'GpgFrontend::GpgSubKey']]], - ['issubkey_1151',['IsSubKey',['../classGpgFrontend_1_1GenKeyInfo.html#a40a42ad975499566de124296c19e6c55',1,'GpgFrontend::GenKeyInfo']]] + ['import_5fkey_5ffrom_5fkeyserver_1107',['import_key_from_keyserver',['../namespaceGpgFrontend_1_1UI.html#aa346bd199cecc61b15ef406728b58770',1,'GpgFrontend::UI']]], + ['import_5fkeys_1108',['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_1109',['import_unknown_key_from_keyserver',['../namespaceGpgFrontend_1_1UI.html#a9ab218dde057182cb4911c4792acd925',1,'GpgFrontend::UI']]], + ['importkey_1110',['ImportKey',['../classGpgFrontend_1_1GpgKeyImportExporter.html#ab7a9be5283047695cd47562775adf79d',1,'GpgFrontend::GpgKeyImportExporter']]], + ['importkeypackage_1111',['ImportKeyPackage',['../classGpgFrontend_1_1KeyPackageOperator.html#a89538b180a42eb7d6ae53583fe10ee07',1,'GpgFrontend::KeyPackageOperator']]], + ['infoboardwidget_1112',['InfoBoardWidget',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#adeef521a8838bf2a1692c25d9b108010',1,'GpgFrontend::UI::InfoBoardWidget']]], + ['infotab_1113',['InfoTab',['../classGpgFrontend_1_1UI_1_1InfoTab.html#a99d8b059ee28ea257981892e0b35d4cc',1,'GpgFrontend::UI::InfoTab']]], + ['infovalid_1114',['InfoValid',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#aec79eefdc19c90e046cb48bca347ff1c',1,'GpgFrontend::UI::SoftwareVersion']]], + ['init_1115',['Init',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a08ba4521f68c488b23b651e201011759',1,'GpgFrontend::UI::MainWindow']]], + ['init_5fapp_5fsecure_5fkey_1116',['init_app_secure_key',['../classGpgFrontend_1_1DataObjectOperator.html#a6b357780482f0e0c021ad55a81eb37cf',1,'GpgFrontend::DataObjectOperator']]], + ['init_5flocale_1117',['init_locale',['../namespaceGpgFrontend_1_1UI.html#a157c74e50283da9ed554cf7bf90afbee',1,'GpgFrontend::UI']]], + ['initcoreloggingsystem_1118',['InitCoreLoggingSystem',['../namespaceGpgFrontend.html#ab4a865228be071282d2a08e66ef6cb68',1,'GpgFrontend']]], + ['initgpgfrontendui_1119',['InitGpgFrontendUI',['../namespaceGpgFrontend_1_1UI.html#ab0311557c1d7bde9c56cbca85fefa6ad',1,'GpgFrontend::UI']]], + ['intropage_1120',['IntroPage',['../classGpgFrontend_1_1UI_1_1IntroPage.html#aed4220a7372b192ee4e8bc5024db922d',1,'GpgFrontend::UI::IntroPage']]], + ['isallowauthentication_1121',['IsAllowAuthentication',['../classGpgFrontend_1_1GenKeyInfo.html#aabdf981c65a0efde1e8905441b9b9c87',1,'GpgFrontend::GenKeyInfo']]], + ['isallowcertification_1122',['IsAllowCertification',['../classGpgFrontend_1_1GenKeyInfo.html#ad47ceeb1ccfa8862843034e51b4d8be7',1,'GpgFrontend::GenKeyInfo']]], + ['isallowchangeauthentication_1123',['IsAllowChangeAuthentication',['../classGpgFrontend_1_1GenKeyInfo.html#aaf8ab7c6564a2836837a537111d6f5b4',1,'GpgFrontend::GenKeyInfo']]], + ['isallowchangecertification_1124',['IsAllowChangeCertification',['../classGpgFrontend_1_1GenKeyInfo.html#adbcddd0fa0a273f9b77fe1297633dabc',1,'GpgFrontend::GenKeyInfo']]], + ['isallowchangeencryption_1125',['IsAllowChangeEncryption',['../classGpgFrontend_1_1GenKeyInfo.html#ad04a906300bea028c6fb6b1b2da1d149',1,'GpgFrontend::GenKeyInfo']]], + ['isallowchangesigning_1126',['IsAllowChangeSigning',['../classGpgFrontend_1_1GenKeyInfo.html#a06f95a8d26da79bcbe7d51e266879a94',1,'GpgFrontend::GenKeyInfo']]], + ['isallowencryption_1127',['IsAllowEncryption',['../classGpgFrontend_1_1GenKeyInfo.html#a28ed8a65243e5bc69403305752c2cdc9',1,'GpgFrontend::GenKeyInfo']]], + ['isallownopassphrase_1128',['IsAllowNoPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#af6a79124a4571ff7f37c1c5e6c1a9415',1,'GpgFrontend::GenKeyInfo']]], + ['isallowsigning_1129',['IsAllowSigning',['../classGpgFrontend_1_1GenKeyInfo.html#ad972292c408cb83c08e739327795a5f0',1,'GpgFrontend::GenKeyInfo']]], + ['iscardkey_1130',['IsCardKey',['../classGpgFrontend_1_1GpgSubKey.html#ad818aa66e47d6686eb8ff253b3c21814',1,'GpgFrontend::GpgSubKey']]], + ['isdisabled_1131',['IsDisabled',['../classGpgFrontend_1_1GpgSubKey.html#a75abb60a2130efc7fad8ab8fb3157042',1,'GpgFrontend::GpgSubKey::IsDisabled()'],['../classGpgFrontend_1_1GpgKey.html#a7eaf1e722d8a59f6a86d8e732217d89c',1,'GpgFrontend::GpgKey::IsDisabled()']]], + ['isdiscarded_1132',['IsDiscarded',['../classGpgFrontend_1_1UI_1_1QuitDialog.html#a4c4bc06d1d168f01569ed83dcfd50d55',1,'GpgFrontend::UI::QuitDialog']]], + ['isexpired_1133',['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_1134',['IsExportable',['../classGpgFrontend_1_1GpgKeySignature.html#a19fc1ca3733b576e12628e333e2c449e',1,'GpgFrontend::GpgKeySignature']]], + ['isgood_1135',['IsGood',['../classGpgFrontend_1_1GpgKey.html#a59e76d40f01e765f0544e5c6a2851be6',1,'GpgFrontend::GpgKey']]], + ['ishasactualauthenticationcapability_1136',['IsHasActualAuthenticationCapability',['../classGpgFrontend_1_1GpgKey.html#a371a24c4e9d3b99a36f76ff8c7f2d0e6',1,'GpgFrontend::GpgKey']]], + ['ishasactualcertificationcapability_1137',['IsHasActualCertificationCapability',['../classGpgFrontend_1_1GpgKey.html#ae370e41a7ea7307fbf4d28e0f2a67e0c',1,'GpgFrontend::GpgKey']]], + ['ishasactualencryptioncapability_1138',['IsHasActualEncryptionCapability',['../classGpgFrontend_1_1GpgKey.html#aaa66d803456152fed9ba4cf5bce7b99d',1,'GpgFrontend::GpgKey']]], + ['ishasactualsigningcapability_1139',['IsHasActualSigningCapability',['../classGpgFrontend_1_1GpgKey.html#aefa0a44adb1b7c49553a85b545fdffe1',1,'GpgFrontend::GpgKey']]], + ['ishasauthenticationcapability_1140',['IsHasAuthenticationCapability',['../classGpgFrontend_1_1GpgKey.html#afdffba6dfb6009a0b320623df7a26be0',1,'GpgFrontend::GpgKey::IsHasAuthenticationCapability()'],['../classGpgFrontend_1_1GpgSubKey.html#a04d9df643cd08200cd742dc243be6cd6',1,'GpgFrontend::GpgSubKey::IsHasAuthenticationCapability()']]], + ['ishascardkey_1141',['IsHasCardKey',['../classGpgFrontend_1_1GpgKey.html#afedc843415bd4b59687e975006e470ed',1,'GpgFrontend::GpgKey']]], + ['ishascertificationcapability_1142',['IsHasCertificationCapability',['../classGpgFrontend_1_1GpgSubKey.html#a56938360f873949aa9ba3dbdaab519d1',1,'GpgFrontend::GpgSubKey::IsHasCertificationCapability()'],['../classGpgFrontend_1_1GpgKey.html#a2d28e72cfb741deeadfe02ff456fb490',1,'GpgFrontend::GpgKey::IsHasCertificationCapability()']]], + ['ishasencryptioncapability_1143',['IsHasEncryptionCapability',['../classGpgFrontend_1_1GpgSubKey.html#ab67395a986184cb9b20f3dc178fc52be',1,'GpgFrontend::GpgSubKey::IsHasEncryptionCapability()'],['../classGpgFrontend_1_1GpgKey.html#a60b342ca6e1062d4489d8ba8f7a5a605',1,'GpgFrontend::GpgKey::IsHasEncryptionCapability() const']]], + ['ishasmasterkey_1144',['IsHasMasterKey',['../classGpgFrontend_1_1GpgKey.html#aadac1b776764ee9d0ca4f8bb9f9e0741',1,'GpgFrontend::GpgKey']]], + ['ishassigningcapability_1145',['IsHasSigningCapability',['../classGpgFrontend_1_1GpgSubKey.html#ab9208165c74b93fa8c5b7a06cd808f56',1,'GpgFrontend::GpgSubKey::IsHasSigningCapability()'],['../classGpgFrontend_1_1GpgKey.html#a635bbf8f08268cfdac1bc120981df877',1,'GpgFrontend::GpgKey::IsHasSigningCapability()']]], + ['isinvalid_1146',['IsInvalid',['../classGpgFrontend_1_1GpgKeySignature.html#a1725474a1c61c0a3d724dc2f999cb24a',1,'GpgFrontend::GpgKeySignature']]], + ['isnonexpired_1147',['IsNonExpired',['../classGpgFrontend_1_1GenKeyInfo.html#aeef7697c91b5b5998088979e09332380',1,'GpgFrontend::GenKeyInfo']]], + ['isnopassphrase_1148',['IsNoPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#a848181796a99bec8d32dc5eac240ee01',1,'GpgFrontend::GenKeyInfo']]], + ['isprivatekey_1149',['IsPrivateKey',['../classGpgFrontend_1_1GpgKey.html#a888c0263f04bdd52967e092b9c73eb6d',1,'GpgFrontend::GpgKey::IsPrivateKey()'],['../classGpgFrontend_1_1GpgSubKey.html#accb86b50755698b3e1e7fdfe06f44e84',1,'GpgFrontend::GpgSubKey::IsPrivateKey()']]], + ['isrevoked_1150',['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_1151',['IsSecretKey',['../classGpgFrontend_1_1GpgSubKey.html#a8fcbeae2ef3ad73a5aedee19f6de3e60',1,'GpgFrontend::GpgSubKey']]], + ['issubkey_1152',['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 945f9fbc..12985d0f 100644 --- a/docs/html/search/functions_a.js +++ b/docs/html/search/functions_a.js @@ -1,22 +1,22 @@ var searchData= [ - ['keygendialog_1152',['KeyGenDialog',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3aef8d2bb8e0d36842532726a6796ab9',1,'GpgFrontend::UI::KeyGenDialog']]], - ['keygenpage_1153',['KeyGenPage',['../classGpgFrontend_1_1UI_1_1KeyGenPage.html#a0eb5dad522c597dcd101c02f496e7e70',1,'GpgFrontend::UI::KeyGenPage']]], - ['keyimportdetaildialog_1154',['KeyImportDetailDialog',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a0177cdaa19d1f83c9e519039aa7a8ce1',1,'GpgFrontend::UI::KeyImportDetailDialog']]], - ['keylist_1155',['KeyList',['../classGpgFrontend_1_1UI_1_1KeyList.html#a7c9d5cacdb42e1fbda5d3cc96e861418',1,'GpgFrontend::UI::KeyList']]], - ['keymgmt_1156',['KeyMgmt',['../classGpgFrontend_1_1UI_1_1KeyMgmt.html#aefc27b57830cf14a85c2225664f89f64',1,'GpgFrontend::UI::KeyMgmt']]], - ['keynewuiddialog_1157',['KeyNewUIDDialog',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a7226b139dc7a491e8ba780135654be27',1,'GpgFrontend::UI::KeyNewUIDDialog']]], - ['keypairdetailtab_1158',['KeyPairDetailTab',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a76efd8f8d623813be1a329ad01972444',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['keypairoperatab_1159',['KeyPairOperaTab',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#aad4e209d7b4eb0ac6623b2f12ce5ecc5',1,'GpgFrontend::UI::KeyPairOperaTab']]], - ['keypairsubkeytab_1160',['KeyPairSubkeyTab',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a93abe5c0467c7c4a29e0c45437a10732',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], - ['keypairuidtab_1161',['KeyPairUIDTab',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#af18c4f08a127d919a316c7e27ba338d3',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['keypressevent_1162',['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_1163',['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_1164',['KeyServerImportTask',['../classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a1640363b4b27cb3d256181ddc6cdc857',1,'GpgFrontend::UI::KeyServerImportTask']]], - ['keyserversearchtask_1165',['KeyServerSearchTask',['../classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#a168e21bdfa72f43f91187ab29ece5efa',1,'GpgFrontend::UI::KeyServerSearchTask']]], - ['keyservertab_1166',['KeyserverTab',['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#aa3d3561d3bdf95de6486b2caa752616c',1,'GpgFrontend::UI::KeyserverTab']]], - ['keysetexpiredatedialog_1167',['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_1168',['KeyTable',['../structGpgFrontend_1_1UI_1_1KeyTable.html#a88606ba6954d60244faf38de419bfc47',1,'GpgFrontend::UI::KeyTable']]], - ['keyuidsigndialog_1169',['KeyUIDSignDialog',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#aaa06ce342178802e76119bec6b26cc55',1,'GpgFrontend::UI::KeyUIDSignDialog']]], - ['keyuploaddialog_1170',['KeyUploadDialog',['../classGpgFrontend_1_1UI_1_1KeyUploadDialog.html#a51f63e30f26f7923def91519d347c0cf',1,'GpgFrontend::UI::KeyUploadDialog']]] + ['keygendialog_1153',['KeyGenDialog',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3aef8d2bb8e0d36842532726a6796ab9',1,'GpgFrontend::UI::KeyGenDialog']]], + ['keygenpage_1154',['KeyGenPage',['../classGpgFrontend_1_1UI_1_1KeyGenPage.html#a0eb5dad522c597dcd101c02f496e7e70',1,'GpgFrontend::UI::KeyGenPage']]], + ['keyimportdetaildialog_1155',['KeyImportDetailDialog',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a0177cdaa19d1f83c9e519039aa7a8ce1',1,'GpgFrontend::UI::KeyImportDetailDialog']]], + ['keylist_1156',['KeyList',['../classGpgFrontend_1_1UI_1_1KeyList.html#a7c9d5cacdb42e1fbda5d3cc96e861418',1,'GpgFrontend::UI::KeyList']]], + ['keymgmt_1157',['KeyMgmt',['../classGpgFrontend_1_1UI_1_1KeyMgmt.html#aefc27b57830cf14a85c2225664f89f64',1,'GpgFrontend::UI::KeyMgmt']]], + ['keynewuiddialog_1158',['KeyNewUIDDialog',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a7226b139dc7a491e8ba780135654be27',1,'GpgFrontend::UI::KeyNewUIDDialog']]], + ['keypairdetailtab_1159',['KeyPairDetailTab',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a76efd8f8d623813be1a329ad01972444',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['keypairoperatab_1160',['KeyPairOperaTab',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#aad4e209d7b4eb0ac6623b2f12ce5ecc5',1,'GpgFrontend::UI::KeyPairOperaTab']]], + ['keypairsubkeytab_1161',['KeyPairSubkeyTab',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a93abe5c0467c7c4a29e0c45437a10732',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], + ['keypairuidtab_1162',['KeyPairUIDTab',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#af18c4f08a127d919a316c7e27ba338d3',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['keypressevent_1163',['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_1164',['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_1165',['KeyServerImportTask',['../classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a1640363b4b27cb3d256181ddc6cdc857',1,'GpgFrontend::UI::KeyServerImportTask']]], + ['keyserversearchtask_1166',['KeyServerSearchTask',['../classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#a168e21bdfa72f43f91187ab29ece5efa',1,'GpgFrontend::UI::KeyServerSearchTask']]], + ['keyservertab_1167',['KeyserverTab',['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#aa3d3561d3bdf95de6486b2caa752616c',1,'GpgFrontend::UI::KeyserverTab']]], + ['keysetexpiredatedialog_1168',['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_1169',['KeyTable',['../structGpgFrontend_1_1UI_1_1KeyTable.html#a88606ba6954d60244faf38de419bfc47',1,'GpgFrontend::UI::KeyTable']]], + ['keyuidsigndialog_1170',['KeyUIDSignDialog',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#aaa06ce342178802e76119bec6b26cc55',1,'GpgFrontend::UI::KeyUIDSignDialog']]], + ['keyuploaddialog_1171',['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 e8973470..a7925276 100644 --- a/docs/html/search/functions_b.js +++ b/docs/html/search/functions_b.js @@ -1,7 +1,8 @@ var searchData= [ - ['listedkeyservertesttask_1171',['ListedKeyServerTestTask',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#ae25b5d59b53facc15648ab80ff19ed77',1,'GpgFrontend::UI::ListedKeyServerTestTask']]], - ['listlanguages_1172',['ListLanguages',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#acd22ac2fd91704551e5317e2c549ae26',1,'GpgFrontend::UI::SettingsDialog']]], - ['loadfile_1173',['LoadFile',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a72ed46454c833adb038c36d8d4322d18',1,'GpgFrontend::UI::TextEdit']]], - ['localized_5fhelp_1174',['localized_help',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a49fbde87f2ef385b44225acd6ffbc84f',1,'GpgFrontend::UI::HelpPage']]] + ['listedkeyservertesttask_1172',['ListedKeyServerTestTask',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#ae25b5d59b53facc15648ab80ff19ed77',1,'GpgFrontend::UI::ListedKeyServerTestTask']]], + ['listlanguages_1173',['ListLanguages',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#acd22ac2fd91704551e5317e2c549ae26',1,'GpgFrontend::UI::SettingsDialog']]], + ['loadfile_1174',['LoadFile',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a72ed46454c833adb038c36d8d4322d18',1,'GpgFrontend::UI::TextEdit']]], + ['localized_5fhelp_1175',['localized_help',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a49fbde87f2ef385b44225acd6ffbc84f',1,'GpgFrontend::UI::HelpPage']]], + ['lookupsettings_1176',['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 6750037a..4aad02e5 100644 --- a/docs/html/search/functions_c.js +++ b/docs/html/search/functions_c.js @@ -1,8 +1,8 @@ var searchData= [ - ['markkeys_1175',['MarkKeys',['../classGpgFrontend_1_1UI_1_1KeyList.html#a31a4c067eed90830203862cb4adf951e',1,'GpgFrontend::UI::KeyList']]], - ['maybe_5fsave_5fcurrent_5ftab_1176',['maybe_save_current_tab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a8fad090a19479a9fe89432300cca2b6c',1,'GpgFrontend::UI::TextEdit']]], - ['maybesaveanytab_1177',['MaybeSaveAnyTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3c976a5494d06c2186d94e7cc8ebe457',1,'GpgFrontend::UI::TextEdit']]], - ['modifypassword_1178',['ModifyPassword',['../classGpgFrontend_1_1GpgKeyOpera.html#ab7e16d1f4cba23ea5b5b9f6009ce5ee2',1,'GpgFrontend::GpgKeyOpera']]], - ['modifytofupolicy_1179',['ModifyTOFUPolicy',['../classGpgFrontend_1_1GpgKeyOpera.html#a76a7f59701add8a59d8835919dad2000',1,'GpgFrontend::GpgKeyOpera']]] + ['markkeys_1177',['MarkKeys',['../classGpgFrontend_1_1UI_1_1KeyList.html#a31a4c067eed90830203862cb4adf951e',1,'GpgFrontend::UI::KeyList']]], + ['maybe_5fsave_5fcurrent_5ftab_1178',['maybe_save_current_tab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a8fad090a19479a9fe89432300cca2b6c',1,'GpgFrontend::UI::TextEdit']]], + ['maybesaveanytab_1179',['MaybeSaveAnyTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3c976a5494d06c2186d94e7cc8ebe457',1,'GpgFrontend::UI::TextEdit']]], + ['modifypassword_1180',['ModifyPassword',['../classGpgFrontend_1_1GpgKeyOpera.html#ab7e16d1f4cba23ea5b5b9f6009ce5ee2',1,'GpgFrontend::GpgKeyOpera']]], + ['modifytofupolicy_1181',['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 b5cd8123..22e8b679 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_1180',['need_user_input_passphrase',['../classGpgFrontend_1_1GpgContext.html#ac7c9b2212a77e7cede94d68243541b1b',1,'GpgFrontend::GpgContext']]], - ['needupgrade_1181',['NeedUpgrade',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#abc311fd0e15da1a04b995587ca74e1a6',1,'GpgFrontend::UI::SoftwareVersion']]], - ['networktab_1182',['NetworkTab',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#a444d3630919c1f9c4db495a58acbb9a8',1,'GpgFrontend::UI::NetworkTab']]], - ['new_5fdefault_5fsettings_5fchannel_1183',['new_default_settings_channel',['../namespaceGpgFrontend.html#aafb9aa0ba1d03afa09085b1b8136c55f',1,'GpgFrontend']]], - ['nextid_1184',['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_1185',['notify',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a6f8ab335d89948c48cd634ab20ff9aa0',1,'GpgFrontend::UI::GpgFrontendApplication']]], - ['notifyfilesaved_1186',['NotifyFileSaved',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a29b3d63ba9590e775f42c779c76102e5',1,'GpgFrontend::UI::PlainTextEditorPage']]] + ['need_5fuser_5finput_5fpassphrase_1182',['need_user_input_passphrase',['../classGpgFrontend_1_1GpgContext.html#ac7c9b2212a77e7cede94d68243541b1b',1,'GpgFrontend::GpgContext']]], + ['needupgrade_1183',['NeedUpgrade',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#abc311fd0e15da1a04b995587ca74e1a6',1,'GpgFrontend::UI::SoftwareVersion']]], + ['networktab_1184',['NetworkTab',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#a444d3630919c1f9c4db495a58acbb9a8',1,'GpgFrontend::UI::NetworkTab']]], + ['new_5fdefault_5fsettings_5fchannel_1185',['new_default_settings_channel',['../namespaceGpgFrontend.html#aafb9aa0ba1d03afa09085b1b8136c55f',1,'GpgFrontend']]], + ['nextid_1186',['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_1187',['notify',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a6f8ab335d89948c48cd634ab20ff9aa0',1,'GpgFrontend::UI::GpgFrontendApplication']]], + ['notifyfilesaved_1188',['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 1023cbb8..b20bb235 100644 --- a/docs/html/search/functions_e.js +++ b/docs/html/search/functions_e.js @@ -1,10 +1,10 @@ var searchData= [ - ['oncustomcontextmenu_1187',['onCustomContextMenu',['../classGpgFrontend_1_1UI_1_1FilePage.html#aa80dc1b74a0ec65d06e5dffaa21cc785',1,'GpgFrontend::UI::FilePage']]], - ['operator_20gpgme_5fctx_5ft_1188',['operator gpgme_ctx_t',['../classGpgFrontend_1_1GpgContext.html#a5b419175bd9927f3d449637db8ba6524',1,'GpgFrontend::GpgContext']]], - ['operator_20gpgme_5fdata_5ft_1189',['operator gpgme_data_t',['../classGpgFrontend_1_1GpgData.html#afca7a03bd71436c8b3c4f6e8c2acd700',1,'GpgFrontend::GpgData']]], - ['operator_20gpgme_5fkey_5ft_1190',['operator gpgme_key_t',['../classGpgFrontend_1_1GpgKey.html#a827962251cf47c41dbea56665ae4207b',1,'GpgFrontend::GpgKey']]], - ['operator_3c_3d_1191',['operator<=',['../classGpgFrontend_1_1GpgKey.html#adc22a349796af0ff5dd4499624b6d03d',1,'GpgFrontend::GpgKey']]], - ['operator_3d_1192',['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_1193',['operator==',['../classGpgFrontend_1_1GpgKey.html#a4f50b2f13b3a5dc7298ee9665e7a5367',1,'GpgFrontend::GpgKey::operator==()'],['../classGpgFrontend_1_1GpgSubKey.html#a1c88420ec4756f2e5bda1b76ff2f7c2d',1,'GpgFrontend::GpgSubKey::operator==()']]] + ['oncustomcontextmenu_1189',['onCustomContextMenu',['../classGpgFrontend_1_1UI_1_1FilePage.html#aa80dc1b74a0ec65d06e5dffaa21cc785',1,'GpgFrontend::UI::FilePage']]], + ['operator_20gpgme_5fctx_5ft_1190',['operator gpgme_ctx_t',['../classGpgFrontend_1_1GpgContext.html#a5b419175bd9927f3d449637db8ba6524',1,'GpgFrontend::GpgContext']]], + ['operator_20gpgme_5fdata_5ft_1191',['operator gpgme_data_t',['../classGpgFrontend_1_1GpgData.html#afca7a03bd71436c8b3c4f6e8c2acd700',1,'GpgFrontend::GpgData']]], + ['operator_20gpgme_5fkey_5ft_1192',['operator gpgme_key_t',['../classGpgFrontend_1_1GpgKey.html#a827962251cf47c41dbea56665ae4207b',1,'GpgFrontend::GpgKey']]], + ['operator_3c_3d_1193',['operator<=',['../classGpgFrontend_1_1GpgKey.html#adc22a349796af0ff5dd4499624b6d03d',1,'GpgFrontend::GpgKey']]], + ['operator_3d_1194',['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_1195',['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 122c07c6..0e8ced9f 100644 --- a/docs/html/search/functions_f.js +++ b/docs/html/search/functions_f.js @@ -1,16 +1,16 @@ var searchData= [ - ['passphrasegenerator_1194',['PassphraseGenerator',['../classGpgFrontend_1_1PassphraseGenerator.html#ac82ef545a54468ad02253a61cc62e3cf',1,'GpgFrontend::PassphraseGenerator']]], - ['plaintexteditorpage_1195',['PlainTextEditorPage',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a8759224e57d4c322933ed3df6d96e5f1',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['popobject_1196',['PopObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a5ef5ddec0b82017cc4ad7f34b9b13f64',1,'GpgFrontend::Thread::Task::DataObject']]], - ['post_5finit_5fctx_1197',['post_init_ctx',['../classGpgFrontend_1_1GpgContext.html#aaf3f394ff1790897c315c3249b1f06fe',1,'GpgFrontend::GpgContext']]], - ['postscheduletask_1198',['PostScheduleTask',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#aaddb0cdd8eb57aac08ca9caf8b8e6bac',1,'GpgFrontend::Thread::TaskRunner']]], - ['posttask_1199',['PostTask',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a4fae01eb0a5b296b8c4c6bf8408f1c6b',1,'GpgFrontend::Thread::TaskRunner']]], - ['print_5frecipient_1200',['print_recipient',['../classGpgFrontend_1_1GpgDecryptResultAnalyse.html#a1aac1c1f77a12069479a47f54a934c44',1,'GpgFrontend::GpgDecryptResultAnalyse']]], - ['print_5fsigner_1201',['print_signer',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a57bf4a26466e07f7f0ecc19de3782104',1,'GpgFrontend::GpgVerifyResultAnalyse']]], - ['process_5fdirectory_5finto_5ftarball_1202',['process_directory_into_tarball',['../namespaceGpgFrontend_1_1UI.html#a5470872566b41ce628f64039f34b964a',1,'GpgFrontend::UI']]], - ['process_5foperation_1203',['process_operation',['../namespaceGpgFrontend_1_1UI.html#a3c971eeb5c620d08d6d92f0752ceaf9f',1,'GpgFrontend::UI']]], - ['process_5fresult_5fanalyse_1204',['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_1205',['process_tarball_into_directory',['../namespaceGpgFrontend_1_1UI.html#a57d0a4dba23cd3d9b42222d40c710dc1',1,'GpgFrontend::UI']]], - ['proxyconnectiontesttask_1206',['ProxyConnectionTestTask',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask.html#a8036aaf9a2adcf033fc9f8e51da59956',1,'GpgFrontend::UI::ProxyConnectionTestTask']]] + ['passphrasegenerator_1196',['PassphraseGenerator',['../classGpgFrontend_1_1PassphraseGenerator.html#ac82ef545a54468ad02253a61cc62e3cf',1,'GpgFrontend::PassphraseGenerator']]], + ['plaintexteditorpage_1197',['PlainTextEditorPage',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a8759224e57d4c322933ed3df6d96e5f1',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['popobject_1198',['PopObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a5ef5ddec0b82017cc4ad7f34b9b13f64',1,'GpgFrontend::Thread::Task::DataObject']]], + ['post_5finit_5fctx_1199',['post_init_ctx',['../classGpgFrontend_1_1GpgContext.html#aaf3f394ff1790897c315c3249b1f06fe',1,'GpgFrontend::GpgContext']]], + ['postscheduletask_1200',['PostScheduleTask',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#aaddb0cdd8eb57aac08ca9caf8b8e6bac',1,'GpgFrontend::Thread::TaskRunner']]], + ['posttask_1201',['PostTask',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a4fae01eb0a5b296b8c4c6bf8408f1c6b',1,'GpgFrontend::Thread::TaskRunner']]], + ['print_5frecipient_1202',['print_recipient',['../classGpgFrontend_1_1GpgDecryptResultAnalyse.html#a1aac1c1f77a12069479a47f54a934c44',1,'GpgFrontend::GpgDecryptResultAnalyse']]], + ['print_5fsigner_1203',['print_signer',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a57bf4a26466e07f7f0ecc19de3782104',1,'GpgFrontend::GpgVerifyResultAnalyse']]], + ['process_5fdirectory_5finto_5ftarball_1204',['process_directory_into_tarball',['../namespaceGpgFrontend_1_1UI.html#a5470872566b41ce628f64039f34b964a',1,'GpgFrontend::UI']]], + ['process_5foperation_1205',['process_operation',['../namespaceGpgFrontend_1_1UI.html#a3c971eeb5c620d08d6d92f0752ceaf9f',1,'GpgFrontend::UI']]], + ['process_5fresult_5fanalyse_1206',['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_1207',['process_tarball_into_directory',['../namespaceGpgFrontend_1_1UI.html#a57d0a4dba23cd3d9b42222d40c710dc1',1,'GpgFrontend::UI']]], + ['proxyconnectiontesttask_1208',['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 1c6d73e8..7b047393 100644 --- a/docs/html/search/namespaces_0.js +++ b/docs/html/search/namespaces_0.js @@ -1,7 +1,7 @@ var searchData= [ - ['gpgfrontend_875',['GpgFrontend',['../namespaceGpgFrontend.html',1,'']]], - ['rawapi_876',['RawAPI',['../namespaceGpgFrontend_1_1RawAPI.html',1,'GpgFrontend']]], - ['thread_877',['Thread',['../namespaceGpgFrontend_1_1Thread.html',1,'GpgFrontend']]], - ['ui_878',['UI',['../namespaceGpgFrontend_1_1UI.html',1,'GpgFrontend']]] + ['gpgfrontend_876',['GpgFrontend',['../namespaceGpgFrontend.html',1,'']]], + ['rawapi_877',['RawAPI',['../namespaceGpgFrontend_1_1RawAPI.html',1,'GpgFrontend']]], + ['thread_878',['Thread',['../namespaceGpgFrontend_1_1Thread.html',1,'GpgFrontend']]], + ['ui_879',['UI',['../namespaceGpgFrontend_1_1UI.html',1,'GpgFrontend']]] ]; diff --git a/docs/html/search/pages_0.js b/docs/html/search/pages_0.js index a77dee6c..389bf324 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_1566',['GpgFrontend Develop Document Main Page',['../index.html',1,'']]] + ['gpgfrontend_20develop_20document_20main_20page_1567',['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 f59ae9e4..1a0e0590 100644 --- a/docs/html/search/variables_0.js +++ b/docs/html/search/variables_0.js @@ -1,5 +1,5 @@ var searchData= [ - ['_5fdefault_5fchannel_1428',['_default_channel',['../classGpgFrontend_1_1ChannelObject.html#a66295bb572e98fc2fad3afce763ac311',1,'GpgFrontend::ChannelObject']]], - ['_5finstance_1429',['_instance',['../classGpgFrontend_1_1CoreSignalStation.html#a36c316a2a76fdf7c3e74dfa5f8ed6b15',1,'GpgFrontend::CoreSignalStation']]] + ['_5fdefault_5fchannel_1429',['_default_channel',['../classGpgFrontend_1_1ChannelObject.html#a66295bb572e98fc2fad3afce763ac311',1,'GpgFrontend::ChannelObject']]], + ['_5finstance_1430',['_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 fb5784e4..dbf24657 100644 --- a/docs/html/search/variables_1.js +++ b/docs/html/search/variables_1.js @@ -1,20 +1,20 @@ var searchData= [ - ['about_5fact_5f_1430',['about_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9dd292f55fba1fe62c83508fef7e43a1',1,'GpgFrontend::UI::MainWindow']]], - ['add_5fpgp_5fheader_5fact_5f_1431',['add_pgp_header_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a95b2c86afbefe47e79af87e56032e306',1,'GpgFrontend::UI::MainWindow']]], - ['additional_5fuid_5fbox_5f_1432',['additional_uid_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a265ef140feec330e7341c1369c0aefab',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['algorithm_5fvar_5flabel_5f_1433',['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_1434',['app_configure_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a4d04bb665571921421b853f18b8b300a',1,'GpgFrontend::GlobalSettingStation']]], - ['app_5fdata_5fobjs_5fpath_5f_1435',['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_1436',['app_data_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a58fff8a42f98ad7989bffb8322344cd6',1,'GpgFrontend::GlobalSettingStation']]], - ['app_5flocale_5fpath_5f_1437',['app_locale_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a25c1b45a2ccdc21dd2dcba58866169fb',1,'GpgFrontend::GlobalSettingStation']]], - ['app_5flog_5fpath_5f_1438',['app_log_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a6459653a71cc8285fa554943c7fb3ca7',1,'GpgFrontend::GlobalSettingStation']]], - ['app_5fpath_5f_1439',['app_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a678f8ba120f9ad050d0adfec4476d7ac',1,'GpgFrontend::GlobalSettingStation']]], - ['app_5fresource_5fpath_5f_1440',['app_resource_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a1d94a126c78ac01ec01f10d2ce575388',1,'GpgFrontend::GlobalSettingStation']]], - ['app_5fsecure_5fkey_5fpath_5f_1441',['app_secure_key_path_',['../classGpgFrontend_1_1DataObjectOperator.html#a56c0c031cd327207260c73d1885dbdca',1,'GpgFrontend::DataObjectOperator']]], - ['app_5fsecure_5fpath_5f_1442',['app_secure_path_',['../classGpgFrontend_1_1DataObjectOperator.html#a6d38d25c91c33c48d083ec4de051108a',1,'GpgFrontend::DataObjectOperator']]], - ['append_5fselected_5fkeys_5fact_5f_1443',['append_selected_keys_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab67486a71126073e7c39ca12603198f4',1,'GpgFrontend::UI::MainWindow']]], - ['apppath_1444',['AppPath',['../classGpgFrontend_1_1GpgInfo.html#a2416ae0ab9bedc61782d16075750a9c0',1,'GpgFrontend::GpgInfo']]], - ['assuanpath_1445',['AssuanPath',['../classGpgFrontend_1_1GpgInfo.html#a48659b780f8d0153ca0eb985a072b5ba',1,'GpgFrontend::GpgInfo']]], - ['attachment_5fdock_5f_1446',['attachment_dock_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#afd243a5f00f86d65431081ead2cae153',1,'GpgFrontend::UI::MainWindow']]] + ['about_5fact_5f_1431',['about_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9dd292f55fba1fe62c83508fef7e43a1',1,'GpgFrontend::UI::MainWindow']]], + ['add_5fpgp_5fheader_5fact_5f_1432',['add_pgp_header_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a95b2c86afbefe47e79af87e56032e306',1,'GpgFrontend::UI::MainWindow']]], + ['additional_5fuid_5fbox_5f_1433',['additional_uid_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a265ef140feec330e7341c1369c0aefab',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['algorithm_5fvar_5flabel_5f_1434',['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_1435',['app_configure_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a4d04bb665571921421b853f18b8b300a',1,'GpgFrontend::GlobalSettingStation']]], + ['app_5fdata_5fobjs_5fpath_5f_1436',['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_1437',['app_data_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a58fff8a42f98ad7989bffb8322344cd6',1,'GpgFrontend::GlobalSettingStation']]], + ['app_5flocale_5fpath_5f_1438',['app_locale_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a25c1b45a2ccdc21dd2dcba58866169fb',1,'GpgFrontend::GlobalSettingStation']]], + ['app_5flog_5fpath_5f_1439',['app_log_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a6459653a71cc8285fa554943c7fb3ca7',1,'GpgFrontend::GlobalSettingStation']]], + ['app_5fpath_5f_1440',['app_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a678f8ba120f9ad050d0adfec4476d7ac',1,'GpgFrontend::GlobalSettingStation']]], + ['app_5fresource_5fpath_5f_1441',['app_resource_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a1d94a126c78ac01ec01f10d2ce575388',1,'GpgFrontend::GlobalSettingStation']]], + ['app_5fsecure_5fkey_5fpath_5f_1442',['app_secure_key_path_',['../classGpgFrontend_1_1DataObjectOperator.html#a56c0c031cd327207260c73d1885dbdca',1,'GpgFrontend::DataObjectOperator']]], + ['app_5fsecure_5fpath_5f_1443',['app_secure_path_',['../classGpgFrontend_1_1DataObjectOperator.html#a6d38d25c91c33c48d083ec4de051108a',1,'GpgFrontend::DataObjectOperator']]], + ['append_5fselected_5fkeys_5fact_5f_1444',['append_selected_keys_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab67486a71126073e7c39ca12603198f4',1,'GpgFrontend::UI::MainWindow']]], + ['apppath_1445',['AppPath',['../classGpgFrontend_1_1GpgInfo.html#a2416ae0ab9bedc61782d16075750a9c0',1,'GpgFrontend::GpgInfo']]], + ['assuanpath_1446',['AssuanPath',['../classGpgFrontend_1_1GpgInfo.html#a48659b780f8d0153ca0eb985a072b5ba',1,'GpgFrontend::GpgInfo']]], + ['attachment_5fdock_5f_1447',['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 1f288e11..295bc966 100644 --- a/docs/html/search/variables_10.js +++ b/docs/html/search/variables_10.js @@ -1,5 +1,5 @@ var searchData= [ - ['quit_5fact_5f_1536',['quit_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#abe0683e48485f9fcff622d9519c37ed9',1,'GpgFrontend::UI::MainWindow']]], - ['quote_5fact_5f_1537',['quote_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af9640e5732c2595d0c094e7ff7e371ac',1,'GpgFrontend::UI::MainWindow']]] + ['quit_5fact_5f_1537',['quit_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#abe0683e48485f9fcff622d9519c37ed9',1,'GpgFrontend::UI::MainWindow']]], + ['quote_5fact_5f_1538',['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 3dc7bbc4..2fc0834b 100644 --- a/docs/html/search/variables_11.js +++ b/docs/html/search/variables_11.js @@ -1,5 +1,5 @@ var searchData= [ - ['rd_5f_1538',['rd_',['../classGpgFrontend_1_1DataObjectOperator.html#a24c9cdbe9256e332ac93d6dc28c76b90',1,'GpgFrontend::DataObjectOperator::rd_()'],['../classGpgFrontend_1_1PassphraseGenerator.html#a12ee6f9b7fff4883074321c7e0de3dfa',1,'GpgFrontend::PassphraseGenerator::rd_()']]], - ['redo_5fact_5f_1539',['redo_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#abe38474d4e81726147f9df8a9721ce6e',1,'GpgFrontend::UI::MainWindow']]] + ['rd_5f_1539',['rd_',['../classGpgFrontend_1_1DataObjectOperator.html#a24c9cdbe9256e332ac93d6dc28c76b90',1,'GpgFrontend::DataObjectOperator::rd_()'],['../classGpgFrontend_1_1PassphraseGenerator.html#a12ee6f9b7fff4883074321c7e0de3dfa',1,'GpgFrontend::PassphraseGenerator::rd_()']]], + ['redo_5fact_5f_1540',['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 65af1ad4..d455f552 100644 --- a/docs/html/search/variables_12.js +++ b/docs/html/search/variables_12.js @@ -1,16 +1,16 @@ var searchData= [ - ['save_5fact_5f_1540',['save_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab0f148559d830fcf10b5a1937b0a47dc',1,'GpgFrontend::UI::MainWindow']]], - ['save_5fas_5fact_5f_1541',['save_as_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a22256763ef83ed35a81e446b553d8112',1,'GpgFrontend::UI::MainWindow']]], - ['select_5fall_5fact_5f_1542',['select_all_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ac6a42e6e3af7e76f0bd2ecc62c9520cc',1,'GpgFrontend::UI::MainWindow']]], - ['sequency_5f_1543',['sequency_',['../classGpgFrontend_1_1Thread_1_1Task.html#a71ed097a2c4b4b735fd385dfe87e6f57',1,'GpgFrontend::Thread::Task']]], - ['show_5fkey_5fdetails_5fact_5f_1544',['show_key_details_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#acd41722ceedd20973b7d83852fab407b',1,'GpgFrontend::UI::MainWindow']]], - ['sign_5fact_5f_1545',['sign_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0cded37ef6e07856bbe439b0e90db839',1,'GpgFrontend::UI::MainWindow']]], - ['sign_5fmarked_5f_1546',['sign_marked_',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a4f94e9ef7889a169bda5a47b7f657358',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['special_5fedit_5ftool_5fbar_5f_1547',['special_edit_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af2b3e3a0e9894633e1839df289f5ffe0',1,'GpgFrontend::UI::MainWindow']]], - ['start_5fwizard_5fact_5f_1548',['start_wizard_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab0019ca316b971c594c2f20f418256a6',1,'GpgFrontend::UI::MainWindow']]], - ['steganography_5fmenu_5f_1549',['steganography_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af763a506aed7d0fb2125d1859583b853',1,'GpgFrontend::UI::MainWindow']]], - ['storages_5fmutex_5f_1550',['storages_mutex_',['../classGpgFrontend_1_1SingletonStorageCollection.html#ab648cb257beb2475eb5fca6453c331f9',1,'GpgFrontend::SingletonStorageCollection']]], - ['switch_5ftab_5fdown_5fact_5f_1551',['switch_tab_down_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a88af746cd550792ab6095d2ebbd29b41',1,'GpgFrontend::UI::MainWindow']]], - ['switch_5ftab_5fup_5fact_5f_1552',['switch_tab_up_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8d5ce6514ef3fa8ac3223176f5fa2701',1,'GpgFrontend::UI::MainWindow']]] + ['save_5fact_5f_1541',['save_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab0f148559d830fcf10b5a1937b0a47dc',1,'GpgFrontend::UI::MainWindow']]], + ['save_5fas_5fact_5f_1542',['save_as_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a22256763ef83ed35a81e446b553d8112',1,'GpgFrontend::UI::MainWindow']]], + ['select_5fall_5fact_5f_1543',['select_all_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ac6a42e6e3af7e76f0bd2ecc62c9520cc',1,'GpgFrontend::UI::MainWindow']]], + ['sequency_5f_1544',['sequency_',['../classGpgFrontend_1_1Thread_1_1Task.html#a71ed097a2c4b4b735fd385dfe87e6f57',1,'GpgFrontend::Thread::Task']]], + ['show_5fkey_5fdetails_5fact_5f_1545',['show_key_details_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#acd41722ceedd20973b7d83852fab407b',1,'GpgFrontend::UI::MainWindow']]], + ['sign_5fact_5f_1546',['sign_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0cded37ef6e07856bbe439b0e90db839',1,'GpgFrontend::UI::MainWindow']]], + ['sign_5fmarked_5f_1547',['sign_marked_',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a4f94e9ef7889a169bda5a47b7f657358',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['special_5fedit_5ftool_5fbar_5f_1548',['special_edit_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af2b3e3a0e9894633e1839df289f5ffe0',1,'GpgFrontend::UI::MainWindow']]], + ['start_5fwizard_5fact_5f_1549',['start_wizard_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab0019ca316b971c594c2f20f418256a6',1,'GpgFrontend::UI::MainWindow']]], + ['steganography_5fmenu_5f_1550',['steganography_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af763a506aed7d0fb2125d1859583b853',1,'GpgFrontend::UI::MainWindow']]], + ['storages_5fmutex_5f_1551',['storages_mutex_',['../classGpgFrontend_1_1SingletonStorageCollection.html#ab648cb257beb2475eb5fca6453c331f9',1,'GpgFrontend::SingletonStorageCollection']]], + ['switch_5ftab_5fdown_5fact_5f_1552',['switch_tab_down_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a88af746cd550792ab6095d2ebbd29b41',1,'GpgFrontend::UI::MainWindow']]], + ['switch_5ftab_5fup_5fact_5f_1553',['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 63f2bc45..e4975e8b 100644 --- a/docs/html/search/variables_13.js +++ b/docs/html/search/variables_13.js @@ -1,7 +1,7 @@ var searchData= [ - ['tasks_1553',['tasks',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a774775e9a91d33072b27dcf78cead6e2',1,'GpgFrontend::Thread::TaskRunner']]], - ['tasks_5fmutex_5f_1554',['tasks_mutex_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a5e72f1ce00d41c225a4304f1ed20b3f1',1,'GpgFrontend::Thread::TaskRunner']]], - ['thread_5fpool_5f_1555',['thread_pool_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a2bdc321dd0732ba7a72499b2dc12f7c9',1,'GpgFrontend::Thread::TaskRunner']]], - ['translate_5fact_5f_1556',['translate_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adbac799672c43c90810366825d837e4e',1,'GpgFrontend::UI::MainWindow']]] + ['tasks_1554',['tasks',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a774775e9a91d33072b27dcf78cead6e2',1,'GpgFrontend::Thread::TaskRunner']]], + ['tasks_5fmutex_5f_1555',['tasks_mutex_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a5e72f1ce00d41c225a4304f1ed20b3f1',1,'GpgFrontend::Thread::TaskRunner']]], + ['thread_5fpool_5f_1556',['thread_pool_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a2bdc321dd0732ba7a72499b2dc12f7c9',1,'GpgFrontend::Thread::TaskRunner']]], + ['translate_5fact_5f_1557',['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 ff2a0b67..b6421f1d 100644 --- a/docs/html/search/variables_14.js +++ b/docs/html/search/variables_14.js @@ -1,7 +1,7 @@ var searchData= [ - ['ui_5fcfg_5f_1557',['ui_cfg_',['../classGpgFrontend_1_1GlobalSettingStation.html#a1818e08063d6a886975f77354fc5d85c',1,'GpgFrontend::GlobalSettingStation']]], - ['ui_5fconfig_5fdir_5fpath_5f_1558',['ui_config_dir_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#ab618fef68cfd4ff6e42d4a4aa8ea94bb',1,'GpgFrontend::GlobalSettingStation']]], - ['ui_5fconfig_5fpath_5f_1559',['ui_config_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#afa99ddc25c0d5fd59a4c5f0e61d13830',1,'GpgFrontend::GlobalSettingStation']]], - ['undo_5fact_5f_1560',['undo_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa498dfecac36590e4b60d50824dff58c',1,'GpgFrontend::UI::MainWindow']]] + ['ui_5fcfg_5f_1558',['ui_cfg_',['../classGpgFrontend_1_1GlobalSettingStation.html#a1818e08063d6a886975f77354fc5d85c',1,'GpgFrontend::GlobalSettingStation']]], + ['ui_5fconfig_5fdir_5fpath_5f_1559',['ui_config_dir_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#ab618fef68cfd4ff6e42d4a4aa8ea94bb',1,'GpgFrontend::GlobalSettingStation']]], + ['ui_5fconfig_5fpath_5f_1560',['ui_config_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#afa99ddc25c0d5fd59a4c5f0e61d13830',1,'GpgFrontend::GlobalSettingStation']]], + ['undo_5fact_5f_1561',['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 641ea336..d9232ed4 100644 --- a/docs/html/search/variables_15.js +++ b/docs/html/search/variables_15.js @@ -1,5 +1,5 @@ var searchData= [ - ['verify_5fact_5f_1561',['verify_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a14bb12fa25620e1a93bd23c9f7c84081',1,'GpgFrontend::UI::MainWindow']]], - ['view_5fmenu_5f_1562',['view_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0e9920cf0fc974ac2f70d3f039f009f2',1,'GpgFrontend::UI::MainWindow']]] + ['verify_5fact_5f_1562',['verify_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a14bb12fa25620e1a93bd23c9f7c84081',1,'GpgFrontend::UI::MainWindow']]], + ['view_5fmenu_5f_1563',['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 7119afc9..d8b6a137 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_1563',['zoom_in_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3cb7daedbef61c1be27635c9ebc9e689',1,'GpgFrontend::UI::MainWindow']]], - ['zoom_5fout_5fact_5f_1564',['zoom_out_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a70397629ae3ffe039051b80a099c7979',1,'GpgFrontend::UI::MainWindow']]] + ['zoom_5fin_5fact_5f_1564',['zoom_in_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3cb7daedbef61c1be27635c9ebc9e689',1,'GpgFrontend::UI::MainWindow']]], + ['zoom_5fout_5fact_5f_1565',['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 68921a9a..74a90bb7 100644 --- a/docs/html/search/variables_2.js +++ b/docs/html/search/variables_2.js @@ -1,6 +1,6 @@ var searchData= [ - ['browser_5f_1447',['browser_',['../classGpgFrontend_1_1UI_1_1HelpPage.html#af4f61342fae06a49c95d8d20ca51ca2c',1,'GpgFrontend::UI::HelpPage']]], - ['browser_5fact_5f_1448',['browser_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3c0a5305cf55fe5bee2f18298f983cad',1,'GpgFrontend::UI::MainWindow']]], - ['button_5fbox_5f_1449',['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_1448',['browser_',['../classGpgFrontend_1_1UI_1_1HelpPage.html#af4f61342fae06a49c95d8d20ca51ca2c',1,'GpgFrontend::UI::HelpPage']]], + ['browser_5fact_5f_1449',['browser_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3c0a5305cf55fe5bee2f18298f983cad',1,'GpgFrontend::UI::MainWindow']]], + ['button_5fbox_5f_1450',['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 8190e6a8..f29b8f3a 100644 --- a/docs/html/search/variables_3.js +++ b/docs/html/search/variables_3.js @@ -1,21 +1,21 @@ var searchData= [ - ['channel_5f_1450',['channel_',['../classGpgFrontend_1_1ChannelObject.html#aee5f8a5575adbdf522da4dd195c091ee',1,'GpgFrontend::ChannelObject']]], - ['check_5fupdate_5fact_5f_1451',['check_update_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a672f4ef07be6ad645613ecd49399700d',1,'GpgFrontend::UI::MainWindow']]], - ['clean_5fdouble_5fline_5fbreaks_5fact_5f_1452',['clean_double_line_breaks_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0cb094e0409337cfd7dba1bb510ea96e',1,'GpgFrontend::UI::MainWindow']]], - ['close_5ftab_5fact_5f_1453',['close_tab_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a09671c3aa26a750cfd6be6c092de8715',1,'GpgFrontend::UI::MainWindow']]], - ['cmspath_1454',['CMSPath',['../classGpgFrontend_1_1GpgInfo.html#ac8ecbf438d05dc434c77825dd38dfdf2',1,'GpgFrontend::GpgInfo']]], - ['comment_5fedit_5f_1455',['comment_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3008e2a9879a8e122e422f67cf0018f8',1,'GpgFrontend::UI::KeyGenDialog']]], - ['comment_5fvar_5flabel_5f_1456',['comment_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a83b1290251a204def52677ae000a17ec',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['copy_5fact_5f_1457',['copy_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a71402943f4ed19e3aba0556b23eaa8f8',1,'GpgFrontend::UI::MainWindow']]], - ['copy_5fmail_5faddress_5fto_5fclipboard_5fact_5f_1458',['copy_mail_address_to_clipboard_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af77f66b6b869f6ddb3d2caa3bc40bb09',1,'GpgFrontend::UI::MainWindow']]], - ['count_5fpage_5f_1459',['count_page_',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a747d3740a88295e6c9565788d4cf56ec',1,'GpgFrontend::UI::TextEdit']]], - ['created_5fvar_5flabel_5f_1460',['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_1461',['crypt_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1ef17c566a764f707f43593a1f6b3c60',1,'GpgFrontend::UI::MainWindow']]], - ['crypt_5ftool_5fbar_5f_1462',['crypt_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aac320aef3b49cd068544aac54b927f7a',1,'GpgFrontend::UI::MainWindow']]], - ['ctx_5f_1463',['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_1464',['ctx_mutex_',['../classGpgFrontend_1_1GpgKeyGetter.html#a81941e1f562dc22977a71d00dd10956a',1,'GpgFrontend::GpgKeyGetter']]], - ['current_5freply_5f_1465',['current_reply_',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9679bc6bcdf2e64ec82f6119620b6f2e',1,'GpgFrontend::UI::VersionCheckTask']]], - ['cut_5fact_5f_1466',['cut_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2c2f6c021219564846f1624f6bb5b9a2',1,'GpgFrontend::UI::MainWindow']]], - ['cut_5fpgp_5fheader_5fact_5f_1467',['cut_pgp_header_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a313a5d7d0847114a6f11e4d7870edd86',1,'GpgFrontend::UI::MainWindow']]] + ['channel_5f_1451',['channel_',['../classGpgFrontend_1_1ChannelObject.html#aee5f8a5575adbdf522da4dd195c091ee',1,'GpgFrontend::ChannelObject']]], + ['check_5fupdate_5fact_5f_1452',['check_update_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a672f4ef07be6ad645613ecd49399700d',1,'GpgFrontend::UI::MainWindow']]], + ['clean_5fdouble_5fline_5fbreaks_5fact_5f_1453',['clean_double_line_breaks_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0cb094e0409337cfd7dba1bb510ea96e',1,'GpgFrontend::UI::MainWindow']]], + ['close_5ftab_5fact_5f_1454',['close_tab_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a09671c3aa26a750cfd6be6c092de8715',1,'GpgFrontend::UI::MainWindow']]], + ['cmspath_1455',['CMSPath',['../classGpgFrontend_1_1GpgInfo.html#ac8ecbf438d05dc434c77825dd38dfdf2',1,'GpgFrontend::GpgInfo']]], + ['comment_5fedit_5f_1456',['comment_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3008e2a9879a8e122e422f67cf0018f8',1,'GpgFrontend::UI::KeyGenDialog']]], + ['comment_5fvar_5flabel_5f_1457',['comment_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a83b1290251a204def52677ae000a17ec',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['copy_5fact_5f_1458',['copy_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a71402943f4ed19e3aba0556b23eaa8f8',1,'GpgFrontend::UI::MainWindow']]], + ['copy_5fmail_5faddress_5fto_5fclipboard_5fact_5f_1459',['copy_mail_address_to_clipboard_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af77f66b6b869f6ddb3d2caa3bc40bb09',1,'GpgFrontend::UI::MainWindow']]], + ['count_5fpage_5f_1460',['count_page_',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a747d3740a88295e6c9565788d4cf56ec',1,'GpgFrontend::UI::TextEdit']]], + ['created_5fvar_5flabel_5f_1461',['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_1462',['crypt_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1ef17c566a764f707f43593a1f6b3c60',1,'GpgFrontend::UI::MainWindow']]], + ['crypt_5ftool_5fbar_5f_1463',['crypt_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aac320aef3b49cd068544aac54b927f7a',1,'GpgFrontend::UI::MainWindow']]], + ['ctx_5f_1464',['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_1465',['ctx_mutex_',['../classGpgFrontend_1_1GpgKeyGetter.html#a81941e1f562dc22977a71d00dd10956a',1,'GpgFrontend::GpgKeyGetter']]], + ['current_5freply_5f_1466',['current_reply_',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9679bc6bcdf2e64ec82f6119620b6f2e',1,'GpgFrontend::UI::VersionCheckTask']]], + ['cut_5fact_5f_1467',['cut_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2c2f6c021219564846f1624f6bb5b9a2',1,'GpgFrontend::UI::MainWindow']]], + ['cut_5fpgp_5fheader_5fact_5f_1468',['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 4d4970ee..fbca2aab 100644 --- a/docs/html/search/variables_4.js +++ b/docs/html/search/variables_4.js @@ -1,9 +1,9 @@ var searchData= [ - ['databasepath_1468',['DatabasePath',['../classGpgFrontend_1_1GpgInfo.html#a7347d47006bdf41f1da979ea3289de7e',1,'GpgFrontend::GpgInfo']]], - ['date_5fedit_5f_1469',['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_1470',['decrypt_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa92246123272e3e1085f22612aedf48f',1,'GpgFrontend::UI::MainWindow']]], - ['decrypt_5fverify_5fact_5f_1471',['decrypt_verify_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a70d2b2311708ab023466d343f2e914b1',1,'GpgFrontend::UI::MainWindow']]], - ['default_5ftask_5fname_1472',['DEFAULT_TASK_NAME',['../classGpgFrontend_1_1Thread_1_1Task.html#a4a2cad8747108322152b41c049f99c72',1,'GpgFrontend::Thread::Task']]], - ['dirmngrpath_1473',['DirmngrPath',['../classGpgFrontend_1_1GpgInfo.html#a8c7e75d67b2438c61bbe4cebe68a7029',1,'GpgFrontend::GpgInfo']]] + ['databasepath_1469',['DatabasePath',['../classGpgFrontend_1_1GpgInfo.html#a7347d47006bdf41f1da979ea3289de7e',1,'GpgFrontend::GpgInfo']]], + ['date_5fedit_5f_1470',['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_1471',['decrypt_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa92246123272e3e1085f22612aedf48f',1,'GpgFrontend::UI::MainWindow']]], + ['decrypt_5fverify_5fact_5f_1472',['decrypt_verify_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a70d2b2311708ab023466d343f2e914b1',1,'GpgFrontend::UI::MainWindow']]], + ['default_5ftask_5fname_1473',['DEFAULT_TASK_NAME',['../classGpgFrontend_1_1Thread_1_1Task.html#a4a2cad8747108322152b41c049f99c72',1,'GpgFrontend::Thread::Task']]], + ['dirmngrpath_1474',['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 0cfd0849..cc985ab9 100644 --- a/docs/html/search/variables_5.js +++ b/docs/html/search/variables_5.js @@ -1,14 +1,14 @@ var searchData= [ - ['edit_5f_1474',['edit_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7aa41c90105fd4c2931895d8dfb5ec45',1,'GpgFrontend::UI::MainWindow']]], - ['edit_5fmenu_5f_1475',['edit_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a6d681a306c137dc107088d60b09a925f',1,'GpgFrontend::UI::MainWindow']]], - ['edit_5ftool_5fbar_5f_1476',['edit_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab531823acdbfb117c82a9906ce2107b9',1,'GpgFrontend::UI::MainWindow']]], - ['email_5fedit_5f_1477',['email_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3453d1a8a4c0411472b2779d018abdc3',1,'GpgFrontend::UI::KeyGenDialog']]], - ['email_5fvar_5flabel_5f_1478',['email_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a8c71b37aa040da50cb0105489a42e60d',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['encrypt_5fact_5f_1479',['encrypt_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad6a2cecb2846b324604c4abd1fb7d11a',1,'GpgFrontend::UI::MainWindow']]], - ['encrypt_5fsign_5fact_5f_1480',['encrypt_sign_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2417c807356e3b876ecb2f572568670b',1,'GpgFrontend::UI::MainWindow']]], - ['error_5flabel_5f_1481',['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_1482',['error_messages_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a03a8e1c8f2c1887732d36a346185bb40',1,'GpgFrontend::UI::KeyGenDialog']]], - ['expire_5fcheck_5fbox_5f_1483',['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_1484',['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_1475',['edit_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7aa41c90105fd4c2931895d8dfb5ec45',1,'GpgFrontend::UI::MainWindow']]], + ['edit_5fmenu_5f_1476',['edit_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a6d681a306c137dc107088d60b09a925f',1,'GpgFrontend::UI::MainWindow']]], + ['edit_5ftool_5fbar_5f_1477',['edit_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab531823acdbfb117c82a9906ce2107b9',1,'GpgFrontend::UI::MainWindow']]], + ['email_5fedit_5f_1478',['email_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3453d1a8a4c0411472b2779d018abdc3',1,'GpgFrontend::UI::KeyGenDialog']]], + ['email_5fvar_5flabel_5f_1479',['email_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a8c71b37aa040da50cb0105489a42e60d',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['encrypt_5fact_5f_1480',['encrypt_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad6a2cecb2846b324604c4abd1fb7d11a',1,'GpgFrontend::UI::MainWindow']]], + ['encrypt_5fsign_5fact_5f_1481',['encrypt_sign_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2417c807356e3b876ecb2f572568670b',1,'GpgFrontend::UI::MainWindow']]], + ['error_5flabel_5f_1482',['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_1483',['error_messages_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a03a8e1c8f2c1887732d36a346185bb40',1,'GpgFrontend::UI::KeyGenDialog']]], + ['expire_5fcheck_5fbox_5f_1484',['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_1485',['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 7fb91ba1..aaa954e1 100644 --- a/docs/html/search/variables_6.js +++ b/docs/html/search/variables_6.js @@ -1,11 +1,11 @@ var searchData= [ - ['file_5fmenu_5f_1485',['file_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af08c62c38a750382ee218191c8e13f4f',1,'GpgFrontend::UI::MainWindow']]], - ['file_5ftool_5fbar_5f_1486',['file_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1e0d23d361b8e339ca85410db2bdfb64',1,'GpgFrontend::UI::MainWindow']]], - ['find_5fact_5f_1487',['find_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a6154f5dbdc9cebc0644e5d1e25895df8',1,'GpgFrontend::UI::MainWindow']]], - ['find_5fedit_5f_1488',['find_edit_',['../classGpgFrontend_1_1UI_1_1FindWidget.html#af420832720942dd1e7cb3f3841c7cbfe',1,'GpgFrontend::UI::FindWidget']]], - ['fingerprint_5fbox_5f_1489',['fingerprint_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#ada1c21cf59f1f19dfd4ffe0391bc1594',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['fingerprint_5fvar_5flabel_5f_1490',['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_1491',['fpr_',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#a36bf3306b8564b49da04eee1dc653675',1,'GpgFrontend::UI::VerifyKeyDetailBox']]], - ['full_5ffile_5fpath_5f_1492',['full_file_path_',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#ae867b6329fcb1978479a9d70f7b017db',1,'GpgFrontend::UI::PlainTextEditorPage']]] + ['file_5fmenu_5f_1486',['file_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af08c62c38a750382ee218191c8e13f4f',1,'GpgFrontend::UI::MainWindow']]], + ['file_5ftool_5fbar_5f_1487',['file_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1e0d23d361b8e339ca85410db2bdfb64',1,'GpgFrontend::UI::MainWindow']]], + ['find_5fact_5f_1488',['find_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a6154f5dbdc9cebc0644e5d1e25895df8',1,'GpgFrontend::UI::MainWindow']]], + ['find_5fedit_5f_1489',['find_edit_',['../classGpgFrontend_1_1UI_1_1FindWidget.html#af420832720942dd1e7cb3f3841c7cbfe',1,'GpgFrontend::UI::FindWidget']]], + ['fingerprint_5fbox_5f_1490',['fingerprint_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#ada1c21cf59f1f19dfd4ffe0391bc1594',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['fingerprint_5fvar_5flabel_5f_1491',['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_1492',['fpr_',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#a36bf3306b8564b49da04eee1dc653675',1,'GpgFrontend::UI::VerifyKeyDetailBox']]], + ['full_5ffile_5fpath_5f_1493',['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 6118efd8..51767598 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_1493',['global_setting_station_',['../classGpgFrontend_1_1DataObjectOperator.html#a3c195f8e4c30d95be14a6d43e9282601',1,'GpgFrontend::DataObjectOperator']]], - ['gnupg_5fact_5f_1494',['gnupg_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a79b83f536a7c4299eaa3d22e4e875227',1,'GpgFrontend::UI::MainWindow']]], - ['gnupghomepath_1495',['GnuPGHomePath',['../classGpgFrontend_1_1GpgInfo.html#a0c1dbdb54f880a620419fdbd8336dc5d',1,'GpgFrontend::GpgInfo']]], - ['gnupgversion_1496',['GnupgVersion',['../classGpgFrontend_1_1GpgInfo.html#abbb3d503b10073bebf86d79bbaeab4c9',1,'GpgFrontend::GpgInfo']]], - ['gpg_5fmenu_5f_1497',['gpg_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2bed0c3b032269c9eb82bc7c068852cb',1,'GpgFrontend::UI::MainWindow']]], - ['gpgagentpath_1498',['GpgAgentPath',['../classGpgFrontend_1_1GpgInfo.html#af6ca2e99ffc487b8e4aa251d3cb23191',1,'GpgFrontend::GpgInfo']]], - ['gpgconfpath_1499',['GpgConfPath',['../classGpgFrontend_1_1GpgInfo.html#a2fcd53b59bc251c38eb8d79cec946777',1,'GpgFrontend::GpgInfo']]] + ['global_5fsetting_5fstation_5f_1494',['global_setting_station_',['../classGpgFrontend_1_1DataObjectOperator.html#a3c195f8e4c30d95be14a6d43e9282601',1,'GpgFrontend::DataObjectOperator']]], + ['gnupg_5fact_5f_1495',['gnupg_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a79b83f536a7c4299eaa3d22e4e875227',1,'GpgFrontend::UI::MainWindow']]], + ['gnupghomepath_1496',['GnuPGHomePath',['../classGpgFrontend_1_1GpgInfo.html#a0c1dbdb54f880a620419fdbd8336dc5d',1,'GpgFrontend::GpgInfo']]], + ['gnupgversion_1497',['GnupgVersion',['../classGpgFrontend_1_1GpgInfo.html#abbb3d503b10073bebf86d79bbaeab4c9',1,'GpgFrontend::GpgInfo']]], + ['gpg_5fmenu_5f_1498',['gpg_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2bed0c3b032269c9eb82bc7c068852cb',1,'GpgFrontend::UI::MainWindow']]], + ['gpgagentpath_1499',['GpgAgentPath',['../classGpgFrontend_1_1GpgInfo.html#af6ca2e99ffc487b8e4aa251d3cb23191',1,'GpgFrontend::GpgInfo']]], + ['gpgconfpath_1500',['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 535e0d7a..1f73c0cb 100644 --- a/docs/html/search/variables_8.js +++ b/docs/html/search/variables_8.js @@ -1,5 +1,5 @@ var searchData= [ - ['hash_5fkey_5f_1500',['hash_key_',['../classGpgFrontend_1_1DataObjectOperator.html#ae409c3562c3e08931daa17f5790c508b',1,'GpgFrontend::DataObjectOperator']]], - ['help_5fmenu_5f_1501',['help_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a89fa105ed54d2189d762668262d74c63',1,'GpgFrontend::UI::MainWindow']]] + ['hash_5fkey_5f_1501',['hash_key_',['../classGpgFrontend_1_1DataObjectOperator.html#ae409c3562c3e08931daa17f5790c508b',1,'GpgFrontend::DataObjectOperator']]], + ['help_5fmenu_5f_1502',['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 2bf4f963..05a7fff4 100644 --- a/docs/html/search/variables_9.js +++ b/docs/html/search/variables_9.js @@ -1,8 +1,8 @@ var searchData= [ - ['import_5fbutton_5f_1502',['import_button_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8538940a9a5dea7ddf53c89acdeb83be',1,'GpgFrontend::UI::MainWindow']]], - ['import_5fkey_5ffrom_5fedit_5fact_5f_1503',['import_key_from_edit_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a01b85fb17c373d8f97ce439027c6d04e',1,'GpgFrontend::UI::MainWindow']]], - ['import_5fkey_5fmenu_5f_1504',['import_key_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8d6fe32ab64797459443ed285d769745',1,'GpgFrontend::UI::MainWindow']]], - ['instances_5fmap_5f_1505',['instances_map_',['../classGpgFrontend_1_1SingletonStorage.html#a6181f2b5af39c6b86de89e1ba9eeff1c',1,'GpgFrontend::SingletonStorage']]], - ['instances_5fmutex_5f_1506',['instances_mutex_',['../classGpgFrontend_1_1SingletonStorage.html#a15161d0afafec602018a89266dab5641',1,'GpgFrontend::SingletonStorage']]] + ['import_5fbutton_5f_1503',['import_button_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8538940a9a5dea7ddf53c89acdeb83be',1,'GpgFrontend::UI::MainWindow']]], + ['import_5fkey_5ffrom_5fedit_5fact_5f_1504',['import_key_from_edit_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a01b85fb17c373d8f97ce439027c6d04e',1,'GpgFrontend::UI::MainWindow']]], + ['import_5fkey_5fmenu_5f_1505',['import_key_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8d6fe32ab64797459443ed285d769745',1,'GpgFrontend::UI::MainWindow']]], + ['instances_5fmap_5f_1506',['instances_map_',['../classGpgFrontend_1_1SingletonStorage.html#a6181f2b5af39c6b86de89e1ba9eeff1c',1,'GpgFrontend::SingletonStorage']]], + ['instances_5fmutex_5f_1507',['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 f7487eae..0dcc8828 100644 --- a/docs/html/search/variables_a.js +++ b/docs/html/search/variables_a.js @@ -1,17 +1,17 @@ var searchData= [ - ['key_5fbox_5f_1507',['key_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aae9905764b5551208574a932fdfba29c',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['key_5fid_5fvar_5flabel_1508',['key_id_var_label',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a65176245d280ae0734ef7b5b3f1c4cc4',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['key_5fid_5fvar_5flabel_5f_1509',['key_id_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a2f634f4c83ab5dd2d088eb07e0d3b862',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], - ['key_5flist_5fdock_5f_1510',['key_list_dock_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adaa66d9cdc51c946efc99bb94deda31c',1,'GpgFrontend::UI::MainWindow']]], - ['key_5fmenu_5f_1511',['key_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a16bbfd12cd3a6f0df9e2c32cf7999e57',1,'GpgFrontend::UI::MainWindow']]], - ['key_5fsize_5fspin_5fbox_5f_1512',['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_1513',['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_1514',['key_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a38f243880cfb9276545b08f0730811e7',1,'GpgFrontend::UI::MainWindow']]], - ['key_5ftype_5fcombo_5fbox_5f_1515',['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_1516',['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_1517',['key_usage_group_box_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7b1b9cb46c0547c1e561e56d55616cf1',1,'GpgFrontend::UI::KeyGenDialog']]], - ['keyboxdpath_1518',['KeyboxdPath',['../classGpgFrontend_1_1GpgInfo.html#a072503811cb59dad27040e4e8914d18b',1,'GpgFrontend::GpgInfo']]], - ['keys_5fcache_5f_1519',['keys_cache_',['../classGpgFrontend_1_1GpgKeyGetter.html#a9567d5e08ae73c5bafcd1dc378fed066',1,'GpgFrontend::GpgKeyGetter']]], - ['keys_5fcache_5fmutex_5f_1520',['keys_cache_mutex_',['../classGpgFrontend_1_1GpgKeyGetter.html#ae1d7846ad2fa17ab90c72b3186ba5335',1,'GpgFrontend::GpgKeyGetter']]] + ['key_5fbox_5f_1508',['key_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aae9905764b5551208574a932fdfba29c',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['key_5fid_5fvar_5flabel_1509',['key_id_var_label',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a65176245d280ae0734ef7b5b3f1c4cc4',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['key_5fid_5fvar_5flabel_5f_1510',['key_id_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a2f634f4c83ab5dd2d088eb07e0d3b862',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], + ['key_5flist_5fdock_5f_1511',['key_list_dock_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adaa66d9cdc51c946efc99bb94deda31c',1,'GpgFrontend::UI::MainWindow']]], + ['key_5fmenu_5f_1512',['key_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a16bbfd12cd3a6f0df9e2c32cf7999e57',1,'GpgFrontend::UI::MainWindow']]], + ['key_5fsize_5fspin_5fbox_5f_1513',['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_1514',['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_1515',['key_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a38f243880cfb9276545b08f0730811e7',1,'GpgFrontend::UI::MainWindow']]], + ['key_5ftype_5fcombo_5fbox_5f_1516',['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_1517',['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_1518',['key_usage_group_box_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7b1b9cb46c0547c1e561e56d55616cf1',1,'GpgFrontend::UI::KeyGenDialog']]], + ['keyboxdpath_1519',['KeyboxdPath',['../classGpgFrontend_1_1GpgInfo.html#a072503811cb59dad27040e4e8914d18b',1,'GpgFrontend::GpgInfo']]], + ['keys_5fcache_5f_1520',['keys_cache_',['../classGpgFrontend_1_1GpgKeyGetter.html#a9567d5e08ae73c5bafcd1dc378fed066',1,'GpgFrontend::GpgKeyGetter']]], + ['keys_5fcache_5fmutex_5f_1521',['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 2237dee8..3001a875 100644 --- a/docs/html/search/variables_b.js +++ b/docs/html/search/variables_b.js @@ -1,4 +1,4 @@ var searchData= [ - ['latest_5freply_5f_1521',['latest_reply_',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#aed545ffa8128acb16bb28c067e032ec9',1,'GpgFrontend::UI::VersionCheckTask']]] + ['latest_5freply_5f_1522',['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 17b55b37..5a696326 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_1522',['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_1523',['mt_',['../classGpgFrontend_1_1DataObjectOperator.html#a9fc92c7d497f2a2057776adfca40e8ca',1,'GpgFrontend::DataObjectOperator::mt_()'],['../classGpgFrontend_1_1PassphraseGenerator.html#a19ac4999bbd5fb7e6c42a4aef9606892',1,'GpgFrontend::PassphraseGenerator::mt_()']]] + ['m_5ftext_5fpage_5f_1523',['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_1524',['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 121b041f..c03b9f42 100644 --- a/docs/html/search/variables_d.js +++ b/docs/html/search/variables_d.js @@ -1,7 +1,7 @@ var searchData= [ - ['name_5fedit_5f_1524',['name_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7ed095cce29c658741ae0520049010c0',1,'GpgFrontend::UI::KeyGenDialog']]], - ['name_5fvar_5flabel_5f_1525',['name_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a9d57be18c2091827c04ec8809f4154be',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['new_5ftab_5fact_5f_1526',['new_tab_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a472500fec64442b114e9ce9faf4b6a73',1,'GpgFrontend::UI::MainWindow']]], - ['no_5fpass_5fphrase_5fcheck_5fbox_5f_1527',['no_pass_phrase_check_box_',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a001803152c0e5bd9de7c7dd04cef8ad4',1,'GpgFrontend::UI::SubkeyGenerateDialog']]] + ['name_5fedit_5f_1525',['name_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7ed095cce29c658741ae0520049010c0',1,'GpgFrontend::UI::KeyGenDialog']]], + ['name_5fvar_5flabel_5f_1526',['name_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a9d57be18c2091827c04ec8809f4154be',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['new_5ftab_5fact_5f_1527',['new_tab_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a472500fec64442b114e9ce9faf4b6a73',1,'GpgFrontend::UI::MainWindow']]], + ['no_5fpass_5fphrase_5fcheck_5fbox_5f_1528',['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 23b4627e..70eb8050 100644 --- a/docs/html/search/variables_e.js +++ b/docs/html/search/variables_e.js @@ -1,7 +1,7 @@ var searchData= [ - ['open_5fact_5f_1528',['open_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a4a1edafb8c67b181ff3c29394147571d',1,'GpgFrontend::UI::MainWindow']]], - ['open_5fkey_5fmanagement_5fact_5f_1529',['open_key_management_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad7b22560df7e3bb38b660d3ffc84dc83',1,'GpgFrontend::UI::MainWindow']]], - ['open_5fsettings_5fact_5f_1530',['open_settings_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#afab1e0363a4b97ff68228cd4bd7cbc62',1,'GpgFrontend::UI::MainWindow']]], - ['owner_5fbox_5f_1531',['owner_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#ad8c25061351d8e739b70d5466b87410e',1,'GpgFrontend::UI::KeyPairDetailTab']]] + ['open_5fact_5f_1529',['open_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a4a1edafb8c67b181ff3c29394147571d',1,'GpgFrontend::UI::MainWindow']]], + ['open_5fkey_5fmanagement_5fact_5f_1530',['open_key_management_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad7b22560df7e3bb38b660d3ffc84dc83',1,'GpgFrontend::UI::MainWindow']]], + ['open_5fsettings_5fact_5f_1531',['open_settings_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#afab1e0363a4b97ff68228cd4bd7cbc62',1,'GpgFrontend::UI::MainWindow']]], + ['owner_5fbox_5f_1532',['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 a58edf84..d9b2718b 100644 --- a/docs/html/search/variables_f.js +++ b/docs/html/search/variables_f.js @@ -1,7 +1,7 @@ var searchData= [ - ['paste_5fact_5f_1532',['paste_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a62ea61c38e758022ba655c6faf54322b',1,'GpgFrontend::UI::MainWindow']]], - ['pending_5ftasks_5f_1533',['pending_tasks_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a6d92421bbbfcf3136335a5173d1b2a22',1,'GpgFrontend::Thread::TaskRunner']]], - ['pgp_5fcrypt_5fbegin_1534',['PGP_CRYPT_BEGIN',['../classGpgFrontend_1_1GpgConstants.html#a237006d6db30c7e3f8de171210eb35f2',1,'GpgFrontend::GpgConstants']]], - ['print_5fact_5f_1535',['print_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8f9dd7edba23321a13ed630cdef7fdcc',1,'GpgFrontend::UI::MainWindow']]] + ['paste_5fact_5f_1533',['paste_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a62ea61c38e758022ba655c6faf54322b',1,'GpgFrontend::UI::MainWindow']]], + ['pending_5ftasks_5f_1534',['pending_tasks_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a6d92421bbbfcf3136335a5173d1b2a22',1,'GpgFrontend::Thread::TaskRunner']]], + ['pgp_5fcrypt_5fbegin_1535',['PGP_CRYPT_BEGIN',['../classGpgFrontend_1_1GpgConstants.html#a237006d6db30c7e3f8de171210eb35f2',1,'GpgFrontend::GpgConstants']]], + ['print_5fact_5f_1536',['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 99bf4a84..3dccedb7 100644 --- a/docs/html/structGpgFrontend_1_1GpgContextInitArgs-members.html +++ b/docs/html/structGpgFrontend_1_1GpgContextInitArgs-members.html @@ -100,6 +100,7 @@ $(document).ready(function(){initNavTree('structGpgFrontend_1_1GpgContextInitArg independent_database (defined in GpgFrontend::GpgContextInitArgs)GpgFrontend::GpgContextInitArgs offline_mode (defined in GpgFrontend::GpgContextInitArgs)GpgFrontend::GpgContextInitArgs test_mode (defined in GpgFrontend::GpgContextInitArgs)GpgFrontend::GpgContextInitArgs + use_pinentry (defined in GpgFrontend::GpgContextInitArgs)GpgFrontend::GpgContextInitArgs diff --git a/docs/html/structGpgFrontend_1_1GpgContextInitArgs.html b/docs/html/structGpgFrontend_1_1GpgContextInitArgs.html index 70f670e9..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:
    Collaboration graph
    - + @@ -132,6 +132,9 @@ bool custom_gpgconf = 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 fd208ca6..19fac246 100644 --- a/docs/html/structGpgFrontend_1_1GpgContextInitArgs.js +++ b/docs/html/structGpgFrontend_1_1GpgContextInitArgs.js @@ -10,5 +10,6 @@ var structGpgFrontend_1_1GpgContextInitArgs = [ "gpg_path", "structGpgFrontend_1_1GpgContextInitArgs.html#a825d8c5daced5eb06be1a949ae0eadfd", null ], [ "independent_database", "structGpgFrontend_1_1GpgContextInitArgs.html#ac2679300c14d3f0ce29625a267054e6b", null ], [ "offline_mode", "structGpgFrontend_1_1GpgContextInitArgs.html#a33cd883333581952ae49784ae86edae7", null ], - [ "test_mode", "structGpgFrontend_1_1GpgContextInitArgs.html#a25ca282a0a82ed7aa4cb677a86f53eef", 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 d0dc4fd8..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 a1f23b97..4c261437 100644 --- a/docs/html/structGpgFrontend_1_1GpgContextInitArgs__coll__graph.md5 +++ b/docs/html/structGpgFrontend_1_1GpgContextInitArgs__coll__graph.md5 @@ -1 +1 @@ -7738771809f872cb060eab2c01a5c163 \ 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 bad80ebc..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/latex/classGpgFrontend_1_1ArchiveFileOperator__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1ArchiveFileOperator__coll__graph.pdf index e3445296..6b95010c 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__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1CacheManager__coll__graph.pdf index fba2ebe2..75bd6dc9 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_1ChannelObject__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1ChannelObject__coll__graph.pdf index b9fe32ef..593614aa 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..10d5ffdf 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 +d6516848d6978cb97acb84ebf3830b5a \ 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 d8721919..f3ac25d5 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 ae29c9e3..f70e9cb4 100644 Binary files a/docs/latex/classGpgFrontend_1_1CharsetOperator__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1CharsetOperator__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1CoreCommonUtil__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1CoreCommonUtil__coll__graph.pdf index 7e03a4ca..a1d4cd51 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 9ee9da64..a12f5c2c 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 32b34b45..dfa0e58a 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 029f6fd4..5ac884eb 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..3e33bc49 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 +94202f3dfac8b1dc2a0d1e4c328ebeb6 \ 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 0e5f92d3..57a0508c 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 72facdbb..86fee351 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 e741110b..f731cc3a 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 1acb7b1f..4782217b 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 65774ea4..59216e62 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 @@ -190,18 +192,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\+Mgmt\+::create\+\_\+actions(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::create\+\_\+actions(), Gpg\+Frontend\+::\+UI\+::\+Key\+List\+::drop\+Event(), Gpg\+Frontend\+::\+UI\+::\+Gnu\+PGController\+Dialog\+::\+Gnu\+PGController\+Dialog(), Gpg\+Frontend\+::\+UI\+::init\+\_\+locale(), 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\+Pair\+Opera\+Tab\+::\+Key\+Pair\+Opera\+Tab(), Gpg\+Frontend\+::\+UI\+::\+Key\+Server\+Import\+Dialog\+::\+Key\+Server\+Import\+Dialog(), Gpg\+Frontend\+::\+Gpg\+Context\+::post\+\_\+init\+\_\+ctx(), 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(), Gpg\+Frontend\+::\+UI\+::\+Verify\+Key\+Detail\+Box\+::\+Verify\+Key\+Detail\+Box(), 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}} diff --git a/docs/latex/classGpgFrontend_1_1GlobalSettingStation__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1GlobalSettingStation__coll__graph.md5 index d0ce3525..341909cf 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 +baa5e223600bf508a726e5a78f491e7a \ 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 962eb69f..9c68d26f 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..341909cf 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 +baa5e223600bf508a726e5a78f491e7a \ 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 962eb69f..9c68d26f 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 f21588bf..a03d8b24 100644 --- a/docs/latex/classGpgFrontend_1_1GpgAdvancedOperator__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1GpgAdvancedOperator__coll__graph.md5 @@ -1 +1 @@ -073bff77b3eaea65aa02e0e32106f269 \ 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 aaf6688b..2d78db69 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 29cc90bd..ce5ca09b 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 f6119c65..87cc3beb 100644 --- a/docs/latex/classGpgFrontend_1_1GpgBasicOperator__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1GpgBasicOperator__coll__graph.md5 @@ -1 +1 @@ -63c902e872bb228d63be89bf27d169f0 \ 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 c29f4203..0c95d996 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 0ed965b8..8c552af9 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgBasicOperator__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgBasicOperator__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgCommandExecutor__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1GpgCommandExecutor__coll__graph.md5 index 7380897d..e16ecc1d 100644 --- a/docs/latex/classGpgFrontend_1_1GpgCommandExecutor__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1GpgCommandExecutor__coll__graph.md5 @@ -1 +1 @@ -d6ba78be1c0abf79ab157cd5c699ef56 \ 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 48bb5670..0c0a14f6 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 00c9def8..38de0876 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 f5378797..11da4160 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 a9773435..9019c2db 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\+::\+Singleton\+Function\+Object$<$ Global\+Setting\+Station $>$\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Global\+Setting\+Station\+::\+Get\+UISettings(), 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(), 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 06a6c447..f25f8200 100644 --- a/docs/latex/classGpgFrontend_1_1GpgContext__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1GpgContext__coll__graph.md5 @@ -1 +1 @@ -d0db9bd6186df103caacf156ae55d60c \ 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 86b741a2..3773c64f 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 e4bf5129..95d4865e 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 b5f42a92..702e5767 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 3a28a4be..76f82918 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 9dd0cbf2..6c8263c9 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 3ffc3e67..37c674ed 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 f9cacce0..1f0076c2 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 b1261f95..dd462d70 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 b1261f95..dd462d70 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 cda8efe9..08a83a14 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 b6e454be..4108da09 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 b3391e22..3b674b1e 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgInfo__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgInfo__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyGetter__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1GpgKeyGetter__coll__graph.md5 index 78c0018e..75646bb1 100644 --- a/docs/latex/classGpgFrontend_1_1GpgKeyGetter__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1GpgKeyGetter__coll__graph.md5 @@ -1 +1 @@ -b7e27fbbe6e4b901785f7eb5b9681258 \ No newline at end of file +93a1ba94ff9416de80138bf340e0d37b \ 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 825362ee..8789c371 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 2f6aa32b..c0c73653 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgKeyGetter__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgKeyGetter__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter__coll__graph.md5 index 4daf9867..f7c82e8c 100644 --- a/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter__coll__graph.md5 @@ -1 +1 @@ -d9db9d570663aaddc3adebca8e4ad145 \ 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 4230f6df..e0a36713 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 54bbaef6..9a025dbc 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyManager__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1GpgKeyManager__coll__graph.md5 index 04484ec1..6913fa2a 100644 --- a/docs/latex/classGpgFrontend_1_1GpgKeyManager__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1GpgKeyManager__coll__graph.md5 @@ -1 +1 @@ -d7c3526b0c380819abe0279dfb93ddf3 \ No newline at end of file +9900b8b9f3beb4cdcdcf2f43fd858305 \ 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 65b8652c..5fda6ba0 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgKeyManager__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgKeyManager__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyManager__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgKeyManager__inherit__graph.pdf index 15cc689e..c11b4e51 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgKeyManager__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgKeyManager__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyOpera__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1GpgKeyOpera__coll__graph.md5 index 93e80cb9..cf38342c 100644 --- a/docs/latex/classGpgFrontend_1_1GpgKeyOpera__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1GpgKeyOpera__coll__graph.md5 @@ -1 +1 @@ -4eea6897ba18b724985a9642115c9fd0 \ No newline at end of file +85fd32902ac465739e52bfe30e23707e \ 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 3b98c5a7..2ac00a06 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgKeyOpera__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgKeyOpera__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyOpera__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgKeyOpera__inherit__graph.pdf index ddd8e032..f9afbc45 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 bf1b6f87..cb55c5a1 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgKeySignature__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgKeySignature__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgKey__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgKey__coll__graph.pdf index 18e662e3..ea67c22d 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 ffbed5e0..3bd0b281 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 dd233275..cf7ddee5 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 4ae2eaad..97f38348 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 7f9885c0..5841fdf4 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 947c069e..a8461261 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 e2e3521e..46249364 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 3c945085..1af5b8a7 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 bd445102..be8bca21 100644 --- a/docs/latex/classGpgFrontend_1_1GpgUIDOperator__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1GpgUIDOperator__coll__graph.md5 @@ -1 +1 @@ -356f28eeed9a43c07a7b7c11f885c01d \ 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 a0163b53..a3cb09a4 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 8d6c2ad6..f229f101 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 94a819e2..7e06e842 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 12fa0fbe..28fef4e2 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 bddb9c01..6cb73b6e 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 1d4e3a31..d95de710 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 87ffba06..a3c346b0 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 87ffba06..a3c346b0 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 a061739b..7c6864a1 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..9203c8fb 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 +9488884236c6a8739ee045f1f95c296e \ 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 c88df674..959541bb 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 84e3c5f8..eb20c84b 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 2a237c53..72005b04 100644 Binary files a/docs/latex/classGpgFrontend_1_1SingletonStorage__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1SingletonStorage__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1Thread_1_1CtxCheckTask__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Thread_1_1CtxCheckTask__coll__graph.pdf index 4e3c5d25..ce2a4b5b 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 c608cb8f..6af08cdd 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 39247b60..d5837599 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 d38dca7f..01e10e4e 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 b84df97e..f86a02bc 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 7c4abf50..e3e23799 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 39d04cc9..443175c4 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 8f932ed8..8bc2c74e 100644 Binary files a/docs/latex/classGpgFrontend_1_1Thread_1_1Task__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1Thread_1_1Task__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1Thread_1_1Task__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1Thread_1_1Task__inherit__graph.pdf index 86c58079..5094a026 100644 Binary files a/docs/latex/classGpgFrontend_1_1Thread_1_1Task__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1Thread_1_1Task__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.pdf index ca276a2c..84fc7afc 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.pdf index a9896f2e..704b6709 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 642f9b6a..47aeea71 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 642f9b6a..47aeea71 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 a7de6fd0..e0511082 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 5c3e9af0..d18db30d 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 59a62db9..a8605aa3 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 59a62db9..a8605aa3 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ChoosePage__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ChoosePage__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__coll__graph.pdf index e06f63c8..777bcb17 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__inherit__graph.pdf index 16cda705..68fdb23f 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 77948542..cf52b0be 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 77948542..cf52b0be 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ConclusionPage__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ConclusionPage__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.pdf index 3918911d..d892b7c6 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.pdf index 50f7c4be..a4d4d961 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1FilePage__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1FilePage__coll__graph.pdf index 45fb73b4..c7d8d7cd 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1FilePage__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1FilePage__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1FilePage__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1FilePage__inherit__graph.pdf index a051a3bf..e4d9cb37 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 39e46540..aee63448 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 8a40de23..da693e07 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 ae21a0e6..ee1c6cf3 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 dec0ac4a..c51a0a6a 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1FindWidget__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1FindWidget__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.pdf index 32b3297c..b0f33d25 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.pdf index f7208d2a..97bf33dd 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 88367117..e8183e5e 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralMainWindow__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralMainWindow__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralMainWindow__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralMainWindow__inherit__graph.pdf index 47e5b2d8..41bd3149 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralMainWindow__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralMainWindow__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralTab__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralTab__coll__graph.pdf index efafc646..0b10d5c9 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 db2eb3e8..3869a9f0 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralTab__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralTab__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__coll__graph.pdf index c27ba2af..e3f61a9f 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__inherit__graph.pdf index a07859ec..74cce046 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GnupgTab__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GnupgTab__coll__graph.pdf index 23ada59b..bedf8220 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 ede43c44..940c8454 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 275b3000..fc248c0b 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 275b3000..fc248c0b 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 5ac215e1..4d3fbe23 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 5ac215e1..4d3fbe23 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 1b89d4b5..cefe4fac 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 2a6cb6a7..d7eda598 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 d4fdc03d..6faadd6f 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 d4fdc03d..6faadd6f 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 d745d434..89ceb14e 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 d745d434..89ceb14e 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1IntroPage__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1IntroPage__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.pdf index 336ea3e8..9c176f87 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.pdf index 0bd06112..ab81fea2 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 b5c6b33f..267581a6 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog.tex @@ -141,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.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.pdf index 4ca8ff72..2ab90985 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.pdf index e0d48795..f8305a27 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 0d9ab412..c444c2c3 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 0d9ab412..c444c2c3 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenPage__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenPage__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.pdf index b7d7a710..877e304c 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.pdf index b512b2c2..e8808c5f 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 4a72f918..9aabe6bd 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyList.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyList.tex @@ -243,7 +243,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}} 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 d74588d1..90ac7a46 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyList__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyList__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyList__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyList__inherit__graph.pdf index bbbe8c86..4c5fc2ad 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.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.pdf index bf05aa67..d11b2ba9 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 217a0436..32c2266b 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.pdf index eb3e5151..7a3b2e99 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.pdf index 6b7ee1bf..3b22ff78 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__coll__graph.pdf index 59619482..5d0339f8 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__inherit__graph.pdf index 34008f3c..2189d83e 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairDetailTab__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__coll__graph.pdf index a8f2c112..cfdbe9f1 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__inherit__graph.pdf index eb223ff2..bbe7c892 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairOperaTab__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__coll__graph.pdf index e64f9e29..7977b627 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 286389af..2da2c06f 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__coll__graph.pdf index 1838e05a..5e0b505e 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 26b14086..80878614 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 3f03f564..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(), Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Global\+Setting\+Station $>$\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Global\+Setting\+Station\+::\+Get\+UISettings(), 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.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.pdf index c4534f75..cbaadea4 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.pdf index f716e7da..a3c88e2f 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 6a7694ec..9c83bfc5 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 af0b641a..60dcb487 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 d8e64ef6..bb0eb548 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 8ce70bfe..1e004258 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerSearchTask__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerSearchTask__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.pdf index 409269bb..a421c7f6 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.pdf index 29b2486b..ae8c2d7b 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.pdf index 636e56c0..3f2bde28 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.pdf index a3c26c0a..ffd3b349 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.pdf index 28147a08..92146a2b 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.pdf index e2ac81d1..7c7c4800 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 f9cf67f4..038822e9 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 b1468fcc..f658fd6e 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 1b5b1002..703ba0e1 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 05fddc1e..3edadf9a 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 cf4d5fc4..767ac382 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow.tex @@ -413,7 +413,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(), Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Global\+Setting\+Station $>$\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Global\+Setting\+Station\+::\+Get\+UISettings(), 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\+\_\+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\+\_\+. +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}} @@ -838,7 +838,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(). @@ -852,7 +852,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(). @@ -866,7 +866,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(). @@ -880,7 +880,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.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.pdf index 7d9d8c3c..a311cf55 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__inherit__graph.pdf index 05e207a5..ec0c6b5c 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 1f5fa700..23e8b81d 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 961319df..f3db4343 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 8e1d9645..3e75c840 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 e96330b9..72d16f44 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1PlainTextEditorPage__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1PlainTextEditorPage__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask__coll__graph.pdf index b14aaff2..4370f469 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask__inherit__graph.pdf index 5c18acbf..53bc1550 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.pdf index c49ccdb1..160325b0 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.pdf index 340bb0ba..3b8fe801 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.pdf index 7553c252..47601770 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.pdf index c5a98ed6..ebe2678a 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 6a16956b..6cf0b5ef 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 20487619..0bb05432 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SettingsObject__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SettingsObject__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SignalStation__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SignalStation__coll__graph.pdf index a665102c..b1088d13 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 81dad4b6..3240699b 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SignalStation__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SignalStation__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.pdf index 0aa5d37c..d7a4bd97 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.pdf index c0373880..d8722d9e 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 11368433..4c406633 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.tex @@ -127,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.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.pdf index f00e5cbe..e9bb0f9c 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.pdf index 61073740..c84c5498 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 db4d8867..ffe1f7aa 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 db4d8867..ffe1f7aa 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1TOFUInfoPage__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1TOFUInfoPage__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__coll__graph.pdf index e043a030..8ab9e9fc 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__inherit__graph.pdf index 36e46f66..8ab9e9fc 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 e0285dee..a1e780f7 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 e0285dee..a1e780f7 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1TranslatorsTab__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1TranslatorsTab__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1UpdateTab__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1UpdateTab__coll__graph.pdf index 3696e89d..06358b3f 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1UpdateTab__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1UpdateTab__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1UpdateTab__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1UpdateTab__inherit__graph.pdf index 3696e89d..06358b3f 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1UpdateTab__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1UpdateTab__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.pdf index 9d9c3d32..f7b3b3b0 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__inherit__graph.pdf index 59700a96..7553e036 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 3017c610..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(), Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Global\+Setting\+Station $>$\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Gpg\+Signature\+::\+Get\+Status(), and Gpg\+Frontend\+::\+Global\+Setting\+Station\+::\+Get\+UISettings(). +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 51aa8c75..fcb8d90e 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 11b6cece..fdd1c78d 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 6a304f4e..9e264dd3 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 e99bfd69..18434b0f 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1VersionCheckTask__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1VersionCheckTask__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.pdf index 215514d2..83163e4b 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.pdf index 215514d2..83163e4b 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 6380bc69..28157eb0 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 6380bc69..28157eb0 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1Wizard__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1Wizard__inherit__graph.pdf differ diff --git a/docs/latex/classProxyConnectionTestThread__coll__graph.pdf b/docs/latex/classProxyConnectionTestThread__coll__graph.pdf index 836c8a2b..919b163f 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 b8c667bf..dc0e4e15 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 b8c667bf..dc0e4e15 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 f6026bf5..56853d0e 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 bc59be04..84de79f3 100644 Binary files a/docs/latex/classclass__coll__graph.pdf and b/docs/latex/classclass__coll__graph.pdf differ diff --git a/docs/latex/structGpgFrontend_1_1ArchiveStruct__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1ArchiveStruct__coll__graph.pdf index 2e57c1cb..a47c431b 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 7167567b..de198751 100644 --- a/docs/latex/structGpgFrontend_1_1GpgContextInitArgs.tex +++ b/docs/latex/structGpgFrontend_1_1GpgContextInitArgs.tex @@ -42,6 +42,9 @@ 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 5b458022..a3e6fbf3 100644 --- a/docs/latex/structGpgFrontend_1_1GpgContextInitArgs__coll__graph.md5 +++ b/docs/latex/structGpgFrontend_1_1GpgContextInitArgs__coll__graph.md5 @@ -1 +1 @@ -b05fccc6ca054108644a934f9c88a8ea \ 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 00005a5b..ec8e2a86 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 2ac6c2e3..d7ae252e 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 7ba3b925..1065b741 100644 Binary files a/docs/latex/structGpgFrontend_1_1GpgData_1_1__data__ref__deleter__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1GpgData_1_1__data__ref__deleter__coll__graph.pdf differ diff --git a/docs/latex/structGpgFrontend_1_1GpgKey_1_1__key__ref__deleter__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1GpgKey_1_1__key__ref__deleter__coll__graph.pdf index 1666d48d..56af35a1 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 49ea1484..8bdd955c 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 0b98447c..66b70b79 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 18e868b9..12c12892 100644 Binary files a/docs/latex/structGpgFrontend_1_1UI_1_1KeyListRow__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1UI_1_1KeyListRow__coll__graph.pdf differ diff --git a/docs/latex/structGpgFrontend_1_1UI_1_1KeyMenuAbility__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1UI_1_1KeyMenuAbility__coll__graph.pdf index ecde14c7..63b90e63 100644 Binary files a/docs/latex/structGpgFrontend_1_1UI_1_1KeyMenuAbility__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1UI_1_1KeyMenuAbility__coll__graph.pdf differ diff --git a/docs/latex/structGpgFrontend_1_1UI_1_1KeyTable__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1UI_1_1KeyTable__coll__graph.pdf index 9d559aa5..e04ab7b3 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 708923c6..15a301c2 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 0172df17..d3db8949 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 ae5d8223..74a7dc6f 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