diff --git a/docs/html/AboutDialog_8h_source.html b/docs/html/AboutDialog_8h_source.html index f9eb4664..b4d3c852 100644 --- a/docs/html/AboutDialog_8h_source.html +++ b/docs/html/AboutDialog_8h_source.html @@ -162,7 +162,7 @@ $(document).ready(function(){initNavTree('AboutDialog_8h_source.html',''); initR
GpgFrontend::UI::UpdateTab::SignalReplyFromUpdateServer
void SignalReplyFromUpdateServer(QByteArray data)
GpgFrontend::UI::UpdateTab::getLatestVersion
void getLatestVersion()
Get the Latest Version object.
Definition: AboutDialog.cpp:203
GpgFrontend::UI::UpdateTab::UpdateTab
UpdateTab(QWidget *parent=nullptr)
Construct a new Update Tab object.
Definition: AboutDialog.cpp:151
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
GpgFrontend::UI::SoftwareVersion
Definition: SoftwareVersion.h:39
diff --git a/docs/html/ArchiveFileOperator_8h_source.html b/docs/html/ArchiveFileOperator_8h_source.html index 1b45e652..113e1da3 100644 --- a/docs/html/ArchiveFileOperator_8h_source.html +++ b/docs/html/ArchiveFileOperator_8h_source.html @@ -119,7 +119,7 @@ $(document).ready(function(){initNavTree('ArchiveFileOperator_8h_source.html',''
58 
59 #endif // GPGFRONTEND_ARCHIVEFILEOPERATOR_H
GpgFrontend::ArchiveFileOperator
Definition: ArchiveFileOperator.h:45
-
GpgFrontend
Definition: CoreCommonUtil.cpp:29
+
GpgFrontend
Definition: CoreCommonUtil.cpp:31
GpgFrontend::ArchiveStruct
Definition: ArchiveFileOperator.h:37
diff --git a/docs/html/CacheManager_8h_source.html b/docs/html/CacheManager_8h_source.html new file mode 100644 index 00000000..455b6ba9 --- /dev/null +++ b/docs/html/CacheManager_8h_source.html @@ -0,0 +1,120 @@ + + + + + + + +GpgFrontend Project: src/core/function/CacheManager.h Source File + + + + + + + + + + + + + +
+
+ + + + + + +
+
GpgFrontend Project +
+
A Free, Powerful, Easy-to-Use, Compact, Cross-Platform, and Installation-Free OpenPGP(pgp) Crypto Tool.
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
CacheManager.h
+
+
+
1 
+
29 #ifndef GPGFRONTEND_CACHEMANAGER_H
+
30 #define GPGFRONTEND_CACHEMANAGER_H
+
31 
+
32 namespace GpgFrontend {
+
33 
+
34 class CacheManager {
+
35  public:
+
36  static void SaveCache(std::string key, const nlohmann::json &value);
+
37 
+
38  static nlohmann::json LoadCache(std::string name);
+
39 
+
40  static void ClearAllCache();
+
41 };
+
42 
+
43 } // namespace GpgFrontend
+
44 
+
45 #endif
+
Definition: CacheManager.h:34
+
static void SaveCache(std::string key, const nlohmann::json &value)
Definition: CacheManager.cpp:37
+
Definition: CoreCommonUtil.cpp:31
+
+
+ + + + diff --git a/docs/html/CharsetOperator_8h_source.html b/docs/html/CharsetOperator_8h_source.html index 30060748..25c43537 100644 --- a/docs/html/CharsetOperator_8h_source.html +++ b/docs/html/CharsetOperator_8h_source.html @@ -107,7 +107,7 @@ $(document).ready(function(){initNavTree('CharsetOperator_8h_source.html',''); i
46 
47 #endif // GPGFRONTEND_CHARSETDETECTOR_H
GpgFrontend::CharsetOperator
Definition: CharsetOperator.h:36
-
GpgFrontend
Definition: CoreCommonUtil.cpp:29
+
GpgFrontend
Definition: CoreCommonUtil.cpp:31
diff --git a/docs/html/CoreCommonUtil_8h_source.html b/docs/html/CoreCommonUtil_8h_source.html index 6acc71f4..bdec518e 100644 --- a/docs/html/CoreCommonUtil_8h_source.html +++ b/docs/html/CoreCommonUtil_8h_source.html @@ -90,30 +90,39 @@ $(document).ready(function(){initNavTree('CoreCommonUtil_8h_source.html',''); in
27 #ifndef GPGFRONTEND_CORECOMMONUTIL_H
28 #define GPGFRONTEND_CORECOMMONUTIL_H
29 
-
30 #include "core/GpgFrontendCore.h"
+
30 #include <string>
31 
-
32 namespace GpgFrontend {
+
32 #include "core/GpgFrontendCore.h"
33 
-
34 class GPGFRONTEND_CORE_EXPORT CoreCommonUtil : public QObject {
-
35  Q_OBJECT
-
36  public:
-
41  static CoreCommonUtil *GetInstance();
-
42 
-
47  CoreCommonUtil() = default;
-
48 
-
49  signals:
+
34 namespace GpgFrontend {
+
35 
+
36 class GPGFRONTEND_CORE_EXPORT CoreCommonUtil : public QObject {
+
37  Q_OBJECT
+
38  public:
+
43  static CoreCommonUtil *GetInstance();
+
44 
+
49  CoreCommonUtil() = default;
50 
-
55  void SignalGnupgNotInstall();
+
55  void SetTempCacheValue(const std::string, const std::string);
56 
-
57  private:
-
58  static std::unique_ptr<CoreCommonUtil> instance_;
-
59 };
-
60 
-
61 } // namespace GpgFrontend
-
62 
-
63 #endif // GPGFRONTEND_CORECOMMONUTIL_H
-
GpgFrontend::CoreCommonUtil
Definition: CoreCommonUtil.h:34
-
GpgFrontend
Definition: CoreCommonUtil.cpp:29
+
63  std::string GetTempCacheValue(const std::string);
+
64 
+
70  void ResetTempCacheValue(const std::string);
+
71 
+
72  signals:
+
73 
+
78  void SignalGnupgNotInstall();
+
79 
+
80  private:
+
81  static std::unique_ptr<CoreCommonUtil> instance_;
+
82  std::map<std::string, std::string> temp_cache_; //<
+
83 };
+
84 
+
85 } // namespace GpgFrontend
+
86 
+
87 #endif // GPGFRONTEND_CORECOMMONUTIL_H
+
GpgFrontend::CoreCommonUtil
Definition: CoreCommonUtil.h:36
+
GpgFrontend
Definition: CoreCommonUtil.cpp:31
diff --git a/docs/html/CoreSignalStation_8h_source.html b/docs/html/CoreSignalStation_8h_source.html new file mode 100644 index 00000000..67b517cb --- /dev/null +++ b/docs/html/CoreSignalStation_8h_source.html @@ -0,0 +1,127 @@ + + + + + + + +GpgFrontend Project: src/core/function/CoreSignalStation.h Source File + + + + + + + + + + + + + +
+
+ + + + + + +
+
GpgFrontend Project +
+
A Free, Powerful, Easy-to-Use, Compact, Cross-Platform, and Installation-Free OpenPGP(pgp) Crypto Tool.
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
CoreSignalStation.h
+
+
+
1 
+
29 #ifndef GPGFRONTEND_CORESIGNALSTATION_H
+
30 #define GPGFRONTEND_CORESIGNALSTATION_H
+
31 
+
32 #include "core/GpgFrontendCore.h"
+
33 
+
34 namespace GpgFrontend {
+
35 
+
40 class GPGFRONTEND_CORE_EXPORT CoreSignalStation : public QObject {
+
41  Q_OBJECT
+
42  static std::unique_ptr<CoreSignalStation> _instance;
+
43 
+
44  public:
+
50  static CoreSignalStation* GetInstance();
+
51 
+
52  signals:
+
53 
+
58  void SignalUserInputPassphraseDone(QString passparase);
+
59 
+
64  void SignalNeedUserInputPassphrase();
+
65 };
+
66 
+
67 } // namespace GpgFrontend
+
68 
+
69 #endif // GPGFRONTEND_CORESIGNALSTATION_H
+
Definition: CoreSignalStation.h:40
+
static std::unique_ptr< CoreSignalStation > _instance
Definition: CoreSignalStation.h:42
+
Definition: CoreCommonUtil.cpp:31
+
+
+ + + + diff --git a/docs/html/DataObjectOperator_8h_source.html b/docs/html/DataObjectOperator_8h_source.html index 25107b81..797672f8 100644 --- a/docs/html/DataObjectOperator_8h_source.html +++ b/docs/html/DataObjectOperator_8h_source.html @@ -136,7 +136,7 @@ $(document).ready(function(){initNavTree('DataObjectOperator_8h_source.html','')
GpgFrontend::SingletonFunctionObject
Definition: GpgFunctionObject.h:148
GpgFrontend::SingletonFunctionObject::GetDefaultChannel
static int GetDefaultChannel()
Get the Default Channel object.
Definition: GpgFunctionObject.h:232
GpgFrontend::SingletonFunctionObject< GlobalSettingStation >::GetInstance
static GlobalSettingStation & GetInstance(int channel=GpgFrontend::GPGFRONTEND_DEFAULT_CHANNEL)
Get the Instance object.
Definition: GpgFunctionObject.h:170
-
GpgFrontend
Definition: CoreCommonUtil.cpp:29
+
GpgFrontend
Definition: CoreCommonUtil.cpp:31
diff --git a/docs/html/ExportKeyPackageDialog_8h_source.html b/docs/html/ExportKeyPackageDialog_8h_source.html index 14c43cd7..3cb955ab 100644 --- a/docs/html/ExportKeyPackageDialog_8h_source.html +++ b/docs/html/ExportKeyPackageDialog_8h_source.html @@ -114,7 +114,7 @@ $(document).ready(function(){initNavTree('ExportKeyPackageDialog_8h_source.html'
GpgFrontend::UI::ExportKeyPackageDialog
Definition: ExportKeyPackageDialog.h:43
GpgFrontend::UI::ExportKeyPackageDialog::ExportKeyPackageDialog
ExportKeyPackageDialog(KeyIdArgsListPtr key_ids, QWidget *parent)
Construct a new Export Key Package Dialog object.
Definition: ExportKeyPackageDialog.cpp:37
GpgFrontend::UI::GeneralDialog
Definition: GeneralDialog.h:35
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/FileOperator_8h_source.html b/docs/html/FileOperator_8h_source.html index 96e83c9d..ba311970 100644 --- a/docs/html/FileOperator_8h_source.html +++ b/docs/html/FileOperator_8h_source.html @@ -112,7 +112,7 @@ $(document).ready(function(){initNavTree('FileOperator_8h_source.html',''); init
91 
92 #endif // GPGFRONTEND_FILEOPERATOR_H
GpgFrontend::FileOperator
provides file operations
Definition: FileOperator.h:40
-
GpgFrontend
Definition: CoreCommonUtil.cpp:29
+
GpgFrontend
Definition: CoreCommonUtil.cpp:31
diff --git a/docs/html/FilePage_8h_source.html b/docs/html/FilePage_8h_source.html index 6395535f..d2d6295a 100644 --- a/docs/html/FilePage_8h_source.html +++ b/docs/html/FilePage_8h_source.html @@ -172,7 +172,7 @@ $(document).ready(function(){initNavTree('FilePage_8h_source.html',''); initResi
GpgFrontend::UI::FilePage::slot_file_tree_view_item_double_clicked
void slot_file_tree_view_item_double_clicked(const QModelIndex &index)
Definition: FilePage.cpp:176
GpgFrontend::UI::FilePage::keyPressEvent
void keyPressEvent(QKeyEvent *event) override
Definition: FilePage.cpp:443
GpgFrontend::UI::FilePage::SignalPathChanged
void SignalPathChanged(const QString &path)
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
GpgFrontend::UI::InfoBoardStatus
InfoBoardStatus
Definition: InfoBoardWidget.h:43
diff --git a/docs/html/FileReadTask_8h_source.html b/docs/html/FileReadTask_8h_source.html index 80a756c9..103b4886 100644 --- a/docs/html/FileReadTask_8h_source.html +++ b/docs/html/FileReadTask_8h_source.html @@ -124,7 +124,7 @@ $(document).ready(function(){initNavTree('FileReadTask_8h_source.html',''); init
65 #endif // GPGFRONTEND_FILEREADTHREAD_H
GpgFrontend::Thread::Task
Definition: Task.h:45
GpgFrontend::UI::FileReadTask
Definition: FileReadTask.h:39
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/FindWidget_8h_source.html b/docs/html/FindWidget_8h_source.html index 7b2b7316..f668967e 100644 --- a/docs/html/FindWidget_8h_source.html +++ b/docs/html/FindWidget_8h_source.html @@ -132,7 +132,7 @@ $(document).ready(function(){initNavTree('FindWidget_8h_source.html',''); initRe
GpgFrontend::UI::FindWidget::keyPressEvent
void keyPressEvent(QKeyEvent *e) override
Definition: FindWidget.cpp:147
GpgFrontend::UI::FindWidget::find_edit_
QLineEdit * find_edit_
Label holding the text shown in infoBoard.
Definition: FindWidget.h:68
GpgFrontend::UI::PlainTextEditorPage
Class for handling a single tab of the tabwidget.
Definition: PlainTextEditorPage.h:45
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/GeneralDialog_8h_source.html b/docs/html/GeneralDialog_8h_source.html index fcca25f6..87ce32d6 100644 --- a/docs/html/GeneralDialog_8h_source.html +++ b/docs/html/GeneralDialog_8h_source.html @@ -148,7 +148,7 @@ $(document).ready(function(){initNavTree('GeneralDialog_8h_source.html',''); ini
80 #endif // GPGFRONTEND_GENERALDIALOG_H
GpgFrontend::UI::GeneralDialog
Definition: GeneralDialog.h:35
GpgFrontend::UI::GeneralDialog::GeneralDialog
GeneralDialog(std::string name, QWidget *parent=nullptr)
Definition: GeneralDialog.cpp:32
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/GeneralMainWindow_8h_source.html b/docs/html/GeneralMainWindow_8h_source.html index e0a0492c..412a4189 100644 --- a/docs/html/GeneralMainWindow_8h_source.html +++ b/docs/html/GeneralMainWindow_8h_source.html @@ -123,7 +123,7 @@ $(document).ready(function(){initNavTree('GeneralMainWindow_8h_source.html','');
GpgFrontend::UI::GeneralMainWindow
Definition: GeneralMainWindow.h:39
GpgFrontend::UI::GeneralMainWindow::GeneralMainWindow
GeneralMainWindow(std::string name, QWidget *parent=nullptr)
Definition: GeneralMainWindow.cpp:35
GpgFrontend::UI::GeneralMainWindow::closeEvent
void closeEvent(QCloseEvent *event) override
Definition: GeneralMainWindow.cpp:43
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/GlobalSettingStation_8h_source.html b/docs/html/GlobalSettingStation_8h_source.html index 72505419..a471f4d4 100644 --- a/docs/html/GlobalSettingStation_8h_source.html +++ b/docs/html/GlobalSettingStation_8h_source.html @@ -201,7 +201,7 @@ $(document).ready(function(){initNavTree('GlobalSettingStation_8h_source.html','
GpgFrontend::GlobalSettingStation::GetResourceDir
std::filesystem::path GetResourceDir() const
Get the Resource Dir object.
Definition: GlobalSettingStation.h:125
GpgFrontend::SingletonFunctionObject
Definition: GpgFunctionObject.h:148
GpgFrontend::SingletonFunctionObject::GetDefaultChannel
static int GetDefaultChannel()
Get the Default Channel object.
Definition: GpgFunctionObject.h:232
-
GpgFrontend
Definition: CoreCommonUtil.cpp:29
+
GpgFrontend
Definition: CoreCommonUtil.cpp:31
diff --git a/docs/html/GnupgTab_8h_source.html b/docs/html/GnupgTab_8h_source.html index e9cb9019..20bef942 100644 --- a/docs/html/GnupgTab_8h_source.html +++ b/docs/html/GnupgTab_8h_source.html @@ -140,7 +140,7 @@ $(document).ready(function(){initNavTree('GnupgTab_8h_source.html',''); initResi
57 #endif // GPGFRONTEND_GNUPGTAB_H
GpgFrontend::UI::GnupgTab
Definition: GnupgTab.h:40
GpgFrontend::UI::GnupgTab::GnupgTab
GnupgTab(QWidget *parent=nullptr)
Construct a new Info Tab object.
Definition: GnupgTab.cpp:37
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/GpgAdvancedOperator_8h_source.html b/docs/html/GpgAdvancedOperator_8h_source.html index 7939a4d3..ec68c30a 100644 --- a/docs/html/GpgAdvancedOperator_8h_source.html +++ b/docs/html/GpgAdvancedOperator_8h_source.html @@ -132,29 +132,35 @@ $(document).ready(function(){initNavTree('GpgAdvancedOperator_8h_source.html',''
49  explicit GpgAdvancedOperator(
50  int channel = SingletonFunctionObject::GetDefaultChannel());
51 
-
52  bool ClearGpgPasswordCache();
-
53 
-
54  bool ReloadGpgComponents();
-
55 
-
56  bool RestartGpgComponents();
-
57 
-
58  bool ResetConfigures();
+
58  bool ClearGpgPasswordCache();
59 
-
60  private:
-
61  GpgContext& ctx_ = GpgContext::GetInstance(
-
62  SingletonFunctionObject::GetChannel());
-
63 };
-
64 
-
65 } // namespace GpgFrontend
-
66 
-
67 #endif // GPGFRONTEND_GPGADVANCEDOPERATOR_H
+
66  bool ReloadGpgComponents();
+
67 
+
74  bool RestartGpgComponents();
+
75 
+
82  bool ResetConfigures();
+
83 
+
90  bool StartGpgAgent();
+
91 
+
98  bool StartDirmngr();
+
99 
+
106  bool StartKeyBoxd();
+
107 
+
108  private:
+
109  GpgContext& ctx_ = GpgContext::GetInstance(
+
110  SingletonFunctionObject::GetChannel());
+
111 };
+
112 
+
113 } // namespace GpgFrontend
+
114 
+
115 #endif // GPGFRONTEND_GPGADVANCEDOPERATOR_H
GpgFrontend::GpgAdvancedOperator
Definition: GpgAdvancedOperator.h:42
-
GpgFrontend::GpgContext
Definition: GpgContext.h:60
+
GpgFrontend::GpgContext
Definition: GpgContext.h:64
GpgFrontend::SingletonFunctionObject
Definition: GpgFunctionObject.h:148
GpgFrontend::SingletonFunctionObject::GetDefaultChannel
static int GetDefaultChannel()
Get the Default Channel object.
Definition: GpgFunctionObject.h:232
GpgFrontend::SingletonFunctionObject< GpgContext >::GetInstance
static GpgContext & GetInstance(int channel=GpgFrontend::GPGFRONTEND_DEFAULT_CHANNEL)
Get the Instance object.
Definition: GpgFunctionObject.h:170
GpgFrontend::SingletonFunctionObject::GetChannel
int GetChannel() const
Get the Channel object.
Definition: GpgFunctionObject.h:239
-
GpgFrontend
Definition: CoreCommonUtil.cpp:29
+
GpgFrontend
Definition: CoreCommonUtil.cpp:31
diff --git a/docs/html/GpgBasicOperator_8h_source.html b/docs/html/GpgBasicOperator_8h_source.html index 702c8144..2d93aec8 100644 --- a/docs/html/GpgBasicOperator_8h_source.html +++ b/docs/html/GpgBasicOperator_8h_source.html @@ -140,12 +140,12 @@ $(document).ready(function(){initNavTree('GpgBasicOperator_8h_source.html','');
178 
179 #endif // GPGFRONTEND_ZH_CN_TS_BASICOPERATOR_H
GpgFrontend::GpgBasicOperator
Basic operation collection.
Definition: GpgBasicOperator.h:44
-
GpgFrontend::GpgContext
Definition: GpgContext.h:60
+
GpgFrontend::GpgContext
Definition: GpgContext.h:64
GpgFrontend::SingletonFunctionObject
Definition: GpgFunctionObject.h:148
GpgFrontend::SingletonFunctionObject::GetDefaultChannel
static int GetDefaultChannel()
Get the Default Channel object.
Definition: GpgFunctionObject.h:232
GpgFrontend::SingletonFunctionObject< GpgContext >::GetInstance
static GpgContext & GetInstance(int channel=GpgFrontend::GPGFRONTEND_DEFAULT_CHANNEL)
Get the Instance object.
Definition: GpgFunctionObject.h:170
GpgFrontend::SingletonFunctionObject::GetChannel
int GetChannel() const
Get the Channel object.
Definition: GpgFunctionObject.h:239
-
GpgFrontend
Definition: CoreCommonUtil.cpp:29
+
GpgFrontend
Definition: CoreCommonUtil.cpp:31
diff --git a/docs/html/GpgCommandExecutor_8h_source.html b/docs/html/GpgCommandExecutor_8h_source.html index b59b5f29..84e6e61d 100644 --- a/docs/html/GpgCommandExecutor_8h_source.html +++ b/docs/html/GpgCommandExecutor_8h_source.html @@ -121,12 +121,12 @@ $(document).ready(function(){initNavTree('GpgCommandExecutor_8h_source.html','')
75 
76 #endif // GPGFRONTEND_ZH_CN_TS_GPGCOMMANDEXECUTOR_H
GpgFrontend::GpgCommandExecutor
Extra commands related to GPG.
Definition: GpgCommandExecutor.h:47
-
GpgFrontend::GpgContext
Definition: GpgContext.h:60
+
GpgFrontend::GpgContext
Definition: GpgContext.h:64
GpgFrontend::SingletonFunctionObject
Definition: GpgFunctionObject.h:148
GpgFrontend::SingletonFunctionObject::GetDefaultChannel
static int GetDefaultChannel()
Get the Default Channel object.
Definition: GpgFunctionObject.h:232
GpgFrontend::SingletonFunctionObject< GpgContext >::GetInstance
static GpgContext & GetInstance(int channel=GpgFrontend::GPGFRONTEND_DEFAULT_CHANNEL)
Get the Instance object.
Definition: GpgFunctionObject.h:170
GpgFrontend::SingletonFunctionObject::GetChannel
int GetChannel() const
Get the Channel object.
Definition: GpgFunctionObject.h:239
-
GpgFrontend
Definition: CoreCommonUtil.cpp:29
+
GpgFrontend
Definition: CoreCommonUtil.cpp:31
diff --git a/docs/html/GpgConstants_8h_source.html b/docs/html/GpgConstants_8h_source.html index 0b30118d..b2128d53 100644 --- a/docs/html/GpgConstants_8h_source.html +++ b/docs/html/GpgConstants_8h_source.html @@ -184,15 +184,15 @@ $(document).ready(function(){initNavTree('GpgConstants_8h_source.html',''); init
219 #endif // GPG_CONSTANTS_H
GpgFrontend::GpgConstants
Definition: GpgConstants.h:204
GpgFrontend::GpgConstants::PGP_CRYPT_BEGIN
static const char * PGP_CRYPT_BEGIN
Definition: GpgConstants.h:206
-
GpgFrontend
Definition: CoreCommonUtil.cpp:29
-
GpgFrontend::text_is_signed
int text_is_signed(BypeArrayRef text)
Definition: GpgConstants.cpp:158
-
GpgFrontend::_new_result
GPGFRONTEND_CORE_EXPORT GpgEncrResult _new_result(gpgme_encrypt_result_t &&result)
Definition: GpgConstants.cpp:173
-
GpgFrontend::check_gpg_error_2_err_code
GPGFRONTEND_CORE_EXPORT gpg_err_code_t check_gpg_error_2_err_code(gpgme_error_t err, gpgme_error_t predict=GPG_ERR_NO_ERROR)
Definition: GpgConstants.cpp:63
-
GpgFrontend::write_buffer_to_file
GPGFRONTEND_CORE_EXPORT bool write_buffer_to_file(const std::string &path, const std::string &out_buffer)
Definition: GpgConstants.cpp:128
-
GpgFrontend::get_only_file_name_with_path
std::string get_only_file_name_with_path(const std::string &path)
Get the only file name with path object.
Definition: GpgConstants.cpp:146
-
GpgFrontend::read_all_data_in_file
std::string read_all_data_in_file(const std::string &path)
Definition: GpgConstants.cpp:122
-
GpgFrontend::beautify_fingerprint
GPGFRONTEND_CORE_EXPORT std::string beautify_fingerprint(BypeArrayConstRef fingerprint)
Definition: GpgConstants.cpp:90
-
GpgFrontend::get_file_extension
std::string get_file_extension(const std::string &path)
Get the file extension object.
Definition: GpgConstants.cpp:133
+
GpgFrontend
Definition: CoreCommonUtil.cpp:31
+
GpgFrontend::text_is_signed
int text_is_signed(BypeArrayRef text)
Definition: GpgConstants.cpp:156
+
GpgFrontend::_new_result
GPGFRONTEND_CORE_EXPORT GpgEncrResult _new_result(gpgme_encrypt_result_t &&result)
Definition: GpgConstants.cpp:171
+
GpgFrontend::check_gpg_error_2_err_code
GPGFRONTEND_CORE_EXPORT gpg_err_code_t check_gpg_error_2_err_code(gpgme_error_t err, gpgme_error_t predict=GPG_ERR_NO_ERROR)
Definition: GpgConstants.cpp:62
+
GpgFrontend::write_buffer_to_file
GPGFRONTEND_CORE_EXPORT bool write_buffer_to_file(const std::string &path, const std::string &out_buffer)
Definition: GpgConstants.cpp:126
+
GpgFrontend::get_only_file_name_with_path
std::string get_only_file_name_with_path(const std::string &path)
Get the only file name with path object.
Definition: GpgConstants.cpp:144
+
GpgFrontend::read_all_data_in_file
std::string read_all_data_in_file(const std::string &path)
Definition: GpgConstants.cpp:120
+
GpgFrontend::beautify_fingerprint
GPGFRONTEND_CORE_EXPORT std::string beautify_fingerprint(BypeArrayConstRef fingerprint)
Definition: GpgConstants.cpp:88
+
GpgFrontend::get_file_extension
std::string get_file_extension(const std::string &path)
Get the file extension object.
Definition: GpgConstants.cpp:131
GpgFrontend::check_gpg_error
GPGFRONTEND_CORE_EXPORT GpgError check_gpg_error(GpgError err)
Definition: GpgConstants.cpp:54
GpgFrontend::_result_ref_deletor
Result Deleter.
Definition: GpgConstants.h:52
diff --git a/docs/html/GpgContext_8h_source.html b/docs/html/GpgContext_8h_source.html index cf1cd2c8..75261e9d 100644 --- a/docs/html/GpgContext_8h_source.html +++ b/docs/html/GpgContext_8h_source.html @@ -90,76 +90,92 @@ $(document).ready(function(){initNavTree('GpgContext_8h_source.html',''); initRe
29 #ifndef __SGPGMEPP_CONTEXT_H__
30 #define __SGPGMEPP_CONTEXT_H__
31 
-
32 #include "GpgConstants.h"
-
33 #include "GpgFunctionObject.h"
-
34 #include "GpgInfo.h"
-
35 #include "GpgModel.h"
-
36 
-
37 namespace GpgFrontend {
-
38 
-
43 struct GpgContextInitArgs {
-
44  // make no sense for gpg2
-
45  bool independent_database = false;
-
46  std::string db_path = {};
-
47  bool gpg_alone = false;
-
48  std::string gpg_path = {};
-
49  bool test_mode = false;
-
50  bool ascii = true;
-
51 
-
52  GpgContextInitArgs() = default;
-
53 };
+
32 #include <optional>
+
33 #include <string>
+
34 
+
35 #include "GpgConstants.h"
+
36 #include "GpgFunctionObject.h"
+
37 #include "GpgInfo.h"
+
38 #include "GpgModel.h"
+
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  bool gpg_alone = false;
+
51  std::string gpg_path = {};
+
52  bool test_mode = false;
+
53  bool ascii = true;
54 
-
59 class GPGFRONTEND_CORE_EXPORT GpgContext
-
60  : public SingletonFunctionObject<GpgContext> {
-
61  public:
-
67  explicit GpgContext(const GpgContextInitArgs& args = {});
-
68 
-
74  explicit GpgContext(int channel);
-
75 
-
80  ~GpgContext() override = default;
-
81 
-
88  [[nodiscard]] bool good() const;
-
89 
-
95  [[nodiscard]] const GpgInfo& GetInfo(bool refresh = false);
-
96 
-
102  operator gpgme_ctx_t() const { return _ctx_ref.get(); }
-
103 
-
104  private:
-
105  GpgInfo info_;
-
106  GpgContextInitArgs args_;
-
107  bool extend_info_loaded_ = false;
+
55  GpgContextInitArgs() = default;
+
56 };
+
57 
+
62 class GPGFRONTEND_CORE_EXPORT GpgContext
+
63  : public QObject,
+
64  public SingletonFunctionObject<GpgContext> {
+
65  Q_OBJECT
+
66  public:
+
72  explicit GpgContext(const GpgContextInitArgs& args = {});
+
73 
+
79  explicit GpgContext(int channel);
+
80 
+
85  ~GpgContext() override = default;
+
86 
+
93  [[nodiscard]] bool good() const;
+
94 
+
100  [[nodiscard]] const GpgInfo& GetInfo(bool refresh = false);
+
101 
+
107  operator gpgme_ctx_t() const { return _ctx_ref.get(); }
108 
-
113  void init_ctx();
-
114 
-
119  struct _ctx_ref_deleter {
-
120  void operator()(gpgme_ctx_t _ctx);
-
121  };
-
122 
-
123  using CtxRefHandler =
-
124  std::unique_ptr<struct gpgme_context, _ctx_ref_deleter>;
-
125  CtxRefHandler _ctx_ref = nullptr;
-
126  bool good_ = true;
-
127 
-
128  public:
-
139  static gpgme_error_t test_passphrase_cb(void* opaque, const char* uid_hint,
-
140  const char* passphrase_info,
-
141  int last_was_bad, int fd);
-
142 
-
151  static gpgme_error_t test_status_cb(void* hook, const char* keyword,
-
152  const char* args);
-
153 
-
159  void SetPassphraseCb(gpgme_passphrase_cb_t func) const;
-
160 };
-
161 } // namespace GpgFrontend
-
162 
-
163 #endif // __SGPGMEPP_CONTEXT_H__
-
GpgFrontend::GpgContext
Definition: GpgContext.h:60
+
109  private:
+
110  GpgInfo info_;
+
111  GpgContextInitArgs args_;
+
112  bool extend_info_loaded_ = false;
+
113 
+
118  void post_init_ctx();
+
119 
+
125  std::string need_user_input_passphrase();
+
126 
+
131  std::optional<std::string> check_binary_chacksum(std::filesystem::path);
+
132 
+
137  struct _ctx_ref_deleter {
+
138  void operator()(gpgme_ctx_t _ctx);
+
139  };
+
140 
+
141  using CtxRefHandler =
+
142  std::unique_ptr<struct gpgme_context, _ctx_ref_deleter>;
+
143  CtxRefHandler _ctx_ref = nullptr;
+
144  bool good_ = true;
+
145 
+
146  signals:
+
151  void SignalNeedUserInputPassphrase();
+
152 
+
153  public:
+
164  static gpgme_error_t test_passphrase_cb(void* opaque, const char* uid_hint,
+
165  const char* passphrase_info,
+
166  int last_was_bad, int fd);
+
167 
+
178  static gpgme_error_t custom_passphrase_cb(void* opaque, const char* uid_hint,
+
179  const char* passphrase_info,
+
180  int last_was_bad, int fd);
+
181 
+
190  static gpgme_error_t test_status_cb(void* hook, const char* keyword,
+
191  const char* args);
+
192 
+
198  void SetPassphraseCb(gpgme_passphrase_cb_t func) const;
+
199 };
+
200 } // namespace GpgFrontend
+
201 
+
202 #endif // __SGPGMEPP_CONTEXT_H__
+
GpgFrontend::GpgContext
Definition: GpgContext.h:64
GpgFrontend::GpgContext::~GpgContext
~GpgContext() override=default
Destroy the Gpg Context object.
GpgFrontend::GpgInfo
Use to record some info about gnupg.
Definition: GpgInfo.h:39
GpgFrontend::SingletonFunctionObject
Definition: GpgFunctionObject.h:148
-
GpgFrontend
Definition: CoreCommonUtil.cpp:29
-
GpgFrontend::GpgContextInitArgs
Definition: GpgContext.h:43
-
GpgFrontend::GpgContext::_ctx_ref_deleter
Definition: GpgContext.h:119
+
GpgFrontend
Definition: CoreCommonUtil.cpp:31
+
GpgFrontend::GpgContextInitArgs
Definition: GpgContext.h:46
+
GpgFrontend::GpgContext::_ctx_ref_deleter
Definition: GpgContext.h:137
diff --git a/docs/html/GpgCoreInit_8h_source.html b/docs/html/GpgCoreInit_8h_source.html index be0f2dab..2ac7a773 100644 --- a/docs/html/GpgCoreInit_8h_source.html +++ b/docs/html/GpgCoreInit_8h_source.html @@ -108,9 +108,9 @@ $(document).ready(function(){initNavTree('GpgCoreInit_8h_source.html',''); initR
68 } // namespace GpgFrontend
69 
70 #endif // GPGFRONTEND_GPGCOREINIT_H
-
GpgFrontend
Definition: CoreCommonUtil.cpp:29
-
GpgFrontend::new_default_settings_channel
void new_default_settings_channel(int channel)
Definition: GpgCoreInit.cpp:143
-
GpgFrontend::InitLoggingSystem
void InitLoggingSystem()
setup logging system and do proper initialization
Definition: GpgCoreInit.cpp:44
+
GpgFrontend
Definition: CoreCommonUtil.cpp:31
+
GpgFrontend::new_default_settings_channel
void new_default_settings_channel(int channel)
Definition: GpgCoreInit.cpp:149
+
GpgFrontend::InitLoggingSystem
void InitLoggingSystem()
setup logging system and do proper initialization
Definition: GpgCoreInit.cpp:46
diff --git a/docs/html/GpgData_8h_source.html b/docs/html/GpgData_8h_source.html index 7cbab876..38340d11 100644 --- a/docs/html/GpgData_8h_source.html +++ b/docs/html/GpgData_8h_source.html @@ -120,7 +120,7 @@ $(document).ready(function(){initNavTree('GpgData_8h_source.html',''); initResiz
GpgFrontend::GpgData
Definition: GpgData.h:39
GpgFrontend::GpgData::GpgData
GpgData()
Construct a new Gpg Data object.
Definition: GpgData.cpp:31
GpgFrontend::GpgData::Read2Buffer
ByteArrayPtr Read2Buffer()
Definition: GpgData.cpp:55
-
GpgFrontend
Definition: CoreCommonUtil.cpp:29
+
GpgFrontend
Definition: CoreCommonUtil.cpp:31
GpgFrontend::GpgData::_data_ref_deleter
Definition: GpgData.h:75
diff --git a/docs/html/GpgDecryptResultAnalyse_8h_source.html b/docs/html/GpgDecryptResultAnalyse_8h_source.html index 4468e64b..70202634 100644 --- a/docs/html/GpgDecryptResultAnalyse_8h_source.html +++ b/docs/html/GpgDecryptResultAnalyse_8h_source.html @@ -115,7 +115,7 @@ $(document).ready(function(){initNavTree('GpgDecryptResultAnalyse_8h_source.html
74 #endif // GPGFRONTEND_GPGDECRYPTRESULTANALYSE_H
GpgFrontend::GpgDecryptResultAnalyse
Definition: GpgDecryptResultAnalyse.h:42
GpgFrontend::GpgResultAnalyse
Definition: GpgResultAnalyse.h:37
-
GpgFrontend
Definition: CoreCommonUtil.cpp:29
+
GpgFrontend
Definition: CoreCommonUtil.cpp:31
diff --git a/docs/html/GpgEncryptResultAnalyse_8h_source.html b/docs/html/GpgEncryptResultAnalyse_8h_source.html index 742984ed..17523682 100644 --- a/docs/html/GpgEncryptResultAnalyse_8h_source.html +++ b/docs/html/GpgEncryptResultAnalyse_8h_source.html @@ -111,7 +111,7 @@ $(document).ready(function(){initNavTree('GpgEncryptResultAnalyse_8h_source.html
64 #endif // GPGFRONTEND_GPGENCRYPTRESULTANALYSE_H
GpgFrontend::GpgEncryptResultAnalyse
Definition: GpgEncryptResultAnalyse.h:41
GpgFrontend::GpgResultAnalyse
Definition: GpgResultAnalyse.h:37
-
GpgFrontend
Definition: CoreCommonUtil.cpp:29
+
GpgFrontend
Definition: CoreCommonUtil.cpp:31
diff --git a/docs/html/GpgFileOpera_8h_source.html b/docs/html/GpgFileOpera_8h_source.html index cb822516..009e885d 100644 --- a/docs/html/GpgFileOpera_8h_source.html +++ b/docs/html/GpgFileOpera_8h_source.html @@ -143,7 +143,7 @@ $(document).ready(function(){initNavTree('GpgFileOpera_8h_source.html',''); init
GpgFrontend::GpgFileOpera
Definition: GpgFileOpera.h:44
GpgFrontend::SingletonFunctionObject
Definition: GpgFunctionObject.h:148
GpgFrontend::SingletonFunctionObject::GetDefaultChannel
static int GetDefaultChannel()
Get the Default Channel object.
Definition: GpgFunctionObject.h:232
-
GpgFrontend
Definition: CoreCommonUtil.cpp:29
+
GpgFrontend
Definition: CoreCommonUtil.cpp:31
diff --git a/docs/html/GpgFrontendApplication_8h_source.html b/docs/html/GpgFrontendApplication_8h_source.html index bd783d1f..657fca94 100644 --- a/docs/html/GpgFrontendApplication_8h_source.html +++ b/docs/html/GpgFrontendApplication_8h_source.html @@ -114,7 +114,7 @@ $(document).ready(function(){initNavTree('GpgFrontendApplication_8h_source.html'
72 #endif // GPGFRONTEND_GPGFRONTENDAPPLICATION_H
GpgFrontend::UI::GpgFrontendApplication
Definition: GpgFrontendApplication.h:34
GpgFrontend::UI::GpgFrontendApplication::~GpgFrontendApplication
~GpgFrontendApplication() override=default
Destroy the GpgFrontend Application object.
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/GpgFrontendUIInit_8h_source.html b/docs/html/GpgFrontendUIInit_8h_source.html index ad47d153..bc8ad233 100644 --- a/docs/html/GpgFrontendUIInit_8h_source.html +++ b/docs/html/GpgFrontendUIInit_8h_source.html @@ -101,9 +101,9 @@ $(document).ready(function(){initNavTree('GpgFrontendUIInit_8h_source.html','');
47 }; // namespace GpgFrontend::UI
48 
49 #endif // GPGFRONTEND_GPGFRONTENDUIINIT_H
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
-
GpgFrontend::UI::RunGpgFrontendUI
int RunGpgFrontendUI(QApplication *app)
run main window
Definition: GpgFrontendUIInit.cpp:122
-
GpgFrontend::UI::InitGpgFrontendUI
void InitGpgFrontendUI(QApplication *app)
init the UI library
Definition: GpgFrontendUIInit.cpp:50
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
+
GpgFrontend::UI::RunGpgFrontendUI
int RunGpgFrontendUI(QApplication *app)
run main window
Definition: GpgFrontendUIInit.cpp:124
+
GpgFrontend::UI::InitGpgFrontendUI
void InitGpgFrontendUI(QApplication *app)
init the UI library
Definition: GpgFrontendUIInit.cpp:52
diff --git a/docs/html/GpgFunctionObject_8h_source.html b/docs/html/GpgFunctionObject_8h_source.html index 11ba76f3..c8cb2996 100644 --- a/docs/html/GpgFunctionObject_8h_source.html +++ b/docs/html/GpgFunctionObject_8h_source.html @@ -217,8 +217,8 @@ $(document).ready(function(){initNavTree('GpgFunctionObject_8h_source.html','');
291 
292 #endif // GPGFRONTEND_ZH_CN_TS_FUNCTIONOBJECT_H
GpgFrontend::ChannelObject
object which in channel system
Definition: GpgFunctionObject.h:40
-
GpgFrontend::ChannelObject::GetChannel
int GetChannel() const
Get the Channel object.
Definition: GpgFunctionObject.cpp:43
-
GpgFrontend::ChannelObject::GetDefaultChannel
static int GetDefaultChannel()
Get the Default Channel object.
Definition: GpgFunctionObject.cpp:45
+
GpgFrontend::ChannelObject::GetChannel
int GetChannel() const
Get the Channel object.
Definition: GpgFunctionObject.cpp:41
+
GpgFrontend::ChannelObject::GetDefaultChannel
static int GetDefaultChannel()
Get the Default Channel object.
Definition: GpgFunctionObject.cpp:43
GpgFrontend::ChannelObject::ChannelObject
ChannelObject() noexcept
Construct a new Default Channel Object object.
GpgFrontend::SingletonFunctionObject
Definition: GpgFunctionObject.h:148
GpgFrontend::SingletonFunctionObject::SingletonFunctionObject
SingletonFunctionObject()=default
Construct a new Singleton Function Object object.
@@ -235,16 +235,16 @@ $(document).ready(function(){initNavTree('GpgFunctionObject_8h_source.html','');
GpgFrontend::SingletonFunctionObject::SingletonFunctionObject
SingletonFunctionObject(T &&)=delete
Construct a new Singleton Function Object object.
GpgFrontend::SingletonFunctionObject::ReleaseChannel
static void ReleaseChannel(int channel)
Definition: GpgFunctionObject.h:221
GpgFrontend::SingletonStorageCollection
Definition: GpgFunctionObject.h:121
-
GpgFrontend::SingletonStorageCollection::GetSingletonStorage
SingletonStorage * GetSingletonStorage(const std::type_info &)
Get the Singleton Storage object.
Definition: GpgFunctionObject.cpp:99
+
GpgFrontend::SingletonStorageCollection::GetSingletonStorage
SingletonStorage * GetSingletonStorage(const std::type_info &)
Get the Singleton Storage object.
Definition: GpgFunctionObject.cpp:97
GpgFrontend::SingletonStorageCollection::storages_mutex_
std::shared_mutex storages_mutex_
mutex for storages_map_
Definition: GpgFunctionObject.h:139
-
GpgFrontend::SingletonStorageCollection::GetInstance
static SingletonStorageCollection * GetInstance(bool force_refresh)
Get the Instance object.
Definition: GpgFunctionObject.cpp:125
+
GpgFrontend::SingletonStorageCollection::GetInstance
static SingletonStorageCollection * GetInstance(bool force_refresh)
Get the Instance object.
Definition: GpgFunctionObject.cpp:122
GpgFrontend::SingletonStorage
Definition: GpgFunctionObject.h:81
GpgFrontend::SingletonStorage::instances_mutex_
std::shared_mutex instances_mutex_
mutex for _instances_map
Definition: GpgFunctionObject.h:116
-
GpgFrontend::SingletonStorage::GetAllChannelId
std::vector< int > GetAllChannelId()
Get all the channel ids.
Definition: GpgFunctionObject.cpp:71
+
GpgFrontend::SingletonStorage::GetAllChannelId
std::vector< int > GetAllChannelId()
Get all the channel ids.
Definition: GpgFunctionObject.cpp:69
GpgFrontend::SingletonStorage::instances_map_
std::map< int, std::unique_ptr< ChannelObject > > instances_map_
map of singleton instances
Definition: GpgFunctionObject.h:118
-
GpgFrontend::SingletonStorage::ReleaseChannel
void ReleaseChannel(int channel)
Definition: GpgFunctionObject.cpp:47
+
GpgFrontend::SingletonStorage::ReleaseChannel
void ReleaseChannel(int channel)
Definition: GpgFunctionObject.cpp:45
class
Executive files related to the basic operations that are provided by GpgBasicOperator.
-
GpgFrontend
Definition: CoreCommonUtil.cpp:29
+
GpgFrontend
Definition: CoreCommonUtil.cpp:31
diff --git a/docs/html/GpgGenKeyInfo_8h_source.html b/docs/html/GpgGenKeyInfo_8h_source.html index d0bf60c9..eeddbeaa 100644 --- a/docs/html/GpgGenKeyInfo_8h_source.html +++ b/docs/html/GpgGenKeyInfo_8h_source.html @@ -296,7 +296,7 @@ $(document).ready(function(){initNavTree('GpgGenKeyInfo_8h_source.html',''); ini
GpgFrontend::GenKeyInfo::IsNonExpired
bool IsNonExpired() const
Definition: GpgGenKeyInfo.h:221
GpgFrontend::GenKeyInfo::IsAllowNoPassPhrase
bool IsAllowNoPassPhrase() const
Definition: GpgGenKeyInfo.h:261
GpgFrontend::GenKeyInfo::SetPassPhrase
void SetPassPhrase(const std::string &m_pass_phrase)
Set the Pass Phrase object.
Definition: GpgGenKeyInfo.h:338
-
GpgFrontend
Definition: CoreCommonUtil.cpp:29
+
GpgFrontend
Definition: CoreCommonUtil.cpp:31
diff --git a/docs/html/GpgInfo_8h_source.html b/docs/html/GpgInfo_8h_source.html index b194856a..c84933af 100644 --- a/docs/html/GpgInfo_8h_source.html +++ b/docs/html/GpgInfo_8h_source.html @@ -95,25 +95,29 @@ $(document).ready(function(){initNavTree('GpgInfo_8h_source.html',''); initResiz
34 namespace GpgFrontend {
39 class GpgInfo {
40  public:
-
41  std::string AppPath;
-
42  std::string DatabasePath;
-
43  std::string GnupgVersion;
-
44  std::string GpgConfPath;
-
45  std::string AssuanPath;
-
46  std::string CMSPath;
-
47  std::string GpgMEVersion;
-
48 
-
49  std::map<std::string, std::vector<std::string>> ComponentsInfo;
-
50  std::map<std::string, std::vector<std::string>> ConfigurationsInfo;
-
51  std::map<std::string, std::vector<std::string>> OptionsInfo;
-
52  std::map<std::string, std::vector<std::string>> AvailableOptionsInfo;
-
53 };
-
54 } // namespace GpgFrontend
-
55 
-
56 #endif // GPGFRONTEND_ZH_CN_TS_GPGINFO_H
+
41  std::string AppPath;
+
42  std::string DatabasePath;
+
43  std::string GnupgVersion;
+
44  std::string GpgConfPath;
+
45  std::string AssuanPath;
+
46  std::string CMSPath;
+
47  std::string GpgAgentPath;
+
48  std::string DirmngrPath;
+
49  std::string KeyboxdPath;
+
50  std::string GpgMEVersion;
+
51  std::string GnuPGHomePath;
+
52 
+
53  std::map<std::string, std::vector<std::string>> ComponentsInfo;
+
54  std::map<std::string, std::vector<std::string>> ConfigurationsInfo;
+
55  std::map<std::string, std::vector<std::string>> OptionsInfo;
+
56  std::map<std::string, std::vector<std::string>> AvailableOptionsInfo;
+
57 };
+
58 } // namespace GpgFrontend
+
59 
+
60 #endif // GPGFRONTEND_ZH_CN_TS_GPGINFO_H
GpgFrontend::GpgInfo
Use to record some info about gnupg.
Definition: GpgInfo.h:39
GpgFrontend::GpgInfo::AppPath
std::string AppPath
executable binary path of gnupg
Definition: GpgInfo.h:41
-
GpgFrontend
Definition: CoreCommonUtil.cpp:29
+
GpgFrontend
Definition: CoreCommonUtil.cpp:31
diff --git a/docs/html/GpgKeyGetter_8h_source.html b/docs/html/GpgKeyGetter_8h_source.html index 6191f509..67a13f83 100644 --- a/docs/html/GpgKeyGetter_8h_source.html +++ b/docs/html/GpgKeyGetter_8h_source.html @@ -134,7 +134,7 @@ $(document).ready(function(){initNavTree('GpgKeyGetter_8h_source.html',''); init
143 } // namespace GpgFrontend
144 
145 #endif // GPGFRONTEND_ZH_CN_TS_GPGKEYGETTER_H
-
GpgFrontend::GpgContext
Definition: GpgContext.h:60
+
GpgFrontend::GpgContext
Definition: GpgContext.h:64
GpgFrontend::GpgKeyGetter
Definition: GpgKeyGetter.h:46
GpgFrontend::GpgKeyGetter::ctx_mutex_
std::mutex ctx_mutex_
shared mutex for the keys cache
Definition: GpgKeyGetter.h:121
GpgFrontend::GpgKeyGetter::keys_cache_
std::map< std::string, GpgKey > keys_cache_
cache the keys with key id
Definition: GpgKeyGetter.h:127
@@ -144,7 +144,7 @@ $(document).ready(function(){initNavTree('GpgKeyGetter_8h_source.html',''); init
GpgFrontend::SingletonFunctionObject::GetDefaultChannel
static int GetDefaultChannel()
Get the Default Channel object.
Definition: GpgFunctionObject.h:232
GpgFrontend::SingletonFunctionObject< GpgContext >::GetInstance
static GpgContext & GetInstance(int channel=GpgFrontend::GPGFRONTEND_DEFAULT_CHANNEL)
Get the Instance object.
Definition: GpgFunctionObject.h:170
GpgFrontend::SingletonFunctionObject::GetChannel
int GetChannel() const
Get the Channel object.
Definition: GpgFunctionObject.h:239
-
GpgFrontend
Definition: CoreCommonUtil.cpp:29
+
GpgFrontend
Definition: CoreCommonUtil.cpp:31
diff --git a/docs/html/GpgKeyImportExporter_8h_source.html b/docs/html/GpgKeyImportExporter_8h_source.html index f62cd0c1..530a5a9d 100644 --- a/docs/html/GpgKeyImportExporter_8h_source.html +++ b/docs/html/GpgKeyImportExporter_8h_source.html @@ -144,24 +144,27 @@ $(document).ready(function(){initNavTree('GpgKeyImportExporter_8h_source.html','
129  bool ExportKeys(const KeyArgsList& keys, ByteArrayPtr& outBuffer,
130  bool secret = false) const;
131 
-
140  bool ExportKey(const GpgKey& key, ByteArrayPtr& out_buffer) const;
-
141 
-
150  bool ExportKeyOpenSSH(const GpgKey& key, ByteArrayPtr& out_buffer) const;
-
151 
-
160  bool ExportSecretKey(const GpgKey& key, ByteArrayPtr& outBuffer) const;
-
161 
-
170  bool ExportSecretKeyShortest(const GpgKey& key,
-
171  ByteArrayPtr& outBuffer) const;
-
172 
-
173  private:
-
174  GpgContext& ctx_ =
-
175  GpgContext::GetInstance(SingletonFunctionObject::GetChannel());
-
176 };
-
177 
-
178 } // namespace GpgFrontend
-
179 
-
180 #endif // _GPGKEYIMPORTEXPORTOR_H
-
GpgFrontend::GpgContext
Definition: GpgContext.h:60
+
141  bool ExportAllKeys(KeyIdArgsListPtr& uid_list, ByteArrayPtr& out_buffer,
+
142  bool secret) const;
+
143 
+
152  bool ExportKey(const GpgKey& key, ByteArrayPtr& out_buffer) const;
+
153 
+
162  bool ExportKeyOpenSSH(const GpgKey& key, ByteArrayPtr& out_buffer) const;
+
163 
+
172  bool ExportSecretKey(const GpgKey& key, ByteArrayPtr& outBuffer) const;
+
173 
+
182  bool ExportSecretKeyShortest(const GpgKey& key,
+
183  ByteArrayPtr& outBuffer) const;
+
184 
+
185  private:
+
186  GpgContext& ctx_ =
+
187  GpgContext::GetInstance(SingletonFunctionObject::GetChannel());
+
188 };
+
189 
+
190 } // namespace GpgFrontend
+
191 
+
192 #endif // _GPGKEYIMPORTEXPORTOR_H
+
GpgFrontend::GpgContext
Definition: GpgContext.h:64
GpgFrontend::GpgImportInformation
Definition: GpgKeyImportExporter.h:57
GpgFrontend::GpgImportedKey
Definition: GpgKeyImportExporter.h:45
GpgFrontend::GpgKeyImportExporter
Definition: GpgKeyImportExporter.h:90
@@ -170,7 +173,7 @@ $(document).ready(function(){initNavTree('GpgKeyImportExporter_8h_source.html','
GpgFrontend::SingletonFunctionObject::GetDefaultChannel
static int GetDefaultChannel()
Get the Default Channel object.
Definition: GpgFunctionObject.h:232
GpgFrontend::SingletonFunctionObject< GpgContext >::GetInstance
static GpgContext & GetInstance(int channel=GpgFrontend::GPGFRONTEND_DEFAULT_CHANNEL)
Get the Instance object.
Definition: GpgFunctionObject.h:170
GpgFrontend::SingletonFunctionObject::GetChannel
int GetChannel() const
Get the Channel object.
Definition: GpgFunctionObject.h:239
-
GpgFrontend
Definition: CoreCommonUtil.cpp:29
+
GpgFrontend
Definition: CoreCommonUtil.cpp:31
diff --git a/docs/html/GpgKeyManager_8h_source.html b/docs/html/GpgKeyManager_8h_source.html index efb4f9f0..08e6cc93 100644 --- a/docs/html/GpgKeyManager_8h_source.html +++ b/docs/html/GpgKeyManager_8h_source.html @@ -119,14 +119,14 @@ $(document).ready(function(){initNavTree('GpgKeyManager_8h_source.html',''); ini
91 } // namespace GpgFrontend
92 
93 #endif // GPGFRONTEND_ZH_CN_TS_GPGKEYMANAGER_H
-
GpgFrontend::GpgContext
Definition: GpgContext.h:60
+
GpgFrontend::GpgContext
Definition: GpgContext.h:64
GpgFrontend::GpgKeyManager
Definition: GpgKeyManager.h:43
GpgFrontend::GpgKey
Definition: GpgKey.h:43
GpgFrontend::SingletonFunctionObject
Definition: GpgFunctionObject.h:148
GpgFrontend::SingletonFunctionObject::GetDefaultChannel
static int GetDefaultChannel()
Get the Default Channel object.
Definition: GpgFunctionObject.h:232
GpgFrontend::SingletonFunctionObject< GpgContext >::GetInstance
static GpgContext & GetInstance(int channel=GpgFrontend::GPGFRONTEND_DEFAULT_CHANNEL)
Get the Instance object.
Definition: GpgFunctionObject.h:170
GpgFrontend::SingletonFunctionObject::GetChannel
int GetChannel() const
Get the Channel object.
Definition: GpgFunctionObject.h:239
-
GpgFrontend
Definition: CoreCommonUtil.cpp:29
+
GpgFrontend
Definition: CoreCommonUtil.cpp:31
diff --git a/docs/html/GpgKeyOpera_8h_source.html b/docs/html/GpgKeyOpera_8h_source.html index d44a98c6..11526655 100644 --- a/docs/html/GpgKeyOpera_8h_source.html +++ b/docs/html/GpgKeyOpera_8h_source.html @@ -130,14 +130,14 @@ $(document).ready(function(){initNavTree('GpgKeyOpera_8h_source.html',''); initR
133 } // namespace GpgFrontend
134 
135 #endif // _GPGKEYOPERA_H
-
GpgFrontend::GpgContext
Definition: GpgContext.h:60
+
GpgFrontend::GpgContext
Definition: GpgContext.h:64
GpgFrontend::GpgKeyOpera
Definition: GpgKeyOpera.h:48
GpgFrontend::GpgKey
Definition: GpgKey.h:43
GpgFrontend::SingletonFunctionObject
Definition: GpgFunctionObject.h:148
GpgFrontend::SingletonFunctionObject::GetDefaultChannel
static int GetDefaultChannel()
Get the Default Channel object.
Definition: GpgFunctionObject.h:232
GpgFrontend::SingletonFunctionObject< GpgContext >::GetInstance
static GpgContext & GetInstance(int channel=GpgFrontend::GPGFRONTEND_DEFAULT_CHANNEL)
Get the Instance object.
Definition: GpgFunctionObject.h:170
GpgFrontend::SingletonFunctionObject::GetChannel
int GetChannel() const
Get the Channel object.
Definition: GpgFunctionObject.h:239
-
GpgFrontend
Definition: CoreCommonUtil.cpp:29
+
GpgFrontend
Definition: CoreCommonUtil.cpp:31
diff --git a/docs/html/GpgKeySignature_8h_source.html b/docs/html/GpgKeySignature_8h_source.html index d1e5175f..06a01910 100644 --- a/docs/html/GpgKeySignature_8h_source.html +++ b/docs/html/GpgKeySignature_8h_source.html @@ -154,7 +154,7 @@ $(document).ready(function(){initNavTree('GpgKeySignature_8h_source.html',''); i
GpgFrontend::GpgKeySignature::GpgKeySignature
GpgKeySignature()
Construct a new Gpg Key Signature object.
GpgFrontend::GpgKeySignature::GpgKeySignature
GpgKeySignature(GpgKeySignature &&) noexcept
Construct a new Gpg Key Signature object.
GpgFrontend::GpgKeySignature::~GpgKeySignature
~GpgKeySignature()
Destroy the Gpg Key Signature object.
-
GpgFrontend
Definition: CoreCommonUtil.cpp:29
+
GpgFrontend
Definition: CoreCommonUtil.cpp:31
diff --git a/docs/html/GpgKey_8h_source.html b/docs/html/GpgKey_8h_source.html index f9b1915f..6c5a23f9 100644 --- a/docs/html/GpgKey_8h_source.html +++ b/docs/html/GpgKey_8h_source.html @@ -200,7 +200,7 @@ $(document).ready(function(){initNavTree('GpgKey_8h_source.html',''); initResiza
GpgFrontend::GpgKey::~GpgKey
~GpgKey()=default
Destroy the Gpg Key objects.
GpgFrontend::GpgKey::GpgKey
GpgKey()=default
Construct a new Gpg Key object.
GpgFrontend::GpgKey::operator=
GpgKey & operator=(const gpgme_key_t &key)=delete
-
GpgFrontend
Definition: CoreCommonUtil.cpp:29
+
GpgFrontend
Definition: CoreCommonUtil.cpp:31
GpgFrontend::GpgKey::_key_ref_deleter
Definition: GpgKey.h:350
diff --git a/docs/html/GpgModel_8h_source.html b/docs/html/GpgModel_8h_source.html index 66557f16..041bcc88 100644 --- a/docs/html/GpgModel_8h_source.html +++ b/docs/html/GpgModel_8h_source.html @@ -116,7 +116,7 @@ $(document).ready(function(){initNavTree('GpgModel_8h_source.html',''); initResi
55 } // namespace GpgFrontend
56 
57 #endif // GPGFRONTEND_ZH_CN_TS_GPGMODEL_H
-
GpgFrontend
Definition: CoreCommonUtil.cpp:29
+
GpgFrontend
Definition: CoreCommonUtil.cpp:31
diff --git a/docs/html/GpgResultAnalyse_8h_source.html b/docs/html/GpgResultAnalyse_8h_source.html index 1fea2881..e9d515fc 100644 --- a/docs/html/GpgResultAnalyse_8h_source.html +++ b/docs/html/GpgResultAnalyse_8h_source.html @@ -121,7 +121,7 @@ $(document).ready(function(){initNavTree('GpgResultAnalyse_8h_source.html','');
86 #endif // GPGFRONTEND_GPGRESULTANALYSE_H
GpgFrontend::GpgResultAnalyse
Definition: GpgResultAnalyse.h:37
GpgFrontend::GpgResultAnalyse::GpgResultAnalyse
GpgResultAnalyse()=default
Construct a new Result Analyse object.
-
GpgFrontend
Definition: CoreCommonUtil.cpp:29
+
GpgFrontend
Definition: CoreCommonUtil.cpp:31
diff --git a/docs/html/GpgSignResultAnalyse_8h_source.html b/docs/html/GpgSignResultAnalyse_8h_source.html index c0f98dcb..e1a8a185 100644 --- a/docs/html/GpgSignResultAnalyse_8h_source.html +++ b/docs/html/GpgSignResultAnalyse_8h_source.html @@ -112,7 +112,7 @@ $(document).ready(function(){initNavTree('GpgSignResultAnalyse_8h_source.html','
65 #endif // GPGFRONTEND_GPGSIGNRESULTANALYSE_H
GpgFrontend::GpgResultAnalyse
Definition: GpgResultAnalyse.h:37
GpgFrontend::GpgSignResultAnalyse
Definition: GpgSignResultAnalyse.h:40
-
GpgFrontend
Definition: CoreCommonUtil.cpp:29
+
GpgFrontend
Definition: CoreCommonUtil.cpp:31
diff --git a/docs/html/GpgSignature_8h_source.html b/docs/html/GpgSignature_8h_source.html index 852c4ee3..4c6d635f 100644 --- a/docs/html/GpgSignature_8h_source.html +++ b/docs/html/GpgSignature_8h_source.html @@ -143,7 +143,7 @@ $(document).ready(function(){initNavTree('GpgSignature_8h_source.html',''); init
GpgFrontend::GpgSignature::~GpgSignature
~GpgSignature()
Destroy the Gpg Signature object.
GpgFrontend::GpgSignature::GpgSignature
GpgSignature()
Construct a new Gpg Signature object.
GpgFrontend::GpgSignature::GpgSignature
GpgSignature(GpgSignature &&) noexcept
Construct a new Gpg Signature object.
-
GpgFrontend
Definition: CoreCommonUtil.cpp:29
+
GpgFrontend
Definition: CoreCommonUtil.cpp:31
diff --git a/docs/html/GpgSubKey_8h_source.html b/docs/html/GpgSubKey_8h_source.html index 1c177dd8..2a9a3122 100644 --- a/docs/html/GpgSubKey_8h_source.html +++ b/docs/html/GpgSubKey_8h_source.html @@ -160,7 +160,7 @@ $(document).ready(function(){initNavTree('GpgSubKey_8h_source.html',''); initRes
GpgFrontend::GpgSubKey::GpgSubKey
GpgSubKey()
Construct a new Gpg Sub Key object.
GpgFrontend::GpgSubKey::GpgSubKey
GpgSubKey(const GpgSubKey &)=delete
Construct a new Gpg Sub Key object.
GpgFrontend::GpgSubKey::operator=
GpgSubKey & operator=(const GpgSubKey &)=delete
-
GpgFrontend
Definition: CoreCommonUtil.cpp:29
+
GpgFrontend
Definition: CoreCommonUtil.cpp:31
diff --git a/docs/html/GpgTOFUInfo_8h_source.html b/docs/html/GpgTOFUInfo_8h_source.html index 13a46cf2..4c7742e3 100644 --- a/docs/html/GpgTOFUInfo_8h_source.html +++ b/docs/html/GpgTOFUInfo_8h_source.html @@ -137,7 +137,7 @@ $(document).ready(function(){initNavTree('GpgTOFUInfo_8h_source.html',''); initR
GpgFrontend::GpgTOFUInfo::GpgTOFUInfo
GpgTOFUInfo(const GpgTOFUInfo &)=delete
Construct a new Gpg T O F U Info object.
GpgFrontend::GpgTOFUInfo::operator=
GpgTOFUInfo & operator=(const GpgTOFUInfo &)=delete
GpgFrontend::GpgTOFUInfo::GpgTOFUInfo
GpgTOFUInfo()
Construct a new Gpg T O F U Info object.
-
GpgFrontend
Definition: CoreCommonUtil.cpp:29
+
GpgFrontend
Definition: CoreCommonUtil.cpp:31
diff --git a/docs/html/GpgUIDOperator_8h_source.html b/docs/html/GpgUIDOperator_8h_source.html index f4a14197..95fce843 100644 --- a/docs/html/GpgUIDOperator_8h_source.html +++ b/docs/html/GpgUIDOperator_8h_source.html @@ -117,14 +117,14 @@ $(document).ready(function(){initNavTree('GpgUIDOperator_8h_source.html',''); in
91 } // namespace GpgFrontend
92 
93 #endif // GPGFRONTEND_ZH_CN_TS_UIDOPERATOR_H
-
GpgFrontend::GpgContext
Definition: GpgContext.h:60
+
GpgFrontend::GpgContext
Definition: GpgContext.h:64
GpgFrontend::GpgKey
Definition: GpgKey.h:43
GpgFrontend::GpgUIDOperator
Definition: GpgUIDOperator.h:41
GpgFrontend::SingletonFunctionObject
Definition: GpgFunctionObject.h:148
GpgFrontend::SingletonFunctionObject::GetDefaultChannel
static int GetDefaultChannel()
Get the Default Channel object.
Definition: GpgFunctionObject.h:232
GpgFrontend::SingletonFunctionObject< GpgContext >::GetInstance
static GpgContext & GetInstance(int channel=GpgFrontend::GPGFRONTEND_DEFAULT_CHANNEL)
Get the Instance object.
Definition: GpgFunctionObject.h:170
GpgFrontend::SingletonFunctionObject::GetChannel
int GetChannel() const
Get the Channel object.
Definition: GpgFunctionObject.h:239
-
GpgFrontend
Definition: CoreCommonUtil.cpp:29
+
GpgFrontend
Definition: CoreCommonUtil.cpp:31
diff --git a/docs/html/GpgUID_8h_source.html b/docs/html/GpgUID_8h_source.html index fec3b96b..d65f4d97 100644 --- a/docs/html/GpgUID_8h_source.html +++ b/docs/html/GpgUID_8h_source.html @@ -141,7 +141,7 @@ $(document).ready(function(){initNavTree('GpgUID_8h_source.html',''); initResiza
GpgFrontend::GpgUID::GpgUID
GpgUID(const GpgUID &)=delete
Construct a new Gpg U I D object.
GpgFrontend::GpgUID::operator=
GpgUID & operator=(const GpgUID &)=delete
GpgFrontend::GpgUID::operator=
GpgUID & operator=(GpgUID &&o) noexcept
-
GpgFrontend
Definition: CoreCommonUtil.cpp:29
+
GpgFrontend
Definition: CoreCommonUtil.cpp:31
diff --git a/docs/html/GpgVerifyResultAnalyse_8h_source.html b/docs/html/GpgVerifyResultAnalyse_8h_source.html index 156926e5..de1cdb87 100644 --- a/docs/html/GpgVerifyResultAnalyse_8h_source.html +++ b/docs/html/GpgVerifyResultAnalyse_8h_source.html @@ -117,7 +117,7 @@ $(document).ready(function(){initNavTree('GpgVerifyResultAnalyse_8h_source.html'
88 #endif // GPGFRONTEND_GPGVERIFYRESULTANALYSE_H
GpgFrontend::GpgResultAnalyse
Definition: GpgResultAnalyse.h:37
GpgFrontend::GpgVerifyResultAnalyse
Definition: GpgVerifyResultAnalyse.h:40
-
GpgFrontend
Definition: CoreCommonUtil.cpp:29
+
GpgFrontend
Definition: CoreCommonUtil.cpp:31
diff --git a/docs/html/HelpPage_8h_source.html b/docs/html/HelpPage_8h_source.html index acbcb053..c685f647 100644 --- a/docs/html/HelpPage_8h_source.html +++ b/docs/html/HelpPage_8h_source.html @@ -119,7 +119,7 @@ $(document).ready(function(){initNavTree('HelpPage_8h_source.html',''); initResi
GpgFrontend::UI::HelpPage::slot_open_url
void slot_open_url(const QUrl &url)
Definition: HelpPage.cpp:50
GpgFrontend::UI::HelpPage::GetBrowser
QTextBrowser * GetBrowser()
Get the Browser object.
Definition: HelpPage.cpp:85
GpgFrontend::UI::HelpPage::browser_
QTextBrowser * browser_
The textbrowser of the tab.
Definition: HelpPage.h:68
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/InfoBoardWidget_8h_source.html b/docs/html/InfoBoardWidget_8h_source.html index aa498349..e5dfa7cd 100644 --- a/docs/html/InfoBoardWidget_8h_source.html +++ b/docs/html/InfoBoardWidget_8h_source.html @@ -149,16 +149,16 @@ $(document).ready(function(){initNavTree('InfoBoardWidget_8h_source.html',''); i
147 
148 #endif // __VERIFYNOTIFICATION_H__
GpgFrontend::UI::InfoBoardWidget
Class for handling the verify label shown at bottom of a textedit-page.
Definition: InfoBoardWidget.h:53
-
GpgFrontend::UI::InfoBoardWidget::AddOptionalAction
void AddOptionalAction(const QString &name, const std::function< void()> &action)
Definition: InfoBoardWidget.cpp:115
-
GpgFrontend::UI::InfoBoardWidget::AssociateTextEdit
void AssociateTextEdit(QTextEdit *edit)
Definition: InfoBoardWidget.cpp:97
+
GpgFrontend::UI::InfoBoardWidget::AddOptionalAction
void AddOptionalAction(const QString &name, const std::function< void()> &action)
Definition: InfoBoardWidget.cpp:114
+
GpgFrontend::UI::InfoBoardWidget::AssociateTextEdit
void AssociateTextEdit(QTextEdit *edit)
Definition: InfoBoardWidget.cpp:96
GpgFrontend::UI::InfoBoardWidget::m_text_page_
QTextEdit * m_text_page_
TextEdit associated to the notification.
Definition: InfoBoardWidget.h:133
-
GpgFrontend::UI::InfoBoardWidget::SlotRefresh
void SlotRefresh(const QString &text, GpgFrontend::UI::InfoBoardStatus status)
Definition: InfoBoardWidget.cpp:91
-
GpgFrontend::UI::InfoBoardWidget::ResetOptionActionsMenu
void ResetOptionActionsMenu()
Definition: InfoBoardWidget.cpp:131
-
GpgFrontend::UI::InfoBoardWidget::delete_widgets_in_layout
void delete_widgets_in_layout(QLayout *layout, int start_index=0)
Definition: InfoBoardWidget.cpp:145
+
GpgFrontend::UI::InfoBoardWidget::SlotRefresh
void SlotRefresh(const QString &text, GpgFrontend::UI::InfoBoardStatus status)
Definition: InfoBoardWidget.cpp:90
+
GpgFrontend::UI::InfoBoardWidget::ResetOptionActionsMenu
void ResetOptionActionsMenu()
Definition: InfoBoardWidget.cpp:130
+
GpgFrontend::UI::InfoBoardWidget::delete_widgets_in_layout
void delete_widgets_in_layout(QLayout *layout, int start_index=0)
Definition: InfoBoardWidget.cpp:144
GpgFrontend::UI::InfoBoardWidget::SetInfoBoard
void SetInfoBoard(const QString &text, GpgFrontend::UI::InfoBoardStatus verify_label_status)
Definition: InfoBoardWidget.cpp:58
GpgFrontend::UI::InfoBoardWidget::InfoBoardWidget
InfoBoardWidget(QWidget *parent)
Definition: InfoBoardWidget.cpp:38
-
GpgFrontend::UI::InfoBoardWidget::AssociateTabWidget
void AssociateTabWidget(QTabWidget *tab)
Definition: InfoBoardWidget.cpp:105
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI::InfoBoardWidget::AssociateTabWidget
void AssociateTabWidget(QTabWidget *tab)
Definition: InfoBoardWidget.cpp:104
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
GpgFrontend::UI::InfoBoardStatus
InfoBoardStatus
Definition: InfoBoardWidget.h:43
diff --git a/docs/html/KeyDetailsDialog_8h_source.html b/docs/html/KeyDetailsDialog_8h_source.html index c706ade1..469264fb 100644 --- a/docs/html/KeyDetailsDialog_8h_source.html +++ b/docs/html/KeyDetailsDialog_8h_source.html @@ -111,7 +111,7 @@ $(document).ready(function(){initNavTree('KeyDetailsDialog_8h_source.html','');
GpgFrontend::GpgKey
Definition: GpgKey.h:43
GpgFrontend::UI::GeneralDialog
Definition: GeneralDialog.h:35
GpgFrontend::UI::KeyDetailsDialog
Definition: KeyDetailsDialog.h:38
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/KeyImportDetailDialog_8h_source.html b/docs/html/KeyImportDetailDialog_8h_source.html index 050c12ba..e856fce0 100644 --- a/docs/html/KeyImportDetailDialog_8h_source.html +++ b/docs/html/KeyImportDetailDialog_8h_source.html @@ -127,10 +127,10 @@ $(document).ready(function(){initNavTree('KeyImportDetailDialog_8h_source.html',
GpgFrontend::UI::KeyImportDetailDialog
Definition: KeyImportDetailDialog.h:43
GpgFrontend::UI::KeyImportDetailDialog::KeyImportDetailDialog
KeyImportDetailDialog(GpgImportInformation result, bool automatic, QWidget *parent=nullptr)
Construct a new Key Import Detail Dialog object.
Definition: KeyImportDetailDialog.cpp:34
GpgFrontend::UI::KeyImportDetailDialog::create_keys_table
void create_keys_table()
Create a keys table object.
Definition: KeyImportDetailDialog.cpp:131
-
GpgFrontend::UI::KeyImportDetailDialog::create_button_box
void create_button_box()
Create a button box object.
Definition: KeyImportDetailDialog.cpp:199
-
GpgFrontend::UI::KeyImportDetailDialog::get_status_string
static QString get_status_string(int keyStatus)
Get the status string object.
Definition: KeyImportDetailDialog.cpp:167
+
GpgFrontend::UI::KeyImportDetailDialog::create_button_box
void create_button_box()
Create a button box object.
Definition: KeyImportDetailDialog.cpp:197
+
GpgFrontend::UI::KeyImportDetailDialog::get_status_string
static QString get_status_string(int keyStatus)
Get the status string object.
Definition: KeyImportDetailDialog.cpp:165
GpgFrontend::UI::KeyImportDetailDialog::create_general_info_box
void create_general_info_box()
Create a general info box object.
Definition: KeyImportDetailDialog.cpp:77
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/KeyList_8h_source.html b/docs/html/KeyList_8h_source.html index 4e54bd2b..d565c544 100644 --- a/docs/html/KeyList_8h_source.html +++ b/docs/html/KeyList_8h_source.html @@ -255,31 +255,31 @@ $(document).ready(function(){initNavTree('KeyList_8h_source.html',''); initResiz
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:381
+
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:392
+
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::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:403
+
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::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:408
-
GpgFrontend::UI::KeyList::import_keys
void import_keys(const QByteArray &inBuffer)
Definition: KeyList.cpp:385
+
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:374
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI::KeyList::dragEnterEvent
void dragEnterEvent(QDragEnterEvent *event) override
Definition: KeyList.cpp:373
+
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:500
+
GpgFrontend::UI::KeyTable::GetChecked
KeyIdArgsListPtr & GetChecked()
Get the Checked object.
Definition: KeyList.cpp:499
GpgFrontend::UI::KeyTable::KeyTable
KeyTable(QTableWidget *_key_list, KeyListRow::KeyType _select_type, KeyListColumn::InfoType _info_type, std::function< bool(const GpgKey &)> _filter=[](const GpgKey &) -> bool { return true;})
Construct a new Key Table object.
Definition: KeyList.h:103
-
GpgFrontend::UI::KeyTable::Refresh
void Refresh(KeyLinkListPtr m_keys=nullptr)
Definition: KeyList.cpp:520
-
GpgFrontend::UI::KeyTable::SetChecked
void SetChecked(KeyIdArgsListPtr key_ids)
Set the Checked object.
Definition: KeyList.cpp:515
+
GpgFrontend::UI::KeyTable::Refresh
void Refresh(KeyLinkListPtr m_keys=nullptr)
Definition: KeyList.cpp:518
+
GpgFrontend::UI::KeyTable::SetChecked
void SetChecked(KeyIdArgsListPtr key_ids)
Set the Checked object.
Definition: KeyList.cpp:514
diff --git a/docs/html/KeyMgmt_8h_source.html b/docs/html/KeyMgmt_8h_source.html index 60674335..826b47a4 100644 --- a/docs/html/KeyMgmt_8h_source.html +++ b/docs/html/KeyMgmt_8h_source.html @@ -176,7 +176,7 @@ $(document).ready(function(){initNavTree('KeyMgmt_8h_source.html',''); initResiz
GpgFrontend::UI::KeyMgmt::create_menus
void create_menus()
Create a menus object.
Definition: KeyMgmt.cpp:220
GpgFrontend::UI::KeyMgmt::KeyMgmt
KeyMgmt(QWidget *parent=nullptr)
Construct a new Key Mgmt object.
Definition: KeyMgmt.cpp:46
GpgFrontend::UI::KeyServerImportDialog
Definition: KeyServerImportDialog.h:46
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/KeyNewUIDDialog_8h_source.html b/docs/html/KeyNewUIDDialog_8h_source.html index 038cce5d..3d93d444 100644 --- a/docs/html/KeyNewUIDDialog_8h_source.html +++ b/docs/html/KeyNewUIDDialog_8h_source.html @@ -134,7 +134,7 @@ $(document).ready(function(){initNavTree('KeyNewUIDDialog_8h_source.html',''); i
GpgFrontend::UI::KeyNewUIDDialog::slot_create_new_uid
void slot_create_new_uid()
Definition: KeyNewUIDDialog.cpp:74
GpgFrontend::UI::KeyNewUIDDialog::KeyNewUIDDialog
KeyNewUIDDialog(const KeyId &key, QWidget *parent=nullptr)
Construct a new Key New U I D Dialog object.
Definition: KeyNewUIDDialog.cpp:34
GpgFrontend::UI::KeyNewUIDDialog::check_email_address
bool check_email_address(const QString &str)
Definition: KeyNewUIDDialog.cpp:111
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/KeyPackageOperator_8h_source.html b/docs/html/KeyPackageOperator_8h_source.html index 403f4fd6..dbe5f870 100644 --- a/docs/html/KeyPackageOperator_8h_source.html +++ b/docs/html/KeyPackageOperator_8h_source.html @@ -127,7 +127,7 @@ $(document).ready(function(){initNavTree('KeyPackageOperator_8h_source.html','')
GpgFrontend::GpgImportInformation
Definition: GpgKeyImportExporter.h:57
GpgFrontend::KeyPackageOperator
give the possibility to import or export a key package
Definition: KeyPackageOperator.h:41
GpgFrontend::KeyPackageOperator::generate_key_package_name
static std::string generate_key_package_name()
generate key package name
Definition: KeyPackageOperator.h:96
-
GpgFrontend
Definition: CoreCommonUtil.cpp:29
+
GpgFrontend
Definition: CoreCommonUtil.cpp:31
diff --git a/docs/html/KeyPairDetailTab_8h_source.html b/docs/html/KeyPairDetailTab_8h_source.html index 431c1d29..f9912cde 100644 --- a/docs/html/KeyPairDetailTab_8h_source.html +++ b/docs/html/KeyPairDetailTab_8h_source.html @@ -159,7 +159,7 @@ $(document).ready(function(){initNavTree('KeyPairDetailTab_8h_source.html','');
GpgFrontend::UI::KeyPairDetailTab::fingerprint_box_
QGroupBox * fingerprint_box_
Groupbox containing fingerprint information.
Definition: KeyPairDetailTab.h:65
GpgFrontend::UI::KeyPairDetailTab::expire_var_label_
QLabel * expire_var_label_
Label containing the keys expiration date.
Definition: KeyPairDetailTab.h:73
GpgFrontend::UI::KeyPairDetailTab::slot_copy_fingerprint
void slot_copy_fingerprint()
Definition: KeyPairDetailTab.cpp:165
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/KeyPairOperaTab_8h_source.html b/docs/html/KeyPairOperaTab_8h_source.html index 2633846c..bf22fbb3 100644 --- a/docs/html/KeyPairOperaTab_8h_source.html +++ b/docs/html/KeyPairOperaTab_8h_source.html @@ -134,7 +134,7 @@ $(document).ready(function(){initNavTree('KeyPairOperaTab_8h_source.html',''); i
GpgFrontend::UI::KeyPairOperaTab::slot_export_private_key
void slot_export_private_key()
Definition: KeyPairOperaTab.cpp:217
GpgFrontend::UI::KeyPairOperaTab::CreateOperaMenu
void CreateOperaMenu()
Create a Opera Menu object.
Definition: KeyPairOperaTab.cpp:103
GpgFrontend::UI::KeyPairOperaTab::KeyPairOperaTab
KeyPairOperaTab(const std::string &key_id, QWidget *parent)
Construct a new Key Pair Opera Tab object.
Definition: KeyPairOperaTab.cpp:38
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/KeyPairSubkeyTab_8h_source.html b/docs/html/KeyPairSubkeyTab_8h_source.html index d704041d..f2df2198 100644 --- a/docs/html/KeyPairSubkeyTab_8h_source.html +++ b/docs/html/KeyPairSubkeyTab_8h_source.html @@ -157,14 +157,14 @@ $(document).ready(function(){initNavTree('KeyPairSubkeyTab_8h_source.html','');
GpgFrontend::UI::KeyPairSubkeyTab::fingerprint_var_label_
QLabel * fingerprint_var_label_
Label containing the keys fingerprint.
Definition: KeyPairSubkeyTab.h:85
GpgFrontend::UI::KeyPairSubkeyTab::algorithm_var_label_
QLabel * algorithm_var_label_
Label containing the keys algorithm.
Definition: KeyPairSubkeyTab.h:83
GpgFrontend::UI::KeyPairSubkeyTab::key_id_var_label_
QLabel * key_id_var_label_
Label containing the keys keyid.
Definition: KeyPairSubkeyTab.h:84
-
GpgFrontend::UI::KeyPairSubkeyTab::create_subkey_opera_menu
void create_subkey_opera_menu()
Create a subkey opera menu object.
Definition: KeyPairSubkeyTab.cpp:311
+
GpgFrontend::UI::KeyPairSubkeyTab::create_subkey_opera_menu
void create_subkey_opera_menu()
Create a subkey opera menu object.
Definition: KeyPairSubkeyTab.cpp:318
GpgFrontend::UI::KeyPairSubkeyTab::key_size_var_label_
QLabel * key_size_var_label_
Label containing the keys key size.
Definition: KeyPairSubkeyTab.h:80
GpgFrontend::UI::KeyPairSubkeyTab::expire_var_label_
QLabel * expire_var_label_
Label containing the keys expiration date.
Definition: KeyPairSubkeyTab.h:81
GpgFrontend::UI::KeyPairSubkeyTab::KeyPairSubkeyTab
KeyPairSubkeyTab(const std::string &key, QWidget *parent)
Construct a new Key Pair Subkey Tab object.
Definition: KeyPairSubkeyTab.cpp:36
GpgFrontend::UI::KeyPairSubkeyTab::created_var_label_
QLabel * created_var_label_
Label containing the keys creation date.
Definition: KeyPairSubkeyTab.h:82
-
GpgFrontend::UI::KeyPairSubkeyTab::contextMenuEvent
void contextMenuEvent(QContextMenuEvent *event) override
Definition: KeyPairSubkeyTab.cpp:330
-
GpgFrontend::UI::KeyPairSubkeyTab::get_selected_subkey
const GpgSubKey & get_selected_subkey()
Get the selected subkey object.
Definition: KeyPairSubkeyTab.cpp:336
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI::KeyPairSubkeyTab::contextMenuEvent
void contextMenuEvent(QContextMenuEvent *event) override
Definition: KeyPairSubkeyTab.cpp:337
+
GpgFrontend::UI::KeyPairSubkeyTab::get_selected_subkey
const GpgSubKey & get_selected_subkey()
Get the selected subkey object.
Definition: KeyPairSubkeyTab.cpp:343
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/KeyPairUIDTab_8h_source.html b/docs/html/KeyPairUIDTab_8h_source.html index c57f6c42..398c468f 100644 --- a/docs/html/KeyPairUIDTab_8h_source.html +++ b/docs/html/KeyPairUIDTab_8h_source.html @@ -170,17 +170,17 @@ $(document).ready(function(){initNavTree('KeyPairUIDTab_8h_source.html',''); ini
GpgFrontend::GpgKey
Definition: GpgKey.h:43
GpgFrontend::UI::KeyPairUIDTab
Definition: KeyPairUIDTab.h:39
GpgFrontend::UI::KeyPairUIDTab::create_uid_list
void create_uid_list()
Create a uid list object.
Definition: KeyPairUIDTab.cpp:118
-
GpgFrontend::UI::KeyPairUIDTab::get_uid_selected
UIDArgsListPtr get_uid_selected()
Get the uid selected object.
Definition: KeyPairUIDTab.cpp:431
-
GpgFrontend::UI::KeyPairUIDTab::slot_add_uid_result
static void slot_add_uid_result(int result)
Definition: KeyPairUIDTab.cpp:348
-
GpgFrontend::UI::KeyPairUIDTab::create_uid_popup_menu
void create_uid_popup_menu()
Create a uid popup menu object.
Definition: KeyPairUIDTab.cpp:452
-
GpgFrontend::UI::KeyPairUIDTab::get_sign_selected
SignIdArgsListPtr get_sign_selected()
Get the sign selected object.
Definition: KeyPairUIDTab.cpp:441
+
GpgFrontend::UI::KeyPairUIDTab::get_uid_selected
UIDArgsListPtr get_uid_selected()
Get the uid selected object.
Definition: KeyPairUIDTab.cpp:444
+
GpgFrontend::UI::KeyPairUIDTab::slot_add_uid_result
static void slot_add_uid_result(int result)
Definition: KeyPairUIDTab.cpp:361
+
GpgFrontend::UI::KeyPairUIDTab::create_uid_popup_menu
void create_uid_popup_menu()
Create a uid popup menu object.
Definition: KeyPairUIDTab.cpp:465
+
GpgFrontend::UI::KeyPairUIDTab::get_sign_selected
SignIdArgsListPtr get_sign_selected()
Get the sign selected object.
Definition: KeyPairUIDTab.cpp:454
GpgFrontend::UI::KeyPairUIDTab::create_sign_list
void create_sign_list()
Create a sign list object.
Definition: KeyPairUIDTab.cpp:142
-
GpgFrontend::UI::KeyPairUIDTab::contextMenuEvent
void contextMenuEvent(QContextMenuEvent *event) override
Definition: KeyPairUIDTab.cpp:472
-
GpgFrontend::UI::KeyPairUIDTab::create_manage_uid_menu
void create_manage_uid_menu()
Create a manage uid menu object.
Definition: KeyPairUIDTab.cpp:325
-
GpgFrontend::UI::KeyPairUIDTab::create_sign_popup_menu
void create_sign_popup_menu()
Create a sign popup menu object.
Definition: KeyPairUIDTab.cpp:527
-
GpgFrontend::UI::KeyPairUIDTab::get_uid_checked
UIDArgsListPtr get_uid_checked()
Get the uid checked object.
Definition: KeyPairUIDTab.cpp:316
+
GpgFrontend::UI::KeyPairUIDTab::contextMenuEvent
void contextMenuEvent(QContextMenuEvent *event) override
Definition: KeyPairUIDTab.cpp:485
+
GpgFrontend::UI::KeyPairUIDTab::create_manage_uid_menu
void create_manage_uid_menu()
Create a manage uid menu object.
Definition: KeyPairUIDTab.cpp:338
+
GpgFrontend::UI::KeyPairUIDTab::create_sign_popup_menu
void create_sign_popup_menu()
Create a sign popup menu object.
Definition: KeyPairUIDTab.cpp:540
+
GpgFrontend::UI::KeyPairUIDTab::get_uid_checked
UIDArgsListPtr get_uid_checked()
Get the uid checked object.
Definition: KeyPairUIDTab.cpp:329
GpgFrontend::UI::KeyPairUIDTab::KeyPairUIDTab
KeyPairUIDTab(const std::string &key_id, QWidget *parent)
Construct a new Key Pair U I D Tab object.
Definition: KeyPairUIDTab.cpp:37
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/KeyServerImportDialog_8h_source.html b/docs/html/KeyServerImportDialog_8h_source.html index 8bc6a80b..838149ff 100644 --- a/docs/html/KeyServerImportDialog_8h_source.html +++ b/docs/html/KeyServerImportDialog_8h_source.html @@ -164,17 +164,17 @@ $(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:421
-
GpgFrontend::UI::KeyServerImportDialog::import_keys
void import_keys(ByteArrayPtr in_data)
Definition: KeyServerImportDialog.cpp:524
+
GpgFrontend::UI::KeyServerImportDialog::SlotImport
void SlotImport(const KeyIdArgsListPtr &keys)
Definition: KeyServerImportDialog.cpp:426
+
GpgFrontend::UI::KeyServerImportDialog::import_keys
void import_keys(ByteArrayPtr in_data)
Definition: KeyServerImportDialog.cpp:526
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:187
-
GpgFrontend::UI::KeyServerImportDialog::slot_import_finished
void slot_import_finished(QNetworkReply::NetworkError error, QByteArray buffer)
Definition: KeyServerImportDialog.cpp:471
-
GpgFrontend::UI::KeyServerImportDialog::KeyServerImportDialog
KeyServerImportDialog(bool automatic, QWidget *parent)
Construct a new Key Server Import Dialog object.
Definition: KeyServerImportDialog.cpp:43
+
GpgFrontend::UI::KeyServerImportDialog::slot_import_finished
void slot_import_finished(QNetworkReply::NetworkError error, QByteArray buffer)
Definition: KeyServerImportDialog.cpp:475
+
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:209
-
GpgFrontend::UI::KeyServerImportDialog::create_comboBox
QComboBox * create_comboBox()
Create a comboBox object.
Definition: KeyServerImportDialog.cpp:156
-
GpgFrontend::UI::KeyServerImportDialog::slot_import
void slot_import()
import key(s) for the key table selection
Definition: KeyServerImportDialog.cpp:408
-
GpgFrontend::UI::KeyServerImportDialog::set_loading
void set_loading(bool status)
Set the loading object.
Definition: KeyServerImportDialog.cpp:542
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI::KeyServerImportDialog::create_comboBox
QComboBox * create_comboBox()
Create a comboBox object.
Definition: KeyServerImportDialog.cpp:157
+
GpgFrontend::UI::KeyServerImportDialog::slot_import
void slot_import()
import key(s) for the key table selection
Definition: KeyServerImportDialog.cpp:413
+
GpgFrontend::UI::KeyServerImportDialog::set_loading
void set_loading(bool status)
Set the loading object.
Definition: KeyServerImportDialog.cpp:544
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/KeyServerImportTask_8h_source.html b/docs/html/KeyServerImportTask_8h_source.html index 24274df2..bacea852 100644 --- a/docs/html/KeyServerImportTask_8h_source.html +++ b/docs/html/KeyServerImportTask_8h_source.html @@ -126,7 +126,7 @@ $(document).ready(function(){initNavTree('KeyServerImportTask_8h_source.html',''
GpgFrontend::UI::KeyServerImportTask
Definition: KeyServerImportTask.h:33
GpgFrontend::UI::KeyServerImportTask::KeyServerImportTask
KeyServerImportTask(std::string keyserver_url, std::vector< std::string > keyid)
Construct a new Key Server Search Task object.
Definition: KeyServerImportTask.cpp:31
GpgFrontend::UI::KeyServerImportTask::SignalKeyServerImportResult
void SignalKeyServerImportResult(QNetworkReply::NetworkError reply, QByteArray buffer)
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/KeyServerSearchTask_8h_source.html b/docs/html/KeyServerSearchTask_8h_source.html index 73b23f0d..a1531b80 100644 --- a/docs/html/KeyServerSearchTask_8h_source.html +++ b/docs/html/KeyServerSearchTask_8h_source.html @@ -126,7 +126,7 @@ $(document).ready(function(){initNavTree('KeyServerSearchTask_8h_source.html',''
GpgFrontend::UI::KeyServerSearchTask
Definition: KeyServerSearchTask.h:34
GpgFrontend::UI::KeyServerSearchTask::KeyServerSearchTask
KeyServerSearchTask(std::string keyserver_url, std::string search_string)
Construct a new Key Server Search Task object.
Definition: KeyServerSearchTask.cpp:31
GpgFrontend::UI::KeyServerSearchTask::SignalKeyServerSearchResult
void SignalKeyServerSearchResult(QNetworkReply::NetworkError reply, QByteArray buffer)
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/KeySetExpireDateDialog_8h_source.html b/docs/html/KeySetExpireDateDialog_8h_source.html index 9e156cb3..3bfa3785 100644 --- a/docs/html/KeySetExpireDateDialog_8h_source.html +++ b/docs/html/KeySetExpireDateDialog_8h_source.html @@ -132,8 +132,8 @@ $(document).ready(function(){initNavTree('KeySetExpireDateDialog_8h_source.html'
GpgFrontend::UI::GeneralDialog
Definition: GeneralDialog.h:35
GpgFrontend::UI::KeySetExpireDateDialog
Definition: KeySetExpireDateDialog.h:42
GpgFrontend::UI::KeySetExpireDateDialog::KeySetExpireDateDialog
KeySetExpireDateDialog(const KeyId &key_id, QWidget *parent=nullptr)
Construct a new Key Set Expire Date Dialog object.
Definition: KeySetExpireDateDialog.cpp:41
-
GpgFrontend::UI::KeySetExpireDateDialog::slot_non_expired_checked
void slot_non_expired_checked(int state)
Definition: KeySetExpireDateDialog.cpp:140
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI::KeySetExpireDateDialog::slot_non_expired_checked
void slot_non_expired_checked(int state)
Definition: KeySetExpireDateDialog.cpp:152
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/KeyUIDSignDialog_8h_source.html b/docs/html/KeyUIDSignDialog_8h_source.html index fec0d884..b89c4ff7 100644 --- a/docs/html/KeyUIDSignDialog_8h_source.html +++ b/docs/html/KeyUIDSignDialog_8h_source.html @@ -129,7 +129,7 @@ $(document).ready(function(){initNavTree('KeyUIDSignDialog_8h_source.html','');
GpgFrontend::UI::KeyUIDSignDialog
Definition: KeyUIDSignDialog.h:37
GpgFrontend::UI::KeyUIDSignDialog::slot_sign_key
void slot_sign_key(bool clicked)
Definition: KeyUIDSignDialog.cpp:106
GpgFrontend::UI::KeyUIDSignDialog::KeyUIDSignDialog
KeyUIDSignDialog(const GpgKey &key, UIDArgsListPtr uid, QWidget *parent=nullptr)
Construct a new Key U I D Sign Dialog object.
Definition: KeyUIDSignDialog.cpp:35
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/KeyUploadDialog_8h_source.html b/docs/html/KeyUploadDialog_8h_source.html index 4f1ee604..d28d60f5 100644 --- a/docs/html/KeyUploadDialog_8h_source.html +++ b/docs/html/KeyUploadDialog_8h_source.html @@ -121,9 +121,9 @@ $(document).ready(function(){initNavTree('KeyUploadDialog_8h_source.html',''); i
83 #endif // GPGFRONTEND_KEYUPLOADWIDGET_H
GpgFrontend::UI::GeneralDialog
Definition: GeneralDialog.h:35
GpgFrontend::UI::KeyUploadDialog
Definition: KeyUploadDialog.h:42
-
GpgFrontend::UI::KeyUploadDialog::slot_upload_key_to_server
void slot_upload_key_to_server(const GpgFrontend::ByteArray &keys_data)
Definition: KeyUploadDialog.cpp:72
+
GpgFrontend::UI::KeyUploadDialog::slot_upload_key_to_server
void slot_upload_key_to_server(const GpgFrontend::ByteArray &keys_data)
Definition: KeyUploadDialog.cpp:71
GpgFrontend::UI::KeyUploadDialog::KeyUploadDialog
KeyUploadDialog(const KeyIdArgsListPtr &keys_ids, QWidget *parent)
Construct a new Key Upload Dialog object.
Definition: KeyUploadDialog.cpp:40
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/KeygenDialog_8h_source.html b/docs/html/KeygenDialog_8h_source.html index 3d028d1b..1b1dddcc 100644 --- a/docs/html/KeygenDialog_8h_source.html +++ b/docs/html/KeygenDialog_8h_source.html @@ -122,71 +122,72 @@ $(document).ready(function(){initNavTree('KeygenDialog_8h_source.html',''); init
93  QLineEdit* name_edit_{};
94  QLineEdit* email_edit_{};
95  QLineEdit* comment_edit_{};
-
96  QSpinBox* key_size_spin_box_{};
-
97  QComboBox* key_type_combo_box_{};
-
98  QDateTimeEdit* date_edit_{};
-
99  QCheckBox* expire_check_box_{};
-
100  QCheckBox* no_pass_phrase_check_box_{};
-
101  QGroupBox* key_usage_group_box_{};
-
103  QDateTime max_date_time_;
-
104  std::vector<QCheckBox*> key_usage_check_boxes_;
-
105 
-
110  void generate_key_dialog();
-
111 
-
115  void refresh_widgets_state();
-
116 
-
121  void set_signal_slot();
-
122 
-
130  bool check_email_address(const QString& str);
-
131 
-
132  private slots:
-
133 
-
138  void slot_expire_box_changed();
-
139 
-
144  void slot_key_gen_accept();
-
145 
-
151  void slot_encryption_box_changed(int state);
-
152 
-
158  void slot_signing_box_changed(int state);
-
159 
-
165  void slot_certification_box_changed(int state);
-
166 
-
172  void slot_authentication_box_changed(int state);
-
173 
-
179  void slot_activated_key_type(int index);
-
180 };
-
181 
-
182 } // namespace GpgFrontend::UI
-
183 
-
184 #endif // __KEYGENDIALOG_H__
+
96  QLineEdit* passphrase_edit_{};
+
97  QSpinBox* key_size_spin_box_{};
+
98  QComboBox* key_type_combo_box_{};
+
99  QDateTimeEdit* date_edit_{};
+
100  QCheckBox* expire_check_box_{};
+
101  QCheckBox* no_pass_phrase_check_box_{};
+
102  QGroupBox* key_usage_group_box_{};
+
104  QDateTime max_date_time_;
+
105  std::vector<QCheckBox*> key_usage_check_boxes_;
+
106 
+
111  void generate_key_dialog();
+
112 
+
116  void refresh_widgets_state();
+
117 
+
122  void set_signal_slot();
+
123 
+
131  bool check_email_address(const QString& str);
+
132 
+
133  private slots:
+
134 
+
139  void slot_expire_box_changed();
+
140 
+
145  void slot_key_gen_accept();
+
146 
+
152  void slot_encryption_box_changed(int state);
+
153 
+
159  void slot_signing_box_changed(int state);
+
160 
+
166  void slot_certification_box_changed(int state);
+
167 
+
173  void slot_authentication_box_changed(int state);
+
174 
+
180  void slot_activated_key_type(int index);
+
181 };
+
182 
+
183 } // namespace GpgFrontend::UI
+
184 
+
185 #endif // __KEYGENDIALOG_H__
GpgFrontend::UI::GeneralDialog
Definition: GeneralDialog.h:35
GpgFrontend::UI::KeyGenDialog
Definition: KeygenDialog.h:41
-
GpgFrontend::UI::KeyGenDialog::create_basic_info_group_box
QGroupBox * create_basic_info_group_box()
Create a basic info group box object.
Definition: KeygenDialog.cpp:352
+
GpgFrontend::UI::KeyGenDialog::create_basic_info_group_box
QGroupBox * create_basic_info_group_box()
Create a basic info group box object.
Definition: KeygenDialog.cpp:366
GpgFrontend::UI::KeyGenDialog::error_messages_
QStringList error_messages_
Definition: KeygenDialog.h:87
-
GpgFrontend::UI::KeyGenDialog::slot_signing_box_changed
void slot_signing_box_changed(int state)
Definition: KeygenDialog.cpp:230
-
GpgFrontend::UI::KeyGenDialog::expire_check_box_
QCheckBox * expire_check_box_
Checkbox, if key should expire.
Definition: KeygenDialog.h:99
-
GpgFrontend::UI::KeyGenDialog::date_edit_
QDateTimeEdit * date_edit_
Date edit for expiration date.
Definition: KeygenDialog.h:98
-
GpgFrontend::UI::KeyGenDialog::key_type_combo_box_
QComboBox * key_type_combo_box_
Combobox for Key type.
Definition: KeygenDialog.h:97
+
GpgFrontend::UI::KeyGenDialog::slot_signing_box_changed
void slot_signing_box_changed(int state)
Definition: KeygenDialog.cpp:249
+
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:38
-
GpgFrontend::UI::KeyGenDialog::slot_certification_box_changed
void slot_certification_box_changed(int state)
Definition: KeygenDialog.cpp:238
-
GpgFrontend::UI::KeyGenDialog::refresh_widgets_state
void refresh_widgets_state()
Definition: KeygenDialog.cpp:263
-
GpgFrontend::UI::KeyGenDialog::slot_expire_box_changed
void slot_expire_box_changed()
Definition: KeygenDialog.cpp:181
-
GpgFrontend::UI::KeyGenDialog::key_usage_group_box_
QGroupBox * key_usage_group_box_
Definition: KeygenDialog.h:101
+
GpgFrontend::UI::KeyGenDialog::KeyGenDialog
KeyGenDialog(QWidget *parent=nullptr)
Definition: KeygenDialog.cpp:39
+
GpgFrontend::UI::KeyGenDialog::slot_certification_box_changed
void slot_certification_box_changed(int state)
Definition: KeygenDialog.cpp:257
+
GpgFrontend::UI::KeyGenDialog::refresh_widgets_state
void refresh_widgets_state()
Definition: KeygenDialog.cpp:282
+
GpgFrontend::UI::KeyGenDialog::slot_expire_box_changed
void slot_expire_box_changed()
Definition: KeygenDialog.cpp:200
+
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:189
-
GpgFrontend::UI::KeyGenDialog::slot_authentication_box_changed
void slot_authentication_box_changed(int state)
Definition: KeygenDialog.cpp:246
-
GpgFrontend::UI::KeyGenDialog::set_signal_slot
void set_signal_slot()
Set the signal slot object.
Definition: KeygenDialog.cpp:317
+
GpgFrontend::UI::KeyGenDialog::create_key_usage_group_box
QGroupBox * create_key_usage_group_box()
Create a key usage group box object.
Definition: KeygenDialog.cpp:208
+
GpgFrontend::UI::KeyGenDialog::slot_authentication_box_changed
void slot_authentication_box_changed(int state)
Definition: KeygenDialog.cpp:265
+
GpgFrontend::UI::KeyGenDialog::set_signal_slot
void set_signal_slot()
Set the signal slot object.
Definition: KeygenDialog.cpp:334
GpgFrontend::UI::KeyGenDialog::button_box_
QDialogButtonBox * button_box_
Box for standard buttons.
Definition: KeygenDialog.h:91
-
GpgFrontend::UI::KeyGenDialog::key_size_spin_box_
QSpinBox * key_size_spin_box_
Spinbox for the keys size (in bit)
Definition: KeygenDialog.h:96
-
GpgFrontend::UI::KeyGenDialog::key_usage_check_boxes_
std::vector< QCheckBox * > key_usage_check_boxes_
ENCR, SIGN, CERT, AUTH.
Definition: KeygenDialog.h:104
-
GpgFrontend::UI::KeyGenDialog::slot_activated_key_type
void slot_activated_key_type(int index)
Definition: KeygenDialog.cpp:254
-
GpgFrontend::UI::KeyGenDialog::slot_encryption_box_changed
void slot_encryption_box_changed(int state)
Definition: KeygenDialog.cpp:222
-
GpgFrontend::UI::KeyGenDialog::check_email_address
bool check_email_address(const QString &str)
Definition: KeygenDialog.cpp:348
-
GpgFrontend::UI::KeyGenDialog::slot_key_gen_accept
void slot_key_gen_accept()
Definition: KeygenDialog.cpp:90
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
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:273
+
GpgFrontend::UI::KeyGenDialog::slot_encryption_box_changed
void slot_encryption_box_changed(int state)
Definition: KeygenDialog.cpp:241
+
GpgFrontend::UI::KeyGenDialog::check_email_address
bool check_email_address(const QString &str)
Definition: KeygenDialog.cpp:362
+
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/ListedKeyServerTestTask_8h_source.html b/docs/html/ListedKeyServerTestTask_8h_source.html index a7c6afe8..94d7ad5d 100644 --- a/docs/html/ListedKeyServerTestTask_8h_source.html +++ b/docs/html/ListedKeyServerTestTask_8h_source.html @@ -133,7 +133,7 @@ $(document).ready(function(){initNavTree('ListedKeyServerTestTask_8h_source.html
GpgFrontend::UI::ListedKeyServerTestTask::ListedKeyServerTestTask
ListedKeyServerTestTask(const QStringList &urls, int timeout, QWidget *parent=nullptr)
Definition: ListedKeyServerTestTask.cpp:31
GpgFrontend::UI::ListedKeyServerTestTask::slot_process_network_reply
void slot_process_network_reply(int index, QNetworkReply *reply)
Definition: ListedKeyServerTestTask.cpp:73
TestListedKeyServerThread
Definition: ListedKeyServerTestTask.h:83
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/MainWindow_8h_source.html b/docs/html/MainWindow_8h_source.html index e6845361..0eb969f3 100644 --- a/docs/html/MainWindow_8h_source.html +++ b/docs/html/MainWindow_8h_source.html @@ -318,11 +318,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:369
GpgFrontend::UI::MainWindow::slot_show_key_details
void slot_show_key_details()
Definition: MainWindowSlotFunction.cpp:632
-
GpgFrontend::UI::MainWindow::create_dock_windows
void create_dock_windows()
Definition: MainWindowUI.cpp:504
+
GpgFrontend::UI::MainWindow::create_dock_windows
void create_dock_windows()
Definition: MainWindowUI.cpp:537
GpgFrontend::UI::MainWindow::SlotOpenFile
void SlotOpenFile(QString &path)
Definition: MainWindowSlotFunction.cpp:660
GpgFrontend::UI::MainWindow::Init
void Init() noexcept
Definition: MainWindow.cpp:45
GpgFrontend::UI::MainWindow::close_tab_act_
QAction * close_tab_act_
Action to print.
Definition: MainWindow.h:361
-
GpgFrontend::UI::MainWindow::SlotFileDecrypt
void SlotFileDecrypt()
Definition: MainWindowFileSlotFunction.cpp:291
+
GpgFrontend::UI::MainWindow::SlotFileDecrypt
void SlotFileDecrypt()
Definition: MainWindowFileSlotFunction.cpp:292
GpgFrontend::UI::MainWindow::create_actions
void create_actions()
Definition: MainWindowUI.cpp:35
GpgFrontend::UI::MainWindow::clean_double_line_breaks_act_
QAction * clean_double_line_breaks_act_
Definition: MainWindow.h:370
GpgFrontend::UI::MainWindow::sign_act_
QAction * sign_act_
Action to sign text.
Definition: MainWindow.h:367
@@ -330,32 +330,32 @@ $(document).ready(function(){initNavTree('MainWindow_8h_source.html',''); initRe
GpgFrontend::UI::MainWindow::verify_act_
QAction * verify_act_
Action to verify text.
Definition: MainWindow.h:368
GpgFrontend::UI::MainWindow::key_menu_
QMenu * key_menu_
Submenu for key-operations.
Definition: MainWindow.h:333
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:273
-
GpgFrontend::UI::MainWindow::create_status_bar
void create_status_bar()
Definition: MainWindowUI.cpp:488
+
GpgFrontend::UI::MainWindow::closeEvent
void closeEvent(QCloseEvent *event) override
Definition: MainWindow.cpp:269
+
GpgFrontend::UI::MainWindow::create_status_bar
void create_status_bar()
Definition: MainWindowUI.cpp:521
GpgFrontend::UI::MainWindow::slot_decrypt_verify
void slot_decrypt_verify()
Definition: MainWindowSlotFunction.cpp:513
GpgFrontend::UI::MainWindow::file_tool_bar_
QToolBar * file_tool_bar_
Toolbar holding file actions.
Definition: MainWindow.h:342
GpgFrontend::UI::MainWindow::crypt_menu_
QMenu * crypt_menu_
Submenu for crypt-operations.
Definition: MainWindow.h:330
-
GpgFrontend::UI::MainWindow::restore_settings
void restore_settings()
Definition: MainWindow.cpp:165
+
GpgFrontend::UI::MainWindow::restore_settings
void restore_settings()
Definition: MainWindow.cpp:164
GpgFrontend::UI::MainWindow::save_as_act_
QAction * save_as_act_
Action to save file as.
Definition: MainWindow.h:359
GpgFrontend::UI::MainWindow::encrypt_sign_act_
QAction * encrypt_sign_act_
Action to encrypt and sign text.
Definition: MainWindow.h:364
GpgFrontend::UI::MainWindow::slot_disable_tab_actions
void slot_disable_tab_actions(int number)
Definition: MainWindowSlotUI.cpp:61
-
GpgFrontend::UI::MainWindow::SlotFileEncryptSign
void SlotFileEncryptSign()
Definition: MainWindowFileSlotFunction.cpp:551
-
GpgFrontend::UI::MainWindow::SlotSetRestartNeeded
void SlotSetRestartNeeded(int)
Definition: MainWindowSlotUI.cpp:186
+
GpgFrontend::UI::MainWindow::SlotFileEncryptSign
void SlotFileEncryptSign()
Definition: MainWindowFileSlotFunction.cpp:553
+
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:331
GpgFrontend::UI::MainWindow::cut_act_
QAction * cut_act_
Action to cut text.
Definition: MainWindow.h:384
-
GpgFrontend::UI::MainWindow::slot_encrypt_sign
void slot_encrypt_sign()
Definition: MainWindowSlotFunction.cpp:390
+
GpgFrontend::UI::MainWindow::slot_encrypt_sign
void slot_encrypt_sign()
Definition: MainWindowSlotFunction.cpp:391
GpgFrontend::UI::MainWindow::cut_pgp_header_act_
QAction * cut_pgp_header_act_
Action for cutting the PGP header.
Definition: MainWindow.h:399
GpgFrontend::UI::MainWindow::key_tool_bar_
QToolBar * key_tool_bar_
Toolbar holding key operations.
Definition: MainWindow.h:346
GpgFrontend::UI::MainWindow::browser_act_
QAction * browser_act_
Action to open file browser.
Definition: MainWindow.h:357
GpgFrontend::UI::MainWindow::zoom_in_act_
QAction * zoom_in_act_
Action to zoom in.
Definition: MainWindow.h:390
-
GpgFrontend::UI::MainWindow::slot_sign
void slot_sign()
Definition: MainWindowSlotFunction.cpp:169
+
GpgFrontend::UI::MainWindow::slot_sign
void slot_sign()
Definition: MainWindowSlotFunction.cpp:170
GpgFrontend::UI::MainWindow::new_tab_act_
QAction * new_tab_act_
Action to create new tab.
Definition: MainWindow.h:353
-
GpgFrontend::UI::MainWindow::close_attachment_dock
void close_attachment_dock()
Definition: MainWindow.cpp:264
+
GpgFrontend::UI::MainWindow::close_attachment_dock
void close_attachment_dock()
Definition: MainWindow.cpp:260
GpgFrontend::UI::MainWindow::slot_version_upgrade
void slot_version_upgrade(const SoftwareVersion &version)
Definition: MainWindowSlotFunction.cpp:662
GpgFrontend::UI::MainWindow::open_act_
QAction * open_act_
Action to open file.
Definition: MainWindow.h:356
GpgFrontend::UI::MainWindow::slot_import_key_from_edit
void slot_import_key_from_edit()
Definition: MainWindowSlotUI.cpp:47
-
GpgFrontend::UI::MainWindow::get_restart_needed
int get_restart_needed() const
return true, if restart is needed
Definition: MainWindowSlotUI.cpp:191
+
GpgFrontend::UI::MainWindow::get_restart_needed
int get_restart_needed() const
return true, if restart is needed
Definition: MainWindowSlotUI.cpp:189
GpgFrontend::UI::MainWindow::find_act_
QAction * find_act_
Action to find text.
Definition: MainWindow.h:387
GpgFrontend::UI::MainWindow::paste_act_
QAction * paste_act_
Action to paste text.
Definition: MainWindow.h:385
GpgFrontend::UI::MainWindow::check_update_act_
QAction * check_update_act_
Action to open about dialog.
Definition: MainWindow.h:393
@@ -365,34 +365,34 @@ $(document).ready(function(){initNavTree('MainWindow_8h_source.html',''); initRe
GpgFrontend::UI::MainWindow::copy_act_
QAction * copy_act_
Action to copy text.
Definition: MainWindow.h:382
GpgFrontend::UI::MainWindow::slot_append_selected_keys
void slot_append_selected_keys()
Definition: MainWindowSlotFunction.cpp:606
GpgFrontend::UI::MainWindow::gnupg_act_
QAction * gnupg_act_
Action to open about dialog.
Definition: MainWindow.h:395
-
GpgFrontend::UI::MainWindow::save_settings
void save_settings()
Definition: MainWindow.cpp:239
+
GpgFrontend::UI::MainWindow::save_settings
void save_settings()
Definition: MainWindow.cpp:235
GpgFrontend::UI::MainWindow::edit_
TextEdit * edit_
Tabwidget holding the edit-windows.
Definition: MainWindow.h:327
-
GpgFrontend::UI::MainWindow::slot_cut_pgp_header
void slot_cut_pgp_header()
Definition: MainWindowSlotUI.cpp:162
-
GpgFrontend::UI::MainWindow::slot_add_pgp_header
void slot_add_pgp_header()
Definition: MainWindowSlotUI.cpp:148
+
GpgFrontend::UI::MainWindow::slot_cut_pgp_header
void slot_cut_pgp_header()
Definition: MainWindowSlotUI.cpp:160
+
GpgFrontend::UI::MainWindow::slot_add_pgp_header
void slot_add_pgp_header()
Definition: MainWindowSlotUI.cpp:146
GpgFrontend::UI::MainWindow::import_button_
QToolButton * import_button_
Tool button for import dropdown menu in toolbar.
Definition: MainWindow.h:348
-
GpgFrontend::UI::MainWindow::SetCryptoMenuStatus
void SetCryptoMenuStatus(CryptoMenu::OperationType type)
Definition: MainWindowSlotUI.cpp:193
+
GpgFrontend::UI::MainWindow::SetCryptoMenuStatus
void SetCryptoMenuStatus(CryptoMenu::OperationType type)
Definition: MainWindowSlotUI.cpp:191
GpgFrontend::UI::MainWindow::slot_open_settings_dialog
void slot_open_settings_dialog()
Definition: MainWindowSlotUI.cpp:103
GpgFrontend::UI::MainWindow::switch_tab_down_act_
QAction * switch_tab_down_act_
Action to switch tab down.
Definition: MainWindow.h:355
GpgFrontend::UI::MainWindow::help_menu_
QMenu * help_menu_
Submenu for help-operations.
Definition: MainWindow.h:332
-
GpgFrontend::UI::MainWindow::SlotFileSign
void SlotFileSign()
Definition: MainWindowFileSlotFunction.cpp:364
+
GpgFrontend::UI::MainWindow::SlotFileSign
void SlotFileSign()
Definition: MainWindowFileSlotFunction.cpp:365
GpgFrontend::UI::MainWindow::switch_tab_up_act_
QAction * switch_tab_up_act_
Action to switch tab up.
Definition: MainWindow.h:354
GpgFrontend::UI::MainWindow::import_key_menu_
QMenu * import_key_menu_
Submenu for import operations.
Definition: MainWindow.h:335
GpgFrontend::UI::MainWindow::print_act_
QAction * print_act_
Action to print.
Definition: MainWindow.h:360
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:400
-
GpgFrontend::UI::MainWindow::SlotFileVerify
void SlotFileVerify()
Definition: MainWindowFileSlotFunction.cpp:459
+
GpgFrontend::UI::MainWindow::SlotFileVerify
void SlotFileVerify()
Definition: MainWindowFileSlotFunction.cpp:460
GpgFrontend::UI::MainWindow::about_act_
QAction * about_act_
Action to open about dialog.
Definition: MainWindow.h:392
-
GpgFrontend::UI::MainWindow::SlotFileEncrypt
void SlotFileEncrypt()
Definition: MainWindowFileSlotFunction.cpp:154
-
GpgFrontend::UI::MainWindow::create_menus
void create_menus()
Definition: MainWindowUI.cpp:367
+
GpgFrontend::UI::MainWindow::SlotFileEncrypt
void SlotFileEncrypt()
Definition: MainWindowFileSlotFunction.cpp:155
+
GpgFrontend::UI::MainWindow::create_menus
void create_menus()
Definition: MainWindowUI.cpp:400
GpgFrontend::UI::MainWindow::undo_act_
QAction * undo_act_
Action to undo last action.
Definition: MainWindow.h:388
GpgFrontend::UI::MainWindow::decrypt_act_
QAction * decrypt_act_
Action to decrypt text.
Definition: MainWindow.h:366
-
GpgFrontend::UI::MainWindow::slot_verify
void slot_verify()
Definition: MainWindowSlotFunction.cpp:323
-
GpgFrontend::UI::MainWindow::create_tool_bars
void create_tool_bars()
Definition: MainWindowUI.cpp:439
+
GpgFrontend::UI::MainWindow::slot_verify
void slot_verify()
Definition: MainWindowSlotFunction.cpp:324
+
GpgFrontend::UI::MainWindow::create_tool_bars
void create_tool_bars()
Definition: MainWindowUI.cpp:472
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:341
GpgFrontend::UI::MainWindow::start_wizard_act_
QAction * start_wizard_act_
Action to open the wizard.
Definition: MainWindow.h:398
GpgFrontend::UI::MainWindow::save_act_
QAction * save_act_
Action to save file.
Definition: MainWindow.h:358
-
GpgFrontend::UI::MainWindow::SlotFileDecryptVerify
void SlotFileDecryptVerify()
Definition: MainWindowFileSlotFunction.cpp:682
+
GpgFrontend::UI::MainWindow::SlotFileDecryptVerify
void SlotFileDecryptVerify()
Definition: MainWindowFileSlotFunction.cpp:684
GpgFrontend::UI::MainWindow::edit_tool_bar_
QToolBar * edit_tool_bar_
Toolbar holding edit actions.
Definition: MainWindow.h:343
GpgFrontend::UI::MainWindow::append_selected_keys_act_
QAction * append_selected_keys_act_
Action to append selected keys to edit.
Definition: MainWindow.h:378
GpgFrontend::UI::MainWindow::quit_act_
QAction * quit_act_
Action to quit application.
Definition: MainWindow.h:362
@@ -405,10 +405,10 @@ $(document).ready(function(){initNavTree('MainWindow_8h_source.html',''); initRe
GpgFrontend::UI::MainWindow::key_list_dock_
QDockWidget * key_list_dock_
Encrypt Dock.
Definition: MainWindow.h:349
GpgFrontend::UI::MainWindow::translate_act_
QAction * translate_act_
Action to open about dialog.
Definition: MainWindow.h:394
GpgFrontend::UI::MainWindow::refresh_keys_from_key_server
void refresh_keys_from_key_server()
Definition: MainWindowSlotFunction.cpp:644
-
GpgFrontend::UI::MainWindow::slot_encrypt
void slot_encrypt()
Definition: MainWindowSlotFunction.cpp:47
+
GpgFrontend::UI::MainWindow::slot_encrypt
void slot_encrypt()
Definition: MainWindowSlotFunction.cpp:48
GpgFrontend::UI::MainWindow::slot_find
void slot_find()
Definition: MainWindowSlotFunction.cpp:591
-
GpgFrontend::UI::MainWindow::slot_decrypt
void slot_decrypt()
Definition: MainWindowSlotFunction.cpp:255
-
GpgFrontend::UI::MainWindow::slot_clean_double_line_breaks
void slot_clean_double_line_breaks()
Definition: MainWindowSlotUI.cpp:138
+
GpgFrontend::UI::MainWindow::slot_decrypt
void slot_decrypt()
Definition: MainWindowSlotFunction.cpp:256
+
GpgFrontend::UI::MainWindow::slot_clean_double_line_breaks
void slot_clean_double_line_breaks()
Definition: MainWindowSlotUI.cpp:136
GpgFrontend::UI::MainWindow::file_menu_
QMenu * file_menu_
Submenu for file-operations.
Definition: MainWindow.h:328
GpgFrontend::UI::MainWindow::special_edit_tool_bar_
QToolBar * special_edit_tool_bar_
Toolbar holding special edit actions.
Definition: MainWindow.h:345
GpgFrontend::UI::MainWindow::steganography_menu_
QMenu * steganography_menu_
Submenu for steganography operations.
Definition: MainWindow.h:340
@@ -418,7 +418,7 @@ $(document).ready(function(){initNavTree('MainWindow_8h_source.html',''); initRe
GpgFrontend::UI::MainWindow::open_settings_act_
QAction * open_settings_act_
Action to open settings dialog.
Definition: MainWindow.h:396
GpgFrontend::UI::MainWindow::attachment_dock_
QDockWidget * attachment_dock_
Attachment Dock.
Definition: MainWindow.h:350
GpgFrontend::UI::TextEdit
TextEdit class.
Definition: TextEdit.h:41
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
GpgFrontend::UI::MainWindow::CryptoMenu
Definition: MainWindow.h:60
GpgFrontend::UI::SoftwareVersion
Definition: SoftwareVersion.h:39
diff --git a/docs/html/PassphraseGenerator_8h_source.html b/docs/html/PassphraseGenerator_8h_source.html index d2908577..21fdc673 100644 --- a/docs/html/PassphraseGenerator_8h_source.html +++ b/docs/html/PassphraseGenerator_8h_source.html @@ -132,7 +132,7 @@ $(document).ready(function(){initNavTree('PassphraseGenerator_8h_source.html',''
GpgFrontend::PassphraseGenerator::PassphraseGenerator
PassphraseGenerator(int channel=SingletonFunctionObject::GetDefaultChannel())
PassphraseGenerator constructor.
Definition: PassphraseGenerator.h:50
GpgFrontend::SingletonFunctionObject
Definition: GpgFunctionObject.h:148
GpgFrontend::SingletonFunctionObject::GetDefaultChannel
static int GetDefaultChannel()
Get the Default Channel object.
Definition: GpgFunctionObject.h:232
-
GpgFrontend
Definition: CoreCommonUtil.cpp:29
+
GpgFrontend
Definition: CoreCommonUtil.cpp:31
diff --git a/docs/html/PlainTextEditorPage_8h_source.html b/docs/html/PlainTextEditorPage_8h_source.html index 124cb773..b1e97b13 100644 --- a/docs/html/PlainTextEditorPage_8h_source.html +++ b/docs/html/PlainTextEditorPage_8h_source.html @@ -154,8 +154,8 @@ $(document).ready(function(){initNavTree('PlainTextEditorPage_8h_source.html',''
165 
166 #endif // __EDITORPAGE_H__
GpgFrontend::UI::PlainTextEditorPage
Class for handling a single tab of the tabwidget.
Definition: PlainTextEditorPage.h:45
-
GpgFrontend::UI::PlainTextEditorPage::detect_encoding
void detect_encoding(const std::string &data)
Definition: PlainTextEditorPage.cpp:266
-
GpgFrontend::UI::PlainTextEditorPage::slot_insert_text
void slot_insert_text(QByteArray bytes_data)
Definition: PlainTextEditorPage.cpp:213
+
GpgFrontend::UI::PlainTextEditorPage::detect_encoding
void detect_encoding(const std::string &data)
Definition: PlainTextEditorPage.cpp:263
+
GpgFrontend::UI::PlainTextEditorPage::slot_insert_text
void slot_insert_text(QByteArray bytes_data)
Definition: PlainTextEditorPage.cpp:211
GpgFrontend::UI::PlainTextEditorPage::WillCharsetChange
bool WillCharsetChange() const
detect if the charset of the file will change
Definition: PlainTextEditorPage.cpp:90
GpgFrontend::UI::PlainTextEditorPage::NotifyFileSaved
void NotifyFileSaved()
notify the user that the file has been saved.
Definition: PlainTextEditorPage.cpp:101
GpgFrontend::UI::PlainTextEditorPage::slot_format_gpg_header
void slot_format_gpg_header()
Definition: PlainTextEditorPage.cpp:129
@@ -166,11 +166,11 @@ $(document).ready(function(){initNavTree('PlainTextEditorPage_8h_source.html',''
GpgFrontend::UI::PlainTextEditorPage::ReadDone
bool ReadDone() const
Definition: PlainTextEditorPage.h:101
GpgFrontend::UI::PlainTextEditorPage::full_file_path_
QString full_file_path_
The path to the file handled in the tab.
Definition: PlainTextEditorPage.h:125
GpgFrontend::UI::PlainTextEditorPage::CloseNoteByClass
void CloseNoteByClass(const char *className)
Definition: PlainTextEditorPage.cpp:120
-
GpgFrontend::UI::PlainTextEditorPage::detect_cr_lf
void detect_cr_lf(const std::string &data)
Definition: PlainTextEditorPage.cpp:290
+
GpgFrontend::UI::PlainTextEditorPage::detect_cr_lf
void detect_cr_lf(const std::string &data)
Definition: PlainTextEditorPage.cpp:287
GpgFrontend::UI::PlainTextEditorPage::ShowNotificationWidget
void ShowNotificationWidget(QWidget *widget, const char *className)
Definition: PlainTextEditorPage.cpp:114
GpgFrontend::UI::PlainTextEditorPage::SignalUIBytesDisplayed
void SignalUIBytesDisplayed()
this signal is emitted when the bytes has been append in texteditor.
GpgFrontend::UI::PlainTextEditorPage::GetFilePath
const QString & GetFilePath() const
Definition: PlainTextEditorPage.cpp:84
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/ProxyConnectionTestThread_8h_source.html b/docs/html/ProxyConnectionTestThread_8h_source.html index 70aed8c7..e5fbe7c2 100644 --- a/docs/html/ProxyConnectionTestThread_8h_source.html +++ b/docs/html/ProxyConnectionTestThread_8h_source.html @@ -125,7 +125,7 @@ $(document).ready(function(){initNavTree('ProxyConnectionTestThread_8h_source.ht
GpgFrontend::UI::ProxyConnectionTestThread::ProxyConnectionTestThread
ProxyConnectionTestThread(QString url, int timeout, QWidget *parent=nullptr)
Construct a new Proxy Connection Test Thread object.
Definition: ProxyConnectionTestThread.h:52
GpgFrontend::UI::ProxyConnectionTestThread::SignalProxyConnectionTestResult
void SignalProxyConnectionTestResult(const QString &result)
ProxyConnectionTestThread
Definition: ProxyConnectionTestThread.h:30
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/QuitDialog_8h_source.html b/docs/html/QuitDialog_8h_source.html index a3f361b4..3d7c91ea 100644 --- a/docs/html/QuitDialog_8h_source.html +++ b/docs/html/QuitDialog_8h_source.html @@ -122,7 +122,7 @@ $(document).ready(function(){initNavTree('QuitDialog_8h_source.html',''); initRe
GpgFrontend::UI::QuitDialog::IsDiscarded
bool IsDiscarded() const
Definition: QuitDialog.cpp:133
GpgFrontend::UI::QuitDialog::QuitDialog
QuitDialog(QWidget *parent, const QHash< int, QString > &unsavedDocs)
Construct a new Quit Dialog object.
Definition: QuitDialog.cpp:35
GpgFrontend::UI::QuitDialog::GetTabIdsToSave
QList< int > GetTabIdsToSave()
Get the Tab Ids To Save object.
Definition: QuitDialog.cpp:135
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/SettingsAdvanced_8h_source.html b/docs/html/SettingsAdvanced_8h_source.html index 5f2fb16a..b21a0591 100644 --- a/docs/html/SettingsAdvanced_8h_source.html +++ b/docs/html/SettingsAdvanced_8h_source.html @@ -115,7 +115,7 @@ $(document).ready(function(){initNavTree('SettingsAdvanced_8h_source.html','');
54 
55 #endif // GPGFRONTEND_SETTINGSADVANCED_H
GpgFrontend::UI::AdvancedTab
Definition: SettingsAdvanced.h:35
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/SettingsAppearance_8h_source.html b/docs/html/SettingsAppearance_8h_source.html index 3ebfc8a1..0188d797 100644 --- a/docs/html/SettingsAppearance_8h_source.html +++ b/docs/html/SettingsAppearance_8h_source.html @@ -124,7 +124,7 @@ $(document).ready(function(){initNavTree('SettingsAppearance_8h_source.html','')
GpgFrontend::UI::AppearanceTab::SetSettings
void SetSettings()
Set the Settings object.
Definition: SettingsAppearance.cpp:75
GpgFrontend::UI::AppearanceTab::AppearanceTab
AppearanceTab(QWidget *parent=nullptr)
Construct a new Appearance Tab object.
Definition: SettingsAppearance.cpp:37
GpgFrontend::UI::AppearanceTab::signalRestartNeeded
void signalRestartNeeded(bool needed)
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/SettingsDialog_8h_source.html b/docs/html/SettingsDialog_8h_source.html index efbd0226..ee7eeeca 100644 --- a/docs/html/SettingsDialog_8h_source.html +++ b/docs/html/SettingsDialog_8h_source.html @@ -146,9 +146,9 @@ $(document).ready(function(){initNavTree('SettingsDialog_8h_source.html',''); in
GpgFrontend::UI::SettingsDialog::get_restart_needed
int get_restart_needed() const
Get the Restart Needed object.
Definition: SettingsDialog.cpp:104
GpgFrontend::UI::SettingsDialog::SettingsDialog
SettingsDialog(QWidget *parent=nullptr)
Construct a new Settings Dialog object.
Definition: SettingsDialog.cpp:42
GpgFrontend::UI::SettingsDialog::slot_set_restart_needed
void slot_set_restart_needed(int)
Definition: SettingsDialog.cpp:106
-
GpgFrontend::UI::SettingsDialog::ListLanguages
static QHash< QString, QString > ListLanguages()
Definition: SettingsDialog.cpp:130
+
GpgFrontend::UI::SettingsDialog::ListLanguages
static QHash< QString, QString > ListLanguages()
Definition: SettingsDialog.cpp:128
GpgFrontend::UI::SettingsDialog::SignalRestartNeeded
void SignalRestartNeeded(int)
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/SettingsGeneral_8h_source.html b/docs/html/SettingsGeneral_8h_source.html index c415c25a..3bd3741c 100644 --- a/docs/html/SettingsGeneral_8h_source.html +++ b/docs/html/SettingsGeneral_8h_source.html @@ -131,20 +131,22 @@ $(document).ready(function(){initNavTree('SettingsGeneral_8h_source.html',''); i
101 
106  void slot_update_custom_key_database_path_label(int state);
107 
-
112  void slot_key_databse_path_changed();
+
112  void slot_update_custom_gnupg_install_path_label(int state);
113 
-
114 #endif
-
115 };
-
116 } // namespace GpgFrontend::UI
-
117 
-
118 #endif // GPGFRONTEND_SETTINGSGENERAL_H
+
118  void slot_gnupg_stettings_changed();
+
119 
+
120 #endif
+
121 };
+
122 } // namespace GpgFrontend::UI
+
123 
+
124 #endif // GPGFRONTEND_SETTINGSGENERAL_H
GpgFrontend::UI::GeneralTab
Definition: SettingsGeneral.h:43
GpgFrontend::UI::GeneralTab::GeneralTab
GeneralTab(QWidget *parent=nullptr)
Construct a new General Tab object.
Definition: SettingsGeneral.cpp:42
-
GpgFrontend::UI::GeneralTab::SetSettings
void SetSettings()
Set the Settings object.
Definition: SettingsGeneral.cpp:135
+
GpgFrontend::UI::GeneralTab::SetSettings
void SetSettings()
Set the Settings object.
Definition: SettingsGeneral.cpp:178
GpgFrontend::UI::GeneralTab::SignalRestartNeeded
void SignalRestartNeeded(bool needed)
GpgFrontend::UI::GeneralTab::SignalDeepRestartNeeded
void SignalDeepRestartNeeded(bool needed)
GpgFrontend::UI::KeyList
Definition: KeyList.h:152
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/SettingsKeyServer_8h_source.html b/docs/html/SettingsKeyServer_8h_source.html index 7750b6e5..0b8aa9be 100644 --- a/docs/html/SettingsKeyServer_8h_source.html +++ b/docs/html/SettingsKeyServer_8h_source.html @@ -136,7 +136,7 @@ $(document).ready(function(){initNavTree('SettingsKeyServer_8h_source.html','');
GpgFrontend::UI::KeyserverTab::SignalRestartNeeded
void SignalRestartNeeded(bool needed)
GpgFrontend::UI::KeyserverTab::contextMenuEvent
void contextMenuEvent(QContextMenuEvent *event) override
Definition: SettingsKeyServer.cpp:289
GpgFrontend::UI::KeyserverTab::KeyserverTab
KeyserverTab(QWidget *parent=nullptr)
Construct a new Keyserver Tab object.
Definition: SettingsKeyServer.cpp:40
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/SettingsNetwork_8h_source.html b/docs/html/SettingsNetwork_8h_source.html index bcb16794..908cb99f 100644 --- a/docs/html/SettingsNetwork_8h_source.html +++ b/docs/html/SettingsNetwork_8h_source.html @@ -123,11 +123,11 @@ $(document).ready(function(){initNavTree('SettingsNetwork_8h_source.html',''); i
93 
94 #endif // GPGFRONTEND_SETTINGSNETWORK_H
GpgFrontend::UI::NetworkTab
Definition: SettingsNetwork.h:37
-
GpgFrontend::UI::NetworkTab::switch_ui_proxy_type
void switch_ui_proxy_type(const QString &type_text)
Definition: SettingsNetwork.cpp:317
+
GpgFrontend::UI::NetworkTab::switch_ui_proxy_type
void switch_ui_proxy_type(const QString &type_text)
Definition: SettingsNetwork.cpp:313
GpgFrontend::UI::NetworkTab::NetworkTab
NetworkTab(QWidget *parent=nullptr)
Construct a new Network Tab object.
Definition: SettingsNetwork.cpp:35
GpgFrontend::UI::NetworkTab::SetSettings
void SetSettings()
Set the Settings object.
Definition: SettingsNetwork.cpp:72
-
GpgFrontend::UI::NetworkTab::switch_ui_enabled
void switch_ui_enabled(bool enabled)
Definition: SettingsNetwork.cpp:307
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI::NetworkTab::switch_ui_enabled
void switch_ui_enabled(bool enabled)
Definition: SettingsNetwork.cpp:303
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/SettingsObject_8h_source.html b/docs/html/SettingsObject_8h_source.html index 89fcb4b6..296ff703 100644 --- a/docs/html/SettingsObject_8h_source.html +++ b/docs/html/SettingsObject_8h_source.html @@ -119,7 +119,7 @@ $(document).ready(function(){initNavTree('SettingsObject_8h_source.html',''); in
GpgFrontend::UI::SettingsObject::Check
nlohmann::json & Check(const std::string &key, const nlohmann::json &default_value)
Definition: SettingsObject.cpp:31
GpgFrontend::UI::SettingsObject::SettingsObject
SettingsObject(std::string settings_name)
Construct a new Settings Object object.
Definition: SettingsObject.cpp:76
GpgFrontend::UI::SettingsObject::~SettingsObject
~SettingsObject()
Destroy the Settings Object object.
Definition: SettingsObject.cpp:100
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/SignalStation_8h_source.html b/docs/html/SignalStation_8h_source.html index 1d8b5c28..bfd0d528 100644 --- a/docs/html/SignalStation_8h_source.html +++ b/docs/html/SignalStation_8h_source.html @@ -111,16 +111,20 @@ $(document).ready(function(){initNavTree('SignalStation_8h_source.html',''); ini
73  InfoBoardStatus verify_label_status);
74 
81  void SignalRefreshStatusBar(const QString& message, int timeout);
-
82 };
-
83 
-
84 } // namespace GpgFrontend::UI
-
85 
-
86 #endif // GPGFRONTEND_SIGNALSTATION_H
+
82 
+
87  void SignalUserInputPassphraseDone(QString passparase);
+
88 
+
93  void SignalNeedUserInputPassphrase();
+
94 };
+
95 
+
96 } // namespace GpgFrontend::UI
+
97 
+
98 #endif // GPGFRONTEND_SIGNALSTATION_H
GpgFrontend::UI::SignalStation
Definition: SignalStation.h:41
GpgFrontend::UI::SignalStation::SignalRefreshStatusBar
void SignalRefreshStatusBar(const QString &message, int timeout)
GpgFrontend::UI::SignalStation::SignalRefreshInfoBoard
void SignalRefreshInfoBoard(const QString &text, InfoBoardStatus verify_label_status)
GpgFrontend::UI::SignalStation::GetInstance
static SignalStation * GetInstance()
Get the Instance object.
Definition: SignalStation.cpp:37
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
GpgFrontend::UI::InfoBoardStatus
InfoBoardStatus
Definition: InfoBoardWidget.h:43
diff --git a/docs/html/SignersPicker_8h_source.html b/docs/html/SignersPicker_8h_source.html index 87003143..a5111d7c 100644 --- a/docs/html/SignersPicker_8h_source.html +++ b/docs/html/SignersPicker_8h_source.html @@ -147,7 +147,7 @@ $(document).ready(function(){initNavTree('SignersPicker_8h_source.html',''); ini
GpgFrontend::UI::SignersPicker::SignersPicker
SignersPicker(QWidget *parent=nullptr)
Construct a new Signers Picker object.
Definition: SignersPicker.cpp:34
GpgFrontend::UI::SignersPicker::GetCheckedSigners
GpgFrontend::KeyIdArgsListPtr GetCheckedSigners()
Get the Checked Signers object.
Definition: SignersPicker.cpp:77
GpgFrontend::UI::SignersPicker::GetStatus
bool GetStatus() const
Definition: SignersPicker.cpp:81
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/SoftwareVersion_8h_source.html b/docs/html/SoftwareVersion_8h_source.html index 353f3c2e..e56cf8de 100644 --- a/docs/html/SoftwareVersion_8h_source.html +++ b/docs/html/SoftwareVersion_8h_source.html @@ -114,17 +114,16 @@ $(document).ready(function(){initNavTree('SoftwareVersion_8h_source.html',''); i
81  [[nodiscard]] bool CurrentVersionReleased() const;
82 
83  private:
-
84 
-
85  static int version_compare(const std::string& a, const std::string& b);
-
86 };
-
87 } // namespace GpgFrontend::UI
-
88 
-
89 #endif // GPGFRONTEND_SOFTWAREVERSION_H
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
84  static int version_compare(const std::string& a, const std::string& b);
+
85 };
+
86 } // namespace GpgFrontend::UI
+
87 
+
88 #endif // GPGFRONTEND_SOFTWAREVERSION_H
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
GpgFrontend::UI::SoftwareVersion
Definition: SoftwareVersion.h:39
-
GpgFrontend::UI::SoftwareVersion::CurrentVersionReleased
bool CurrentVersionReleased() const
Definition: SoftwareVersion.cpp:94
-
GpgFrontend::UI::SoftwareVersion::VersionWithDrawn
bool VersionWithDrawn() const
Definition: SoftwareVersion.cpp:89
-
GpgFrontend::UI::SoftwareVersion::NeedUpgrade
bool NeedUpgrade() const
Definition: SoftwareVersion.cpp:84
+
GpgFrontend::UI::SoftwareVersion::CurrentVersionReleased
bool CurrentVersionReleased() const
Definition: SoftwareVersion.cpp:99
+
GpgFrontend::UI::SoftwareVersion::VersionWithDrawn
bool VersionWithDrawn() const
Definition: SoftwareVersion.cpp:94
+
GpgFrontend::UI::SoftwareVersion::NeedUpgrade
bool NeedUpgrade() const
Definition: SoftwareVersion.cpp:83
GpgFrontend::UI::SoftwareVersion::version_compare
static int version_compare(const std::string &a, const std::string &b)
Definition: SoftwareVersion.cpp:31
GpgFrontend::UI::SoftwareVersion::InfoValid
bool InfoValid() const
Definition: SoftwareVersion.h:57
diff --git a/docs/html/SubkeyGenerateDialog_8h_source.html b/docs/html/SubkeyGenerateDialog_8h_source.html index 48959977..c8dc57ed 100644 --- a/docs/html/SubkeyGenerateDialog_8h_source.html +++ b/docs/html/SubkeyGenerateDialog_8h_source.html @@ -118,60 +118,63 @@ $(document).ready(function(){initNavTree('SubkeyGenerateDialog_8h_source.html','
69  QComboBox* key_type_combo_box_{};
70  QDateTimeEdit* date_edit_{};
71  QCheckBox* expire_check_box_{};
-
72 
-
73  std::vector<QCheckBox*> key_usage_check_boxes_;
-
74  QDateTime max_date_time_;
-
75 
-
81  QGroupBox* create_key_usage_group_box();
-
82 
-
88  QGroupBox* create_basic_info_group_box();
-
93  void set_signal_slot();
-
94 
-
98  void refresh_widgets_state();
-
99 
-
100  private slots:
+
72  QCheckBox* no_pass_phrase_check_box_{};
+
73  QLineEdit* passphrase_edit_{};
+
74 
+
75  std::vector<QCheckBox*> key_usage_check_boxes_;
+
76  QDateTime max_date_time_;
+
77 
+
83  QGroupBox* create_key_usage_group_box();
+
84 
+
90  QGroupBox* create_basic_info_group_box();
+
95  void set_signal_slot();
+
96 
+
100  void refresh_widgets_state();
101 
-
106  void slot_expire_box_changed();
-
107 
-
112  void slot_key_gen_accept();
-
113 
-
119  void slot_encryption_box_changed(int state);
-
120 
-
126  void slot_signing_box_changed(int state);
-
127 
-
133  void slot_certification_box_changed(int state);
-
134 
-
140  void slot_authentication_box_changed(int state);
-
141 
-
147  void slot_activated_key_type(int index);
-
148 };
-
149 
-
150 } // namespace GpgFrontend::UI
+
102  private slots:
+
103 
+
108  void slot_expire_box_changed();
+
109 
+
114  void slot_key_gen_accept();
+
115 
+
121  void slot_encryption_box_changed(int state);
+
122 
+
128  void slot_signing_box_changed(int state);
+
129 
+
135  void slot_certification_box_changed(int state);
+
136 
+
142  void slot_authentication_box_changed(int state);
+
143 
+
149  void slot_activated_key_type(int index);
+
150 };
151 
-
152 #endif // GPGFRONTEND_SUBKEYGENERATEDIALOG_H
+
152 } // namespace GpgFrontend::UI
+
153 
+
154 #endif // GPGFRONTEND_SUBKEYGENERATEDIALOG_H
GpgFrontend::GpgKey
Definition: GpgKey.h:43
GpgFrontend::UI::GeneralDialog
Definition: GeneralDialog.h:35
GpgFrontend::UI::SubkeyGenerateDialog
Definition: SubkeyGenerateDialog.h:40
-
GpgFrontend::UI::SubkeyGenerateDialog::create_basic_info_group_box
QGroupBox * create_basic_info_group_box()
Create a basic info group box object.
Definition: SubkeyGenerateDialog.cpp:120
-
GpgFrontend::UI::SubkeyGenerateDialog::slot_authentication_box_changed
void slot_authentication_box_changed(int state)
Definition: SubkeyGenerateDialog.cpp:332
-
GpgFrontend::UI::SubkeyGenerateDialog::slot_encryption_box_changed
void slot_encryption_box_changed(int state)
Definition: SubkeyGenerateDialog.cpp:308
-
GpgFrontend::UI::SubkeyGenerateDialog::slot_expire_box_changed
void slot_expire_box_changed()
Definition: SubkeyGenerateDialog.cpp:184
-
GpgFrontend::UI::SubkeyGenerateDialog::refresh_widgets_state
void refresh_widgets_state()
Definition: SubkeyGenerateDialog.cpp:192
-
GpgFrontend::UI::SubkeyGenerateDialog::slot_activated_key_type
void slot_activated_key_type(int index)
Definition: SubkeyGenerateDialog.cpp:340
-
GpgFrontend::UI::SubkeyGenerateDialog::key_usage_check_boxes_
std::vector< QCheckBox * > key_usage_check_boxes_
ENCR, SIGN, CERT, AUTH.
Definition: SubkeyGenerateDialog.h:73
+
GpgFrontend::UI::SubkeyGenerateDialog::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:126
+
GpgFrontend::UI::SubkeyGenerateDialog::slot_authentication_box_changed
void slot_authentication_box_changed(int state)
Definition: SubkeyGenerateDialog.cpp:367
+
GpgFrontend::UI::SubkeyGenerateDialog::slot_encryption_box_changed
void slot_encryption_box_changed(int state)
Definition: SubkeyGenerateDialog.cpp:343
+
GpgFrontend::UI::SubkeyGenerateDialog::slot_expire_box_changed
void slot_expire_box_changed()
Definition: SubkeyGenerateDialog.cpp:202
+
GpgFrontend::UI::SubkeyGenerateDialog::refresh_widgets_state
void refresh_widgets_state()
Definition: SubkeyGenerateDialog.cpp:210
+
GpgFrontend::UI::SubkeyGenerateDialog::slot_activated_key_type
void slot_activated_key_type(int index)
Definition: SubkeyGenerateDialog.cpp:375
+
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:324
-
GpgFrontend::UI::SubkeyGenerateDialog::SubkeyGenerateDialog
SubkeyGenerateDialog(const KeyId &key_id, QWidget *parent)
Construct a new Subkey Generate Dialog object.
Definition: SubkeyGenerateDialog.cpp:39
-
GpgFrontend::UI::SubkeyGenerateDialog::set_signal_slot
void set_signal_slot()
Set the signal slot object.
Definition: SubkeyGenerateDialog.cpp:162
-
GpgFrontend::UI::SubkeyGenerateDialog::create_key_usage_group_box
QGroupBox * create_key_usage_group_box()
Create a key usage group box object.
Definition: SubkeyGenerateDialog.cpp:87
+
GpgFrontend::UI::SubkeyGenerateDialog::slot_certification_box_changed
void slot_certification_box_changed(int state)
Definition: SubkeyGenerateDialog.cpp:359
+
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:174
+
GpgFrontend::UI::SubkeyGenerateDialog::create_key_usage_group_box
QGroupBox * create_key_usage_group_box()
Create a key usage group box object.
Definition: SubkeyGenerateDialog.cpp:93
GpgFrontend::UI::SubkeyGenerateDialog::date_edit_
QDateTimeEdit * date_edit_
Date edit for expiration date.
Definition: SubkeyGenerateDialog.h:70
GpgFrontend::UI::SubkeyGenerateDialog::key_size_spin_box_
QSpinBox * key_size_spin_box_
Spinbox for the keys size (in bit)
Definition: SubkeyGenerateDialog.h:68
-
GpgFrontend::UI::SubkeyGenerateDialog::slot_key_gen_accept
void slot_key_gen_accept()
Definition: SubkeyGenerateDialog.cpp:241
+
GpgFrontend::UI::SubkeyGenerateDialog::slot_key_gen_accept
void slot_key_gen_accept()
Definition: SubkeyGenerateDialog.cpp:257
GpgFrontend::UI::SubkeyGenerateDialog::button_box_
QDialogButtonBox * button_box_
Box for standard buttons.
Definition: SubkeyGenerateDialog.h:66
GpgFrontend::UI::SubkeyGenerateDialog::key_type_combo_box_
QComboBox * key_type_combo_box_
Combobox for Key tpe.
Definition: SubkeyGenerateDialog.h:69
-
GpgFrontend::UI::SubkeyGenerateDialog::slot_signing_box_changed
void slot_signing_box_changed(int state)
Definition: SubkeyGenerateDialog.cpp:316
+
GpgFrontend::UI::SubkeyGenerateDialog::slot_signing_box_changed
void slot_signing_box_changed(int state)
Definition: SubkeyGenerateDialog.cpp:351
GpgFrontend::UI::SubkeyGenerateDialog::expire_check_box_
QCheckBox * expire_check_box_
Checkbox, if key should expire.
Definition: SubkeyGenerateDialog.h:71
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/TOFUInfoPage_8h_source.html b/docs/html/TOFUInfoPage_8h_source.html index 6f75f6a6..624b96b5 100644 --- a/docs/html/TOFUInfoPage_8h_source.html +++ b/docs/html/TOFUInfoPage_8h_source.html @@ -107,7 +107,7 @@ $(document).ready(function(){initNavTree('TOFUInfoPage_8h_source.html',''); init
GpgFrontend::GpgTOFUInfo
Definition: GpgTOFUInfo.h:39
GpgFrontend::UI::TOFUInfoPage
Definition: TOFUInfoPage.h:39
GpgFrontend::UI::TOFUInfoPage::TOFUInfoPage
TOFUInfoPage(const GpgTOFUInfo &tofu_info, QWidget *parent=nullptr)
Construct a new TOFUInfoPage object.
Definition: TOFUInfoPage.cpp:29
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/TaskRunnerGetter_8h_source.html b/docs/html/TaskRunnerGetter_8h_source.html index 1d82eed9..2e27e447 100644 --- a/docs/html/TaskRunnerGetter_8h_source.html +++ b/docs/html/TaskRunnerGetter_8h_source.html @@ -122,7 +122,7 @@ $(document).ready(function(){initNavTree('TaskRunnerGetter_8h_source.html','');
GpgFrontend::SingletonFunctionObject
Definition: GpgFunctionObject.h:148
GpgFrontend::SingletonFunctionObject::GetDefaultChannel
static int GetDefaultChannel()
Get the Default Channel object.
Definition: GpgFunctionObject.h:232
GpgFrontend::Thread::TaskRunnerGetter
Definition: TaskRunnerGetter.h:37
-
GpgFrontend::Thread::TaskRunner
Definition: TaskRunner.h:39
+
GpgFrontend::Thread::TaskRunner
Definition: TaskRunner.h:40
GpgFrontend::Thread
Definition: CtxCheckTask.h:33
diff --git a/docs/html/TaskRunner_8h_source.html b/docs/html/TaskRunner_8h_source.html index 79bc0338..1b930a80 100644 --- a/docs/html/TaskRunner_8h_source.html +++ b/docs/html/TaskRunner_8h_source.html @@ -90,40 +90,43 @@ $(document).ready(function(){initNavTree('TaskRunner_8h_source.html',''); initRe
27 #ifndef GPGFRONTEND_TASKRUNNER_H
28 #define GPGFRONTEND_TASKRUNNER_H
29 
-
30 #include <mutex>
-
31 #include <queue>
-
32 
-
33 #include "core/GpgFrontendCore.h"
-
34 
-
35 namespace GpgFrontend::Thread {
-
36 
-
37 class Task;
-
38 
-
39 class GPGFRONTEND_CORE_EXPORT TaskRunner : public QThread {
-
40  Q_OBJECT
-
41  public:
-
46  TaskRunner();
-
47 
-
52  virtual ~TaskRunner() override;
-
53 
-
58  [[noreturn]] void run() override;
-
59 
-
60  public slots:
-
61 
-
67  void PostTask(Task* task);
-
68 
-
69  private:
-
70  std::queue<Task*> tasks;
-
71  std::map<std::string, Task*> pending_tasks_;
-
72  std::mutex tasks_mutex_;
-
73 };
-
74 } // namespace GpgFrontend::Thread
-
75 
-
76 #endif // GPGFRONTEND_TASKRUNNER_H
-
GpgFrontend::Thread::TaskRunner
Definition: TaskRunner.h:39
-
GpgFrontend::Thread::TaskRunner::tasks_mutex_
std::mutex tasks_mutex_
The task queue mutex.
Definition: TaskRunner.h:72
-
GpgFrontend::Thread::TaskRunner::pending_tasks_
std::map< std::string, Task * > pending_tasks_
The pending tasks.
Definition: TaskRunner.h:71
-
GpgFrontend::Thread::TaskRunner::tasks
std::queue< Task * > tasks
The task queue.
Definition: TaskRunner.h:70
+
30 #include <cstddef>
+
31 #include <mutex>
+
32 #include <queue>
+
33 
+
34 #include "core/GpgFrontendCore.h"
+
35 
+
36 namespace GpgFrontend::Thread {
+
37 
+
38 class Task;
+
39 
+
40 class GPGFRONTEND_CORE_EXPORT TaskRunner : public QThread {
+
41  Q_OBJECT
+
42  public:
+
47  TaskRunner();
+
48 
+
53  virtual ~TaskRunner() override;
+
54 
+
59  [[noreturn]] void run() override;
+
60 
+
61  public slots:
+
62 
+
68  void PostTask(Task* task);
+
69 
+
76  void PostScheduleTask(Task* task, size_t seconds);
+
77 
+
78  private:
+
79  std::queue<Task*> tasks;
+
80  std::map<std::string, Task*> pending_tasks_;
+
81  std::mutex tasks_mutex_;
+
82 };
+
83 } // namespace GpgFrontend::Thread
+
84 
+
85 #endif // GPGFRONTEND_TASKRUNNER_H
+
GpgFrontend::Thread::TaskRunner
Definition: TaskRunner.h:40
+
GpgFrontend::Thread::TaskRunner::tasks_mutex_
std::mutex tasks_mutex_
The task queue mutex.
Definition: TaskRunner.h:81
+
GpgFrontend::Thread::TaskRunner::pending_tasks_
std::map< std::string, Task * > pending_tasks_
The pending tasks.
Definition: TaskRunner.h:80
+
GpgFrontend::Thread::TaskRunner::tasks
std::queue< Task * > tasks
The task queue.
Definition: TaskRunner.h:79
GpgFrontend::Thread::TaskRunner::~TaskRunner
virtual ~TaskRunner() override
Destroy the Task Runner object.
GpgFrontend::Thread::TaskRunner::TaskRunner
TaskRunner()
Construct a new Task Runner object.
GpgFrontend::Thread::Task
Definition: Task.h:45
diff --git a/docs/html/Task_8h_source.html b/docs/html/Task_8h_source.html index 52cb1242..9a7c11d7 100644 --- a/docs/html/Task_8h_source.html +++ b/docs/html/Task_8h_source.html @@ -124,7 +124,7 @@ $(document).ready(function(){initNavTree('Task_8h_source.html',''); initResizabl
72 
79  template <typename T>
80  void AppendObject(T &&obj) {
-
81  DLOG(TRACE) << "called:" << this;
+
81  SPDLOG_TRACE("append object: {}", static_cast<void *>(this));
82  auto *obj_dstr = this->get_heap_ptr(sizeof(T));
83  new ((void *)obj_dstr->p_obj) T(std::forward<T>(obj));
84 
@@ -142,11 +142,11 @@ $(document).ready(function(){initNavTree('Task_8h_source.html',''); initResizabl
96 
103  template <typename T>
104  void AppendObject(T *obj) {
-
105  DLOG(TRACE) << "called:" << this;
+
105  SPDLOG_TRACE("called: {}", static_cast<void *>(this));
106  auto *obj_dstr = this->get_heap_ptr(sizeof(T));
107  auto *ptr_heap = new ((void *)obj_dstr->p_obj) T(std::move(*obj));
108  if (std::is_class_v<T>) {
-
109  LOG(TRACE) << "is class";
+
109  SPDLOG_TRACE("is class");
110  auto destructor = [](const void *x) {
111  static_cast<const T *>(x)->~T();
112  };
@@ -159,7 +159,7 @@ $(document).ready(function(){initNavTree('Task_8h_source.html',''); initResizabl
119 
126  template <typename T>
127  T PopObject() {
-
128  DLOG(TRACE) << "called:" << this;
+
128  SPDLOG_TRACE("pop object: {}", static_cast<void *>(this));
129  if (data_objects_.empty()) throw std::runtime_error("No object to pop");
130  auto *obj_dstr = data_objects_.top();
131  auto *heap_ptr = (T *)obj_dstr->p_obj;
@@ -224,7 +224,7 @@ $(document).ready(function(){initNavTree('Task_8h_source.html',''); initResizabl
267 } // namespace GpgFrontend::Thread
268 
269 #endif // GPGFRONTEND_TASK_H
-
GpgFrontend::Thread::TaskRunner
Definition: TaskRunner.h:39
+
GpgFrontend::Thread::TaskRunner
Definition: TaskRunner.h:40
GpgFrontend::Thread::Task::DataObject
DataObject to be passed to the callback function.
Definition: Task.h:59
GpgFrontend::Thread::Task::DataObject::AppendObject
void AppendObject(T &&obj)
Definition: Task.h:80
GpgFrontend::Thread::Task::DataObject::AppendObject
void AppendObject(T *obj)
Definition: Task.h:104
diff --git a/docs/html/TextEdit_8h_source.html b/docs/html/TextEdit_8h_source.html index 1549975d..8534f40f 100644 --- a/docs/html/TextEdit_8h_source.html +++ b/docs/html/TextEdit_8h_source.html @@ -134,13 +134,13 @@ $(document).ready(function(){initNavTree('TextEdit_8h_source.html',''); initResi
145 
151  void SlotNewTab();
152 
-
156  void SlotOpenFile(QString& path);
+
156  void SlotOpenFile(const QString& path);
157 
164  void slotNewHelpTab(const QString& title, const QString& path) const;
165 
169  void SlotNewFileTab() const;
170 
-
175  void SlotShowModified() const;
+
175  void SlotShowModified(bool) const;
176 
181  void SlotCloseTab();
182 
@@ -149,80 +149,85 @@ $(document).ready(function(){initNavTree('TextEdit_8h_source.html',''); initResi
193  void SlotSwitchTabDown() const;
194 
195  private:
-
202  static QString stripped_name(const QString& full_file_name);
-
203 
-
209  bool maybe_save_current_tab(bool askToSave);
-
210 
-
211  int count_page_;
+
196  uint text_page_data_modified_count_ = 0;
+
197 
+
204  static QString stripped_name(const QString& full_file_name);
+
205 
+
211  bool maybe_save_current_tab(bool askToSave);
212 
-
213  private slots:
+
213  int count_page_;
214 
-
215  void slot_file_page_path_changed(const QString& path) const;
+
215  private slots:
216 
-
222  void slot_remove_tab(int index);
-
223 
-
224  public slots:
+
217  void slot_file_page_path_changed(const QString& path) const;
+
218 
+
224  void slot_remove_tab(int index);
225 
-
229  void SlotCut() const;
-
230 
-
234  void SlotCopy() const;
-
235 
-
239  void SlotPaste() const;
-
240 
-
245  void SlotUndo() const;
-
246 
-
251  void SlotRedo() const;
-
252 
-
257  void SlotZoomIn() const;
-
258 
-
263  void SlotZoomOut() const;
-
264 
-
269  void SlotSelectAll() const;
-
270 
-
271  protected:
-
277  bool save_file(const QString& fileName);
-
278 };
+
231  void slot_save_status_to_cache_for_revovery();
+
232 
+
233  public slots:
+
234 
+
238  void SlotCut() const;
+
239 
+
243  void SlotCopy() const;
+
244 
+
248  void SlotPaste() const;
+
249 
+
254  void SlotUndo() const;
+
255 
+
260  void SlotRedo() const;
+
261 
+
266  void SlotZoomIn() const;
+
267 
+
272  void SlotZoomOut() const;
+
273 
+
278  void SlotSelectAll() const;
279 
-
280 } // namespace GpgFrontend::UI
-
281 
-
282 #endif // __TEXTEDIT_H__
+
280  protected:
+
286  bool save_file(const QString& fileName);
+
287 };
+
288 
+
289 } // namespace GpgFrontend::UI
+
290 
+
291 #endif // __TEXTEDIT_H__
GpgFrontend::UI::FilePage
Definition: FilePage.h:43
GpgFrontend::UI::PlainTextEditorPage
Class for handling a single tab of the tabwidget.
Definition: PlainTextEditorPage.h:45
GpgFrontend::UI::TextEdit
TextEdit class.
Definition: TextEdit.h:41
-
GpgFrontend::UI::TextEdit::SlotSaveAs
bool SlotSaveAs()
Definition: TextEdit.cpp:219
-
GpgFrontend::UI::TextEdit::TabCount
int TabCount() const
Definition: TextEdit.cpp:390
-
GpgFrontend::UI::TextEdit::slot_remove_tab
void slot_remove_tab(int index)
Definition: TextEdit.cpp:243
-
GpgFrontend::UI::TextEdit::SlotOpen
void SlotOpen()
Definition: TextEdit.cpp:110
-
GpgFrontend::UI::TextEdit::SlotCopy
void SlotCopy() const
Definition: TextEdit.cpp:537
-
GpgFrontend::UI::TextEdit::slotNewHelpTab
void slotNewHelpTab(const QString &title, const QString &path) const
Definition: TextEdit.cpp:66
-
GpgFrontend::UI::TextEdit::MaybeSaveAnyTab
bool MaybeSaveAnyTab()
Definition: TextEdit.cpp:322
-
GpgFrontend::UI::TextEdit::SlotCurPageTextEdit
PlainTextEditorPage * SlotCurPageTextEdit() const
Definition: TextEdit.cpp:392
-
GpgFrontend::UI::TextEdit::SlotUndo
void SlotUndo() const
Definition: TextEdit.cpp:555
-
GpgFrontend::UI::TextEdit::SlotSwitchTabDown
void SlotSwitchTabDown() const
Definition: TextEdit.cpp:499
-
GpgFrontend::UI::TextEdit::SlotNewTab
void SlotNewTab()
Definition: TextEdit.cpp:54
-
GpgFrontend::UI::TextEdit::save_file
bool save_file(const QString &fileName)
Saves the content of currentTab to the file filename.
Definition: TextEdit.cpp:164
-
GpgFrontend::UI::TextEdit::SlotQuote
void SlotQuote() const
Definition: TextEdit.cpp:403
-
GpgFrontend::UI::TextEdit::SlotSelectAll
void SlotSelectAll() const
select all in current text page
Definition: TextEdit.cpp:591
-
GpgFrontend::UI::TextEdit::SlotOpenFile
void SlotOpenFile(QString &path)
Definition: TextEdit.cpp:82
-
GpgFrontend::UI::TextEdit::SlotCurPageFileTreeView
FilePage * SlotCurPageFileTreeView() const
Definition: TextEdit.cpp:398
-
GpgFrontend::UI::TextEdit::LoadFile
void LoadFile(const QString &fileName)
Definition: TextEdit.cpp:433
-
GpgFrontend::UI::TextEdit::count_page_
int count_page_
int containing the number of added tabs
Definition: TextEdit.h:211
-
GpgFrontend::UI::TextEdit::SlotShowModified
void SlotShowModified() const
Definition: TextEdit.cpp:480
-
GpgFrontend::UI::TextEdit::CurTextPage
PlainTextEditorPage * CurTextPage() const
Definition: TextEdit.cpp:377
-
GpgFrontend::UI::TextEdit::UnsavedDocuments
QHash< int, QString > UnsavedDocuments() const
Definition: TextEdit.cpp:510
-
GpgFrontend::UI::TextEdit::maybe_save_current_tab
bool maybe_save_current_tab(bool askToSave)
Definition: TextEdit.cpp:276
-
GpgFrontend::UI::TextEdit::SlotCloseTab
void SlotCloseTab()
Definition: TextEdit.cpp:236
-
GpgFrontend::UI::TextEdit::SlotPaste
void SlotPaste() const
Definition: TextEdit.cpp:547
-
GpgFrontend::UI::TextEdit::CurFilePage
FilePage * CurFilePage() const
Definition: TextEdit.cpp:381
-
GpgFrontend::UI::TextEdit::SlotSave
void SlotSave()
Definition: TextEdit.cpp:148
-
GpgFrontend::UI::TextEdit::SlotPrint
void SlotPrint()
Definition: TextEdit.cpp:458
-
GpgFrontend::UI::TextEdit::SlotCut
void SlotCut() const
Definition: TextEdit.cpp:529
-
GpgFrontend::UI::TextEdit::SlotNewFileTab
void SlotNewFileTab() const
Definition: TextEdit.cpp:72
-
GpgFrontend::UI::TextEdit::SlotRedo
void SlotRedo() const
redo last change in current text page
Definition: TextEdit.cpp:563
-
GpgFrontend::UI::TextEdit::SlotSwitchTabUp
void SlotSwitchTabUp() const
Definition: TextEdit.cpp:492
-
GpgFrontend::UI::TextEdit::SlotFillTextEditWithText
void SlotFillTextEditWithText(const QString &text) const
Definition: TextEdit.cpp:425
-
GpgFrontend::UI::TextEdit::stripped_name
static QString stripped_name(const QString &full_file_name)
Definition: TextEdit.cpp:454
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI::TextEdit::SlotSaveAs
bool SlotSaveAs()
Definition: TextEdit.cpp:201
+
GpgFrontend::UI::TextEdit::TabCount
int TabCount() const
Definition: TextEdit.cpp:372
+
GpgFrontend::UI::TextEdit::slot_remove_tab
void slot_remove_tab(int index)
Definition: TextEdit.cpp:225
+
GpgFrontend::UI::TextEdit::SlotOpen
void SlotOpen()
Definition: TextEdit.cpp:120
+
GpgFrontend::UI::TextEdit::slot_save_status_to_cache_for_revovery
void slot_save_status_to_cache_for_revovery()
Definition: TextEdit.cpp:601
+
GpgFrontend::UI::TextEdit::SlotCopy
void SlotCopy() const
Definition: TextEdit.cpp:527
+
GpgFrontend::UI::TextEdit::slotNewHelpTab
void slotNewHelpTab(const QString &title, const QString &path) const
Definition: TextEdit.cpp:73
+
GpgFrontend::UI::TextEdit::MaybeSaveAnyTab
bool MaybeSaveAnyTab()
Definition: TextEdit.cpp:304
+
GpgFrontend::UI::TextEdit::SlotCurPageTextEdit
PlainTextEditorPage * SlotCurPageTextEdit() const
Definition: TextEdit.cpp:374
+
GpgFrontend::UI::TextEdit::SlotUndo
void SlotUndo() const
Definition: TextEdit.cpp:545
+
GpgFrontend::UI::TextEdit::SlotSwitchTabDown
void SlotSwitchTabDown() const
Definition: TextEdit.cpp:489
+
GpgFrontend::UI::TextEdit::SlotNewTab
void SlotNewTab()
Definition: TextEdit.cpp:59
+
GpgFrontend::UI::TextEdit::SlotOpenFile
void SlotOpenFile(const QString &path)
Definition: TextEdit.cpp:89
+
GpgFrontend::UI::TextEdit::save_file
bool save_file(const QString &fileName)
Saves the content of currentTab to the file filename.
Definition: TextEdit.cpp:146
+
GpgFrontend::UI::TextEdit::SlotQuote
void SlotQuote() const
Definition: TextEdit.cpp:385
+
GpgFrontend::UI::TextEdit::SlotSelectAll
void SlotSelectAll() const
select all in current text page
Definition: TextEdit.cpp:581
+
GpgFrontend::UI::TextEdit::SlotCurPageFileTreeView
FilePage * SlotCurPageFileTreeView() const
Definition: TextEdit.cpp:380
+
GpgFrontend::UI::TextEdit::LoadFile
void LoadFile(const QString &fileName)
Definition: TextEdit.cpp:415
+
GpgFrontend::UI::TextEdit::count_page_
int count_page_
int containing the number of added tabs
Definition: TextEdit.h:213
+
GpgFrontend::UI::TextEdit::CurTextPage
PlainTextEditorPage * CurTextPage() const
Definition: TextEdit.cpp:359
+
GpgFrontend::UI::TextEdit::UnsavedDocuments
QHash< int, QString > UnsavedDocuments() const
Definition: TextEdit.cpp:500
+
GpgFrontend::UI::TextEdit::maybe_save_current_tab
bool maybe_save_current_tab(bool askToSave)
Definition: TextEdit.cpp:258
+
GpgFrontend::UI::TextEdit::SlotCloseTab
void SlotCloseTab()
Definition: TextEdit.cpp:218
+
GpgFrontend::UI::TextEdit::SlotPaste
void SlotPaste() const
Definition: TextEdit.cpp:537
+
GpgFrontend::UI::TextEdit::CurFilePage
FilePage * CurFilePage() const
Definition: TextEdit.cpp:363
+
GpgFrontend::UI::TextEdit::SlotShowModified
void SlotShowModified(bool) const
Definition: TextEdit.cpp:462
+
GpgFrontend::UI::TextEdit::SlotSave
void SlotSave()
Definition: TextEdit.cpp:130
+
GpgFrontend::UI::TextEdit::SlotPrint
void SlotPrint()
Definition: TextEdit.cpp:440
+
GpgFrontend::UI::TextEdit::SlotCut
void SlotCut() const
Definition: TextEdit.cpp:519
+
GpgFrontend::UI::TextEdit::SlotNewFileTab
void SlotNewFileTab() const
Definition: TextEdit.cpp:79
+
GpgFrontend::UI::TextEdit::SlotRedo
void SlotRedo() const
redo last change in current text page
Definition: TextEdit.cpp:553
+
GpgFrontend::UI::TextEdit::SlotSwitchTabUp
void SlotSwitchTabUp() const
Definition: TextEdit.cpp:482
+
GpgFrontend::UI::TextEdit::SlotFillTextEditWithText
void SlotFillTextEditWithText(const QString &text) const
Definition: TextEdit.cpp:407
+
GpgFrontend::UI::TextEdit::stripped_name
static QString stripped_name(const QString &full_file_name)
Definition: TextEdit.cpp:436
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/UserInterfaceUtils_8h_source.html b/docs/html/UserInterfaceUtils_8h_source.html index 32ff1f66..ce409c1f 100644 --- a/docs/html/UserInterfaceUtils_8h_source.html +++ b/docs/html/UserInterfaceUtils_8h_source.html @@ -145,58 +145,62 @@ $(document).ready(function(){initNavTree('UserInterfaceUtils_8h_source.html','')
159 
164  void SignalKeyDatabaseRefreshDone();
165 
-
166  public slots:
-
173  void SlotImportKeys(QWidget* parent, const std::string& in_buffer);
-
174 
-
180  void SlotImportKeyFromFile(QWidget* parent);
-
181 
-
187  void SlotImportKeyFromKeyServer(QWidget* parent);
-
188 
-
194  void SlotImportKeyFromClipboard(QWidget* parent);
-
195 
-
203  static void SlotImportKeyFromKeyServer(
-
204  const GpgFrontend::KeyIdArgsList& key_ids,
-
205  const GpgFrontend::UI::CommonUtils::ImportCallbackFunctiopn& callback);
-
206 
-
213  void SlotExecuteGpgCommand(
-
214  const QStringList& arguments,
-
215  const std::function<void(QProcess*)>& interact_func);
-
216 
-
223  void SlotExecuteCommand(
-
224  const std::string& cmd,
-
225  const QStringList& arguments,
-
226  const std::function<void(QProcess*)>& interact_func);
-
227 
-
228  private slots:
-
229 
-
234  void slot_update_key_status();
-
235 
-
236  private:
-
237  static std::unique_ptr<CommonUtils> instance_;
-
238 };
+
170  void SignalNeedUserInputPassphrase();
+
171 
+
176  void SignalUserInputPassphraseDone(QString passphrase);
+
177 
+
178  public slots:
+
185  void SlotImportKeys(QWidget* parent, const std::string& in_buffer);
+
186 
+
192  void SlotImportKeyFromFile(QWidget* parent);
+
193 
+
199  void SlotImportKeyFromKeyServer(QWidget* parent);
+
200 
+
206  void SlotImportKeyFromClipboard(QWidget* parent);
+
207 
+
215  static void SlotImportKeyFromKeyServer(
+
216  const GpgFrontend::KeyIdArgsList& key_ids,
+
217  const GpgFrontend::UI::CommonUtils::ImportCallbackFunctiopn& callback);
+
218 
+
225  void SlotExecuteGpgCommand(
+
226  const QStringList& arguments,
+
227  const std::function<void(QProcess*)>& interact_func);
+
228 
+
235  void SlotExecuteCommand(const std::string& cmd, const QStringList& arguments,
+
236  const std::function<void(QProcess*)>& interact_func);
+
237 
+
238  private slots:
239 
-
240 } // namespace GpgFrontend::UI
-
241 
-
242 #endif // GPGFRONTEND_USER_INTERFACE_UTILS_H
+
244  void slot_update_key_status();
+
245 
+
250  void slot_popup_passphrase_input_dialog();
+
251 
+
252  private:
+
253  static std::unique_ptr<CommonUtils> instance_;
+
254 };
+
255 
+
256 } // namespace GpgFrontend::UI
+
257 
+
258 #endif // GPGFRONTEND_USER_INTERFACE_UTILS_H
GpgFrontend::UI::CommonUtils
Definition: UserInterfaceUtils.h:124
-
GpgFrontend::UI::CommonUtils::SlotImportKeyFromFile
void SlotImportKeyFromFile(QWidget *parent)
Definition: UserInterfaceUtils.cpp:189
-
GpgFrontend::UI::CommonUtils::SlotImportKeyFromClipboard
void SlotImportKeyFromClipboard(QWidget *parent)
Definition: UserInterfaceUtils.cpp:210
+
GpgFrontend::UI::CommonUtils::SlotImportKeyFromFile
void SlotImportKeyFromFile(QWidget *parent)
Definition: UserInterfaceUtils.cpp:194
+
GpgFrontend::UI::CommonUtils::SlotImportKeyFromClipboard
void SlotImportKeyFromClipboard(QWidget *parent)
Definition: UserInterfaceUtils.cpp:215
GpgFrontend::UI::CommonUtils::SignalKeyDatabaseRefreshDone
void SignalKeyDatabaseRefreshDone()
emit when the key database is refreshed
-
GpgFrontend::UI::CommonUtils::SlotImportKeys
void SlotImportKeys(QWidget *parent, const std::string &in_buffer)
Definition: UserInterfaceUtils.cpp:181
+
GpgFrontend::UI::CommonUtils::SlotImportKeys
void SlotImportKeys(QWidget *parent, const std::string &in_buffer)
Definition: UserInterfaceUtils.cpp:186
GpgFrontend::UI::CommonUtils::CommonUtils
CommonUtils()
Construct a new Common Utils object.
Definition: UserInterfaceUtils.cpp:150
-
GpgFrontend::UI::CommonUtils::SlotExecuteCommand
void SlotExecuteCommand(const std::string &cmd, const QStringList &arguments, const std::function< void(QProcess *)> &interact_func)
Definition: UserInterfaceUtils.cpp:216
-
GpgFrontend::UI::CommonUtils::slot_update_key_status
void slot_update_key_status()
update the key status when signal is emitted
Definition: UserInterfaceUtils.cpp:398
+
GpgFrontend::UI::CommonUtils::SlotExecuteCommand
void SlotExecuteCommand(const std::string &cmd, const QStringList &arguments, const std::function< void(QProcess *)> &interact_func)
Definition: UserInterfaceUtils.cpp:221
+
GpgFrontend::UI::CommonUtils::slot_update_key_status
void slot_update_key_status()
update the key status when signal is emitted
Definition: UserInterfaceUtils.cpp:400
GpgFrontend::UI::CommonUtils::GetInstance
static CommonUtils * GetInstance()
Get the Instance object.
Definition: UserInterfaceUtils.cpp:143
-
GpgFrontend::UI::CommonUtils::SlotImportKeyFromKeyServer
void SlotImportKeyFromKeyServer(QWidget *parent)
Definition: UserInterfaceUtils.cpp:205
-
GpgFrontend::UI::CommonUtils::SlotExecuteGpgCommand
void SlotExecuteGpgCommand(const QStringList &arguments, const std::function< void(QProcess *)> &interact_func)
Definition: UserInterfaceUtils.cpp:251
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
-
GpgFrontend::UI::refresh_info_board
void refresh_info_board(InfoBoardWidget *info_board, int status, const std::string &report_text)
Definition: UserInterfaceUtils.cpp:84
+
GpgFrontend::UI::CommonUtils::SlotImportKeyFromKeyServer
void SlotImportKeyFromKeyServer(QWidget *parent)
Definition: UserInterfaceUtils.cpp:210
+
GpgFrontend::UI::CommonUtils::SlotExecuteGpgCommand
void SlotExecuteGpgCommand(const QStringList &arguments, const std::function< void(QProcess *)> &interact_func)
Definition: UserInterfaceUtils.cpp:253
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
+
GpgFrontend::UI::refresh_info_board
void refresh_info_board(InfoBoardWidget *info_board, int status, const std::string &report_text)
Definition: UserInterfaceUtils.cpp:86
GpgFrontend::UI::process_operation
void process_operation(QWidget *parent, const std::string &waiting_title, const Thread::Task::TaskRunnable func, const Thread::Task::TaskCallback callback, Thread::Task::DataObjectPtr data_object)
Definition: UserInterfaceUtils.cpp:116
-
GpgFrontend::UI::show_verify_details
void show_verify_details(QWidget *parent, InfoBoardWidget *info_board, GpgError error, const GpgVerifyResult &verify_result)
Definition: UserInterfaceUtils.cpp:52
-
GpgFrontend::UI::import_unknown_key_from_keyserver
void import_unknown_key_from_keyserver(QWidget *parent, const GpgVerifyResultAnalyse &verify_res)
Definition: UserInterfaceUtils.cpp:61
+
GpgFrontend::UI::show_verify_details
void show_verify_details(QWidget *parent, InfoBoardWidget *info_board, GpgError error, const GpgVerifyResult &verify_result)
Definition: UserInterfaceUtils.cpp:54
+
GpgFrontend::UI::import_unknown_key_from_keyserver
void import_unknown_key_from_keyserver(QWidget *parent, const GpgVerifyResultAnalyse &verify_res)
Definition: UserInterfaceUtils.cpp:63
GpgFrontend::UI::import_key_from_keyserver
void import_key_from_keyserver(QWidget *parent, const std::string &key_id, const std::string &key_server)
-
GpgFrontend::UI::process_result_analyse
void process_result_analyse(TextEdit *edit, InfoBoardWidget *info_board, const GpgResultAnalyse &result_analyse)
Definition: UserInterfaceUtils.cpp:96
-
GpgFrontend
Definition: CoreCommonUtil.cpp:29
+
GpgFrontend::UI::process_result_analyse
void process_result_analyse(TextEdit *edit, InfoBoardWidget *info_board, const GpgResultAnalyse &result_analyse)
Definition: UserInterfaceUtils.cpp:98
+
GpgFrontend
Definition: CoreCommonUtil.cpp:31
diff --git a/docs/html/VerifyDetailsDialog_8h_source.html b/docs/html/VerifyDetailsDialog_8h_source.html index 00ad586d..d2b3e6b2 100644 --- a/docs/html/VerifyDetailsDialog_8h_source.html +++ b/docs/html/VerifyDetailsDialog_8h_source.html @@ -122,7 +122,7 @@ $(document).ready(function(){initNavTree('VerifyDetailsDialog_8h_source.html',''
GpgFrontend::UI::KeyList
Definition: KeyList.h:152
GpgFrontend::UI::VerifyDetailsDialog
Definition: VerifyDetailsDialog.h:41
GpgFrontend::UI::VerifyDetailsDialog::VerifyDetailsDialog
VerifyDetailsDialog(QWidget *parent, GpgError error, GpgVerifyResult result)
Construct a new Verify Details Dialog object.
Definition: VerifyDetailsDialog.cpp:35
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/VerifyKeyDetailBox_8h_source.html b/docs/html/VerifyKeyDetailBox_8h_source.html index ec67257a..dcc6f308 100644 --- a/docs/html/VerifyKeyDetailBox_8h_source.html +++ b/docs/html/VerifyKeyDetailBox_8h_source.html @@ -117,7 +117,7 @@ $(document).ready(function(){initNavTree('VerifyKeyDetailBox_8h_source.html','')
GpgFrontend::UI::VerifyKeyDetailBox::create_key_info_grid
QGridLayout * create_key_info_grid(const GpgSignature &signature)
Create a key info grid object.
Definition: VerifyKeyDetailBox.cpp:166
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:35
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/VersionCheckTask_8h_source.html b/docs/html/VersionCheckTask_8h_source.html index fb27d1b9..5a4c4f89 100644 --- a/docs/html/VersionCheckTask_8h_source.html +++ b/docs/html/VersionCheckTask_8h_source.html @@ -138,7 +138,7 @@ $(document).ready(function(){initNavTree('VersionCheckTask_8h_source.html','');
GpgFrontend::UI::VersionCheckTask::current_reply_
QNetworkReply * current_reply_
current version info reply
Definition: VersionCheckTask.h:90
GpgFrontend::UI::VersionCheckTask::VersionCheckTask
VersionCheckTask()
Construct a new Version Check Thread object.
Definition: VersionCheckTask.cpp:38
GpgFrontend::UI::VersionCheckTask::latest_reply_
QNetworkReply * latest_reply_
latest version info reply
Definition: VersionCheckTask.h:89
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
GpgFrontend::UI::SoftwareVersion
Definition: SoftwareVersion.h:39
diff --git a/docs/html/WaitingDialog_8h_source.html b/docs/html/WaitingDialog_8h_source.html index 88abce88..d3105db5 100644 --- a/docs/html/WaitingDialog_8h_source.html +++ b/docs/html/WaitingDialog_8h_source.html @@ -105,7 +105,7 @@ $(document).ready(function(){initNavTree('WaitingDialog_8h_source.html',''); ini
54 #endif // __UI_WAITING_DIALOG_H__
GpgFrontend::UI::WaitingDialog
Definition: WaitingDialog.h:40
GpgFrontend::UI::WaitingDialog::WaitingDialog
WaitingDialog(const QString &title, QWidget *parent)
Construct a new Waiting Dialog object.
Definition: WaitingDialog.cpp:33
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/Wizard_8h_source.html b/docs/html/Wizard_8h_source.html index 3477d953..ae16f049 100644 --- a/docs/html/Wizard_8h_source.html +++ b/docs/html/Wizard_8h_source.html @@ -170,22 +170,22 @@ $(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:179
-
GpgFrontend::UI::ChoosePage::ChoosePage
ChoosePage(QWidget *parent=nullptr)
Construct a new Choose Page object.
Definition: Wizard.cpp:124
-
GpgFrontend::UI::ChoosePage::slot_jump_page
void slot_jump_page(const QString &page)
Definition: Wizard.cpp:181
+
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::ConclusionPage
Definition: Wizard.h:164
-
GpgFrontend::UI::ConclusionPage::nextId
int nextId() const override
Definition: Wizard.cpp:267
-
GpgFrontend::UI::ConclusionPage::ConclusionPage
ConclusionPage(QWidget *parent=nullptr)
Construct a new Conclusion Page object.
Definition: Wizard.cpp:231
+
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::IntroPage
Definition: Wizard.h:78
-
GpgFrontend::UI::IntroPage::nextId
int nextId() const override
Definition: Wizard.cpp:122
-
GpgFrontend::UI::IntroPage::IntroPage
IntroPage(QWidget *parent=nullptr)
Construct a new Intro Page object.
Definition: Wizard.cpp:85
+
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::KeyGenPage
Definition: Wizard.h:133
-
GpgFrontend::UI::KeyGenPage::KeyGenPage
KeyGenPage(QWidget *parent=nullptr)
Construct a new Key Gen Page object.
Definition: Wizard.cpp:190
-
GpgFrontend::UI::KeyGenPage::nextId
int nextId() const override
Definition: Wizard.cpp:223
+
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::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)
-
GpgFrontend::UI
Definition: FileReadTask.cpp:31
+
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/annotated.html b/docs/html/annotated.html index e44d1c54..f68f1f59 100644 --- a/docs/html/annotated.html +++ b/docs/html/annotated.html @@ -163,48 +163,50 @@ $(document).ready(function(){initNavTree('annotated.html',''); initResizable();  CCoreCommonUtil  CArchiveStruct  CArchiveFileOperator - CCharsetOperator - CDataObjectOperator - CFileOperatorFile operations - CGlobalSettingStation - CGpgAdvancedOperator - CGpgBasicOperatorBasic operation collection - CGpgCommandExecutorExtra commands related to GPG - CGpgFileOpera - CGpgKeyGetter - CGpgImportedKey - CGpgImportInformation - CGpgKeyImportExporter - CGpgKeyManager - CGpgKeyOpera - CGpgUIDOperator - CKeyPackageOperatorGive the possibility to import or export a key package - CPassphraseGeneratorThe PassphraseGenerator class - CGpgDecryptResultAnalyse - CGpgEncryptResultAnalyse - CGpgResultAnalyse - CGpgSignResultAnalyse - CGpgVerifyResultAnalyse - C_result_ref_deletorResult Deleter - CGpgConstants - CGpgContextInitArgs - CGpgContext - C_ctx_ref_deleter - CChannelObjectObject which in channel system - CSingletonStorage - CSingletonStorageCollection - CSingletonFunctionObject - CGenKeyInfo - CGpgInfoUse to record some info about gnupg - CGpgData - C_data_ref_deleter - CGpgKey - C_key_ref_deleter - CGpgKeySignature - CGpgSignature - CGpgSubKey - CGpgTOFUInfo - CGpgUID + CCacheManager + CCharsetOperator + CCoreSignalStation + CDataObjectOperator + CFileOperatorFile operations + CGlobalSettingStation + CGpgAdvancedOperator + CGpgBasicOperatorBasic operation collection + CGpgCommandExecutorExtra commands related to GPG + CGpgFileOpera + CGpgKeyGetter + CGpgImportedKey + CGpgImportInformation + CGpgKeyImportExporter + CGpgKeyManager + CGpgKeyOpera + CGpgUIDOperator + CKeyPackageOperatorGive the possibility to import or export a key package + CPassphraseGeneratorThe PassphraseGenerator class + CGpgDecryptResultAnalyse + CGpgEncryptResultAnalyse + CGpgResultAnalyse + CGpgSignResultAnalyse + CGpgVerifyResultAnalyse + C_result_ref_deletorResult Deleter + CGpgConstants + CGpgContextInitArgs + CGpgContext + C_ctx_ref_deleter + CChannelObjectObject which in channel system + CSingletonStorage + CSingletonStorageCollection + CSingletonFunctionObject + CGenKeyInfo + CGpgInfoUse to record some info about gnupg + CGpgData + C_data_ref_deleter + CGpgKey + C_key_ref_deleter + CGpgKeySignature + CGpgSignature + CGpgSubKey + CGpgTOFUInfo + CGpgUID  CclassExecutive files related to the basic operations that are provided by GpgBasicOperator  CProxyConnectionTestThread  CSignatureDetailsDialog diff --git a/docs/html/annotated_dup.js b/docs/html/annotated_dup.js index 325ea771..c9859118 100644 --- a/docs/html/annotated_dup.js +++ b/docs/html/annotated_dup.js @@ -74,7 +74,9 @@ var annotated_dup = [ "CoreCommonUtil", "classGpgFrontend_1_1CoreCommonUtil.html", "classGpgFrontend_1_1CoreCommonUtil" ], [ "ArchiveStruct", "structGpgFrontend_1_1ArchiveStruct.html", "structGpgFrontend_1_1ArchiveStruct" ], [ "ArchiveFileOperator", "classGpgFrontend_1_1ArchiveFileOperator.html", "classGpgFrontend_1_1ArchiveFileOperator" ], + [ "CacheManager", "classGpgFrontend_1_1CacheManager.html", "classGpgFrontend_1_1CacheManager" ], [ "CharsetOperator", "classGpgFrontend_1_1CharsetOperator.html", "classGpgFrontend_1_1CharsetOperator" ], + [ "CoreSignalStation", "classGpgFrontend_1_1CoreSignalStation.html", "classGpgFrontend_1_1CoreSignalStation" ], [ "DataObjectOperator", "classGpgFrontend_1_1DataObjectOperator.html", "classGpgFrontend_1_1DataObjectOperator" ], [ "FileOperator", "classGpgFrontend_1_1FileOperator.html", "classGpgFrontend_1_1FileOperator" ], [ "GlobalSettingStation", "classGpgFrontend_1_1GlobalSettingStation.html", "classGpgFrontend_1_1GlobalSettingStation" ], diff --git a/docs/html/classGpgFrontend_1_1CacheManager-members.html b/docs/html/classGpgFrontend_1_1CacheManager-members.html new file mode 100644 index 00000000..eb9fc4de --- /dev/null +++ b/docs/html/classGpgFrontend_1_1CacheManager-members.html @@ -0,0 +1,104 @@ + + + + + + + +GpgFrontend Project: Member List + + + + + + + + + + + + + +
+
+ + + + + + +
+
GpgFrontend Project +
+
A Free, Powerful, Easy-to-Use, Compact, Cross-Platform, and Installation-Free OpenPGP(pgp) Crypto Tool.
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
GpgFrontend::CacheManager Member List
+
+
+ +

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

+ + + + +
ClearAllCache() (defined in GpgFrontend::CacheManager)GpgFrontend::CacheManagerstatic
LoadCache(std::string name) (defined in GpgFrontend::CacheManager)GpgFrontend::CacheManagerstatic
SaveCache(std::string key, const nlohmann::json &value)GpgFrontend::CacheManagerstatic
+
+ + + + diff --git a/docs/html/classGpgFrontend_1_1CacheManager.html b/docs/html/classGpgFrontend_1_1CacheManager.html new file mode 100644 index 00000000..4b2836e6 --- /dev/null +++ b/docs/html/classGpgFrontend_1_1CacheManager.html @@ -0,0 +1,173 @@ + + + + + + + +GpgFrontend Project: GpgFrontend::CacheManager Class Reference + + + + + + + + + + + + + +
+
+ + + + + + +
+
GpgFrontend Project +
+
A Free, Powerful, Easy-to-Use, Compact, Cross-Platform, and Installation-Free OpenPGP(pgp) Crypto Tool.
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
GpgFrontend::CacheManager Class Reference
+
+
+
+Collaboration diagram for GpgFrontend::CacheManager:
+
+
Collaboration graph
+ + + +
+ + + + + + + + +

+Static Public Member Functions

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

Member Function Documentation

+ +

◆ SaveCache()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
void GpgFrontend::CacheManager::SaveCache (std::string key,
const nlohmann::json & value 
)
+
+static
+
+

Copyright (C) 2021 Saturneric

+

This file is part of GpgFrontend.

+

GpgFrontend is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

+

GpgFrontend is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

+

You should have received a copy of the GNU General Public License along with GpgFrontend. If not, see https://www.gnu.org/licenses/.

+

The initial version of the source code is inherited from the gpg4usb project, which is under GPL-3.0-or-later.

+

All the source code of GpgFrontend was modified and released by Saturnericeric@.nosp@m.bktu.nosp@m.s.com starting on May 12, 2021.

+

SPDX-License-Identifier: GPL-3.0-or-later

+ +

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

+ +
+
+
The documentation for this class was generated from the following files: +
+
+ + + + diff --git a/docs/html/classGpgFrontend_1_1CacheManager.js b/docs/html/classGpgFrontend_1_1CacheManager.js new file mode 100644 index 00000000..2d428cf8 --- /dev/null +++ b/docs/html/classGpgFrontend_1_1CacheManager.js @@ -0,0 +1,6 @@ +var classGpgFrontend_1_1CacheManager = +[ + [ "ClearAllCache", "classGpgFrontend_1_1CacheManager.html#ae5246d24c5dbafb8f9abb561217ea235", null ], + [ "LoadCache", "classGpgFrontend_1_1CacheManager.html#aaac1a2b86867831713efa5f092abf985", null ], + [ "SaveCache", "classGpgFrontend_1_1CacheManager.html#a3cbc3238638dcd8b4722bfdf560c73fe", null ] +]; \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1CacheManager__coll__graph.map b/docs/html/classGpgFrontend_1_1CacheManager__coll__graph.map new file mode 100644 index 00000000..bd1e1f31 --- /dev/null +++ b/docs/html/classGpgFrontend_1_1CacheManager__coll__graph.map @@ -0,0 +1,3 @@ + + + diff --git a/docs/html/classGpgFrontend_1_1CacheManager__coll__graph.md5 b/docs/html/classGpgFrontend_1_1CacheManager__coll__graph.md5 new file mode 100644 index 00000000..03ce9218 --- /dev/null +++ b/docs/html/classGpgFrontend_1_1CacheManager__coll__graph.md5 @@ -0,0 +1 @@ +ab999b5079abf1e5aba4c0035606f5da \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1CacheManager__coll__graph.png b/docs/html/classGpgFrontend_1_1CacheManager__coll__graph.png new file mode 100644 index 00000000..98442c14 Binary files /dev/null and b/docs/html/classGpgFrontend_1_1CacheManager__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1ChannelObject.html b/docs/html/classGpgFrontend_1_1ChannelObject.html index b8b07985..bfb91315 100644 --- a/docs/html/classGpgFrontend_1_1ChannelObject.html +++ b/docs/html/classGpgFrontend_1_1ChannelObject.html @@ -121,17 +121,17 @@ 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 a9b6c02c..3a4b450b 100644 --- a/docs/html/classGpgFrontend_1_1ChannelObject__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1ChannelObject__inherit__graph.map @@ -18,15 +18,15 @@ - + - - + + - - + + diff --git a/docs/html/classGpgFrontend_1_1ChannelObject__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1ChannelObject__inherit__graph.md5 index 1087e7b1..a62aed85 100644 --- a/docs/html/classGpgFrontend_1_1ChannelObject__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1ChannelObject__inherit__graph.md5 @@ -1 +1 @@ -6b17348761d88b6908f8bfc6961e9ec0 \ No newline at end of file +04deed8501731a09d910041bb32f7c91 \ 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 bcc9f554..8d092392 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_1CoreCommonUtil-members.html b/docs/html/classGpgFrontend_1_1CoreCommonUtil-members.html index 972eac12..b7f3f5d7 100644 --- a/docs/html/classGpgFrontend_1_1CoreCommonUtil-members.html +++ b/docs/html/classGpgFrontend_1_1CoreCommonUtil-members.html @@ -91,8 +91,12 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1CoreCommonUtil.htm - - + + + + + +
CoreCommonUtil()=default (defined in GpgFrontend::CoreCommonUtil)GpgFrontend::CoreCommonUtil
GetInstance()GpgFrontend::CoreCommonUtilstatic
instance_ (defined in GpgFrontend::CoreCommonUtil)GpgFrontend::CoreCommonUtilprivatestatic
SignalGnupgNotInstall() (defined in GpgFrontend::CoreCommonUtil)GpgFrontend::CoreCommonUtilsignal
GetTempCacheValue(const std::string)GpgFrontend::CoreCommonUtil
instance_ (defined in GpgFrontend::CoreCommonUtil)GpgFrontend::CoreCommonUtilprivatestatic
ResetTempCacheValue(const std::string)GpgFrontend::CoreCommonUtil
SetTempCacheValue(const std::string, const std::string)GpgFrontend::CoreCommonUtil
SignalGnupgNotInstall() (defined in GpgFrontend::CoreCommonUtil)GpgFrontend::CoreCommonUtilsignal
temp_cache_ (defined in GpgFrontend::CoreCommonUtil)GpgFrontend::CoreCommonUtilprivate
diff --git a/docs/html/classGpgFrontend_1_1CoreCommonUtil.html b/docs/html/classGpgFrontend_1_1CoreCommonUtil.html index f0b9fb6d..b536ebd2 100644 --- a/docs/html/classGpgFrontend_1_1CoreCommonUtil.html +++ b/docs/html/classGpgFrontend_1_1CoreCommonUtil.html @@ -84,7 +84,9 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1CoreCommonUtil.htm
Signals | +Public Member Functions | Static Public Member Functions | +Private Attributes | Static Private Attributes | List of all members
@@ -96,7 +98,7 @@ Inheritance diagram for GpgFrontend::CoreCommonUtil:
Inheritance graph
- +
@@ -105,11 +107,16 @@ Collaboration diagram for GpgFrontend::CoreCommonUtil:
Collaboration graph
- - - - - + + + + + + + + + +
@@ -119,6 +126,19 @@ Signals void 
SignalGnupgNotInstall ()
 
+ + + + + + + + + + +

+Public Member Functions

+void SetTempCacheValue (const std::string, const std::string)
 set a temp cache under a certain key
 
std::string GetTempCacheValue (const std::string)
 after get the temp cache, its value will be imediately ease in storage More...
 
void ResetTempCacheValue (const std::string)
 imediately ease temp cache in storage More...
 

Static Public Member Functions

@@ -126,12 +146,65 @@ static CoreCommonUt
 Construct a new Core Common Util object.
 
+ + + +

+Private Attributes

+std::map< std::string, std::string > temp_cache_
 

Static Private Attributes

static std::unique_ptr< CoreCommonUtilinstance_ = nullptr
 
+

Member Function Documentation

+ +

◆ GetTempCacheValue()

+ +
+
+ + + + + + + + +
std::string GpgFrontend::CoreCommonUtil::GetTempCacheValue (const std::string key)
+
+ +

after get the temp cache, its value will be imediately ease in storage

+
Returns
std::string
+ +

Referenced by GpgFrontend::GpgContext::custom_passphrase_cb().

+ +
+
+ +

◆ ResetTempCacheValue()

+ +
+
+ + + + + + + + +
void GpgFrontend::CoreCommonUtil::ResetTempCacheValue (const std::string key)
+
+ +

imediately ease temp cache in storage

+
Returns
std::string
+ +

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

+ +
+

The documentation for this class was generated from the following files: diff --git a/docs/html/functions_c.html b/docs/html/functions_c.html index 7509296c..4467f8aa 100644 --- a/docs/html/functions_c.html +++ b/docs/html/functions_c.html @@ -97,6 +97,9 @@ $(document).ready(function(){initNavTree('functions_c.html',''); initResizable()
  • Check() : GpgFrontend::UI::SettingsObject
  • +
  • check_binary_chacksum() +: GpgFrontend::GpgContext +
  • check_email_address() : GpgFrontend::UI::KeyGenDialog , GpgFrontend::UI::KeyNewUIDDialog @@ -110,6 +113,9 @@ $(document).ready(function(){initNavTree('functions_c.html',''); initResizable()
  • clean_double_line_breaks_act_ : GpgFrontend::UI::MainWindow
  • +
  • ClearGpgPasswordCache() +: GpgFrontend::GpgAdvancedOperator +
  • close_attachment_dock() : GpgFrontend::UI::MainWindow
  • @@ -268,6 +274,9 @@ $(document).ready(function(){initNavTree('functions_c.html',''); initResizable()
  • CurTextPage() : GpgFrontend::UI::TextEdit
  • +
  • custom_passphrase_cb() +: GpgFrontend::GpgContext +
  • cut_act_ : GpgFrontend::UI::MainWindow
  • diff --git a/docs/html/functions_e.html b/docs/html/functions_e.html index 4dfdd549..ede25a5f 100644 --- a/docs/html/functions_e.html +++ b/docs/html/functions_e.html @@ -142,6 +142,9 @@ $(document).ready(function(){initNavTree('functions_e.html',''); initResizable() : GpgFrontend::UI::KeyPairDetailTab , GpgFrontend::UI::KeyPairSubkeyTab +
  • ExportAllKeys() +: GpgFrontend::GpgKeyImportExporter +
  • ExportKey() : GpgFrontend::GpgKeyImportExporter
  • diff --git a/docs/html/functions_func_c.html b/docs/html/functions_func_c.html index 4ad086ac..f275fa3b 100644 --- a/docs/html/functions_func_c.html +++ b/docs/html/functions_func_c.html @@ -94,6 +94,9 @@ $(document).ready(function(){initNavTree('functions_func_c.html',''); initResiza
  • Check() : GpgFrontend::UI::SettingsObject
  • +
  • check_binary_chacksum() +: GpgFrontend::GpgContext +
  • check_email_address() : GpgFrontend::UI::KeyGenDialog , GpgFrontend::UI::KeyNewUIDDialog @@ -101,6 +104,9 @@ $(document).ready(function(){initNavTree('functions_func_c.html',''); initResiza
  • ChoosePage() : GpgFrontend::UI::ChoosePage
  • +
  • ClearGpgPasswordCache() +: GpgFrontend::GpgAdvancedOperator +
  • close_attachment_dock() : GpgFrontend::UI::MainWindow
  • @@ -219,6 +225,9 @@ $(document).ready(function(){initNavTree('functions_func_c.html',''); initResiza
  • CurTextPage() : GpgFrontend::UI::TextEdit
  • +
  • custom_passphrase_cb() +: GpgFrontend::GpgContext +
  • diff --git a/docs/html/functions_func_e.html b/docs/html/functions_func_e.html index 66934748..a6bfc1a7 100644 --- a/docs/html/functions_func_e.html +++ b/docs/html/functions_func_e.html @@ -106,6 +106,9 @@ $(document).ready(function(){initNavTree('functions_func_e.html',''); initResiza
  • Execute() : GpgFrontend::GpgCommandExecutor
  • +
  • ExportAllKeys() +: GpgFrontend::GpgKeyImportExporter +
  • ExportKey() : GpgFrontend::GpgKeyImportExporter
  • diff --git a/docs/html/functions_func_g.html b/docs/html/functions_func_g.html index e9b720ef..056daf6a 100644 --- a/docs/html/functions_func_g.html +++ b/docs/html/functions_func_g.html @@ -239,6 +239,7 @@ $(document).ready(function(){initNavTree('functions_func_g.html',''); initResiza
  • GetInstance() : GpgFrontend::CoreCommonUtil +, GpgFrontend::CoreSignalStation , GpgFrontend::SingletonFunctionObject< T > , GpgFrontend::SingletonStorageCollection , GpgFrontend::UI::CommonUtils @@ -394,6 +395,9 @@ $(document).ready(function(){initNavTree('functions_func_g.html',''); initResiza
  • GetTabIdsToSave() : GpgFrontend::UI::QuitDialog
  • +
  • GetTempCacheValue() +: GpgFrontend::CoreCommonUtil +
  • GetTextPage() : GpgFrontend::UI::PlainTextEditorPage
  • diff --git a/docs/html/functions_func_i.html b/docs/html/functions_func_i.html index b8f1c666..e82dc272 100644 --- a/docs/html/functions_func_i.html +++ b/docs/html/functions_func_i.html @@ -110,9 +110,6 @@ $(document).ready(function(){initNavTree('functions_func_i.html',''); initResiza
  • init_app_secure_key() : GpgFrontend::DataObjectOperator
  • -
  • init_ctx() -: GpgFrontend::GpgContext -
  • IntroPage() : GpgFrontend::UI::IntroPage
  • diff --git a/docs/html/functions_func_n.html b/docs/html/functions_func_n.html index a440091c..de7f63b1 100644 --- a/docs/html/functions_func_n.html +++ b/docs/html/functions_func_n.html @@ -85,6 +85,9 @@ $(document).ready(function(){initNavTree('functions_func_n.html',''); initResiza  

    - n -

    @@ -419,6 +422,9 @@ $(document).ready(function(){initNavTree('functions_vars.html',''); initResizabl
  • new_tab_act_ : GpgFrontend::UI::MainWindow
  • +
  • no_pass_phrase_check_box_ +: GpgFrontend::UI::SubkeyGenerateDialog +
  • diff --git a/docs/html/hierarchy.html b/docs/html/hierarchy.html index a46bee59..cae59359 100644 --- a/docs/html/hierarchy.html +++ b/docs/html/hierarchy.html @@ -96,144 +96,147 @@ This inheritance list is sorted roughly, but not completely, alphabetically: CGpgFrontend::_result_ref_deletorResult Deleter  CGpgFrontend::ArchiveFileOperator  CGpgFrontend::ArchiveStruct - CGpgFrontend::ChannelObjectObject which in channel system - CGpgFrontend::SingletonFunctionObject< GpgUIDOperator > - CGpgFrontend::GpgUIDOperator - CGpgFrontend::SingletonFunctionObject< GpgKeyManager > - CGpgFrontend::GpgKeyManager - CGpgFrontend::SingletonFunctionObject< TaskRunnerGetter > - CGpgFrontend::Thread::TaskRunnerGetter - CGpgFrontend::SingletonFunctionObject< GpgKeyImportExporter > - CGpgFrontend::GpgKeyImportExporter - CGpgFrontend::SingletonFunctionObject< GpgCommandExecutor > - CGpgFrontend::GpgCommandExecutorExtra commands related to GPG - CGpgFrontend::SingletonFunctionObject< GpgKeyOpera > - CGpgFrontend::GpgKeyOpera - CGpgFrontend::SingletonFunctionObject< GpgFileOpera > - CGpgFrontend::GpgFileOpera - CGpgFrontend::SingletonFunctionObject< GpgKeyGetter > - CGpgFrontend::GpgKeyGetter - CGpgFrontend::SingletonFunctionObject< GpgBasicOperator > - CGpgFrontend::GpgBasicOperatorBasic operation collection - CGpgFrontend::SingletonFunctionObject< GpgAdvancedOperator > - CGpgFrontend::GpgAdvancedOperator - CGpgFrontend::SingletonFunctionObject< GlobalSettingStation > - CGpgFrontend::GlobalSettingStation - CGpgFrontend::SingletonFunctionObject< DataObjectOperator > - CGpgFrontend::DataObjectOperator - CGpgFrontend::SingletonFunctionObject< PassphraseGenerator > - CGpgFrontend::PassphraseGeneratorThe PassphraseGenerator class - CGpgFrontend::SingletonFunctionObject< GpgContext > - CGpgFrontend::GpgContext - CGpgFrontend::SingletonFunctionObject< T > - CGpgFrontend::CharsetOperator - CclassExecutive files related to the basic operations that are provided by GpgBasicOperator - CGpgFrontend::UI::MainWindow::CryptoMenu - CGpgFrontend::Thread::Task::DataObjectDataObject to be passed to the callback function - CGpgFrontend::Thread::Task::DataObject::Destructor - CGpgFrontend::FileOperatorFile operations - CGpgFrontend::GenKeyInfo - CGpgFrontend::GpgConstants - CGpgFrontend::GpgContextInitArgs - CGpgFrontend::GpgData - CGpgFrontend::GpgImportedKey - CGpgFrontend::GpgImportInformation - CGpgFrontend::GpgInfoUse to record some info about gnupg - CGpgFrontend::GpgKey - CGpgFrontend::GpgKeySignature - CGpgFrontend::GpgResultAnalyse - CGpgFrontend::GpgDecryptResultAnalyse - CGpgFrontend::GpgEncryptResultAnalyse - CGpgFrontend::GpgSignResultAnalyse - CGpgFrontend::GpgVerifyResultAnalyse - CGpgFrontend::GpgSignature - CGpgFrontend::GpgSubKey - CGpgFrontend::GpgTOFUInfo - CGpgFrontend::GpgUID - Cnlohmann::json - CGpgFrontend::UI::SettingsObjectThe SettingsObject class This class is used to store settings for the application securely - CGpgFrontend::UI::KeyListColumn - CGpgFrontend::UI::KeyListRow - CGpgFrontend::UI::KeyMenuAbility - CGpgFrontend::KeyPackageOperatorGive the possibility to import or export a key package - CGpgFrontend::UI::KeyTable - CProxyConnectionTestThread - CQApplication - CGpgFrontend::UI::GpgFrontendApplication - CQDialog - CGpgFrontend::UI::GeneralDialog - CGpgFrontend::UI::AboutDialogClass for handling the about dialog - CGpgFrontend::UI::ExportKeyPackageDialog - CGpgFrontend::UI::KeyDetailsDialog - CGpgFrontend::UI::KeyGenDialog - CGpgFrontend::UI::KeyImportDetailDialog - CGpgFrontend::UI::KeyNewUIDDialog - CGpgFrontend::UI::KeyServerImportDialog - CGpgFrontend::UI::KeySetExpireDateDialog - CGpgFrontend::UI::KeyUIDSignDialog - CGpgFrontend::UI::KeyUploadDialog - CGpgFrontend::UI::QuitDialog - CGpgFrontend::UI::SettingsDialog - CGpgFrontend::UI::SignersPicker - CGpgFrontend::UI::SubkeyGenerateDialog - CGpgFrontend::UI::VerifyDetailsDialog - CGpgFrontend::UI::WaitingDialog - CSignatureDetailsDialog - CQGroupBox - CGpgFrontend::UI::VerifyKeyDetailBox - CQMainWindow - CGpgFrontend::UI::GeneralMainWindow - CGpgFrontend::UI::KeyMgmt - CGpgFrontend::UI::MainWindow - CQObject - CGpgFrontend::CoreCommonUtil - CGpgFrontend::Thread::Task - CGpgFrontend::Thread::CtxCheckTask - CGpgFrontend::UI::FileReadTask - CGpgFrontend::UI::KeyServerImportTask - CGpgFrontend::UI::KeyServerSearchTask - CGpgFrontend::UI::ListedKeyServerTestTask - CGpgFrontend::UI::VersionCheckTask - CGpgFrontend::UI::SignalStation - CQRunnable - CGpgFrontend::Thread::Task - CQThread - CGpgFrontend::Thread::TaskRunner - CGpgFrontend::UI::ProxyConnectionTestThread - CQWidget - CGpgFrontend::UI::AdvancedTab - CGpgFrontend::UI::AppearanceTab - CGpgFrontend::UI::CommonUtils - CGpgFrontend::UI::FilePage - CGpgFrontend::UI::FindWidgetClass for handling the find widget shown at buttom of a textedit-page - CGpgFrontend::UI::GeneralTab - CGpgFrontend::UI::GnupgTab - CGpgFrontend::UI::HelpPage - CGpgFrontend::UI::InfoBoardWidgetClass for handling the verify label shown at bottom of a textedit-page - CGpgFrontend::UI::InfoTabClass containing the main tab of about dialog - CGpgFrontend::UI::KeyList - CGpgFrontend::UI::KeyPairDetailTab - CGpgFrontend::UI::KeyPairOperaTab - CGpgFrontend::UI::KeyPairSubkeyTab - CGpgFrontend::UI::KeyPairUIDTab - CGpgFrontend::UI::KeyserverTab - CGpgFrontend::UI::NetworkTab - CGpgFrontend::UI::PlainTextEditorPageClass for handling a single tab of the tabwidget - CGpgFrontend::UI::TOFUInfoPage - CGpgFrontend::UI::TextEditTextEdit class - CGpgFrontend::UI::TranslatorsTabClass containing the translator tab of about dialog - CGpgFrontend::UI::UpdateTabClass containing the main tab of about dialog - CQWizard - CGpgFrontend::UI::Wizard - CQWizardPage - CGpgFrontend::UI::ChoosePage - CGpgFrontend::UI::ConclusionPage - CGpgFrontend::UI::IntroPage - CGpgFrontend::UI::KeyGenPage - CGpgFrontend::SingletonStorage - CGpgFrontend::SingletonStorageCollection - CGpgFrontend::UI::SoftwareVersion - CTestListedKeyServerThread + CGpgFrontend::CacheManager + CGpgFrontend::ChannelObjectObject which in channel system + CGpgFrontend::SingletonFunctionObject< GpgUIDOperator > + CGpgFrontend::GpgUIDOperator + CGpgFrontend::SingletonFunctionObject< GpgKeyManager > + CGpgFrontend::GpgKeyManager + CGpgFrontend::SingletonFunctionObject< TaskRunnerGetter > + CGpgFrontend::Thread::TaskRunnerGetter + CGpgFrontend::SingletonFunctionObject< GpgKeyImportExporter > + CGpgFrontend::GpgKeyImportExporter + CGpgFrontend::SingletonFunctionObject< GpgCommandExecutor > + CGpgFrontend::GpgCommandExecutorExtra commands related to GPG + CGpgFrontend::SingletonFunctionObject< GpgKeyOpera > + CGpgFrontend::GpgKeyOpera + CGpgFrontend::SingletonFunctionObject< GpgFileOpera > + CGpgFrontend::GpgFileOpera + CGpgFrontend::SingletonFunctionObject< GpgKeyGetter > + CGpgFrontend::GpgKeyGetter + CGpgFrontend::SingletonFunctionObject< GpgBasicOperator > + CGpgFrontend::GpgBasicOperatorBasic operation collection + CGpgFrontend::SingletonFunctionObject< GpgAdvancedOperator > + CGpgFrontend::GpgAdvancedOperator + CGpgFrontend::SingletonFunctionObject< GlobalSettingStation > + CGpgFrontend::GlobalSettingStation + CGpgFrontend::SingletonFunctionObject< DataObjectOperator > + CGpgFrontend::DataObjectOperator + CGpgFrontend::SingletonFunctionObject< PassphraseGenerator > + CGpgFrontend::PassphraseGeneratorThe PassphraseGenerator class + CGpgFrontend::SingletonFunctionObject< GpgContext > + CGpgFrontend::GpgContext + CGpgFrontend::SingletonFunctionObject< T > + CGpgFrontend::CharsetOperator + CclassExecutive files related to the basic operations that are provided by GpgBasicOperator + CGpgFrontend::UI::MainWindow::CryptoMenu + CGpgFrontend::Thread::Task::DataObjectDataObject to be passed to the callback function + CGpgFrontend::Thread::Task::DataObject::Destructor + CGpgFrontend::FileOperatorFile operations + CGpgFrontend::GenKeyInfo + CGpgFrontend::GpgConstants + CGpgFrontend::GpgContextInitArgs + CGpgFrontend::GpgData + CGpgFrontend::GpgImportedKey + CGpgFrontend::GpgImportInformation + CGpgFrontend::GpgInfoUse to record some info about gnupg + CGpgFrontend::GpgKey + CGpgFrontend::GpgKeySignature + CGpgFrontend::GpgResultAnalyse + CGpgFrontend::GpgDecryptResultAnalyse + CGpgFrontend::GpgEncryptResultAnalyse + CGpgFrontend::GpgSignResultAnalyse + CGpgFrontend::GpgVerifyResultAnalyse + CGpgFrontend::GpgSignature + CGpgFrontend::GpgSubKey + CGpgFrontend::GpgTOFUInfo + CGpgFrontend::GpgUID + Cnlohmann::json + CGpgFrontend::UI::SettingsObjectThe SettingsObject class This class is used to store settings for the application securely + CGpgFrontend::UI::KeyListColumn + CGpgFrontend::UI::KeyListRow + CGpgFrontend::UI::KeyMenuAbility + CGpgFrontend::KeyPackageOperatorGive the possibility to import or export a key package + CGpgFrontend::UI::KeyTable + CProxyConnectionTestThread + CQApplication + CGpgFrontend::UI::GpgFrontendApplication + CQDialog + CGpgFrontend::UI::GeneralDialog + CGpgFrontend::UI::AboutDialogClass for handling the about dialog + CGpgFrontend::UI::ExportKeyPackageDialog + CGpgFrontend::UI::KeyDetailsDialog + CGpgFrontend::UI::KeyGenDialog + CGpgFrontend::UI::KeyImportDetailDialog + CGpgFrontend::UI::KeyNewUIDDialog + CGpgFrontend::UI::KeyServerImportDialog + CGpgFrontend::UI::KeySetExpireDateDialog + CGpgFrontend::UI::KeyUIDSignDialog + CGpgFrontend::UI::KeyUploadDialog + CGpgFrontend::UI::QuitDialog + CGpgFrontend::UI::SettingsDialog + CGpgFrontend::UI::SignersPicker + CGpgFrontend::UI::SubkeyGenerateDialog + CGpgFrontend::UI::VerifyDetailsDialog + CGpgFrontend::UI::WaitingDialog + CSignatureDetailsDialog + CQGroupBox + CGpgFrontend::UI::VerifyKeyDetailBox + CQMainWindow + CGpgFrontend::UI::GeneralMainWindow + CGpgFrontend::UI::KeyMgmt + CGpgFrontend::UI::MainWindow + CQObject + CGpgFrontend::CoreCommonUtil + CGpgFrontend::CoreSignalStation + CGpgFrontend::GpgContext + CGpgFrontend::Thread::Task + CGpgFrontend::Thread::CtxCheckTask + CGpgFrontend::UI::FileReadTask + CGpgFrontend::UI::KeyServerImportTask + CGpgFrontend::UI::KeyServerSearchTask + CGpgFrontend::UI::ListedKeyServerTestTask + CGpgFrontend::UI::VersionCheckTask + CGpgFrontend::UI::SignalStation + CQRunnable + CGpgFrontend::Thread::Task + CQThread + CGpgFrontend::Thread::TaskRunner + CGpgFrontend::UI::ProxyConnectionTestThread + CQWidget + CGpgFrontend::UI::AdvancedTab + CGpgFrontend::UI::AppearanceTab + CGpgFrontend::UI::CommonUtils + CGpgFrontend::UI::FilePage + CGpgFrontend::UI::FindWidgetClass for handling the find widget shown at buttom of a textedit-page + CGpgFrontend::UI::GeneralTab + CGpgFrontend::UI::GnupgTab + CGpgFrontend::UI::HelpPage + CGpgFrontend::UI::InfoBoardWidgetClass for handling the verify label shown at bottom of a textedit-page + CGpgFrontend::UI::InfoTabClass containing the main tab of about dialog + CGpgFrontend::UI::KeyList + CGpgFrontend::UI::KeyPairDetailTab + CGpgFrontend::UI::KeyPairOperaTab + CGpgFrontend::UI::KeyPairSubkeyTab + CGpgFrontend::UI::KeyPairUIDTab + CGpgFrontend::UI::KeyserverTab + CGpgFrontend::UI::NetworkTab + CGpgFrontend::UI::PlainTextEditorPageClass for handling a single tab of the tabwidget + CGpgFrontend::UI::TOFUInfoPage + CGpgFrontend::UI::TextEditTextEdit class + CGpgFrontend::UI::TranslatorsTabClass containing the translator tab of about dialog + CGpgFrontend::UI::UpdateTabClass containing the main tab of about dialog + CQWizard + CGpgFrontend::UI::Wizard + CQWizardPage + CGpgFrontend::UI::ChoosePage + CGpgFrontend::UI::ConclusionPage + CGpgFrontend::UI::IntroPage + CGpgFrontend::UI::KeyGenPage + CGpgFrontend::SingletonStorage + CGpgFrontend::SingletonStorageCollection + CGpgFrontend::UI::SoftwareVersion + CTestListedKeyServerThread diff --git a/docs/html/hierarchy.js b/docs/html/hierarchy.js index 0ded0e49..98113d93 100644 --- a/docs/html/hierarchy.js +++ b/docs/html/hierarchy.js @@ -6,6 +6,7 @@ var hierarchy = [ "GpgFrontend::_result_ref_deletor", "structGpgFrontend_1_1__result__ref__deletor.html", null ], [ "GpgFrontend::ArchiveFileOperator", "classGpgFrontend_1_1ArchiveFileOperator.html", null ], [ "GpgFrontend::ArchiveStruct", "structGpgFrontend_1_1ArchiveStruct.html", null ], + [ "GpgFrontend::CacheManager", "classGpgFrontend_1_1CacheManager.html", null ], [ "GpgFrontend::ChannelObject", "classGpgFrontend_1_1ChannelObject.html", [ [ "GpgFrontend::SingletonFunctionObject< GpgUIDOperator >", "classGpgFrontend_1_1SingletonFunctionObject.html", [ [ "GpgFrontend::GpgUIDOperator", "classGpgFrontend_1_1GpgUIDOperator.html", null ] @@ -120,6 +121,8 @@ var hierarchy = ] ], [ "QObject", null, [ [ "GpgFrontend::CoreCommonUtil", "classGpgFrontend_1_1CoreCommonUtil.html", null ], + [ "GpgFrontend::CoreSignalStation", "classGpgFrontend_1_1CoreSignalStation.html", null ], + [ "GpgFrontend::GpgContext", "classGpgFrontend_1_1GpgContext.html", null ], [ "GpgFrontend::Thread::Task", "classGpgFrontend_1_1Thread_1_1Task.html", [ [ "GpgFrontend::Thread::CtxCheckTask", "classGpgFrontend_1_1Thread_1_1CtxCheckTask.html", null ], [ "GpgFrontend::UI::FileReadTask", "classGpgFrontend_1_1UI_1_1FileReadTask.html", null ], diff --git a/docs/html/inherit_graph_30.md5 b/docs/html/inherit_graph_30.md5 index 8a8f81e8..5d096d0e 100644 --- a/docs/html/inherit_graph_30.md5 +++ b/docs/html/inherit_graph_30.md5 @@ -1 +1 @@ -e4303f36d00bfe2903c7f722c4f57055 \ No newline at end of file +0ace91fca82083c90daae10102dc6a17 \ No newline at end of file diff --git a/docs/html/inherit_graph_31.md5 b/docs/html/inherit_graph_31.md5 index 841dd575..e31e0d99 100644 --- a/docs/html/inherit_graph_31.md5 +++ b/docs/html/inherit_graph_31.md5 @@ -1 +1 @@ -f57b0ac46c72e4cfb2fea65fc1d49cdd \ No newline at end of file +c76c1a5b53653b0b1a67cc30480dfc02 \ No newline at end of file diff --git a/docs/html/inherit_graph_32.md5 b/docs/html/inherit_graph_32.md5 index 30cbad9d..6a063c6a 100644 --- a/docs/html/inherit_graph_32.md5 +++ b/docs/html/inherit_graph_32.md5 @@ -1 +1 @@ -22d92c8bd66081dd6b94b753dcb7d337 \ No newline at end of file +8096954063b270dae6b0e0279fe8f4cb \ No newline at end of file diff --git a/docs/html/inherit_graph_33.md5 b/docs/html/inherit_graph_33.md5 index 1b3b21ea..782c04cb 100644 --- a/docs/html/inherit_graph_33.md5 +++ b/docs/html/inherit_graph_33.md5 @@ -1 +1 @@ -396bbd53afc3c169a64f12fb504407fa \ No newline at end of file +c3feebfc5a0a2dcad09fbd9c98e95e52 \ No newline at end of file diff --git a/docs/html/inherit_graph_34.md5 b/docs/html/inherit_graph_34.md5 index 2f1a0d5c..cecdf901 100644 --- a/docs/html/inherit_graph_34.md5 +++ b/docs/html/inherit_graph_34.md5 @@ -1 +1 @@ -ca60c5c9c8bc5cb5c5d4621fb2ff24c4 \ No newline at end of file +2d75ff5f2c2861a9cb542f6b5e3fb497 \ No newline at end of file diff --git a/docs/html/inherit_graph_35.md5 b/docs/html/inherit_graph_35.md5 index ecb38807..1a64c2e6 100644 --- a/docs/html/inherit_graph_35.md5 +++ b/docs/html/inherit_graph_35.md5 @@ -1 +1 @@ -2030371d3471c2d8ea08b9d8209a6747 \ No newline at end of file +14cd673e0e35416bc23861c500e3168a \ No newline at end of file diff --git a/docs/html/inherit_graph_4.map b/docs/html/inherit_graph_4.map index 32c8c167..1c67d21a 100644 --- a/docs/html/inherit_graph_4.map +++ b/docs/html/inherit_graph_4.map @@ -1,32 +1,3 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + diff --git a/docs/html/inherit_graph_4.md5 b/docs/html/inherit_graph_4.md5 index 3e2f1a3a..156eaec1 100644 --- a/docs/html/inherit_graph_4.md5 +++ b/docs/html/inherit_graph_4.md5 @@ -1 +1 @@ -9bcb56fb2e7cb7e1f2e384f7fef61f34 \ No newline at end of file +9f8a609661fa4f456a8ee6b54ac3afcf \ No newline at end of file diff --git a/docs/html/inherit_graph_4.png b/docs/html/inherit_graph_4.png index efee3aa6..4813019f 100644 Binary files a/docs/html/inherit_graph_4.png and b/docs/html/inherit_graph_4.png differ diff --git a/docs/html/inherit_graph_41.md5 b/docs/html/inherit_graph_41.md5 index 8c58f109..c6e0db06 100644 --- a/docs/html/inherit_graph_41.md5 +++ b/docs/html/inherit_graph_41.md5 @@ -1 +1 @@ -664063fbb22f9334e2c2e17855a7c051 \ No newline at end of file +1ddbc69bd8b7286064b55e576435d774 \ No newline at end of file diff --git a/docs/html/inherit_graph_43.md5 b/docs/html/inherit_graph_43.md5 index b563ed34..a8aefda2 100644 --- a/docs/html/inherit_graph_43.md5 +++ b/docs/html/inherit_graph_43.md5 @@ -1 +1 @@ -279b6a9e6a99fa951ce942a2e4954d73 \ No newline at end of file +4acb4f868e87339a404d8425b969c72a \ No newline at end of file diff --git a/docs/html/inherit_graph_44.md5 b/docs/html/inherit_graph_44.md5 index ae996c8e..d4b0087d 100644 --- a/docs/html/inherit_graph_44.md5 +++ b/docs/html/inherit_graph_44.md5 @@ -1 +1 @@ -b9a85435184e7fb8127186016edfdc20 \ No newline at end of file +567b5f558aa5a56a8d3e8f170d0c8da5 \ No newline at end of file diff --git a/docs/html/inherit_graph_5.map b/docs/html/inherit_graph_5.map index 8d9390be..4780934c 100644 --- a/docs/html/inherit_graph_5.map +++ b/docs/html/inherit_graph_5.map @@ -1,3 +1,44 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/html/inherit_graph_5.md5 b/docs/html/inherit_graph_5.md5 index 11504a4c..4b1810d9 100644 --- a/docs/html/inherit_graph_5.md5 +++ b/docs/html/inherit_graph_5.md5 @@ -1 +1 @@ -9df999f3bbf708677fc36d36ec4e4329 \ No newline at end of file +86f3d396a1c5152cfbc1ca039ed5dc74 \ No newline at end of file diff --git a/docs/html/inherit_graph_5.png b/docs/html/inherit_graph_5.png index 0925adff..4f33df03 100644 Binary files a/docs/html/inherit_graph_5.png and b/docs/html/inherit_graph_5.png differ diff --git a/docs/html/inherit_graph_6.map b/docs/html/inherit_graph_6.map index 2fb7e92e..8d9390be 100644 --- a/docs/html/inherit_graph_6.map +++ b/docs/html/inherit_graph_6.map @@ -1,13 +1,3 @@ - - - - - - - - - - - + diff --git a/docs/html/inherit_graph_6.md5 b/docs/html/inherit_graph_6.md5 index 8a41c0c3..11504a4c 100644 --- a/docs/html/inherit_graph_6.md5 +++ b/docs/html/inherit_graph_6.md5 @@ -1 +1 @@ -048b8d5283fd7c7ae957b8e9b02e711b \ No newline at end of file +9df999f3bbf708677fc36d36ec4e4329 \ No newline at end of file diff --git a/docs/html/inherit_graph_6.png b/docs/html/inherit_graph_6.png index 63589e12..0925adff 100644 Binary files a/docs/html/inherit_graph_6.png and b/docs/html/inherit_graph_6.png differ diff --git a/docs/html/inherits.html b/docs/html/inherits.html index 32dd560d..4347b996 100644 --- a/docs/html/inherits.html +++ b/docs/html/inherits.html @@ -109,7 +109,12 @@ $(document).ready(function(){initNavTree('hierarchy.html',''); initResizable(); - + + + + + + @@ -140,29 +145,26 @@ $(document).ready(function(){initNavTree('hierarchy.html',''); initResizable(); - + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - diff --git a/docs/html/namespaceGpgFrontend.html b/docs/html/namespaceGpgFrontend.html index d10a76b0..476bc295 100644 --- a/docs/html/namespaceGpgFrontend.html +++ b/docs/html/namespaceGpgFrontend.html @@ -110,8 +110,12 @@ Classes   class  ArchiveFileOperator   +class  CacheManager +  class  CharsetOperator   +class  CoreSignalStation +  class  DataObjectOperator   class  FileOperator @@ -538,7 +542,7 @@ const int GPGFRONTEND_NON_
    Returns
    GpgError
    -

    Referenced by GpgFrontend::GpgBasicOperator::Decrypt(), GpgFrontend::GpgBasicOperator::DecryptVerify(), GpgFrontend::GpgKeyOpera::DeleteKeys(), GpgFrontend::GpgBasicOperator::Encrypt(), GpgFrontend::GpgBasicOperator::EncryptSign(), GpgFrontend::GpgBasicOperator::EncryptSymmetric(), GpgFrontend::GpgKeyOpera::GenerateKey(), GpgFrontend::GpgKeyOpera::GenerateSubkey(), GpgFrontend::GpgContext::GpgContext(), GpgFrontend::GpgKeyImportExporter::ImportKey(), GpgFrontend::GpgContext::init_ctx(), GpgFrontend::GpgKeyOpera::ModifyPassword(), GpgFrontend::GpgKeyOpera::ModifyTOFUPolicy(), GpgFrontend::GpgKeyManager::RevSign(), GpgFrontend::GpgUIDOperator::RevUID(), GpgFrontend::GpgKeyManager::SetExpire(), GpgFrontend::GpgUIDOperator::SetPrimaryUID(), GpgFrontend::GpgBasicOperator::SetSigners(), GpgFrontend::GpgBasicOperator::Sign(), GpgFrontend::GpgKeyManager::SignKey(), and GpgFrontend::GpgBasicOperator::Verify().

    +

    Referenced by GpgFrontend::GpgBasicOperator::Decrypt(), GpgFrontend::GpgBasicOperator::DecryptVerify(), GpgFrontend::GpgKeyOpera::DeleteKeys(), GpgFrontend::GpgBasicOperator::Encrypt(), GpgFrontend::GpgBasicOperator::EncryptSign(), GpgFrontend::GpgBasicOperator::EncryptSymmetric(), GpgFrontend::GpgKeyOpera::GenerateKey(), GpgFrontend::GpgKeyOpera::GenerateSubkey(), GpgFrontend::GpgContext::GpgContext(), GpgFrontend::GpgKeyImportExporter::ImportKey(), GpgFrontend::GpgKeyOpera::ModifyPassword(), GpgFrontend::GpgKeyOpera::ModifyTOFUPolicy(), GpgFrontend::GpgContext::post_init_ctx(), GpgFrontend::GpgKeyManager::RevSign(), GpgFrontend::GpgUIDOperator::RevUID(), GpgFrontend::GpgKeyManager::SetExpire(), GpgFrontend::GpgUIDOperator::SetPrimaryUID(), GpgFrontend::GpgBasicOperator::SetSigners(), GpgFrontend::GpgBasicOperator::Sign(), GpgFrontend::GpgKeyManager::SignKey(), and GpgFrontend::GpgBasicOperator::Verify().

    @@ -612,7 +616,7 @@ const int GPGFRONTEND_NON_
    Returns
    gpg_err_code_t
    -

    Referenced by GpgFrontend::GpgUIDOperator::AddUID(), GpgFrontend::GpgFileOpera::DecryptFile(), GpgFrontend::GpgFileOpera::DecryptVerifyFile(), GpgFrontend::GpgFileOpera::EncryptFile(), GpgFrontend::GpgFileOpera::EncryptFileSymmetric(), GpgFrontend::GpgFileOpera::EncryptSignFile(), GpgFrontend::GpgKeyImportExporter::ExportKey(), GpgFrontend::GpgKeyImportExporter::ExportKeyOpenSSH(), GpgFrontend::GpgKeyImportExporter::ExportSecretKey(), GpgFrontend::GpgKeyImportExporter::ExportSecretKeyShortest(), GpgFrontend::GpgKeyGetter::FlushKeyCache(), GpgFrontend::GpgKeyOpera::GenerateKey(), GpgFrontend::GpgContext::GpgContext(), GpgFrontend::GpgContext::init_ctx(), GpgFrontend::GpgKeyManager::RevSign(), GpgFrontend::GpgUIDOperator::RevUID(), GpgFrontend::GpgKeyManager::SetExpire(), GpgFrontend::GpgUIDOperator::SetPrimaryUID(), GpgFrontend::GpgFileOpera::SignFile(), GpgFrontend::GpgKeyManager::SignKey(), GpgFrontend::UI::MainWindow::slot_decrypt(), GpgFrontend::UI::MainWindow::slot_decrypt_verify(), GpgFrontend::UI::MainWindow::slot_encrypt(), GpgFrontend::UI::MainWindow::slot_encrypt_sign(), GpgFrontend::UI::SubkeyGenerateDialog::slot_key_gen_accept(), GpgFrontend::UI::MainWindow::slot_sign(), and GpgFrontend::UI::MainWindow::slot_verify().

    +

    Referenced by GpgFrontend::GpgUIDOperator::AddUID(), GpgFrontend::GpgFileOpera::DecryptFile(), GpgFrontend::GpgFileOpera::DecryptVerifyFile(), GpgFrontend::GpgFileOpera::EncryptFile(), GpgFrontend::GpgFileOpera::EncryptFileSymmetric(), GpgFrontend::GpgFileOpera::EncryptSignFile(), GpgFrontend::GpgKeyImportExporter::ExportKey(), GpgFrontend::GpgKeyImportExporter::ExportKeyOpenSSH(), GpgFrontend::GpgKeyImportExporter::ExportSecretKey(), GpgFrontend::GpgKeyImportExporter::ExportSecretKeyShortest(), GpgFrontend::GpgKeyGetter::FlushKeyCache(), GpgFrontend::GpgKeyOpera::GenerateKey(), GpgFrontend::GpgContext::GpgContext(), GpgFrontend::GpgContext::post_init_ctx(), GpgFrontend::GpgKeyManager::RevSign(), GpgFrontend::GpgUIDOperator::RevUID(), GpgFrontend::GpgKeyManager::SetExpire(), GpgFrontend::GpgUIDOperator::SetPrimaryUID(), GpgFrontend::GpgFileOpera::SignFile(), GpgFrontend::GpgKeyManager::SignKey(), GpgFrontend::UI::MainWindow::slot_decrypt(), GpgFrontend::UI::MainWindow::slot_decrypt_verify(), GpgFrontend::UI::MainWindow::slot_encrypt(), GpgFrontend::UI::MainWindow::slot_encrypt_sign(), GpgFrontend::UI::SubkeyGenerateDialog::slot_key_gen_accept(), GpgFrontend::UI::MainWindow::slot_sign(), and GpgFrontend::UI::MainWindow::slot_verify().

    diff --git a/docs/html/namespaceGpgFrontend.js b/docs/html/namespaceGpgFrontend.js index 2080c859..884d28ff 100644 --- a/docs/html/namespaceGpgFrontend.js +++ b/docs/html/namespaceGpgFrontend.js @@ -10,7 +10,9 @@ var namespaceGpgFrontend = [ "CoreCommonUtil", "classGpgFrontend_1_1CoreCommonUtil.html", "classGpgFrontend_1_1CoreCommonUtil" ], [ "ArchiveStruct", "structGpgFrontend_1_1ArchiveStruct.html", "structGpgFrontend_1_1ArchiveStruct" ], [ "ArchiveFileOperator", "classGpgFrontend_1_1ArchiveFileOperator.html", "classGpgFrontend_1_1ArchiveFileOperator" ], + [ "CacheManager", "classGpgFrontend_1_1CacheManager.html", "classGpgFrontend_1_1CacheManager" ], [ "CharsetOperator", "classGpgFrontend_1_1CharsetOperator.html", "classGpgFrontend_1_1CharsetOperator" ], + [ "CoreSignalStation", "classGpgFrontend_1_1CoreSignalStation.html", "classGpgFrontend_1_1CoreSignalStation" ], [ "DataObjectOperator", "classGpgFrontend_1_1DataObjectOperator.html", "classGpgFrontend_1_1DataObjectOperator" ], [ "FileOperator", "classGpgFrontend_1_1FileOperator.html", "classGpgFrontend_1_1FileOperator" ], [ "GlobalSettingStation", "classGpgFrontend_1_1GlobalSettingStation.html", "classGpgFrontend_1_1GlobalSettingStation" ], diff --git a/docs/html/namespaces.html b/docs/html/namespaces.html index 786ea372..ee20d443 100644 --- a/docs/html/namespaces.html +++ b/docs/html/namespaces.html @@ -164,48 +164,50 @@ $(document).ready(function(){initNavTree('namespaces.html',''); initResizable();  CCoreCommonUtil  CArchiveStruct  CArchiveFileOperator - CCharsetOperator - CDataObjectOperator - CFileOperatorFile operations - CGlobalSettingStation - CGpgAdvancedOperator - CGpgBasicOperatorBasic operation collection - CGpgCommandExecutorExtra commands related to GPG - CGpgFileOpera - CGpgKeyGetter - CGpgImportedKey - CGpgImportInformation - CGpgKeyImportExporter - CGpgKeyManager - CGpgKeyOpera - CGpgUIDOperator - CKeyPackageOperatorGive the possibility to import or export a key package - CPassphraseGeneratorThe PassphraseGenerator class - CGpgDecryptResultAnalyse - CGpgEncryptResultAnalyse - CGpgResultAnalyse - CGpgSignResultAnalyse - CGpgVerifyResultAnalyse - C_result_ref_deletorResult Deleter - CGpgConstants - CGpgContextInitArgs - CGpgContext - C_ctx_ref_deleter - CChannelObjectObject which in channel system - CSingletonStorage - CSingletonStorageCollection - CSingletonFunctionObject - CGenKeyInfo - CGpgInfoUse to record some info about gnupg - CGpgData - C_data_ref_deleter - CGpgKey - C_key_ref_deleter - CGpgKeySignature - CGpgSignature - CGpgSubKey - CGpgTOFUInfo - CGpgUID + CCacheManager + CCharsetOperator + CCoreSignalStation + CDataObjectOperator + CFileOperatorFile operations + CGlobalSettingStation + CGpgAdvancedOperator + CGpgBasicOperatorBasic operation collection + CGpgCommandExecutorExtra commands related to GPG + CGpgFileOpera + CGpgKeyGetter + CGpgImportedKey + CGpgImportInformation + CGpgKeyImportExporter + CGpgKeyManager + CGpgKeyOpera + CGpgUIDOperator + CKeyPackageOperatorGive the possibility to import or export a key package + CPassphraseGeneratorThe PassphraseGenerator class + CGpgDecryptResultAnalyse + CGpgEncryptResultAnalyse + CGpgResultAnalyse + CGpgSignResultAnalyse + CGpgVerifyResultAnalyse + C_result_ref_deletorResult Deleter + CGpgConstants + CGpgContextInitArgs + CGpgContext + C_ctx_ref_deleter + CChannelObjectObject which in channel system + CSingletonStorage + CSingletonStorageCollection + CSingletonFunctionObject + CGenKeyInfo + CGpgInfoUse to record some info about gnupg + CGpgData + C_data_ref_deleter + CGpgKey + C_key_ref_deleter + CGpgKeySignature + CGpgSignature + CGpgSubKey + CGpgTOFUInfo + CGpgUID diff --git a/docs/html/navtreedata.js b/docs/html/navtreedata.js index c8fa9ed2..decd429f 100644 --- a/docs/html/navtreedata.js +++ b/docs/html/navtreedata.js @@ -53,12 +53,13 @@ var NAVTREE = var NAVTREEINDEX = [ "AboutDialog_8h_source.html", -"classGpgFrontend_1_1GpgBasicOperator.html#afad990a43ab06a060a93db9948ebb740", -"classGpgFrontend_1_1GpgSubKey.html#ab9208165c74b93fa8c5b7a06cd808f56", -"classGpgFrontend_1_1UI_1_1FindWidget.html#af420832720942dd1e7cb3f3841c7cbfe", -"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a083cd080527b4e1f1009ca6d3152894f", -"classGpgFrontend_1_1UI_1_1MainWindow.html#ab570d33667a3f8fe189f2d81b81f85be", -"dir_da5c6b39c0a2f54e57df6799511cd3ab.html" +"classGpgFrontend_1_1GpgAdvancedOperator.html#a387ad457bb729f340f680d0b743733ad", +"classGpgFrontend_1_1GpgSignature.html#a859b4a3788c8490937f954d92686f490", +"classGpgFrontend_1_1UI_1_1FilePage.html#ab42d1dea33d8d33e21418bf805fd66a0", +"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a73a47d699a33419a6cc265d55b89be50", +"classGpgFrontend_1_1UI_1_1MainWindow.html#a79b83f536a7c4299eaa3d22e4e875227", +"classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9156325af41c378f8d7e77187d445c12", +"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a43663cd2d086299a0f0304f5bde9c663" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/docs/html/navtreeindex0.js b/docs/html/navtreeindex0.js index ed19c70d..98b3a1c3 100644 --- a/docs/html/navtreeindex0.js +++ b/docs/html/navtreeindex0.js @@ -2,18 +2,20 @@ var NAVTREEINDEX0 = { "AboutDialog_8h_source.html":[3,0,0,1,0,1,0], "ArchiveFileOperator_8h_source.html":[3,0,0,0,1,3], -"CharsetOperator_8h_source.html":[3,0,0,0,1,4], +"CacheManager_8h_source.html":[3,0,0,0,1,4], +"CharsetOperator_8h_source.html":[3,0,0,0,1,5], "CoreCommonUtil_8h_source.html":[3,0,0,0,0,0], +"CoreSignalStation_8h_source.html":[3,0,0,0,1,6], "CtxCheckTask_8h_source.html":[3,0,0,0,3,0], -"DataObjectOperator_8h_source.html":[3,0,0,0,1,5], +"DataObjectOperator_8h_source.html":[3,0,0,0,1,7], "ExportKeyPackageDialog_8h_source.html":[3,0,0,1,0,2,0], -"FileOperator_8h_source.html":[3,0,0,0,1,6], +"FileOperator_8h_source.html":[3,0,0,0,1,8], "FilePage_8h_source.html":[3,0,0,1,4,0], "FileReadTask_8h_source.html":[3,0,0,0,3,1], "FindWidget_8h_source.html":[3,0,0,1,4,1], "GeneralDialog_8h_source.html":[3,0,0,1,0,6], "GeneralMainWindow_8h_source.html":[3,0,0,1,1,0], -"GlobalSettingStation_8h_source.html":[3,0,0,0,1,7], +"GlobalSettingStation_8h_source.html":[3,0,0,0,1,9], "GnupgTab_8h_source.html":[3,0,0,1,0,1,1], "GpgAdvancedOperator_8h_source.html":[3,0,0,0,1,1,0], "GpgBasicOperator_8h_source.html":[3,0,0,0,1,1,1], @@ -54,7 +56,7 @@ var NAVTREEINDEX0 = "KeyList_8h_source.html":[3,0,0,1,4,4], "KeyMgmt_8h_source.html":[3,0,0,1,1,1], "KeyNewUIDDialog_8h_source.html":[3,0,0,1,0,4,1], -"KeyPackageOperator_8h_source.html":[3,0,0,0,1,8], +"KeyPackageOperator_8h_source.html":[3,0,0,0,1,10], "KeyPairDetailTab_8h_source.html":[3,0,0,1,0,4,2], "KeyPairOperaTab_8h_source.html":[3,0,0,1,0,4,3], "KeyPairSubkeyTab_8h_source.html":[3,0,0,1,0,4,4], @@ -68,7 +70,7 @@ var NAVTREEINDEX0 = "KeygenDialog_8h_source.html":[3,0,0,1,0,3,0], "ListedKeyServerTestTask_8h_source.html":[3,0,0,1,3,2], "MainWindow_8h_source.html":[3,0,0,1,1,2], -"PassphraseGenerator_8h_source.html":[3,0,0,0,1,9], +"PassphraseGenerator_8h_source.html":[3,0,0,0,1,11], "PlainTextEditorPage_8h_source.html":[3,0,0,1,4,5], "ProxyConnectionTestThread_8h_source.html":[3,0,0,1,3,3], "QuitDialog_8h_source.html":[3,0,0,1,0,7], @@ -102,152 +104,150 @@ var NAVTREEINDEX0 = "classGpgFrontend_1_1ArchiveFileOperator.html#a872fc2bfdd8876d5bf6bc9893ff0d963":[2,0,0,4,0], "classGpgFrontend_1_1ArchiveFileOperator.html#ae2ca57d6af2f27560e97430a9eee3505":[2,0,0,4,2], "classGpgFrontend_1_1ArchiveFileOperator.html#ae80009defc3c4a94a7180966fb82a0d8":[2,0,0,4,1], -"classGpgFrontend_1_1ChannelObject.html":[2,0,0,31], -"classGpgFrontend_1_1ChannelObject.html#a0e13a4bff1cfb679f68a3a2590a3b1b8":[2,0,0,31,2], -"classGpgFrontend_1_1ChannelObject.html#a66295bb572e98fc2fad3afce763ac311":[2,0,0,31,5], -"classGpgFrontend_1_1ChannelObject.html#a68ad2a19339e3cd50626fe0eaad17ccd":[2,0,0,31,1], -"classGpgFrontend_1_1ChannelObject.html#aa3b19cad6d873b314bba32a3dae85f09":[2,0,0,31,4], -"classGpgFrontend_1_1ChannelObject.html#aece9c525c49900734bc1bebf85b644ef":[2,0,0,31,3], -"classGpgFrontend_1_1ChannelObject.html#aedbf32eddc701e521bd8e790ef208da0":[2,0,0,31,0], -"classGpgFrontend_1_1ChannelObject.html#aee5f8a5575adbdf522da4dd195c091ee":[2,0,0,31,6], -"classGpgFrontend_1_1CharsetOperator.html":[2,0,0,5], -"classGpgFrontend_1_1CharsetOperator.html#a5a444a0fbd508f6af6a56f4151c21c1f":[2,0,0,5,2], -"classGpgFrontend_1_1CharsetOperator.html#a5ec0034ec02c373471b9b23fa988829b":[2,0,0,5,1], -"classGpgFrontend_1_1CharsetOperator.html#a707198805867df0e92b2db162da0f044":[2,0,0,5,0], +"classGpgFrontend_1_1CacheManager.html":[2,0,0,5], +"classGpgFrontend_1_1CacheManager.html#a3cbc3238638dcd8b4722bfdf560c73fe":[2,0,0,5,2], +"classGpgFrontend_1_1CacheManager.html#aaac1a2b86867831713efa5f092abf985":[2,0,0,5,1], +"classGpgFrontend_1_1CacheManager.html#ae5246d24c5dbafb8f9abb561217ea235":[2,0,0,5,0], +"classGpgFrontend_1_1ChannelObject.html":[2,0,0,33], +"classGpgFrontend_1_1ChannelObject.html#a0e13a4bff1cfb679f68a3a2590a3b1b8":[2,0,0,33,2], +"classGpgFrontend_1_1ChannelObject.html#a66295bb572e98fc2fad3afce763ac311":[2,0,0,33,5], +"classGpgFrontend_1_1ChannelObject.html#a68ad2a19339e3cd50626fe0eaad17ccd":[2,0,0,33,1], +"classGpgFrontend_1_1ChannelObject.html#aa3b19cad6d873b314bba32a3dae85f09":[2,0,0,33,4], +"classGpgFrontend_1_1ChannelObject.html#aece9c525c49900734bc1bebf85b644ef":[2,0,0,33,3], +"classGpgFrontend_1_1ChannelObject.html#aedbf32eddc701e521bd8e790ef208da0":[2,0,0,33,0], +"classGpgFrontend_1_1ChannelObject.html#aee5f8a5575adbdf522da4dd195c091ee":[2,0,0,33,6], +"classGpgFrontend_1_1CharsetOperator.html":[2,0,0,6], +"classGpgFrontend_1_1CharsetOperator.html#a5a444a0fbd508f6af6a56f4151c21c1f":[2,0,0,6,2], +"classGpgFrontend_1_1CharsetOperator.html#a5ec0034ec02c373471b9b23fa988829b":[2,0,0,6,1], +"classGpgFrontend_1_1CharsetOperator.html#a707198805867df0e92b2db162da0f044":[2,0,0,6,0], "classGpgFrontend_1_1CoreCommonUtil.html":[2,0,0,2], "classGpgFrontend_1_1CoreCommonUtil.html#a0c5bfd282e20abb390aa01023ee27682":[2,0,0,2,0], -"classGpgFrontend_1_1CoreCommonUtil.html#a84e293c5806f34231e682426092ed298":[2,0,0,2,3], +"classGpgFrontend_1_1CoreCommonUtil.html#a354c4f7cb7f102964e43012fc10d1e52":[2,0,0,2,3], +"classGpgFrontend_1_1CoreCommonUtil.html#a4d36aa8744c3fb246080075ca1d81c9a":[2,0,0,2,7], +"classGpgFrontend_1_1CoreCommonUtil.html#a62bb080c6c04970fd2e02a460ea91d2a":[2,0,0,2,4], +"classGpgFrontend_1_1CoreCommonUtil.html#a7689d3abb54a1cef6a826fc944d9dec7":[2,0,0,2,2], +"classGpgFrontend_1_1CoreCommonUtil.html#a84e293c5806f34231e682426092ed298":[2,0,0,2,6], "classGpgFrontend_1_1CoreCommonUtil.html#a8588dfa6ccb57c055f022b13e2da1e7c":[2,0,0,2,1], -"classGpgFrontend_1_1CoreCommonUtil.html#ae78bbd20a519cbd8b4384e443c98231e":[2,0,0,2,2], -"classGpgFrontend_1_1DataObjectOperator.html":[2,0,0,6], -"classGpgFrontend_1_1DataObjectOperator.html#a1f5c8469197b382a8c0974d64114dfcd":[2,0,0,6,2], -"classGpgFrontend_1_1DataObjectOperator.html#a24c9cdbe9256e332ac93d6dc28c76b90":[2,0,0,6,11], -"classGpgFrontend_1_1DataObjectOperator.html#a3a8ae5c36fec01d0d5c3e5f9aed457a6":[2,0,0,6,0], -"classGpgFrontend_1_1DataObjectOperator.html#a3c195f8e4c30d95be14a6d43e9282601":[2,0,0,6,8], -"classGpgFrontend_1_1DataObjectOperator.html#a4bc3dbecd688c2ac1e01624a4d7b65b9":[2,0,0,6,4], -"classGpgFrontend_1_1DataObjectOperator.html#a56c0c031cd327207260c73d1885dbdca":[2,0,0,6,6], -"classGpgFrontend_1_1DataObjectOperator.html#a6190acb6a4b9dc4350cb346fb4a03a74":[2,0,0,6,1], -"classGpgFrontend_1_1DataObjectOperator.html#a6b357780482f0e0c021ad55a81eb37cf":[2,0,0,6,3], -"classGpgFrontend_1_1DataObjectOperator.html#a6d38d25c91c33c48d083ec4de051108a":[2,0,0,6,7], -"classGpgFrontend_1_1DataObjectOperator.html#a9fc92c7d497f2a2057776adfca40e8ca":[2,0,0,6,10], -"classGpgFrontend_1_1DataObjectOperator.html#ae409c3562c3e08931daa17f5790c508b":[2,0,0,6,9], -"classGpgFrontend_1_1DataObjectOperator.html#ae6762d4f0f5ca2e83f7c1508cd25cc21":[2,0,0,6,5], -"classGpgFrontend_1_1FileOperator.html":[2,0,0,7], -"classGpgFrontend_1_1FileOperator.html#a08baef750a723ee709804120a34d19c9":[2,0,0,7,0], -"classGpgFrontend_1_1FileOperator.html#a28a3572dc01192b6a4d50b544181084c":[2,0,0,7,1], -"classGpgFrontend_1_1FileOperator.html#a2f21ef4a88448b1eddf756302913d338":[2,0,0,7,3], -"classGpgFrontend_1_1FileOperator.html#a51121c94dc32a83d7073fbe7138b603b":[2,0,0,7,4], -"classGpgFrontend_1_1FileOperator.html#ad4424bce4f22ae75a16c542dfb4ddf0a":[2,0,0,7,2], -"classGpgFrontend_1_1GenKeyInfo.html":[2,0,0,35], -"classGpgFrontend_1_1GenKeyInfo.html#a01baca0288fe2c4574a8b3d9ae8552d8":[2,0,0,35,62], -"classGpgFrontend_1_1GenKeyInfo.html#a03230bfec48cfdf9d6f615c08a07b717":[2,0,0,35,49], -"classGpgFrontend_1_1GenKeyInfo.html#a06f95a8d26da79bcbe7d51e266879a94":[2,0,0,35,23], -"classGpgFrontend_1_1GenKeyInfo.html#a0b1612421148b86919b7130ed148ca51":[2,0,0,35,12], -"classGpgFrontend_1_1GenKeyInfo.html#a0bda4b4161d805582869ec0e56ade07c":[2,0,0,35,7], -"classGpgFrontend_1_1GenKeyInfo.html#a168d6fe5252812f5984ba6d8046c7741":[2,0,0,35,15], -"classGpgFrontend_1_1GenKeyInfo.html#a1944c0da5cc25ca3c0df404d5b9a07e9":[2,0,0,35,67], -"classGpgFrontend_1_1GenKeyInfo.html#a1a01518b24d40d95e187ef73f4dcd52a":[2,0,0,35,35], -"classGpgFrontend_1_1GenKeyInfo.html#a2226ccb2b0a53b7a8d2d11507efe27d6":[2,0,0,35,46], -"classGpgFrontend_1_1GenKeyInfo.html#a28ed8a65243e5bc69403305752c2cdc9":[2,0,0,35,24], -"classGpgFrontend_1_1GenKeyInfo.html#a2a2128871ff307439be30105d3845be9":[2,0,0,35,30], -"classGpgFrontend_1_1GenKeyInfo.html#a2f156598d0f080ddf219f28f47c5addf":[2,0,0,35,51], -"classGpgFrontend_1_1GenKeyInfo.html#a34392244d8cd477a590d02f02567a665":[2,0,0,35,58], -"classGpgFrontend_1_1GenKeyInfo.html#a34eca1662ba8d4645751f3ee66582b04":[2,0,0,35,1], -"classGpgFrontend_1_1GenKeyInfo.html#a3885a3e81bdae51d324d4265403d664c":[2,0,0,35,55], -"classGpgFrontend_1_1GenKeyInfo.html#a3d8347402309098d8d41e97b38a9336d":[2,0,0,35,50], -"classGpgFrontend_1_1GenKeyInfo.html#a3e8a1d4943b283a6c6042e4e0bba02a8":[2,0,0,35,56], -"classGpgFrontend_1_1GenKeyInfo.html#a3ed156b4414de8696db53e0539627743":[2,0,0,35,48], -"classGpgFrontend_1_1GenKeyInfo.html#a40a42ad975499566de124296c19e6c55":[2,0,0,35,29], -"classGpgFrontend_1_1GenKeyInfo.html#a48c113454bd67cd0d918da0469924727":[2,0,0,35,57], -"classGpgFrontend_1_1GenKeyInfo.html#a4927a9091fa2b2f68f6b60ce78ab2fe9":[2,0,0,35,6], -"classGpgFrontend_1_1GenKeyInfo.html#a4d1962deb33d9848b9b43343bfa55045":[2,0,0,35,65], -"classGpgFrontend_1_1GenKeyInfo.html#a4ee4a0659e76376d9bfc527c334392e1":[2,0,0,35,17], -"classGpgFrontend_1_1GenKeyInfo.html#a4fa1fb60b3e623d3e96d45b8156b4819":[2,0,0,35,53], -"classGpgFrontend_1_1GenKeyInfo.html#a54aa9ef123265ff945af6a4ec091fd90":[2,0,0,35,63], -"classGpgFrontend_1_1GenKeyInfo.html#a6102b91607b07598e1c3f262d66bbcdd":[2,0,0,35,47], -"classGpgFrontend_1_1GenKeyInfo.html#a656c81d56f77350184f9a94db1a3ce05":[2,0,0,35,37], -"classGpgFrontend_1_1GenKeyInfo.html#a65ebc487e0e64c325f65474c812615f7":[2,0,0,35,41], -"classGpgFrontend_1_1GenKeyInfo.html#a6819b0ca3ef7712b85ae320030cde023":[2,0,0,35,16], -"classGpgFrontend_1_1GenKeyInfo.html#a6a65ba347156373b6cf98eb8e851d28d":[2,0,0,35,2], -"classGpgFrontend_1_1GenKeyInfo.html#a6e54dd17a9e16a80e100a1a367f6e41c":[2,0,0,35,54], -"classGpgFrontend_1_1GenKeyInfo.html#a742e5bcc903e8e01b69e568659fe3e20":[2,0,0,35,59], -"classGpgFrontend_1_1GenKeyInfo.html#a76721be08c18907762ba6f6ccc4afc8a":[2,0,0,35,4], -"classGpgFrontend_1_1GenKeyInfo.html#a7b8c6d162f1cb8a74e3ff150908270f5":[2,0,0,35,61], -"classGpgFrontend_1_1GenKeyInfo.html#a7eda73ff0625a635f041365c21531c60":[2,0,0,35,0], -"classGpgFrontend_1_1GenKeyInfo.html#a848181796a99bec8d32dc5eac240ee01":[2,0,0,35,28], -"classGpgFrontend_1_1GenKeyInfo.html#a864407216cbdbef9e7b35e6be694d3ef":[2,0,0,35,43], -"classGpgFrontend_1_1GenKeyInfo.html#a890ee16ef6088570360a073a6b531c89":[2,0,0,35,9], -"classGpgFrontend_1_1GenKeyInfo.html#a947886456f5699241b1c1b9332e4b29e":[2,0,0,35,36], -"classGpgFrontend_1_1GenKeyInfo.html#a965014232f6de22c6d33320231ca4454":[2,0,0,35,34], -"classGpgFrontend_1_1GenKeyInfo.html#a9e3cec33031de7d3d2728bd6883caece":[2,0,0,35,66], -"classGpgFrontend_1_1GenKeyInfo.html#aa3bfeda7fc7c83dc8d48ee2b80780c3a":[2,0,0,35,38], -"classGpgFrontend_1_1GenKeyInfo.html#aa8fdbf7db3cb7e7a013fcf9c18cf069a":[2,0,0,35,45], -"classGpgFrontend_1_1GenKeyInfo.html#aabdf981c65a0efde1e8905441b9b9c87":[2,0,0,35,18], -"classGpgFrontend_1_1GenKeyInfo.html#aac51d251682ed1bc1090416ebfeba4de":[2,0,0,35,32], -"classGpgFrontend_1_1GenKeyInfo.html#aaf8ab7c6564a2836837a537111d6f5b4":[2,0,0,35,20], -"classGpgFrontend_1_1GenKeyInfo.html#ab97cbf3c5d6e30a6c85e8ca82b1ccfe3":[2,0,0,35,64], -"classGpgFrontend_1_1GenKeyInfo.html#ab9f9775fd6363fba372bd0bcc2532892":[2,0,0,35,3], -"classGpgFrontend_1_1GenKeyInfo.html#abb3e1366dca0288bdc42123e55d77335":[2,0,0,35,8], -"classGpgFrontend_1_1GenKeyInfo.html#ac0dbb2d89b1e5f9b272679ba3f24314e":[2,0,0,35,13], -"classGpgFrontend_1_1GenKeyInfo.html#ac211a7a615805ae97ff284b46abfeab7":[2,0,0,35,10], -"classGpgFrontend_1_1GenKeyInfo.html#ac5f52f74566618c71a29bdc5e70fce2e":[2,0,0,35,33], -"classGpgFrontend_1_1GenKeyInfo.html#ac629312630a78e32ee36ba0ff30bc9ff":[2,0,0,35,5], -"classGpgFrontend_1_1GenKeyInfo.html#acd9f7742b739e1db60bd50489690dec1":[2,0,0,35,39], -"classGpgFrontend_1_1GenKeyInfo.html#ad04a906300bea028c6fb6b1b2da1d149":[2,0,0,35,22], -"classGpgFrontend_1_1GenKeyInfo.html#ad47ceeb1ccfa8862843034e51b4d8be7":[2,0,0,35,19], -"classGpgFrontend_1_1GenKeyInfo.html#ad899d9ac85bb4fe39613b3207fd676c6":[2,0,0,35,60], -"classGpgFrontend_1_1GenKeyInfo.html#ad972292c408cb83c08e739327795a5f0":[2,0,0,35,26], -"classGpgFrontend_1_1GenKeyInfo.html#adbcddd0fa0a273f9b77fe1297633dabc":[2,0,0,35,21], -"classGpgFrontend_1_1GenKeyInfo.html#adcd9c4f3e75f989810988e0bc81d401f":[2,0,0,35,31], -"classGpgFrontend_1_1GenKeyInfo.html#ae461a553176ad1ab0c1121ea6de6c8c2":[2,0,0,35,11], -"classGpgFrontend_1_1GenKeyInfo.html#ae744395012e4dcb9734ad5a30aa8ed75":[2,0,0,35,40], -"classGpgFrontend_1_1GenKeyInfo.html#aea247381c21896f5371bb813ca665329":[2,0,0,35,42], -"classGpgFrontend_1_1GenKeyInfo.html#aed17aae3218f74cea7273c9dd853a539":[2,0,0,35,52], -"classGpgFrontend_1_1GenKeyInfo.html#aeef7697c91b5b5998088979e09332380":[2,0,0,35,27], -"classGpgFrontend_1_1GenKeyInfo.html#af6a79124a4571ff7f37c1c5e6c1a9415":[2,0,0,35,25], -"classGpgFrontend_1_1GenKeyInfo.html#afb8315b6612c64b3921b72df98ebcc74":[2,0,0,35,14], -"classGpgFrontend_1_1GenKeyInfo.html#afe1760d4ead397f6096925290a38e1a4":[2,0,0,35,44], -"classGpgFrontend_1_1GlobalSettingStation.html":[2,0,0,8], -"classGpgFrontend_1_1GlobalSettingStation.html#a0b3780564305e9b210d66ef377c21565":[2,0,0,8,6], -"classGpgFrontend_1_1GlobalSettingStation.html#a14433405831283cd95091d741614d03b":[2,0,0,8,11], -"classGpgFrontend_1_1GlobalSettingStation.html#a1818e08063d6a886975f77354fc5d85c":[2,0,0,8,21], -"classGpgFrontend_1_1GlobalSettingStation.html#a1d94a126c78ac01ec01f10d2ce575388":[2,0,0,8,20], -"classGpgFrontend_1_1GlobalSettingStation.html#a1e1993b72d0ad09d247b643b4447e57c":[2,0,0,8,12], -"classGpgFrontend_1_1GlobalSettingStation.html#a25c1b45a2ccdc21dd2dcba58866169fb":[2,0,0,8,17], -"classGpgFrontend_1_1GlobalSettingStation.html#a385ae4ab6ad5b17742a5405fa693d789":[2,0,0,8,5], -"classGpgFrontend_1_1GlobalSettingStation.html#a4d04bb665571921421b853f18b8b300a":[2,0,0,8,14], -"classGpgFrontend_1_1GlobalSettingStation.html#a58fff8a42f98ad7989bffb8322344cd6":[2,0,0,8,16], -"classGpgFrontend_1_1GlobalSettingStation.html#a6459653a71cc8285fa554943c7fb3ca7":[2,0,0,8,18], -"classGpgFrontend_1_1GlobalSettingStation.html#a657a17d85d06a3455a2d3ed0782f76a2":[2,0,0,8,3], -"classGpgFrontend_1_1GlobalSettingStation.html#a678f8ba120f9ad050d0adfec4476d7ac":[2,0,0,8,19], -"classGpgFrontend_1_1GlobalSettingStation.html#a73d553587447165c5c7b7a9704771963":[2,0,0,8,2], -"classGpgFrontend_1_1GlobalSettingStation.html#a7da9b08291ef2391892f5c9375b8db23":[2,0,0,8,7], -"classGpgFrontend_1_1GlobalSettingStation.html#aa93b21af9ac6649d5749c83c809f5b00":[2,0,0,8,10], -"classGpgFrontend_1_1GlobalSettingStation.html#ab618fef68cfd4ff6e42d4a4aa8ea94bb":[2,0,0,8,22], -"classGpgFrontend_1_1GlobalSettingStation.html#abdc6dda369d4214e43ffa2930f7386b0":[2,0,0,8,0], -"classGpgFrontend_1_1GlobalSettingStation.html#ac061ac8e5308f67ea52b98888bbb2e8d":[2,0,0,8,13], -"classGpgFrontend_1_1GlobalSettingStation.html#ad0600d475f6758503b1347722e2a933a":[2,0,0,8,15], -"classGpgFrontend_1_1GlobalSettingStation.html#ae9d1da3d01c4a834120968636596c3c3":[2,0,0,8,4], -"classGpgFrontend_1_1GlobalSettingStation.html#af484ca46c5df831a9dd76f3a88d66332":[2,0,0,8,9], -"classGpgFrontend_1_1GlobalSettingStation.html#af700161900e623a0ea14261d51616451":[2,0,0,8,1], -"classGpgFrontend_1_1GlobalSettingStation.html#afa99ddc25c0d5fd59a4c5f0e61d13830":[2,0,0,8,23], -"classGpgFrontend_1_1GlobalSettingStation.html#afc1aa3dec55ae4e741f92fce1140a2d0":[2,0,0,8,8], -"classGpgFrontend_1_1GpgAdvancedOperator.html":[2,0,0,9], -"classGpgFrontend_1_1GpgAdvancedOperator.html#a209f6d1d664ab672437198dc10ed8226":[2,0,0,9,3], -"classGpgFrontend_1_1GpgAdvancedOperator.html#a387ad457bb729f340f680d0b743733ad":[2,0,0,9,5], -"classGpgFrontend_1_1GpgAdvancedOperator.html#a5801bf4ea7391cbcc60efd2513d41041":[2,0,0,9,4], -"classGpgFrontend_1_1GpgAdvancedOperator.html#a6876b6ee63ff7147c274e4f9538d29ce":[2,0,0,9,2], -"classGpgFrontend_1_1GpgAdvancedOperator.html#a71eb87ed095754ee1e9fa79125240f3e":[2,0,0,9,1], -"classGpgFrontend_1_1GpgAdvancedOperator.html#a9233156767f1d45272b95decd18241e3":[2,0,0,9,0], -"classGpgFrontend_1_1GpgBasicOperator.html":[2,0,0,10], -"classGpgFrontend_1_1GpgBasicOperator.html#a08906cf2bc2ddad8489438610f388f8a":[2,0,0,10,4], -"classGpgFrontend_1_1GpgBasicOperator.html#a11845a9a3ea2941e14faa9130f0ac9ef":[2,0,0,10,2], -"classGpgFrontend_1_1GpgBasicOperator.html#a139be86330f88e5f833aa24263a3b2ae":[2,0,0,10,0], -"classGpgFrontend_1_1GpgBasicOperator.html#a32e1eac6bb0f322588ae75ae36a9884a":[2,0,0,10,3], -"classGpgFrontend_1_1GpgBasicOperator.html#a78f37b8d5afd6c0248665a4415f880cf":[2,0,0,10,6], -"classGpgFrontend_1_1GpgBasicOperator.html#a8f4ef57e941a066ad9d070eee51e2073":[2,0,0,10,5], -"classGpgFrontend_1_1GpgBasicOperator.html#a988d7e65e85fc7a578f26300332a65d3":[2,0,0,10,8], -"classGpgFrontend_1_1GpgBasicOperator.html#a9ea9e81194917e08f46eb657281b7953":[2,0,0,10,1], -"classGpgFrontend_1_1GpgBasicOperator.html#ad6ea3596ba7d7543fb1b8233d09996df":[2,0,0,10,7], -"classGpgFrontend_1_1GpgBasicOperator.html#af0347cb28ff73b2250395ceaa9001509":[2,0,0,10,9] +"classGpgFrontend_1_1CoreCommonUtil.html#ae78bbd20a519cbd8b4384e443c98231e":[2,0,0,2,5], +"classGpgFrontend_1_1CoreSignalStation.html":[2,0,0,7], +"classGpgFrontend_1_1CoreSignalStation.html#a0c5893909726b919ea733de9906cfb36":[2,0,0,7,0], +"classGpgFrontend_1_1CoreSignalStation.html#a36c316a2a76fdf7c3e74dfa5f8ed6b15":[2,0,0,7,3], +"classGpgFrontend_1_1CoreSignalStation.html#aac91061a578d4afe738495b5c6b3883f":[2,0,0,7,2], +"classGpgFrontend_1_1CoreSignalStation.html#af30315ec5659ca05557b4f21f5297b08":[2,0,0,7,1], +"classGpgFrontend_1_1DataObjectOperator.html":[2,0,0,8], +"classGpgFrontend_1_1DataObjectOperator.html#a1f5c8469197b382a8c0974d64114dfcd":[2,0,0,8,2], +"classGpgFrontend_1_1DataObjectOperator.html#a24c9cdbe9256e332ac93d6dc28c76b90":[2,0,0,8,11], +"classGpgFrontend_1_1DataObjectOperator.html#a3a8ae5c36fec01d0d5c3e5f9aed457a6":[2,0,0,8,0], +"classGpgFrontend_1_1DataObjectOperator.html#a3c195f8e4c30d95be14a6d43e9282601":[2,0,0,8,8], +"classGpgFrontend_1_1DataObjectOperator.html#a4bc3dbecd688c2ac1e01624a4d7b65b9":[2,0,0,8,4], +"classGpgFrontend_1_1DataObjectOperator.html#a56c0c031cd327207260c73d1885dbdca":[2,0,0,8,6], +"classGpgFrontend_1_1DataObjectOperator.html#a6190acb6a4b9dc4350cb346fb4a03a74":[2,0,0,8,1], +"classGpgFrontend_1_1DataObjectOperator.html#a6b357780482f0e0c021ad55a81eb37cf":[2,0,0,8,3], +"classGpgFrontend_1_1DataObjectOperator.html#a6d38d25c91c33c48d083ec4de051108a":[2,0,0,8,7], +"classGpgFrontend_1_1DataObjectOperator.html#a9fc92c7d497f2a2057776adfca40e8ca":[2,0,0,8,10], +"classGpgFrontend_1_1DataObjectOperator.html#ae409c3562c3e08931daa17f5790c508b":[2,0,0,8,9], +"classGpgFrontend_1_1DataObjectOperator.html#ae6762d4f0f5ca2e83f7c1508cd25cc21":[2,0,0,8,5], +"classGpgFrontend_1_1FileOperator.html":[2,0,0,9], +"classGpgFrontend_1_1FileOperator.html#a08baef750a723ee709804120a34d19c9":[2,0,0,9,0], +"classGpgFrontend_1_1FileOperator.html#a28a3572dc01192b6a4d50b544181084c":[2,0,0,9,1], +"classGpgFrontend_1_1FileOperator.html#a2f21ef4a88448b1eddf756302913d338":[2,0,0,9,3], +"classGpgFrontend_1_1FileOperator.html#a51121c94dc32a83d7073fbe7138b603b":[2,0,0,9,4], +"classGpgFrontend_1_1FileOperator.html#ad4424bce4f22ae75a16c542dfb4ddf0a":[2,0,0,9,2], +"classGpgFrontend_1_1GenKeyInfo.html":[2,0,0,37], +"classGpgFrontend_1_1GenKeyInfo.html#a01baca0288fe2c4574a8b3d9ae8552d8":[2,0,0,37,62], +"classGpgFrontend_1_1GenKeyInfo.html#a03230bfec48cfdf9d6f615c08a07b717":[2,0,0,37,49], +"classGpgFrontend_1_1GenKeyInfo.html#a06f95a8d26da79bcbe7d51e266879a94":[2,0,0,37,23], +"classGpgFrontend_1_1GenKeyInfo.html#a0b1612421148b86919b7130ed148ca51":[2,0,0,37,12], +"classGpgFrontend_1_1GenKeyInfo.html#a0bda4b4161d805582869ec0e56ade07c":[2,0,0,37,7], +"classGpgFrontend_1_1GenKeyInfo.html#a168d6fe5252812f5984ba6d8046c7741":[2,0,0,37,15], +"classGpgFrontend_1_1GenKeyInfo.html#a1944c0da5cc25ca3c0df404d5b9a07e9":[2,0,0,37,67], +"classGpgFrontend_1_1GenKeyInfo.html#a1a01518b24d40d95e187ef73f4dcd52a":[2,0,0,37,35], +"classGpgFrontend_1_1GenKeyInfo.html#a2226ccb2b0a53b7a8d2d11507efe27d6":[2,0,0,37,46], +"classGpgFrontend_1_1GenKeyInfo.html#a28ed8a65243e5bc69403305752c2cdc9":[2,0,0,37,24], +"classGpgFrontend_1_1GenKeyInfo.html#a2a2128871ff307439be30105d3845be9":[2,0,0,37,30], +"classGpgFrontend_1_1GenKeyInfo.html#a2f156598d0f080ddf219f28f47c5addf":[2,0,0,37,51], +"classGpgFrontend_1_1GenKeyInfo.html#a34392244d8cd477a590d02f02567a665":[2,0,0,37,58], +"classGpgFrontend_1_1GenKeyInfo.html#a34eca1662ba8d4645751f3ee66582b04":[2,0,0,37,1], +"classGpgFrontend_1_1GenKeyInfo.html#a3885a3e81bdae51d324d4265403d664c":[2,0,0,37,55], +"classGpgFrontend_1_1GenKeyInfo.html#a3d8347402309098d8d41e97b38a9336d":[2,0,0,37,50], +"classGpgFrontend_1_1GenKeyInfo.html#a3e8a1d4943b283a6c6042e4e0bba02a8":[2,0,0,37,56], +"classGpgFrontend_1_1GenKeyInfo.html#a3ed156b4414de8696db53e0539627743":[2,0,0,37,48], +"classGpgFrontend_1_1GenKeyInfo.html#a40a42ad975499566de124296c19e6c55":[2,0,0,37,29], +"classGpgFrontend_1_1GenKeyInfo.html#a48c113454bd67cd0d918da0469924727":[2,0,0,37,57], +"classGpgFrontend_1_1GenKeyInfo.html#a4927a9091fa2b2f68f6b60ce78ab2fe9":[2,0,0,37,6], +"classGpgFrontend_1_1GenKeyInfo.html#a4d1962deb33d9848b9b43343bfa55045":[2,0,0,37,65], +"classGpgFrontend_1_1GenKeyInfo.html#a4ee4a0659e76376d9bfc527c334392e1":[2,0,0,37,17], +"classGpgFrontend_1_1GenKeyInfo.html#a4fa1fb60b3e623d3e96d45b8156b4819":[2,0,0,37,53], +"classGpgFrontend_1_1GenKeyInfo.html#a54aa9ef123265ff945af6a4ec091fd90":[2,0,0,37,63], +"classGpgFrontend_1_1GenKeyInfo.html#a6102b91607b07598e1c3f262d66bbcdd":[2,0,0,37,47], +"classGpgFrontend_1_1GenKeyInfo.html#a656c81d56f77350184f9a94db1a3ce05":[2,0,0,37,37], +"classGpgFrontend_1_1GenKeyInfo.html#a65ebc487e0e64c325f65474c812615f7":[2,0,0,37,41], +"classGpgFrontend_1_1GenKeyInfo.html#a6819b0ca3ef7712b85ae320030cde023":[2,0,0,37,16], +"classGpgFrontend_1_1GenKeyInfo.html#a6a65ba347156373b6cf98eb8e851d28d":[2,0,0,37,2], +"classGpgFrontend_1_1GenKeyInfo.html#a6e54dd17a9e16a80e100a1a367f6e41c":[2,0,0,37,54], +"classGpgFrontend_1_1GenKeyInfo.html#a742e5bcc903e8e01b69e568659fe3e20":[2,0,0,37,59], +"classGpgFrontend_1_1GenKeyInfo.html#a76721be08c18907762ba6f6ccc4afc8a":[2,0,0,37,4], +"classGpgFrontend_1_1GenKeyInfo.html#a7b8c6d162f1cb8a74e3ff150908270f5":[2,0,0,37,61], +"classGpgFrontend_1_1GenKeyInfo.html#a7eda73ff0625a635f041365c21531c60":[2,0,0,37,0], +"classGpgFrontend_1_1GenKeyInfo.html#a848181796a99bec8d32dc5eac240ee01":[2,0,0,37,28], +"classGpgFrontend_1_1GenKeyInfo.html#a864407216cbdbef9e7b35e6be694d3ef":[2,0,0,37,43], +"classGpgFrontend_1_1GenKeyInfo.html#a890ee16ef6088570360a073a6b531c89":[2,0,0,37,9], +"classGpgFrontend_1_1GenKeyInfo.html#a947886456f5699241b1c1b9332e4b29e":[2,0,0,37,36], +"classGpgFrontend_1_1GenKeyInfo.html#a965014232f6de22c6d33320231ca4454":[2,0,0,37,34], +"classGpgFrontend_1_1GenKeyInfo.html#a9e3cec33031de7d3d2728bd6883caece":[2,0,0,37,66], +"classGpgFrontend_1_1GenKeyInfo.html#aa3bfeda7fc7c83dc8d48ee2b80780c3a":[2,0,0,37,38], +"classGpgFrontend_1_1GenKeyInfo.html#aa8fdbf7db3cb7e7a013fcf9c18cf069a":[2,0,0,37,45], +"classGpgFrontend_1_1GenKeyInfo.html#aabdf981c65a0efde1e8905441b9b9c87":[2,0,0,37,18], +"classGpgFrontend_1_1GenKeyInfo.html#aac51d251682ed1bc1090416ebfeba4de":[2,0,0,37,32], +"classGpgFrontend_1_1GenKeyInfo.html#aaf8ab7c6564a2836837a537111d6f5b4":[2,0,0,37,20], +"classGpgFrontend_1_1GenKeyInfo.html#ab97cbf3c5d6e30a6c85e8ca82b1ccfe3":[2,0,0,37,64], +"classGpgFrontend_1_1GenKeyInfo.html#ab9f9775fd6363fba372bd0bcc2532892":[2,0,0,37,3], +"classGpgFrontend_1_1GenKeyInfo.html#abb3e1366dca0288bdc42123e55d77335":[2,0,0,37,8], +"classGpgFrontend_1_1GenKeyInfo.html#ac0dbb2d89b1e5f9b272679ba3f24314e":[2,0,0,37,13], +"classGpgFrontend_1_1GenKeyInfo.html#ac211a7a615805ae97ff284b46abfeab7":[2,0,0,37,10], +"classGpgFrontend_1_1GenKeyInfo.html#ac5f52f74566618c71a29bdc5e70fce2e":[2,0,0,37,33], +"classGpgFrontend_1_1GenKeyInfo.html#ac629312630a78e32ee36ba0ff30bc9ff":[2,0,0,37,5], +"classGpgFrontend_1_1GenKeyInfo.html#acd9f7742b739e1db60bd50489690dec1":[2,0,0,37,39], +"classGpgFrontend_1_1GenKeyInfo.html#ad04a906300bea028c6fb6b1b2da1d149":[2,0,0,37,22], +"classGpgFrontend_1_1GenKeyInfo.html#ad47ceeb1ccfa8862843034e51b4d8be7":[2,0,0,37,19], +"classGpgFrontend_1_1GenKeyInfo.html#ad899d9ac85bb4fe39613b3207fd676c6":[2,0,0,37,60], +"classGpgFrontend_1_1GenKeyInfo.html#ad972292c408cb83c08e739327795a5f0":[2,0,0,37,26], +"classGpgFrontend_1_1GenKeyInfo.html#adbcddd0fa0a273f9b77fe1297633dabc":[2,0,0,37,21], +"classGpgFrontend_1_1GenKeyInfo.html#adcd9c4f3e75f989810988e0bc81d401f":[2,0,0,37,31], +"classGpgFrontend_1_1GenKeyInfo.html#ae461a553176ad1ab0c1121ea6de6c8c2":[2,0,0,37,11], +"classGpgFrontend_1_1GenKeyInfo.html#ae744395012e4dcb9734ad5a30aa8ed75":[2,0,0,37,40], +"classGpgFrontend_1_1GenKeyInfo.html#aea247381c21896f5371bb813ca665329":[2,0,0,37,42], +"classGpgFrontend_1_1GenKeyInfo.html#aed17aae3218f74cea7273c9dd853a539":[2,0,0,37,52], +"classGpgFrontend_1_1GenKeyInfo.html#aeef7697c91b5b5998088979e09332380":[2,0,0,37,27], +"classGpgFrontend_1_1GenKeyInfo.html#af6a79124a4571ff7f37c1c5e6c1a9415":[2,0,0,37,25], +"classGpgFrontend_1_1GenKeyInfo.html#afb8315b6612c64b3921b72df98ebcc74":[2,0,0,37,14], +"classGpgFrontend_1_1GenKeyInfo.html#afe1760d4ead397f6096925290a38e1a4":[2,0,0,37,44], +"classGpgFrontend_1_1GlobalSettingStation.html":[2,0,0,10], +"classGpgFrontend_1_1GlobalSettingStation.html#a0b3780564305e9b210d66ef377c21565":[2,0,0,10,6], +"classGpgFrontend_1_1GlobalSettingStation.html#a14433405831283cd95091d741614d03b":[2,0,0,10,11], +"classGpgFrontend_1_1GlobalSettingStation.html#a1818e08063d6a886975f77354fc5d85c":[2,0,0,10,21], +"classGpgFrontend_1_1GlobalSettingStation.html#a1d94a126c78ac01ec01f10d2ce575388":[2,0,0,10,20], +"classGpgFrontend_1_1GlobalSettingStation.html#a1e1993b72d0ad09d247b643b4447e57c":[2,0,0,10,12], +"classGpgFrontend_1_1GlobalSettingStation.html#a25c1b45a2ccdc21dd2dcba58866169fb":[2,0,0,10,17], +"classGpgFrontend_1_1GlobalSettingStation.html#a385ae4ab6ad5b17742a5405fa693d789":[2,0,0,10,5], +"classGpgFrontend_1_1GlobalSettingStation.html#a4d04bb665571921421b853f18b8b300a":[2,0,0,10,14], +"classGpgFrontend_1_1GlobalSettingStation.html#a58fff8a42f98ad7989bffb8322344cd6":[2,0,0,10,16], +"classGpgFrontend_1_1GlobalSettingStation.html#a6459653a71cc8285fa554943c7fb3ca7":[2,0,0,10,18], +"classGpgFrontend_1_1GlobalSettingStation.html#a657a17d85d06a3455a2d3ed0782f76a2":[2,0,0,10,3], +"classGpgFrontend_1_1GlobalSettingStation.html#a678f8ba120f9ad050d0adfec4476d7ac":[2,0,0,10,19], +"classGpgFrontend_1_1GlobalSettingStation.html#a73d553587447165c5c7b7a9704771963":[2,0,0,10,2], +"classGpgFrontend_1_1GlobalSettingStation.html#a7da9b08291ef2391892f5c9375b8db23":[2,0,0,10,7], +"classGpgFrontend_1_1GlobalSettingStation.html#aa93b21af9ac6649d5749c83c809f5b00":[2,0,0,10,10], +"classGpgFrontend_1_1GlobalSettingStation.html#ab618fef68cfd4ff6e42d4a4aa8ea94bb":[2,0,0,10,22], +"classGpgFrontend_1_1GlobalSettingStation.html#abdc6dda369d4214e43ffa2930f7386b0":[2,0,0,10,0], +"classGpgFrontend_1_1GlobalSettingStation.html#ac061ac8e5308f67ea52b98888bbb2e8d":[2,0,0,10,13], +"classGpgFrontend_1_1GlobalSettingStation.html#ad0600d475f6758503b1347722e2a933a":[2,0,0,10,15], +"classGpgFrontend_1_1GlobalSettingStation.html#ae9d1da3d01c4a834120968636596c3c3":[2,0,0,10,4], +"classGpgFrontend_1_1GlobalSettingStation.html#af484ca46c5df831a9dd76f3a88d66332":[2,0,0,10,9], +"classGpgFrontend_1_1GlobalSettingStation.html#af700161900e623a0ea14261d51616451":[2,0,0,10,1], +"classGpgFrontend_1_1GlobalSettingStation.html#afa99ddc25c0d5fd59a4c5f0e61d13830":[2,0,0,10,23], +"classGpgFrontend_1_1GlobalSettingStation.html#afc1aa3dec55ae4e741f92fce1140a2d0":[2,0,0,10,8], +"classGpgFrontend_1_1GpgAdvancedOperator.html":[2,0,0,11], +"classGpgFrontend_1_1GpgAdvancedOperator.html#a07c32ba25cf6153fbc8ee585c4ba377c":[2,0,0,11,6], +"classGpgFrontend_1_1GpgAdvancedOperator.html#a209f6d1d664ab672437198dc10ed8226":[2,0,0,11,3] }; diff --git a/docs/html/navtreeindex1.js b/docs/html/navtreeindex1.js index 6ff7a1f1..4e55b469 100644 --- a/docs/html/navtreeindex1.js +++ b/docs/html/navtreeindex1.js @@ -1,253 +1,253 @@ var NAVTREEINDEX1 = { -"classGpgFrontend_1_1GpgBasicOperator.html#afad990a43ab06a060a93db9948ebb740":[2,0,0,10,10], -"classGpgFrontend_1_1GpgCommandExecutor.html":[2,0,0,11], -"classGpgFrontend_1_1GpgCommandExecutor.html#a94240f423464600938bfcafa2b186c38":[2,0,0,11,0], -"classGpgFrontend_1_1GpgCommandExecutor.html#aefc4f18ec852b98c539d97da1c712a02":[2,0,0,11,2], -"classGpgFrontend_1_1GpgCommandExecutor.html#affa984ec4c2982c527761289f73c1ab4":[2,0,0,11,1], -"classGpgFrontend_1_1GpgConstants.html":[2,0,0,28], -"classGpgFrontend_1_1GpgConstants.html#a237006d6db30c7e3f8de171210eb35f2":[2,0,0,28,1], -"classGpgFrontend_1_1GpgConstants.html#a2c92d804e331fea2a57cba3028aa51ae":[2,0,0,28,0], -"classGpgFrontend_1_1GpgConstants.html#a36861cbbc85a53f4a42fa07153aa0150":[2,0,0,28,7], -"classGpgFrontend_1_1GpgConstants.html#a53310750d959947f316c793504e6eac1":[2,0,0,28,6], -"classGpgFrontend_1_1GpgConstants.html#a58558c2335021c7e6217dbd156d07705":[2,0,0,28,2], -"classGpgFrontend_1_1GpgConstants.html#a7f8ee639c08d4b477e6ab6ec87500f9b":[2,0,0,28,5], -"classGpgFrontend_1_1GpgConstants.html#aa3fa92fdc37cef4bba55b5e340299e9d":[2,0,0,28,3], -"classGpgFrontend_1_1GpgConstants.html#aafcb370531c8e84dec1e4d81ffeade1a":[2,0,0,28,8], -"classGpgFrontend_1_1GpgConstants.html#accb94e62d07af77123b79462971b4d55":[2,0,0,28,4], -"classGpgFrontend_1_1GpgContext.html":[2,0,0,30], -"classGpgFrontend_1_1GpgContext.html#a01e46d0718b61a224a52028b9da90468":[2,0,0,30,15], -"classGpgFrontend_1_1GpgContext.html#a2429d3f9daa189b4d5d8624c9f4d528b":[2,0,0,30,3], -"classGpgFrontend_1_1GpgContext.html#a3377fd6a325aafc18c119431f602db9b":[2,0,0,30,7], -"classGpgFrontend_1_1GpgContext.html#a3399fc60086ff5010a089bff48bbc63c":[2,0,0,30,9], -"classGpgFrontend_1_1GpgContext.html#a3844cd0966134939e5c4be9a725e5271":[2,0,0,30,11], -"classGpgFrontend_1_1GpgContext.html#a39882b323569987592231f722a2ef147":[2,0,0,30,2], -"classGpgFrontend_1_1GpgContext.html#a4765cccf9f994a9c7b3d962a24bed77e":[2,0,0,30,13], -"classGpgFrontend_1_1GpgContext.html#a4a8f6ff37e45979159ab375b2c7d48c3":[2,0,0,30,5], -"classGpgFrontend_1_1GpgContext.html#a5b419175bd9927f3d449637db8ba6524":[2,0,0,30,8], -"classGpgFrontend_1_1GpgContext.html#a73c505a2f3d39d1638dc4d9a3e13a913":[2,0,0,30,6], -"classGpgFrontend_1_1GpgContext.html#a838e2ec5571dc810af7c075c28d630db":[2,0,0,30,16], -"classGpgFrontend_1_1GpgContext.html#aaf3f5b4528b35bf0dc7a50163224a9a3":[2,0,0,30,12], -"classGpgFrontend_1_1GpgContext.html#acc4234054002065dfbc5d5261a4950d4":[2,0,0,30,10], -"classGpgFrontend_1_1GpgContext.html#ad89cdcb4fd0d8ad759e59254e4b7281c":[2,0,0,30,14], -"classGpgFrontend_1_1GpgContext.html#ae89dee551354c1541337881898832725":[2,0,0,30,4], -"classGpgFrontend_1_1GpgContext.html#aeafe3f6d1d97d63aeefa428cce23bc59":[2,0,0,30,1], -"classGpgFrontend_1_1GpgData.html":[2,0,0,37], -"classGpgFrontend_1_1GpgData.html#a20e2c42db476247b544012ebe677a8e2":[2,0,0,37,5], -"classGpgFrontend_1_1GpgData.html#a5e607c3bb69f998aaac761f400dd6440":[2,0,0,37,2], -"classGpgFrontend_1_1GpgData.html#ac3661a9365ad72b0883a2f62ef4647da":[2,0,0,37,1], -"classGpgFrontend_1_1GpgData.html#ae382a34ec551561315deca84c71c19c1":[2,0,0,37,4], -"classGpgFrontend_1_1GpgData.html#afca7a03bd71436c8b3c4f6e8c2acd700":[2,0,0,37,3], -"classGpgFrontend_1_1GpgDecryptResultAnalyse.html":[2,0,0,22], -"classGpgFrontend_1_1GpgDecryptResultAnalyse.html#a1aac1c1f77a12069479a47f54a934c44":[2,0,0,22,2], -"classGpgFrontend_1_1GpgDecryptResultAnalyse.html#a442438ae58cdd7220f0e4b0792e5a372":[2,0,0,22,0], -"classGpgFrontend_1_1GpgDecryptResultAnalyse.html#a4d3610af76ab14018ec1ca90953c69d4":[2,0,0,22,4], -"classGpgFrontend_1_1GpgDecryptResultAnalyse.html#a5963cadf8c63cb2c620ea7c09c7ebf2e":[2,0,0,22,3], -"classGpgFrontend_1_1GpgDecryptResultAnalyse.html#aa3491d7e9b6afdf74c4b27ddbf9723fa":[2,0,0,22,1], -"classGpgFrontend_1_1GpgEncryptResultAnalyse.html":[2,0,0,23], -"classGpgFrontend_1_1GpgEncryptResultAnalyse.html#a0801e32c8709da373f6715bc994a7747":[2,0,0,23,0], -"classGpgFrontend_1_1GpgEncryptResultAnalyse.html#a6b5301ccc9fad983c4fc53fe0a47d6b2":[2,0,0,23,3], -"classGpgFrontend_1_1GpgEncryptResultAnalyse.html#a8d2782f129f2b0023f79b84119de0e6b":[2,0,0,23,2], -"classGpgFrontend_1_1GpgEncryptResultAnalyse.html#afd2a380a0d6bf3f69ab84e4bdabbea27":[2,0,0,23,1], -"classGpgFrontend_1_1GpgFileOpera.html":[2,0,0,12], -"classGpgFrontend_1_1GpgFileOpera.html#a14cddfe822c9410cd9c301d08963b7e7":[2,0,0,12,7], -"classGpgFrontend_1_1GpgFileOpera.html#a234d939ae0b2c3f799dd01130fad9379":[2,0,0,12,3], -"classGpgFrontend_1_1GpgFileOpera.html#a350df1c07c054625c4755a78e6ca5ca8":[2,0,0,12,6], -"classGpgFrontend_1_1GpgFileOpera.html#a6353e1688b113e5746aced6aa7f3876e":[2,0,0,12,5], -"classGpgFrontend_1_1GpgFileOpera.html#a74eb3ba532a236d8ad284b41265b0ccd":[2,0,0,12,1], -"classGpgFrontend_1_1GpgFileOpera.html#a826efca057afb07157453b3b9e267b0f":[2,0,0,12,4], -"classGpgFrontend_1_1GpgFileOpera.html#a90949b4e9e6116784260cd0e416551db":[2,0,0,12,2], -"classGpgFrontend_1_1GpgFileOpera.html#aa81da3d72c4fbc57e7138bfec7731152":[2,0,0,12,0], -"classGpgFrontend_1_1GpgImportInformation.html":[2,0,0,15], -"classGpgFrontend_1_1GpgImportInformation.html#a0e946c24f6045b2454ac3296df2e299e":[2,0,0,15,4], -"classGpgFrontend_1_1GpgImportInformation.html#a19e37d28f4462caf2b3522d50ceaf897":[2,0,0,15,0], -"classGpgFrontend_1_1GpgImportInformation.html#a226f8d47609d1fd562d84c1f02fed02a":[2,0,0,15,5], -"classGpgFrontend_1_1GpgImportInformation.html#a2ca60bb922c73eec90b74a9827becfe9":[2,0,0,15,13], -"classGpgFrontend_1_1GpgImportInformation.html#a3c7ef95ff89df66e376bacdf09abb61b":[2,0,0,15,15], -"classGpgFrontend_1_1GpgImportInformation.html#a43096e07e00d7650be8e286d45899ed0":[2,0,0,15,10], -"classGpgFrontend_1_1GpgImportInformation.html#a47346d8f24587e024147fd3129d1233e":[2,0,0,15,14], -"classGpgFrontend_1_1GpgImportInformation.html#a4e8d490de713686b043ee899969965a6":[2,0,0,15,7], -"classGpgFrontend_1_1GpgImportInformation.html#a55756b7a0ba05f1086369e680a532021":[2,0,0,15,2], -"classGpgFrontend_1_1GpgImportInformation.html#a7ca790cc6e9b12c5c3fd9fcea3ec0f37":[2,0,0,15,12], -"classGpgFrontend_1_1GpgImportInformation.html#a8b98cf24d9fdddc7678b755b2f472a83":[2,0,0,15,6], -"classGpgFrontend_1_1GpgImportInformation.html#a8db7f3b11fa2825dc9939f029742c933":[2,0,0,15,8], -"classGpgFrontend_1_1GpgImportInformation.html#aa1e033e2dee0fd7b4e0fed537e24aa70":[2,0,0,15,9], -"classGpgFrontend_1_1GpgImportInformation.html#ab282d4f701403cd68eb02d1aad30be56":[2,0,0,15,1], -"classGpgFrontend_1_1GpgImportInformation.html#acc4095bfe874287bb8823be30a9fcb45":[2,0,0,15,11], -"classGpgFrontend_1_1GpgImportInformation.html#add4b1898e674e14b8f649e60b585db89":[2,0,0,15,3], -"classGpgFrontend_1_1GpgImportedKey.html":[2,0,0,14], -"classGpgFrontend_1_1GpgImportedKey.html#a356e729d0002ba280910de3a5fcc7f1e":[2,0,0,14,1], -"classGpgFrontend_1_1GpgImportedKey.html#aaeba0000ee69f4eec95fb5b109f7058e":[2,0,0,14,0], -"classGpgFrontend_1_1GpgInfo.html":[2,0,0,36], -"classGpgFrontend_1_1GpgInfo.html#a2416ae0ab9bedc61782d16075750a9c0":[2,0,0,36,0], -"classGpgFrontend_1_1GpgInfo.html#a2fcd53b59bc251c38eb8d79cec946777":[2,0,0,36,8], -"classGpgFrontend_1_1GpgInfo.html#a48659b780f8d0153ca0eb985a072b5ba":[2,0,0,36,1], -"classGpgFrontend_1_1GpgInfo.html#a7347d47006bdf41f1da979ea3289de7e":[2,0,0,36,6], -"classGpgFrontend_1_1GpgInfo.html#aa8224398d82e584e13a7859362139d56":[2,0,0,36,10], -"classGpgFrontend_1_1GpgInfo.html#aae8f26ff084fb2541826efb7b20c3dc0":[2,0,0,36,4], -"classGpgFrontend_1_1GpgInfo.html#aaea5a9651daac0323495ce12c152dc23":[2,0,0,36,9], -"classGpgFrontend_1_1GpgInfo.html#abbb3d503b10073bebf86d79bbaeab4c9":[2,0,0,36,7], -"classGpgFrontend_1_1GpgInfo.html#ac8ecbf438d05dc434c77825dd38dfdf2":[2,0,0,36,3], -"classGpgFrontend_1_1GpgInfo.html#af771ce437619235615538e28c9096788":[2,0,0,36,5], -"classGpgFrontend_1_1GpgInfo.html#af81f332808633b18e3f0105caa761754":[2,0,0,36,2], -"classGpgFrontend_1_1GpgKey.html":[2,0,0,38], -"classGpgFrontend_1_1GpgKey.html#a165b3f645e2c6a4bbd024199e1f1cc9b":[2,0,0,38,12], -"classGpgFrontend_1_1GpgKey.html#a1c21bc3b1788753f56272ad73052fc5f":[2,0,0,38,19], -"classGpgFrontend_1_1GpgKey.html#a1d6e415e77625c1281dac1cc5f33f804":[2,0,0,38,5], -"classGpgFrontend_1_1GpgKey.html#a1e9223bb1ad8fbb4e769680de39b3697":[2,0,0,38,4], -"classGpgFrontend_1_1GpgKey.html#a2d28e72cfb741deeadfe02ff456fb490":[2,0,0,38,31], -"classGpgFrontend_1_1GpgKey.html#a3327ad34ff14feb75f3fbfc2bfb7fc44":[2,0,0,38,16], -"classGpgFrontend_1_1GpgKey.html#a3532e20298b642f5d312712fa8a791df":[2,0,0,38,14], -"classGpgFrontend_1_1GpgKey.html#a371a24c4e9d3b99a36f76ff8c7f2d0e6":[2,0,0,38,25], -"classGpgFrontend_1_1GpgKey.html#a3b08060c07a9cc207eb8c98771bd4bc1":[2,0,0,38,2], -"classGpgFrontend_1_1GpgKey.html#a3fd5bfe6e9fd5f016b854fc92f19146e":[2,0,0,38,9], -"classGpgFrontend_1_1GpgKey.html#a4f50b2f13b3a5dc7298ee9665e7a5367":[2,0,0,38,41], -"classGpgFrontend_1_1GpgKey.html#a55a6485f6c2cc5bec0fdf02cd7e0d8ea":[2,0,0,38,10], -"classGpgFrontend_1_1GpgKey.html#a59e76d40f01e765f0544e5c6a2851be6":[2,0,0,38,24], -"classGpgFrontend_1_1GpgKey.html#a5b276fdeb438fe14ec2850d799401be6":[2,0,0,38,17], -"classGpgFrontend_1_1GpgKey.html#a60b342ca6e1062d4489d8ba8f7a5a605":[2,0,0,38,32], -"classGpgFrontend_1_1GpgKey.html#a635bbf8f08268cfdac1bc120981df877":[2,0,0,38,34], -"classGpgFrontend_1_1GpgKey.html#a637f2a5e9b9b7cafcdaada00c2f7de87":[2,0,0,38,36], -"classGpgFrontend_1_1GpgKey.html#a66711ffd7f4af58594b7de984a13c327":[2,0,0,38,23], -"classGpgFrontend_1_1GpgKey.html#a6b243df2320999ebcdaf9645531b925a":[2,0,0,38,39], -"classGpgFrontend_1_1GpgKey.html#a746699842f6c49687af0487a8b3b163d":[2,0,0,38,20], -"classGpgFrontend_1_1GpgKey.html#a7b1e0398bedaecbfa2757243e5f4f0ab":[2,0,0,38,11], -"classGpgFrontend_1_1GpgKey.html#a7bceca68800c3ada9280c29eaeb5affc":[2,0,0,38,15], -"classGpgFrontend_1_1GpgKey.html#a7eaf1e722d8a59f6a86d8e732217d89c":[2,0,0,38,22], -"classGpgFrontend_1_1GpgKey.html#a827962251cf47c41dbea56665ae4207b":[2,0,0,38,37], -"classGpgFrontend_1_1GpgKey.html#a888c0263f04bdd52967e092b9c73eb6d":[2,0,0,38,35], -"classGpgFrontend_1_1GpgKey.html#a8930f958f3ca1f5566f63e8c2273837e":[2,0,0,38,13], -"classGpgFrontend_1_1GpgKey.html#aa599159ab1041c2f5a5fbf09666489b9":[2,0,0,38,3], -"classGpgFrontend_1_1GpgKey.html#aaa66d803456152fed9ba4cf5bce7b99d":[2,0,0,38,27], -"classGpgFrontend_1_1GpgKey.html#aadac1b776764ee9d0ca4f8bb9f9e0741":[2,0,0,38,33], -"classGpgFrontend_1_1GpgKey.html#ac8b13b45e487cdc423b78d3017897f99":[2,0,0,38,21], -"classGpgFrontend_1_1GpgKey.html#ac90afba6a5aec0bc2c0f1e01de417ec8":[2,0,0,38,7], -"classGpgFrontend_1_1GpgKey.html#ad1784bcc872f42b87e48bcfa40dab4cd":[2,0,0,38,42], -"classGpgFrontend_1_1GpgKey.html#ad2440a2902c81192d5549fe951ddb130":[2,0,0,38,18], -"classGpgFrontend_1_1GpgKey.html#adc22a349796af0ff5dd4499624b6d03d":[2,0,0,38,38], -"classGpgFrontend_1_1GpgKey.html#ae1957e909d8dcbe48c5931d1cdff7a81":[2,0,0,38,1], -"classGpgFrontend_1_1GpgKey.html#ae370e41a7ea7307fbf4d28e0f2a67e0c":[2,0,0,38,26], -"classGpgFrontend_1_1GpgKey.html#ae58bc1fdcefaaf646f6b8740cb69eef6":[2,0,0,38,40], -"classGpgFrontend_1_1GpgKey.html#aeb316f8728b10e966eed6f0291794eed":[2,0,0,38,6], -"classGpgFrontend_1_1GpgKey.html#aec4e7e1845073f23cf55dc660c69c44a":[2,0,0,38,43], -"classGpgFrontend_1_1GpgKey.html#aefa0a44adb1b7c49553a85b545fdffe1":[2,0,0,38,28], -"classGpgFrontend_1_1GpgKey.html#af72de794e24876b0e22a8d318ec0f8ad":[2,0,0,38,8], -"classGpgFrontend_1_1GpgKey.html#afdffba6dfb6009a0b320623df7a26be0":[2,0,0,38,29], -"classGpgFrontend_1_1GpgKey.html#afedc843415bd4b59687e975006e470ed":[2,0,0,38,30], -"classGpgFrontend_1_1GpgKeyGetter.html":[2,0,0,13], -"classGpgFrontend_1_1GpgKeyGetter.html#a028fe69516a51c526bbd2ec4235053ad":[2,0,0,13,6], -"classGpgFrontend_1_1GpgKeyGetter.html#a7a8bc7c0f12a11e108051e4c824fc430":[2,0,0,13,8], -"classGpgFrontend_1_1GpgKeyGetter.html#a7ec8d8431a771c602cbfa946d13d6c74":[2,0,0,13,7], -"classGpgFrontend_1_1GpgKeyGetter.html#a81941e1f562dc22977a71d00dd10956a":[2,0,0,13,10], -"classGpgFrontend_1_1GpgKeyGetter.html#a8eeee9f6dd74dc24c24794ce63c62285":[2,0,0,13,0], -"classGpgFrontend_1_1GpgKeyGetter.html#a94243d09c9418c8ebf0c7cdab4a2b7f1":[2,0,0,13,4], -"classGpgFrontend_1_1GpgKeyGetter.html#a9567d5e08ae73c5bafcd1dc378fed066":[2,0,0,13,11], -"classGpgFrontend_1_1GpgKeyGetter.html#aa4aef315d82123726be879097d3df147":[2,0,0,13,9], -"classGpgFrontend_1_1GpgKeyGetter.html#aa5979c21af58b874b33c203752dcc805":[2,0,0,13,5], -"classGpgFrontend_1_1GpgKeyGetter.html#ab5196ef4ed5323fc2af70abf801ea260":[2,0,0,13,3], -"classGpgFrontend_1_1GpgKeyGetter.html#ad9a902ea54566d4583304b072c4add51":[2,0,0,13,2], -"classGpgFrontend_1_1GpgKeyGetter.html#ae1d7846ad2fa17ab90c72b3186ba5335":[2,0,0,13,12], -"classGpgFrontend_1_1GpgKeyGetter.html#afe78ac470287d70e7df51aae327b9f54":[2,0,0,13,1], -"classGpgFrontend_1_1GpgKeyImportExporter.html":[2,0,0,16], -"classGpgFrontend_1_1GpgKeyImportExporter.html#a0eede7c782d17b32d6c1f30cd8496561":[2,0,0,16,0], -"classGpgFrontend_1_1GpgKeyImportExporter.html#a51cb18aa7302d7a48ccd1ee17f060391":[2,0,0,16,1], -"classGpgFrontend_1_1GpgKeyImportExporter.html#a6a5e8d642ac5a3e98799af6495ef590b":[2,0,0,16,5], -"classGpgFrontend_1_1GpgKeyImportExporter.html#a8157afa844c8bf964ce83f5de71efc5a":[2,0,0,16,3], -"classGpgFrontend_1_1GpgKeyImportExporter.html#aa0a73314ef94f397e2ef53d40abc9731":[2,0,0,16,2], -"classGpgFrontend_1_1GpgKeyImportExporter.html#aa9fbda8f6c3fa36a503075d7a124fa3f":[2,0,0,16,4], -"classGpgFrontend_1_1GpgKeyImportExporter.html#ab7a9be5283047695cd47562775adf79d":[2,0,0,16,7], -"classGpgFrontend_1_1GpgKeyImportExporter.html#abf7c0442549ae8602e1249cdf0da55df":[2,0,0,16,6], -"classGpgFrontend_1_1GpgKeyImportExporter.html#ade0e4de4078b6589f863dbfc76786f0e":[2,0,0,16,8], -"classGpgFrontend_1_1GpgKeyManager.html":[2,0,0,17], -"classGpgFrontend_1_1GpgKeyManager.html#a073f96ccfa483a8856197610b8bdee9e":[2,0,0,17,4], -"classGpgFrontend_1_1GpgKeyManager.html#a12138780c53add7589f78f056019e5e0":[2,0,0,17,3], -"classGpgFrontend_1_1GpgKeyManager.html#a1625abfbff168c476e76fa9425a6c37d":[2,0,0,17,2], -"classGpgFrontend_1_1GpgKeyManager.html#a210b717fd8ee63b064d77f32b0df4c5d":[2,0,0,17,0], -"classGpgFrontend_1_1GpgKeyManager.html#aa2c0e804db1c4aaf3b861ee5ab54ebd8":[2,0,0,17,1], -"classGpgFrontend_1_1GpgKeyOpera.html":[2,0,0,18], -"classGpgFrontend_1_1GpgKeyOpera.html#a01d6a920156a38a34c57d9c49c361079":[2,0,0,18,0], -"classGpgFrontend_1_1GpgKeyOpera.html#a12e6b05b23781861065d7e3243c9349e":[2,0,0,18,8], -"classGpgFrontend_1_1GpgKeyOpera.html#a151c47b997951e9162f8b036c3cb15e0":[2,0,0,18,1], -"classGpgFrontend_1_1GpgKeyOpera.html#a4cc3ac91613164d7dc61a016a2b4caea":[2,0,0,18,3], -"classGpgFrontend_1_1GpgKeyOpera.html#a76a7f59701add8a59d8835919dad2000":[2,0,0,18,7], -"classGpgFrontend_1_1GpgKeyOpera.html#a882d99e8407cc22fb8b6e61c531fbe85":[2,0,0,18,5], -"classGpgFrontend_1_1GpgKeyOpera.html#a8a06d0f7a600d4428359b653a68f717e":[2,0,0,18,2], -"classGpgFrontend_1_1GpgKeyOpera.html#a91a9a9f24f6b620ea7b906c529e3d9a4":[2,0,0,18,4], -"classGpgFrontend_1_1GpgKeyOpera.html#ab4086c8ccd6f1f926993e96b687dea69":[2,0,0,18,9], -"classGpgFrontend_1_1GpgKeyOpera.html#ab7e16d1f4cba23ea5b5b9f6009ce5ee2":[2,0,0,18,6], -"classGpgFrontend_1_1GpgKeySignature.html":[2,0,0,39], -"classGpgFrontend_1_1GpgKeySignature.html#a1725474a1c61c0a3d724dc2f999cb24a":[2,0,0,39,17], -"classGpgFrontend_1_1GpgKeySignature.html#a19fc1ca3733b576e12628e333e2c449e":[2,0,0,39,16], -"classGpgFrontend_1_1GpgKeySignature.html#a217a2a8b31e44d4c9b463470362a1522":[2,0,0,39,12], -"classGpgFrontend_1_1GpgKeySignature.html#a224130c0da22538adba625c197b32fff":[2,0,0,39,21], -"classGpgFrontend_1_1GpgKeySignature.html#a4277f6deb7c07aaba62fbe8e7867b1fe":[2,0,0,39,10], -"classGpgFrontend_1_1GpgKeySignature.html#a4a501aa3a549a6a6914e2aeed4ff302e":[2,0,0,39,5], -"classGpgFrontend_1_1GpgKeySignature.html#a4ae987707a6579cec3dfe540b3410bc6":[2,0,0,39,20], -"classGpgFrontend_1_1GpgKeySignature.html#a59ab21f52b88355ca36ff5ebd77093a6":[2,0,0,39,9], -"classGpgFrontend_1_1GpgKeySignature.html#a8a9c792c963ef610e511b7deb6829c0b":[2,0,0,39,1], -"classGpgFrontend_1_1GpgKeySignature.html#a8b025f50bc527b0bbe58bd016bb47772":[2,0,0,39,6], -"classGpgFrontend_1_1GpgKeySignature.html#a927602d294d02adde57193f5094ce689":[2,0,0,39,19], -"classGpgFrontend_1_1GpgKeySignature.html#a95254ea2c00829b9dc87adc4a317cde5":[2,0,0,39,14], -"classGpgFrontend_1_1GpgKeySignature.html#a9aa824b0a9e03dfbcc7849a7b526ef67":[2,0,0,39,18], -"classGpgFrontend_1_1GpgKeySignature.html#a9ba501d98265c9677d00e3dca3e8d903":[2,0,0,39,4], -"classGpgFrontend_1_1GpgKeySignature.html#a9c7253e7602e834ac3311cca0cbe84a7":[2,0,0,39,0], -"classGpgFrontend_1_1GpgKeySignature.html#ab4d7044f4e1ddcf0ae0d28be43f0fcb3":[2,0,0,39,2], -"classGpgFrontend_1_1GpgKeySignature.html#abb4571e79c921261c03f57980d502e72":[2,0,0,39,3], -"classGpgFrontend_1_1GpgKeySignature.html#abdff0ce4d5e8b7be0aa2e46e0003b22f":[2,0,0,39,8], -"classGpgFrontend_1_1GpgKeySignature.html#acd5e46397ebea3224761a6af15eea4fb":[2,0,0,39,11], -"classGpgFrontend_1_1GpgKeySignature.html#adc8ad65688a6dab0993cf655f5361df8":[2,0,0,39,7], -"classGpgFrontend_1_1GpgKeySignature.html#aec39e4f67f17358f26bbbeb4cf62b7f4":[2,0,0,39,15], -"classGpgFrontend_1_1GpgKeySignature.html#af2639fe6d2774ba286308f3a7b58ba73":[2,0,0,39,13], -"classGpgFrontend_1_1GpgResultAnalyse.html":[2,0,0,24], -"classGpgFrontend_1_1GpgResultAnalyse.html#a3664c37fe30b7006f50e18792957bf58":[2,0,0,24,2], -"classGpgFrontend_1_1GpgResultAnalyse.html#a7f13592b421c7b0d3853f15cece8d195":[2,0,0,24,5], -"classGpgFrontend_1_1GpgResultAnalyse.html#a80c80d597391d2d531345d3dd507b038":[2,0,0,24,1], -"classGpgFrontend_1_1GpgResultAnalyse.html#a8fc5d4f83e5c0aa0ac19f46c3ec1619e":[2,0,0,24,4], -"classGpgFrontend_1_1GpgResultAnalyse.html#aa3c9bdf1ea4c87476010ef32fd2fb426":[2,0,0,24,0], -"classGpgFrontend_1_1GpgResultAnalyse.html#aa9e35e573ea4c0ebdbb014d1afbaab9d":[2,0,0,24,3], -"classGpgFrontend_1_1GpgResultAnalyse.html#abb323cb23d9be5aa0d842d686bbad962":[2,0,0,24,8], -"classGpgFrontend_1_1GpgResultAnalyse.html#ad5160473724e6af2c21a4851c635cbc6":[2,0,0,24,7], -"classGpgFrontend_1_1GpgResultAnalyse.html#af82d2d107c9834daea98560f9bca2873":[2,0,0,24,6], -"classGpgFrontend_1_1GpgSignResultAnalyse.html":[2,0,0,25], -"classGpgFrontend_1_1GpgSignResultAnalyse.html#a3ddd2d52ad91fdf7f4c8740312570c8e":[2,0,0,25,0], -"classGpgFrontend_1_1GpgSignResultAnalyse.html#a6cd4794be82a4c34105d02a5e8de615b":[2,0,0,25,1], -"classGpgFrontend_1_1GpgSignResultAnalyse.html#ab625d0e70db612bc77bf6d403b3ac56a":[2,0,0,25,3], -"classGpgFrontend_1_1GpgSignResultAnalyse.html#abf0d7b3b601ac7498b661495c38d5bf1":[2,0,0,25,2], -"classGpgFrontend_1_1GpgSignature.html":[2,0,0,40], -"classGpgFrontend_1_1GpgSignature.html#a0796249b259af85c30873f5c41a01101":[2,0,0,40,7], -"classGpgFrontend_1_1GpgSignature.html#a09cb6b465e85dffcf7867e70a276e9ad":[2,0,0,40,13], -"classGpgFrontend_1_1GpgSignature.html#a0b2f5d9e08d407050a392ba0f7881986":[2,0,0,40,14], -"classGpgFrontend_1_1GpgSignature.html#a1b705f45de8f6d0ae97f1ffda28185b7":[2,0,0,40,5], -"classGpgFrontend_1_1GpgSignature.html#a1c4fbd2d10a769c1ed0b644f06e4f871":[2,0,0,40,16], -"classGpgFrontend_1_1GpgSignature.html#a222e57e5992e5e91ca36d8dcc77fd402":[2,0,0,40,6], -"classGpgFrontend_1_1GpgSignature.html#a3b143f6e13b71663d81fc0f326aad17f":[2,0,0,40,12], -"classGpgFrontend_1_1GpgSignature.html#a44f137a457ac109d145a1cdd8e544e3a":[2,0,0,40,2], -"classGpgFrontend_1_1GpgSignature.html#a627b5206311998dd3f45393344b195be":[2,0,0,40,8], -"classGpgFrontend_1_1GpgSignature.html#a859b4a3788c8490937f954d92686f490":[2,0,0,40,11], -"classGpgFrontend_1_1GpgSignature.html#aa6f0821b573bfcc81d4c0fbc23fdec29":[2,0,0,40,0], -"classGpgFrontend_1_1GpgSignature.html#ab7a4489b35d918503076b2659d14fafe":[2,0,0,40,1], -"classGpgFrontend_1_1GpgSignature.html#ab99e4004f1ad400fd25232312a8ea66b":[2,0,0,40,10], -"classGpgFrontend_1_1GpgSignature.html#aca9c1f1a92fddaecc7d601f1f25a90de":[2,0,0,40,15], -"classGpgFrontend_1_1GpgSignature.html#ace10a3ac7f4dc3888b2ad62157213f1c":[2,0,0,40,9], -"classGpgFrontend_1_1GpgSignature.html#aea05d301ccf75f4a3aec2be58541eca8":[2,0,0,40,3], -"classGpgFrontend_1_1GpgSignature.html#aeae075c7b9c628f558d6fedbc8b9233a":[2,0,0,40,4], -"classGpgFrontend_1_1GpgSubKey.html":[2,0,0,41], -"classGpgFrontend_1_1GpgSubKey.html#a04d9df643cd08200cd742dc243be6cd6":[2,0,0,41,14], -"classGpgFrontend_1_1GpgSubKey.html#a09b00ac6a3b934b816f9522f78e77d59":[2,0,0,41,7], -"classGpgFrontend_1_1GpgSubKey.html#a18d7a2f0a3cee32a123b780f2b8b8708":[2,0,0,41,9], -"classGpgFrontend_1_1GpgSubKey.html#a1c88420ec4756f2e5bda1b76ff2f7c2d":[2,0,0,41,23], -"classGpgFrontend_1_1GpgSubKey.html#a278abd1ba3abd90b05ed4ad494bc1e78":[2,0,0,41,0], -"classGpgFrontend_1_1GpgSubKey.html#a3c9605e6ccb7fa53d9c9013453d561fe":[2,0,0,41,2], -"classGpgFrontend_1_1GpgSubKey.html#a443f8ac5f47e5ac0ea3ac91edefe8c3c":[2,0,0,41,24], -"classGpgFrontend_1_1GpgSubKey.html#a48d3dfbd3aae9523ffbdb916aad8ad53":[2,0,0,41,8], -"classGpgFrontend_1_1GpgSubKey.html#a56938360f873949aa9ba3dbdaab519d1":[2,0,0,41,15], -"classGpgFrontend_1_1GpgSubKey.html#a59eba8a9d23429140e9a68126c9c7c5e":[2,0,0,41,1], -"classGpgFrontend_1_1GpgSubKey.html#a5e897d439606a35103a0b260be28c6a4":[2,0,0,41,5], -"classGpgFrontend_1_1GpgSubKey.html#a629f904a81c7c09ac9769b3fcf3b48f5":[2,0,0,41,10], -"classGpgFrontend_1_1GpgSubKey.html#a6696d67af322fa2125d99b50cae50417":[2,0,0,41,6], -"classGpgFrontend_1_1GpgSubKey.html#a6e8df85f8c1dea7705b761e68bb949ab":[2,0,0,41,4], -"classGpgFrontend_1_1GpgSubKey.html#a75abb60a2130efc7fad8ab8fb3157042":[2,0,0,41,12], -"classGpgFrontend_1_1GpgSubKey.html#a8fcbeae2ef3ad73a5aedee19f6de3e60":[2,0,0,41,20], -"classGpgFrontend_1_1GpgSubKey.html#a9cc81c515b6a197757b48dd334cc3344":[2,0,0,41,19], -"classGpgFrontend_1_1GpgSubKey.html#ab67395a986184cb9b20f3dc178fc52be":[2,0,0,41,16] +"classGpgFrontend_1_1GpgAdvancedOperator.html#a387ad457bb729f340f680d0b743733ad":[2,0,0,11,8], +"classGpgFrontend_1_1GpgAdvancedOperator.html#a46085a11235894deccd312fc259d5078":[2,0,0,11,5], +"classGpgFrontend_1_1GpgAdvancedOperator.html#a5801bf4ea7391cbcc60efd2513d41041":[2,0,0,11,4], +"classGpgFrontend_1_1GpgAdvancedOperator.html#a6876b6ee63ff7147c274e4f9538d29ce":[2,0,0,11,2], +"classGpgFrontend_1_1GpgAdvancedOperator.html#a71eb87ed095754ee1e9fa79125240f3e":[2,0,0,11,1], +"classGpgFrontend_1_1GpgAdvancedOperator.html#a9233156767f1d45272b95decd18241e3":[2,0,0,11,0], +"classGpgFrontend_1_1GpgAdvancedOperator.html#a9313410359ed9cff9ee66fa9b4b095ee":[2,0,0,11,7], +"classGpgFrontend_1_1GpgBasicOperator.html":[2,0,0,12], +"classGpgFrontend_1_1GpgBasicOperator.html#a08906cf2bc2ddad8489438610f388f8a":[2,0,0,12,4], +"classGpgFrontend_1_1GpgBasicOperator.html#a11845a9a3ea2941e14faa9130f0ac9ef":[2,0,0,12,2], +"classGpgFrontend_1_1GpgBasicOperator.html#a139be86330f88e5f833aa24263a3b2ae":[2,0,0,12,0], +"classGpgFrontend_1_1GpgBasicOperator.html#a32e1eac6bb0f322588ae75ae36a9884a":[2,0,0,12,3], +"classGpgFrontend_1_1GpgBasicOperator.html#a78f37b8d5afd6c0248665a4415f880cf":[2,0,0,12,6], +"classGpgFrontend_1_1GpgBasicOperator.html#a8f4ef57e941a066ad9d070eee51e2073":[2,0,0,12,5], +"classGpgFrontend_1_1GpgBasicOperator.html#a988d7e65e85fc7a578f26300332a65d3":[2,0,0,12,8], +"classGpgFrontend_1_1GpgBasicOperator.html#a9ea9e81194917e08f46eb657281b7953":[2,0,0,12,1], +"classGpgFrontend_1_1GpgBasicOperator.html#ad6ea3596ba7d7543fb1b8233d09996df":[2,0,0,12,7], +"classGpgFrontend_1_1GpgBasicOperator.html#af0347cb28ff73b2250395ceaa9001509":[2,0,0,12,9], +"classGpgFrontend_1_1GpgBasicOperator.html#afad990a43ab06a060a93db9948ebb740":[2,0,0,12,10], +"classGpgFrontend_1_1GpgCommandExecutor.html":[2,0,0,13], +"classGpgFrontend_1_1GpgCommandExecutor.html#a94240f423464600938bfcafa2b186c38":[2,0,0,13,0], +"classGpgFrontend_1_1GpgCommandExecutor.html#aefc4f18ec852b98c539d97da1c712a02":[2,0,0,13,2], +"classGpgFrontend_1_1GpgCommandExecutor.html#affa984ec4c2982c527761289f73c1ab4":[2,0,0,13,1], +"classGpgFrontend_1_1GpgConstants.html":[2,0,0,30], +"classGpgFrontend_1_1GpgConstants.html#a237006d6db30c7e3f8de171210eb35f2":[2,0,0,30,1], +"classGpgFrontend_1_1GpgConstants.html#a2c92d804e331fea2a57cba3028aa51ae":[2,0,0,30,0], +"classGpgFrontend_1_1GpgConstants.html#a36861cbbc85a53f4a42fa07153aa0150":[2,0,0,30,7], +"classGpgFrontend_1_1GpgConstants.html#a53310750d959947f316c793504e6eac1":[2,0,0,30,6], +"classGpgFrontend_1_1GpgConstants.html#a58558c2335021c7e6217dbd156d07705":[2,0,0,30,2], +"classGpgFrontend_1_1GpgConstants.html#a7f8ee639c08d4b477e6ab6ec87500f9b":[2,0,0,30,5], +"classGpgFrontend_1_1GpgConstants.html#aa3fa92fdc37cef4bba55b5e340299e9d":[2,0,0,30,3], +"classGpgFrontend_1_1GpgConstants.html#aafcb370531c8e84dec1e4d81ffeade1a":[2,0,0,30,8], +"classGpgFrontend_1_1GpgConstants.html#accb94e62d07af77123b79462971b4d55":[2,0,0,30,4], +"classGpgFrontend_1_1GpgContext.html":[2,0,0,32], +"classGpgFrontend_1_1GpgContext.html#a01e46d0718b61a224a52028b9da90468":[2,0,0,32,19], +"classGpgFrontend_1_1GpgContext.html#a2429d3f9daa189b4d5d8624c9f4d528b":[2,0,0,32,3], +"classGpgFrontend_1_1GpgContext.html#a3399fc60086ff5010a089bff48bbc63c":[2,0,0,32,12], +"classGpgFrontend_1_1GpgContext.html#a36e807be6873698b5f8d4218bdfe8732":[2,0,0,32,13], +"classGpgFrontend_1_1GpgContext.html#a3844cd0966134939e5c4be9a725e5271":[2,0,0,32,15], +"classGpgFrontend_1_1GpgContext.html#a39882b323569987592231f722a2ef147":[2,0,0,32,2], +"classGpgFrontend_1_1GpgContext.html#a4765cccf9f994a9c7b3d962a24bed77e":[2,0,0,32,17], +"classGpgFrontend_1_1GpgContext.html#a4a8f6ff37e45979159ab375b2c7d48c3":[2,0,0,32,7], +"classGpgFrontend_1_1GpgContext.html#a5b419175bd9927f3d449637db8ba6524":[2,0,0,32,10], +"classGpgFrontend_1_1GpgContext.html#a73c505a2f3d39d1638dc4d9a3e13a913":[2,0,0,32,8], +"classGpgFrontend_1_1GpgContext.html#a76fba43d1439c7811e1a9424d0c16d40":[2,0,0,32,5], +"classGpgFrontend_1_1GpgContext.html#a838e2ec5571dc810af7c075c28d630db":[2,0,0,32,20], +"classGpgFrontend_1_1GpgContext.html#aaf3f394ff1790897c315c3249b1f06fe":[2,0,0,32,11], +"classGpgFrontend_1_1GpgContext.html#aaf3f5b4528b35bf0dc7a50163224a9a3":[2,0,0,32,16], +"classGpgFrontend_1_1GpgContext.html#ac7c9b2212a77e7cede94d68243541b1b":[2,0,0,32,9], +"classGpgFrontend_1_1GpgContext.html#acc4234054002065dfbc5d5261a4950d4":[2,0,0,32,14], +"classGpgFrontend_1_1GpgContext.html#ad89cdcb4fd0d8ad759e59254e4b7281c":[2,0,0,32,18], +"classGpgFrontend_1_1GpgContext.html#ae89dee551354c1541337881898832725":[2,0,0,32,4], +"classGpgFrontend_1_1GpgContext.html#aeafe3f6d1d97d63aeefa428cce23bc59":[2,0,0,32,1], +"classGpgFrontend_1_1GpgContext.html#af46f09a4f5c77429c3e782b551812ec2":[2,0,0,32,6], +"classGpgFrontend_1_1GpgData.html":[2,0,0,39], +"classGpgFrontend_1_1GpgData.html#a20e2c42db476247b544012ebe677a8e2":[2,0,0,39,5], +"classGpgFrontend_1_1GpgData.html#a5e607c3bb69f998aaac761f400dd6440":[2,0,0,39,2], +"classGpgFrontend_1_1GpgData.html#ac3661a9365ad72b0883a2f62ef4647da":[2,0,0,39,1], +"classGpgFrontend_1_1GpgData.html#ae382a34ec551561315deca84c71c19c1":[2,0,0,39,4], +"classGpgFrontend_1_1GpgData.html#afca7a03bd71436c8b3c4f6e8c2acd700":[2,0,0,39,3], +"classGpgFrontend_1_1GpgDecryptResultAnalyse.html":[2,0,0,24], +"classGpgFrontend_1_1GpgDecryptResultAnalyse.html#a1aac1c1f77a12069479a47f54a934c44":[2,0,0,24,2], +"classGpgFrontend_1_1GpgDecryptResultAnalyse.html#a442438ae58cdd7220f0e4b0792e5a372":[2,0,0,24,0], +"classGpgFrontend_1_1GpgDecryptResultAnalyse.html#a4d3610af76ab14018ec1ca90953c69d4":[2,0,0,24,4], +"classGpgFrontend_1_1GpgDecryptResultAnalyse.html#a5963cadf8c63cb2c620ea7c09c7ebf2e":[2,0,0,24,3], +"classGpgFrontend_1_1GpgDecryptResultAnalyse.html#aa3491d7e9b6afdf74c4b27ddbf9723fa":[2,0,0,24,1], +"classGpgFrontend_1_1GpgEncryptResultAnalyse.html":[2,0,0,25], +"classGpgFrontend_1_1GpgEncryptResultAnalyse.html#a0801e32c8709da373f6715bc994a7747":[2,0,0,25,0], +"classGpgFrontend_1_1GpgEncryptResultAnalyse.html#a6b5301ccc9fad983c4fc53fe0a47d6b2":[2,0,0,25,3], +"classGpgFrontend_1_1GpgEncryptResultAnalyse.html#a8d2782f129f2b0023f79b84119de0e6b":[2,0,0,25,2], +"classGpgFrontend_1_1GpgEncryptResultAnalyse.html#afd2a380a0d6bf3f69ab84e4bdabbea27":[2,0,0,25,1], +"classGpgFrontend_1_1GpgFileOpera.html":[2,0,0,14], +"classGpgFrontend_1_1GpgFileOpera.html#a14cddfe822c9410cd9c301d08963b7e7":[2,0,0,14,7], +"classGpgFrontend_1_1GpgFileOpera.html#a234d939ae0b2c3f799dd01130fad9379":[2,0,0,14,3], +"classGpgFrontend_1_1GpgFileOpera.html#a350df1c07c054625c4755a78e6ca5ca8":[2,0,0,14,6], +"classGpgFrontend_1_1GpgFileOpera.html#a6353e1688b113e5746aced6aa7f3876e":[2,0,0,14,5], +"classGpgFrontend_1_1GpgFileOpera.html#a74eb3ba532a236d8ad284b41265b0ccd":[2,0,0,14,1], +"classGpgFrontend_1_1GpgFileOpera.html#a826efca057afb07157453b3b9e267b0f":[2,0,0,14,4], +"classGpgFrontend_1_1GpgFileOpera.html#a90949b4e9e6116784260cd0e416551db":[2,0,0,14,2], +"classGpgFrontend_1_1GpgFileOpera.html#aa81da3d72c4fbc57e7138bfec7731152":[2,0,0,14,0], +"classGpgFrontend_1_1GpgImportInformation.html":[2,0,0,17], +"classGpgFrontend_1_1GpgImportInformation.html#a0e946c24f6045b2454ac3296df2e299e":[2,0,0,17,4], +"classGpgFrontend_1_1GpgImportInformation.html#a19e37d28f4462caf2b3522d50ceaf897":[2,0,0,17,0], +"classGpgFrontend_1_1GpgImportInformation.html#a226f8d47609d1fd562d84c1f02fed02a":[2,0,0,17,5], +"classGpgFrontend_1_1GpgImportInformation.html#a2ca60bb922c73eec90b74a9827becfe9":[2,0,0,17,13], +"classGpgFrontend_1_1GpgImportInformation.html#a3c7ef95ff89df66e376bacdf09abb61b":[2,0,0,17,15], +"classGpgFrontend_1_1GpgImportInformation.html#a43096e07e00d7650be8e286d45899ed0":[2,0,0,17,10], +"classGpgFrontend_1_1GpgImportInformation.html#a47346d8f24587e024147fd3129d1233e":[2,0,0,17,14], +"classGpgFrontend_1_1GpgImportInformation.html#a4e8d490de713686b043ee899969965a6":[2,0,0,17,7], +"classGpgFrontend_1_1GpgImportInformation.html#a55756b7a0ba05f1086369e680a532021":[2,0,0,17,2], +"classGpgFrontend_1_1GpgImportInformation.html#a7ca790cc6e9b12c5c3fd9fcea3ec0f37":[2,0,0,17,12], +"classGpgFrontend_1_1GpgImportInformation.html#a8b98cf24d9fdddc7678b755b2f472a83":[2,0,0,17,6], +"classGpgFrontend_1_1GpgImportInformation.html#a8db7f3b11fa2825dc9939f029742c933":[2,0,0,17,8], +"classGpgFrontend_1_1GpgImportInformation.html#aa1e033e2dee0fd7b4e0fed537e24aa70":[2,0,0,17,9], +"classGpgFrontend_1_1GpgImportInformation.html#ab282d4f701403cd68eb02d1aad30be56":[2,0,0,17,1], +"classGpgFrontend_1_1GpgImportInformation.html#acc4095bfe874287bb8823be30a9fcb45":[2,0,0,17,11], +"classGpgFrontend_1_1GpgImportInformation.html#add4b1898e674e14b8f649e60b585db89":[2,0,0,17,3], +"classGpgFrontend_1_1GpgImportedKey.html":[2,0,0,16], +"classGpgFrontend_1_1GpgImportedKey.html#a356e729d0002ba280910de3a5fcc7f1e":[2,0,0,16,1], +"classGpgFrontend_1_1GpgImportedKey.html#aaeba0000ee69f4eec95fb5b109f7058e":[2,0,0,16,0], +"classGpgFrontend_1_1GpgInfo.html":[2,0,0,38], +"classGpgFrontend_1_1GpgInfo.html#a072503811cb59dad27040e4e8914d18b":[2,0,0,38,13], +"classGpgFrontend_1_1GpgInfo.html#a0c1dbdb54f880a620419fdbd8336dc5d":[2,0,0,38,8], +"classGpgFrontend_1_1GpgInfo.html#a2416ae0ab9bedc61782d16075750a9c0":[2,0,0,38,0], +"classGpgFrontend_1_1GpgInfo.html#a2fcd53b59bc251c38eb8d79cec946777":[2,0,0,38,11], +"classGpgFrontend_1_1GpgInfo.html#a48659b780f8d0153ca0eb985a072b5ba":[2,0,0,38,1], +"classGpgFrontend_1_1GpgInfo.html#a7347d47006bdf41f1da979ea3289de7e":[2,0,0,38,6], +"classGpgFrontend_1_1GpgInfo.html#a8c7e75d67b2438c61bbe4cebe68a7029":[2,0,0,38,7], +"classGpgFrontend_1_1GpgInfo.html#aa8224398d82e584e13a7859362139d56":[2,0,0,38,14], +"classGpgFrontend_1_1GpgInfo.html#aae8f26ff084fb2541826efb7b20c3dc0":[2,0,0,38,4], +"classGpgFrontend_1_1GpgInfo.html#aaea5a9651daac0323495ce12c152dc23":[2,0,0,38,12], +"classGpgFrontend_1_1GpgInfo.html#abbb3d503b10073bebf86d79bbaeab4c9":[2,0,0,38,9], +"classGpgFrontend_1_1GpgInfo.html#ac8ecbf438d05dc434c77825dd38dfdf2":[2,0,0,38,3], +"classGpgFrontend_1_1GpgInfo.html#af6ca2e99ffc487b8e4aa251d3cb23191":[2,0,0,38,10], +"classGpgFrontend_1_1GpgInfo.html#af771ce437619235615538e28c9096788":[2,0,0,38,5], +"classGpgFrontend_1_1GpgInfo.html#af81f332808633b18e3f0105caa761754":[2,0,0,38,2], +"classGpgFrontend_1_1GpgKey.html":[2,0,0,40], +"classGpgFrontend_1_1GpgKey.html#a165b3f645e2c6a4bbd024199e1f1cc9b":[2,0,0,40,12], +"classGpgFrontend_1_1GpgKey.html#a1c21bc3b1788753f56272ad73052fc5f":[2,0,0,40,19], +"classGpgFrontend_1_1GpgKey.html#a1d6e415e77625c1281dac1cc5f33f804":[2,0,0,40,5], +"classGpgFrontend_1_1GpgKey.html#a1e9223bb1ad8fbb4e769680de39b3697":[2,0,0,40,4], +"classGpgFrontend_1_1GpgKey.html#a2d28e72cfb741deeadfe02ff456fb490":[2,0,0,40,31], +"classGpgFrontend_1_1GpgKey.html#a3327ad34ff14feb75f3fbfc2bfb7fc44":[2,0,0,40,16], +"classGpgFrontend_1_1GpgKey.html#a3532e20298b642f5d312712fa8a791df":[2,0,0,40,14], +"classGpgFrontend_1_1GpgKey.html#a371a24c4e9d3b99a36f76ff8c7f2d0e6":[2,0,0,40,25], +"classGpgFrontend_1_1GpgKey.html#a3b08060c07a9cc207eb8c98771bd4bc1":[2,0,0,40,2], +"classGpgFrontend_1_1GpgKey.html#a3fd5bfe6e9fd5f016b854fc92f19146e":[2,0,0,40,9], +"classGpgFrontend_1_1GpgKey.html#a4f50b2f13b3a5dc7298ee9665e7a5367":[2,0,0,40,41], +"classGpgFrontend_1_1GpgKey.html#a55a6485f6c2cc5bec0fdf02cd7e0d8ea":[2,0,0,40,10], +"classGpgFrontend_1_1GpgKey.html#a59e76d40f01e765f0544e5c6a2851be6":[2,0,0,40,24], +"classGpgFrontend_1_1GpgKey.html#a5b276fdeb438fe14ec2850d799401be6":[2,0,0,40,17], +"classGpgFrontend_1_1GpgKey.html#a60b342ca6e1062d4489d8ba8f7a5a605":[2,0,0,40,32], +"classGpgFrontend_1_1GpgKey.html#a635bbf8f08268cfdac1bc120981df877":[2,0,0,40,34], +"classGpgFrontend_1_1GpgKey.html#a637f2a5e9b9b7cafcdaada00c2f7de87":[2,0,0,40,36], +"classGpgFrontend_1_1GpgKey.html#a66711ffd7f4af58594b7de984a13c327":[2,0,0,40,23], +"classGpgFrontend_1_1GpgKey.html#a6b243df2320999ebcdaf9645531b925a":[2,0,0,40,39], +"classGpgFrontend_1_1GpgKey.html#a746699842f6c49687af0487a8b3b163d":[2,0,0,40,20], +"classGpgFrontend_1_1GpgKey.html#a7b1e0398bedaecbfa2757243e5f4f0ab":[2,0,0,40,11], +"classGpgFrontend_1_1GpgKey.html#a7bceca68800c3ada9280c29eaeb5affc":[2,0,0,40,15], +"classGpgFrontend_1_1GpgKey.html#a7eaf1e722d8a59f6a86d8e732217d89c":[2,0,0,40,22], +"classGpgFrontend_1_1GpgKey.html#a827962251cf47c41dbea56665ae4207b":[2,0,0,40,37], +"classGpgFrontend_1_1GpgKey.html#a888c0263f04bdd52967e092b9c73eb6d":[2,0,0,40,35], +"classGpgFrontend_1_1GpgKey.html#a8930f958f3ca1f5566f63e8c2273837e":[2,0,0,40,13], +"classGpgFrontend_1_1GpgKey.html#aa599159ab1041c2f5a5fbf09666489b9":[2,0,0,40,3], +"classGpgFrontend_1_1GpgKey.html#aaa66d803456152fed9ba4cf5bce7b99d":[2,0,0,40,27], +"classGpgFrontend_1_1GpgKey.html#aadac1b776764ee9d0ca4f8bb9f9e0741":[2,0,0,40,33], +"classGpgFrontend_1_1GpgKey.html#ac8b13b45e487cdc423b78d3017897f99":[2,0,0,40,21], +"classGpgFrontend_1_1GpgKey.html#ac90afba6a5aec0bc2c0f1e01de417ec8":[2,0,0,40,7], +"classGpgFrontend_1_1GpgKey.html#ad1784bcc872f42b87e48bcfa40dab4cd":[2,0,0,40,42], +"classGpgFrontend_1_1GpgKey.html#ad2440a2902c81192d5549fe951ddb130":[2,0,0,40,18], +"classGpgFrontend_1_1GpgKey.html#adc22a349796af0ff5dd4499624b6d03d":[2,0,0,40,38], +"classGpgFrontend_1_1GpgKey.html#ae1957e909d8dcbe48c5931d1cdff7a81":[2,0,0,40,1], +"classGpgFrontend_1_1GpgKey.html#ae370e41a7ea7307fbf4d28e0f2a67e0c":[2,0,0,40,26], +"classGpgFrontend_1_1GpgKey.html#ae58bc1fdcefaaf646f6b8740cb69eef6":[2,0,0,40,40], +"classGpgFrontend_1_1GpgKey.html#aeb316f8728b10e966eed6f0291794eed":[2,0,0,40,6], +"classGpgFrontend_1_1GpgKey.html#aec4e7e1845073f23cf55dc660c69c44a":[2,0,0,40,43], +"classGpgFrontend_1_1GpgKey.html#aefa0a44adb1b7c49553a85b545fdffe1":[2,0,0,40,28], +"classGpgFrontend_1_1GpgKey.html#af72de794e24876b0e22a8d318ec0f8ad":[2,0,0,40,8], +"classGpgFrontend_1_1GpgKey.html#afdffba6dfb6009a0b320623df7a26be0":[2,0,0,40,29], +"classGpgFrontend_1_1GpgKey.html#afedc843415bd4b59687e975006e470ed":[2,0,0,40,30], +"classGpgFrontend_1_1GpgKeyGetter.html":[2,0,0,15], +"classGpgFrontend_1_1GpgKeyGetter.html#a028fe69516a51c526bbd2ec4235053ad":[2,0,0,15,6], +"classGpgFrontend_1_1GpgKeyGetter.html#a7a8bc7c0f12a11e108051e4c824fc430":[2,0,0,15,8], +"classGpgFrontend_1_1GpgKeyGetter.html#a7ec8d8431a771c602cbfa946d13d6c74":[2,0,0,15,7], +"classGpgFrontend_1_1GpgKeyGetter.html#a81941e1f562dc22977a71d00dd10956a":[2,0,0,15,10], +"classGpgFrontend_1_1GpgKeyGetter.html#a8eeee9f6dd74dc24c24794ce63c62285":[2,0,0,15,0], +"classGpgFrontend_1_1GpgKeyGetter.html#a94243d09c9418c8ebf0c7cdab4a2b7f1":[2,0,0,15,4], +"classGpgFrontend_1_1GpgKeyGetter.html#a9567d5e08ae73c5bafcd1dc378fed066":[2,0,0,15,11], +"classGpgFrontend_1_1GpgKeyGetter.html#aa4aef315d82123726be879097d3df147":[2,0,0,15,9], +"classGpgFrontend_1_1GpgKeyGetter.html#aa5979c21af58b874b33c203752dcc805":[2,0,0,15,5], +"classGpgFrontend_1_1GpgKeyGetter.html#ab5196ef4ed5323fc2af70abf801ea260":[2,0,0,15,3], +"classGpgFrontend_1_1GpgKeyGetter.html#ad9a902ea54566d4583304b072c4add51":[2,0,0,15,2], +"classGpgFrontend_1_1GpgKeyGetter.html#ae1d7846ad2fa17ab90c72b3186ba5335":[2,0,0,15,12], +"classGpgFrontend_1_1GpgKeyGetter.html#afe78ac470287d70e7df51aae327b9f54":[2,0,0,15,1], +"classGpgFrontend_1_1GpgKeyImportExporter.html":[2,0,0,18], +"classGpgFrontend_1_1GpgKeyImportExporter.html#a0eede7c782d17b32d6c1f30cd8496561":[2,0,0,18,0], +"classGpgFrontend_1_1GpgKeyImportExporter.html#a51cb18aa7302d7a48ccd1ee17f060391":[2,0,0,18,2], +"classGpgFrontend_1_1GpgKeyImportExporter.html#a6a5e8d642ac5a3e98799af6495ef590b":[2,0,0,18,6], +"classGpgFrontend_1_1GpgKeyImportExporter.html#a8157afa844c8bf964ce83f5de71efc5a":[2,0,0,18,4], +"classGpgFrontend_1_1GpgKeyImportExporter.html#aa0a73314ef94f397e2ef53d40abc9731":[2,0,0,18,3], +"classGpgFrontend_1_1GpgKeyImportExporter.html#aa9fbda8f6c3fa36a503075d7a124fa3f":[2,0,0,18,5], +"classGpgFrontend_1_1GpgKeyImportExporter.html#ab7a9be5283047695cd47562775adf79d":[2,0,0,18,8], +"classGpgFrontend_1_1GpgKeyImportExporter.html#abf7c0442549ae8602e1249cdf0da55df":[2,0,0,18,7], +"classGpgFrontend_1_1GpgKeyImportExporter.html#ade0e4de4078b6589f863dbfc76786f0e":[2,0,0,18,9], +"classGpgFrontend_1_1GpgKeyImportExporter.html#ae7d61a8c39ef7e7f1562895dbf108e68":[2,0,0,18,1], +"classGpgFrontend_1_1GpgKeyManager.html":[2,0,0,19], +"classGpgFrontend_1_1GpgKeyManager.html#a073f96ccfa483a8856197610b8bdee9e":[2,0,0,19,4], +"classGpgFrontend_1_1GpgKeyManager.html#a12138780c53add7589f78f056019e5e0":[2,0,0,19,3], +"classGpgFrontend_1_1GpgKeyManager.html#a1625abfbff168c476e76fa9425a6c37d":[2,0,0,19,2], +"classGpgFrontend_1_1GpgKeyManager.html#a210b717fd8ee63b064d77f32b0df4c5d":[2,0,0,19,0], +"classGpgFrontend_1_1GpgKeyManager.html#aa2c0e804db1c4aaf3b861ee5ab54ebd8":[2,0,0,19,1], +"classGpgFrontend_1_1GpgKeyOpera.html":[2,0,0,20], +"classGpgFrontend_1_1GpgKeyOpera.html#a01d6a920156a38a34c57d9c49c361079":[2,0,0,20,0], +"classGpgFrontend_1_1GpgKeyOpera.html#a12e6b05b23781861065d7e3243c9349e":[2,0,0,20,8], +"classGpgFrontend_1_1GpgKeyOpera.html#a151c47b997951e9162f8b036c3cb15e0":[2,0,0,20,1], +"classGpgFrontend_1_1GpgKeyOpera.html#a4cc3ac91613164d7dc61a016a2b4caea":[2,0,0,20,3], +"classGpgFrontend_1_1GpgKeyOpera.html#a76a7f59701add8a59d8835919dad2000":[2,0,0,20,7], +"classGpgFrontend_1_1GpgKeyOpera.html#a882d99e8407cc22fb8b6e61c531fbe85":[2,0,0,20,5], +"classGpgFrontend_1_1GpgKeyOpera.html#a8a06d0f7a600d4428359b653a68f717e":[2,0,0,20,2], +"classGpgFrontend_1_1GpgKeyOpera.html#a91a9a9f24f6b620ea7b906c529e3d9a4":[2,0,0,20,4], +"classGpgFrontend_1_1GpgKeyOpera.html#ab4086c8ccd6f1f926993e96b687dea69":[2,0,0,20,9], +"classGpgFrontend_1_1GpgKeyOpera.html#ab7e16d1f4cba23ea5b5b9f6009ce5ee2":[2,0,0,20,6], +"classGpgFrontend_1_1GpgKeySignature.html":[2,0,0,41], +"classGpgFrontend_1_1GpgKeySignature.html#a1725474a1c61c0a3d724dc2f999cb24a":[2,0,0,41,17], +"classGpgFrontend_1_1GpgKeySignature.html#a19fc1ca3733b576e12628e333e2c449e":[2,0,0,41,16], +"classGpgFrontend_1_1GpgKeySignature.html#a217a2a8b31e44d4c9b463470362a1522":[2,0,0,41,12], +"classGpgFrontend_1_1GpgKeySignature.html#a224130c0da22538adba625c197b32fff":[2,0,0,41,21], +"classGpgFrontend_1_1GpgKeySignature.html#a4277f6deb7c07aaba62fbe8e7867b1fe":[2,0,0,41,10], +"classGpgFrontend_1_1GpgKeySignature.html#a4a501aa3a549a6a6914e2aeed4ff302e":[2,0,0,41,5], +"classGpgFrontend_1_1GpgKeySignature.html#a4ae987707a6579cec3dfe540b3410bc6":[2,0,0,41,20], +"classGpgFrontend_1_1GpgKeySignature.html#a59ab21f52b88355ca36ff5ebd77093a6":[2,0,0,41,9], +"classGpgFrontend_1_1GpgKeySignature.html#a8a9c792c963ef610e511b7deb6829c0b":[2,0,0,41,1], +"classGpgFrontend_1_1GpgKeySignature.html#a8b025f50bc527b0bbe58bd016bb47772":[2,0,0,41,6], +"classGpgFrontend_1_1GpgKeySignature.html#a927602d294d02adde57193f5094ce689":[2,0,0,41,19], +"classGpgFrontend_1_1GpgKeySignature.html#a95254ea2c00829b9dc87adc4a317cde5":[2,0,0,41,14], +"classGpgFrontend_1_1GpgKeySignature.html#a9aa824b0a9e03dfbcc7849a7b526ef67":[2,0,0,41,18], +"classGpgFrontend_1_1GpgKeySignature.html#a9ba501d98265c9677d00e3dca3e8d903":[2,0,0,41,4], +"classGpgFrontend_1_1GpgKeySignature.html#a9c7253e7602e834ac3311cca0cbe84a7":[2,0,0,41,0], +"classGpgFrontend_1_1GpgKeySignature.html#ab4d7044f4e1ddcf0ae0d28be43f0fcb3":[2,0,0,41,2], +"classGpgFrontend_1_1GpgKeySignature.html#abb4571e79c921261c03f57980d502e72":[2,0,0,41,3], +"classGpgFrontend_1_1GpgKeySignature.html#abdff0ce4d5e8b7be0aa2e46e0003b22f":[2,0,0,41,8], +"classGpgFrontend_1_1GpgKeySignature.html#acd5e46397ebea3224761a6af15eea4fb":[2,0,0,41,11], +"classGpgFrontend_1_1GpgKeySignature.html#adc8ad65688a6dab0993cf655f5361df8":[2,0,0,41,7], +"classGpgFrontend_1_1GpgKeySignature.html#aec39e4f67f17358f26bbbeb4cf62b7f4":[2,0,0,41,15], +"classGpgFrontend_1_1GpgKeySignature.html#af2639fe6d2774ba286308f3a7b58ba73":[2,0,0,41,13], +"classGpgFrontend_1_1GpgResultAnalyse.html":[2,0,0,26], +"classGpgFrontend_1_1GpgResultAnalyse.html#a3664c37fe30b7006f50e18792957bf58":[2,0,0,26,2], +"classGpgFrontend_1_1GpgResultAnalyse.html#a7f13592b421c7b0d3853f15cece8d195":[2,0,0,26,5], +"classGpgFrontend_1_1GpgResultAnalyse.html#a80c80d597391d2d531345d3dd507b038":[2,0,0,26,1], +"classGpgFrontend_1_1GpgResultAnalyse.html#a8fc5d4f83e5c0aa0ac19f46c3ec1619e":[2,0,0,26,4], +"classGpgFrontend_1_1GpgResultAnalyse.html#aa3c9bdf1ea4c87476010ef32fd2fb426":[2,0,0,26,0], +"classGpgFrontend_1_1GpgResultAnalyse.html#aa9e35e573ea4c0ebdbb014d1afbaab9d":[2,0,0,26,3], +"classGpgFrontend_1_1GpgResultAnalyse.html#abb323cb23d9be5aa0d842d686bbad962":[2,0,0,26,8], +"classGpgFrontend_1_1GpgResultAnalyse.html#ad5160473724e6af2c21a4851c635cbc6":[2,0,0,26,7], +"classGpgFrontend_1_1GpgResultAnalyse.html#af82d2d107c9834daea98560f9bca2873":[2,0,0,26,6], +"classGpgFrontend_1_1GpgSignResultAnalyse.html":[2,0,0,27], +"classGpgFrontend_1_1GpgSignResultAnalyse.html#a3ddd2d52ad91fdf7f4c8740312570c8e":[2,0,0,27,0], +"classGpgFrontend_1_1GpgSignResultAnalyse.html#a6cd4794be82a4c34105d02a5e8de615b":[2,0,0,27,1], +"classGpgFrontend_1_1GpgSignResultAnalyse.html#ab625d0e70db612bc77bf6d403b3ac56a":[2,0,0,27,3], +"classGpgFrontend_1_1GpgSignResultAnalyse.html#abf0d7b3b601ac7498b661495c38d5bf1":[2,0,0,27,2], +"classGpgFrontend_1_1GpgSignature.html":[2,0,0,42], +"classGpgFrontend_1_1GpgSignature.html#a0796249b259af85c30873f5c41a01101":[2,0,0,42,7], +"classGpgFrontend_1_1GpgSignature.html#a09cb6b465e85dffcf7867e70a276e9ad":[2,0,0,42,13], +"classGpgFrontend_1_1GpgSignature.html#a0b2f5d9e08d407050a392ba0f7881986":[2,0,0,42,14], +"classGpgFrontend_1_1GpgSignature.html#a1b705f45de8f6d0ae97f1ffda28185b7":[2,0,0,42,5], +"classGpgFrontend_1_1GpgSignature.html#a1c4fbd2d10a769c1ed0b644f06e4f871":[2,0,0,42,16], +"classGpgFrontend_1_1GpgSignature.html#a222e57e5992e5e91ca36d8dcc77fd402":[2,0,0,42,6], +"classGpgFrontend_1_1GpgSignature.html#a3b143f6e13b71663d81fc0f326aad17f":[2,0,0,42,12], +"classGpgFrontend_1_1GpgSignature.html#a44f137a457ac109d145a1cdd8e544e3a":[2,0,0,42,2], +"classGpgFrontend_1_1GpgSignature.html#a627b5206311998dd3f45393344b195be":[2,0,0,42,8] }; diff --git a/docs/html/navtreeindex2.js b/docs/html/navtreeindex2.js index a8348871..543fbb8f 100644 --- a/docs/html/navtreeindex2.js +++ b/docs/html/navtreeindex2.js @@ -1,99 +1,126 @@ var NAVTREEINDEX2 = { -"classGpgFrontend_1_1GpgSubKey.html#ab9208165c74b93fa8c5b7a06cd808f56":[2,0,0,41,17], -"classGpgFrontend_1_1GpgSubKey.html#ac4187d50f525188c6aaea29a86f83bba":[2,0,0,41,21], -"classGpgFrontend_1_1GpgSubKey.html#ac686352b5ede5aa4dd74b3488c53891e":[2,0,0,41,13], -"classGpgFrontend_1_1GpgSubKey.html#acc9bb0f214c44802ad45d2557afebbae":[2,0,0,41,22], -"classGpgFrontend_1_1GpgSubKey.html#accb86b50755698b3e1e7fdfe06f44e84":[2,0,0,41,18], -"classGpgFrontend_1_1GpgSubKey.html#ad12e160dbb394a849d6cf31e614a76f5":[2,0,0,41,3], -"classGpgFrontend_1_1GpgSubKey.html#ad818aa66e47d6686eb8ff253b3c21814":[2,0,0,41,11], -"classGpgFrontend_1_1GpgTOFUInfo.html":[2,0,0,42], -"classGpgFrontend_1_1GpgTOFUInfo.html#a03f286ac6f16ec6d33eb3dcfd4e3f6d5":[2,0,0,42,7], -"classGpgFrontend_1_1GpgTOFUInfo.html#a34d1073bb25a8958e70016f3cd6b167f":[2,0,0,42,8], -"classGpgFrontend_1_1GpgTOFUInfo.html#a471a08bc906d74699f394e34d2581b78":[2,0,0,42,5], -"classGpgFrontend_1_1GpgTOFUInfo.html#a4e4ba35a4cb6b33fa0b9890ec374d1b3":[2,0,0,42,15], -"classGpgFrontend_1_1GpgTOFUInfo.html#a4f46d32bc9bf1a1a3bbc32461538a422":[2,0,0,42,4], -"classGpgFrontend_1_1GpgTOFUInfo.html#a681046a3916d0d0cdcf0852bfa76fdb0":[2,0,0,42,9], -"classGpgFrontend_1_1GpgTOFUInfo.html#a746cbcf731af6b19ade42debbf1e2c8f":[2,0,0,42,11], -"classGpgFrontend_1_1GpgTOFUInfo.html#a7607934f767ac1920e6bf6c363c97402":[2,0,0,42,13], -"classGpgFrontend_1_1GpgTOFUInfo.html#a788a439b206882c6317162878e2fe0b8":[2,0,0,42,10], -"classGpgFrontend_1_1GpgTOFUInfo.html#a80acb09347a74cc35776d58b9874cf37":[2,0,0,42,1], -"classGpgFrontend_1_1GpgTOFUInfo.html#a86f44d98d2109f0fe210604326393eb3":[2,0,0,42,0], -"classGpgFrontend_1_1GpgTOFUInfo.html#a8770062c9e0c3875083d2c92ebe8ccb0":[2,0,0,42,12], -"classGpgFrontend_1_1GpgTOFUInfo.html#aa953ff4b877b4b831d34e4a5678b0cd3":[2,0,0,42,3], -"classGpgFrontend_1_1GpgTOFUInfo.html#aaabb02aef76162ed59647445b4c1f6de":[2,0,0,42,2], -"classGpgFrontend_1_1GpgTOFUInfo.html#abc53f7ca1b737ed1a913ad2f90a346e4":[2,0,0,42,6], -"classGpgFrontend_1_1GpgTOFUInfo.html#aec03f07d2ae5d81887610ca42420462d":[2,0,0,42,14], -"classGpgFrontend_1_1GpgUID.html":[2,0,0,43], -"classGpgFrontend_1_1GpgUID.html#a0d1a061c131e5269923dea52be3b3be4":[2,0,0,43,6], -"classGpgFrontend_1_1GpgUID.html#a2a36376484f7c1a4a19377d24e47a0b2":[2,0,0,43,11], -"classGpgFrontend_1_1GpgUID.html#a32450fbf22c64cf522e9a090423344a2":[2,0,0,43,9], -"classGpgFrontend_1_1GpgUID.html#a35fdcef4ecf2598461bdc596ffc7957c":[2,0,0,43,1], -"classGpgFrontend_1_1GpgUID.html#a37031574c0a749bfedf1fd5f98c3c84f":[2,0,0,43,15], -"classGpgFrontend_1_1GpgUID.html#a388ad367d353edd5eeb6e529977c924c":[2,0,0,43,7], -"classGpgFrontend_1_1GpgUID.html#a467897d43a18b0cadd2e2e44384f6cdd":[2,0,0,43,12], -"classGpgFrontend_1_1GpgUID.html#a572cf652da288537bdc3f88b4fb1ab18":[2,0,0,43,5], -"classGpgFrontend_1_1GpgUID.html#a58ed67984063f0b87e35bc1782a1cc0a":[2,0,0,43,4], -"classGpgFrontend_1_1GpgUID.html#a7210ece9b898981dae83f8d29b1ca453":[2,0,0,43,3], -"classGpgFrontend_1_1GpgUID.html#a77ffebc8cf2b8aa7ae43f7f475982306":[2,0,0,43,13], -"classGpgFrontend_1_1GpgUID.html#a79928a4179a234d42c2275ff10ddc828":[2,0,0,43,14], -"classGpgFrontend_1_1GpgUID.html#acca1fff5f12a216b05f2a6186b1e436b":[2,0,0,43,8], -"classGpgFrontend_1_1GpgUID.html#ae1fb528a9d06d6e9f1feaf1bc291fe64":[2,0,0,43,2], -"classGpgFrontend_1_1GpgUID.html#ae4ba264bbdf1d9b83908f248d55c5809":[2,0,0,43,0], -"classGpgFrontend_1_1GpgUID.html#af7b5310b319378c30c488277e95ef601":[2,0,0,43,10], -"classGpgFrontend_1_1GpgUIDOperator.html":[2,0,0,19], -"classGpgFrontend_1_1GpgUIDOperator.html#a47f762666afbc806365877ff70947841":[2,0,0,19,3], -"classGpgFrontend_1_1GpgUIDOperator.html#a672bbf74abac9140233c4e1c7864d15d":[2,0,0,19,1], -"classGpgFrontend_1_1GpgUIDOperator.html#a7c0de570de59d4ebc6c0bed681119bf7":[2,0,0,19,2], -"classGpgFrontend_1_1GpgUIDOperator.html#ab74a830c858ab9ff135375743393a7c7":[2,0,0,19,0], -"classGpgFrontend_1_1GpgUIDOperator.html#acbdabec97df508382b0c9b1fffbf1dd5":[2,0,0,19,4], -"classGpgFrontend_1_1GpgUIDOperator.html#aee04c70b7802699eae70d7b26255f7ec":[2,0,0,19,5], -"classGpgFrontend_1_1GpgVerifyResultAnalyse.html":[2,0,0,26], -"classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a02933c39d5aa5e448ffd36dfc4bead28":[2,0,0,26,1], -"classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a09e7a3cc3bf3d64e5d2428cd3040d2b2":[2,0,0,26,6], -"classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a2063acf8262e2c600b14ed1948486ac3":[2,0,0,26,2], -"classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a57bf4a26466e07f7f0ecc19de3782104":[2,0,0,26,3], -"classGpgFrontend_1_1GpgVerifyResultAnalyse.html#ab1d67da5dbe5bd2d665f7121e5f5354b":[2,0,0,26,0], -"classGpgFrontend_1_1GpgVerifyResultAnalyse.html#acdb7839a5158f078b38d60f0fefc5155":[2,0,0,26,4], -"classGpgFrontend_1_1GpgVerifyResultAnalyse.html#ad9e53477ca77f8685ca2102bf0fc5d4c":[2,0,0,26,5], -"classGpgFrontend_1_1KeyPackageOperator.html":[2,0,0,20], -"classGpgFrontend_1_1KeyPackageOperator.html#a6d9cf022a1e0cf54c061495f59c1b4b9":[2,0,0,20,3], -"classGpgFrontend_1_1KeyPackageOperator.html#a825d987dacd8a99d9d87729e1861a152":[2,0,0,20,0], -"classGpgFrontend_1_1KeyPackageOperator.html#a89538b180a42eb7d6ae53583fe10ee07":[2,0,0,20,4], -"classGpgFrontend_1_1KeyPackageOperator.html#ade02f022e405e98377343c4667c206e9":[2,0,0,20,1], -"classGpgFrontend_1_1KeyPackageOperator.html#ae90b362a32b6f6014cda1dc232bd3f0e":[2,0,0,20,2], -"classGpgFrontend_1_1PassphraseGenerator.html":[2,0,0,21], -"classGpgFrontend_1_1PassphraseGenerator.html#a12ee6f9b7fff4883074321c7e0de3dfa":[2,0,0,21,3], -"classGpgFrontend_1_1PassphraseGenerator.html#a19ac4999bbd5fb7e6c42a4aef9606892":[2,0,0,21,2], -"classGpgFrontend_1_1PassphraseGenerator.html#a8b4ee1083343fba6d947b85cd66079b8":[2,0,0,21,1], -"classGpgFrontend_1_1PassphraseGenerator.html#ac82ef545a54468ad02253a61cc62e3cf":[2,0,0,21,0], -"classGpgFrontend_1_1SingletonFunctionObject.html":[2,0,0,34], -"classGpgFrontend_1_1SingletonFunctionObject.html#a02e76b42ab51d77588b01c7508bed258":[2,0,0,34,3], -"classGpgFrontend_1_1SingletonFunctionObject.html#a03ce3095a745ecbf5e6a032e7da4bc97":[2,0,0,34,12], -"classGpgFrontend_1_1SingletonFunctionObject.html#a083807ff8cec58dc0aa732844edaf518":[2,0,0,34,6], -"classGpgFrontend_1_1SingletonFunctionObject.html#a194e49b07d46345bdad386505d743a61":[2,0,0,34,0], -"classGpgFrontend_1_1SingletonFunctionObject.html#a4aa7f1eb1d3281bb1fccfcbb1b416251":[2,0,0,34,4], -"classGpgFrontend_1_1SingletonFunctionObject.html#a50e2b3794d6553f4231eaec72d9d0a50":[2,0,0,34,9], -"classGpgFrontend_1_1SingletonFunctionObject.html#a5f2f0474871971f86ff91fb6a2408621":[2,0,0,34,7], -"classGpgFrontend_1_1SingletonFunctionObject.html#a70484d7cfe9f9dcbcd5f8bb749250f36":[2,0,0,34,10], -"classGpgFrontend_1_1SingletonFunctionObject.html#a7090636bed6f4bad5b99f28f6872c645":[2,0,0,34,2], -"classGpgFrontend_1_1SingletonFunctionObject.html#a8296be8c449f88175285186831b995bc":[2,0,0,34,5], -"classGpgFrontend_1_1SingletonFunctionObject.html#aa99440b9177f5d0c18840f08a40d64b7":[2,0,0,34,8], -"classGpgFrontend_1_1SingletonFunctionObject.html#aabb190a60f7a5d4ded43cae16ab8f59e":[2,0,0,34,11], -"classGpgFrontend_1_1SingletonFunctionObject.html#aabc5fe8e5a372ac276a265286457cb9a":[2,0,0,34,1], -"classGpgFrontend_1_1SingletonFunctionObject.html#ab49b1d50252e1934691a9483a6df2106":[2,0,0,34,13], -"classGpgFrontend_1_1SingletonStorage.html":[2,0,0,32], -"classGpgFrontend_1_1SingletonStorage.html#a15161d0afafec602018a89266dab5641":[2,0,0,32,5], -"classGpgFrontend_1_1SingletonStorage.html#a3f09424ebdc097fbdab77564a7d723ea":[2,0,0,32,1], -"classGpgFrontend_1_1SingletonStorage.html#a4c16c32e549494e394a0ddd859890a02":[2,0,0,32,0], -"classGpgFrontend_1_1SingletonStorage.html#a6181f2b5af39c6b86de89e1ba9eeff1c":[2,0,0,32,4], -"classGpgFrontend_1_1SingletonStorage.html#ab0097bb648b2303d68a975c7cbea5a52":[2,0,0,32,3], -"classGpgFrontend_1_1SingletonStorage.html#adb22cc80a1ab040b6e4bce962625edfd":[2,0,0,32,2], -"classGpgFrontend_1_1SingletonStorageCollection.html":[2,0,0,33], -"classGpgFrontend_1_1SingletonStorageCollection.html#a6f933390c54b7f55d5ffb4624074725f":[2,0,0,33,1], -"classGpgFrontend_1_1SingletonStorageCollection.html#ab648cb257beb2475eb5fca6453c331f9":[2,0,0,33,3], -"classGpgFrontend_1_1SingletonStorageCollection.html#ac56d19e0d4b99e7b8a86a017721f3db1":[2,0,0,33,0], -"classGpgFrontend_1_1SingletonStorageCollection.html#ae28930630a2dce804cff5589155aadfc":[2,0,0,33,2], +"classGpgFrontend_1_1GpgSignature.html#a859b4a3788c8490937f954d92686f490":[2,0,0,42,11], +"classGpgFrontend_1_1GpgSignature.html#aa6f0821b573bfcc81d4c0fbc23fdec29":[2,0,0,42,0], +"classGpgFrontend_1_1GpgSignature.html#ab7a4489b35d918503076b2659d14fafe":[2,0,0,42,1], +"classGpgFrontend_1_1GpgSignature.html#ab99e4004f1ad400fd25232312a8ea66b":[2,0,0,42,10], +"classGpgFrontend_1_1GpgSignature.html#aca9c1f1a92fddaecc7d601f1f25a90de":[2,0,0,42,15], +"classGpgFrontend_1_1GpgSignature.html#ace10a3ac7f4dc3888b2ad62157213f1c":[2,0,0,42,9], +"classGpgFrontend_1_1GpgSignature.html#aea05d301ccf75f4a3aec2be58541eca8":[2,0,0,42,3], +"classGpgFrontend_1_1GpgSignature.html#aeae075c7b9c628f558d6fedbc8b9233a":[2,0,0,42,4], +"classGpgFrontend_1_1GpgSubKey.html":[2,0,0,43], +"classGpgFrontend_1_1GpgSubKey.html#a04d9df643cd08200cd742dc243be6cd6":[2,0,0,43,14], +"classGpgFrontend_1_1GpgSubKey.html#a09b00ac6a3b934b816f9522f78e77d59":[2,0,0,43,7], +"classGpgFrontend_1_1GpgSubKey.html#a18d7a2f0a3cee32a123b780f2b8b8708":[2,0,0,43,9], +"classGpgFrontend_1_1GpgSubKey.html#a1c88420ec4756f2e5bda1b76ff2f7c2d":[2,0,0,43,23], +"classGpgFrontend_1_1GpgSubKey.html#a278abd1ba3abd90b05ed4ad494bc1e78":[2,0,0,43,0], +"classGpgFrontend_1_1GpgSubKey.html#a3c9605e6ccb7fa53d9c9013453d561fe":[2,0,0,43,2], +"classGpgFrontend_1_1GpgSubKey.html#a443f8ac5f47e5ac0ea3ac91edefe8c3c":[2,0,0,43,24], +"classGpgFrontend_1_1GpgSubKey.html#a48d3dfbd3aae9523ffbdb916aad8ad53":[2,0,0,43,8], +"classGpgFrontend_1_1GpgSubKey.html#a56938360f873949aa9ba3dbdaab519d1":[2,0,0,43,15], +"classGpgFrontend_1_1GpgSubKey.html#a59eba8a9d23429140e9a68126c9c7c5e":[2,0,0,43,1], +"classGpgFrontend_1_1GpgSubKey.html#a5e897d439606a35103a0b260be28c6a4":[2,0,0,43,5], +"classGpgFrontend_1_1GpgSubKey.html#a629f904a81c7c09ac9769b3fcf3b48f5":[2,0,0,43,10], +"classGpgFrontend_1_1GpgSubKey.html#a6696d67af322fa2125d99b50cae50417":[2,0,0,43,6], +"classGpgFrontend_1_1GpgSubKey.html#a6e8df85f8c1dea7705b761e68bb949ab":[2,0,0,43,4], +"classGpgFrontend_1_1GpgSubKey.html#a75abb60a2130efc7fad8ab8fb3157042":[2,0,0,43,12], +"classGpgFrontend_1_1GpgSubKey.html#a8fcbeae2ef3ad73a5aedee19f6de3e60":[2,0,0,43,20], +"classGpgFrontend_1_1GpgSubKey.html#a9cc81c515b6a197757b48dd334cc3344":[2,0,0,43,19], +"classGpgFrontend_1_1GpgSubKey.html#ab67395a986184cb9b20f3dc178fc52be":[2,0,0,43,16], +"classGpgFrontend_1_1GpgSubKey.html#ab9208165c74b93fa8c5b7a06cd808f56":[2,0,0,43,17], +"classGpgFrontend_1_1GpgSubKey.html#ac4187d50f525188c6aaea29a86f83bba":[2,0,0,43,21], +"classGpgFrontend_1_1GpgSubKey.html#ac686352b5ede5aa4dd74b3488c53891e":[2,0,0,43,13], +"classGpgFrontend_1_1GpgSubKey.html#acc9bb0f214c44802ad45d2557afebbae":[2,0,0,43,22], +"classGpgFrontend_1_1GpgSubKey.html#accb86b50755698b3e1e7fdfe06f44e84":[2,0,0,43,18], +"classGpgFrontend_1_1GpgSubKey.html#ad12e160dbb394a849d6cf31e614a76f5":[2,0,0,43,3], +"classGpgFrontend_1_1GpgSubKey.html#ad818aa66e47d6686eb8ff253b3c21814":[2,0,0,43,11], +"classGpgFrontend_1_1GpgTOFUInfo.html":[2,0,0,44], +"classGpgFrontend_1_1GpgTOFUInfo.html#a03f286ac6f16ec6d33eb3dcfd4e3f6d5":[2,0,0,44,7], +"classGpgFrontend_1_1GpgTOFUInfo.html#a34d1073bb25a8958e70016f3cd6b167f":[2,0,0,44,8], +"classGpgFrontend_1_1GpgTOFUInfo.html#a471a08bc906d74699f394e34d2581b78":[2,0,0,44,5], +"classGpgFrontend_1_1GpgTOFUInfo.html#a4e4ba35a4cb6b33fa0b9890ec374d1b3":[2,0,0,44,15], +"classGpgFrontend_1_1GpgTOFUInfo.html#a4f46d32bc9bf1a1a3bbc32461538a422":[2,0,0,44,4], +"classGpgFrontend_1_1GpgTOFUInfo.html#a681046a3916d0d0cdcf0852bfa76fdb0":[2,0,0,44,9], +"classGpgFrontend_1_1GpgTOFUInfo.html#a746cbcf731af6b19ade42debbf1e2c8f":[2,0,0,44,11], +"classGpgFrontend_1_1GpgTOFUInfo.html#a7607934f767ac1920e6bf6c363c97402":[2,0,0,44,13], +"classGpgFrontend_1_1GpgTOFUInfo.html#a788a439b206882c6317162878e2fe0b8":[2,0,0,44,10], +"classGpgFrontend_1_1GpgTOFUInfo.html#a80acb09347a74cc35776d58b9874cf37":[2,0,0,44,1], +"classGpgFrontend_1_1GpgTOFUInfo.html#a86f44d98d2109f0fe210604326393eb3":[2,0,0,44,0], +"classGpgFrontend_1_1GpgTOFUInfo.html#a8770062c9e0c3875083d2c92ebe8ccb0":[2,0,0,44,12], +"classGpgFrontend_1_1GpgTOFUInfo.html#aa953ff4b877b4b831d34e4a5678b0cd3":[2,0,0,44,3], +"classGpgFrontend_1_1GpgTOFUInfo.html#aaabb02aef76162ed59647445b4c1f6de":[2,0,0,44,2], +"classGpgFrontend_1_1GpgTOFUInfo.html#abc53f7ca1b737ed1a913ad2f90a346e4":[2,0,0,44,6], +"classGpgFrontend_1_1GpgTOFUInfo.html#aec03f07d2ae5d81887610ca42420462d":[2,0,0,44,14], +"classGpgFrontend_1_1GpgUID.html":[2,0,0,45], +"classGpgFrontend_1_1GpgUID.html#a0d1a061c131e5269923dea52be3b3be4":[2,0,0,45,6], +"classGpgFrontend_1_1GpgUID.html#a2a36376484f7c1a4a19377d24e47a0b2":[2,0,0,45,11], +"classGpgFrontend_1_1GpgUID.html#a32450fbf22c64cf522e9a090423344a2":[2,0,0,45,9], +"classGpgFrontend_1_1GpgUID.html#a35fdcef4ecf2598461bdc596ffc7957c":[2,0,0,45,1], +"classGpgFrontend_1_1GpgUID.html#a37031574c0a749bfedf1fd5f98c3c84f":[2,0,0,45,15], +"classGpgFrontend_1_1GpgUID.html#a388ad367d353edd5eeb6e529977c924c":[2,0,0,45,7], +"classGpgFrontend_1_1GpgUID.html#a467897d43a18b0cadd2e2e44384f6cdd":[2,0,0,45,12], +"classGpgFrontend_1_1GpgUID.html#a572cf652da288537bdc3f88b4fb1ab18":[2,0,0,45,5], +"classGpgFrontend_1_1GpgUID.html#a58ed67984063f0b87e35bc1782a1cc0a":[2,0,0,45,4], +"classGpgFrontend_1_1GpgUID.html#a7210ece9b898981dae83f8d29b1ca453":[2,0,0,45,3], +"classGpgFrontend_1_1GpgUID.html#a77ffebc8cf2b8aa7ae43f7f475982306":[2,0,0,45,13], +"classGpgFrontend_1_1GpgUID.html#a79928a4179a234d42c2275ff10ddc828":[2,0,0,45,14], +"classGpgFrontend_1_1GpgUID.html#acca1fff5f12a216b05f2a6186b1e436b":[2,0,0,45,8], +"classGpgFrontend_1_1GpgUID.html#ae1fb528a9d06d6e9f1feaf1bc291fe64":[2,0,0,45,2], +"classGpgFrontend_1_1GpgUID.html#ae4ba264bbdf1d9b83908f248d55c5809":[2,0,0,45,0], +"classGpgFrontend_1_1GpgUID.html#af7b5310b319378c30c488277e95ef601":[2,0,0,45,10], +"classGpgFrontend_1_1GpgUIDOperator.html":[2,0,0,21], +"classGpgFrontend_1_1GpgUIDOperator.html#a47f762666afbc806365877ff70947841":[2,0,0,21,3], +"classGpgFrontend_1_1GpgUIDOperator.html#a672bbf74abac9140233c4e1c7864d15d":[2,0,0,21,1], +"classGpgFrontend_1_1GpgUIDOperator.html#a7c0de570de59d4ebc6c0bed681119bf7":[2,0,0,21,2], +"classGpgFrontend_1_1GpgUIDOperator.html#ab74a830c858ab9ff135375743393a7c7":[2,0,0,21,0], +"classGpgFrontend_1_1GpgUIDOperator.html#acbdabec97df508382b0c9b1fffbf1dd5":[2,0,0,21,4], +"classGpgFrontend_1_1GpgUIDOperator.html#aee04c70b7802699eae70d7b26255f7ec":[2,0,0,21,5], +"classGpgFrontend_1_1GpgVerifyResultAnalyse.html":[2,0,0,28], +"classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a02933c39d5aa5e448ffd36dfc4bead28":[2,0,0,28,1], +"classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a09e7a3cc3bf3d64e5d2428cd3040d2b2":[2,0,0,28,6], +"classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a2063acf8262e2c600b14ed1948486ac3":[2,0,0,28,2], +"classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a57bf4a26466e07f7f0ecc19de3782104":[2,0,0,28,3], +"classGpgFrontend_1_1GpgVerifyResultAnalyse.html#ab1d67da5dbe5bd2d665f7121e5f5354b":[2,0,0,28,0], +"classGpgFrontend_1_1GpgVerifyResultAnalyse.html#acdb7839a5158f078b38d60f0fefc5155":[2,0,0,28,4], +"classGpgFrontend_1_1GpgVerifyResultAnalyse.html#ad9e53477ca77f8685ca2102bf0fc5d4c":[2,0,0,28,5], +"classGpgFrontend_1_1KeyPackageOperator.html":[2,0,0,22], +"classGpgFrontend_1_1KeyPackageOperator.html#a6d9cf022a1e0cf54c061495f59c1b4b9":[2,0,0,22,3], +"classGpgFrontend_1_1KeyPackageOperator.html#a825d987dacd8a99d9d87729e1861a152":[2,0,0,22,0], +"classGpgFrontend_1_1KeyPackageOperator.html#a89538b180a42eb7d6ae53583fe10ee07":[2,0,0,22,4], +"classGpgFrontend_1_1KeyPackageOperator.html#ade02f022e405e98377343c4667c206e9":[2,0,0,22,1], +"classGpgFrontend_1_1KeyPackageOperator.html#ae90b362a32b6f6014cda1dc232bd3f0e":[2,0,0,22,2], +"classGpgFrontend_1_1PassphraseGenerator.html":[2,0,0,23], +"classGpgFrontend_1_1PassphraseGenerator.html#a12ee6f9b7fff4883074321c7e0de3dfa":[2,0,0,23,3], +"classGpgFrontend_1_1PassphraseGenerator.html#a19ac4999bbd5fb7e6c42a4aef9606892":[2,0,0,23,2], +"classGpgFrontend_1_1PassphraseGenerator.html#a8b4ee1083343fba6d947b85cd66079b8":[2,0,0,23,1], +"classGpgFrontend_1_1PassphraseGenerator.html#ac82ef545a54468ad02253a61cc62e3cf":[2,0,0,23,0], +"classGpgFrontend_1_1SingletonFunctionObject.html":[2,0,0,36], +"classGpgFrontend_1_1SingletonFunctionObject.html#a02e76b42ab51d77588b01c7508bed258":[2,0,0,36,3], +"classGpgFrontend_1_1SingletonFunctionObject.html#a03ce3095a745ecbf5e6a032e7da4bc97":[2,0,0,36,12], +"classGpgFrontend_1_1SingletonFunctionObject.html#a083807ff8cec58dc0aa732844edaf518":[2,0,0,36,6], +"classGpgFrontend_1_1SingletonFunctionObject.html#a194e49b07d46345bdad386505d743a61":[2,0,0,36,0], +"classGpgFrontend_1_1SingletonFunctionObject.html#a4aa7f1eb1d3281bb1fccfcbb1b416251":[2,0,0,36,4], +"classGpgFrontend_1_1SingletonFunctionObject.html#a50e2b3794d6553f4231eaec72d9d0a50":[2,0,0,36,9], +"classGpgFrontend_1_1SingletonFunctionObject.html#a5f2f0474871971f86ff91fb6a2408621":[2,0,0,36,7], +"classGpgFrontend_1_1SingletonFunctionObject.html#a70484d7cfe9f9dcbcd5f8bb749250f36":[2,0,0,36,10], +"classGpgFrontend_1_1SingletonFunctionObject.html#a7090636bed6f4bad5b99f28f6872c645":[2,0,0,36,2], +"classGpgFrontend_1_1SingletonFunctionObject.html#a8296be8c449f88175285186831b995bc":[2,0,0,36,5], +"classGpgFrontend_1_1SingletonFunctionObject.html#aa99440b9177f5d0c18840f08a40d64b7":[2,0,0,36,8], +"classGpgFrontend_1_1SingletonFunctionObject.html#aabb190a60f7a5d4ded43cae16ab8f59e":[2,0,0,36,11], +"classGpgFrontend_1_1SingletonFunctionObject.html#aabc5fe8e5a372ac276a265286457cb9a":[2,0,0,36,1], +"classGpgFrontend_1_1SingletonFunctionObject.html#ab49b1d50252e1934691a9483a6df2106":[2,0,0,36,13], +"classGpgFrontend_1_1SingletonStorage.html":[2,0,0,34], +"classGpgFrontend_1_1SingletonStorage.html#a15161d0afafec602018a89266dab5641":[2,0,0,34,5], +"classGpgFrontend_1_1SingletonStorage.html#a3f09424ebdc097fbdab77564a7d723ea":[2,0,0,34,1], +"classGpgFrontend_1_1SingletonStorage.html#a4c16c32e549494e394a0ddd859890a02":[2,0,0,34,0], +"classGpgFrontend_1_1SingletonStorage.html#a6181f2b5af39c6b86de89e1ba9eeff1c":[2,0,0,34,4], +"classGpgFrontend_1_1SingletonStorage.html#ab0097bb648b2303d68a975c7cbea5a52":[2,0,0,34,3], +"classGpgFrontend_1_1SingletonStorage.html#adb22cc80a1ab040b6e4bce962625edfd":[2,0,0,34,2], +"classGpgFrontend_1_1SingletonStorageCollection.html":[2,0,0,35], +"classGpgFrontend_1_1SingletonStorageCollection.html#a6f933390c54b7f55d5ffb4624074725f":[2,0,0,35,1], +"classGpgFrontend_1_1SingletonStorageCollection.html#ab648cb257beb2475eb5fca6453c331f9":[2,0,0,35,3], +"classGpgFrontend_1_1SingletonStorageCollection.html#ac56d19e0d4b99e7b8a86a017721f3db1":[2,0,0,35,0], +"classGpgFrontend_1_1SingletonStorageCollection.html#ae28930630a2dce804cff5589155aadfc":[2,0,0,35,2], "classGpgFrontend_1_1Thread_1_1CtxCheckTask.html":[2,0,0,0,0], "classGpgFrontend_1_1Thread_1_1CtxCheckTask.html#a1c94cb1290df40a9043fe2d1a9a231f2":[2,0,0,0,0,1], "classGpgFrontend_1_1Thread_1_1CtxCheckTask.html#a7eb264d11146110a8783a8a209ef9c2a":[2,0,0,0,0,2], @@ -125,11 +152,12 @@ var NAVTREEINDEX2 = "classGpgFrontend_1_1Thread_1_1Task.html#ad6388db7b0e4960db5bf8296481481dd":[2,0,0,0,1,23], "classGpgFrontend_1_1Thread_1_1Task.html#af50c7642efe45554c61943fb3d8825b3":[2,0,0,0,1,16], "classGpgFrontend_1_1Thread_1_1TaskRunner.html":[2,0,0,0,2], -"classGpgFrontend_1_1Thread_1_1TaskRunner.html#a4fae01eb0a5b296b8c4c6bf8408f1c6b":[2,0,0,0,2,2], -"classGpgFrontend_1_1Thread_1_1TaskRunner.html#a5e72f1ce00d41c225a4304f1ed20b3f1":[2,0,0,0,2,6], -"classGpgFrontend_1_1Thread_1_1TaskRunner.html#a66d2cce41130ada199636815c52332a6":[2,0,0,0,2,3], -"classGpgFrontend_1_1Thread_1_1TaskRunner.html#a6d92421bbbfcf3136335a5173d1b2a22":[2,0,0,0,2,4], -"classGpgFrontend_1_1Thread_1_1TaskRunner.html#a774775e9a91d33072b27dcf78cead6e2":[2,0,0,0,2,5], +"classGpgFrontend_1_1Thread_1_1TaskRunner.html#a4fae01eb0a5b296b8c4c6bf8408f1c6b":[2,0,0,0,2,3], +"classGpgFrontend_1_1Thread_1_1TaskRunner.html#a5e72f1ce00d41c225a4304f1ed20b3f1":[2,0,0,0,2,7], +"classGpgFrontend_1_1Thread_1_1TaskRunner.html#a66d2cce41130ada199636815c52332a6":[2,0,0,0,2,4], +"classGpgFrontend_1_1Thread_1_1TaskRunner.html#a6d92421bbbfcf3136335a5173d1b2a22":[2,0,0,0,2,5], +"classGpgFrontend_1_1Thread_1_1TaskRunner.html#a774775e9a91d33072b27dcf78cead6e2":[2,0,0,0,2,6], +"classGpgFrontend_1_1Thread_1_1TaskRunner.html#aaddb0cdd8eb57aac08ca9caf8b8e6bac":[2,0,0,0,2,2], "classGpgFrontend_1_1Thread_1_1TaskRunner.html#ac3e57b59d537e2a75e741d4a5418ae6d":[2,0,0,0,2,1], "classGpgFrontend_1_1Thread_1_1TaskRunner.html#ad3c8612cbe60112f9b14e616fb0a4acf":[2,0,0,0,2,0], "classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html":[2,0,0,0,3], @@ -176,21 +204,24 @@ var NAVTREEINDEX2 = "classGpgFrontend_1_1UI_1_1ChoosePage.html#ae370e789009be3926410cb749c86907b":[2,0,0,1,33,0], "classGpgFrontend_1_1UI_1_1ChoosePage.html#af0d7890fe65385b7785719b9cff0718b":[2,0,0,1,33,2], "classGpgFrontend_1_1UI_1_1CommonUtils.html":[2,0,0,1,48], -"classGpgFrontend_1_1UI_1_1CommonUtils.html#a057526790f6b2f6288c3a35322c34d8d":[2,0,0,1,48,10], -"classGpgFrontend_1_1UI_1_1CommonUtils.html#a0c8bf56fc5371cd2c5e9d2a0f67bf72a":[2,0,0,1,48,9], +"classGpgFrontend_1_1UI_1_1CommonUtils.html#a057526790f6b2f6288c3a35322c34d8d":[2,0,0,1,48,13], +"classGpgFrontend_1_1UI_1_1CommonUtils.html#a0c8bf56fc5371cd2c5e9d2a0f67bf72a":[2,0,0,1,48,12], "classGpgFrontend_1_1UI_1_1CommonUtils.html#a1abc83bba95579aa94d0870181991a28":[2,0,0,1,48,4], -"classGpgFrontend_1_1UI_1_1CommonUtils.html#a35a47fc31b81b6c4f5899e8ab5c4c51a":[2,0,0,1,48,11], -"classGpgFrontend_1_1UI_1_1CommonUtils.html#a3bc26cc1e0f00f0ce2f95c0b6c8778d8":[2,0,0,1,48,13], +"classGpgFrontend_1_1UI_1_1CommonUtils.html#a1e7dff5252d5ec77c8450ad356891ebb":[2,0,0,1,48,6], +"classGpgFrontend_1_1UI_1_1CommonUtils.html#a35a47fc31b81b6c4f5899e8ab5c4c51a":[2,0,0,1,48,14], +"classGpgFrontend_1_1UI_1_1CommonUtils.html#a3bc26cc1e0f00f0ce2f95c0b6c8778d8":[2,0,0,1,48,16], "classGpgFrontend_1_1UI_1_1CommonUtils.html#a4bc9e91daa0d3c4ee4141ba4bd8726bb":[2,0,0,1,48,5], "classGpgFrontend_1_1UI_1_1CommonUtils.html#a4d2f10c2089c2bfb23be5c1f573af31f":[2,0,0,1,48,3], "classGpgFrontend_1_1UI_1_1CommonUtils.html#a78f5c2696152e9326e845c76c94be965":[2,0,0,1,48,1], -"classGpgFrontend_1_1UI_1_1CommonUtils.html#a95cd625a2e0e74ee4d564843c6d16791":[2,0,0,1,48,7], -"classGpgFrontend_1_1UI_1_1CommonUtils.html#aa533206591b0c57ea93b8f0cb7d795cd":[2,0,0,1,48,14], +"classGpgFrontend_1_1UI_1_1CommonUtils.html#a80350e7fe1cd696004c9aa2a43eab184":[2,0,0,1,48,7], +"classGpgFrontend_1_1UI_1_1CommonUtils.html#a95cd625a2e0e74ee4d564843c6d16791":[2,0,0,1,48,10], +"classGpgFrontend_1_1UI_1_1CommonUtils.html#aa533206591b0c57ea93b8f0cb7d795cd":[2,0,0,1,48,17], "classGpgFrontend_1_1UI_1_1CommonUtils.html#aadd249062c24f9b7fc545c03296bbb83":[2,0,0,1,48,0], -"classGpgFrontend_1_1UI_1_1CommonUtils.html#ab4ac26378d6a07757720163eb4b1cb0e":[2,0,0,1,48,6], +"classGpgFrontend_1_1UI_1_1CommonUtils.html#ab4ac26378d6a07757720163eb4b1cb0e":[2,0,0,1,48,9], "classGpgFrontend_1_1UI_1_1CommonUtils.html#aed529969f54e39e3f9da14ae6dd00d49":[2,0,0,1,48,2], -"classGpgFrontend_1_1UI_1_1CommonUtils.html#af1b3538d3119c8564e83c7661f73f6ea":[2,0,0,1,48,12], -"classGpgFrontend_1_1UI_1_1CommonUtils.html#afc845c1c37487c99f78d8e66f6874f6d":[2,0,0,1,48,8], +"classGpgFrontend_1_1UI_1_1CommonUtils.html#aef14c7eaaf8b73bd1b8f845a5484748e":[2,0,0,1,48,8], +"classGpgFrontend_1_1UI_1_1CommonUtils.html#af1b3538d3119c8564e83c7661f73f6ea":[2,0,0,1,48,15], +"classGpgFrontend_1_1UI_1_1CommonUtils.html#afc845c1c37487c99f78d8e66f6874f6d":[2,0,0,1,48,11], "classGpgFrontend_1_1UI_1_1ConclusionPage.html":[2,0,0,1,35], "classGpgFrontend_1_1UI_1_1ConclusionPage.html#a0d15495f048f75337b224e8e632a895a":[2,0,0,1,35,3], "classGpgFrontend_1_1UI_1_1ConclusionPage.html#a0f3f3118456ccce7c2a6965cf68d2cf7":[2,0,0,1,35,1], @@ -218,36 +249,5 @@ var NAVTREEINDEX2 = "classGpgFrontend_1_1UI_1_1FilePage.html#a8beae6f942215ba4f191736c7176d8aa":[2,0,0,1,49,15], "classGpgFrontend_1_1UI_1_1FilePage.html#a8ed9963c6c37131a17ccec8b61e04879":[2,0,0,1,49,17], "classGpgFrontend_1_1UI_1_1FilePage.html#a9a2660343132a9e3de05471126659fae":[2,0,0,1,49,7], -"classGpgFrontend_1_1UI_1_1FilePage.html#aa80dc1b74a0ec65d06e5dffaa21cc785":[2,0,0,1,49,4], -"classGpgFrontend_1_1UI_1_1FilePage.html#ab42d1dea33d8d33e21418bf805fd66a0":[2,0,0,1,49,14], -"classGpgFrontend_1_1UI_1_1FilePage.html#ab4c7e70027f55aae7ef1ed78bb1d9646":[2,0,0,1,49,9], -"classGpgFrontend_1_1UI_1_1FilePage.html#aca3e2a213ec519e4f8aec27cfe9973ad":[2,0,0,1,49,23], -"classGpgFrontend_1_1UI_1_1FilePage.html#ad3c54320bdafbbb2c06a20d6c7dea9d6":[2,0,0,1,49,12], -"classGpgFrontend_1_1UI_1_1FilePage.html#ae649c1f6144bad1c9dab277fd9ce45d4":[2,0,0,1,49,18], -"classGpgFrontend_1_1UI_1_1FilePage.html#ae834468425b52162842f1f4f52009cae":[2,0,0,1,49,20], -"classGpgFrontend_1_1UI_1_1FilePage.html#aea388ad7876e287f71e93085e6715495":[2,0,0,1,49,3], -"classGpgFrontend_1_1UI_1_1FilePage.html#aea773a182e0776154611ff51431c7d6c":[2,0,0,1,49,24], -"classGpgFrontend_1_1UI_1_1FilePage.html#aec462d16a2097024a4ced24012b905a7":[2,0,0,1,49,5], -"classGpgFrontend_1_1UI_1_1FilePage.html#afc8cb5a018464c2017dbb7e987f686e9":[2,0,0,1,49,25], -"classGpgFrontend_1_1UI_1_1FileReadTask.html":[2,0,0,1,0], -"classGpgFrontend_1_1UI_1_1FileReadTask.html#a0f8bc1c253380b68c0e65cabc011ac09":[2,0,0,1,0,3], -"classGpgFrontend_1_1UI_1_1FileReadTask.html#a2bc7e5bb1c67490ba12c82200634bd97":[2,0,0,1,0,7], -"classGpgFrontend_1_1UI_1_1FileReadTask.html#a4e3c97cfac764af80919ed838bc00561":[2,0,0,1,0,4], -"classGpgFrontend_1_1UI_1_1FileReadTask.html#a964920606f5873fd6a9407b9865e8fba":[2,0,0,1,0,6], -"classGpgFrontend_1_1UI_1_1FileReadTask.html#abf21650d2597034d3307f530ebfb7f18":[2,0,0,1,0,0], -"classGpgFrontend_1_1UI_1_1FileReadTask.html#ac00874dbef395dda534e32c6502c7913":[2,0,0,1,0,9], -"classGpgFrontend_1_1UI_1_1FileReadTask.html#ad431aee5396454deee20b3d178f26ecc":[2,0,0,1,0,1], -"classGpgFrontend_1_1UI_1_1FileReadTask.html#ae5787665efd04214a14111787deee57c":[2,0,0,1,0,5], -"classGpgFrontend_1_1UI_1_1FileReadTask.html#af3896c6ef4dc49bd371746aa9fea1120":[2,0,0,1,0,10], -"classGpgFrontend_1_1UI_1_1FileReadTask.html#afb248c339ac074f0a7602711ed2f5e39":[2,0,0,1,0,8], -"classGpgFrontend_1_1UI_1_1FileReadTask.html#afe44eab4abfe0b3b950f332d54662159":[2,0,0,1,0,2], -"classGpgFrontend_1_1UI_1_1FindWidget.html":[2,0,0,1,50], -"classGpgFrontend_1_1UI_1_1FindWidget.html#a0c531f2c673caed29225a323e750205f":[2,0,0,1,50,2], -"classGpgFrontend_1_1UI_1_1FindWidget.html#a11f9d0f07b704539ad1df15a5c15dca9":[2,0,0,1,50,8], -"classGpgFrontend_1_1UI_1_1FindWidget.html#a36ac2ccdd4e59cfdb790c73042dce532":[2,0,0,1,50,6], -"classGpgFrontend_1_1UI_1_1FindWidget.html#a495f281e72e5ddc10c8e944183b96dd9":[2,0,0,1,50,0], -"classGpgFrontend_1_1UI_1_1FindWidget.html#a6e2264a989c2bb2db6bc8980b43e65f0":[2,0,0,1,50,1], -"classGpgFrontend_1_1UI_1_1FindWidget.html#a6f28757eafd39ee0b1f8fe977bfee8b1":[2,0,0,1,50,5], -"classGpgFrontend_1_1UI_1_1FindWidget.html#a8188c030936fbda27ac400a7ab59e61c":[2,0,0,1,50,3], -"classGpgFrontend_1_1UI_1_1FindWidget.html#aa019bd8b63ad1e79050e4428cfee62cf":[2,0,0,1,50,4] +"classGpgFrontend_1_1UI_1_1FilePage.html#aa80dc1b74a0ec65d06e5dffaa21cc785":[2,0,0,1,49,4] }; diff --git a/docs/html/navtreeindex3.js b/docs/html/navtreeindex3.js index 4e094056..69fd715b 100644 --- a/docs/html/navtreeindex3.js +++ b/docs/html/navtreeindex3.js @@ -1,5 +1,36 @@ var NAVTREEINDEX3 = { +"classGpgFrontend_1_1UI_1_1FilePage.html#ab42d1dea33d8d33e21418bf805fd66a0":[2,0,0,1,49,14], +"classGpgFrontend_1_1UI_1_1FilePage.html#ab4c7e70027f55aae7ef1ed78bb1d9646":[2,0,0,1,49,9], +"classGpgFrontend_1_1UI_1_1FilePage.html#aca3e2a213ec519e4f8aec27cfe9973ad":[2,0,0,1,49,23], +"classGpgFrontend_1_1UI_1_1FilePage.html#ad3c54320bdafbbb2c06a20d6c7dea9d6":[2,0,0,1,49,12], +"classGpgFrontend_1_1UI_1_1FilePage.html#ae649c1f6144bad1c9dab277fd9ce45d4":[2,0,0,1,49,18], +"classGpgFrontend_1_1UI_1_1FilePage.html#ae834468425b52162842f1f4f52009cae":[2,0,0,1,49,20], +"classGpgFrontend_1_1UI_1_1FilePage.html#aea388ad7876e287f71e93085e6715495":[2,0,0,1,49,3], +"classGpgFrontend_1_1UI_1_1FilePage.html#aea773a182e0776154611ff51431c7d6c":[2,0,0,1,49,24], +"classGpgFrontend_1_1UI_1_1FilePage.html#aec462d16a2097024a4ced24012b905a7":[2,0,0,1,49,5], +"classGpgFrontend_1_1UI_1_1FilePage.html#afc8cb5a018464c2017dbb7e987f686e9":[2,0,0,1,49,25], +"classGpgFrontend_1_1UI_1_1FileReadTask.html":[2,0,0,1,0], +"classGpgFrontend_1_1UI_1_1FileReadTask.html#a0f8bc1c253380b68c0e65cabc011ac09":[2,0,0,1,0,3], +"classGpgFrontend_1_1UI_1_1FileReadTask.html#a2bc7e5bb1c67490ba12c82200634bd97":[2,0,0,1,0,7], +"classGpgFrontend_1_1UI_1_1FileReadTask.html#a4e3c97cfac764af80919ed838bc00561":[2,0,0,1,0,4], +"classGpgFrontend_1_1UI_1_1FileReadTask.html#a964920606f5873fd6a9407b9865e8fba":[2,0,0,1,0,6], +"classGpgFrontend_1_1UI_1_1FileReadTask.html#abf21650d2597034d3307f530ebfb7f18":[2,0,0,1,0,0], +"classGpgFrontend_1_1UI_1_1FileReadTask.html#ac00874dbef395dda534e32c6502c7913":[2,0,0,1,0,9], +"classGpgFrontend_1_1UI_1_1FileReadTask.html#ad431aee5396454deee20b3d178f26ecc":[2,0,0,1,0,1], +"classGpgFrontend_1_1UI_1_1FileReadTask.html#ae5787665efd04214a14111787deee57c":[2,0,0,1,0,5], +"classGpgFrontend_1_1UI_1_1FileReadTask.html#af3896c6ef4dc49bd371746aa9fea1120":[2,0,0,1,0,10], +"classGpgFrontend_1_1UI_1_1FileReadTask.html#afb248c339ac074f0a7602711ed2f5e39":[2,0,0,1,0,8], +"classGpgFrontend_1_1UI_1_1FileReadTask.html#afe44eab4abfe0b3b950f332d54662159":[2,0,0,1,0,2], +"classGpgFrontend_1_1UI_1_1FindWidget.html":[2,0,0,1,50], +"classGpgFrontend_1_1UI_1_1FindWidget.html#a0c531f2c673caed29225a323e750205f":[2,0,0,1,50,2], +"classGpgFrontend_1_1UI_1_1FindWidget.html#a11f9d0f07b704539ad1df15a5c15dca9":[2,0,0,1,50,8], +"classGpgFrontend_1_1UI_1_1FindWidget.html#a36ac2ccdd4e59cfdb790c73042dce532":[2,0,0,1,50,6], +"classGpgFrontend_1_1UI_1_1FindWidget.html#a495f281e72e5ddc10c8e944183b96dd9":[2,0,0,1,50,0], +"classGpgFrontend_1_1UI_1_1FindWidget.html#a6e2264a989c2bb2db6bc8980b43e65f0":[2,0,0,1,50,1], +"classGpgFrontend_1_1UI_1_1FindWidget.html#a6f28757eafd39ee0b1f8fe977bfee8b1":[2,0,0,1,50,5], +"classGpgFrontend_1_1UI_1_1FindWidget.html#a8188c030936fbda27ac400a7ab59e61c":[2,0,0,1,50,3], +"classGpgFrontend_1_1UI_1_1FindWidget.html#aa019bd8b63ad1e79050e4428cfee62cf":[2,0,0,1,50,4], "classGpgFrontend_1_1UI_1_1FindWidget.html#af420832720942dd1e7cb3f3841c7cbfe":[2,0,0,1,50,7], "classGpgFrontend_1_1UI_1_1GeneralDialog.html":[2,0,0,1,2], "classGpgFrontend_1_1UI_1_1GeneralDialog.html#a234a0a4d8c0b1b49a54f65b1aa3f9490":[2,0,0,1,2,8], @@ -84,6 +115,7 @@ var NAVTREEINDEX3 = "classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3008e2a9879a8e122e422f67cf0018f8":[2,0,0,1,12,16], "classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3453d1a8a4c0411472b2779d018abdc3":[2,0,0,1,12,18], "classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3aef8d2bb8e0d36842532726a6796ab9":[2,0,0,1,12,0], +"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a43850a47ceaeb2e693027a0672bf77f7":[2,0,0,1,12,30], "classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a48e953cd49efde2315868e8606af7226":[2,0,0,1,12,10], "classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a4eb53559f200092cd299f7a90c03cdbb":[2,0,0,1,12,5], "classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a516aa59c71a9ddf06c51e93252e93b76":[2,0,0,1,12,12], @@ -92,7 +124,7 @@ var NAVTREEINDEX3 = "classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7ed095cce29c658741ae0520049010c0":[2,0,0,1,12,28], "classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a8e500e3153558364fe5ba5b8bab6f219":[2,0,0,1,12,19], "classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a8e6554b47e0dd6c2025ccb0d1d0cb658":[2,0,0,1,12,3], -"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a8ecbb5721d5a2a0f85fd7b362f62bf83":[2,0,0,1,12,30], +"classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a8ecbb5721d5a2a0f85fd7b362f62bf83":[2,0,0,1,12,31], "classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a904d5e72a1946382ddfca80dc57c4db5":[2,0,0,1,12,9], "classGpgFrontend_1_1UI_1_1KeyGenDialog.html#aa36de61cedb98f919f10e35d4e6b5146":[2,0,0,1,12,6], "classGpgFrontend_1_1UI_1_1KeyGenDialog.html#aa765259f9aa65b81d59b982ee0595e52":[2,0,0,1,12,15], @@ -217,37 +249,5 @@ var NAVTREEINDEX3 = "classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a285b5aa841aadd345096b722de2c5207":[2,0,0,1,16,10], "classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a34ea69e2f2a6d190121c0463cf190a63":[2,0,0,1,16,22], "classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a65176245d280ae0734ef7b5b3f1c4cc4":[2,0,0,1,16,17], -"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a72717007cd65887f79b6f963568263a3":[2,0,0,1,16,23], -"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a73a47d699a33419a6cc265d55b89be50":[2,0,0,1,16,19], -"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a76efd8f8d623813be1a329ad01972444":[2,0,0,1,16,0], -"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a7a8119c794ed9ed63c0caa1c3373b6dc":[2,0,0,1,16,4], -"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a83b1290251a204def52677ae000a17ec":[2,0,0,1,16,7], -"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a8c71b37aa040da50cb0105489a42e60d":[2,0,0,1,16,9], -"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a9d57be18c2091827c04ec8809f4154be":[2,0,0,1,16,20], -"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aa45a2433ce82a88eeb2c9c282ab7b975":[2,0,0,1,16,8], -"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aadcb3bbb4233fdc2deca5b509c46b2e1":[2,0,0,1,16,6], -"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aae9905764b5551208574a932fdfba29c":[2,0,0,1,16,16], -"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#ab14f5ac30ce3cca1c42155bae030c62e":[2,0,0,1,16,14], -"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#acd538bd5cd229b0f66e05803b6531443":[2,0,0,1,16,15], -"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#ad8c25061351d8e739b70d5466b87410e":[2,0,0,1,16,21], -"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#ada1c21cf59f1f19dfd4ffe0391bc1594":[2,0,0,1,16,12], -"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aedc0e13ba1b64782e40f7c14af77f8f0":[2,0,0,1,16,11], -"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#af8b600fbd7cd0fbb5b6183403bf870b2":[2,0,0,1,16,1], -"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html":[2,0,0,1,17], -"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a384f4250e58110da58c0e6996b42a8ab":[2,0,0,1,17,2], -"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a4dcec352e412afe5c5491f941495090f":[2,0,0,1,17,1], -"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a4eb2668e860bb19e5c3c47a922b1e671":[2,0,0,1,17,7], -"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a504d26d23c6e4228b732f2f79c2c6fa3":[2,0,0,1,17,5], -"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a636caee67903f6f6114ba7a63ba49781":[2,0,0,1,17,6], -"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a6becf000c1128e46afee8a86066a242c":[2,0,0,1,17,10], -"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a9a28a055e8e549288e7dce49050493f5":[2,0,0,1,17,13], -"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#aa150485d290176e45d7bb1e87601abde":[2,0,0,1,17,12], -"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#aad4e209d7b4eb0ac6623b2f12ce5ecc5":[2,0,0,1,17,0], -"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#ab23cb5c7d25aabc0bed9ba530f3866ba":[2,0,0,1,17,8], -"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#ab5304882e1883244ff798ec06ff1c888":[2,0,0,1,17,11], -"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#acb6fe75a2e834469627d9b46ad84d514":[2,0,0,1,17,4], -"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#ae5351ab31a47755ec82a007cd3610b55":[2,0,0,1,17,3], -"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#af2b406e19ae3e456c78e558c2d82d410":[2,0,0,1,17,9], -"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html":[2,0,0,1,18], -"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a0503508ce7e11f497a05cdf6f536a253":[2,0,0,1,18,2] +"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a72717007cd65887f79b6f963568263a3":[2,0,0,1,16,23] }; diff --git a/docs/html/navtreeindex4.js b/docs/html/navtreeindex4.js index c60b0229..179b352f 100644 --- a/docs/html/navtreeindex4.js +++ b/docs/html/navtreeindex4.js @@ -1,5 +1,37 @@ var NAVTREEINDEX4 = { +"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a73a47d699a33419a6cc265d55b89be50":[2,0,0,1,16,19], +"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a76efd8f8d623813be1a329ad01972444":[2,0,0,1,16,0], +"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a7a8119c794ed9ed63c0caa1c3373b6dc":[2,0,0,1,16,4], +"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a83b1290251a204def52677ae000a17ec":[2,0,0,1,16,7], +"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a8c71b37aa040da50cb0105489a42e60d":[2,0,0,1,16,9], +"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a9d57be18c2091827c04ec8809f4154be":[2,0,0,1,16,20], +"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aa45a2433ce82a88eeb2c9c282ab7b975":[2,0,0,1,16,8], +"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aadcb3bbb4233fdc2deca5b509c46b2e1":[2,0,0,1,16,6], +"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aae9905764b5551208574a932fdfba29c":[2,0,0,1,16,16], +"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#ab14f5ac30ce3cca1c42155bae030c62e":[2,0,0,1,16,14], +"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#acd538bd5cd229b0f66e05803b6531443":[2,0,0,1,16,15], +"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#ad8c25061351d8e739b70d5466b87410e":[2,0,0,1,16,21], +"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#ada1c21cf59f1f19dfd4ffe0391bc1594":[2,0,0,1,16,12], +"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aedc0e13ba1b64782e40f7c14af77f8f0":[2,0,0,1,16,11], +"classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#af8b600fbd7cd0fbb5b6183403bf870b2":[2,0,0,1,16,1], +"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html":[2,0,0,1,17], +"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a384f4250e58110da58c0e6996b42a8ab":[2,0,0,1,17,2], +"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a4dcec352e412afe5c5491f941495090f":[2,0,0,1,17,1], +"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a4eb2668e860bb19e5c3c47a922b1e671":[2,0,0,1,17,7], +"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a504d26d23c6e4228b732f2f79c2c6fa3":[2,0,0,1,17,5], +"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a636caee67903f6f6114ba7a63ba49781":[2,0,0,1,17,6], +"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a6becf000c1128e46afee8a86066a242c":[2,0,0,1,17,10], +"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a9a28a055e8e549288e7dce49050493f5":[2,0,0,1,17,13], +"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#aa150485d290176e45d7bb1e87601abde":[2,0,0,1,17,12], +"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#aad4e209d7b4eb0ac6623b2f12ce5ecc5":[2,0,0,1,17,0], +"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#ab23cb5c7d25aabc0bed9ba530f3866ba":[2,0,0,1,17,8], +"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#ab5304882e1883244ff798ec06ff1c888":[2,0,0,1,17,11], +"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#acb6fe75a2e834469627d9b46ad84d514":[2,0,0,1,17,4], +"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#ae5351ab31a47755ec82a007cd3610b55":[2,0,0,1,17,3], +"classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#af2b406e19ae3e456c78e558c2d82d410":[2,0,0,1,17,9], +"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html":[2,0,0,1,18], +"classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a0503508ce7e11f497a05cdf6f536a253":[2,0,0,1,18,2], "classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a083cd080527b4e1f1009ca6d3152894f":[2,0,0,1,18,9], "classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a0c80829e8fd1802dd3c984fe65c3ca36":[2,0,0,1,18,25], "classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a0ee84c4e1ea5c7c75bcddd2325993934":[2,0,0,1,18,8], @@ -217,37 +249,5 @@ var NAVTREEINDEX4 = "classGpgFrontend_1_1UI_1_1MainWindow.html#a70d2b2311708ab023466d343f2e914b1":[2,0,0,1,39,64], "classGpgFrontend_1_1UI_1_1MainWindow.html#a71402943f4ed19e3aba0556b23eaa8f8":[2,0,0,1,39,57], "classGpgFrontend_1_1UI_1_1MainWindow.html#a72b5cfa9bf4b94a53d9bc14d84e60d6d":[2,0,0,1,39,80], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a76bf3784d751db78ed13bd9962e14472":[2,0,0,1,39,18], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a79b83f536a7c4299eaa3d22e4e875227":[2,0,0,1,39,73], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a7a4b6490038470a8849231e48282da98":[2,0,0,1,39,14], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a7aa41c90105fd4c2931895d8dfb5ec45":[2,0,0,1,39,65], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a7f5a88922d06bee977335fb4b5f1d86d":[2,0,0,1,39,21], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a821247d738457c4ee046162aad6728f9":[2,0,0,1,39,17], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a8538940a9a5dea7ddf53c89acdeb83be":[2,0,0,1,39,76], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a85a98a1ec5418c110201980fa013d1fd":[2,0,0,1,39,15], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a874b505fbc1046f579a736683f5a7f65":[2,0,0,1,39,31], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a877ec5dd357907e9c334e7ff18bf2c5c":[2,0,0,1,39,87], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a88af746cd550792ab6095d2ebbd29b41":[2,0,0,1,39,110], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a89fa105ed54d2189d762668262d74c63":[2,0,0,1,39,75], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a8bcdcbe678b8dc0837fffda2ebfe79bf":[2,0,0,1,39,41], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a8d5ce6514ef3fa8ac3223176f5fa2701":[2,0,0,1,39,111], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a8d6fe32ab64797459443ed285d769745":[2,0,0,1,39,81], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a8f9dd7edba23321a13ed630cdef7fdcc":[2,0,0,1,39,93], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a92a6d8d46e197e25eaacc3ad7ed289ab":[2,0,0,1,39,5], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a95b2c86afbefe47e79af87e56032e306":[2,0,0,1,39,48], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a9879061cfd321c6757c77f75d46dc7d8":[2,0,0,1,39,42], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a9dd292f55fba1fe62c83508fef7e43a1":[2,0,0,1,39,47], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a9ec699536a35a37961a8c6da1e231ae3":[2,0,0,1,39,39], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a9fbd8a2f5b2b5869276db83a4ad20216":[2,0,0,1,39,7], -"classGpgFrontend_1_1UI_1_1MainWindow.html#aa498dfecac36590e4b60d50824dff58c":[2,0,0,1,39,113], -"classGpgFrontend_1_1UI_1_1MainWindow.html#aa92246123272e3e1085f22612aedf48f":[2,0,0,1,39,63], -"classGpgFrontend_1_1UI_1_1MainWindow.html#aa9c986dd95984811479ea93230c74b5d":[2,0,0,1,39,35], -"classGpgFrontend_1_1UI_1_1MainWindow.html#aaa1de043b71dbcf0e8d8c265b2a67bd3":[2,0,0,1,39,9], -"classGpgFrontend_1_1UI_1_1MainWindow.html#aabf3ddf6b624790369f164b4889c95be":[2,0,0,1,39,34], -"classGpgFrontend_1_1UI_1_1MainWindow.html#aac320aef3b49cd068544aac54b927f7a":[2,0,0,1,39,60], -"classGpgFrontend_1_1UI_1_1MainWindow.html#aad0c8d50952f4592eac7b7221b5d1ec5":[2,0,0,1,39,51], -"classGpgFrontend_1_1UI_1_1MainWindow.html#ab0019ca316b971c594c2f20f418256a6":[2,0,0,1,39,107], -"classGpgFrontend_1_1UI_1_1MainWindow.html#ab0f148559d830fcf10b5a1937b0a47dc":[2,0,0,1,39,101], -"classGpgFrontend_1_1UI_1_1MainWindow.html#ab23c7e67dd1f5295b3c49ad79dfd5919":[2,0,0,1,39,38], -"classGpgFrontend_1_1UI_1_1MainWindow.html#ab531823acdbfb117c82a9906ce2107b9":[2,0,0,1,39,67] +"classGpgFrontend_1_1UI_1_1MainWindow.html#a76bf3784d751db78ed13bd9962e14472":[2,0,0,1,39,18] }; diff --git a/docs/html/navtreeindex5.js b/docs/html/navtreeindex5.js index ab0403ee..01a4d351 100644 --- a/docs/html/navtreeindex5.js +++ b/docs/html/navtreeindex5.js @@ -1,5 +1,37 @@ var NAVTREEINDEX5 = { +"classGpgFrontend_1_1UI_1_1MainWindow.html#a79b83f536a7c4299eaa3d22e4e875227":[2,0,0,1,39,73], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a7a4b6490038470a8849231e48282da98":[2,0,0,1,39,14], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a7aa41c90105fd4c2931895d8dfb5ec45":[2,0,0,1,39,65], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a7f5a88922d06bee977335fb4b5f1d86d":[2,0,0,1,39,21], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a821247d738457c4ee046162aad6728f9":[2,0,0,1,39,17], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a8538940a9a5dea7ddf53c89acdeb83be":[2,0,0,1,39,76], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a85a98a1ec5418c110201980fa013d1fd":[2,0,0,1,39,15], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a874b505fbc1046f579a736683f5a7f65":[2,0,0,1,39,31], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a877ec5dd357907e9c334e7ff18bf2c5c":[2,0,0,1,39,87], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a88af746cd550792ab6095d2ebbd29b41":[2,0,0,1,39,110], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a89fa105ed54d2189d762668262d74c63":[2,0,0,1,39,75], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a8bcdcbe678b8dc0837fffda2ebfe79bf":[2,0,0,1,39,41], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a8d5ce6514ef3fa8ac3223176f5fa2701":[2,0,0,1,39,111], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a8d6fe32ab64797459443ed285d769745":[2,0,0,1,39,81], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a8f9dd7edba23321a13ed630cdef7fdcc":[2,0,0,1,39,93], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a92a6d8d46e197e25eaacc3ad7ed289ab":[2,0,0,1,39,5], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a95b2c86afbefe47e79af87e56032e306":[2,0,0,1,39,48], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a9879061cfd321c6757c77f75d46dc7d8":[2,0,0,1,39,42], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a9dd292f55fba1fe62c83508fef7e43a1":[2,0,0,1,39,47], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a9ec699536a35a37961a8c6da1e231ae3":[2,0,0,1,39,39], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a9fbd8a2f5b2b5869276db83a4ad20216":[2,0,0,1,39,7], +"classGpgFrontend_1_1UI_1_1MainWindow.html#aa498dfecac36590e4b60d50824dff58c":[2,0,0,1,39,113], +"classGpgFrontend_1_1UI_1_1MainWindow.html#aa92246123272e3e1085f22612aedf48f":[2,0,0,1,39,63], +"classGpgFrontend_1_1UI_1_1MainWindow.html#aa9c986dd95984811479ea93230c74b5d":[2,0,0,1,39,35], +"classGpgFrontend_1_1UI_1_1MainWindow.html#aaa1de043b71dbcf0e8d8c265b2a67bd3":[2,0,0,1,39,9], +"classGpgFrontend_1_1UI_1_1MainWindow.html#aabf3ddf6b624790369f164b4889c95be":[2,0,0,1,39,34], +"classGpgFrontend_1_1UI_1_1MainWindow.html#aac320aef3b49cd068544aac54b927f7a":[2,0,0,1,39,60], +"classGpgFrontend_1_1UI_1_1MainWindow.html#aad0c8d50952f4592eac7b7221b5d1ec5":[2,0,0,1,39,51], +"classGpgFrontend_1_1UI_1_1MainWindow.html#ab0019ca316b971c594c2f20f418256a6":[2,0,0,1,39,107], +"classGpgFrontend_1_1UI_1_1MainWindow.html#ab0f148559d830fcf10b5a1937b0a47dc":[2,0,0,1,39,101], +"classGpgFrontend_1_1UI_1_1MainWindow.html#ab23c7e67dd1f5295b3c49ad79dfd5919":[2,0,0,1,39,38], +"classGpgFrontend_1_1UI_1_1MainWindow.html#ab531823acdbfb117c82a9906ce2107b9":[2,0,0,1,39,67], "classGpgFrontend_1_1UI_1_1MainWindow.html#ab570d33667a3f8fe189f2d81b81f85be":[2,0,0,1,39,98], "classGpgFrontend_1_1UI_1_1MainWindow.html#ab67486a71126073e7c39ca12603198f4":[2,0,0,1,39,49], "classGpgFrontend_1_1UI_1_1MainWindow.html#abe0683e48485f9fcff622d9519c37ed9":[2,0,0,1,39,95], @@ -101,11 +133,13 @@ var NAVTREEINDEX5 = "classGpgFrontend_1_1UI_1_1SettingsObject.html#ae71336d240ace35756d1852a46271f6c":[2,0,0,1,41,2], "classGpgFrontend_1_1UI_1_1SignalStation.html":[2,0,0,1,40], "classGpgFrontend_1_1UI_1_1SignalStation.html#a1581aaebc459f3eda06195c1e43f068f":[2,0,0,1,40,1], -"classGpgFrontend_1_1UI_1_1SignalStation.html#a7b5fb2e2c0ad238313650a08ea648ce3":[2,0,0,1,40,4], -"classGpgFrontend_1_1UI_1_1SignalStation.html#a94d4c7d79e0deb7026083689bc5dc2ad":[2,0,0,1,40,3], +"classGpgFrontend_1_1UI_1_1SignalStation.html#a2347964648d48b5d88994b2f504b6642":[2,0,0,1,40,3], +"classGpgFrontend_1_1UI_1_1SignalStation.html#a7b5fb2e2c0ad238313650a08ea648ce3":[2,0,0,1,40,5], +"classGpgFrontend_1_1UI_1_1SignalStation.html#a94d4c7d79e0deb7026083689bc5dc2ad":[2,0,0,1,40,4], "classGpgFrontend_1_1UI_1_1SignalStation.html#aaec7938466ed4b1e912b25038a253f84":[2,0,0,1,40,2], "classGpgFrontend_1_1UI_1_1SignalStation.html#abe381ce56a7b157a3760b2fd9c3b7419":[2,0,0,1,40,0], -"classGpgFrontend_1_1UI_1_1SignalStation.html#ac98e4fff1e400f810ecea9903ee880df":[2,0,0,1,40,5], +"classGpgFrontend_1_1UI_1_1SignalStation.html#ac98e4fff1e400f810ecea9903ee880df":[2,0,0,1,40,7], +"classGpgFrontend_1_1UI_1_1SignalStation.html#afa0b1cced7430180fae67ad2303ce448":[2,0,0,1,40,6], "classGpgFrontend_1_1UI_1_1SignersPicker.html":[2,0,0,1,29], "classGpgFrontend_1_1UI_1_1SignersPicker.html#a02c3ba737702894fc6d4ac1a1c543ccb":[2,0,0,1,29,0], "classGpgFrontend_1_1UI_1_1SignersPicker.html#a2e98dcdf647a2e0e6455998b018aed00":[2,0,0,1,29,1], @@ -113,6 +147,7 @@ var NAVTREEINDEX5 = "classGpgFrontend_1_1UI_1_1SignersPicker.html#a524ee72ddb4fe397d71c0d4b5eb69171":[2,0,0,1,29,3], "classGpgFrontend_1_1UI_1_1SignersPicker.html#aba7633983da57c7a7eb2710a1f33f7ac":[2,0,0,1,29,2], "classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html":[2,0,0,1,13], +"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a001803152c0e5bd9de7c7dd04cef8ad4":[2,0,0,1,13,24], "classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a029017ad2e025a43d21144f1b7427593":[2,0,0,1,13,1], "classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a06ae254026e0be902d28bb005a91fe0c":[2,0,0,1,13,23], "classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a10b30ea96e819657053c1d5752024547":[2,0,0,1,13,18], @@ -127,6 +162,7 @@ var NAVTREEINDEX5 = "classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a8ab50d8f47489c57e382b3fe231ba9a7":[2,0,0,1,13,8], "classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a8f9d8baa7b576a4aa857818b87c26bcd":[2,0,0,1,13,0], "classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a90900b67eceb2d16af5de27f9f038f7f":[2,0,0,1,13,4], +"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a9cbb5bcf775a873a0d866a9aa0a5acd0":[2,0,0,1,13,25], "classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aa24064a5f585b23d71e1036958f31d7d":[2,0,0,1,13,2], "classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aa8bf228ba2a773c0d38f9e5c2f20539d":[2,0,0,1,13,14], "classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aa91db742b41d352ba9f88620d649afb3":[2,0,0,1,13,19], @@ -140,44 +176,46 @@ var NAVTREEINDEX5 = "classGpgFrontend_1_1UI_1_1TOFUInfoPage.html":[2,0,0,1,60], "classGpgFrontend_1_1UI_1_1TOFUInfoPage.html#a9adc1666e3f57536594876520019e395":[2,0,0,1,60,0], "classGpgFrontend_1_1UI_1_1TextEdit.html":[2,0,0,1,59], -"classGpgFrontend_1_1UI_1_1TextEdit.html#a02fa44ba0c56f3f6ae125f8490faf254":[2,0,0,1,59,25], -"classGpgFrontend_1_1UI_1_1TextEdit.html#a05c54658597b04c3976c72d3a5f9add9":[2,0,0,1,59,34], +"classGpgFrontend_1_1UI_1_1TextEdit.html#a02fa44ba0c56f3f6ae125f8490faf254":[2,0,0,1,59,26], +"classGpgFrontend_1_1UI_1_1TextEdit.html#a05c54658597b04c3976c72d3a5f9add9":[2,0,0,1,59,35], "classGpgFrontend_1_1UI_1_1TextEdit.html#a0f1c7997b1cd56045091e5c9677f5d0e":[2,0,0,1,59,0], "classGpgFrontend_1_1UI_1_1TextEdit.html#a12f65fbc4984c266a5df4505ecde7c42":[2,0,0,1,59,8], -"classGpgFrontend_1_1UI_1_1TextEdit.html#a15335d38187ddf580b7200d856768cfb":[2,0,0,1,59,18], -"classGpgFrontend_1_1UI_1_1TextEdit.html#a32327f592965d8922eb7095af117336d":[2,0,0,1,59,32], -"classGpgFrontend_1_1UI_1_1TextEdit.html#a3599bd01636a873cf3437ab6b9d38780":[2,0,0,1,59,10], -"classGpgFrontend_1_1UI_1_1TextEdit.html#a3c17fdf3abf9c4fb6ce35cfb8f0f8fc4":[2,0,0,1,59,16], +"classGpgFrontend_1_1UI_1_1TextEdit.html#a15335d38187ddf580b7200d856768cfb":[2,0,0,1,59,19], +"classGpgFrontend_1_1UI_1_1TextEdit.html#a1bf57ebe1e32b12c48bb633b7dd7a4f1":[2,0,0,1,59,9], +"classGpgFrontend_1_1UI_1_1TextEdit.html#a1d8948316e9231f50809e6fb9b337546":[2,0,0,1,59,39], +"classGpgFrontend_1_1UI_1_1TextEdit.html#a32327f592965d8922eb7095af117336d":[2,0,0,1,59,33], +"classGpgFrontend_1_1UI_1_1TextEdit.html#a3599bd01636a873cf3437ab6b9d38780":[2,0,0,1,59,11], +"classGpgFrontend_1_1UI_1_1TextEdit.html#a3c17fdf3abf9c4fb6ce35cfb8f0f8fc4":[2,0,0,1,59,17], "classGpgFrontend_1_1UI_1_1TextEdit.html#a3c976a5494d06c2186d94e7cc8ebe457":[2,0,0,1,59,5], -"classGpgFrontend_1_1UI_1_1TextEdit.html#a48351dc1529da3b8da311f65b735b5f1":[2,0,0,1,59,12], -"classGpgFrontend_1_1UI_1_1TextEdit.html#a4a81e69f6dc74ea649ca9a2358342fd5":[2,0,0,1,59,30], -"classGpgFrontend_1_1UI_1_1TextEdit.html#a576e06390e65576465297d2ab8d7d474":[2,0,0,1,59,28], -"classGpgFrontend_1_1UI_1_1TextEdit.html#a57a46ab5595622ae0b7bceef7d56bd7c":[2,0,0,1,59,17], +"classGpgFrontend_1_1UI_1_1TextEdit.html#a48351dc1529da3b8da311f65b735b5f1":[2,0,0,1,59,13], +"classGpgFrontend_1_1UI_1_1TextEdit.html#a4a81e69f6dc74ea649ca9a2358342fd5":[2,0,0,1,59,31], +"classGpgFrontend_1_1UI_1_1TextEdit.html#a576e06390e65576465297d2ab8d7d474":[2,0,0,1,59,29], +"classGpgFrontend_1_1UI_1_1TextEdit.html#a57a46ab5595622ae0b7bceef7d56bd7c":[2,0,0,1,59,18], +"classGpgFrontend_1_1UI_1_1TextEdit.html#a60c73cc66a48a38c13e7890de49e86c3":[2,0,0,1,59,20], "classGpgFrontend_1_1UI_1_1TextEdit.html#a66b6f6633e7ac71e5fe8b7814a81cadf":[2,0,0,1,59,6], -"classGpgFrontend_1_1UI_1_1TextEdit.html#a6a02fce9dc4039c982d6dd19231517ee":[2,0,0,1,59,22], -"classGpgFrontend_1_1UI_1_1TextEdit.html#a6c814253dfc061bfdae0fa71c6196c55":[2,0,0,1,59,26], -"classGpgFrontend_1_1UI_1_1TextEdit.html#a72006c9f8f45ac4d154c67f62a29446d":[2,0,0,1,59,19], -"classGpgFrontend_1_1UI_1_1TextEdit.html#a72014409d407c161b048e07c061b4cf9":[2,0,0,1,59,11], -"classGpgFrontend_1_1UI_1_1TextEdit.html#a725048d1c6de8ed7ba29062afa72767b":[2,0,0,1,59,37], +"classGpgFrontend_1_1UI_1_1TextEdit.html#a6a02fce9dc4039c982d6dd19231517ee":[2,0,0,1,59,23], +"classGpgFrontend_1_1UI_1_1TextEdit.html#a6c814253dfc061bfdae0fa71c6196c55":[2,0,0,1,59,27], +"classGpgFrontend_1_1UI_1_1TextEdit.html#a72014409d407c161b048e07c061b4cf9":[2,0,0,1,59,12], +"classGpgFrontend_1_1UI_1_1TextEdit.html#a725048d1c6de8ed7ba29062afa72767b":[2,0,0,1,59,38], "classGpgFrontend_1_1UI_1_1TextEdit.html#a72ed46454c833adb038c36d8d4322d18":[2,0,0,1,59,3], -"classGpgFrontend_1_1UI_1_1TextEdit.html#a747d3740a88295e6c9565788d4cf56ec":[2,0,0,1,59,36], -"classGpgFrontend_1_1UI_1_1TextEdit.html#a7544182198b729373843635bbfea082a":[2,0,0,1,59,27], +"classGpgFrontend_1_1UI_1_1TextEdit.html#a747d3740a88295e6c9565788d4cf56ec":[2,0,0,1,59,37], "classGpgFrontend_1_1UI_1_1TextEdit.html#a7aa1230fbf796225bd6b83d381e11a3b":[2,0,0,1,59,2], -"classGpgFrontend_1_1UI_1_1TextEdit.html#a82fe98d45f54909ebea933b540367c39":[2,0,0,1,59,35], +"classGpgFrontend_1_1UI_1_1TextEdit.html#a82fe98d45f54909ebea933b540367c39":[2,0,0,1,59,36], "classGpgFrontend_1_1UI_1_1TextEdit.html#a8fad090a19479a9fe89432300cca2b6c":[2,0,0,1,59,4], -"classGpgFrontend_1_1UI_1_1TextEdit.html#aa21659aa7acba98dfd6286d69e00ab9b":[2,0,0,1,59,9], -"classGpgFrontend_1_1UI_1_1TextEdit.html#aa2230418dc8f72c400f5a90082a983c9":[2,0,0,1,59,20], +"classGpgFrontend_1_1UI_1_1TextEdit.html#aa21659aa7acba98dfd6286d69e00ab9b":[2,0,0,1,59,10], +"classGpgFrontend_1_1UI_1_1TextEdit.html#aa2230418dc8f72c400f5a90082a983c9":[2,0,0,1,59,21], "classGpgFrontend_1_1UI_1_1TextEdit.html#aa30daf558cb85bbdcad55a805a106109":[2,0,0,1,59,1], -"classGpgFrontend_1_1UI_1_1TextEdit.html#ac9e2fb3d6ebb721f03416aa2da5e1fd1":[2,0,0,1,59,31], -"classGpgFrontend_1_1UI_1_1TextEdit.html#ace0b8f4c161db9f4f5db5ecbfd7a91c0":[2,0,0,1,59,24], -"classGpgFrontend_1_1UI_1_1TextEdit.html#adca2bbfa746b5598f2a4f74026b84224":[2,0,0,1,59,21], -"classGpgFrontend_1_1UI_1_1TextEdit.html#ae1e710c6722910b8d35df97aaabb3162":[2,0,0,1,59,13], -"classGpgFrontend_1_1UI_1_1TextEdit.html#ae22ecadf31648f424eb8ab86bd28ef39":[2,0,0,1,59,15], -"classGpgFrontend_1_1UI_1_1TextEdit.html#ae2b3bf422789d56087face98b6a9e929":[2,0,0,1,59,23], +"classGpgFrontend_1_1UI_1_1TextEdit.html#ab24adc1adb3b9b29469992e4c444436e":[2,0,0,1,59,28], +"classGpgFrontend_1_1UI_1_1TextEdit.html#ac9e2fb3d6ebb721f03416aa2da5e1fd1":[2,0,0,1,59,32], +"classGpgFrontend_1_1UI_1_1TextEdit.html#ace0b8f4c161db9f4f5db5ecbfd7a91c0":[2,0,0,1,59,25], +"classGpgFrontend_1_1UI_1_1TextEdit.html#adca2bbfa746b5598f2a4f74026b84224":[2,0,0,1,59,22], +"classGpgFrontend_1_1UI_1_1TextEdit.html#ae1e710c6722910b8d35df97aaabb3162":[2,0,0,1,59,14], +"classGpgFrontend_1_1UI_1_1TextEdit.html#ae22ecadf31648f424eb8ab86bd28ef39":[2,0,0,1,59,16], +"classGpgFrontend_1_1UI_1_1TextEdit.html#ae2b3bf422789d56087face98b6a9e929":[2,0,0,1,59,24], "classGpgFrontend_1_1UI_1_1TextEdit.html#aeb2048d8028907d521f5f35c077832c2":[2,0,0,1,59,7], -"classGpgFrontend_1_1UI_1_1TextEdit.html#af1e364b513f566c743a5d36c19098762":[2,0,0,1,59,29], -"classGpgFrontend_1_1UI_1_1TextEdit.html#af466ec2b8ab3f695d206efc0574bbe20":[2,0,0,1,59,14], -"classGpgFrontend_1_1UI_1_1TextEdit.html#afb9b7a7d88154d774b3d727d8e640cbb":[2,0,0,1,59,33], +"classGpgFrontend_1_1UI_1_1TextEdit.html#af1e364b513f566c743a5d36c19098762":[2,0,0,1,59,30], +"classGpgFrontend_1_1UI_1_1TextEdit.html#af466ec2b8ab3f695d206efc0574bbe20":[2,0,0,1,59,15], +"classGpgFrontend_1_1UI_1_1TextEdit.html#afb9b7a7d88154d774b3d727d8e640cbb":[2,0,0,1,59,34], "classGpgFrontend_1_1UI_1_1TranslatorsTab.html":[2,0,0,1,4], "classGpgFrontend_1_1UI_1_1TranslatorsTab.html#a89e5c7b9c17fb41b7c7bf461fb8ad99e":[2,0,0,1,4,0], "classGpgFrontend_1_1UI_1_1UpdateTab.html":[2,0,0,1,5], @@ -211,43 +249,5 @@ var NAVTREEINDEX5 = "classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a03152f289952a5d2d133668907966126":[2,0,0,1,47,7], "classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a23901105c0aa009cfe9de6649912c4f0":[2,0,0,1,47,10], "classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a36c5597674253348477d78ad6af380ab":[2,0,0,1,47,2], -"classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a787aaa798b68809bf46a8ed6daf57b7c":[2,0,0,1,47,6], -"classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9156325af41c378f8d7e77187d445c12":[2,0,0,1,47,1], -"classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9379c2bd2c85e1cd74d1c07bbc10822a":[2,0,0,1,47,9], -"classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9679bc6bcdf2e64ec82f6119620b6f2e":[2,0,0,1,47,5], -"classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9f7a810ae1aa78c2a61e86e7757da385":[2,0,0,1,47,0], -"classGpgFrontend_1_1UI_1_1VersionCheckTask.html#aba6a81a5f958e5c5c29242bfe1fbd77a":[2,0,0,1,47,3], -"classGpgFrontend_1_1UI_1_1VersionCheckTask.html#aed545ffa8128acb16bb28c067e032ec9":[2,0,0,1,47,8], -"classGpgFrontend_1_1UI_1_1VersionCheckTask.html#af9042479ff7d3a8d1f7c53f320404ebb":[2,0,0,1,47,11], -"classGpgFrontend_1_1UI_1_1VersionCheckTask.html#afd92a65f744566d288d9ddd736662d8e":[2,0,0,1,47,4], -"classGpgFrontend_1_1UI_1_1WaitingDialog.html":[2,0,0,1,30], -"classGpgFrontend_1_1UI_1_1WaitingDialog.html#a809d0ffc8208eb2ff5d8da76c8ee10dc":[2,0,0,1,30,0], -"classGpgFrontend_1_1UI_1_1Wizard.html":[2,0,0,1,31], -"classGpgFrontend_1_1UI_1_1Wizard.html#a448db8fe5ace96418ffd1f23b0142b10":[2,0,0,1,31,1], -"classGpgFrontend_1_1UI_1_1Wizard.html#a6f5517c99cd08c44a3ae8676a2ac412c":[2,0,0,1,31,0], -"classGpgFrontend_1_1UI_1_1Wizard.html#a6f5517c99cd08c44a3ae8676a2ac412ca1db00da5c18fa2f3b0764569530f9fd0":[2,0,0,1,31,0,2], -"classGpgFrontend_1_1UI_1_1Wizard.html#a6f5517c99cd08c44a3ae8676a2ac412ca1e434fabfc6237dafd989f395e0a58c8":[2,0,0,1,31,0,1], -"classGpgFrontend_1_1UI_1_1Wizard.html#a6f5517c99cd08c44a3ae8676a2ac412ca21b9ac4a8543be737829f3f970e28bb6":[2,0,0,1,31,0,3], -"classGpgFrontend_1_1UI_1_1Wizard.html#a6f5517c99cd08c44a3ae8676a2ac412cab748f725806e9242cc8476eab193b51c":[2,0,0,1,31,0,0], -"classGpgFrontend_1_1UI_1_1Wizard.html#a8482dc299ec69e422d9fa6bc0d31025a":[2,0,0,1,31,3], -"classGpgFrontend_1_1UI_1_1Wizard.html#a8b5f5ddb1e6470cbf6c87cc6400031fb":[2,0,0,1,31,2], -"classProxyConnectionTestThread.html":[2,0,2], -"classSignatureDetailsDialog.html":[2,0,3], -"classTestListedKeyServerThread.html":[2,0,4], -"classclass.html":[2,0,1], -"classes.html":[2,1], -"dir_00e48bdfb963d228cbb8d1392ea3be3d.html":[3,0,0,1,0,0], -"dir_0652c688762e27a1001e51709de145a7.html":[3,0,0,1,0,2], -"dir_0cd9bde2c64af64bc3733ed8ca8e04b3.html":[3,0,0,1,3], -"dir_11afffa0017fe763467cff6465c6cba1.html":[3,0,0,1,0,4], -"dir_181bea3d8ae4b1f9a028d86ce05f5b90.html":[3,0,0,1,0,3], -"dir_34b4cee2b5900b653deb3438fc906cf4.html":[3,0,0,0,0], -"dir_4c90737131b129f8f210b6ba3e14bca4.html":[3,0,0,0,1,1], -"dir_60d155722ad55e64f9b6ab1078feff11.html":[3,0,0,1,0], -"dir_68267d1309a1af8e8297ef4c3efbcdba.html":[3,0,0], -"dir_77b5d71c36a073b86db318490f5560d0.html":[3,0,0,1,2], -"dir_aebb8dcc11953d78e620bbef0b9e2183.html":[3,0,0,0], -"dir_b499e35b7e1b4486be887a41196851ec.html":[3,0,0,0,1,0], -"dir_b7e232576c264c97fe14815134a8cffa.html":[3,0,0,1,1], -"dir_c94381238fe21d1ba8abf1f36aa07fe5.html":[3,0,0,1,0,5] +"classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a787aaa798b68809bf46a8ed6daf57b7c":[2,0,0,1,47,6] }; diff --git a/docs/html/navtreeindex6.js b/docs/html/navtreeindex6.js index 764464b8..677ac45c 100644 --- a/docs/html/navtreeindex6.js +++ b/docs/html/navtreeindex6.js @@ -1,5 +1,43 @@ var NAVTREEINDEX6 = { +"classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9156325af41c378f8d7e77187d445c12":[2,0,0,1,47,1], +"classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9379c2bd2c85e1cd74d1c07bbc10822a":[2,0,0,1,47,9], +"classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9679bc6bcdf2e64ec82f6119620b6f2e":[2,0,0,1,47,5], +"classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9f7a810ae1aa78c2a61e86e7757da385":[2,0,0,1,47,0], +"classGpgFrontend_1_1UI_1_1VersionCheckTask.html#aba6a81a5f958e5c5c29242bfe1fbd77a":[2,0,0,1,47,3], +"classGpgFrontend_1_1UI_1_1VersionCheckTask.html#aed545ffa8128acb16bb28c067e032ec9":[2,0,0,1,47,8], +"classGpgFrontend_1_1UI_1_1VersionCheckTask.html#af9042479ff7d3a8d1f7c53f320404ebb":[2,0,0,1,47,11], +"classGpgFrontend_1_1UI_1_1VersionCheckTask.html#afd92a65f744566d288d9ddd736662d8e":[2,0,0,1,47,4], +"classGpgFrontend_1_1UI_1_1WaitingDialog.html":[2,0,0,1,30], +"classGpgFrontend_1_1UI_1_1WaitingDialog.html#a809d0ffc8208eb2ff5d8da76c8ee10dc":[2,0,0,1,30,0], +"classGpgFrontend_1_1UI_1_1Wizard.html":[2,0,0,1,31], +"classGpgFrontend_1_1UI_1_1Wizard.html#a448db8fe5ace96418ffd1f23b0142b10":[2,0,0,1,31,1], +"classGpgFrontend_1_1UI_1_1Wizard.html#a6f5517c99cd08c44a3ae8676a2ac412c":[2,0,0,1,31,0], +"classGpgFrontend_1_1UI_1_1Wizard.html#a6f5517c99cd08c44a3ae8676a2ac412ca1db00da5c18fa2f3b0764569530f9fd0":[2,0,0,1,31,0,2], +"classGpgFrontend_1_1UI_1_1Wizard.html#a6f5517c99cd08c44a3ae8676a2ac412ca1e434fabfc6237dafd989f395e0a58c8":[2,0,0,1,31,0,1], +"classGpgFrontend_1_1UI_1_1Wizard.html#a6f5517c99cd08c44a3ae8676a2ac412ca21b9ac4a8543be737829f3f970e28bb6":[2,0,0,1,31,0,3], +"classGpgFrontend_1_1UI_1_1Wizard.html#a6f5517c99cd08c44a3ae8676a2ac412cab748f725806e9242cc8476eab193b51c":[2,0,0,1,31,0,0], +"classGpgFrontend_1_1UI_1_1Wizard.html#a8482dc299ec69e422d9fa6bc0d31025a":[2,0,0,1,31,3], +"classGpgFrontend_1_1UI_1_1Wizard.html#a8b5f5ddb1e6470cbf6c87cc6400031fb":[2,0,0,1,31,2], +"classProxyConnectionTestThread.html":[2,0,2], +"classSignatureDetailsDialog.html":[2,0,3], +"classTestListedKeyServerThread.html":[2,0,4], +"classclass.html":[2,0,1], +"classes.html":[2,1], +"dir_00e48bdfb963d228cbb8d1392ea3be3d.html":[3,0,0,1,0,0], +"dir_0652c688762e27a1001e51709de145a7.html":[3,0,0,1,0,2], +"dir_0cd9bde2c64af64bc3733ed8ca8e04b3.html":[3,0,0,1,3], +"dir_11afffa0017fe763467cff6465c6cba1.html":[3,0,0,1,0,4], +"dir_181bea3d8ae4b1f9a028d86ce05f5b90.html":[3,0,0,1,0,3], +"dir_34b4cee2b5900b653deb3438fc906cf4.html":[3,0,0,0,0], +"dir_4c90737131b129f8f210b6ba3e14bca4.html":[3,0,0,0,1,1], +"dir_60d155722ad55e64f9b6ab1078feff11.html":[3,0,0,1,0], +"dir_68267d1309a1af8e8297ef4c3efbcdba.html":[3,0,0], +"dir_77b5d71c36a073b86db318490f5560d0.html":[3,0,0,1,2], +"dir_aebb8dcc11953d78e620bbef0b9e2183.html":[3,0,0,0], +"dir_b499e35b7e1b4486be887a41196851ec.html":[3,0,0,0,1,0], +"dir_b7e232576c264c97fe14815134a8cffa.html":[3,0,0,1,1], +"dir_c94381238fe21d1ba8abf1f36aa07fe5.html":[3,0,0,1,0,5], "dir_da5c6b39c0a2f54e57df6799511cd3ab.html":[3,0,0,1], "dir_db6209eff64d15a114e6ff7aefbf1abd.html":[3,0,0,0,2], "dir_e2aa8803ed3498b184755f32f6c016d5.html":[3,0,0,1,0,1], @@ -8,8 +46,8 @@ var NAVTREEINDEX6 = "dir_fc6c58bf49530122ab17df13a9869378.html":[3,0,0,0,1,2], "dir_fd71accbf528c1576ca21e7ec5716833.html":[3,0,0,0,3], "files.html":[3,0], -"functions.html":[2,3,0], "functions.html":[2,3,0,0], +"functions.html":[2,3,0], "functions_a.html":[2,3,0,1], "functions_b.html":[2,3,0,2], "functions_c.html":[2,3,0,3], @@ -62,56 +100,56 @@ var NAVTREEINDEX6 = "index.html":[], "index.html":[0], "namespaceGpgFrontend.html":[1,0,0], -"namespaceGpgFrontend.html#a02576f9b3647baec8e7f6dacf9411b46":[1,0,0,52], -"namespaceGpgFrontend.html#a1194ef197102807cf31a6e27fdd47e07":[1,0,0,90], -"namespaceGpgFrontend.html#a17ea01393928cb8638564cdd787151e4":[1,0,0,94], -"namespaceGpgFrontend.html#a1872f20a465ea6a482065996abab2c95":[1,0,0,63], -"namespaceGpgFrontend.html#a2470eb154743191c3454203f23d3a2f8":[1,0,0,51], -"namespaceGpgFrontend.html#a2a0394c8bdd277f5235f9875a1d69a99":[1,0,0,91], -"namespaceGpgFrontend.html#a2a6566f59b4be29e453a1edd93f6a337":[1,0,0,75], -"namespaceGpgFrontend.html#a3aa61e484a9f2e198119af82662fe68f":[1,0,0,89], -"namespaceGpgFrontend.html#a3c488625b949d2ac26315996b4b881e9":[1,0,0,56], -"namespaceGpgFrontend.html#a3d735ed2f15dbf638cfa508daba16e5b":[1,0,0,67], -"namespaceGpgFrontend.html#a4edac6df92596ba8eea3a8cdc1173684":[1,0,0,82], -"namespaceGpgFrontend.html#a5135069571678eda9c1f07d17ed9ac41":[1,0,0,92], -"namespaceGpgFrontend.html#a54baa8d3ea3843c907a7644a85cb9699":[1,0,0,73], -"namespaceGpgFrontend.html#a5a2f5fc1ad3de55e41a1b7a388821328":[1,0,0,84], -"namespaceGpgFrontend.html#a5c172444c7aacf11b2f8b2ebe72fb053":[1,0,0,85], -"namespaceGpgFrontend.html#a6df12217c02df87356b3276fa08df3b8":[1,0,0,53], -"namespaceGpgFrontend.html#a719a7945f8e6af4aa6446883a8847f48":[1,0,0,55], -"namespaceGpgFrontend.html#a734ec65953e9b8fe39b7d76b42c7d9e5":[1,0,0,47], -"namespaceGpgFrontend.html#a73f3e2217fb1d72dc75f266e11875f6d":[1,0,0,88], -"namespaceGpgFrontend.html#a74d7d03c9b8231bc13f199fb06204fca":[1,0,0,48], -"namespaceGpgFrontend.html#a77d0c0a6b959437c89b069df9a97c194":[1,0,0,58], -"namespaceGpgFrontend.html#a788cd2c216e4867a676920da22d4f49d":[1,0,0,59], -"namespaceGpgFrontend.html#a78f78409fbd7963376da60f7e5c0dba9":[1,0,0,49], -"namespaceGpgFrontend.html#a8454f6586944c55018f7745c22d281d2":[1,0,0,66], -"namespaceGpgFrontend.html#a88afb4fc90777c981345a4a702df8672":[1,0,0,70], -"namespaceGpgFrontend.html#a8d00b92300e229303fcf42e99fb77278":[1,0,0,71], -"namespaceGpgFrontend.html#a8fe8112cc97385961a3f6a18129ea789":[1,0,0,65], -"namespaceGpgFrontend.html#a93c0ac9e329baa602e0bfdee7ea1273f":[1,0,0,61], -"namespaceGpgFrontend.html#a953722e5ef4bbc71b42a4f821f00b737":[1,0,0,72], -"namespaceGpgFrontend.html#a99b4f5a3b9f7a379a79c37ba8fff93af":[1,0,0,54], -"namespaceGpgFrontend.html#a9e0e33d7737ab41ab80422134e659bb3":[1,0,0,93], -"namespaceGpgFrontend.html#aa8f86425050122fc627c1a793c2d1f80":[1,0,0,69], -"namespaceGpgFrontend.html#aaf7ddbd50cd4f16b7d2a997c03b20933":[1,0,0,74], -"namespaceGpgFrontend.html#aafb9aa0ba1d03afa09085b1b8136c55f":[1,0,0,87], -"namespaceGpgFrontend.html#ab0a0bf1c3231a455c85f5604f4ff219a":[1,0,0,46], -"namespaceGpgFrontend.html#ab19bf8acd65218045313b120cf72333e":[1,0,0,57], -"namespaceGpgFrontend.html#ab9e8650a71965e35cb6a763dbf61a048":[1,0,0,60], -"namespaceGpgFrontend.html#abdc336cc966afe6c1523cb7751cac9f8":[1,0,0,64], -"namespaceGpgFrontend.html#ac35a1eb416146226f5c6446ab61dbc82":[1,0,0,62], -"namespaceGpgFrontend.html#ac494a4b0d91e08a70db77a399c9a0f30":[1,0,0,79], -"namespaceGpgFrontend.html#acb5dd82fc7d0428bafe34ed304dc15d1":[1,0,0,77], -"namespaceGpgFrontend.html#acff2cf5dd5b112b324fa6574ee935f79":[1,0,0,83], -"namespaceGpgFrontend.html#ad8f79b76997875f0588a77340a34d2a1":[1,0,0,68], -"namespaceGpgFrontend.html#ada6a044ece8975e35b2a229f65249713":[1,0,0,45], -"namespaceGpgFrontend.html#adf0fbe100c3ea1bf2f33bc0f55dfff17":[1,0,0,81], -"namespaceGpgFrontend.html#ae060b7e70b7898c1239f372b55bac640":[1,0,0,50], -"namespaceGpgFrontend.html#ae3f2947210ad3e11269ebac355f47492":[1,0,0,78], -"namespaceGpgFrontend.html#af909eb3cf2690d23939e394a461e48e9":[1,0,0,76], -"namespaceGpgFrontend.html#afdad4e5f4c3ac891c09216e245c0f48e":[1,0,0,80], -"namespaceGpgFrontend.html#aff3e12940da2d43ce7aedeb795643434":[1,0,0,86], +"namespaceGpgFrontend.html#a02576f9b3647baec8e7f6dacf9411b46":[1,0,0,54], +"namespaceGpgFrontend.html#a1194ef197102807cf31a6e27fdd47e07":[1,0,0,92], +"namespaceGpgFrontend.html#a17ea01393928cb8638564cdd787151e4":[1,0,0,96], +"namespaceGpgFrontend.html#a1872f20a465ea6a482065996abab2c95":[1,0,0,65], +"namespaceGpgFrontend.html#a2470eb154743191c3454203f23d3a2f8":[1,0,0,53], +"namespaceGpgFrontend.html#a2a0394c8bdd277f5235f9875a1d69a99":[1,0,0,93], +"namespaceGpgFrontend.html#a2a6566f59b4be29e453a1edd93f6a337":[1,0,0,77], +"namespaceGpgFrontend.html#a3aa61e484a9f2e198119af82662fe68f":[1,0,0,91], +"namespaceGpgFrontend.html#a3c488625b949d2ac26315996b4b881e9":[1,0,0,58], +"namespaceGpgFrontend.html#a3d735ed2f15dbf638cfa508daba16e5b":[1,0,0,69], +"namespaceGpgFrontend.html#a4edac6df92596ba8eea3a8cdc1173684":[1,0,0,84], +"namespaceGpgFrontend.html#a5135069571678eda9c1f07d17ed9ac41":[1,0,0,94], +"namespaceGpgFrontend.html#a54baa8d3ea3843c907a7644a85cb9699":[1,0,0,75], +"namespaceGpgFrontend.html#a5a2f5fc1ad3de55e41a1b7a388821328":[1,0,0,86], +"namespaceGpgFrontend.html#a5c172444c7aacf11b2f8b2ebe72fb053":[1,0,0,87], +"namespaceGpgFrontend.html#a6df12217c02df87356b3276fa08df3b8":[1,0,0,55], +"namespaceGpgFrontend.html#a719a7945f8e6af4aa6446883a8847f48":[1,0,0,57], +"namespaceGpgFrontend.html#a734ec65953e9b8fe39b7d76b42c7d9e5":[1,0,0,49], +"namespaceGpgFrontend.html#a73f3e2217fb1d72dc75f266e11875f6d":[1,0,0,90], +"namespaceGpgFrontend.html#a74d7d03c9b8231bc13f199fb06204fca":[1,0,0,50], +"namespaceGpgFrontend.html#a77d0c0a6b959437c89b069df9a97c194":[1,0,0,60], +"namespaceGpgFrontend.html#a788cd2c216e4867a676920da22d4f49d":[1,0,0,61], +"namespaceGpgFrontend.html#a78f78409fbd7963376da60f7e5c0dba9":[1,0,0,51], +"namespaceGpgFrontend.html#a8454f6586944c55018f7745c22d281d2":[1,0,0,68], +"namespaceGpgFrontend.html#a88afb4fc90777c981345a4a702df8672":[1,0,0,72], +"namespaceGpgFrontend.html#a8d00b92300e229303fcf42e99fb77278":[1,0,0,73], +"namespaceGpgFrontend.html#a8fe8112cc97385961a3f6a18129ea789":[1,0,0,67], +"namespaceGpgFrontend.html#a93c0ac9e329baa602e0bfdee7ea1273f":[1,0,0,63], +"namespaceGpgFrontend.html#a953722e5ef4bbc71b42a4f821f00b737":[1,0,0,74], +"namespaceGpgFrontend.html#a99b4f5a3b9f7a379a79c37ba8fff93af":[1,0,0,56], +"namespaceGpgFrontend.html#a9e0e33d7737ab41ab80422134e659bb3":[1,0,0,95], +"namespaceGpgFrontend.html#aa8f86425050122fc627c1a793c2d1f80":[1,0,0,71], +"namespaceGpgFrontend.html#aaf7ddbd50cd4f16b7d2a997c03b20933":[1,0,0,76], +"namespaceGpgFrontend.html#aafb9aa0ba1d03afa09085b1b8136c55f":[1,0,0,89], +"namespaceGpgFrontend.html#ab0a0bf1c3231a455c85f5604f4ff219a":[1,0,0,48], +"namespaceGpgFrontend.html#ab19bf8acd65218045313b120cf72333e":[1,0,0,59], +"namespaceGpgFrontend.html#ab9e8650a71965e35cb6a763dbf61a048":[1,0,0,62], +"namespaceGpgFrontend.html#abdc336cc966afe6c1523cb7751cac9f8":[1,0,0,66], +"namespaceGpgFrontend.html#ac35a1eb416146226f5c6446ab61dbc82":[1,0,0,64], +"namespaceGpgFrontend.html#ac494a4b0d91e08a70db77a399c9a0f30":[1,0,0,81], +"namespaceGpgFrontend.html#acb5dd82fc7d0428bafe34ed304dc15d1":[1,0,0,79], +"namespaceGpgFrontend.html#acff2cf5dd5b112b324fa6574ee935f79":[1,0,0,85], +"namespaceGpgFrontend.html#ad8f79b76997875f0588a77340a34d2a1":[1,0,0,70], +"namespaceGpgFrontend.html#ada6a044ece8975e35b2a229f65249713":[1,0,0,47], +"namespaceGpgFrontend.html#adf0fbe100c3ea1bf2f33bc0f55dfff17":[1,0,0,83], +"namespaceGpgFrontend.html#ae060b7e70b7898c1239f372b55bac640":[1,0,0,52], +"namespaceGpgFrontend.html#ae3f2947210ad3e11269ebac355f47492":[1,0,0,80], +"namespaceGpgFrontend.html#af909eb3cf2690d23939e394a461e48e9":[1,0,0,78], +"namespaceGpgFrontend.html#afdad4e5f4c3ac891c09216e245c0f48e":[1,0,0,82], +"namespaceGpgFrontend.html#aff3e12940da2d43ce7aedeb795643434":[1,0,0,88], "namespaceGpgFrontend_1_1RawAPI.html":[1,0,0,0], "namespaceGpgFrontend_1_1RawAPI.html#a1f2f6c82e9c904c3875a123a65564697":[1,0,0,0,2], "namespaceGpgFrontend_1_1RawAPI.html#a2e388ecafc7b859eda84b4e3c4e2576f":[1,0,0,0,0], @@ -149,20 +187,20 @@ var NAVTREEINDEX6 = "structGpgFrontend_1_1ArchiveStruct.html#a9fc8525095022554d3a043687aa0a584":[2,0,0,3,0], "structGpgFrontend_1_1ArchiveStruct.html#aa79e4e87c8d56b298295286476c6652e":[2,0,0,3,1], "structGpgFrontend_1_1ArchiveStruct.html#ad5f08b098598491641e55941a128fb38":[2,0,0,3,2], -"structGpgFrontend_1_1GpgContextInitArgs.html":[2,0,0,29], -"structGpgFrontend_1_1GpgContextInitArgs.html#a0ab27875287142f6c72bb7cc7e7bc271":[2,0,0,29,0], -"structGpgFrontend_1_1GpgContextInitArgs.html#a25ca282a0a82ed7aa4cb677a86f53eef":[2,0,0,29,6], -"structGpgFrontend_1_1GpgContextInitArgs.html#a646fd830375ccf3b69ea64ede0c76f52":[2,0,0,29,1], -"structGpgFrontend_1_1GpgContextInitArgs.html#a825d8c5daced5eb06be1a949ae0eadfd":[2,0,0,29,4], -"structGpgFrontend_1_1GpgContextInitArgs.html#a90fc544dd70fa9e3cf4951b9a54efc22":[2,0,0,29,3], -"structGpgFrontend_1_1GpgContextInitArgs.html#aa850fc1db1cc8f3daae78a0fcefb2fdb":[2,0,0,29,2], -"structGpgFrontend_1_1GpgContextInitArgs.html#ac2679300c14d3f0ce29625a267054e6b":[2,0,0,29,5], -"structGpgFrontend_1_1GpgContext_1_1__ctx__ref__deleter.html":[2,0,0,30,0], -"structGpgFrontend_1_1GpgContext_1_1__ctx__ref__deleter.html#a1975ed97838072cf98bd80eef72fd3a8":[2,0,0,30,0,0], -"structGpgFrontend_1_1GpgData_1_1__data__ref__deleter.html":[2,0,0,37,0], -"structGpgFrontend_1_1GpgData_1_1__data__ref__deleter.html#a1dec67f70f17e45e7f78a92414d05485":[2,0,0,37,0,0], -"structGpgFrontend_1_1GpgKey_1_1__key__ref__deleter.html":[2,0,0,38,0], -"structGpgFrontend_1_1GpgKey_1_1__key__ref__deleter.html#a9427ebabbbae929fe1489a2e8534c752":[2,0,0,38,0,0], +"structGpgFrontend_1_1GpgContextInitArgs.html":[2,0,0,31], +"structGpgFrontend_1_1GpgContextInitArgs.html#a0ab27875287142f6c72bb7cc7e7bc271":[2,0,0,31,0], +"structGpgFrontend_1_1GpgContextInitArgs.html#a25ca282a0a82ed7aa4cb677a86f53eef":[2,0,0,31,6], +"structGpgFrontend_1_1GpgContextInitArgs.html#a646fd830375ccf3b69ea64ede0c76f52":[2,0,0,31,1], +"structGpgFrontend_1_1GpgContextInitArgs.html#a825d8c5daced5eb06be1a949ae0eadfd":[2,0,0,31,4], +"structGpgFrontend_1_1GpgContextInitArgs.html#a90fc544dd70fa9e3cf4951b9a54efc22":[2,0,0,31,3], +"structGpgFrontend_1_1GpgContextInitArgs.html#aa850fc1db1cc8f3daae78a0fcefb2fdb":[2,0,0,31,2], +"structGpgFrontend_1_1GpgContextInitArgs.html#ac2679300c14d3f0ce29625a267054e6b":[2,0,0,31,5], +"structGpgFrontend_1_1GpgContext_1_1__ctx__ref__deleter.html":[2,0,0,32,0], +"structGpgFrontend_1_1GpgContext_1_1__ctx__ref__deleter.html#a1975ed97838072cf98bd80eef72fd3a8":[2,0,0,32,0,0], +"structGpgFrontend_1_1GpgData_1_1__data__ref__deleter.html":[2,0,0,39,0], +"structGpgFrontend_1_1GpgData_1_1__data__ref__deleter.html#a1dec67f70f17e45e7f78a92414d05485":[2,0,0,39,0,0], +"structGpgFrontend_1_1GpgKey_1_1__key__ref__deleter.html":[2,0,0,40,0], +"structGpgFrontend_1_1GpgKey_1_1__key__ref__deleter.html#a9427ebabbbae929fe1489a2e8534c752":[2,0,0,40,0,0], "structGpgFrontend_1_1Thread_1_1Task_1_1DataObject_1_1Destructor.html":[2,0,0,0,1,0,0], "structGpgFrontend_1_1Thread_1_1Task_1_1DataObject_1_1Destructor.html#aba3f92e7f17c8decee760e7bdec52126":[2,0,0,0,1,0,0,1], "structGpgFrontend_1_1Thread_1_1Task_1_1DataObject_1_1Destructor.html#ac30a4018fa2e6fd5702bbb21ff069ad4":[2,0,0,0,1,0,0,0], @@ -211,20 +249,5 @@ var NAVTREEINDEX6 = "structGpgFrontend_1_1UI_1_1MainWindow_1_1CryptoMenu.html#adeaa420019edb82abdf898c9c4f27000":[2,0,0,1,39,0,6], "structGpgFrontend_1_1UI_1_1SoftwareVersion.html":[2,0,0,1,42], "structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a105c94ebdef4201963c8ae83b9cc44d6":[2,0,0,1,42,6], -"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a396e555fe47dacbd08e67e65e4c3aba6":[2,0,0,1,42,11], -"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a43663cd2d086299a0f0304f5bde9c663":[2,0,0,1,42,0], -"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a492ce222f6a361d5a05552dd35d41fca":[2,0,0,1,42,7], -"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a587a3fdb047a15c3771c2af5eebdbf4b":[2,0,0,1,42,4], -"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a5d04813a59ceb83ec264c8e5db6ab14e":[2,0,0,1,42,13], -"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a97acaa60638177a3da91e211e3d0c178":[2,0,0,1,42,5], -"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#aac94470eae0dca3c809bcf37712ad37a":[2,0,0,1,42,9], -"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#aafdfa44fdc1d3a1bf9b374fad62b7ead":[2,0,0,1,42,12], -"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#abc311fd0e15da1a04b995587ca74e1a6":[2,0,0,1,42,2], -"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#acbff398f6a35bbcd3593a958cf89e22e":[2,0,0,1,42,14], -"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#acc4ddfafdebc629d6d534e07e7996fef":[2,0,0,1,42,10], -"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#acf891516bea76422e8144047eab6964a":[2,0,0,1,42,8], -"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#ae1989b6a34c76103f4bd06f35686d536":[2,0,0,1,42,3], -"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#aec79eefdc19c90e046cb48bca347ff1c":[2,0,0,1,42,1], -"structGpgFrontend_1_1__result__ref__deletor.html":[2,0,0,27], -"structGpgFrontend_1_1__result__ref__deletor.html#afc545b56a9d45cb1ed455e0d93c30880":[2,0,0,27,0] +"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a396e555fe47dacbd08e67e65e4c3aba6":[2,0,0,1,42,11] }; diff --git a/docs/html/navtreeindex7.js b/docs/html/navtreeindex7.js new file mode 100644 index 00000000..5b6b9090 --- /dev/null +++ b/docs/html/navtreeindex7.js @@ -0,0 +1,18 @@ +var NAVTREEINDEX7 = +{ +"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a43663cd2d086299a0f0304f5bde9c663":[2,0,0,1,42,0], +"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a492ce222f6a361d5a05552dd35d41fca":[2,0,0,1,42,7], +"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a587a3fdb047a15c3771c2af5eebdbf4b":[2,0,0,1,42,4], +"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a5d04813a59ceb83ec264c8e5db6ab14e":[2,0,0,1,42,13], +"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a97acaa60638177a3da91e211e3d0c178":[2,0,0,1,42,5], +"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#aac94470eae0dca3c809bcf37712ad37a":[2,0,0,1,42,9], +"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#aafdfa44fdc1d3a1bf9b374fad62b7ead":[2,0,0,1,42,12], +"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#abc311fd0e15da1a04b995587ca74e1a6":[2,0,0,1,42,2], +"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#acbff398f6a35bbcd3593a958cf89e22e":[2,0,0,1,42,14], +"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#acc4ddfafdebc629d6d534e07e7996fef":[2,0,0,1,42,10], +"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#acf891516bea76422e8144047eab6964a":[2,0,0,1,42,8], +"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#ae1989b6a34c76103f4bd06f35686d536":[2,0,0,1,42,3], +"structGpgFrontend_1_1UI_1_1SoftwareVersion.html#aec79eefdc19c90e046cb48bca347ff1c":[2,0,0,1,42,1], +"structGpgFrontend_1_1__result__ref__deletor.html":[2,0,0,29], +"structGpgFrontend_1_1__result__ref__deletor.html#afc545b56a9d45cb1ed455e0d93c30880":[2,0,0,29,0] +}; diff --git a/docs/html/search/all_0.js b/docs/html/search/all_0.js index df6a2a3b..81e2f43f 100644 --- a/docs/html/search/all_0.js +++ b/docs/html/search/all_0.js @@ -3,7 +3,8 @@ var searchData= ['_5fctx_5fref_5fdeleter_0',['_ctx_ref_deleter',['../structGpgFrontend_1_1GpgContext_1_1__ctx__ref__deleter.html',1,'GpgFrontend::GpgContext']]], ['_5fdata_5fref_5fdeleter_1',['_data_ref_deleter',['../structGpgFrontend_1_1GpgData_1_1__data__ref__deleter.html',1,'GpgFrontend::GpgData']]], ['_5fdefault_5fchannel_2',['_default_channel',['../classGpgFrontend_1_1ChannelObject.html#a66295bb572e98fc2fad3afce763ac311',1,'GpgFrontend::ChannelObject']]], - ['_5fkey_5fref_5fdeleter_3',['_key_ref_deleter',['../structGpgFrontend_1_1GpgKey_1_1__key__ref__deleter.html',1,'GpgFrontend::GpgKey']]], - ['_5fnew_5fresult_4',['_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)']]], - ['_5fresult_5fref_5fdeletor_5',['_result_ref_deletor',['../structGpgFrontend_1_1__result__ref__deletor.html',1,'GpgFrontend']]] + ['_5finstance_3',['_instance',['../classGpgFrontend_1_1CoreSignalStation.html#a36c316a2a76fdf7c3e74dfa5f8ed6b15',1,'GpgFrontend::CoreSignalStation']]], + ['_5fkey_5fref_5fdeleter_4',['_key_ref_deleter',['../structGpgFrontend_1_1GpgKey_1_1__key__ref__deleter.html',1,'GpgFrontend::GpgKey']]], + ['_5fnew_5fresult_5',['_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)']]], + ['_5fresult_5fref_5fdeletor_6',['_result_ref_deletor',['../structGpgFrontend_1_1__result__ref__deletor.html',1,'GpgFrontend']]] ]; diff --git a/docs/html/search/all_1.js b/docs/html/search/all_1.js index 757fb82f..b6f60305 100644 --- a/docs/html/search/all_1.js +++ b/docs/html/search/all_1.js @@ -1,34 +1,34 @@ var searchData= [ - ['about_5fact_5f_6',['about_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9dd292f55fba1fe62c83508fef7e43a1',1,'GpgFrontend::UI::MainWindow']]], - ['aboutdialog_7',['AboutDialog',['../classGpgFrontend_1_1UI_1_1AboutDialog.html#ab04683ab4c4d682af1e259705c60d85a',1,'GpgFrontend::UI::AboutDialog::AboutDialog()'],['../classGpgFrontend_1_1UI_1_1AboutDialog.html',1,'GpgFrontend::UI::AboutDialog']]], - ['add_5fpgp_5fheader_5fact_5f_8',['add_pgp_header_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a95b2c86afbefe47e79af87e56032e306',1,'GpgFrontend::UI::MainWindow']]], - ['additional_5fuid_5fbox_5f_9',['additional_uid_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a265ef140feec330e7341c1369c0aefab',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['addlistgrouptab_10',['AddListGroupTab',['../classGpgFrontend_1_1UI_1_1KeyList.html#a73ddb7feb1f70eac44e038c3dc925fec',1,'GpgFrontend::UI::KeyList']]], - ['addmenuaction_11',['AddMenuAction',['../classGpgFrontend_1_1UI_1_1KeyList.html#aa961e3ba3c48f84dea4bb7ab4f756886',1,'GpgFrontend::UI::KeyList']]], - ['addoptionalaction_12',['AddOptionalAction',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a456f15315a03107f7757d84362c1af71',1,'GpgFrontend::UI::InfoBoardWidget']]], - ['adduid_13',['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)']]], - ['advancedtab_14',['AdvancedTab',['../classGpgFrontend_1_1UI_1_1AdvancedTab.html',1,'GpgFrontend::UI']]], - ['aes_5f256_5fcbc_5fdecrypt_15',['aes_256_cbc_decrypt',['../namespaceGpgFrontend_1_1RawAPI.html#a2e388ecafc7b859eda84b4e3c4e2576f',1,'GpgFrontend::RawAPI']]], - ['aes_5f256_5fcbc_5fencrypt_16',['aes_256_cbc_encrypt',['../namespaceGpgFrontend_1_1RawAPI.html#aa2bc88cf78b8da893f1b5c7e2e8ccf42',1,'GpgFrontend::RawAPI']]], - ['aes_5f256_5fcbc_5finit_17',['aes_256_cbc_init',['../namespaceGpgFrontend_1_1RawAPI.html#a1f2f6c82e9c904c3875a123a65564697',1,'GpgFrontend::RawAPI']]], - ['algorithm_5fvar_5flabel_5f_18',['algorithm_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a1790a8b163b94f33a3bb968f9a19f00c',1,'GpgFrontend::UI::KeyPairSubkeyTab::algorithm_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aadcb3bbb4233fdc2deca5b509c46b2e1',1,'GpgFrontend::UI::KeyPairDetailTab::algorithm_var_label_()']]], - ['app_5fconfigure_5fpath_5f_19',['app_configure_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a4d04bb665571921421b853f18b8b300a',1,'GpgFrontend::GlobalSettingStation']]], - ['app_5fdata_5fobjs_5fpath_5f_20',['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_21',['app_data_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a58fff8a42f98ad7989bffb8322344cd6',1,'GpgFrontend::GlobalSettingStation']]], - ['app_5flocale_5fpath_5f_22',['app_locale_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a25c1b45a2ccdc21dd2dcba58866169fb',1,'GpgFrontend::GlobalSettingStation']]], - ['app_5flog_5fpath_5f_23',['app_log_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a6459653a71cc8285fa554943c7fb3ca7',1,'GpgFrontend::GlobalSettingStation']]], - ['app_5fpath_5f_24',['app_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a678f8ba120f9ad050d0adfec4476d7ac',1,'GpgFrontend::GlobalSettingStation']]], - ['app_5fresource_5fpath_5f_25',['app_resource_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a1d94a126c78ac01ec01f10d2ce575388',1,'GpgFrontend::GlobalSettingStation']]], - ['app_5fsecure_5fkey_5fpath_5f_26',['app_secure_key_path_',['../classGpgFrontend_1_1DataObjectOperator.html#a56c0c031cd327207260c73d1885dbdca',1,'GpgFrontend::DataObjectOperator']]], - ['app_5fsecure_5fpath_5f_27',['app_secure_path_',['../classGpgFrontend_1_1DataObjectOperator.html#a6d38d25c91c33c48d083ec4de051108a',1,'GpgFrontend::DataObjectOperator']]], - ['appearancetab_28',['AppearanceTab',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html#abfca670540bc0409b9be4459ee6a3b6c',1,'GpgFrontend::UI::AppearanceTab::AppearanceTab()'],['../classGpgFrontend_1_1UI_1_1AppearanceTab.html',1,'GpgFrontend::UI::AppearanceTab']]], - ['append_5fselected_5fkeys_5fact_5f_29',['append_selected_keys_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab67486a71126073e7c39ca12603198f4',1,'GpgFrontend::UI::MainWindow']]], - ['appendobject_30',['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)']]], - ['apppath_31',['AppPath',['../classGpgFrontend_1_1GpgInfo.html#a2416ae0ab9bedc61782d16075750a9c0',1,'GpgFrontend::GpgInfo']]], - ['archivefileoperator_32',['ArchiveFileOperator',['../classGpgFrontend_1_1ArchiveFileOperator.html',1,'GpgFrontend']]], - ['archivestruct_33',['ArchiveStruct',['../structGpgFrontend_1_1ArchiveStruct.html',1,'GpgFrontend']]], - ['associatetabwidget_34',['AssociateTabWidget',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#adfa4acd435d2ec29f951f4e7e6a43f38',1,'GpgFrontend::UI::InfoBoardWidget']]], - ['associatetextedit_35',['AssociateTextEdit',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a4fd6f91eb435feb41ae93e44485646ab',1,'GpgFrontend::UI::InfoBoardWidget']]], - ['attachment_5fdock_5f_36',['attachment_dock_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#afd243a5f00f86d65431081ead2cae153',1,'GpgFrontend::UI::MainWindow']]] + ['about_5fact_5f_7',['about_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9dd292f55fba1fe62c83508fef7e43a1',1,'GpgFrontend::UI::MainWindow']]], + ['aboutdialog_8',['AboutDialog',['../classGpgFrontend_1_1UI_1_1AboutDialog.html#ab04683ab4c4d682af1e259705c60d85a',1,'GpgFrontend::UI::AboutDialog::AboutDialog()'],['../classGpgFrontend_1_1UI_1_1AboutDialog.html',1,'GpgFrontend::UI::AboutDialog']]], + ['add_5fpgp_5fheader_5fact_5f_9',['add_pgp_header_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a95b2c86afbefe47e79af87e56032e306',1,'GpgFrontend::UI::MainWindow']]], + ['additional_5fuid_5fbox_5f_10',['additional_uid_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a265ef140feec330e7341c1369c0aefab',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['addlistgrouptab_11',['AddListGroupTab',['../classGpgFrontend_1_1UI_1_1KeyList.html#a73ddb7feb1f70eac44e038c3dc925fec',1,'GpgFrontend::UI::KeyList']]], + ['addmenuaction_12',['AddMenuAction',['../classGpgFrontend_1_1UI_1_1KeyList.html#aa961e3ba3c48f84dea4bb7ab4f756886',1,'GpgFrontend::UI::KeyList']]], + ['addoptionalaction_13',['AddOptionalAction',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a456f15315a03107f7757d84362c1af71',1,'GpgFrontend::UI::InfoBoardWidget']]], + ['adduid_14',['AddUID',['../classGpgFrontend_1_1GpgUIDOperator.html#a7c0de570de59d4ebc6c0bed681119bf7',1,'GpgFrontend::GpgUIDOperator::AddUID(const GpgKey &key, const std::string &uid)'],['../classGpgFrontend_1_1GpgUIDOperator.html#a672bbf74abac9140233c4e1c7864d15d',1,'GpgFrontend::GpgUIDOperator::AddUID(const GpgKey &key, const std::string &name, const std::string &comment, const std::string &email)']]], + ['advancedtab_15',['AdvancedTab',['../classGpgFrontend_1_1UI_1_1AdvancedTab.html',1,'GpgFrontend::UI']]], + ['aes_5f256_5fcbc_5fdecrypt_16',['aes_256_cbc_decrypt',['../namespaceGpgFrontend_1_1RawAPI.html#a2e388ecafc7b859eda84b4e3c4e2576f',1,'GpgFrontend::RawAPI']]], + ['aes_5f256_5fcbc_5fencrypt_17',['aes_256_cbc_encrypt',['../namespaceGpgFrontend_1_1RawAPI.html#aa2bc88cf78b8da893f1b5c7e2e8ccf42',1,'GpgFrontend::RawAPI']]], + ['aes_5f256_5fcbc_5finit_18',['aes_256_cbc_init',['../namespaceGpgFrontend_1_1RawAPI.html#a1f2f6c82e9c904c3875a123a65564697',1,'GpgFrontend::RawAPI']]], + ['algorithm_5fvar_5flabel_5f_19',['algorithm_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a1790a8b163b94f33a3bb968f9a19f00c',1,'GpgFrontend::UI::KeyPairSubkeyTab::algorithm_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aadcb3bbb4233fdc2deca5b509c46b2e1',1,'GpgFrontend::UI::KeyPairDetailTab::algorithm_var_label_()']]], + ['app_5fconfigure_5fpath_5f_20',['app_configure_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a4d04bb665571921421b853f18b8b300a',1,'GpgFrontend::GlobalSettingStation']]], + ['app_5fdata_5fobjs_5fpath_5f_21',['app_data_objs_path_',['../classGpgFrontend_1_1DataObjectOperator.html#ae6762d4f0f5ca2e83f7c1508cd25cc21',1,'GpgFrontend::DataObjectOperator::app_data_objs_path_()'],['../classGpgFrontend_1_1GlobalSettingStation.html#ad0600d475f6758503b1347722e2a933a',1,'GpgFrontend::GlobalSettingStation::app_data_objs_path_()']]], + ['app_5fdata_5fpath_5f_22',['app_data_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a58fff8a42f98ad7989bffb8322344cd6',1,'GpgFrontend::GlobalSettingStation']]], + ['app_5flocale_5fpath_5f_23',['app_locale_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a25c1b45a2ccdc21dd2dcba58866169fb',1,'GpgFrontend::GlobalSettingStation']]], + ['app_5flog_5fpath_5f_24',['app_log_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a6459653a71cc8285fa554943c7fb3ca7',1,'GpgFrontend::GlobalSettingStation']]], + ['app_5fpath_5f_25',['app_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a678f8ba120f9ad050d0adfec4476d7ac',1,'GpgFrontend::GlobalSettingStation']]], + ['app_5fresource_5fpath_5f_26',['app_resource_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a1d94a126c78ac01ec01f10d2ce575388',1,'GpgFrontend::GlobalSettingStation']]], + ['app_5fsecure_5fkey_5fpath_5f_27',['app_secure_key_path_',['../classGpgFrontend_1_1DataObjectOperator.html#a56c0c031cd327207260c73d1885dbdca',1,'GpgFrontend::DataObjectOperator']]], + ['app_5fsecure_5fpath_5f_28',['app_secure_path_',['../classGpgFrontend_1_1DataObjectOperator.html#a6d38d25c91c33c48d083ec4de051108a',1,'GpgFrontend::DataObjectOperator']]], + ['appearancetab_29',['AppearanceTab',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html#abfca670540bc0409b9be4459ee6a3b6c',1,'GpgFrontend::UI::AppearanceTab::AppearanceTab()'],['../classGpgFrontend_1_1UI_1_1AppearanceTab.html',1,'GpgFrontend::UI::AppearanceTab']]], + ['append_5fselected_5fkeys_5fact_5f_30',['append_selected_keys_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab67486a71126073e7c39ca12603198f4',1,'GpgFrontend::UI::MainWindow']]], + ['appendobject_31',['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)']]], + ['apppath_32',['AppPath',['../classGpgFrontend_1_1GpgInfo.html#a2416ae0ab9bedc61782d16075750a9c0',1,'GpgFrontend::GpgInfo']]], + ['archivefileoperator_33',['ArchiveFileOperator',['../classGpgFrontend_1_1ArchiveFileOperator.html',1,'GpgFrontend']]], + ['archivestruct_34',['ArchiveStruct',['../structGpgFrontend_1_1ArchiveStruct.html',1,'GpgFrontend']]], + ['associatetabwidget_35',['AssociateTabWidget',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#adfa4acd435d2ec29f951f4e7e6a43f38',1,'GpgFrontend::UI::InfoBoardWidget']]], + ['associatetextedit_36',['AssociateTextEdit',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a4fd6f91eb435feb41ae93e44485646ab',1,'GpgFrontend::UI::InfoBoardWidget']]], + ['attachment_5fdock_5f_37',['attachment_dock_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#afd243a5f00f86d65431081ead2cae153',1,'GpgFrontend::UI::MainWindow']]] ]; diff --git a/docs/html/search/all_10.js b/docs/html/search/all_10.js index 6e8d27b9..961ff7c7 100644 --- a/docs/html/search/all_10.js +++ b/docs/html/search/all_10.js @@ -1,6 +1,6 @@ var searchData= [ - ['quit_5fact_5f_445',['quit_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#abe0683e48485f9fcff622d9519c37ed9',1,'GpgFrontend::UI::MainWindow']]], - ['quitdialog_446',['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_447',['quote_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af9640e5732c2595d0c094e7ff7e371ac',1,'GpgFrontend::UI::MainWindow']]] + ['quit_5fact_5f_456',['quit_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#abe0683e48485f9fcff622d9519c37ed9',1,'GpgFrontend::UI::MainWindow']]], + ['quitdialog_457',['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_458',['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 472913cb..e9779f41 100644 --- a/docs/html/search/all_11.js +++ b/docs/html/search/all_11.js @@ -1,22 +1,26 @@ var searchData= [ - ['rd_5f_448',['rd_',['../classGpgFrontend_1_1PassphraseGenerator.html#a12ee6f9b7fff4883074321c7e0de3dfa',1,'GpgFrontend::PassphraseGenerator::rd_()'],['../classGpgFrontend_1_1DataObjectOperator.html#a24c9cdbe9256e332ac93d6dc28c76b90',1,'GpgFrontend::DataObjectOperator::rd_()']]], - ['read2buffer_449',['Read2Buffer',['../classGpgFrontend_1_1GpgData.html#ae382a34ec551561315deca84c71c19c1',1,'GpgFrontend::GpgData']]], - ['read_5fall_5fdata_5fin_5ffile_450',['read_all_data_in_file',['../namespaceGpgFrontend.html#a73f3e2217fb1d72dc75f266e11875f6d',1,'GpgFrontend']]], - ['readdone_451',['ReadDone',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#ac1902b063decfeebe7f0908cbfe618ce',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['readfile_452',['ReadFile',['../classGpgFrontend_1_1FileOperator.html#a28a3572dc01192b6a4d50b544181084c',1,'GpgFrontend::FileOperator']]], - ['readfilestd_453',['ReadFileStd',['../classGpgFrontend_1_1FileOperator.html#ad4424bce4f22ae75a16c542dfb4ddf0a',1,'GpgFrontend::FileOperator']]], - ['redo_5fact_5f_454',['redo_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#abe38474d4e81726147f9df8a9721ce6e',1,'GpgFrontend::UI::MainWindow']]], - ['refresh_455',['Refresh',['../structGpgFrontend_1_1UI_1_1KeyTable.html#aaac381e205c323444098803e0295060f',1,'GpgFrontend::UI::KeyTable']]], - ['refresh_5finfo_5fboard_456',['refresh_info_board',['../namespaceGpgFrontend_1_1UI.html#a204156a333cde4f705f0ace91cd3d333',1,'GpgFrontend::UI']]], - ['refresh_5fkeys_5ffrom_5fkey_5fserver_457',['refresh_keys_from_key_server',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adfa3b3ae1de1fd04c5ea09e3c97c3e98',1,'GpgFrontend::UI::MainWindow']]], - ['refresh_5fwidgets_5fstate_458',['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_459',['ReleaseChannel',['../classGpgFrontend_1_1SingletonFunctionObject.html#ab49b1d50252e1934691a9483a6df2106',1,'GpgFrontend::SingletonFunctionObject::ReleaseChannel()'],['../classGpgFrontend_1_1SingletonStorage.html#adb22cc80a1ab040b6e4bce962625edfd',1,'GpgFrontend::SingletonStorage::ReleaseChannel()']]], - ['resetoptionactionsmenu_460',['ResetOptionActionsMenu',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a7d7504339221bd680fb18698dd829b32',1,'GpgFrontend::UI::InfoBoardWidget']]], - ['restore_5fsettings_461',['restore_settings',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a210ab31f4d949a50507d0690c0d1598a',1,'GpgFrontend::UI::MainWindow']]], - ['revsign_462',['RevSign',['../classGpgFrontend_1_1GpgKeyManager.html#aa2c0e804db1c4aaf3b861ee5ab54ebd8',1,'GpgFrontend::GpgKeyManager']]], - ['revuid_463',['RevUID',['../classGpgFrontend_1_1GpgUIDOperator.html#a47f762666afbc806365877ff70947841',1,'GpgFrontend::GpgUIDOperator']]], - ['run_464',['Run',['../classGpgFrontend_1_1Thread_1_1CtxCheckTask.html#a1c94cb1290df40a9043fe2d1a9a231f2',1,'GpgFrontend::Thread::CtxCheckTask::Run()'],['../classGpgFrontend_1_1UI_1_1FileReadTask.html#a0f8bc1c253380b68c0e65cabc011ac09',1,'GpgFrontend::UI::FileReadTask::Run()'],['../classGpgFrontend_1_1Thread_1_1Task.html#ac60aa71a24f452fd8031597ff4cbbd00',1,'GpgFrontend::Thread::Task::Run()'],['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9156325af41c378f8d7e77187d445c12',1,'GpgFrontend::UI::VersionCheckTask::Run()']]], - ['run_465',['run',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.html#a497bb7f1b92c67f2e754fd66ca3a6666',1,'GpgFrontend::UI::ProxyConnectionTestThread']]], - ['rungpgfrontendui_466',['RunGpgFrontendUI',['../namespaceGpgFrontend_1_1UI.html#a9e2d085812ef8fdd6f19ea94a241b4da',1,'GpgFrontend::UI']]] + ['rd_5f_459',['rd_',['../classGpgFrontend_1_1PassphraseGenerator.html#a12ee6f9b7fff4883074321c7e0de3dfa',1,'GpgFrontend::PassphraseGenerator::rd_()'],['../classGpgFrontend_1_1DataObjectOperator.html#a24c9cdbe9256e332ac93d6dc28c76b90',1,'GpgFrontend::DataObjectOperator::rd_()']]], + ['read2buffer_460',['Read2Buffer',['../classGpgFrontend_1_1GpgData.html#ae382a34ec551561315deca84c71c19c1',1,'GpgFrontend::GpgData']]], + ['read_5fall_5fdata_5fin_5ffile_461',['read_all_data_in_file',['../namespaceGpgFrontend.html#a73f3e2217fb1d72dc75f266e11875f6d',1,'GpgFrontend']]], + ['readdone_462',['ReadDone',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#ac1902b063decfeebe7f0908cbfe618ce',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['readfile_463',['ReadFile',['../classGpgFrontend_1_1FileOperator.html#a28a3572dc01192b6a4d50b544181084c',1,'GpgFrontend::FileOperator']]], + ['readfilestd_464',['ReadFileStd',['../classGpgFrontend_1_1FileOperator.html#ad4424bce4f22ae75a16c542dfb4ddf0a',1,'GpgFrontend::FileOperator']]], + ['redo_5fact_5f_465',['redo_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#abe38474d4e81726147f9df8a9721ce6e',1,'GpgFrontend::UI::MainWindow']]], + ['refresh_466',['Refresh',['../structGpgFrontend_1_1UI_1_1KeyTable.html#aaac381e205c323444098803e0295060f',1,'GpgFrontend::UI::KeyTable']]], + ['refresh_5finfo_5fboard_467',['refresh_info_board',['../namespaceGpgFrontend_1_1UI.html#a204156a333cde4f705f0ace91cd3d333',1,'GpgFrontend::UI']]], + ['refresh_5fkeys_5ffrom_5fkey_5fserver_468',['refresh_keys_from_key_server',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adfa3b3ae1de1fd04c5ea09e3c97c3e98',1,'GpgFrontend::UI::MainWindow']]], + ['refresh_5fwidgets_5fstate_469',['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_470',['ReleaseChannel',['../classGpgFrontend_1_1SingletonStorage.html#adb22cc80a1ab040b6e4bce962625edfd',1,'GpgFrontend::SingletonStorage::ReleaseChannel()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#ab49b1d50252e1934691a9483a6df2106',1,'GpgFrontend::SingletonFunctionObject::ReleaseChannel()']]], + ['reloadgpgcomponents_471',['ReloadGpgComponents',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a6876b6ee63ff7147c274e4f9538d29ce',1,'GpgFrontend::GpgAdvancedOperator']]], + ['resetconfigures_472',['ResetConfigures',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a209f6d1d664ab672437198dc10ed8226',1,'GpgFrontend::GpgAdvancedOperator']]], + ['resetoptionactionsmenu_473',['ResetOptionActionsMenu',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a7d7504339221bd680fb18698dd829b32',1,'GpgFrontend::UI::InfoBoardWidget']]], + ['resettempcachevalue_474',['ResetTempCacheValue',['../classGpgFrontend_1_1CoreCommonUtil.html#a354c4f7cb7f102964e43012fc10d1e52',1,'GpgFrontend::CoreCommonUtil']]], + ['restartgpgcomponents_475',['RestartGpgComponents',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a5801bf4ea7391cbcc60efd2513d41041',1,'GpgFrontend::GpgAdvancedOperator']]], + ['restore_5fsettings_476',['restore_settings',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a210ab31f4d949a50507d0690c0d1598a',1,'GpgFrontend::UI::MainWindow']]], + ['revsign_477',['RevSign',['../classGpgFrontend_1_1GpgKeyManager.html#aa2c0e804db1c4aaf3b861ee5ab54ebd8',1,'GpgFrontend::GpgKeyManager']]], + ['revuid_478',['RevUID',['../classGpgFrontend_1_1GpgUIDOperator.html#a47f762666afbc806365877ff70947841',1,'GpgFrontend::GpgUIDOperator']]], + ['run_479',['run',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.html#a497bb7f1b92c67f2e754fd66ca3a6666',1,'GpgFrontend::UI::ProxyConnectionTestThread']]], + ['run_480',['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_481',['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 36e0a8e1..5a6bcb86 100644 --- a/docs/html/search/all_12.js +++ b/docs/html/search/all_12.js @@ -1,186 +1,192 @@ var searchData= [ - ['save_5fact_5f_467',['save_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab0f148559d830fcf10b5a1937b0a47dc',1,'GpgFrontend::UI::MainWindow']]], - ['save_5fas_5fact_5f_468',['save_as_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a22256763ef83ed35a81e446b553d8112',1,'GpgFrontend::UI::MainWindow']]], - ['save_5ffile_469',['save_file',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a66b6f6633e7ac71e5fe8b7814a81cadf',1,'GpgFrontend::UI::TextEdit']]], - ['save_5fsettings_470',['save_settings',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7a4b6490038470a8849231e48282da98',1,'GpgFrontend::UI::MainWindow']]], - ['select_5fall_5fact_5f_471',['select_all_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ac6a42e6e3af7e76f0bd2ecc62c9520cc',1,'GpgFrontend::UI::MainWindow']]], - ['set_5fbackground_472',['set_background',['../classGpgFrontend_1_1UI_1_1FindWidget.html#a0c531f2c673caed29225a323e750205f',1,'GpgFrontend::UI::FindWidget']]], - ['set_5floading_473',['set_loading',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ad4a75da57fa18bfcfaeb7fc601f1c8f6',1,'GpgFrontend::UI::KeyServerImportDialog']]], - ['set_5fmessage_474',['set_message',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ab93fbf5e0626bffe398f5baa2bc00b1a',1,'GpgFrontend::UI::KeyServerImportDialog']]], - ['set_5fsignal_5fslot_475',['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_476',['set_status',['../classGpgFrontend_1_1GpgResultAnalyse.html#a7f13592b421c7b0d3853f15cece8d195',1,'GpgFrontend::GpgResultAnalyse']]], - ['setalgo_477',['SetAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#adcd9c4f3e75f989810988e0bc81d401f',1,'GpgFrontend::GenKeyInfo']]], - ['setallowauthentication_478',['SetAllowAuthentication',['../classGpgFrontend_1_1GenKeyInfo.html#aac51d251682ed1bc1090416ebfeba4de',1,'GpgFrontend::GenKeyInfo']]], - ['setallowcertification_479',['SetAllowCertification',['../classGpgFrontend_1_1GenKeyInfo.html#ac5f52f74566618c71a29bdc5e70fce2e',1,'GpgFrontend::GenKeyInfo']]], - ['setallowencryption_480',['SetAllowEncryption',['../classGpgFrontend_1_1GenKeyInfo.html#a965014232f6de22c6d33320231ca4454',1,'GpgFrontend::GenKeyInfo']]], - ['setallowsigning_481',['SetAllowSigning',['../classGpgFrontend_1_1GenKeyInfo.html#a1a01518b24d40d95e187ef73f4dcd52a',1,'GpgFrontend::GenKeyInfo']]], - ['setchannel_482',['SetChannel',['../classGpgFrontend_1_1ChannelObject.html#aa3b19cad6d873b314bba32a3dae85f09',1,'GpgFrontend::ChannelObject']]], - ['setchecked_483',['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_484',['SetColumnWidth',['../classGpgFrontend_1_1UI_1_1KeyList.html#aab3f4facfc850e7eeb917571ca89f4a5',1,'GpgFrontend::UI::KeyList']]], - ['setcomment_485',['SetComment',['../classGpgFrontend_1_1GenKeyInfo.html#a947886456f5699241b1c1b9332e4b29e',1,'GpgFrontend::GenKeyInfo']]], - ['setcryptomenustatus_486',['SetCryptoMenuStatus',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a85a98a1ec5418c110201980fa013d1fd',1,'GpgFrontend::UI::MainWindow']]], - ['setdoubleclickedaction_487',['SetDoubleClickedAction',['../classGpgFrontend_1_1UI_1_1KeyList.html#a7d75246eee6368be295c9ab5fe5ef291',1,'GpgFrontend::UI::KeyList']]], - ['setemail_488',['SetEmail',['../classGpgFrontend_1_1GenKeyInfo.html#a656c81d56f77350184f9a94db1a3ce05',1,'GpgFrontend::GenKeyInfo']]], - ['setexpire_489',['SetExpire',['../classGpgFrontend_1_1GpgKeyManager.html#a1625abfbff168c476e76fa9425a6c37d',1,'GpgFrontend::GpgKeyManager::SetExpire()'],['../classGpgFrontend_1_1GpgKeyOpera.html#a12e6b05b23781861065d7e3243c9349e',1,'GpgFrontend::GpgKeyOpera::SetExpire()']]], - ['setexpiretime_490',['SetExpireTime',['../classGpgFrontend_1_1GenKeyInfo.html#aa3bfeda7fc7c83dc8d48ee2b80780c3a',1,'GpgFrontend::GenKeyInfo']]], - ['setfilepath_491',['SetFilePath',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aa9e82690824c82e7628ba4ace9d6e2fe',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['setfinishafterrun_492',['SetFinishAfterRun',['../classGpgFrontend_1_1Thread_1_1Task.html#a689969e7d88ba7ad73a693a1b38aedd7',1,'GpgFrontend::Thread::Task']]], - ['setinfoboard_493',['SetInfoBoard',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#ac936cfc8e1b3af65d0d71b74fb3f0b02',1,'GpgFrontend::UI::InfoBoardWidget']]], - ['setissubkey_494',['SetIsSubKey',['../classGpgFrontend_1_1GenKeyInfo.html#acd9f7742b739e1db60bd50489690dec1',1,'GpgFrontend::GenKeyInfo']]], - ['setkeylength_495',['SetKeyLength',['../classGpgFrontend_1_1GenKeyInfo.html#ae744395012e4dcb9734ad5a30aa8ed75',1,'GpgFrontend::GenKeyInfo']]], - ['setname_496',['SetName',['../classGpgFrontend_1_1GenKeyInfo.html#a65ebc487e0e64c325f65474c812615f7',1,'GpgFrontend::GenKeyInfo']]], - ['setnonexpired_497',['SetNonExpired',['../classGpgFrontend_1_1GenKeyInfo.html#aea247381c21896f5371bb813ca665329',1,'GpgFrontend::GenKeyInfo']]], - ['setnonpassphrase_498',['SetNonPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#a864407216cbdbef9e7b35e6be694d3ef',1,'GpgFrontend::GenKeyInfo']]], - ['setobjectinchannel_499',['SetObjectInChannel',['../classGpgFrontend_1_1SingletonStorage.html#ab0097bb648b2303d68a975c7cbea5a52',1,'GpgFrontend::SingletonStorage']]], - ['setpassphrase_500',['SetPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#afe1760d4ead397f6096925290a38e1a4',1,'GpgFrontend::GenKeyInfo']]], - ['setpassphrasecb_501',['SetPassphraseCb',['../classGpgFrontend_1_1GpgContext.html#a3399fc60086ff5010a089bff48bbc63c',1,'GpgFrontend::GpgContext']]], - ['setprimaryuid_502',['SetPrimaryUID',['../classGpgFrontend_1_1GpgUIDOperator.html#acbdabec97df508382b0c9b1fffbf1dd5',1,'GpgFrontend::GpgUIDOperator']]], - ['setrtn_503',['SetRTN',['../classGpgFrontend_1_1Thread_1_1Task.html#aa6d702417bdd6a88c447ed6a457fa098',1,'GpgFrontend::Thread::Task']]], - ['setsettings_504',['SetSettings',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html#a2fed39a2657407fcdb37d2431ef28e56',1,'GpgFrontend::UI::AppearanceTab::SetSettings()'],['../classGpgFrontend_1_1UI_1_1NetworkTab.html#a51cd114731899b6480cc1b6d5a80826a',1,'GpgFrontend::UI::NetworkTab::SetSettings()'],['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#a221117b56dda48956e44d96a08f6823b',1,'GpgFrontend::UI::KeyserverTab::SetSettings()'],['../classGpgFrontend_1_1UI_1_1GeneralTab.html#a7b26d8a088ce8f50b1fd0e719e38534b',1,'GpgFrontend::UI::GeneralTab::SetSettings()']]], - ['setsigners_505',['SetSigners',['../classGpgFrontend_1_1GpgBasicOperator.html#ad6ea3596ba7d7543fb1b8233d09996df',1,'GpgFrontend::GpgBasicOperator']]], - ['settingsdialog_506',['SettingsDialog',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html',1,'GpgFrontend::UI::SettingsDialog'],['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#a1b7ddc7861d1b4b9dc3810ed98023ffc',1,'GpgFrontend::UI::SettingsDialog::SettingsDialog()']]], - ['settingsobject_507',['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_508',['show_key_details_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#acd41722ceedd20973b7d83852fab407b',1,'GpgFrontend::UI::MainWindow']]], - ['show_5fverify_5fdetails_509',['show_verify_details',['../namespaceGpgFrontend_1_1UI.html#a590a26051105940a6d6e0743b147e281',1,'GpgFrontend::UI']]], - ['showevent_510',['showEvent',['../classGpgFrontend_1_1UI_1_1AboutDialog.html#ab799cd5e07b06a8e953d72105c0a1083',1,'GpgFrontend::UI::AboutDialog']]], - ['shownotificationwidget_511',['ShowNotificationWidget',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#af5dfdfd48ef64cc46e524ec70a22fe3a',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['sign_512',['Sign',['../classGpgFrontend_1_1GpgBasicOperator.html#a988d7e65e85fc7a578f26300332a65d3',1,'GpgFrontend::GpgBasicOperator']]], - ['sign_5fact_5f_513',['sign_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0cded37ef6e07856bbe439b0e90db839',1,'GpgFrontend::UI::MainWindow']]], - ['sign_5fmarked_5f_514',['sign_marked_',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a4f94e9ef7889a169bda5a47b7f657358',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['signaldeeprestartneeded_515',['SignalDeepRestartNeeded',['../classGpgFrontend_1_1UI_1_1GeneralTab.html#afc107d56f13000aa28436a5e26a0876b',1,'GpgFrontend::UI::GeneralTab']]], - ['signalkeydatabaserefreshdone_516',['SignalKeyDatabaseRefreshDone',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a1abc83bba95579aa94d0870181991a28',1,'GpgFrontend::UI::CommonUtils']]], - ['signalkeyserverimportresult_517',['SignalKeyServerImportResult',['../classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a6b2c07d193fb28a57b1738fa493b2b3f',1,'GpgFrontend::UI::KeyServerImportTask']]], - ['signalkeyserverlisttestresult_518',['SignalKeyServerListTestResult',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a20f0147d670be7ab5c9d3051a900f508',1,'GpgFrontend::UI::ListedKeyServerTestTask']]], - ['signalkeyserversearchresult_519',['SignalKeyServerSearchResult',['../classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#ae478130476c95a8b220c3b0e6a7b88b4',1,'GpgFrontend::UI::KeyServerSearchTask']]], - ['signalopenhelp_520',['SignalOpenHelp',['../classGpgFrontend_1_1UI_1_1Wizard.html#a8b5f5ddb1e6470cbf6c87cc6400031fb',1,'GpgFrontend::UI::Wizard']]], - ['signalpathchanged_521',['SignalPathChanged',['../classGpgFrontend_1_1UI_1_1FilePage.html#aec462d16a2097024a4ced24012b905a7',1,'GpgFrontend::UI::FilePage']]], - ['signalproxyconnectiontestresult_522',['SignalProxyConnectionTestResult',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.html#aedafa7b22e024be537658fd8096e5f6f',1,'GpgFrontend::UI::ProxyConnectionTestThread']]], - ['signalrefreshinfoboard_523',['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_524',['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_525',['SignalReplyFromUpdateServer',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a5e752e01539ccfdc6bbe41a404ddaa95',1,'GpgFrontend::UI::UpdateTab']]], - ['signalrestartneeded_526',['SignalRestartNeeded',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#af5ba6646af45d0d1d794bc52ee54b1b9',1,'GpgFrontend::UI::SettingsDialog::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1GeneralTab.html#aa88ccbda61728be6de0aa2d9b92e0b69',1,'GpgFrontend::UI::GeneralTab::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#a26449a77844d9db69a543ff88f10e347',1,'GpgFrontend::UI::KeyserverTab::SignalRestartNeeded()']]], - ['signalrestartneeded_527',['signalRestartNeeded',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html#abff49b636449815a9ebff52f5c067712',1,'GpgFrontend::UI::AppearanceTab']]], - ['signalstation_528',['SignalStation',['../classGpgFrontend_1_1UI_1_1SignalStation.html',1,'GpgFrontend::UI']]], - ['signaluibytesdisplayed_529',['SignalUIBytesDisplayed',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#afd3749488fdd3d1c53446fb8c833f3f4',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['signalupgradeversion_530',['SignalUpgradeVersion',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a36c5597674253348477d78ad6af380ab',1,'GpgFrontend::UI::VersionCheckTask']]], - ['signaturedetailsdialog_531',['SignatureDetailsDialog',['../classSignatureDetailsDialog.html',1,'']]], - ['signerspicker_532',['SignersPicker',['../classGpgFrontend_1_1UI_1_1SignersPicker.html',1,'GpgFrontend::UI::SignersPicker'],['../classGpgFrontend_1_1UI_1_1SignersPicker.html#a02c3ba737702894fc6d4ac1a1c543ccb',1,'GpgFrontend::UI::SignersPicker::SignersPicker()']]], - ['signfile_533',['SignFile',['../classGpgFrontend_1_1GpgFileOpera.html#a350df1c07c054625c4755a78e6ca5ca8',1,'GpgFrontend::GpgFileOpera']]], - ['signkey_534',['SignKey',['../classGpgFrontend_1_1GpgKeyManager.html#a12138780c53add7589f78f056019e5e0',1,'GpgFrontend::GpgKeyManager']]], - ['singletonfunctionobject_535',['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_536',['SingletonFunctionObject< DataObjectOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20globalsettingstation_20_3e_537',['SingletonFunctionObject< GlobalSettingStation >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgadvancedoperator_20_3e_538',['SingletonFunctionObject< GpgAdvancedOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgbasicoperator_20_3e_539',['SingletonFunctionObject< GpgBasicOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgcommandexecutor_20_3e_540',['SingletonFunctionObject< GpgCommandExecutor >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgcontext_20_3e_541',['SingletonFunctionObject< GpgContext >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgfileopera_20_3e_542',['SingletonFunctionObject< GpgFileOpera >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgkeygetter_20_3e_543',['SingletonFunctionObject< GpgKeyGetter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgkeyimportexporter_20_3e_544',['SingletonFunctionObject< GpgKeyImportExporter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgkeymanager_20_3e_545',['SingletonFunctionObject< GpgKeyManager >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgkeyopera_20_3e_546',['SingletonFunctionObject< GpgKeyOpera >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpguidoperator_20_3e_547',['SingletonFunctionObject< GpgUIDOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20passphrasegenerator_20_3e_548',['SingletonFunctionObject< PassphraseGenerator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20taskrunnergetter_20_3e_549',['SingletonFunctionObject< TaskRunnerGetter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonstorage_550',['SingletonStorage',['../classGpgFrontend_1_1SingletonStorage.html',1,'GpgFrontend']]], - ['singletonstoragecollection_551',['SingletonStorageCollection',['../classGpgFrontend_1_1SingletonStorageCollection.html',1,'GpgFrontend']]], - ['slot_5factivated_5fkey_5ftype_552',['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_553',['slot_add_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a821247d738457c4ee046162aad6728f9',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fadd_5fuid_5fresult_554',['slot_add_uid_result',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a16f1ae88d6a417b614cfc6ae1852187c',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['slot_5fappend_5fselected_5fkeys_555',['slot_append_selected_keys',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a76bf3784d751db78ed13bd9962e14472',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fauthentication_5fbox_5fchanged_556',['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_557',['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_558',['slot_clean_double_line_breaks',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aea9274389c3b049793fe5aa5a6adf63c',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fcompress_5ffiles_559',['slot_compress_files',['../classGpgFrontend_1_1UI_1_1FilePage.html#a250b1950f874c1d11549cd5c0ea9693f',1,'GpgFrontend::UI::FilePage']]], - ['slot_5fcopy_5ffingerprint_560',['slot_copy_fingerprint',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#af8b600fbd7cd0fbb5b6183403bf870b2',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['slot_5fcopy_5fmail_5faddress_5fto_5fclipboard_561',['slot_copy_mail_address_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af93d72eaf58326f1f9e926752c6b1fc6',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fcreate_5fnew_5fuid_562',['slot_create_new_uid',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a4e115ce46a85c2f9e4e0e2427839fc7c',1,'GpgFrontend::UI::KeyNewUIDDialog']]], - ['slot_5fcut_5fpgp_5fheader_563',['slot_cut_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7f5a88922d06bee977335fb4b5f1d86d',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fdecrypt_564',['slot_decrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae2d89e2cc6c99ff0e16b396d2381f904',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fdecrypt_5fverify_565',['slot_decrypt_verify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1d61ea803e6c825bd54f42ba9ae85919',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fdisable_5ftab_5factions_566',['slot_disable_tab_actions',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a24a0b0d974fc5f8fdda60c128a82d957',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fdouble_5fclicked_567',['slot_double_clicked',['../classGpgFrontend_1_1UI_1_1KeyList.html#a69e54f06d546d516a0dcdf1055b8028e',1,'GpgFrontend::UI::KeyList']]], - ['slot_5fencrypt_568',['slot_encrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae11d01211c2914ecc148e13dd7de506e',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fencrypt_5fsign_569',['slot_encrypt_sign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a304efe91afa31b32725caa00c27475a4',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fencryption_5fbox_5fchanged_570',['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_571',['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_572',['slot_export_private_key',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a384f4250e58110da58c0e6996b42a8ab',1,'GpgFrontend::UI::KeyPairOperaTab']]], - ['slot_5ffile_5ftree_5fview_5fitem_5fclicked_573',['slot_file_tree_view_item_clicked',['../classGpgFrontend_1_1UI_1_1FilePage.html#a676917817d6f519e043742d1d87f97f1',1,'GpgFrontend::UI::FilePage']]], - ['slot_5ffile_5ftree_5fview_5fitem_5fdouble_5fclicked_574',['slot_file_tree_view_item_double_clicked',['../classGpgFrontend_1_1UI_1_1FilePage.html#ad3c54320bdafbbb2c06a20d6c7dea9d6',1,'GpgFrontend::UI::FilePage']]], - ['slot_5ffind_575',['slot_find',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae28089efbd236708601470f30f26faaa',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fformat_5fgpg_5fheader_576',['slot_format_gpg_header',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a45267bcfc8fc83851894061c0fe2a9c2',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['slot_5fimport_577',['slot_import',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ac9c14bbc97945c94fd02c8e067ccab06',1,'GpgFrontend::UI::KeyServerImportDialog']]], - ['slot_5fimport_5ffinished_578',['slot_import_finished',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a6f1c5238da7cd6f117bed8018469b37a',1,'GpgFrontend::UI::KeyServerImportDialog']]], - ['slot_5fimport_5fkey_5ffrom_5fedit_579',['slot_import_key_from_edit',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a55926649e28a96318b89afba01b966bf',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5finsert_5ftext_580',['slot_insert_text',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a184985104f23da8fdf2b9aaf7b27405b',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['slot_5fjump_5fpage_581',['slot_jump_page',['../classGpgFrontend_1_1UI_1_1ChoosePage.html#af0d7890fe65385b7785719b9cff0718b',1,'GpgFrontend::UI::ChoosePage']]], - ['slot_5fkey_5fgen_5faccept_582',['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_583',['slot_non_expired_checked',['../classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#adde2b33bd17f521f0630702987b1d274',1,'GpgFrontend::UI::KeySetExpireDateDialog']]], - ['slot_5fopen_5ffile_5ftab_584',['slot_open_file_tab',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a29a811d4d440c79c1bd2cc2bb40cdf7e',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fopen_5fkey_5fmanagement_585',['slot_open_key_management',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a16ddebec90a4bd0d13baa9d972c3445f',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fopen_5fsettings_5fdialog_586',['slot_open_settings_dialog',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a874b505fbc1046f579a736683f5a7f65',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fopen_5furl_587',['slot_open_url',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a51ff99077a75507365307f5dd783df99',1,'GpgFrontend::UI::HelpPage']]], - ['slot_5fprocess_5fnetwork_5freply_588',['slot_process_network_reply',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#af9350e0a8d5993e5be0a5478fcb161be',1,'GpgFrontend::UI::ListedKeyServerTestTask']]], - ['slot_5fremove_5ftab_589',['slot_remove_tab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a12f65fbc4984c266a5df4505ecde7c42',1,'GpgFrontend::UI::TextEdit']]], - ['slot_5fset_5frestart_5fneeded_590',['slot_set_restart_needed',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#acc6b4386de554fce6fbb60ac6d201952',1,'GpgFrontend::UI::SettingsDialog']]], - ['slot_5fshow_5fkey_5fdetails_591',['slot_show_key_details',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a033d448541b44fa48b76dec828a4eb0e',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fshow_5fversion_5fstatus_592',['slot_show_version_status',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a1003bd969ecbc5deba940e39436968f4',1,'GpgFrontend::UI::UpdateTab']]], - ['slot_5fsign_593',['slot_sign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3f3d03b0ec22385bee559fbd2aeb881b',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fsign_5fkey_594',['slot_sign_key',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#a82f6bf641ff3b64341a0bdcf76571c43',1,'GpgFrontend::UI::KeyUIDSignDialog']]], - ['slot_5fsigning_5fbox_5fchanged_595',['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_596',['slot_start_wizard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aabf3ddf6b624790369f164b4889c95be',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fupdate_5fkey_5fstatus_597',['slot_update_key_status',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#ab4ac26378d6a07757720163eb4b1cb0e',1,'GpgFrontend::UI::CommonUtils']]], - ['slot_5fupload_5fkey_5fto_5fserver_598',['slot_upload_key_to_server',['../classGpgFrontend_1_1UI_1_1KeyUploadDialog.html#a0f724649ca953b888f07d69c97fe45b6',1,'GpgFrontend::UI::KeyUploadDialog']]], - ['slot_5fverify_599',['slot_verify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa9c986dd95984811479ea93230c74b5d',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fversion_5fupgrade_600',['slot_version_upgrade',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a48368c77af7b1f4cb632870b8d914a28',1,'GpgFrontend::UI::MainWindow']]], - ['slotclosetab_601',['SlotCloseTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa21659aa7acba98dfd6286d69e00ab9b',1,'GpgFrontend::UI::TextEdit']]], - ['slotcopy_602',['SlotCopy',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3599bd01636a873cf3437ab6b9d38780',1,'GpgFrontend::UI::TextEdit']]], - ['slotcurpagefiletreeview_603',['SlotCurPageFileTreeView',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a72014409d407c161b048e07c061b4cf9',1,'GpgFrontend::UI::TextEdit']]], - ['slotcurpagetextedit_604',['SlotCurPageTextEdit',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a48351dc1529da3b8da311f65b735b5f1',1,'GpgFrontend::UI::TextEdit']]], - ['slotcut_605',['SlotCut',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae1e710c6722910b8d35df97aaabb3162',1,'GpgFrontend::UI::TextEdit']]], - ['slotexecutecommand_606',['SlotExecuteCommand',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a95cd625a2e0e74ee4d564843c6d16791',1,'GpgFrontend::UI::CommonUtils']]], - ['slotexecutegpgcommand_607',['SlotExecuteGpgCommand',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#afc845c1c37487c99f78d8e66f6874f6d',1,'GpgFrontend::UI::CommonUtils']]], - ['slotfiledecrypt_608',['SlotFileDecrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0a6d0618f2835a6dcae707a4ca770a48',1,'GpgFrontend::UI::MainWindow']]], - ['slotfiledecryptverify_609',['SlotFileDecryptVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab23c7e67dd1f5295b3c49ad79dfd5919',1,'GpgFrontend::UI::MainWindow']]], - ['slotfileencrypt_610',['SlotFileEncrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9ec699536a35a37961a8c6da1e231ae3',1,'GpgFrontend::UI::MainWindow']]], - ['slotfileencryptsign_611',['SlotFileEncryptSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a25a2e4017d77cffc8362bde9606fad30',1,'GpgFrontend::UI::MainWindow']]], - ['slotfilesign_612',['SlotFileSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8bcdcbe678b8dc0837fffda2ebfe79bf',1,'GpgFrontend::UI::MainWindow']]], - ['slotfileverify_613',['SlotFileVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9879061cfd321c6757c77f75d46dc7d8',1,'GpgFrontend::UI::MainWindow']]], - ['slotfilltexteditwithtext_614',['SlotFillTextEditWithText',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af466ec2b8ab3f695d206efc0574bbe20',1,'GpgFrontend::UI::TextEdit']]], - ['slotimport_615',['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_616',['SlotImportKeyFromClipboard',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a0c8bf56fc5371cd2c5e9d2a0f67bf72a',1,'GpgFrontend::UI::CommonUtils']]], - ['slotimportkeyfromfile_617',['SlotImportKeyFromFile',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a057526790f6b2f6288c3a35322c34d8d',1,'GpgFrontend::UI::CommonUtils']]], - ['slotimportkeyfromkeyserver_618',['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_619',['SlotImportKeys',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a3bc26cc1e0f00f0ce2f95c0b6c8778d8',1,'GpgFrontend::UI::CommonUtils']]], - ['slotnewfiletab_620',['SlotNewFileTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae22ecadf31648f424eb8ab86bd28ef39',1,'GpgFrontend::UI::TextEdit']]], - ['slotnewhelptab_621',['slotNewHelpTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3c17fdf3abf9c4fb6ce35cfb8f0f8fc4',1,'GpgFrontend::UI::TextEdit']]], - ['slotnewtab_622',['SlotNewTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a57a46ab5595622ae0b7bceef7d56bd7c',1,'GpgFrontend::UI::TextEdit']]], - ['slotopen_623',['SlotOpen',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a15335d38187ddf580b7200d856768cfb',1,'GpgFrontend::UI::TextEdit']]], - ['slotopenfile_624',['SlotOpenFile',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a05b838ad518857fed24864ecce40c203',1,'GpgFrontend::UI::MainWindow::SlotOpenFile()'],['../classGpgFrontend_1_1UI_1_1TextEdit.html#a72006c9f8f45ac4d154c67f62a29446d',1,'GpgFrontend::UI::TextEdit::SlotOpenFile(QString &path)']]], - ['slotpaste_625',['SlotPaste',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa2230418dc8f72c400f5a90082a983c9',1,'GpgFrontend::UI::TextEdit']]], - ['slotprint_626',['SlotPrint',['../classGpgFrontend_1_1UI_1_1TextEdit.html#adca2bbfa746b5598f2a4f74026b84224',1,'GpgFrontend::UI::TextEdit']]], - ['slotquote_627',['SlotQuote',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6a02fce9dc4039c982d6dd19231517ee',1,'GpgFrontend::UI::TextEdit']]], - ['slotredo_628',['SlotRedo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae2b3bf422789d56087face98b6a9e929',1,'GpgFrontend::UI::TextEdit']]], - ['slotrefresh_629',['SlotRefresh',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a68f984815100f4ce281b9794f193e516',1,'GpgFrontend::UI::InfoBoardWidget']]], - ['slotsave_630',['SlotSave',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ace0b8f4c161db9f4f5db5ecbfd7a91c0',1,'GpgFrontend::UI::TextEdit']]], - ['slotsaveas_631',['SlotSaveAs',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a02fa44ba0c56f3f6ae125f8490faf254',1,'GpgFrontend::UI::TextEdit']]], - ['slotselectall_632',['SlotSelectAll',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6c814253dfc061bfdae0fa71c6196c55',1,'GpgFrontend::UI::TextEdit']]], - ['slotsetrestartneeded_633',['SlotSetRestartNeeded',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a276e843e2f5eda8934fb350fb6f89327',1,'GpgFrontend::UI::MainWindow']]], - ['slotshowmodified_634',['SlotShowModified',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a7544182198b729373843635bbfea082a',1,'GpgFrontend::UI::TextEdit']]], - ['slotswitchtabdown_635',['SlotSwitchTabDown',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a576e06390e65576465297d2ab8d7d474',1,'GpgFrontend::UI::TextEdit']]], - ['slotswitchtabup_636',['SlotSwitchTabUp',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af1e364b513f566c743a5d36c19098762',1,'GpgFrontend::UI::TextEdit']]], - ['slotundo_637',['SlotUndo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a4a81e69f6dc74ea649ca9a2358342fd5',1,'GpgFrontend::UI::TextEdit']]], - ['softwareversion_638',['SoftwareVersion',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html',1,'GpgFrontend::UI']]], - ['special_5fedit_5ftool_5fbar_5f_639',['special_edit_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af2b3e3a0e9894633e1839df289f5ffe0',1,'GpgFrontend::UI::MainWindow']]], - ['start_5fwizard_5fact_5f_640',['start_wizard_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab0019ca316b971c594c2f20f418256a6',1,'GpgFrontend::UI::MainWindow']]], - ['steganography_5fmenu_5f_641',['steganography_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af763a506aed7d0fb2125d1859583b853',1,'GpgFrontend::UI::MainWindow']]], - ['storages_5fmutex_5f_642',['storages_mutex_',['../classGpgFrontend_1_1SingletonStorageCollection.html#ab648cb257beb2475eb5fca6453c331f9',1,'GpgFrontend::SingletonStorageCollection']]], - ['stripped_5fname_643',['stripped_name',['../classGpgFrontend_1_1UI_1_1TextEdit.html#afb9b7a7d88154d774b3d727d8e640cbb',1,'GpgFrontend::UI::TextEdit']]], - ['subkeygeneratedialog_644',['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_645',['switch_tab_down_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a88af746cd550792ab6095d2ebbd29b41',1,'GpgFrontend::UI::MainWindow']]], - ['switch_5ftab_5fup_5fact_5f_646',['switch_tab_up_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8d5ce6514ef3fa8ac3223176f5fa2701',1,'GpgFrontend::UI::MainWindow']]], - ['switch_5fui_5fenabled_647',['switch_ui_enabled',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#ae3d97948f205e84f0604d4da634a4513',1,'GpgFrontend::UI::NetworkTab']]], - ['switch_5fui_5fproxy_5ftype_648',['switch_ui_proxy_type',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#a1b0297158f13daec77645c88e5a8adcd',1,'GpgFrontend::UI::NetworkTab']]], - ['syncsettings_649',['SyncSettings',['../classGpgFrontend_1_1GlobalSettingStation.html#ac061ac8e5308f67ea52b98888bbb2e8d',1,'GpgFrontend::GlobalSettingStation']]] + ['save_5fact_5f_482',['save_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab0f148559d830fcf10b5a1937b0a47dc',1,'GpgFrontend::UI::MainWindow']]], + ['save_5fas_5fact_5f_483',['save_as_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a22256763ef83ed35a81e446b553d8112',1,'GpgFrontend::UI::MainWindow']]], + ['save_5ffile_484',['save_file',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a66b6f6633e7ac71e5fe8b7814a81cadf',1,'GpgFrontend::UI::TextEdit']]], + ['save_5fsettings_485',['save_settings',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7a4b6490038470a8849231e48282da98',1,'GpgFrontend::UI::MainWindow']]], + ['savecache_486',['SaveCache',['../classGpgFrontend_1_1CacheManager.html#a3cbc3238638dcd8b4722bfdf560c73fe',1,'GpgFrontend::CacheManager']]], + ['select_5fall_5fact_5f_487',['select_all_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ac6a42e6e3af7e76f0bd2ecc62c9520cc',1,'GpgFrontend::UI::MainWindow']]], + ['set_5fbackground_488',['set_background',['../classGpgFrontend_1_1UI_1_1FindWidget.html#a0c531f2c673caed29225a323e750205f',1,'GpgFrontend::UI::FindWidget']]], + ['set_5floading_489',['set_loading',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ad4a75da57fa18bfcfaeb7fc601f1c8f6',1,'GpgFrontend::UI::KeyServerImportDialog']]], + ['set_5fmessage_490',['set_message',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ab93fbf5e0626bffe398f5baa2bc00b1a',1,'GpgFrontend::UI::KeyServerImportDialog']]], + ['set_5fsignal_5fslot_491',['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_492',['set_status',['../classGpgFrontend_1_1GpgResultAnalyse.html#a7f13592b421c7b0d3853f15cece8d195',1,'GpgFrontend::GpgResultAnalyse']]], + ['setalgo_493',['SetAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#adcd9c4f3e75f989810988e0bc81d401f',1,'GpgFrontend::GenKeyInfo']]], + ['setallowauthentication_494',['SetAllowAuthentication',['../classGpgFrontend_1_1GenKeyInfo.html#aac51d251682ed1bc1090416ebfeba4de',1,'GpgFrontend::GenKeyInfo']]], + ['setallowcertification_495',['SetAllowCertification',['../classGpgFrontend_1_1GenKeyInfo.html#ac5f52f74566618c71a29bdc5e70fce2e',1,'GpgFrontend::GenKeyInfo']]], + ['setallowencryption_496',['SetAllowEncryption',['../classGpgFrontend_1_1GenKeyInfo.html#a965014232f6de22c6d33320231ca4454',1,'GpgFrontend::GenKeyInfo']]], + ['setallowsigning_497',['SetAllowSigning',['../classGpgFrontend_1_1GenKeyInfo.html#a1a01518b24d40d95e187ef73f4dcd52a',1,'GpgFrontend::GenKeyInfo']]], + ['setchannel_498',['SetChannel',['../classGpgFrontend_1_1ChannelObject.html#aa3b19cad6d873b314bba32a3dae85f09',1,'GpgFrontend::ChannelObject']]], + ['setchecked_499',['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_500',['SetColumnWidth',['../classGpgFrontend_1_1UI_1_1KeyList.html#aab3f4facfc850e7eeb917571ca89f4a5',1,'GpgFrontend::UI::KeyList']]], + ['setcomment_501',['SetComment',['../classGpgFrontend_1_1GenKeyInfo.html#a947886456f5699241b1c1b9332e4b29e',1,'GpgFrontend::GenKeyInfo']]], + ['setcryptomenustatus_502',['SetCryptoMenuStatus',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a85a98a1ec5418c110201980fa013d1fd',1,'GpgFrontend::UI::MainWindow']]], + ['setdoubleclickedaction_503',['SetDoubleClickedAction',['../classGpgFrontend_1_1UI_1_1KeyList.html#a7d75246eee6368be295c9ab5fe5ef291',1,'GpgFrontend::UI::KeyList']]], + ['setemail_504',['SetEmail',['../classGpgFrontend_1_1GenKeyInfo.html#a656c81d56f77350184f9a94db1a3ce05',1,'GpgFrontend::GenKeyInfo']]], + ['setexpire_505',['SetExpire',['../classGpgFrontend_1_1GpgKeyManager.html#a1625abfbff168c476e76fa9425a6c37d',1,'GpgFrontend::GpgKeyManager::SetExpire()'],['../classGpgFrontend_1_1GpgKeyOpera.html#a12e6b05b23781861065d7e3243c9349e',1,'GpgFrontend::GpgKeyOpera::SetExpire()']]], + ['setexpiretime_506',['SetExpireTime',['../classGpgFrontend_1_1GenKeyInfo.html#aa3bfeda7fc7c83dc8d48ee2b80780c3a',1,'GpgFrontend::GenKeyInfo']]], + ['setfilepath_507',['SetFilePath',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aa9e82690824c82e7628ba4ace9d6e2fe',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['setfinishafterrun_508',['SetFinishAfterRun',['../classGpgFrontend_1_1Thread_1_1Task.html#a689969e7d88ba7ad73a693a1b38aedd7',1,'GpgFrontend::Thread::Task']]], + ['setinfoboard_509',['SetInfoBoard',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#ac936cfc8e1b3af65d0d71b74fb3f0b02',1,'GpgFrontend::UI::InfoBoardWidget']]], + ['setissubkey_510',['SetIsSubKey',['../classGpgFrontend_1_1GenKeyInfo.html#acd9f7742b739e1db60bd50489690dec1',1,'GpgFrontend::GenKeyInfo']]], + ['setkeylength_511',['SetKeyLength',['../classGpgFrontend_1_1GenKeyInfo.html#ae744395012e4dcb9734ad5a30aa8ed75',1,'GpgFrontend::GenKeyInfo']]], + ['setname_512',['SetName',['../classGpgFrontend_1_1GenKeyInfo.html#a65ebc487e0e64c325f65474c812615f7',1,'GpgFrontend::GenKeyInfo']]], + ['setnonexpired_513',['SetNonExpired',['../classGpgFrontend_1_1GenKeyInfo.html#aea247381c21896f5371bb813ca665329',1,'GpgFrontend::GenKeyInfo']]], + ['setnonpassphrase_514',['SetNonPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#a864407216cbdbef9e7b35e6be694d3ef',1,'GpgFrontend::GenKeyInfo']]], + ['setobjectinchannel_515',['SetObjectInChannel',['../classGpgFrontend_1_1SingletonStorage.html#ab0097bb648b2303d68a975c7cbea5a52',1,'GpgFrontend::SingletonStorage']]], + ['setpassphrase_516',['SetPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#afe1760d4ead397f6096925290a38e1a4',1,'GpgFrontend::GenKeyInfo']]], + ['setpassphrasecb_517',['SetPassphraseCb',['../classGpgFrontend_1_1GpgContext.html#a3399fc60086ff5010a089bff48bbc63c',1,'GpgFrontend::GpgContext']]], + ['setprimaryuid_518',['SetPrimaryUID',['../classGpgFrontend_1_1GpgUIDOperator.html#acbdabec97df508382b0c9b1fffbf1dd5',1,'GpgFrontend::GpgUIDOperator']]], + ['setrtn_519',['SetRTN',['../classGpgFrontend_1_1Thread_1_1Task.html#aa6d702417bdd6a88c447ed6a457fa098',1,'GpgFrontend::Thread::Task']]], + ['setsettings_520',['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_521',['SetSigners',['../classGpgFrontend_1_1GpgBasicOperator.html#ad6ea3596ba7d7543fb1b8233d09996df',1,'GpgFrontend::GpgBasicOperator']]], + ['settempcachevalue_522',['SetTempCacheValue',['../classGpgFrontend_1_1CoreCommonUtil.html#a62bb080c6c04970fd2e02a460ea91d2a',1,'GpgFrontend::CoreCommonUtil']]], + ['settingsdialog_523',['SettingsDialog',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html',1,'GpgFrontend::UI::SettingsDialog'],['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#a1b7ddc7861d1b4b9dc3810ed98023ffc',1,'GpgFrontend::UI::SettingsDialog::SettingsDialog()']]], + ['settingsobject_524',['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_525',['show_key_details_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#acd41722ceedd20973b7d83852fab407b',1,'GpgFrontend::UI::MainWindow']]], + ['show_5fverify_5fdetails_526',['show_verify_details',['../namespaceGpgFrontend_1_1UI.html#a590a26051105940a6d6e0743b147e281',1,'GpgFrontend::UI']]], + ['showevent_527',['showEvent',['../classGpgFrontend_1_1UI_1_1AboutDialog.html#ab799cd5e07b06a8e953d72105c0a1083',1,'GpgFrontend::UI::AboutDialog']]], + ['shownotificationwidget_528',['ShowNotificationWidget',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#af5dfdfd48ef64cc46e524ec70a22fe3a',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['sign_529',['Sign',['../classGpgFrontend_1_1GpgBasicOperator.html#a988d7e65e85fc7a578f26300332a65d3',1,'GpgFrontend::GpgBasicOperator']]], + ['sign_5fact_5f_530',['sign_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0cded37ef6e07856bbe439b0e90db839',1,'GpgFrontend::UI::MainWindow']]], + ['sign_5fmarked_5f_531',['sign_marked_',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a4f94e9ef7889a169bda5a47b7f657358',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['signaldeeprestartneeded_532',['SignalDeepRestartNeeded',['../classGpgFrontend_1_1UI_1_1GeneralTab.html#afc107d56f13000aa28436a5e26a0876b',1,'GpgFrontend::UI::GeneralTab']]], + ['signalkeydatabaserefreshdone_533',['SignalKeyDatabaseRefreshDone',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a1abc83bba95579aa94d0870181991a28',1,'GpgFrontend::UI::CommonUtils']]], + ['signalkeyserverimportresult_534',['SignalKeyServerImportResult',['../classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a6b2c07d193fb28a57b1738fa493b2b3f',1,'GpgFrontend::UI::KeyServerImportTask']]], + ['signalkeyserverlisttestresult_535',['SignalKeyServerListTestResult',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a20f0147d670be7ab5c9d3051a900f508',1,'GpgFrontend::UI::ListedKeyServerTestTask']]], + ['signalkeyserversearchresult_536',['SignalKeyServerSearchResult',['../classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#ae478130476c95a8b220c3b0e6a7b88b4',1,'GpgFrontend::UI::KeyServerSearchTask']]], + ['signalopenhelp_537',['SignalOpenHelp',['../classGpgFrontend_1_1UI_1_1Wizard.html#a8b5f5ddb1e6470cbf6c87cc6400031fb',1,'GpgFrontend::UI::Wizard']]], + ['signalpathchanged_538',['SignalPathChanged',['../classGpgFrontend_1_1UI_1_1FilePage.html#aec462d16a2097024a4ced24012b905a7',1,'GpgFrontend::UI::FilePage']]], + ['signalproxyconnectiontestresult_539',['SignalProxyConnectionTestResult',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.html#aedafa7b22e024be537658fd8096e5f6f',1,'GpgFrontend::UI::ProxyConnectionTestThread']]], + ['signalrefreshinfoboard_540',['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_541',['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_542',['SignalReplyFromUpdateServer',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a5e752e01539ccfdc6bbe41a404ddaa95',1,'GpgFrontend::UI::UpdateTab']]], + ['signalrestartneeded_543',['SignalRestartNeeded',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#af5ba6646af45d0d1d794bc52ee54b1b9',1,'GpgFrontend::UI::SettingsDialog::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1GeneralTab.html#aa88ccbda61728be6de0aa2d9b92e0b69',1,'GpgFrontend::UI::GeneralTab::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#a26449a77844d9db69a543ff88f10e347',1,'GpgFrontend::UI::KeyserverTab::SignalRestartNeeded()']]], + ['signalrestartneeded_544',['signalRestartNeeded',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html#abff49b636449815a9ebff52f5c067712',1,'GpgFrontend::UI::AppearanceTab']]], + ['signalstation_545',['SignalStation',['../classGpgFrontend_1_1UI_1_1SignalStation.html',1,'GpgFrontend::UI']]], + ['signaluibytesdisplayed_546',['SignalUIBytesDisplayed',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#afd3749488fdd3d1c53446fb8c833f3f4',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['signalupgradeversion_547',['SignalUpgradeVersion',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a36c5597674253348477d78ad6af380ab',1,'GpgFrontend::UI::VersionCheckTask']]], + ['signaturedetailsdialog_548',['SignatureDetailsDialog',['../classSignatureDetailsDialog.html',1,'']]], + ['signerspicker_549',['SignersPicker',['../classGpgFrontend_1_1UI_1_1SignersPicker.html',1,'GpgFrontend::UI::SignersPicker'],['../classGpgFrontend_1_1UI_1_1SignersPicker.html#a02c3ba737702894fc6d4ac1a1c543ccb',1,'GpgFrontend::UI::SignersPicker::SignersPicker()']]], + ['signfile_550',['SignFile',['../classGpgFrontend_1_1GpgFileOpera.html#a350df1c07c054625c4755a78e6ca5ca8',1,'GpgFrontend::GpgFileOpera']]], + ['signkey_551',['SignKey',['../classGpgFrontend_1_1GpgKeyManager.html#a12138780c53add7589f78f056019e5e0',1,'GpgFrontend::GpgKeyManager']]], + ['singletonfunctionobject_552',['SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend::SingletonFunctionObject< T >'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a4aa7f1eb1d3281bb1fccfcbb1b416251',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(int channel)'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a02e76b42ab51d77588b01c7508bed258',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject()=default'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a7090636bed6f4bad5b99f28f6872c645',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(const T &)=delete'],['../classGpgFrontend_1_1SingletonFunctionObject.html#aabc5fe8e5a372ac276a265286457cb9a',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(T &&)=delete'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a194e49b07d46345bdad386505d743a61',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(const SingletonFunctionObject< T > &)=delete']]], + ['singletonfunctionobject_3c_20dataobjectoperator_20_3e_553',['SingletonFunctionObject< DataObjectOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20globalsettingstation_20_3e_554',['SingletonFunctionObject< GlobalSettingStation >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgadvancedoperator_20_3e_555',['SingletonFunctionObject< GpgAdvancedOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgbasicoperator_20_3e_556',['SingletonFunctionObject< GpgBasicOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgcommandexecutor_20_3e_557',['SingletonFunctionObject< GpgCommandExecutor >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgcontext_20_3e_558',['SingletonFunctionObject< GpgContext >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgfileopera_20_3e_559',['SingletonFunctionObject< GpgFileOpera >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgkeygetter_20_3e_560',['SingletonFunctionObject< GpgKeyGetter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgkeyimportexporter_20_3e_561',['SingletonFunctionObject< GpgKeyImportExporter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgkeymanager_20_3e_562',['SingletonFunctionObject< GpgKeyManager >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgkeyopera_20_3e_563',['SingletonFunctionObject< GpgKeyOpera >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpguidoperator_20_3e_564',['SingletonFunctionObject< GpgUIDOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20passphrasegenerator_20_3e_565',['SingletonFunctionObject< PassphraseGenerator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20taskrunnergetter_20_3e_566',['SingletonFunctionObject< TaskRunnerGetter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonstorage_567',['SingletonStorage',['../classGpgFrontend_1_1SingletonStorage.html',1,'GpgFrontend']]], + ['singletonstoragecollection_568',['SingletonStorageCollection',['../classGpgFrontend_1_1SingletonStorageCollection.html',1,'GpgFrontend']]], + ['slot_5factivated_5fkey_5ftype_569',['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_570',['slot_add_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a821247d738457c4ee046162aad6728f9',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fadd_5fuid_5fresult_571',['slot_add_uid_result',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a16f1ae88d6a417b614cfc6ae1852187c',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['slot_5fappend_5fselected_5fkeys_572',['slot_append_selected_keys',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a76bf3784d751db78ed13bd9962e14472',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fauthentication_5fbox_5fchanged_573',['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_574',['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_575',['slot_clean_double_line_breaks',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aea9274389c3b049793fe5aa5a6adf63c',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fcompress_5ffiles_576',['slot_compress_files',['../classGpgFrontend_1_1UI_1_1FilePage.html#a250b1950f874c1d11549cd5c0ea9693f',1,'GpgFrontend::UI::FilePage']]], + ['slot_5fcopy_5ffingerprint_577',['slot_copy_fingerprint',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#af8b600fbd7cd0fbb5b6183403bf870b2',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['slot_5fcopy_5fmail_5faddress_5fto_5fclipboard_578',['slot_copy_mail_address_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af93d72eaf58326f1f9e926752c6b1fc6',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fcreate_5fnew_5fuid_579',['slot_create_new_uid',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a4e115ce46a85c2f9e4e0e2427839fc7c',1,'GpgFrontend::UI::KeyNewUIDDialog']]], + ['slot_5fcut_5fpgp_5fheader_580',['slot_cut_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7f5a88922d06bee977335fb4b5f1d86d',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fdecrypt_581',['slot_decrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae2d89e2cc6c99ff0e16b396d2381f904',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fdecrypt_5fverify_582',['slot_decrypt_verify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1d61ea803e6c825bd54f42ba9ae85919',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fdisable_5ftab_5factions_583',['slot_disable_tab_actions',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a24a0b0d974fc5f8fdda60c128a82d957',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fdouble_5fclicked_584',['slot_double_clicked',['../classGpgFrontend_1_1UI_1_1KeyList.html#a69e54f06d546d516a0dcdf1055b8028e',1,'GpgFrontend::UI::KeyList']]], + ['slot_5fencrypt_585',['slot_encrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae11d01211c2914ecc148e13dd7de506e',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fencrypt_5fsign_586',['slot_encrypt_sign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a304efe91afa31b32725caa00c27475a4',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fencryption_5fbox_5fchanged_587',['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_588',['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_589',['slot_export_private_key',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a384f4250e58110da58c0e6996b42a8ab',1,'GpgFrontend::UI::KeyPairOperaTab']]], + ['slot_5ffile_5ftree_5fview_5fitem_5fclicked_590',['slot_file_tree_view_item_clicked',['../classGpgFrontend_1_1UI_1_1FilePage.html#a676917817d6f519e043742d1d87f97f1',1,'GpgFrontend::UI::FilePage']]], + ['slot_5ffile_5ftree_5fview_5fitem_5fdouble_5fclicked_591',['slot_file_tree_view_item_double_clicked',['../classGpgFrontend_1_1UI_1_1FilePage.html#ad3c54320bdafbbb2c06a20d6c7dea9d6',1,'GpgFrontend::UI::FilePage']]], + ['slot_5ffind_592',['slot_find',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae28089efbd236708601470f30f26faaa',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fformat_5fgpg_5fheader_593',['slot_format_gpg_header',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a45267bcfc8fc83851894061c0fe2a9c2',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['slot_5fimport_594',['slot_import',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ac9c14bbc97945c94fd02c8e067ccab06',1,'GpgFrontend::UI::KeyServerImportDialog']]], + ['slot_5fimport_5ffinished_595',['slot_import_finished',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a6f1c5238da7cd6f117bed8018469b37a',1,'GpgFrontend::UI::KeyServerImportDialog']]], + ['slot_5fimport_5fkey_5ffrom_5fedit_596',['slot_import_key_from_edit',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a55926649e28a96318b89afba01b966bf',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5finsert_5ftext_597',['slot_insert_text',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a184985104f23da8fdf2b9aaf7b27405b',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['slot_5fjump_5fpage_598',['slot_jump_page',['../classGpgFrontend_1_1UI_1_1ChoosePage.html#af0d7890fe65385b7785719b9cff0718b',1,'GpgFrontend::UI::ChoosePage']]], + ['slot_5fkey_5fgen_5faccept_599',['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_600',['slot_non_expired_checked',['../classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#adde2b33bd17f521f0630702987b1d274',1,'GpgFrontend::UI::KeySetExpireDateDialog']]], + ['slot_5fopen_5ffile_5ftab_601',['slot_open_file_tab',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a29a811d4d440c79c1bd2cc2bb40cdf7e',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fopen_5fkey_5fmanagement_602',['slot_open_key_management',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a16ddebec90a4bd0d13baa9d972c3445f',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fopen_5fsettings_5fdialog_603',['slot_open_settings_dialog',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a874b505fbc1046f579a736683f5a7f65',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fopen_5furl_604',['slot_open_url',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a51ff99077a75507365307f5dd783df99',1,'GpgFrontend::UI::HelpPage']]], + ['slot_5fprocess_5fnetwork_5freply_605',['slot_process_network_reply',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#af9350e0a8d5993e5be0a5478fcb161be',1,'GpgFrontend::UI::ListedKeyServerTestTask']]], + ['slot_5fremove_5ftab_606',['slot_remove_tab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a12f65fbc4984c266a5df4505ecde7c42',1,'GpgFrontend::UI::TextEdit']]], + ['slot_5fsave_5fstatus_5fto_5fcache_5ffor_5frevovery_607',['slot_save_status_to_cache_for_revovery',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a1bf57ebe1e32b12c48bb633b7dd7a4f1',1,'GpgFrontend::UI::TextEdit']]], + ['slot_5fset_5frestart_5fneeded_608',['slot_set_restart_needed',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#acc6b4386de554fce6fbb60ac6d201952',1,'GpgFrontend::UI::SettingsDialog']]], + ['slot_5fshow_5fkey_5fdetails_609',['slot_show_key_details',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a033d448541b44fa48b76dec828a4eb0e',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fshow_5fversion_5fstatus_610',['slot_show_version_status',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a1003bd969ecbc5deba940e39436968f4',1,'GpgFrontend::UI::UpdateTab']]], + ['slot_5fsign_611',['slot_sign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3f3d03b0ec22385bee559fbd2aeb881b',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fsign_5fkey_612',['slot_sign_key',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#a82f6bf641ff3b64341a0bdcf76571c43',1,'GpgFrontend::UI::KeyUIDSignDialog']]], + ['slot_5fsigning_5fbox_5fchanged_613',['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_614',['slot_start_wizard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aabf3ddf6b624790369f164b4889c95be',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fupdate_5fkey_5fstatus_615',['slot_update_key_status',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#ab4ac26378d6a07757720163eb4b1cb0e',1,'GpgFrontend::UI::CommonUtils']]], + ['slot_5fupload_5fkey_5fto_5fserver_616',['slot_upload_key_to_server',['../classGpgFrontend_1_1UI_1_1KeyUploadDialog.html#a0f724649ca953b888f07d69c97fe45b6',1,'GpgFrontend::UI::KeyUploadDialog']]], + ['slot_5fverify_617',['slot_verify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa9c986dd95984811479ea93230c74b5d',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fversion_5fupgrade_618',['slot_version_upgrade',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a48368c77af7b1f4cb632870b8d914a28',1,'GpgFrontend::UI::MainWindow']]], + ['slotclosetab_619',['SlotCloseTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa21659aa7acba98dfd6286d69e00ab9b',1,'GpgFrontend::UI::TextEdit']]], + ['slotcopy_620',['SlotCopy',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3599bd01636a873cf3437ab6b9d38780',1,'GpgFrontend::UI::TextEdit']]], + ['slotcurpagefiletreeview_621',['SlotCurPageFileTreeView',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a72014409d407c161b048e07c061b4cf9',1,'GpgFrontend::UI::TextEdit']]], + ['slotcurpagetextedit_622',['SlotCurPageTextEdit',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a48351dc1529da3b8da311f65b735b5f1',1,'GpgFrontend::UI::TextEdit']]], + ['slotcut_623',['SlotCut',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae1e710c6722910b8d35df97aaabb3162',1,'GpgFrontend::UI::TextEdit']]], + ['slotexecutecommand_624',['SlotExecuteCommand',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a95cd625a2e0e74ee4d564843c6d16791',1,'GpgFrontend::UI::CommonUtils']]], + ['slotexecutegpgcommand_625',['SlotExecuteGpgCommand',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#afc845c1c37487c99f78d8e66f6874f6d',1,'GpgFrontend::UI::CommonUtils']]], + ['slotfiledecrypt_626',['SlotFileDecrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0a6d0618f2835a6dcae707a4ca770a48',1,'GpgFrontend::UI::MainWindow']]], + ['slotfiledecryptverify_627',['SlotFileDecryptVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab23c7e67dd1f5295b3c49ad79dfd5919',1,'GpgFrontend::UI::MainWindow']]], + ['slotfileencrypt_628',['SlotFileEncrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9ec699536a35a37961a8c6da1e231ae3',1,'GpgFrontend::UI::MainWindow']]], + ['slotfileencryptsign_629',['SlotFileEncryptSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a25a2e4017d77cffc8362bde9606fad30',1,'GpgFrontend::UI::MainWindow']]], + ['slotfilesign_630',['SlotFileSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8bcdcbe678b8dc0837fffda2ebfe79bf',1,'GpgFrontend::UI::MainWindow']]], + ['slotfileverify_631',['SlotFileVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9879061cfd321c6757c77f75d46dc7d8',1,'GpgFrontend::UI::MainWindow']]], + ['slotfilltexteditwithtext_632',['SlotFillTextEditWithText',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af466ec2b8ab3f695d206efc0574bbe20',1,'GpgFrontend::UI::TextEdit']]], + ['slotimport_633',['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_634',['SlotImportKeyFromClipboard',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a0c8bf56fc5371cd2c5e9d2a0f67bf72a',1,'GpgFrontend::UI::CommonUtils']]], + ['slotimportkeyfromfile_635',['SlotImportKeyFromFile',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a057526790f6b2f6288c3a35322c34d8d',1,'GpgFrontend::UI::CommonUtils']]], + ['slotimportkeyfromkeyserver_636',['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_637',['SlotImportKeys',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a3bc26cc1e0f00f0ce2f95c0b6c8778d8',1,'GpgFrontend::UI::CommonUtils']]], + ['slotnewfiletab_638',['SlotNewFileTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae22ecadf31648f424eb8ab86bd28ef39',1,'GpgFrontend::UI::TextEdit']]], + ['slotnewhelptab_639',['slotNewHelpTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3c17fdf3abf9c4fb6ce35cfb8f0f8fc4',1,'GpgFrontend::UI::TextEdit']]], + ['slotnewtab_640',['SlotNewTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a57a46ab5595622ae0b7bceef7d56bd7c',1,'GpgFrontend::UI::TextEdit']]], + ['slotopen_641',['SlotOpen',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a15335d38187ddf580b7200d856768cfb',1,'GpgFrontend::UI::TextEdit']]], + ['slotopenfile_642',['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_643',['SlotPaste',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa2230418dc8f72c400f5a90082a983c9',1,'GpgFrontend::UI::TextEdit']]], + ['slotprint_644',['SlotPrint',['../classGpgFrontend_1_1UI_1_1TextEdit.html#adca2bbfa746b5598f2a4f74026b84224',1,'GpgFrontend::UI::TextEdit']]], + ['slotquote_645',['SlotQuote',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6a02fce9dc4039c982d6dd19231517ee',1,'GpgFrontend::UI::TextEdit']]], + ['slotredo_646',['SlotRedo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae2b3bf422789d56087face98b6a9e929',1,'GpgFrontend::UI::TextEdit']]], + ['slotrefresh_647',['SlotRefresh',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a68f984815100f4ce281b9794f193e516',1,'GpgFrontend::UI::InfoBoardWidget']]], + ['slotsave_648',['SlotSave',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ace0b8f4c161db9f4f5db5ecbfd7a91c0',1,'GpgFrontend::UI::TextEdit']]], + ['slotsaveas_649',['SlotSaveAs',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a02fa44ba0c56f3f6ae125f8490faf254',1,'GpgFrontend::UI::TextEdit']]], + ['slotselectall_650',['SlotSelectAll',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6c814253dfc061bfdae0fa71c6196c55',1,'GpgFrontend::UI::TextEdit']]], + ['slotsetrestartneeded_651',['SlotSetRestartNeeded',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a276e843e2f5eda8934fb350fb6f89327',1,'GpgFrontend::UI::MainWindow']]], + ['slotshowmodified_652',['SlotShowModified',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ab24adc1adb3b9b29469992e4c444436e',1,'GpgFrontend::UI::TextEdit']]], + ['slotswitchtabdown_653',['SlotSwitchTabDown',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a576e06390e65576465297d2ab8d7d474',1,'GpgFrontend::UI::TextEdit']]], + ['slotswitchtabup_654',['SlotSwitchTabUp',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af1e364b513f566c743a5d36c19098762',1,'GpgFrontend::UI::TextEdit']]], + ['slotundo_655',['SlotUndo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a4a81e69f6dc74ea649ca9a2358342fd5',1,'GpgFrontend::UI::TextEdit']]], + ['softwareversion_656',['SoftwareVersion',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html',1,'GpgFrontend::UI']]], + ['special_5fedit_5ftool_5fbar_5f_657',['special_edit_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af2b3e3a0e9894633e1839df289f5ffe0',1,'GpgFrontend::UI::MainWindow']]], + ['start_5fwizard_5fact_5f_658',['start_wizard_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab0019ca316b971c594c2f20f418256a6',1,'GpgFrontend::UI::MainWindow']]], + ['startdirmngr_659',['StartDirmngr',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a46085a11235894deccd312fc259d5078',1,'GpgFrontend::GpgAdvancedOperator']]], + ['startgpgagent_660',['StartGpgAgent',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a07c32ba25cf6153fbc8ee585c4ba377c',1,'GpgFrontend::GpgAdvancedOperator']]], + ['startkeyboxd_661',['StartKeyBoxd',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a9313410359ed9cff9ee66fa9b4b095ee',1,'GpgFrontend::GpgAdvancedOperator']]], + ['steganography_5fmenu_5f_662',['steganography_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af763a506aed7d0fb2125d1859583b853',1,'GpgFrontend::UI::MainWindow']]], + ['storages_5fmutex_5f_663',['storages_mutex_',['../classGpgFrontend_1_1SingletonStorageCollection.html#ab648cb257beb2475eb5fca6453c331f9',1,'GpgFrontend::SingletonStorageCollection']]], + ['stripped_5fname_664',['stripped_name',['../classGpgFrontend_1_1UI_1_1TextEdit.html#afb9b7a7d88154d774b3d727d8e640cbb',1,'GpgFrontend::UI::TextEdit']]], + ['subkeygeneratedialog_665',['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_666',['switch_tab_down_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a88af746cd550792ab6095d2ebbd29b41',1,'GpgFrontend::UI::MainWindow']]], + ['switch_5ftab_5fup_5fact_5f_667',['switch_tab_up_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8d5ce6514ef3fa8ac3223176f5fa2701',1,'GpgFrontend::UI::MainWindow']]], + ['switch_5fui_5fenabled_668',['switch_ui_enabled',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#ae3d97948f205e84f0604d4da634a4513',1,'GpgFrontend::UI::NetworkTab']]], + ['switch_5fui_5fproxy_5ftype_669',['switch_ui_proxy_type',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#a1b0297158f13daec77645c88e5a8adcd',1,'GpgFrontend::UI::NetworkTab']]], + ['syncsettings_670',['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 89b6af3f..165c990d 100644 --- a/docs/html/search/all_13.js +++ b/docs/html/search/all_13.js @@ -1,18 +1,18 @@ var searchData= [ - ['tabcount_650',['TabCount',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a05c54658597b04c3976c72d3a5f9add9',1,'GpgFrontend::UI::TextEdit']]], - ['takechargeofresult_651',['TakeChargeOfResult',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#acdb7839a5158f078b38d60f0fefc5155',1,'GpgFrontend::GpgVerifyResultAnalyse']]], - ['task_652',['Task',['../classGpgFrontend_1_1Thread_1_1Task.html',1,'GpgFrontend::Thread::Task'],['../classGpgFrontend_1_1Thread_1_1Task.html#a8efa02bb81d79961d88198a057c9ac64',1,'GpgFrontend::Thread::Task::Task(TaskRunnable runnable, TaskCallback callback=[](int, const std::shared_ptr< DataObject > &) {}, DataObjectPtr data=nullptr)'],['../classGpgFrontend_1_1Thread_1_1Task.html#a35f3065116d2295bb2ddc9f41b1192bb',1,'GpgFrontend::Thread::Task::Task(TaskCallback callback, DataObjectPtr data_object=nullptr)'],['../classGpgFrontend_1_1Thread_1_1Task.html#a1ec53d301fc83e0da39e43055ded5d14',1,'GpgFrontend::Thread::Task::Task()']]], - ['taskrunner_653',['TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html',1,'GpgFrontend::Thread::TaskRunner'],['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#ad3c8612cbe60112f9b14e616fb0a4acf',1,'GpgFrontend::Thread::TaskRunner::TaskRunner()']]], - ['taskrunnergetter_654',['TaskRunnerGetter',['../classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html',1,'GpgFrontend::Thread::TaskRunnerGetter'],['../classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html#a80794d81179f66f4b4ed3122a64f27cf',1,'GpgFrontend::Thread::TaskRunnerGetter::TaskRunnerGetter()']]], - ['tasks_655',['tasks',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a774775e9a91d33072b27dcf78cead6e2',1,'GpgFrontend::Thread::TaskRunner']]], - ['tasks_5fmutex_5f_656',['tasks_mutex_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a5e72f1ce00d41c225a4304f1ed20b3f1',1,'GpgFrontend::Thread::TaskRunner']]], - ['test_5fpassphrase_5fcb_657',['test_passphrase_cb',['../classGpgFrontend_1_1GpgContext.html#acc4234054002065dfbc5d5261a4950d4',1,'GpgFrontend::GpgContext']]], - ['test_5fstatus_5fcb_658',['test_status_cb',['../classGpgFrontend_1_1GpgContext.html#a3844cd0966134939e5c4be9a725e5271',1,'GpgFrontend::GpgContext']]], - ['testlistedkeyserverthread_659',['TestListedKeyServerThread',['../classTestListedKeyServerThread.html',1,'']]], - ['text_5fis_5fsigned_660',['text_is_signed',['../namespaceGpgFrontend.html#a2a0394c8bdd277f5235f9875a1d69a99',1,'GpgFrontend']]], - ['textedit_661',['TextEdit',['../classGpgFrontend_1_1UI_1_1TextEdit.html',1,'GpgFrontend::UI']]], - ['tofuinfopage_662',['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_663',['translate_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adbac799672c43c90810366825d837e4e',1,'GpgFrontend::UI::MainWindow']]], - ['translatorstab_664',['TranslatorsTab',['../classGpgFrontend_1_1UI_1_1TranslatorsTab.html',1,'GpgFrontend::UI::TranslatorsTab'],['../classGpgFrontend_1_1UI_1_1TranslatorsTab.html#a89e5c7b9c17fb41b7c7bf461fb8ad99e',1,'GpgFrontend::UI::TranslatorsTab::TranslatorsTab()']]] + ['tabcount_671',['TabCount',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a05c54658597b04c3976c72d3a5f9add9',1,'GpgFrontend::UI::TextEdit']]], + ['takechargeofresult_672',['TakeChargeOfResult',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#acdb7839a5158f078b38d60f0fefc5155',1,'GpgFrontend::GpgVerifyResultAnalyse']]], + ['task_673',['Task',['../classGpgFrontend_1_1Thread_1_1Task.html',1,'GpgFrontend::Thread::Task'],['../classGpgFrontend_1_1Thread_1_1Task.html#a8efa02bb81d79961d88198a057c9ac64',1,'GpgFrontend::Thread::Task::Task(TaskRunnable runnable, TaskCallback callback=[](int, const std::shared_ptr< DataObject > &) {}, DataObjectPtr data=nullptr)'],['../classGpgFrontend_1_1Thread_1_1Task.html#a35f3065116d2295bb2ddc9f41b1192bb',1,'GpgFrontend::Thread::Task::Task(TaskCallback callback, DataObjectPtr data_object=nullptr)'],['../classGpgFrontend_1_1Thread_1_1Task.html#a1ec53d301fc83e0da39e43055ded5d14',1,'GpgFrontend::Thread::Task::Task()']]], + ['taskrunner_674',['TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html',1,'GpgFrontend::Thread::TaskRunner'],['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#ad3c8612cbe60112f9b14e616fb0a4acf',1,'GpgFrontend::Thread::TaskRunner::TaskRunner()']]], + ['taskrunnergetter_675',['TaskRunnerGetter',['../classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html',1,'GpgFrontend::Thread::TaskRunnerGetter'],['../classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html#a80794d81179f66f4b4ed3122a64f27cf',1,'GpgFrontend::Thread::TaskRunnerGetter::TaskRunnerGetter()']]], + ['tasks_676',['tasks',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a774775e9a91d33072b27dcf78cead6e2',1,'GpgFrontend::Thread::TaskRunner']]], + ['tasks_5fmutex_5f_677',['tasks_mutex_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a5e72f1ce00d41c225a4304f1ed20b3f1',1,'GpgFrontend::Thread::TaskRunner']]], + ['test_5fpassphrase_5fcb_678',['test_passphrase_cb',['../classGpgFrontend_1_1GpgContext.html#acc4234054002065dfbc5d5261a4950d4',1,'GpgFrontend::GpgContext']]], + ['test_5fstatus_5fcb_679',['test_status_cb',['../classGpgFrontend_1_1GpgContext.html#a3844cd0966134939e5c4be9a725e5271',1,'GpgFrontend::GpgContext']]], + ['testlistedkeyserverthread_680',['TestListedKeyServerThread',['../classTestListedKeyServerThread.html',1,'']]], + ['text_5fis_5fsigned_681',['text_is_signed',['../namespaceGpgFrontend.html#a2a0394c8bdd277f5235f9875a1d69a99',1,'GpgFrontend']]], + ['textedit_682',['TextEdit',['../classGpgFrontend_1_1UI_1_1TextEdit.html',1,'GpgFrontend::UI']]], + ['tofuinfopage_683',['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_684',['translate_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adbac799672c43c90810366825d837e4e',1,'GpgFrontend::UI::MainWindow']]], + ['translatorstab_685',['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 335f726e..9959c8c2 100644 --- a/docs/html/search/all_14.js +++ b/docs/html/search/all_14.js @@ -1,10 +1,10 @@ var searchData= [ - ['ui_5fcfg_5f_665',['ui_cfg_',['../classGpgFrontend_1_1GlobalSettingStation.html#a1818e08063d6a886975f77354fc5d85c',1,'GpgFrontend::GlobalSettingStation']]], - ['ui_5fconfig_5fdir_5fpath_5f_666',['ui_config_dir_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#ab618fef68cfd4ff6e42d4a4aa8ea94bb',1,'GpgFrontend::GlobalSettingStation']]], - ['ui_5fconfig_5fpath_5f_667',['ui_config_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#afa99ddc25c0d5fd59a4c5f0e61d13830',1,'GpgFrontend::GlobalSettingStation']]], - ['undo_5fact_5f_668',['undo_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa498dfecac36590e4b60d50824dff58c',1,'GpgFrontend::UI::MainWindow']]], - ['unsaveddocuments_669',['UnsavedDocuments',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a82fe98d45f54909ebea933b540367c39',1,'GpgFrontend::UI::TextEdit']]], - ['updatetab_670',['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_671',['upload_key_to_server',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad27dcf3f534f13d8df71df680c4d177c',1,'GpgFrontend::UI::MainWindow']]] + ['ui_5fcfg_5f_686',['ui_cfg_',['../classGpgFrontend_1_1GlobalSettingStation.html#a1818e08063d6a886975f77354fc5d85c',1,'GpgFrontend::GlobalSettingStation']]], + ['ui_5fconfig_5fdir_5fpath_5f_687',['ui_config_dir_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#ab618fef68cfd4ff6e42d4a4aa8ea94bb',1,'GpgFrontend::GlobalSettingStation']]], + ['ui_5fconfig_5fpath_5f_688',['ui_config_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#afa99ddc25c0d5fd59a4c5f0e61d13830',1,'GpgFrontend::GlobalSettingStation']]], + ['undo_5fact_5f_689',['undo_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa498dfecac36590e4b60d50824dff58c',1,'GpgFrontend::UI::MainWindow']]], + ['unsaveddocuments_690',['UnsavedDocuments',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a82fe98d45f54909ebea933b540367c39',1,'GpgFrontend::UI::TextEdit']]], + ['updatetab_691',['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_692',['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 cdb76e2b..75a13b9e 100644 --- a/docs/html/search/all_15.js +++ b/docs/html/search/all_15.js @@ -1,12 +1,12 @@ var searchData= [ - ['verify_672',['Verify',['../classGpgFrontend_1_1GpgBasicOperator.html#af0347cb28ff73b2250395ceaa9001509',1,'GpgFrontend::GpgBasicOperator']]], - ['verify_5fact_5f_673',['verify_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a14bb12fa25620e1a93bd23c9f7c84081',1,'GpgFrontend::UI::MainWindow']]], - ['verifydetailsdialog_674',['VerifyDetailsDialog',['../classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html',1,'GpgFrontend::UI::VerifyDetailsDialog'],['../classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#ac73f0405e249f623ddd0de22b5130fda',1,'GpgFrontend::UI::VerifyDetailsDialog::VerifyDetailsDialog()']]], - ['verifyfile_675',['VerifyFile',['../classGpgFrontend_1_1GpgFileOpera.html#a14cddfe822c9410cd9c301d08963b7e7',1,'GpgFrontend::GpgFileOpera']]], - ['verifykeydetailbox_676',['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_677',['version_compare',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#ae1989b6a34c76103f4bd06f35686d536',1,'GpgFrontend::UI::SoftwareVersion']]], - ['versionchecktask_678',['VersionCheckTask',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html',1,'GpgFrontend::UI::VersionCheckTask'],['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9f7a810ae1aa78c2a61e86e7757da385',1,'GpgFrontend::UI::VersionCheckTask::VersionCheckTask()']]], - ['versionwithdrawn_679',['VersionWithDrawn',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a587a3fdb047a15c3771c2af5eebdbf4b',1,'GpgFrontend::UI::SoftwareVersion']]], - ['view_5fmenu_5f_680',['view_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0e9920cf0fc974ac2f70d3f039f009f2',1,'GpgFrontend::UI::MainWindow']]] + ['verify_693',['Verify',['../classGpgFrontend_1_1GpgBasicOperator.html#af0347cb28ff73b2250395ceaa9001509',1,'GpgFrontend::GpgBasicOperator']]], + ['verify_5fact_5f_694',['verify_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a14bb12fa25620e1a93bd23c9f7c84081',1,'GpgFrontend::UI::MainWindow']]], + ['verifydetailsdialog_695',['VerifyDetailsDialog',['../classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html',1,'GpgFrontend::UI::VerifyDetailsDialog'],['../classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#ac73f0405e249f623ddd0de22b5130fda',1,'GpgFrontend::UI::VerifyDetailsDialog::VerifyDetailsDialog()']]], + ['verifyfile_696',['VerifyFile',['../classGpgFrontend_1_1GpgFileOpera.html#a14cddfe822c9410cd9c301d08963b7e7',1,'GpgFrontend::GpgFileOpera']]], + ['verifykeydetailbox_697',['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_698',['version_compare',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#ae1989b6a34c76103f4bd06f35686d536',1,'GpgFrontend::UI::SoftwareVersion']]], + ['versionchecktask_699',['VersionCheckTask',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html',1,'GpgFrontend::UI::VersionCheckTask'],['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9f7a810ae1aa78c2a61e86e7757da385',1,'GpgFrontend::UI::VersionCheckTask::VersionCheckTask()']]], + ['versionwithdrawn_700',['VersionWithDrawn',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a587a3fdb047a15c3771c2af5eebdbf4b',1,'GpgFrontend::UI::SoftwareVersion']]], + ['view_5fmenu_5f_701',['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 e7c73578..fb64769d 100644 --- a/docs/html/search/all_16.js +++ b/docs/html/search/all_16.js @@ -1,9 +1,9 @@ var searchData= [ - ['waitingdialog_681',['WaitingDialog',['../classGpgFrontend_1_1UI_1_1WaitingDialog.html',1,'GpgFrontend::UI::WaitingDialog'],['../classGpgFrontend_1_1UI_1_1WaitingDialog.html#a809d0ffc8208eb2ff5d8da76c8ee10dc',1,'GpgFrontend::UI::WaitingDialog::WaitingDialog()']]], - ['willcharsetchange_682',['WillCharsetChange',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a1c1c0174ed1ed9c5a90739eafc5c3267',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['wizard_683',['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_684',['write_buffer_to_file',['../namespaceGpgFrontend.html#a5135069571678eda9c1f07d17ed9ac41',1,'GpgFrontend']]], - ['writefile_685',['WriteFile',['../classGpgFrontend_1_1FileOperator.html#a2f21ef4a88448b1eddf756302913d338',1,'GpgFrontend::FileOperator']]], - ['writefilestd_686',['WriteFileStd',['../classGpgFrontend_1_1FileOperator.html#a51121c94dc32a83d7073fbe7138b603b',1,'GpgFrontend::FileOperator']]] + ['waitingdialog_702',['WaitingDialog',['../classGpgFrontend_1_1UI_1_1WaitingDialog.html',1,'GpgFrontend::UI::WaitingDialog'],['../classGpgFrontend_1_1UI_1_1WaitingDialog.html#a809d0ffc8208eb2ff5d8da76c8ee10dc',1,'GpgFrontend::UI::WaitingDialog::WaitingDialog()']]], + ['willcharsetchange_703',['WillCharsetChange',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a1c1c0174ed1ed9c5a90739eafc5c3267',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['wizard_704',['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_705',['write_buffer_to_file',['../namespaceGpgFrontend.html#a5135069571678eda9c1f07d17ed9ac41',1,'GpgFrontend']]], + ['writefile_706',['WriteFile',['../classGpgFrontend_1_1FileOperator.html#a2f21ef4a88448b1eddf756302913d338',1,'GpgFrontend::FileOperator']]], + ['writefilestd_707',['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 dea3703b..345111ac 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_687',['zoom_in_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3cb7daedbef61c1be27635c9ebc9e689',1,'GpgFrontend::UI::MainWindow']]], - ['zoom_5fout_5fact_5f_688',['zoom_out_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a70397629ae3ffe039051b80a099c7979',1,'GpgFrontend::UI::MainWindow']]] + ['zoom_5fin_5fact_5f_708',['zoom_in_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3cb7daedbef61c1be27635c9ebc9e689',1,'GpgFrontend::UI::MainWindow']]], + ['zoom_5fout_5fact_5f_709',['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 c909b27e..3e119941 100644 --- a/docs/html/search/all_18.js +++ b/docs/html/search/all_18.js @@ -1,14 +1,14 @@ var searchData= [ - ['_7edataobject_689',['~DataObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a85bb3c482bf6f47edcd6593cca568a22',1,'GpgFrontend::Thread::Task::DataObject']]], - ['_7eglobalsettingstation_690',['~GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html#af700161900e623a0ea14261d51616451',1,'GpgFrontend::GlobalSettingStation']]], - ['_7egpgcontext_691',['~GpgContext',['../classGpgFrontend_1_1GpgContext.html#ae89dee551354c1541337881898832725',1,'GpgFrontend::GpgContext']]], - ['_7egpgfrontendapplication_692',['~GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a32f0e7dda69f7b1e3cc869340736c590',1,'GpgFrontend::UI::GpgFrontendApplication']]], - ['_7egpgkey_693',['~GpgKey',['../classGpgFrontend_1_1GpgKey.html#a1e9223bb1ad8fbb4e769680de39b3697',1,'GpgFrontend::GpgKey']]], - ['_7egpgkeysignature_694',['~GpgKeySignature',['../classGpgFrontend_1_1GpgKeySignature.html#ab4d7044f4e1ddcf0ae0d28be43f0fcb3',1,'GpgFrontend::GpgKeySignature']]], - ['_7egpgsignature_695',['~GpgSignature',['../classGpgFrontend_1_1GpgSignature.html#a44f137a457ac109d145a1cdd8e544e3a',1,'GpgFrontend::GpgSignature']]], - ['_7esettingsobject_696',['~SettingsObject',['../classGpgFrontend_1_1UI_1_1SettingsObject.html#ae71336d240ace35756d1852a46271f6c',1,'GpgFrontend::UI::SettingsObject']]], - ['_7esingletonfunctionobject_697',['~SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html#a8296be8c449f88175285186831b995bc',1,'GpgFrontend::SingletonFunctionObject']]], - ['_7etask_698',['~Task',['../classGpgFrontend_1_1Thread_1_1Task.html#a37766a505662b33ad14672c29e209ea8',1,'GpgFrontend::Thread::Task']]], - ['_7etaskrunner_699',['~TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#ac3e57b59d537e2a75e741d4a5418ae6d',1,'GpgFrontend::Thread::TaskRunner']]] + ['_7edataobject_710',['~DataObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a85bb3c482bf6f47edcd6593cca568a22',1,'GpgFrontend::Thread::Task::DataObject']]], + ['_7eglobalsettingstation_711',['~GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html#af700161900e623a0ea14261d51616451',1,'GpgFrontend::GlobalSettingStation']]], + ['_7egpgcontext_712',['~GpgContext',['../classGpgFrontend_1_1GpgContext.html#ae89dee551354c1541337881898832725',1,'GpgFrontend::GpgContext']]], + ['_7egpgfrontendapplication_713',['~GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a32f0e7dda69f7b1e3cc869340736c590',1,'GpgFrontend::UI::GpgFrontendApplication']]], + ['_7egpgkey_714',['~GpgKey',['../classGpgFrontend_1_1GpgKey.html#a1e9223bb1ad8fbb4e769680de39b3697',1,'GpgFrontend::GpgKey']]], + ['_7egpgkeysignature_715',['~GpgKeySignature',['../classGpgFrontend_1_1GpgKeySignature.html#ab4d7044f4e1ddcf0ae0d28be43f0fcb3',1,'GpgFrontend::GpgKeySignature']]], + ['_7egpgsignature_716',['~GpgSignature',['../classGpgFrontend_1_1GpgSignature.html#a44f137a457ac109d145a1cdd8e544e3a',1,'GpgFrontend::GpgSignature']]], + ['_7esettingsobject_717',['~SettingsObject',['../classGpgFrontend_1_1UI_1_1SettingsObject.html#ae71336d240ace35756d1852a46271f6c',1,'GpgFrontend::UI::SettingsObject']]], + ['_7esingletonfunctionobject_718',['~SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html#a8296be8c449f88175285186831b995bc',1,'GpgFrontend::SingletonFunctionObject']]], + ['_7etask_719',['~Task',['../classGpgFrontend_1_1Thread_1_1Task.html#a37766a505662b33ad14672c29e209ea8',1,'GpgFrontend::Thread::Task']]], + ['_7etaskrunner_720',['~TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#ac3e57b59d537e2a75e741d4a5418ae6d',1,'GpgFrontend::Thread::TaskRunner']]] ]; diff --git a/docs/html/search/all_2.js b/docs/html/search/all_2.js index d4c51268..ebdc35d4 100644 --- a/docs/html/search/all_2.js +++ b/docs/html/search/all_2.js @@ -1,7 +1,7 @@ var searchData= [ - ['beautify_5ffingerprint_37',['beautify_fingerprint',['../namespaceGpgFrontend.html#ac494a4b0d91e08a70db77a399c9a0f30',1,'GpgFrontend']]], - ['browser_5f_38',['browser_',['../classGpgFrontend_1_1UI_1_1HelpPage.html#af4f61342fae06a49c95d8d20ca51ca2c',1,'GpgFrontend::UI::HelpPage']]], - ['browser_5fact_5f_39',['browser_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3c0a5305cf55fe5bee2f18298f983cad',1,'GpgFrontend::UI::MainWindow']]], - ['button_5fbox_5f_40',['button_box_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#aa765259f9aa65b81d59b982ee0595e52',1,'GpgFrontend::UI::KeyGenDialog::button_box_()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#ab06b11f407fbb407139235fc84325de2',1,'GpgFrontend::UI::SubkeyGenerateDialog::button_box_()']]] + ['beautify_5ffingerprint_38',['beautify_fingerprint',['../namespaceGpgFrontend.html#ac494a4b0d91e08a70db77a399c9a0f30',1,'GpgFrontend']]], + ['browser_5f_39',['browser_',['../classGpgFrontend_1_1UI_1_1HelpPage.html#af4f61342fae06a49c95d8d20ca51ca2c',1,'GpgFrontend::UI::HelpPage']]], + ['browser_5fact_5f_40',['browser_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3c0a5305cf55fe5bee2f18298f983cad',1,'GpgFrontend::UI::MainWindow']]], + ['button_5fbox_5f_41',['button_box_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#aa765259f9aa65b81d59b982ee0595e52',1,'GpgFrontend::UI::KeyGenDialog::button_box_()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#ab06b11f407fbb407139235fc84325de2',1,'GpgFrontend::UI::SubkeyGenerateDialog::button_box_()']]] ]; diff --git a/docs/html/search/all_3.js b/docs/html/search/all_3.js index 835bae55..c56a6de2 100644 --- a/docs/html/search/all_3.js +++ b/docs/html/search/all_3.js @@ -1,67 +1,72 @@ var searchData= [ - ['calculatehash_41',['CalculateHash',['../classGpgFrontend_1_1FileOperator.html#a08baef750a723ee709804120a34d19c9',1,'GpgFrontend::FileOperator']]], - ['channel_5f_42',['channel_',['../classGpgFrontend_1_1ChannelObject.html#aee5f8a5575adbdf522da4dd195c091ee',1,'GpgFrontend::ChannelObject']]], - ['channelobject_43',['ChannelObject',['../classGpgFrontend_1_1ChannelObject.html#aedbf32eddc701e521bd8e790ef208da0',1,'GpgFrontend::ChannelObject::ChannelObject() noexcept'],['../classGpgFrontend_1_1ChannelObject.html#a68ad2a19339e3cd50626fe0eaad17ccd',1,'GpgFrontend::ChannelObject::ChannelObject(int channel)'],['../classGpgFrontend_1_1ChannelObject.html',1,'GpgFrontend::ChannelObject']]], - ['charsetoperator_44',['CharsetOperator',['../classGpgFrontend_1_1CharsetOperator.html',1,'GpgFrontend']]], - ['check_45',['Check',['../classGpgFrontend_1_1UI_1_1SettingsObject.html#a80801f6912991ba625b5ead29a4558f0',1,'GpgFrontend::UI::SettingsObject::Check(const std::string &key)'],['../classGpgFrontend_1_1UI_1_1SettingsObject.html#a5ddcc2e0bc6d4c2f88e6e00371d4792e',1,'GpgFrontend::UI::SettingsObject::Check(const std::string &key, const nlohmann::json &default_value)']]], - ['check_5femail_5faddress_46',['check_email_address',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#ad4e09323a53992daee08173bed17bf9a',1,'GpgFrontend::UI::KeyNewUIDDialog::check_email_address()'],['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ae8aeaff7be0b1552b29d1f209af0bd28',1,'GpgFrontend::UI::KeyGenDialog::check_email_address()']]], - ['check_5fgpg_5ferror_47',['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_48',['check_gpg_error_2_err_code',['../namespaceGpgFrontend.html#a4edac6df92596ba8eea3a8cdc1173684',1,'GpgFrontend']]], - ['check_5fupdate_5fact_5f_49',['check_update_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a672f4ef07be6ad645613ecd49399700d',1,'GpgFrontend::UI::MainWindow']]], - ['choosepage_50',['ChoosePage',['../classGpgFrontend_1_1UI_1_1ChoosePage.html#ae370e789009be3926410cb749c86907b',1,'GpgFrontend::UI::ChoosePage::ChoosePage()'],['../classGpgFrontend_1_1UI_1_1ChoosePage.html',1,'GpgFrontend::UI::ChoosePage']]], - ['class_51',['class',['../classclass.html',1,'']]], - ['clean_5fdouble_5fline_5fbreaks_5fact_5f_52',['clean_double_line_breaks_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0cb094e0409337cfd7dba1bb510ea96e',1,'GpgFrontend::UI::MainWindow']]], - ['close_5fattachment_5fdock_53',['close_attachment_dock',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a473b679fa0dc3cdf4f6f98d6553fa0ec',1,'GpgFrontend::UI::MainWindow']]], - ['close_5ftab_5fact_5f_54',['close_tab_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a09671c3aa26a750cfd6be6c092de8715',1,'GpgFrontend::UI::MainWindow']]], - ['closeevent_55',['closeEvent',['../classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#acc10569862d1575d9453d1c1aa539242',1,'GpgFrontend::UI::GeneralMainWindow::closeEvent()'],['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1759412cb7ee71600c4b6e3c6e752d2e',1,'GpgFrontend::UI::MainWindow::closeEvent()']]], - ['closenotebyclass_56',['CloseNoteByClass',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aee4f46e54f29da671838ed232e526700',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['comment_5fedit_5f_57',['comment_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3008e2a9879a8e122e422f67cf0018f8',1,'GpgFrontend::UI::KeyGenDialog']]], - ['comment_5fvar_5flabel_5f_58',['comment_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a83b1290251a204def52677ae000a17ec',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['commonutils_59',['CommonUtils',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a78f5c2696152e9326e845c76c94be965',1,'GpgFrontend::UI::CommonUtils::CommonUtils()'],['../classGpgFrontend_1_1UI_1_1CommonUtils.html',1,'GpgFrontend::UI::CommonUtils']]], - ['conclusionpage_60',['ConclusionPage',['../classGpgFrontend_1_1UI_1_1ConclusionPage.html#afcd98b4735047807d384e6b3d3aea3a7',1,'GpgFrontend::UI::ConclusionPage::ConclusionPage()'],['../classGpgFrontend_1_1UI_1_1ConclusionPage.html',1,'GpgFrontend::UI::ConclusionPage']]], - ['containsprivatekeys_61',['ContainsPrivateKeys',['../classGpgFrontend_1_1UI_1_1KeyList.html#a20c4a242f49123bd64982952fdad08e9',1,'GpgFrontend::UI::KeyList']]], - ['contextmenuevent_62',['contextMenuEvent',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#ad415e2dd5046c744b650b26c123130ff',1,'GpgFrontend::UI::KeyPairSubkeyTab::contextMenuEvent()'],['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a35d0b436cf13fa127dbba5b12f8f9144',1,'GpgFrontend::UI::KeyPairUIDTab::contextMenuEvent()'],['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#a8cbd6e448e187260730ab8301ad4892e',1,'GpgFrontend::UI::KeyserverTab::contextMenuEvent()'],['../classGpgFrontend_1_1UI_1_1KeyList.html#a82da61a76a08023b2ddbe2a6869f4190',1,'GpgFrontend::UI::KeyList::contextMenuEvent()']]], - ['copy_63',['Copy',['../classGpgFrontend_1_1GpgKey.html#ac90afba6a5aec0bc2c0f1e01de417ec8',1,'GpgFrontend::GpgKey']]], - ['copy_5fact_5f_64',['copy_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a71402943f4ed19e3aba0556b23eaa8f8',1,'GpgFrontend::UI::MainWindow']]], - ['copy_5fmail_5faddress_5fto_5fclipboard_5fact_5f_65',['copy_mail_address_to_clipboard_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af77f66b6b869f6ddb3d2caa3bc40bb09',1,'GpgFrontend::UI::MainWindow']]], - ['corecommonutil_66',['CoreCommonUtil',['../classGpgFrontend_1_1CoreCommonUtil.html',1,'GpgFrontend']]], - ['count_5fpage_5f_67',['count_page_',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a747d3740a88295e6c9565788d4cf56ec',1,'GpgFrontend::UI::TextEdit']]], - ['create_5factions_68',['create_actions',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0ab96012df041f2c2e47092db0600355',1,'GpgFrontend::UI::MainWindow::create_actions()'],['../classGpgFrontend_1_1UI_1_1KeyMgmt.html#a23cf6665537f2a96708e9d5423ce3bb8',1,'GpgFrontend::UI::KeyMgmt::create_actions()']]], - ['create_5fattachment_5fdock_69',['create_attachment_dock',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a92a6d8d46e197e25eaacc3ad7ed289ab',1,'GpgFrontend::UI::MainWindow']]], - ['create_5fbasic_5finfo_5fgroup_5fbox_70',['create_basic_info_group_box',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a010acccfd5fb5475769658f9cf68da7b',1,'GpgFrontend::UI::KeyGenDialog::create_basic_info_group_box()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a029017ad2e025a43d21144f1b7427593',1,'GpgFrontend::UI::SubkeyGenerateDialog::create_basic_info_group_box()']]], - ['create_5fbutton_71',['create_button',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a4c5d8a43fd8a6f1c217d83694dcc689c',1,'GpgFrontend::UI::KeyServerImportDialog']]], - ['create_5fbutton_5fbox_72',['create_button_box',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a9f5912ff99e3820d5fa6a58ed14a70c8',1,'GpgFrontend::UI::KeyImportDetailDialog']]], - ['create_5fcombobox_73',['create_comboBox',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ab9e2fe38d54c0f0d3d73907300faa513',1,'GpgFrontend::UI::KeyServerImportDialog']]], - ['create_5fdock_5fwindows_74',['create_dock_windows',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a04668246525874760f47a340b4b7d8de',1,'GpgFrontend::UI::MainWindow']]], - ['create_5fgeneral_5finfo_5fbox_75',['create_general_info_box',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#af88ee416b2227ce847a3b8123a23ce24',1,'GpgFrontend::UI::KeyImportDetailDialog']]], - ['create_5fkey_5finfo_5fgrid_76',['create_key_info_grid',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#a25b96a986a009d35847f94719ec327c1',1,'GpgFrontend::UI::VerifyKeyDetailBox']]], - ['create_5fkey_5fusage_5fgroup_5fbox_77',['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_78',['create_keys_table',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a6f006d4702885fb41317d10d654dfa3c',1,'GpgFrontend::UI::KeyServerImportDialog::create_keys_table()'],['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a9e37a653a982e671977d2101b72ae3b6',1,'GpgFrontend::UI::KeyImportDetailDialog::create_keys_table()']]], - ['create_5fmanage_5fuid_5fmenu_79',['create_manage_uid_menu',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a5c029e55323d54aa2306267cea1809ea',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['create_5fmenus_80',['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_81',['create_popup_menu',['../classGpgFrontend_1_1UI_1_1FilePage.html#a73e4b62f4926b1aeb3f2183a1d05d871',1,'GpgFrontend::UI::FilePage']]], - ['create_5fsign_5flist_82',['create_sign_list',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a32dc14242d88ca168ae71e9a895d2b29',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['create_5fsign_5fpopup_5fmenu_83',['create_sign_popup_menu',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a7653654c81149c48e7e4d5f0c00c360f',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['create_5fstatus_5fbar_84',['create_status_bar',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1ab1f3f57f9969447491e63f54420585',1,'GpgFrontend::UI::MainWindow']]], - ['create_5fsubkey_5flist_85',['create_subkey_list',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a0503508ce7e11f497a05cdf6f536a253',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], - ['create_5fsubkey_5fopera_5fmenu_86',['create_subkey_opera_menu',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a324446276f111be455773381ee8b6739',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], - ['create_5ftool_5fbars_87',['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_88',['create_uid_list',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a0511f5714548920cf3563306536d0bd7',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['create_5fuid_5fpopup_5fmenu_89',['create_uid_popup_menu',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a2a87d3ed720a57a5d96a108c7a9827d7',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['created_5fvar_5flabel_5f_90',['created_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aa45a2433ce82a88eeb2c9c282ab7b975',1,'GpgFrontend::UI::KeyPairDetailTab::created_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#ac827e8474ace52814f8de70709987d36',1,'GpgFrontend::UI::KeyPairSubkeyTab::created_var_label_()']]], - ['createinstance_91',['CreateInstance',['../classGpgFrontend_1_1SingletonFunctionObject.html#a083807ff8cec58dc0aa732844edaf518',1,'GpgFrontend::SingletonFunctionObject']]], - ['createoperamenu_92',['CreateOperaMenu',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a4dcec352e412afe5c5491f941495090f',1,'GpgFrontend::UI::KeyPairOperaTab']]], - ['crypt_5fmenu_5f_93',['crypt_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1ef17c566a764f707f43593a1f6b3c60',1,'GpgFrontend::UI::MainWindow']]], - ['crypt_5ftool_5fbar_5f_94',['crypt_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aac320aef3b49cd068544aac54b927f7a',1,'GpgFrontend::UI::MainWindow']]], - ['cryptomenu_95',['CryptoMenu',['../structGpgFrontend_1_1UI_1_1MainWindow_1_1CryptoMenu.html',1,'GpgFrontend::UI::MainWindow']]], - ['ctx_5f_96',['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_97',['ctx_mutex_',['../classGpgFrontend_1_1GpgKeyGetter.html#a81941e1f562dc22977a71d00dd10956a',1,'GpgFrontend::GpgKeyGetter']]], - ['ctxchecktask_98',['CtxCheckTask',['../classGpgFrontend_1_1Thread_1_1CtxCheckTask.html#a9d5f0969bcedc5687e0a50ed3b36a869',1,'GpgFrontend::Thread::CtxCheckTask::CtxCheckTask()'],['../classGpgFrontend_1_1Thread_1_1CtxCheckTask.html',1,'GpgFrontend::Thread::CtxCheckTask']]], - ['curfilepage_99',['CurFilePage',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa30daf558cb85bbdcad55a805a106109',1,'GpgFrontend::UI::TextEdit']]], - ['current_5freply_5f_100',['current_reply_',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9679bc6bcdf2e64ec82f6119620b6f2e',1,'GpgFrontend::UI::VersionCheckTask']]], - ['currentversionreleased_101',['CurrentVersionReleased',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a43663cd2d086299a0f0304f5bde9c663',1,'GpgFrontend::UI::SoftwareVersion']]], - ['curtextpage_102',['CurTextPage',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a7aa1230fbf796225bd6b83d381e11a3b',1,'GpgFrontend::UI::TextEdit']]], - ['cut_5fact_5f_103',['cut_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2c2f6c021219564846f1624f6bb5b9a2',1,'GpgFrontend::UI::MainWindow']]], - ['cut_5fpgp_5fheader_5fact_5f_104',['cut_pgp_header_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a313a5d7d0847114a6f11e4d7870edd86',1,'GpgFrontend::UI::MainWindow']]] + ['cachemanager_42',['CacheManager',['../classGpgFrontend_1_1CacheManager.html',1,'GpgFrontend']]], + ['calculatehash_43',['CalculateHash',['../classGpgFrontend_1_1FileOperator.html#a08baef750a723ee709804120a34d19c9',1,'GpgFrontend::FileOperator']]], + ['channel_5f_44',['channel_',['../classGpgFrontend_1_1ChannelObject.html#aee5f8a5575adbdf522da4dd195c091ee',1,'GpgFrontend::ChannelObject']]], + ['channelobject_45',['ChannelObject',['../classGpgFrontend_1_1ChannelObject.html#aedbf32eddc701e521bd8e790ef208da0',1,'GpgFrontend::ChannelObject::ChannelObject() noexcept'],['../classGpgFrontend_1_1ChannelObject.html#a68ad2a19339e3cd50626fe0eaad17ccd',1,'GpgFrontend::ChannelObject::ChannelObject(int channel)'],['../classGpgFrontend_1_1ChannelObject.html',1,'GpgFrontend::ChannelObject']]], + ['charsetoperator_46',['CharsetOperator',['../classGpgFrontend_1_1CharsetOperator.html',1,'GpgFrontend']]], + ['check_47',['Check',['../classGpgFrontend_1_1UI_1_1SettingsObject.html#a80801f6912991ba625b5ead29a4558f0',1,'GpgFrontend::UI::SettingsObject::Check(const std::string &key)'],['../classGpgFrontend_1_1UI_1_1SettingsObject.html#a5ddcc2e0bc6d4c2f88e6e00371d4792e',1,'GpgFrontend::UI::SettingsObject::Check(const std::string &key, const nlohmann::json &default_value)']]], + ['check_5fbinary_5fchacksum_48',['check_binary_chacksum',['../classGpgFrontend_1_1GpgContext.html#a76fba43d1439c7811e1a9424d0c16d40',1,'GpgFrontend::GpgContext']]], + ['check_5femail_5faddress_49',['check_email_address',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#ad4e09323a53992daee08173bed17bf9a',1,'GpgFrontend::UI::KeyNewUIDDialog::check_email_address()'],['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ae8aeaff7be0b1552b29d1f209af0bd28',1,'GpgFrontend::UI::KeyGenDialog::check_email_address()']]], + ['check_5fgpg_5ferror_50',['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_51',['check_gpg_error_2_err_code',['../namespaceGpgFrontend.html#a4edac6df92596ba8eea3a8cdc1173684',1,'GpgFrontend']]], + ['check_5fupdate_5fact_5f_52',['check_update_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a672f4ef07be6ad645613ecd49399700d',1,'GpgFrontend::UI::MainWindow']]], + ['choosepage_53',['ChoosePage',['../classGpgFrontend_1_1UI_1_1ChoosePage.html#ae370e789009be3926410cb749c86907b',1,'GpgFrontend::UI::ChoosePage::ChoosePage()'],['../classGpgFrontend_1_1UI_1_1ChoosePage.html',1,'GpgFrontend::UI::ChoosePage']]], + ['class_54',['class',['../classclass.html',1,'']]], + ['clean_5fdouble_5fline_5fbreaks_5fact_5f_55',['clean_double_line_breaks_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0cb094e0409337cfd7dba1bb510ea96e',1,'GpgFrontend::UI::MainWindow']]], + ['cleargpgpasswordcache_56',['ClearGpgPasswordCache',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a71eb87ed095754ee1e9fa79125240f3e',1,'GpgFrontend::GpgAdvancedOperator']]], + ['close_5fattachment_5fdock_57',['close_attachment_dock',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a473b679fa0dc3cdf4f6f98d6553fa0ec',1,'GpgFrontend::UI::MainWindow']]], + ['close_5ftab_5fact_5f_58',['close_tab_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a09671c3aa26a750cfd6be6c092de8715',1,'GpgFrontend::UI::MainWindow']]], + ['closeevent_59',['closeEvent',['../classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#acc10569862d1575d9453d1c1aa539242',1,'GpgFrontend::UI::GeneralMainWindow::closeEvent()'],['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1759412cb7ee71600c4b6e3c6e752d2e',1,'GpgFrontend::UI::MainWindow::closeEvent()']]], + ['closenotebyclass_60',['CloseNoteByClass',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aee4f46e54f29da671838ed232e526700',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['comment_5fedit_5f_61',['comment_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3008e2a9879a8e122e422f67cf0018f8',1,'GpgFrontend::UI::KeyGenDialog']]], + ['comment_5fvar_5flabel_5f_62',['comment_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a83b1290251a204def52677ae000a17ec',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['commonutils_63',['CommonUtils',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a78f5c2696152e9326e845c76c94be965',1,'GpgFrontend::UI::CommonUtils::CommonUtils()'],['../classGpgFrontend_1_1UI_1_1CommonUtils.html',1,'GpgFrontend::UI::CommonUtils']]], + ['conclusionpage_64',['ConclusionPage',['../classGpgFrontend_1_1UI_1_1ConclusionPage.html#afcd98b4735047807d384e6b3d3aea3a7',1,'GpgFrontend::UI::ConclusionPage::ConclusionPage()'],['../classGpgFrontend_1_1UI_1_1ConclusionPage.html',1,'GpgFrontend::UI::ConclusionPage']]], + ['containsprivatekeys_65',['ContainsPrivateKeys',['../classGpgFrontend_1_1UI_1_1KeyList.html#a20c4a242f49123bd64982952fdad08e9',1,'GpgFrontend::UI::KeyList']]], + ['contextmenuevent_66',['contextMenuEvent',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#ad415e2dd5046c744b650b26c123130ff',1,'GpgFrontend::UI::KeyPairSubkeyTab::contextMenuEvent()'],['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a35d0b436cf13fa127dbba5b12f8f9144',1,'GpgFrontend::UI::KeyPairUIDTab::contextMenuEvent()'],['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#a8cbd6e448e187260730ab8301ad4892e',1,'GpgFrontend::UI::KeyserverTab::contextMenuEvent()'],['../classGpgFrontend_1_1UI_1_1KeyList.html#a82da61a76a08023b2ddbe2a6869f4190',1,'GpgFrontend::UI::KeyList::contextMenuEvent()']]], + ['copy_67',['Copy',['../classGpgFrontend_1_1GpgKey.html#ac90afba6a5aec0bc2c0f1e01de417ec8',1,'GpgFrontend::GpgKey']]], + ['copy_5fact_5f_68',['copy_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a71402943f4ed19e3aba0556b23eaa8f8',1,'GpgFrontend::UI::MainWindow']]], + ['copy_5fmail_5faddress_5fto_5fclipboard_5fact_5f_69',['copy_mail_address_to_clipboard_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af77f66b6b869f6ddb3d2caa3bc40bb09',1,'GpgFrontend::UI::MainWindow']]], + ['corecommonutil_70',['CoreCommonUtil',['../classGpgFrontend_1_1CoreCommonUtil.html',1,'GpgFrontend']]], + ['coresignalstation_71',['CoreSignalStation',['../classGpgFrontend_1_1CoreSignalStation.html',1,'GpgFrontend']]], + ['count_5fpage_5f_72',['count_page_',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a747d3740a88295e6c9565788d4cf56ec',1,'GpgFrontend::UI::TextEdit']]], + ['create_5factions_73',['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_74',['create_attachment_dock',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a92a6d8d46e197e25eaacc3ad7ed289ab',1,'GpgFrontend::UI::MainWindow']]], + ['create_5fbasic_5finfo_5fgroup_5fbox_75',['create_basic_info_group_box',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a010acccfd5fb5475769658f9cf68da7b',1,'GpgFrontend::UI::KeyGenDialog::create_basic_info_group_box()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a029017ad2e025a43d21144f1b7427593',1,'GpgFrontend::UI::SubkeyGenerateDialog::create_basic_info_group_box()']]], + ['create_5fbutton_76',['create_button',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a4c5d8a43fd8a6f1c217d83694dcc689c',1,'GpgFrontend::UI::KeyServerImportDialog']]], + ['create_5fbutton_5fbox_77',['create_button_box',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a9f5912ff99e3820d5fa6a58ed14a70c8',1,'GpgFrontend::UI::KeyImportDetailDialog']]], + ['create_5fcombobox_78',['create_comboBox',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ab9e2fe38d54c0f0d3d73907300faa513',1,'GpgFrontend::UI::KeyServerImportDialog']]], + ['create_5fdock_5fwindows_79',['create_dock_windows',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a04668246525874760f47a340b4b7d8de',1,'GpgFrontend::UI::MainWindow']]], + ['create_5fgeneral_5finfo_5fbox_80',['create_general_info_box',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#af88ee416b2227ce847a3b8123a23ce24',1,'GpgFrontend::UI::KeyImportDetailDialog']]], + ['create_5fkey_5finfo_5fgrid_81',['create_key_info_grid',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#a25b96a986a009d35847f94719ec327c1',1,'GpgFrontend::UI::VerifyKeyDetailBox']]], + ['create_5fkey_5fusage_5fgroup_5fbox_82',['create_key_usage_group_box',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a8e6554b47e0dd6c2025ccb0d1d0cb658',1,'GpgFrontend::UI::KeyGenDialog::create_key_usage_group_box()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aa24064a5f585b23d71e1036958f31d7d',1,'GpgFrontend::UI::SubkeyGenerateDialog::create_key_usage_group_box()']]], + ['create_5fkeys_5ftable_83',['create_keys_table',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a6f006d4702885fb41317d10d654dfa3c',1,'GpgFrontend::UI::KeyServerImportDialog::create_keys_table()'],['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a9e37a653a982e671977d2101b72ae3b6',1,'GpgFrontend::UI::KeyImportDetailDialog::create_keys_table()']]], + ['create_5fmanage_5fuid_5fmenu_84',['create_manage_uid_menu',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a5c029e55323d54aa2306267cea1809ea',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['create_5fmenus_85',['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_86',['create_popup_menu',['../classGpgFrontend_1_1UI_1_1FilePage.html#a73e4b62f4926b1aeb3f2183a1d05d871',1,'GpgFrontend::UI::FilePage']]], + ['create_5fsign_5flist_87',['create_sign_list',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a32dc14242d88ca168ae71e9a895d2b29',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['create_5fsign_5fpopup_5fmenu_88',['create_sign_popup_menu',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a7653654c81149c48e7e4d5f0c00c360f',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['create_5fstatus_5fbar_89',['create_status_bar',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1ab1f3f57f9969447491e63f54420585',1,'GpgFrontend::UI::MainWindow']]], + ['create_5fsubkey_5flist_90',['create_subkey_list',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a0503508ce7e11f497a05cdf6f536a253',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], + ['create_5fsubkey_5fopera_5fmenu_91',['create_subkey_opera_menu',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a324446276f111be455773381ee8b6739',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], + ['create_5ftool_5fbars_92',['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_93',['create_uid_list',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a0511f5714548920cf3563306536d0bd7',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['create_5fuid_5fpopup_5fmenu_94',['create_uid_popup_menu',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a2a87d3ed720a57a5d96a108c7a9827d7',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['created_5fvar_5flabel_5f_95',['created_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aa45a2433ce82a88eeb2c9c282ab7b975',1,'GpgFrontend::UI::KeyPairDetailTab::created_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#ac827e8474ace52814f8de70709987d36',1,'GpgFrontend::UI::KeyPairSubkeyTab::created_var_label_()']]], + ['createinstance_96',['CreateInstance',['../classGpgFrontend_1_1SingletonFunctionObject.html#a083807ff8cec58dc0aa732844edaf518',1,'GpgFrontend::SingletonFunctionObject']]], + ['createoperamenu_97',['CreateOperaMenu',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a4dcec352e412afe5c5491f941495090f',1,'GpgFrontend::UI::KeyPairOperaTab']]], + ['crypt_5fmenu_5f_98',['crypt_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1ef17c566a764f707f43593a1f6b3c60',1,'GpgFrontend::UI::MainWindow']]], + ['crypt_5ftool_5fbar_5f_99',['crypt_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aac320aef3b49cd068544aac54b927f7a',1,'GpgFrontend::UI::MainWindow']]], + ['cryptomenu_100',['CryptoMenu',['../structGpgFrontend_1_1UI_1_1MainWindow_1_1CryptoMenu.html',1,'GpgFrontend::UI::MainWindow']]], + ['ctx_5f_101',['ctx_',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a387ad457bb729f340f680d0b743733ad',1,'GpgFrontend::GpgAdvancedOperator::ctx_()'],['../classGpgFrontend_1_1GpgKeyGetter.html#aa4aef315d82123726be879097d3df147',1,'GpgFrontend::GpgKeyGetter::ctx_()'],['../classGpgFrontend_1_1GpgCommandExecutor.html#aefc4f18ec852b98c539d97da1c712a02',1,'GpgFrontend::GpgCommandExecutor::ctx_()'],['../classGpgFrontend_1_1GpgBasicOperator.html#afad990a43ab06a060a93db9948ebb740',1,'GpgFrontend::GpgBasicOperator::ctx_()']]], + ['ctx_5fmutex_5f_102',['ctx_mutex_',['../classGpgFrontend_1_1GpgKeyGetter.html#a81941e1f562dc22977a71d00dd10956a',1,'GpgFrontend::GpgKeyGetter']]], + ['ctxchecktask_103',['CtxCheckTask',['../classGpgFrontend_1_1Thread_1_1CtxCheckTask.html#a9d5f0969bcedc5687e0a50ed3b36a869',1,'GpgFrontend::Thread::CtxCheckTask::CtxCheckTask()'],['../classGpgFrontend_1_1Thread_1_1CtxCheckTask.html',1,'GpgFrontend::Thread::CtxCheckTask']]], + ['curfilepage_104',['CurFilePage',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa30daf558cb85bbdcad55a805a106109',1,'GpgFrontend::UI::TextEdit']]], + ['current_5freply_5f_105',['current_reply_',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9679bc6bcdf2e64ec82f6119620b6f2e',1,'GpgFrontend::UI::VersionCheckTask']]], + ['currentversionreleased_106',['CurrentVersionReleased',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a43663cd2d086299a0f0304f5bde9c663',1,'GpgFrontend::UI::SoftwareVersion']]], + ['curtextpage_107',['CurTextPage',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a7aa1230fbf796225bd6b83d381e11a3b',1,'GpgFrontend::UI::TextEdit']]], + ['custom_5fpassphrase_5fcb_108',['custom_passphrase_cb',['../classGpgFrontend_1_1GpgContext.html#af46f09a4f5c77429c3e782b551812ec2',1,'GpgFrontend::GpgContext']]], + ['cut_5fact_5f_109',['cut_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2c2f6c021219564846f1624f6bb5b9a2',1,'GpgFrontend::UI::MainWindow']]], + ['cut_5fpgp_5fheader_5fact_5f_110',['cut_pgp_header_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a313a5d7d0847114a6f11e4d7870edd86',1,'GpgFrontend::UI::MainWindow']]] ]; diff --git a/docs/html/search/all_4.js b/docs/html/search/all_4.js index 7d064099..23b22dab 100644 --- a/docs/html/search/all_4.js +++ b/docs/html/search/all_4.js @@ -1,22 +1,22 @@ var searchData= [ - ['dataobject_105',['DataObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html',1,'GpgFrontend::Thread::Task']]], - ['dataobjectoperator_106',['DataObjectOperator',['../classGpgFrontend_1_1DataObjectOperator.html#a3a8ae5c36fec01d0d5c3e5f9aed457a6',1,'GpgFrontend::DataObjectOperator::DataObjectOperator()'],['../classGpgFrontend_1_1DataObjectOperator.html',1,'GpgFrontend::DataObjectOperator']]], - ['date_5fedit_5f_107',['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_108',['Decrypt',['../classGpgFrontend_1_1GpgBasicOperator.html#a9ea9e81194917e08f46eb657281b7953',1,'GpgFrontend::GpgBasicOperator']]], - ['decrypt_5fact_5f_109',['decrypt_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa92246123272e3e1085f22612aedf48f',1,'GpgFrontend::UI::MainWindow']]], - ['decrypt_5fverify_5fact_5f_110',['decrypt_verify_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a70d2b2311708ab023466d343f2e914b1',1,'GpgFrontend::UI::MainWindow']]], - ['decryptfile_111',['DecryptFile',['../classGpgFrontend_1_1GpgFileOpera.html#a74eb3ba532a236d8ad284b41265b0ccd',1,'GpgFrontend::GpgFileOpera']]], - ['decryptverify_112',['DecryptVerify',['../classGpgFrontend_1_1GpgBasicOperator.html#a11845a9a3ea2941e14faa9130f0ac9ef',1,'GpgFrontend::GpgBasicOperator']]], - ['decryptverifyfile_113',['DecryptVerifyFile',['../classGpgFrontend_1_1GpgFileOpera.html#a90949b4e9e6116784260cd0e416551db',1,'GpgFrontend::GpgFileOpera']]], - ['delete_5fkeys_5fwith_5fwarning_114',['delete_keys_with_warning',['../classGpgFrontend_1_1UI_1_1KeyMgmt.html#a0b139ae0d4baa234932cf228e94abd6b',1,'GpgFrontend::UI::KeyMgmt']]], - ['delete_5fwidgets_5fin_5flayout_115',['delete_widgets_in_layout',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a852c1fe10c7d3153a2146bcea4dbe9ad',1,'GpgFrontend::UI::InfoBoardWidget']]], - ['deletekey_116',['DeleteKey',['../classGpgFrontend_1_1GpgKeyOpera.html#a151c47b997951e9162f8b036c3cb15e0',1,'GpgFrontend::GpgKeyOpera']]], - ['deletekeys_117',['DeleteKeys',['../classGpgFrontend_1_1GpgKeyOpera.html#a8a06d0f7a600d4428359b653a68f717e',1,'GpgFrontend::GpgKeyOpera']]], - ['destructor_118',['Destructor',['../structGpgFrontend_1_1Thread_1_1Task_1_1DataObject_1_1Destructor.html',1,'GpgFrontend::Thread::Task::DataObject']]], - ['detect_119',['Detect',['../classGpgFrontend_1_1CharsetOperator.html#a5a444a0fbd508f6af6a56f4151c21c1f',1,'GpgFrontend::CharsetOperator']]], - ['detect_5fcr_5flf_120',['detect_cr_lf',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#af08be6a1eaec76403b12dc6e42df546c',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['detect_5fencoding_121',['detect_encoding',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a14b7431a786ce59e98576e3680cb9a58',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['dragenterevent_122',['dragEnterEvent',['../classGpgFrontend_1_1UI_1_1KeyList.html#ae3ad87e114432b0d659a0297d520d72f',1,'GpgFrontend::UI::KeyList']]], - ['dropevent_123',['dropEvent',['../classGpgFrontend_1_1UI_1_1KeyList.html#a23ebf79be8de637560d41afd0433c35f',1,'GpgFrontend::UI::KeyList']]] + ['dataobject_111',['DataObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html',1,'GpgFrontend::Thread::Task']]], + ['dataobjectoperator_112',['DataObjectOperator',['../classGpgFrontend_1_1DataObjectOperator.html#a3a8ae5c36fec01d0d5c3e5f9aed457a6',1,'GpgFrontend::DataObjectOperator::DataObjectOperator()'],['../classGpgFrontend_1_1DataObjectOperator.html',1,'GpgFrontend::DataObjectOperator']]], + ['date_5fedit_5f_113',['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_114',['Decrypt',['../classGpgFrontend_1_1GpgBasicOperator.html#a9ea9e81194917e08f46eb657281b7953',1,'GpgFrontend::GpgBasicOperator']]], + ['decrypt_5fact_5f_115',['decrypt_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa92246123272e3e1085f22612aedf48f',1,'GpgFrontend::UI::MainWindow']]], + ['decrypt_5fverify_5fact_5f_116',['decrypt_verify_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a70d2b2311708ab023466d343f2e914b1',1,'GpgFrontend::UI::MainWindow']]], + ['decryptfile_117',['DecryptFile',['../classGpgFrontend_1_1GpgFileOpera.html#a74eb3ba532a236d8ad284b41265b0ccd',1,'GpgFrontend::GpgFileOpera']]], + ['decryptverify_118',['DecryptVerify',['../classGpgFrontend_1_1GpgBasicOperator.html#a11845a9a3ea2941e14faa9130f0ac9ef',1,'GpgFrontend::GpgBasicOperator']]], + ['decryptverifyfile_119',['DecryptVerifyFile',['../classGpgFrontend_1_1GpgFileOpera.html#a90949b4e9e6116784260cd0e416551db',1,'GpgFrontend::GpgFileOpera']]], + ['delete_5fkeys_5fwith_5fwarning_120',['delete_keys_with_warning',['../classGpgFrontend_1_1UI_1_1KeyMgmt.html#a0b139ae0d4baa234932cf228e94abd6b',1,'GpgFrontend::UI::KeyMgmt']]], + ['delete_5fwidgets_5fin_5flayout_121',['delete_widgets_in_layout',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a852c1fe10c7d3153a2146bcea4dbe9ad',1,'GpgFrontend::UI::InfoBoardWidget']]], + ['deletekey_122',['DeleteKey',['../classGpgFrontend_1_1GpgKeyOpera.html#a151c47b997951e9162f8b036c3cb15e0',1,'GpgFrontend::GpgKeyOpera']]], + ['deletekeys_123',['DeleteKeys',['../classGpgFrontend_1_1GpgKeyOpera.html#a8a06d0f7a600d4428359b653a68f717e',1,'GpgFrontend::GpgKeyOpera']]], + ['destructor_124',['Destructor',['../structGpgFrontend_1_1Thread_1_1Task_1_1DataObject_1_1Destructor.html',1,'GpgFrontend::Thread::Task::DataObject']]], + ['detect_125',['Detect',['../classGpgFrontend_1_1CharsetOperator.html#a5a444a0fbd508f6af6a56f4151c21c1f',1,'GpgFrontend::CharsetOperator']]], + ['detect_5fcr_5flf_126',['detect_cr_lf',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#af08be6a1eaec76403b12dc6e42df546c',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['detect_5fencoding_127',['detect_encoding',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a14b7431a786ce59e98576e3680cb9a58',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['dragenterevent_128',['dragEnterEvent',['../classGpgFrontend_1_1UI_1_1KeyList.html#ae3ad87e114432b0d659a0297d520d72f',1,'GpgFrontend::UI::KeyList']]], + ['dropevent_129',['dropEvent',['../classGpgFrontend_1_1UI_1_1KeyList.html#a23ebf79be8de637560d41afd0433c35f',1,'GpgFrontend::UI::KeyList']]] ]; diff --git a/docs/html/search/all_5.js b/docs/html/search/all_5.js index 39e481e8..9be59f2e 100644 --- a/docs/html/search/all_5.js +++ b/docs/html/search/all_5.js @@ -1,27 +1,28 @@ var searchData= [ - ['edit_5f_124',['edit_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7aa41c90105fd4c2931895d8dfb5ec45',1,'GpgFrontend::UI::MainWindow']]], - ['edit_5fmenu_5f_125',['edit_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a6d681a306c137dc107088d60b09a925f',1,'GpgFrontend::UI::MainWindow']]], - ['edit_5ftool_5fbar_5f_126',['edit_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab531823acdbfb117c82a9906ce2107b9',1,'GpgFrontend::UI::MainWindow']]], - ['email_5fedit_5f_127',['email_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3453d1a8a4c0411472b2779d018abdc3',1,'GpgFrontend::UI::KeyGenDialog']]], - ['email_5fvar_5flabel_5f_128',['email_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a8c71b37aa040da50cb0105489a42e60d',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['encrypt_129',['Encrypt',['../classGpgFrontend_1_1GpgBasicOperator.html#a32e1eac6bb0f322588ae75ae36a9884a',1,'GpgFrontend::GpgBasicOperator']]], - ['encrypt_5fact_5f_130',['encrypt_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad6a2cecb2846b324604c4abd1fb7d11a',1,'GpgFrontend::UI::MainWindow']]], - ['encrypt_5fsign_5fact_5f_131',['encrypt_sign_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2417c807356e3b876ecb2f572568670b',1,'GpgFrontend::UI::MainWindow']]], - ['encryptfile_132',['EncryptFile',['../classGpgFrontend_1_1GpgFileOpera.html#a234d939ae0b2c3f799dd01130fad9379',1,'GpgFrontend::GpgFileOpera']]], - ['encryptfilesymmetric_133',['EncryptFileSymmetric',['../classGpgFrontend_1_1GpgFileOpera.html#a826efca057afb07157453b3b9e267b0f',1,'GpgFrontend::GpgFileOpera']]], - ['encryptsign_134',['EncryptSign',['../classGpgFrontend_1_1GpgBasicOperator.html#a08906cf2bc2ddad8489438610f388f8a',1,'GpgFrontend::GpgBasicOperator']]], - ['encryptsignfile_135',['EncryptSignFile',['../classGpgFrontend_1_1GpgFileOpera.html#a6353e1688b113e5746aced6aa7f3876e',1,'GpgFrontend::GpgFileOpera']]], - ['encryptsymmetric_136',['EncryptSymmetric',['../classGpgFrontend_1_1GpgBasicOperator.html#a8f4ef57e941a066ad9d070eee51e2073',1,'GpgFrontend::GpgBasicOperator']]], - ['error_5flabel_5f_137',['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_138',['error_messages_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a03a8e1c8f2c1887732d36a346185bb40',1,'GpgFrontend::UI::KeyGenDialog']]], - ['execute_139',['Execute',['../classGpgFrontend_1_1GpgCommandExecutor.html#affa984ec4c2982c527761289f73c1ab4',1,'GpgFrontend::GpgCommandExecutor']]], - ['expire_5fcheck_5fbox_5f_140',['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_141',['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_()']]], - ['exportkey_142',['ExportKey',['../classGpgFrontend_1_1GpgKeyImportExporter.html#a51cb18aa7302d7a48ccd1ee17f060391',1,'GpgFrontend::GpgKeyImportExporter']]], - ['exportkeyopenssh_143',['ExportKeyOpenSSH',['../classGpgFrontend_1_1GpgKeyImportExporter.html#aa0a73314ef94f397e2ef53d40abc9731',1,'GpgFrontend::GpgKeyImportExporter']]], - ['exportkeypackagedialog_144',['ExportKeyPackageDialog',['../classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html#a7d1899302ef743671c3002d04f6c9dd8',1,'GpgFrontend::UI::ExportKeyPackageDialog::ExportKeyPackageDialog()'],['../classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html',1,'GpgFrontend::UI::ExportKeyPackageDialog']]], - ['exportkeys_145',['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_146',['ExportSecretKey',['../classGpgFrontend_1_1GpgKeyImportExporter.html#a6a5e8d642ac5a3e98799af6495ef590b',1,'GpgFrontend::GpgKeyImportExporter']]], - ['exportsecretkeyshortest_147',['ExportSecretKeyShortest',['../classGpgFrontend_1_1GpgKeyImportExporter.html#abf7c0442549ae8602e1249cdf0da55df',1,'GpgFrontend::GpgKeyImportExporter']]] + ['edit_5f_130',['edit_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7aa41c90105fd4c2931895d8dfb5ec45',1,'GpgFrontend::UI::MainWindow']]], + ['edit_5fmenu_5f_131',['edit_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a6d681a306c137dc107088d60b09a925f',1,'GpgFrontend::UI::MainWindow']]], + ['edit_5ftool_5fbar_5f_132',['edit_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab531823acdbfb117c82a9906ce2107b9',1,'GpgFrontend::UI::MainWindow']]], + ['email_5fedit_5f_133',['email_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3453d1a8a4c0411472b2779d018abdc3',1,'GpgFrontend::UI::KeyGenDialog']]], + ['email_5fvar_5flabel_5f_134',['email_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a8c71b37aa040da50cb0105489a42e60d',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['encrypt_135',['Encrypt',['../classGpgFrontend_1_1GpgBasicOperator.html#a32e1eac6bb0f322588ae75ae36a9884a',1,'GpgFrontend::GpgBasicOperator']]], + ['encrypt_5fact_5f_136',['encrypt_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad6a2cecb2846b324604c4abd1fb7d11a',1,'GpgFrontend::UI::MainWindow']]], + ['encrypt_5fsign_5fact_5f_137',['encrypt_sign_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2417c807356e3b876ecb2f572568670b',1,'GpgFrontend::UI::MainWindow']]], + ['encryptfile_138',['EncryptFile',['../classGpgFrontend_1_1GpgFileOpera.html#a234d939ae0b2c3f799dd01130fad9379',1,'GpgFrontend::GpgFileOpera']]], + ['encryptfilesymmetric_139',['EncryptFileSymmetric',['../classGpgFrontend_1_1GpgFileOpera.html#a826efca057afb07157453b3b9e267b0f',1,'GpgFrontend::GpgFileOpera']]], + ['encryptsign_140',['EncryptSign',['../classGpgFrontend_1_1GpgBasicOperator.html#a08906cf2bc2ddad8489438610f388f8a',1,'GpgFrontend::GpgBasicOperator']]], + ['encryptsignfile_141',['EncryptSignFile',['../classGpgFrontend_1_1GpgFileOpera.html#a6353e1688b113e5746aced6aa7f3876e',1,'GpgFrontend::GpgFileOpera']]], + ['encryptsymmetric_142',['EncryptSymmetric',['../classGpgFrontend_1_1GpgBasicOperator.html#a8f4ef57e941a066ad9d070eee51e2073',1,'GpgFrontend::GpgBasicOperator']]], + ['error_5flabel_5f_143',['error_label_',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a75f325b4a5aa8bcfcc411bdaf9279683',1,'GpgFrontend::UI::SubkeyGenerateDialog::error_label_()'],['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a8e500e3153558364fe5ba5b8bab6f219',1,'GpgFrontend::UI::KeyGenDialog::error_label_()']]], + ['error_5fmessages_5f_144',['error_messages_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a03a8e1c8f2c1887732d36a346185bb40',1,'GpgFrontend::UI::KeyGenDialog']]], + ['execute_145',['Execute',['../classGpgFrontend_1_1GpgCommandExecutor.html#affa984ec4c2982c527761289f73c1ab4',1,'GpgFrontend::GpgCommandExecutor']]], + ['expire_5fcheck_5fbox_5f_146',['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_147',['expire_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aedc0e13ba1b64782e40f7c14af77f8f0',1,'GpgFrontend::UI::KeyPairDetailTab::expire_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a72b94f3e8d11c44d1b4e3653ab885927',1,'GpgFrontend::UI::KeyPairSubkeyTab::expire_var_label_()']]], + ['exportallkeys_148',['ExportAllKeys',['../classGpgFrontend_1_1GpgKeyImportExporter.html#ae7d61a8c39ef7e7f1562895dbf108e68',1,'GpgFrontend::GpgKeyImportExporter']]], + ['exportkey_149',['ExportKey',['../classGpgFrontend_1_1GpgKeyImportExporter.html#a51cb18aa7302d7a48ccd1ee17f060391',1,'GpgFrontend::GpgKeyImportExporter']]], + ['exportkeyopenssh_150',['ExportKeyOpenSSH',['../classGpgFrontend_1_1GpgKeyImportExporter.html#aa0a73314ef94f397e2ef53d40abc9731',1,'GpgFrontend::GpgKeyImportExporter']]], + ['exportkeypackagedialog_151',['ExportKeyPackageDialog',['../classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html#a7d1899302ef743671c3002d04f6c9dd8',1,'GpgFrontend::UI::ExportKeyPackageDialog::ExportKeyPackageDialog()'],['../classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html',1,'GpgFrontend::UI::ExportKeyPackageDialog']]], + ['exportkeys_152',['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_153',['ExportSecretKey',['../classGpgFrontend_1_1GpgKeyImportExporter.html#a6a5e8d642ac5a3e98799af6495ef590b',1,'GpgFrontend::GpgKeyImportExporter']]], + ['exportsecretkeyshortest_154',['ExportSecretKeyShortest',['../classGpgFrontend_1_1GpgKeyImportExporter.html#abf7c0442549ae8602e1249cdf0da55df',1,'GpgFrontend::GpgKeyImportExporter']]] ]; diff --git a/docs/html/search/all_6.js b/docs/html/search/all_6.js index 7c3dab6c..099ed198 100644 --- a/docs/html/search/all_6.js +++ b/docs/html/search/all_6.js @@ -1,19 +1,19 @@ var searchData= [ - ['fetchkey_148',['FetchKey',['../classGpgFrontend_1_1GpgKeyGetter.html#afe78ac470287d70e7df51aae327b9f54',1,'GpgFrontend::GpgKeyGetter']]], - ['file_5fmenu_5f_149',['file_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af08c62c38a750382ee218191c8e13f4f',1,'GpgFrontend::UI::MainWindow']]], - ['file_5ftool_5fbar_5f_150',['file_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1e0d23d361b8e339ca85410db2bdfb64',1,'GpgFrontend::UI::MainWindow']]], - ['fileoperator_151',['FileOperator',['../classGpgFrontend_1_1FileOperator.html',1,'GpgFrontend']]], - ['filepage_152',['FilePage',['../classGpgFrontend_1_1UI_1_1FilePage.html#a48fb14a3296f19f9b1c3b9b48c3a1bf3',1,'GpgFrontend::UI::FilePage::FilePage()'],['../classGpgFrontend_1_1UI_1_1FilePage.html',1,'GpgFrontend::UI::FilePage']]], - ['filereadtask_153',['FileReadTask',['../classGpgFrontend_1_1UI_1_1FileReadTask.html',1,'GpgFrontend::UI']]], - ['find_5fact_5f_154',['find_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a6154f5dbdc9cebc0644e5d1e25895df8',1,'GpgFrontend::UI::MainWindow']]], - ['find_5fedit_5f_155',['find_edit_',['../classGpgFrontend_1_1UI_1_1FindWidget.html#af420832720942dd1e7cb3f3841c7cbfe',1,'GpgFrontend::UI::FindWidget']]], - ['findobjectinchannel_156',['FindObjectInChannel',['../classGpgFrontend_1_1SingletonStorage.html#a4c16c32e549494e394a0ddd859890a02',1,'GpgFrontend::SingletonStorage']]], - ['findwidget_157',['FindWidget',['../classGpgFrontend_1_1UI_1_1FindWidget.html#a495f281e72e5ddc10c8e944183b96dd9',1,'GpgFrontend::UI::FindWidget::FindWidget()'],['../classGpgFrontend_1_1UI_1_1FindWidget.html',1,'GpgFrontend::UI::FindWidget']]], - ['fingerprint_5fbox_5f_158',['fingerprint_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#ada1c21cf59f1f19dfd4ffe0391bc1594',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['fingerprint_5fvar_5flabel_5f_159',['fingerprint_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a1bb1519e5cce51ad5796065232f66ad6',1,'GpgFrontend::UI::KeyPairDetailTab::fingerprint_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a11a6e8aca1754d513ea91192ee0315bf',1,'GpgFrontend::UI::KeyPairSubkeyTab::fingerprint_var_label_()']]], - ['flushkeycache_160',['FlushKeyCache',['../classGpgFrontend_1_1GpgKeyGetter.html#ad9a902ea54566d4583304b072c4add51',1,'GpgFrontend::GpgKeyGetter']]], - ['fpr_5f_161',['fpr_',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#a36bf3306b8564b49da04eee1dc653675',1,'GpgFrontend::UI::VerifyKeyDetailBox']]], - ['free_5fheap_5fptr_162',['free_heap_ptr',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a17252d07835dab3772381639ec8473ea',1,'GpgFrontend::Thread::Task::DataObject']]], - ['full_5ffile_5fpath_5f_163',['full_file_path_',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#ae867b6329fcb1978479a9d70f7b017db',1,'GpgFrontend::UI::PlainTextEditorPage']]] + ['fetchkey_155',['FetchKey',['../classGpgFrontend_1_1GpgKeyGetter.html#afe78ac470287d70e7df51aae327b9f54',1,'GpgFrontend::GpgKeyGetter']]], + ['file_5fmenu_5f_156',['file_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af08c62c38a750382ee218191c8e13f4f',1,'GpgFrontend::UI::MainWindow']]], + ['file_5ftool_5fbar_5f_157',['file_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1e0d23d361b8e339ca85410db2bdfb64',1,'GpgFrontend::UI::MainWindow']]], + ['fileoperator_158',['FileOperator',['../classGpgFrontend_1_1FileOperator.html',1,'GpgFrontend']]], + ['filepage_159',['FilePage',['../classGpgFrontend_1_1UI_1_1FilePage.html#a48fb14a3296f19f9b1c3b9b48c3a1bf3',1,'GpgFrontend::UI::FilePage::FilePage()'],['../classGpgFrontend_1_1UI_1_1FilePage.html',1,'GpgFrontend::UI::FilePage']]], + ['filereadtask_160',['FileReadTask',['../classGpgFrontend_1_1UI_1_1FileReadTask.html',1,'GpgFrontend::UI']]], + ['find_5fact_5f_161',['find_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a6154f5dbdc9cebc0644e5d1e25895df8',1,'GpgFrontend::UI::MainWindow']]], + ['find_5fedit_5f_162',['find_edit_',['../classGpgFrontend_1_1UI_1_1FindWidget.html#af420832720942dd1e7cb3f3841c7cbfe',1,'GpgFrontend::UI::FindWidget']]], + ['findobjectinchannel_163',['FindObjectInChannel',['../classGpgFrontend_1_1SingletonStorage.html#a4c16c32e549494e394a0ddd859890a02',1,'GpgFrontend::SingletonStorage']]], + ['findwidget_164',['FindWidget',['../classGpgFrontend_1_1UI_1_1FindWidget.html#a495f281e72e5ddc10c8e944183b96dd9',1,'GpgFrontend::UI::FindWidget::FindWidget()'],['../classGpgFrontend_1_1UI_1_1FindWidget.html',1,'GpgFrontend::UI::FindWidget']]], + ['fingerprint_5fbox_5f_165',['fingerprint_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#ada1c21cf59f1f19dfd4ffe0391bc1594',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['fingerprint_5fvar_5flabel_5f_166',['fingerprint_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a1bb1519e5cce51ad5796065232f66ad6',1,'GpgFrontend::UI::KeyPairDetailTab::fingerprint_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a11a6e8aca1754d513ea91192ee0315bf',1,'GpgFrontend::UI::KeyPairSubkeyTab::fingerprint_var_label_()']]], + ['flushkeycache_167',['FlushKeyCache',['../classGpgFrontend_1_1GpgKeyGetter.html#ad9a902ea54566d4583304b072c4add51',1,'GpgFrontend::GpgKeyGetter']]], + ['fpr_5f_168',['fpr_',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#a36bf3306b8564b49da04eee1dc653675',1,'GpgFrontend::UI::VerifyKeyDetailBox']]], + ['free_5fheap_5fptr_169',['free_heap_ptr',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a17252d07835dab3772381639ec8473ea',1,'GpgFrontend::Thread::Task::DataObject']]], + ['full_5ffile_5fpath_5f_170',['full_file_path_',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#ae867b6329fcb1978479a9d70f7b017db',1,'GpgFrontend::UI::PlainTextEditorPage']]] ]; diff --git a/docs/html/search/all_7.js b/docs/html/search/all_7.js index 192014b6..9db11b25 100644 --- a/docs/html/search/all_7.js +++ b/docs/html/search/all_7.js @@ -1,143 +1,144 @@ var searchData= [ - ['generaldialog_164',['GeneralDialog',['../classGpgFrontend_1_1UI_1_1GeneralDialog.html#ac9de4c49668ffaeb6916c64f878a202c',1,'GpgFrontend::UI::GeneralDialog::GeneralDialog()'],['../classGpgFrontend_1_1UI_1_1GeneralDialog.html',1,'GpgFrontend::UI::GeneralDialog']]], - ['generalmainwindow_165',['GeneralMainWindow',['../classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a62b24183ebf9da18852084879bcb1013',1,'GpgFrontend::UI::GeneralMainWindow::GeneralMainWindow()'],['../classGpgFrontend_1_1UI_1_1GeneralMainWindow.html',1,'GpgFrontend::UI::GeneralMainWindow']]], - ['generaltab_166',['GeneralTab',['../classGpgFrontend_1_1UI_1_1GeneralTab.html#a214079dfbacdc6898146c8468611cf0c',1,'GpgFrontend::UI::GeneralTab::GeneralTab()'],['../classGpgFrontend_1_1UI_1_1GeneralTab.html',1,'GpgFrontend::UI::GeneralTab']]], - ['generate_167',['Generate',['../classGpgFrontend_1_1PassphraseGenerator.html#a8b4ee1083343fba6d947b85cd66079b8',1,'GpgFrontend::PassphraseGenerator']]], - ['generate_5fkey_5fpackage_5fname_168',['generate_key_package_name',['../classGpgFrontend_1_1KeyPackageOperator.html#a825d987dacd8a99d9d87729e1861a152',1,'GpgFrontend::KeyPackageOperator']]], - ['generate_5fuuid_169',['generate_uuid',['../classGpgFrontend_1_1Thread_1_1Task.html#a96d087abb7cf99d16f778f1a93b4f9e5',1,'GpgFrontend::Thread::Task']]], - ['generatekey_170',['GenerateKey',['../classGpgFrontend_1_1GpgKeyOpera.html#a4cc3ac91613164d7dc61a016a2b4caea',1,'GpgFrontend::GpgKeyOpera']]], - ['generatekeypackage_171',['GenerateKeyPackage',['../classGpgFrontend_1_1KeyPackageOperator.html#ade02f022e405e98377343c4667c206e9',1,'GpgFrontend::KeyPackageOperator']]], - ['generatekeypackagename_172',['GenerateKeyPackageName',['../classGpgFrontend_1_1KeyPackageOperator.html#ae90b362a32b6f6014cda1dc232bd3f0e',1,'GpgFrontend::KeyPackageOperator']]], - ['generatepassphrase_173',['GeneratePassphrase',['../classGpgFrontend_1_1KeyPackageOperator.html#a6d9cf022a1e0cf54c061495f59c1b4b9',1,'GpgFrontend::KeyPackageOperator']]], - ['generaterevokecert_174',['GenerateRevokeCert',['../classGpgFrontend_1_1GpgKeyOpera.html#a91a9a9f24f6b620ea7b906c529e3d9a4',1,'GpgFrontend::GpgKeyOpera']]], - ['generatesubkey_175',['GenerateSubkey',['../classGpgFrontend_1_1GpgKeyOpera.html#a882d99e8407cc22fb8b6e61c531fbe85',1,'GpgFrontend::GpgKeyOpera']]], - ['genkeyinfo_176',['GenKeyInfo',['../classGpgFrontend_1_1GenKeyInfo.html#a34eca1662ba8d4645751f3ee66582b04',1,'GpgFrontend::GenKeyInfo::GenKeyInfo()'],['../classGpgFrontend_1_1GenKeyInfo.html',1,'GpgFrontend::GenKeyInfo']]], - ['get_5ffile_5fextension_177',['get_file_extension',['../namespaceGpgFrontend.html#acff2cf5dd5b112b324fa6574ee935f79',1,'GpgFrontend']]], - ['get_5fheap_5fptr_178',['get_heap_ptr',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a0e1ab5e5bf5ef647a30a5ee2884ac63a',1,'GpgFrontend::Thread::Task::DataObject']]], - ['get_5fkey_5fin_5fcache_179',['get_key_in_cache',['../classGpgFrontend_1_1GpgKeyGetter.html#ab5196ef4ed5323fc2af70abf801ea260',1,'GpgFrontend::GpgKeyGetter']]], - ['get_5fonly_5ffile_5fname_5fwith_5fpath_180',['get_only_file_name_with_path',['../namespaceGpgFrontend.html#a5a2f5fc1ad3de55e41a1b7a388821328',1,'GpgFrontend']]], - ['get_5frestart_5fneeded_181',['get_restart_needed',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#a0d66e360dfbcf79403351459721c3981',1,'GpgFrontend::UI::SettingsDialog::get_restart_needed()'],['../classGpgFrontend_1_1UI_1_1MainWindow.html#a5e95f62dac9fba1ead6ec69c145923db',1,'GpgFrontend::UI::MainWindow::get_restart_needed()']]], - ['get_5fselected_5fsubkey_182',['get_selected_subkey',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#aedc5f77d6bf9b780b96552a43b323feb',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], - ['get_5fsign_5fselected_183',['get_sign_selected',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a2d7c328d726436061f19a287e481268d',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['get_5fstatus_5fstring_184',['get_status_string',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#ae682853c7eccfd3a6be43765f162f5a4',1,'GpgFrontend::UI::KeyImportDetailDialog']]], - ['get_5fuid_5fchecked_185',['get_uid_checked',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a7898b6fa328bfbc55ee2721bca4b2af1',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['get_5fuid_5fselected_186',['get_uid_selected',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a161bc9787be40a32f487c79faaeb54bf',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['getalgo_187',['GetAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#a6a65ba347156373b6cf98eb8e851d28d',1,'GpgFrontend::GenKeyInfo']]], - ['getallchannelid_188',['GetAllChannelId',['../classGpgFrontend_1_1SingletonFunctionObject.html#a5f2f0474871971f86ff91fb6a2408621',1,'GpgFrontend::SingletonFunctionObject::GetAllChannelId()'],['../classGpgFrontend_1_1SingletonStorage.html#a3f09424ebdc097fbdab77564a7d723ea',1,'GpgFrontend::SingletonStorage::GetAllChannelId()']]], - ['getallprivatekeys_189',['GetAllPrivateKeys',['../classGpgFrontend_1_1UI_1_1KeyList.html#a7ead8845ceb7c9310e3f4742251e1d87',1,'GpgFrontend::UI::KeyList']]], - ['getappdir_190',['GetAppDir',['../classGpgFrontend_1_1GlobalSettingStation.html#ae9d1da3d01c4a834120968636596c3c3',1,'GpgFrontend::GlobalSettingStation']]], - ['getbrowser_191',['GetBrowser',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a92c31eea47b42be28c86431384b27846',1,'GpgFrontend::UI::HelpPage']]], - ['getcertsdir_192',['GetCertsDir',['../classGpgFrontend_1_1GlobalSettingStation.html#a385ae4ab6ad5b17742a5405fa693d789',1,'GpgFrontend::GlobalSettingStation']]], - ['getchannel_193',['GetChannel',['../classGpgFrontend_1_1ChannelObject.html#a0e13a4bff1cfb679f68a3a2590a3b1b8',1,'GpgFrontend::ChannelObject::GetChannel()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#aa99440b9177f5d0c18840f08a40d64b7',1,'GpgFrontend::SingletonFunctionObject::GetChannel()']]], - ['getchecked_194',['GetChecked',['../structGpgFrontend_1_1UI_1_1KeyTable.html#a77eba4055ecb7d32fab06f65b80ae07e',1,'GpgFrontend::UI::KeyTable::GetChecked()'],['../classGpgFrontend_1_1UI_1_1KeyList.html#ac1e5046770c36f67aab34715e50c0a33',1,'GpgFrontend::UI::KeyList::GetChecked()'],['../classGpgFrontend_1_1UI_1_1KeyList.html#a4e5862299b0aebe07daf8fbc642a4c38',1,'GpgFrontend::UI::KeyList::GetChecked(const KeyTable &key_table)']]], - ['getcheckedsigners_195',['GetCheckedSigners',['../classGpgFrontend_1_1UI_1_1SignersPicker.html#a2e98dcdf647a2e0e6455998b018aed00',1,'GpgFrontend::UI::SignersPicker']]], - ['getcomment_196',['GetComment',['../classGpgFrontend_1_1GenKeyInfo.html#ab9f9775fd6363fba372bd0bcc2532892',1,'GpgFrontend::GenKeyInfo::GetComment()'],['../classGpgFrontend_1_1GpgUID.html#a572cf652da288537bdc3f88b4fb1ab18',1,'GpgFrontend::GpgUID::GetComment()'],['../classGpgFrontend_1_1GpgKeySignature.html#a8b025f50bc527b0bbe58bd016bb47772',1,'GpgFrontend::GpgKeySignature::GetComment()'],['../classGpgFrontend_1_1GpgKey.html#af72de794e24876b0e22a8d318ec0f8ad',1,'GpgFrontend::GpgKey::GetComment() const']]], - ['getcreatetime_197',['GetCreateTime',['../classGpgFrontend_1_1GpgKey.html#a3fd5bfe6e9fd5f016b854fc92f19146e',1,'GpgFrontend::GpgKey::GetCreateTime()'],['../classGpgFrontend_1_1GpgKeySignature.html#adc8ad65688a6dab0993cf655f5361df8',1,'GpgFrontend::GpgKeySignature::GetCreateTime()'],['../classGpgFrontend_1_1GpgSignature.html#a222e57e5992e5e91ca36d8dcc77fd402',1,'GpgFrontend::GpgSignature::GetCreateTime()'],['../classGpgFrontend_1_1GpgSubKey.html#a5e897d439606a35103a0b260be28c6a4',1,'GpgFrontend::GpgSubKey::GetCreateTime()']]], - ['getdefaultchannel_198',['GetDefaultChannel',['../classGpgFrontend_1_1ChannelObject.html#aece9c525c49900734bc1bebf85b644ef',1,'GpgFrontend::ChannelObject::GetDefaultChannel()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a50e2b3794d6553f4231eaec72d9d0a50',1,'GpgFrontend::SingletonFunctionObject::GetDefaultChannel()']]], - ['getdescription_199',['GetDescription',['../classGpgFrontend_1_1GpgTOFUInfo.html#a471a08bc906d74699f394e34d2581b78',1,'GpgFrontend::GpgTOFUInfo']]], - ['getemail_200',['GetEmail',['../classGpgFrontend_1_1GenKeyInfo.html#a76721be08c18907762ba6f6ccc4afc8a',1,'GpgFrontend::GenKeyInfo::GetEmail()'],['../classGpgFrontend_1_1GpgKey.html#a55a6485f6c2cc5bec0fdf02cd7e0d8ea',1,'GpgFrontend::GpgKey::GetEmail()'],['../classGpgFrontend_1_1GpgKeySignature.html#abdff0ce4d5e8b7be0aa2e46e0003b22f',1,'GpgFrontend::GpgKeySignature::GetEmail()'],['../classGpgFrontend_1_1GpgUID.html#a0d1a061c131e5269923dea52be3b3be4',1,'GpgFrontend::GpgUID::GetEmail()']]], - ['getencrcount_201',['GetEncrCount',['../classGpgFrontend_1_1GpgTOFUInfo.html#abc53f7ca1b737ed1a913ad2f90a346e4',1,'GpgFrontend::GpgTOFUInfo']]], - ['getencrlast_202',['GetEncrLast',['../classGpgFrontend_1_1GpgTOFUInfo.html#a03f286ac6f16ec6d33eb3dcfd4e3f6d5',1,'GpgFrontend::GpgTOFUInfo']]], - ['getexpiretime_203',['GetExpireTime',['../classGpgFrontend_1_1GenKeyInfo.html#ac629312630a78e32ee36ba0ff30bc9ff',1,'GpgFrontend::GenKeyInfo::GetExpireTime()'],['../classGpgFrontend_1_1GpgKey.html#a7b1e0398bedaecbfa2757243e5f4f0ab',1,'GpgFrontend::GpgKey::GetExpireTime()'],['../classGpgFrontend_1_1GpgKeySignature.html#a59ab21f52b88355ca36ff5ebd77093a6',1,'GpgFrontend::GpgKeySignature::GetExpireTime()'],['../classGpgFrontend_1_1GpgSignature.html#a0796249b259af85c30873f5c41a01101',1,'GpgFrontend::GpgSignature::GetExpireTime()'],['../classGpgFrontend_1_1GpgSubKey.html#a6696d67af322fa2125d99b50cae50417',1,'GpgFrontend::GpgSubKey::GetExpireTime()']]], - ['getfilepath_204',['GetFilePath',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aff81f0f98a399fa55b6b0ebf2230d4cf',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['getfingerprint_205',['GetFingerprint',['../classGpgFrontend_1_1GpgKey.html#a165b3f645e2c6a4bbd024199e1f1cc9b',1,'GpgFrontend::GpgKey::GetFingerprint()'],['../classGpgFrontend_1_1GpgSignature.html#a627b5206311998dd3f45393344b195be',1,'GpgFrontend::GpgSignature::GetFingerprint()'],['../classGpgFrontend_1_1GpgSubKey.html#a09b00ac6a3b934b816f9522f78e77d59',1,'GpgFrontend::GpgSubKey::GetFingerprint()']]], - ['gethashalgo_206',['GetHashAlgo',['../classGpgFrontend_1_1GpgSignature.html#ace10a3ac7f4dc3888b2ad62157213f1c',1,'GpgFrontend::GpgSignature']]], - ['getid_207',['GetID',['../classGpgFrontend_1_1GpgSubKey.html#a48d3dfbd3aae9523ffbdb916aad8ad53',1,'GpgFrontend::GpgSubKey']]], - ['getid_208',['GetId',['../classGpgFrontend_1_1GpgKey.html#a8930f958f3ca1f5566f63e8c2273837e',1,'GpgFrontend::GpgKey']]], - ['getinfo_209',['GetInfo',['../classGpgFrontend_1_1GpgContext.html#a4a8f6ff37e45979159ab375b2c7d48c3',1,'GpgFrontend::GpgContext']]], - ['getinstance_210',['GetInstance',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#aed529969f54e39e3f9da14ae6dd00d49',1,'GpgFrontend::UI::CommonUtils::GetInstance()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a70484d7cfe9f9dcbcd5f8bb749250f36',1,'GpgFrontend::SingletonFunctionObject::GetInstance()'],['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a9b341a1a903cec0c70a6af4bb230905e',1,'GpgFrontend::UI::GpgFrontendApplication::GetInstance()'],['../classGpgFrontend_1_1UI_1_1SignalStation.html#abe381ce56a7b157a3760b2fd9c3b7419',1,'GpgFrontend::UI::SignalStation::GetInstance()'],['../classGpgFrontend_1_1SingletonStorageCollection.html#ac56d19e0d4b99e7b8a86a017721f3db1',1,'GpgFrontend::SingletonStorageCollection::GetInstance()'],['../classGpgFrontend_1_1CoreCommonUtil.html#a8588dfa6ccb57c055f022b13e2da1e7c',1,'GpgFrontend::CoreCommonUtil::GetInstance()']]], - ['getinvalid_211',['GetInvalid',['../classGpgFrontend_1_1GpgUID.html#a388ad367d353edd5eeb6e529977c924c',1,'GpgFrontend::GpgUID']]], - ['getkey_212',['GetKey',['../classGpgFrontend_1_1GpgKeyGetter.html#a94243d09c9418c8ebf0c7cdab4a2b7f1',1,'GpgFrontend::GpgKeyGetter']]], - ['getkeyid_213',['GetKeyID',['../classGpgFrontend_1_1GpgKeySignature.html#a4277f6deb7c07aaba62fbe8e7867b1fe',1,'GpgFrontend::GpgKeySignature']]], - ['getkeylength_214',['GetKeyLength',['../classGpgFrontend_1_1GenKeyInfo.html#a4927a9091fa2b2f68f6b60ce78ab2fe9',1,'GpgFrontend::GenKeyInfo::GetKeyLength()'],['../classGpgFrontend_1_1GpgSubKey.html#a18d7a2f0a3cee32a123b780f2b8b8708',1,'GpgFrontend::GpgSubKey::GetKeyLength()']]], - ['getkeys_215',['GetKeys',['../classGpgFrontend_1_1GpgKeyGetter.html#aa5979c21af58b874b33c203752dcc805',1,'GpgFrontend::GpgKeyGetter']]], - ['getkeyscopy_216',['GetKeysCopy',['../classGpgFrontend_1_1GpgKeyGetter.html#a028fe69516a51c526bbd2ec4235053ad',1,'GpgFrontend::GpgKeyGetter::GetKeysCopy(const KeyLinkListPtr &keys)'],['../classGpgFrontend_1_1GpgKeyGetter.html#a7ec8d8431a771c602cbfa946d13d6c74',1,'GpgFrontend::GpgKeyGetter::GetKeysCopy(const KeyListPtr &keys)']]], - ['getkeysizestr_217',['GetKeySizeStr',['../classGpgFrontend_1_1GenKeyInfo.html#a0bda4b4161d805582869ec0e56ade07c',1,'GpgFrontend::GenKeyInfo']]], - ['getlastupdatetime_218',['GetLastUpdateTime',['../classGpgFrontend_1_1GpgKey.html#a3532e20298b642f5d312712fa8a791df',1,'GpgFrontend::GpgKey']]], - ['getlatestversion_219',['getLatestVersion',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a7329657135624fc42ad80d821e11befe',1,'GpgFrontend::UI::UpdateTab']]], - ['getlocaledir_220',['GetLocaleDir',['../classGpgFrontend_1_1GlobalSettingStation.html#a0b3780564305e9b210d66ef377c21565',1,'GpgFrontend::GlobalSettingStation']]], - ['getlogdir_221',['GetLogDir',['../classGpgFrontend_1_1GlobalSettingStation.html#a7da9b08291ef2391892f5c9375b8db23',1,'GpgFrontend::GlobalSettingStation']]], - ['getname_222',['GetName',['../classGpgFrontend_1_1GenKeyInfo.html#abb3e1366dca0288bdc42123e55d77335',1,'GpgFrontend::GenKeyInfo::GetName()'],['../classGpgFrontend_1_1GpgUID.html#acca1fff5f12a216b05f2a6186b1e436b',1,'GpgFrontend::GpgUID::GetName()'],['../classGpgFrontend_1_1GpgKeySignature.html#acd5e46397ebea3224761a6af15eea4fb',1,'GpgFrontend::GpgKeySignature::GetName()'],['../classGpgFrontend_1_1GpgKey.html#a7bceca68800c3ada9280c29eaeb5affc',1,'GpgFrontend::GpgKey::GetName()']]], - ['getobjectsize_223',['GetObjectSize',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#aa35e6ad1ef3a5733fb338f3333b5c637',1,'GpgFrontend::Thread::Task::DataObject']]], - ['getownertrust_224',['GetOwnerTrust',['../classGpgFrontend_1_1GpgKey.html#a3327ad34ff14feb75f3fbfc2bfb7fc44',1,'GpgFrontend::GpgKey']]], - ['getpassphrase_225',['GetPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#a890ee16ef6088570360a073a6b531c89',1,'GpgFrontend::GenKeyInfo']]], - ['getpolicy_226',['GetPolicy',['../classGpgFrontend_1_1GpgTOFUInfo.html#a34d1073bb25a8958e70016f3cd6b167f',1,'GpgFrontend::GpgTOFUInfo']]], - ['getprimarykeylength_227',['GetPrimaryKeyLength',['../classGpgFrontend_1_1GpgKey.html#a5b276fdeb438fe14ec2850d799401be6',1,'GpgFrontend::GpgKey']]], - ['getprivatechecked_228',['GetPrivateChecked',['../classGpgFrontend_1_1UI_1_1KeyList.html#a81c2e36427371fa6ae6381870b9b5bdd',1,'GpgFrontend::UI::KeyList']]], - ['getprotocol_229',['GetProtocol',['../classGpgFrontend_1_1GpgKey.html#ad2440a2902c81192d5549fe951ddb130',1,'GpgFrontend::GpgKey']]], - ['getpubkey_230',['GetPubkey',['../classGpgFrontend_1_1GpgKeyGetter.html#a7a8bc7c0f12a11e108051e4c824fc430',1,'GpgFrontend::GpgKeyGetter']]], - ['getpubkeyalgo_231',['GetPubkeyAlgo',['../classGpgFrontend_1_1GpgSubKey.html#a629f904a81c7c09ac9769b3fcf3b48f5',1,'GpgFrontend::GpgSubKey::GetPubkeyAlgo()'],['../classGpgFrontend_1_1GpgSignature.html#ab99e4004f1ad400fd25232312a8ea66b',1,'GpgFrontend::GpgSignature::GetPubkeyAlgo()'],['../classGpgFrontend_1_1GpgKeySignature.html#a217a2a8b31e44d4c9b463470362a1522',1,'GpgFrontend::GpgKeySignature::GetPubkeyAlgo()']]], - ['getpublickeyalgo_232',['GetPublicKeyAlgo',['../classGpgFrontend_1_1GpgKey.html#a1c21bc3b1788753f56272ad73052fc5f',1,'GpgFrontend::GpgKey']]], - ['getresourcedir_233',['GetResourceDir',['../classGpgFrontend_1_1GlobalSettingStation.html#afc1aa3dec55ae4e741f92fce1140a2d0',1,'GpgFrontend::GlobalSettingStation']]], - ['getresultreport_234',['GetResultReport',['../classGpgFrontend_1_1GpgResultAnalyse.html#aa9e35e573ea4c0ebdbb014d1afbaab9d',1,'GpgFrontend::GpgResultAnalyse']]], - ['getrevoked_235',['GetRevoked',['../classGpgFrontend_1_1GpgUID.html#a32450fbf22c64cf522e9a090423344a2',1,'GpgFrontend::GpgUID']]], - ['getselected_236',['GetSelected',['../classGpgFrontend_1_1UI_1_1KeyList.html#a1bcca32b18c539a2ae83c30fc07db544',1,'GpgFrontend::UI::KeyList::GetSelected()'],['../classGpgFrontend_1_1UI_1_1FilePage.html#a3c114d414b96d3e4b2ca833ab6a48605',1,'GpgFrontend::UI::FilePage::GetSelected()']]], - ['getselectedkey_237',['GetSelectedKey',['../classGpgFrontend_1_1UI_1_1KeyList.html#ab4368b81402e2468a9e960de8fb7080f',1,'GpgFrontend::UI::KeyList']]], - ['getsignatures_238',['GetSignatures',['../classGpgFrontend_1_1GpgUID.html#af7b5310b319378c30c488277e95ef601',1,'GpgFrontend::GpgUID::GetSignatures()'],['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a2063acf8262e2c600b14ed1948486ac3',1,'GpgFrontend::GpgVerifyResultAnalyse::GetSignatures()']]], - ['getsigncount_239',['GetSignCount',['../classGpgFrontend_1_1GpgTOFUInfo.html#a681046a3916d0d0cdcf0852bfa76fdb0',1,'GpgFrontend::GpgTOFUInfo']]], - ['getsigners_240',['GetSigners',['../classGpgFrontend_1_1GpgBasicOperator.html#a78f37b8d5afd6c0248665a4415f880cf',1,'GpgFrontend::GpgBasicOperator']]], - ['getsignfirst_241',['GetSignFirst',['../classGpgFrontend_1_1GpgTOFUInfo.html#a788a439b206882c6317162878e2fe0b8',1,'GpgFrontend::GpgTOFUInfo']]], - ['getsignlast_242',['GetSignLast',['../classGpgFrontend_1_1GpgTOFUInfo.html#a746cbcf731af6b19ade42debbf1e2c8f',1,'GpgFrontend::GpgTOFUInfo']]], - ['getsingletonstorage_243',['GetSingletonStorage',['../classGpgFrontend_1_1SingletonStorageCollection.html#a6f933390c54b7f55d5ffb4624074725f',1,'GpgFrontend::SingletonStorageCollection']]], - ['getsizechangestep_244',['GetSizeChangeStep',['../classGpgFrontend_1_1GenKeyInfo.html#ac211a7a615805ae97ff284b46abfeab7',1,'GpgFrontend::GenKeyInfo']]], - ['getstandalonedatabasedir_245',['GetStandaloneDatabaseDir',['../classGpgFrontend_1_1GlobalSettingStation.html#af484ca46c5df831a9dd76f3a88d66332',1,'GpgFrontend::GlobalSettingStation']]], - ['getstandalonegpgbindir_246',['GetStandaloneGpgBinDir',['../classGpgFrontend_1_1GlobalSettingStation.html#aa93b21af9ac6649d5749c83c809f5b00',1,'GpgFrontend::GlobalSettingStation']]], - ['getstatus_247',['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_248',['GetSubKeys',['../classGpgFrontend_1_1GpgKey.html#a746699842f6c49687af0487a8b3b163d',1,'GpgFrontend::GpgKey']]], - ['getsuggestmaxkeysize_249',['GetSuggestMaxKeySize',['../classGpgFrontend_1_1GenKeyInfo.html#ae461a553176ad1ab0c1121ea6de6c8c2',1,'GpgFrontend::GenKeyInfo']]], - ['getsuggestminkeysize_250',['GetSuggestMinKeySize',['../classGpgFrontend_1_1GenKeyInfo.html#a0b1612421148b86919b7130ed148ca51',1,'GpgFrontend::GenKeyInfo']]], - ['getsummary_251',['GetSummary',['../classGpgFrontend_1_1GpgSignature.html#a3b143f6e13b71663d81fc0f326aad17f',1,'GpgFrontend::GpgSignature']]], - ['getsupportedkeyalgo_252',['GetSupportedKeyAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#ac0dbb2d89b1e5f9b272679ba3f24314e',1,'GpgFrontend::GenKeyInfo']]], - ['getsupportedkeyalgostandalone_253',['GetSupportedKeyAlgoStandalone',['../classGpgFrontend_1_1GenKeyInfo.html#afb8315b6612c64b3921b72df98ebcc74',1,'GpgFrontend::GenKeyInfo']]], - ['getsupportedsubkeyalgo_254',['GetSupportedSubkeyAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#a168d6fe5252812f5984ba6d8046c7741',1,'GpgFrontend::GenKeyInfo']]], - ['getsupportedsubkeyalgostandalone_255',['GetSupportedSubkeyAlgoStandalone',['../classGpgFrontend_1_1GenKeyInfo.html#a6819b0ca3ef7712b85ae320030cde023',1,'GpgFrontend::GenKeyInfo']]], - ['gettabidstosave_256',['GetTabIdsToSave',['../classGpgFrontend_1_1UI_1_1QuitDialog.html#aec364c38056b6d92c172f8cdfb5f8e82',1,'GpgFrontend::UI::QuitDialog']]], - ['gettextpage_257',['GetTextPage',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a6218e6e12bdba0228e4ab4276f7fed7a',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['gettofuinfos_258',['GetTofuInfos',['../classGpgFrontend_1_1GpgUID.html#a2a36376484f7c1a4a19377d24e47a0b2',1,'GpgFrontend::GpgUID']]], - ['getuid_259',['GetUID',['../classGpgFrontend_1_1GpgKeySignature.html#a95254ea2c00829b9dc87adc4a317cde5',1,'GpgFrontend::GpgKeySignature::GetUID()'],['../classGpgFrontend_1_1GpgUID.html#a467897d43a18b0cadd2e2e44384f6cdd',1,'GpgFrontend::GpgUID::GetUID()']]], - ['getuids_260',['GetUIDs',['../classGpgFrontend_1_1GpgKey.html#ac8b13b45e487cdc423b78d3017897f99',1,'GpgFrontend::GpgKey']]], - ['getuisettings_261',['GetUISettings',['../classGpgFrontend_1_1GlobalSettingStation.html#a14433405831283cd95091d741614d03b',1,'GpgFrontend::GlobalSettingStation']]], - ['getuserid_262',['GetUserid',['../classGpgFrontend_1_1GenKeyInfo.html#a4ee4a0659e76376d9bfc527c334392e1',1,'GpgFrontend::GenKeyInfo']]], - ['getuuid_263',['GetUUID',['../classGpgFrontend_1_1Thread_1_1Task.html#a50b91d27874af31ef13c493b00824ccf',1,'GpgFrontend::Thread::Task']]], - ['getvalidity_264',['GetValidity',['../classGpgFrontend_1_1GpgSignature.html#a09cb6b465e85dffcf7867e70a276e9ad',1,'GpgFrontend::GpgSignature::GetValidity()'],['../classGpgFrontend_1_1GpgTOFUInfo.html#a8770062c9e0c3875083d2c92ebe8ccb0',1,'GpgFrontend::GpgTOFUInfo::GetValidity()']]], - ['global_5fsetting_5fstation_5f_265',['global_setting_station_',['../classGpgFrontend_1_1DataObjectOperator.html#a3c195f8e4c30d95be14a6d43e9282601',1,'GpgFrontend::DataObjectOperator']]], - ['globalsettingstation_266',['GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html#abdc6dda369d4214e43ffa2930f7386b0',1,'GpgFrontend::GlobalSettingStation::GlobalSettingStation()'],['../classGpgFrontend_1_1GlobalSettingStation.html',1,'GpgFrontend::GlobalSettingStation']]], - ['gnupg_5fact_5f_267',['gnupg_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a79b83f536a7c4299eaa3d22e4e875227',1,'GpgFrontend::UI::MainWindow']]], - ['gnupgtab_268',['GnupgTab',['../classGpgFrontend_1_1UI_1_1GnupgTab.html#ab9d9e8af4494659f13b87804e7318a79',1,'GpgFrontend::UI::GnupgTab::GnupgTab()'],['../classGpgFrontend_1_1UI_1_1GnupgTab.html',1,'GpgFrontend::UI::GnupgTab']]], - ['good_269',['good',['../classGpgFrontend_1_1GpgContext.html#a73c505a2f3d39d1638dc4d9a3e13a913',1,'GpgFrontend::GpgContext']]], - ['gpg_5fmenu_5f_270',['gpg_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2bed0c3b032269c9eb82bc7c068852cb',1,'GpgFrontend::UI::MainWindow']]], - ['gpgadvancedoperator_271',['GpgAdvancedOperator',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a9233156767f1d45272b95decd18241e3',1,'GpgFrontend::GpgAdvancedOperator::GpgAdvancedOperator()'],['../classGpgFrontend_1_1GpgAdvancedOperator.html',1,'GpgFrontend::GpgAdvancedOperator']]], - ['gpgbasicoperator_272',['GpgBasicOperator',['../classGpgFrontend_1_1GpgBasicOperator.html#a139be86330f88e5f833aa24263a3b2ae',1,'GpgFrontend::GpgBasicOperator::GpgBasicOperator()'],['../classGpgFrontend_1_1GpgBasicOperator.html',1,'GpgFrontend::GpgBasicOperator']]], - ['gpgcommandexecutor_273',['GpgCommandExecutor',['../classGpgFrontend_1_1GpgCommandExecutor.html#a94240f423464600938bfcafa2b186c38',1,'GpgFrontend::GpgCommandExecutor::GpgCommandExecutor()'],['../classGpgFrontend_1_1GpgCommandExecutor.html',1,'GpgFrontend::GpgCommandExecutor']]], - ['gpgconstants_274',['GpgConstants',['../classGpgFrontend_1_1GpgConstants.html',1,'GpgFrontend']]], - ['gpgcontext_275',['GpgContext',['../classGpgFrontend_1_1GpgContext.html#a39882b323569987592231f722a2ef147',1,'GpgFrontend::GpgContext::GpgContext(const GpgContextInitArgs &args={})'],['../classGpgFrontend_1_1GpgContext.html#a2429d3f9daa189b4d5d8624c9f4d528b',1,'GpgFrontend::GpgContext::GpgContext(int channel)'],['../classGpgFrontend_1_1GpgContext.html',1,'GpgFrontend::GpgContext']]], - ['gpgcontextinitargs_276',['GpgContextInitArgs',['../structGpgFrontend_1_1GpgContextInitArgs.html',1,'GpgFrontend']]], - ['gpgdata_277',['GpgData',['../classGpgFrontend_1_1GpgData.html#ac3661a9365ad72b0883a2f62ef4647da',1,'GpgFrontend::GpgData::GpgData()'],['../classGpgFrontend_1_1GpgData.html#a5e607c3bb69f998aaac761f400dd6440',1,'GpgFrontend::GpgData::GpgData(void *buffer, size_t size, bool copy=true)'],['../classGpgFrontend_1_1GpgData.html',1,'GpgFrontend::GpgData']]], - ['gpgdecryptresultanalyse_278',['GpgDecryptResultAnalyse',['../classGpgFrontend_1_1GpgDecryptResultAnalyse.html#a442438ae58cdd7220f0e4b0792e5a372',1,'GpgFrontend::GpgDecryptResultAnalyse::GpgDecryptResultAnalyse()'],['../classGpgFrontend_1_1GpgDecryptResultAnalyse.html',1,'GpgFrontend::GpgDecryptResultAnalyse']]], - ['gpgencryptresultanalyse_279',['GpgEncryptResultAnalyse',['../classGpgFrontend_1_1GpgEncryptResultAnalyse.html#a0801e32c8709da373f6715bc994a7747',1,'GpgFrontend::GpgEncryptResultAnalyse::GpgEncryptResultAnalyse()'],['../classGpgFrontend_1_1GpgEncryptResultAnalyse.html',1,'GpgFrontend::GpgEncryptResultAnalyse']]], - ['gpgfileopera_280',['GpgFileOpera',['../classGpgFrontend_1_1GpgFileOpera.html#aa81da3d72c4fbc57e7138bfec7731152',1,'GpgFrontend::GpgFileOpera::GpgFileOpera()'],['../classGpgFrontend_1_1GpgFileOpera.html',1,'GpgFrontend::GpgFileOpera']]], - ['gpgfrontend_281',['GpgFrontend',['../namespaceGpgFrontend.html',1,'']]], - ['gpgfrontend_20develop_20document_20main_20page_282',['GpgFrontend Develop Document Main Page',['../index.html',1,'']]], - ['gpgfrontendapplication_283',['GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html',1,'GpgFrontend::UI::GpgFrontendApplication'],['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#ac0290f06e08f2714f9727bb578df1298',1,'GpgFrontend::UI::GpgFrontendApplication::GpgFrontendApplication()']]], - ['gpgimportedkey_284',['GpgImportedKey',['../classGpgFrontend_1_1GpgImportedKey.html',1,'GpgFrontend']]], - ['gpgimportinformation_285',['GpgImportInformation',['../classGpgFrontend_1_1GpgImportInformation.html',1,'GpgFrontend::GpgImportInformation'],['../classGpgFrontend_1_1GpgImportInformation.html#ab282d4f701403cd68eb02d1aad30be56',1,'GpgFrontend::GpgImportInformation::GpgImportInformation()']]], - ['gpginfo_286',['GpgInfo',['../classGpgFrontend_1_1GpgInfo.html',1,'GpgFrontend']]], - ['gpgkey_287',['GpgKey',['../classGpgFrontend_1_1GpgKey.html',1,'GpgFrontend::GpgKey'],['../classGpgFrontend_1_1GpgKey.html#aeb316f8728b10e966eed6f0291794eed',1,'GpgFrontend::GpgKey::GpgKey(GpgKey &&k) noexcept'],['../classGpgFrontend_1_1GpgKey.html#a1d6e415e77625c1281dac1cc5f33f804',1,'GpgFrontend::GpgKey::GpgKey(const gpgme_key_t &key)=delete'],['../classGpgFrontend_1_1GpgKey.html#aa599159ab1041c2f5a5fbf09666489b9',1,'GpgFrontend::GpgKey::GpgKey(gpgme_key_t &&key)'],['../classGpgFrontend_1_1GpgKey.html#a3b08060c07a9cc207eb8c98771bd4bc1',1,'GpgFrontend::GpgKey::GpgKey()=default']]], - ['gpgkeygetter_288',['GpgKeyGetter',['../classGpgFrontend_1_1GpgKeyGetter.html',1,'GpgFrontend::GpgKeyGetter'],['../classGpgFrontend_1_1GpgKeyGetter.html#a8eeee9f6dd74dc24c24794ce63c62285',1,'GpgFrontend::GpgKeyGetter::GpgKeyGetter()']]], - ['gpgkeyimportexporter_289',['GpgKeyImportExporter',['../classGpgFrontend_1_1GpgKeyImportExporter.html',1,'GpgFrontend::GpgKeyImportExporter'],['../classGpgFrontend_1_1GpgKeyImportExporter.html#a0eede7c782d17b32d6c1f30cd8496561',1,'GpgFrontend::GpgKeyImportExporter::GpgKeyImportExporter()']]], - ['gpgkeymanager_290',['GpgKeyManager',['../classGpgFrontend_1_1GpgKeyManager.html',1,'GpgFrontend::GpgKeyManager'],['../classGpgFrontend_1_1GpgKeyManager.html#a210b717fd8ee63b064d77f32b0df4c5d',1,'GpgFrontend::GpgKeyManager::GpgKeyManager()']]], - ['gpgkeyopera_291',['GpgKeyOpera',['../classGpgFrontend_1_1GpgKeyOpera.html',1,'GpgFrontend::GpgKeyOpera'],['../classGpgFrontend_1_1GpgKeyOpera.html#a01d6a920156a38a34c57d9c49c361079',1,'GpgFrontend::GpgKeyOpera::GpgKeyOpera()']]], - ['gpgkeysignature_292',['GpgKeySignature',['../classGpgFrontend_1_1GpgKeySignature.html',1,'GpgFrontend::GpgKeySignature'],['../classGpgFrontend_1_1GpgKeySignature.html#a8a9c792c963ef610e511b7deb6829c0b',1,'GpgFrontend::GpgKeySignature::GpgKeySignature()'],['../classGpgFrontend_1_1GpgKeySignature.html#abb4571e79c921261c03f57980d502e72',1,'GpgFrontend::GpgKeySignature::GpgKeySignature(gpgme_key_sig_t sig)'],['../classGpgFrontend_1_1GpgKeySignature.html#a9ba501d98265c9677d00e3dca3e8d903',1,'GpgFrontend::GpgKeySignature::GpgKeySignature(GpgKeySignature &&) noexcept'],['../classGpgFrontend_1_1GpgKeySignature.html#a4a501aa3a549a6a6914e2aeed4ff302e',1,'GpgFrontend::GpgKeySignature::GpgKeySignature(const GpgKeySignature &)=delete']]], - ['gpgresultanalyse_293',['GpgResultAnalyse',['../classGpgFrontend_1_1GpgResultAnalyse.html',1,'GpgFrontend::GpgResultAnalyse'],['../classGpgFrontend_1_1GpgResultAnalyse.html#aa3c9bdf1ea4c87476010ef32fd2fb426',1,'GpgFrontend::GpgResultAnalyse::GpgResultAnalyse()']]], - ['gpgsignature_294',['GpgSignature',['../classGpgFrontend_1_1GpgSignature.html',1,'GpgFrontend::GpgSignature'],['../classGpgFrontend_1_1GpgSignature.html#a1b705f45de8f6d0ae97f1ffda28185b7',1,'GpgFrontend::GpgSignature::GpgSignature(const GpgSignature &)=delete'],['../classGpgFrontend_1_1GpgSignature.html#aeae075c7b9c628f558d6fedbc8b9233a',1,'GpgFrontend::GpgSignature::GpgSignature(GpgSignature &&) noexcept'],['../classGpgFrontend_1_1GpgSignature.html#aea05d301ccf75f4a3aec2be58541eca8',1,'GpgFrontend::GpgSignature::GpgSignature(gpgme_signature_t sig)'],['../classGpgFrontend_1_1GpgSignature.html#ab7a4489b35d918503076b2659d14fafe',1,'GpgFrontend::GpgSignature::GpgSignature()']]], - ['gpgsignresultanalyse_295',['GpgSignResultAnalyse',['../classGpgFrontend_1_1GpgSignResultAnalyse.html',1,'GpgFrontend::GpgSignResultAnalyse'],['../classGpgFrontend_1_1GpgSignResultAnalyse.html#a3ddd2d52ad91fdf7f4c8740312570c8e',1,'GpgFrontend::GpgSignResultAnalyse::GpgSignResultAnalyse()']]], - ['gpgsubkey_296',['GpgSubKey',['../classGpgFrontend_1_1GpgSubKey.html',1,'GpgFrontend::GpgSubKey'],['../classGpgFrontend_1_1GpgSubKey.html#a59eba8a9d23429140e9a68126c9c7c5e',1,'GpgFrontend::GpgSubKey::GpgSubKey()'],['../classGpgFrontend_1_1GpgSubKey.html#a3c9605e6ccb7fa53d9c9013453d561fe',1,'GpgFrontend::GpgSubKey::GpgSubKey(gpgme_subkey_t subkey)'],['../classGpgFrontend_1_1GpgSubKey.html#ad12e160dbb394a849d6cf31e614a76f5',1,'GpgFrontend::GpgSubKey::GpgSubKey(GpgSubKey &&o) noexcept'],['../classGpgFrontend_1_1GpgSubKey.html#a6e8df85f8c1dea7705b761e68bb949ab',1,'GpgFrontend::GpgSubKey::GpgSubKey(const GpgSubKey &)=delete']]], - ['gpgtofuinfo_297',['GpgTOFUInfo',['../classGpgFrontend_1_1GpgTOFUInfo.html',1,'GpgFrontend::GpgTOFUInfo'],['../classGpgFrontend_1_1GpgTOFUInfo.html#aaabb02aef76162ed59647445b4c1f6de',1,'GpgFrontend::GpgTOFUInfo::GpgTOFUInfo(gpgme_tofu_info_t tofu_info)'],['../classGpgFrontend_1_1GpgTOFUInfo.html#aa953ff4b877b4b831d34e4a5678b0cd3',1,'GpgFrontend::GpgTOFUInfo::GpgTOFUInfo(GpgTOFUInfo &&o) noexcept'],['../classGpgFrontend_1_1GpgTOFUInfo.html#a4f46d32bc9bf1a1a3bbc32461538a422',1,'GpgFrontend::GpgTOFUInfo::GpgTOFUInfo(const GpgTOFUInfo &)=delete'],['../classGpgFrontend_1_1GpgTOFUInfo.html#a80acb09347a74cc35776d58b9874cf37',1,'GpgFrontend::GpgTOFUInfo::GpgTOFUInfo()']]], - ['gpguid_298',['GpgUID',['../classGpgFrontend_1_1GpgUID.html',1,'GpgFrontend::GpgUID'],['../classGpgFrontend_1_1GpgUID.html#ae1fb528a9d06d6e9f1feaf1bc291fe64',1,'GpgFrontend::GpgUID::GpgUID(gpgme_user_id_t uid)'],['../classGpgFrontend_1_1GpgUID.html#a7210ece9b898981dae83f8d29b1ca453',1,'GpgFrontend::GpgUID::GpgUID(GpgUID &&o) noexcept'],['../classGpgFrontend_1_1GpgUID.html#a35fdcef4ecf2598461bdc596ffc7957c',1,'GpgFrontend::GpgUID::GpgUID()'],['../classGpgFrontend_1_1GpgUID.html#a58ed67984063f0b87e35bc1782a1cc0a',1,'GpgFrontend::GpgUID::GpgUID(const GpgUID &)=delete']]], - ['gpguidoperator_299',['GpgUIDOperator',['../classGpgFrontend_1_1GpgUIDOperator.html',1,'GpgFrontend::GpgUIDOperator'],['../classGpgFrontend_1_1GpgUIDOperator.html#ab74a830c858ab9ff135375743393a7c7',1,'GpgFrontend::GpgUIDOperator::GpgUIDOperator()']]], - ['gpgverifyresultanalyse_300',['GpgVerifyResultAnalyse',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html',1,'GpgFrontend::GpgVerifyResultAnalyse'],['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#ab1d67da5dbe5bd2d665f7121e5f5354b',1,'GpgFrontend::GpgVerifyResultAnalyse::GpgVerifyResultAnalyse()']]], - ['rawapi_301',['RawAPI',['../namespaceGpgFrontend_1_1RawAPI.html',1,'GpgFrontend']]], - ['thread_302',['Thread',['../namespaceGpgFrontend_1_1Thread.html',1,'GpgFrontend']]], - ['ui_303',['UI',['../namespaceGpgFrontend_1_1UI.html',1,'GpgFrontend']]] + ['generaldialog_171',['GeneralDialog',['../classGpgFrontend_1_1UI_1_1GeneralDialog.html#ac9de4c49668ffaeb6916c64f878a202c',1,'GpgFrontend::UI::GeneralDialog::GeneralDialog()'],['../classGpgFrontend_1_1UI_1_1GeneralDialog.html',1,'GpgFrontend::UI::GeneralDialog']]], + ['generalmainwindow_172',['GeneralMainWindow',['../classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a62b24183ebf9da18852084879bcb1013',1,'GpgFrontend::UI::GeneralMainWindow::GeneralMainWindow()'],['../classGpgFrontend_1_1UI_1_1GeneralMainWindow.html',1,'GpgFrontend::UI::GeneralMainWindow']]], + ['generaltab_173',['GeneralTab',['../classGpgFrontend_1_1UI_1_1GeneralTab.html#a214079dfbacdc6898146c8468611cf0c',1,'GpgFrontend::UI::GeneralTab::GeneralTab()'],['../classGpgFrontend_1_1UI_1_1GeneralTab.html',1,'GpgFrontend::UI::GeneralTab']]], + ['generate_174',['Generate',['../classGpgFrontend_1_1PassphraseGenerator.html#a8b4ee1083343fba6d947b85cd66079b8',1,'GpgFrontend::PassphraseGenerator']]], + ['generate_5fkey_5fpackage_5fname_175',['generate_key_package_name',['../classGpgFrontend_1_1KeyPackageOperator.html#a825d987dacd8a99d9d87729e1861a152',1,'GpgFrontend::KeyPackageOperator']]], + ['generate_5fuuid_176',['generate_uuid',['../classGpgFrontend_1_1Thread_1_1Task.html#a96d087abb7cf99d16f778f1a93b4f9e5',1,'GpgFrontend::Thread::Task']]], + ['generatekey_177',['GenerateKey',['../classGpgFrontend_1_1GpgKeyOpera.html#a4cc3ac91613164d7dc61a016a2b4caea',1,'GpgFrontend::GpgKeyOpera']]], + ['generatekeypackage_178',['GenerateKeyPackage',['../classGpgFrontend_1_1KeyPackageOperator.html#ade02f022e405e98377343c4667c206e9',1,'GpgFrontend::KeyPackageOperator']]], + ['generatekeypackagename_179',['GenerateKeyPackageName',['../classGpgFrontend_1_1KeyPackageOperator.html#ae90b362a32b6f6014cda1dc232bd3f0e',1,'GpgFrontend::KeyPackageOperator']]], + ['generatepassphrase_180',['GeneratePassphrase',['../classGpgFrontend_1_1KeyPackageOperator.html#a6d9cf022a1e0cf54c061495f59c1b4b9',1,'GpgFrontend::KeyPackageOperator']]], + ['generaterevokecert_181',['GenerateRevokeCert',['../classGpgFrontend_1_1GpgKeyOpera.html#a91a9a9f24f6b620ea7b906c529e3d9a4',1,'GpgFrontend::GpgKeyOpera']]], + ['generatesubkey_182',['GenerateSubkey',['../classGpgFrontend_1_1GpgKeyOpera.html#a882d99e8407cc22fb8b6e61c531fbe85',1,'GpgFrontend::GpgKeyOpera']]], + ['genkeyinfo_183',['GenKeyInfo',['../classGpgFrontend_1_1GenKeyInfo.html#a34eca1662ba8d4645751f3ee66582b04',1,'GpgFrontend::GenKeyInfo::GenKeyInfo()'],['../classGpgFrontend_1_1GenKeyInfo.html',1,'GpgFrontend::GenKeyInfo']]], + ['get_5ffile_5fextension_184',['get_file_extension',['../namespaceGpgFrontend.html#acff2cf5dd5b112b324fa6574ee935f79',1,'GpgFrontend']]], + ['get_5fheap_5fptr_185',['get_heap_ptr',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a0e1ab5e5bf5ef647a30a5ee2884ac63a',1,'GpgFrontend::Thread::Task::DataObject']]], + ['get_5fkey_5fin_5fcache_186',['get_key_in_cache',['../classGpgFrontend_1_1GpgKeyGetter.html#ab5196ef4ed5323fc2af70abf801ea260',1,'GpgFrontend::GpgKeyGetter']]], + ['get_5fonly_5ffile_5fname_5fwith_5fpath_187',['get_only_file_name_with_path',['../namespaceGpgFrontend.html#a5a2f5fc1ad3de55e41a1b7a388821328',1,'GpgFrontend']]], + ['get_5frestart_5fneeded_188',['get_restart_needed',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#a0d66e360dfbcf79403351459721c3981',1,'GpgFrontend::UI::SettingsDialog::get_restart_needed()'],['../classGpgFrontend_1_1UI_1_1MainWindow.html#a5e95f62dac9fba1ead6ec69c145923db',1,'GpgFrontend::UI::MainWindow::get_restart_needed()']]], + ['get_5fselected_5fsubkey_189',['get_selected_subkey',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#aedc5f77d6bf9b780b96552a43b323feb',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], + ['get_5fsign_5fselected_190',['get_sign_selected',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a2d7c328d726436061f19a287e481268d',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['get_5fstatus_5fstring_191',['get_status_string',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#ae682853c7eccfd3a6be43765f162f5a4',1,'GpgFrontend::UI::KeyImportDetailDialog']]], + ['get_5fuid_5fchecked_192',['get_uid_checked',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a7898b6fa328bfbc55ee2721bca4b2af1',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['get_5fuid_5fselected_193',['get_uid_selected',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a161bc9787be40a32f487c79faaeb54bf',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['getalgo_194',['GetAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#a6a65ba347156373b6cf98eb8e851d28d',1,'GpgFrontend::GenKeyInfo']]], + ['getallchannelid_195',['GetAllChannelId',['../classGpgFrontend_1_1SingletonStorage.html#a3f09424ebdc097fbdab77564a7d723ea',1,'GpgFrontend::SingletonStorage::GetAllChannelId()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a5f2f0474871971f86ff91fb6a2408621',1,'GpgFrontend::SingletonFunctionObject::GetAllChannelId()']]], + ['getallprivatekeys_196',['GetAllPrivateKeys',['../classGpgFrontend_1_1UI_1_1KeyList.html#a7ead8845ceb7c9310e3f4742251e1d87',1,'GpgFrontend::UI::KeyList']]], + ['getappdir_197',['GetAppDir',['../classGpgFrontend_1_1GlobalSettingStation.html#ae9d1da3d01c4a834120968636596c3c3',1,'GpgFrontend::GlobalSettingStation']]], + ['getbrowser_198',['GetBrowser',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a92c31eea47b42be28c86431384b27846',1,'GpgFrontend::UI::HelpPage']]], + ['getcertsdir_199',['GetCertsDir',['../classGpgFrontend_1_1GlobalSettingStation.html#a385ae4ab6ad5b17742a5405fa693d789',1,'GpgFrontend::GlobalSettingStation']]], + ['getchannel_200',['GetChannel',['../classGpgFrontend_1_1ChannelObject.html#a0e13a4bff1cfb679f68a3a2590a3b1b8',1,'GpgFrontend::ChannelObject::GetChannel()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#aa99440b9177f5d0c18840f08a40d64b7',1,'GpgFrontend::SingletonFunctionObject::GetChannel()']]], + ['getchecked_201',['GetChecked',['../structGpgFrontend_1_1UI_1_1KeyTable.html#a77eba4055ecb7d32fab06f65b80ae07e',1,'GpgFrontend::UI::KeyTable::GetChecked()'],['../classGpgFrontend_1_1UI_1_1KeyList.html#ac1e5046770c36f67aab34715e50c0a33',1,'GpgFrontend::UI::KeyList::GetChecked()'],['../classGpgFrontend_1_1UI_1_1KeyList.html#a4e5862299b0aebe07daf8fbc642a4c38',1,'GpgFrontend::UI::KeyList::GetChecked(const KeyTable &key_table)']]], + ['getcheckedsigners_202',['GetCheckedSigners',['../classGpgFrontend_1_1UI_1_1SignersPicker.html#a2e98dcdf647a2e0e6455998b018aed00',1,'GpgFrontend::UI::SignersPicker']]], + ['getcomment_203',['GetComment',['../classGpgFrontend_1_1GpgKey.html#af72de794e24876b0e22a8d318ec0f8ad',1,'GpgFrontend::GpgKey::GetComment()'],['../classGpgFrontend_1_1GpgUID.html#a572cf652da288537bdc3f88b4fb1ab18',1,'GpgFrontend::GpgUID::GetComment()'],['../classGpgFrontend_1_1GpgKeySignature.html#a8b025f50bc527b0bbe58bd016bb47772',1,'GpgFrontend::GpgKeySignature::GetComment()'],['../classGpgFrontend_1_1GenKeyInfo.html#ab9f9775fd6363fba372bd0bcc2532892',1,'GpgFrontend::GenKeyInfo::GetComment()']]], + ['getcreatetime_204',['GetCreateTime',['../classGpgFrontend_1_1GpgKey.html#a3fd5bfe6e9fd5f016b854fc92f19146e',1,'GpgFrontend::GpgKey::GetCreateTime()'],['../classGpgFrontend_1_1GpgKeySignature.html#adc8ad65688a6dab0993cf655f5361df8',1,'GpgFrontend::GpgKeySignature::GetCreateTime()'],['../classGpgFrontend_1_1GpgSignature.html#a222e57e5992e5e91ca36d8dcc77fd402',1,'GpgFrontend::GpgSignature::GetCreateTime()'],['../classGpgFrontend_1_1GpgSubKey.html#a5e897d439606a35103a0b260be28c6a4',1,'GpgFrontend::GpgSubKey::GetCreateTime()']]], + ['getdefaultchannel_205',['GetDefaultChannel',['../classGpgFrontend_1_1ChannelObject.html#aece9c525c49900734bc1bebf85b644ef',1,'GpgFrontend::ChannelObject::GetDefaultChannel()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a50e2b3794d6553f4231eaec72d9d0a50',1,'GpgFrontend::SingletonFunctionObject::GetDefaultChannel()']]], + ['getdescription_206',['GetDescription',['../classGpgFrontend_1_1GpgTOFUInfo.html#a471a08bc906d74699f394e34d2581b78',1,'GpgFrontend::GpgTOFUInfo']]], + ['getemail_207',['GetEmail',['../classGpgFrontend_1_1GpgKey.html#a55a6485f6c2cc5bec0fdf02cd7e0d8ea',1,'GpgFrontend::GpgKey::GetEmail()'],['../classGpgFrontend_1_1GenKeyInfo.html#a76721be08c18907762ba6f6ccc4afc8a',1,'GpgFrontend::GenKeyInfo::GetEmail()'],['../classGpgFrontend_1_1GpgKeySignature.html#abdff0ce4d5e8b7be0aa2e46e0003b22f',1,'GpgFrontend::GpgKeySignature::GetEmail()'],['../classGpgFrontend_1_1GpgUID.html#a0d1a061c131e5269923dea52be3b3be4',1,'GpgFrontend::GpgUID::GetEmail()']]], + ['getencrcount_208',['GetEncrCount',['../classGpgFrontend_1_1GpgTOFUInfo.html#abc53f7ca1b737ed1a913ad2f90a346e4',1,'GpgFrontend::GpgTOFUInfo']]], + ['getencrlast_209',['GetEncrLast',['../classGpgFrontend_1_1GpgTOFUInfo.html#a03f286ac6f16ec6d33eb3dcfd4e3f6d5',1,'GpgFrontend::GpgTOFUInfo']]], + ['getexpiretime_210',['GetExpireTime',['../classGpgFrontend_1_1GenKeyInfo.html#ac629312630a78e32ee36ba0ff30bc9ff',1,'GpgFrontend::GenKeyInfo::GetExpireTime()'],['../classGpgFrontend_1_1GpgKey.html#a7b1e0398bedaecbfa2757243e5f4f0ab',1,'GpgFrontend::GpgKey::GetExpireTime()'],['../classGpgFrontend_1_1GpgKeySignature.html#a59ab21f52b88355ca36ff5ebd77093a6',1,'GpgFrontend::GpgKeySignature::GetExpireTime()'],['../classGpgFrontend_1_1GpgSignature.html#a0796249b259af85c30873f5c41a01101',1,'GpgFrontend::GpgSignature::GetExpireTime()'],['../classGpgFrontend_1_1GpgSubKey.html#a6696d67af322fa2125d99b50cae50417',1,'GpgFrontend::GpgSubKey::GetExpireTime()']]], + ['getfilepath_211',['GetFilePath',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aff81f0f98a399fa55b6b0ebf2230d4cf',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['getfingerprint_212',['GetFingerprint',['../classGpgFrontend_1_1GpgKey.html#a165b3f645e2c6a4bbd024199e1f1cc9b',1,'GpgFrontend::GpgKey::GetFingerprint()'],['../classGpgFrontend_1_1GpgSignature.html#a627b5206311998dd3f45393344b195be',1,'GpgFrontend::GpgSignature::GetFingerprint()'],['../classGpgFrontend_1_1GpgSubKey.html#a09b00ac6a3b934b816f9522f78e77d59',1,'GpgFrontend::GpgSubKey::GetFingerprint()']]], + ['gethashalgo_213',['GetHashAlgo',['../classGpgFrontend_1_1GpgSignature.html#ace10a3ac7f4dc3888b2ad62157213f1c',1,'GpgFrontend::GpgSignature']]], + ['getid_214',['GetID',['../classGpgFrontend_1_1GpgSubKey.html#a48d3dfbd3aae9523ffbdb916aad8ad53',1,'GpgFrontend::GpgSubKey']]], + ['getid_215',['GetId',['../classGpgFrontend_1_1GpgKey.html#a8930f958f3ca1f5566f63e8c2273837e',1,'GpgFrontend::GpgKey']]], + ['getinfo_216',['GetInfo',['../classGpgFrontend_1_1GpgContext.html#a4a8f6ff37e45979159ab375b2c7d48c3',1,'GpgFrontend::GpgContext']]], + ['getinstance_217',['GetInstance',['../classGpgFrontend_1_1UI_1_1SignalStation.html#abe381ce56a7b157a3760b2fd9c3b7419',1,'GpgFrontend::UI::SignalStation::GetInstance()'],['../classGpgFrontend_1_1SingletonStorageCollection.html#ac56d19e0d4b99e7b8a86a017721f3db1',1,'GpgFrontend::SingletonStorageCollection::GetInstance()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a70484d7cfe9f9dcbcd5f8bb749250f36',1,'GpgFrontend::SingletonFunctionObject::GetInstance()'],['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a9b341a1a903cec0c70a6af4bb230905e',1,'GpgFrontend::UI::GpgFrontendApplication::GetInstance()'],['../classGpgFrontend_1_1CoreSignalStation.html#a0c5893909726b919ea733de9906cfb36',1,'GpgFrontend::CoreSignalStation::GetInstance()'],['../classGpgFrontend_1_1CoreCommonUtil.html#a8588dfa6ccb57c055f022b13e2da1e7c',1,'GpgFrontend::CoreCommonUtil::GetInstance()'],['../classGpgFrontend_1_1UI_1_1CommonUtils.html#aed529969f54e39e3f9da14ae6dd00d49',1,'GpgFrontend::UI::CommonUtils::GetInstance()']]], + ['getinvalid_218',['GetInvalid',['../classGpgFrontend_1_1GpgUID.html#a388ad367d353edd5eeb6e529977c924c',1,'GpgFrontend::GpgUID']]], + ['getkey_219',['GetKey',['../classGpgFrontend_1_1GpgKeyGetter.html#a94243d09c9418c8ebf0c7cdab4a2b7f1',1,'GpgFrontend::GpgKeyGetter']]], + ['getkeyid_220',['GetKeyID',['../classGpgFrontend_1_1GpgKeySignature.html#a4277f6deb7c07aaba62fbe8e7867b1fe',1,'GpgFrontend::GpgKeySignature']]], + ['getkeylength_221',['GetKeyLength',['../classGpgFrontend_1_1GenKeyInfo.html#a4927a9091fa2b2f68f6b60ce78ab2fe9',1,'GpgFrontend::GenKeyInfo::GetKeyLength()'],['../classGpgFrontend_1_1GpgSubKey.html#a18d7a2f0a3cee32a123b780f2b8b8708',1,'GpgFrontend::GpgSubKey::GetKeyLength()']]], + ['getkeys_222',['GetKeys',['../classGpgFrontend_1_1GpgKeyGetter.html#aa5979c21af58b874b33c203752dcc805',1,'GpgFrontend::GpgKeyGetter']]], + ['getkeyscopy_223',['GetKeysCopy',['../classGpgFrontend_1_1GpgKeyGetter.html#a028fe69516a51c526bbd2ec4235053ad',1,'GpgFrontend::GpgKeyGetter::GetKeysCopy(const KeyLinkListPtr &keys)'],['../classGpgFrontend_1_1GpgKeyGetter.html#a7ec8d8431a771c602cbfa946d13d6c74',1,'GpgFrontend::GpgKeyGetter::GetKeysCopy(const KeyListPtr &keys)']]], + ['getkeysizestr_224',['GetKeySizeStr',['../classGpgFrontend_1_1GenKeyInfo.html#a0bda4b4161d805582869ec0e56ade07c',1,'GpgFrontend::GenKeyInfo']]], + ['getlastupdatetime_225',['GetLastUpdateTime',['../classGpgFrontend_1_1GpgKey.html#a3532e20298b642f5d312712fa8a791df',1,'GpgFrontend::GpgKey']]], + ['getlatestversion_226',['getLatestVersion',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a7329657135624fc42ad80d821e11befe',1,'GpgFrontend::UI::UpdateTab']]], + ['getlocaledir_227',['GetLocaleDir',['../classGpgFrontend_1_1GlobalSettingStation.html#a0b3780564305e9b210d66ef377c21565',1,'GpgFrontend::GlobalSettingStation']]], + ['getlogdir_228',['GetLogDir',['../classGpgFrontend_1_1GlobalSettingStation.html#a7da9b08291ef2391892f5c9375b8db23',1,'GpgFrontend::GlobalSettingStation']]], + ['getname_229',['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_230',['GetObjectSize',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#aa35e6ad1ef3a5733fb338f3333b5c637',1,'GpgFrontend::Thread::Task::DataObject']]], + ['getownertrust_231',['GetOwnerTrust',['../classGpgFrontend_1_1GpgKey.html#a3327ad34ff14feb75f3fbfc2bfb7fc44',1,'GpgFrontend::GpgKey']]], + ['getpassphrase_232',['GetPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#a890ee16ef6088570360a073a6b531c89',1,'GpgFrontend::GenKeyInfo']]], + ['getpolicy_233',['GetPolicy',['../classGpgFrontend_1_1GpgTOFUInfo.html#a34d1073bb25a8958e70016f3cd6b167f',1,'GpgFrontend::GpgTOFUInfo']]], + ['getprimarykeylength_234',['GetPrimaryKeyLength',['../classGpgFrontend_1_1GpgKey.html#a5b276fdeb438fe14ec2850d799401be6',1,'GpgFrontend::GpgKey']]], + ['getprivatechecked_235',['GetPrivateChecked',['../classGpgFrontend_1_1UI_1_1KeyList.html#a81c2e36427371fa6ae6381870b9b5bdd',1,'GpgFrontend::UI::KeyList']]], + ['getprotocol_236',['GetProtocol',['../classGpgFrontend_1_1GpgKey.html#ad2440a2902c81192d5549fe951ddb130',1,'GpgFrontend::GpgKey']]], + ['getpubkey_237',['GetPubkey',['../classGpgFrontend_1_1GpgKeyGetter.html#a7a8bc7c0f12a11e108051e4c824fc430',1,'GpgFrontend::GpgKeyGetter']]], + ['getpubkeyalgo_238',['GetPubkeyAlgo',['../classGpgFrontend_1_1GpgSignature.html#ab99e4004f1ad400fd25232312a8ea66b',1,'GpgFrontend::GpgSignature::GetPubkeyAlgo()'],['../classGpgFrontend_1_1GpgKeySignature.html#a217a2a8b31e44d4c9b463470362a1522',1,'GpgFrontend::GpgKeySignature::GetPubkeyAlgo()'],['../classGpgFrontend_1_1GpgSubKey.html#a629f904a81c7c09ac9769b3fcf3b48f5',1,'GpgFrontend::GpgSubKey::GetPubkeyAlgo()']]], + ['getpublickeyalgo_239',['GetPublicKeyAlgo',['../classGpgFrontend_1_1GpgKey.html#a1c21bc3b1788753f56272ad73052fc5f',1,'GpgFrontend::GpgKey']]], + ['getresourcedir_240',['GetResourceDir',['../classGpgFrontend_1_1GlobalSettingStation.html#afc1aa3dec55ae4e741f92fce1140a2d0',1,'GpgFrontend::GlobalSettingStation']]], + ['getresultreport_241',['GetResultReport',['../classGpgFrontend_1_1GpgResultAnalyse.html#aa9e35e573ea4c0ebdbb014d1afbaab9d',1,'GpgFrontend::GpgResultAnalyse']]], + ['getrevoked_242',['GetRevoked',['../classGpgFrontend_1_1GpgUID.html#a32450fbf22c64cf522e9a090423344a2',1,'GpgFrontend::GpgUID']]], + ['getselected_243',['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_244',['GetSelectedKey',['../classGpgFrontend_1_1UI_1_1KeyList.html#ab4368b81402e2468a9e960de8fb7080f',1,'GpgFrontend::UI::KeyList']]], + ['getsignatures_245',['GetSignatures',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a2063acf8262e2c600b14ed1948486ac3',1,'GpgFrontend::GpgVerifyResultAnalyse::GetSignatures()'],['../classGpgFrontend_1_1GpgUID.html#af7b5310b319378c30c488277e95ef601',1,'GpgFrontend::GpgUID::GetSignatures()']]], + ['getsigncount_246',['GetSignCount',['../classGpgFrontend_1_1GpgTOFUInfo.html#a681046a3916d0d0cdcf0852bfa76fdb0',1,'GpgFrontend::GpgTOFUInfo']]], + ['getsigners_247',['GetSigners',['../classGpgFrontend_1_1GpgBasicOperator.html#a78f37b8d5afd6c0248665a4415f880cf',1,'GpgFrontend::GpgBasicOperator']]], + ['getsignfirst_248',['GetSignFirst',['../classGpgFrontend_1_1GpgTOFUInfo.html#a788a439b206882c6317162878e2fe0b8',1,'GpgFrontend::GpgTOFUInfo']]], + ['getsignlast_249',['GetSignLast',['../classGpgFrontend_1_1GpgTOFUInfo.html#a746cbcf731af6b19ade42debbf1e2c8f',1,'GpgFrontend::GpgTOFUInfo']]], + ['getsingletonstorage_250',['GetSingletonStorage',['../classGpgFrontend_1_1SingletonStorageCollection.html#a6f933390c54b7f55d5ffb4624074725f',1,'GpgFrontend::SingletonStorageCollection']]], + ['getsizechangestep_251',['GetSizeChangeStep',['../classGpgFrontend_1_1GenKeyInfo.html#ac211a7a615805ae97ff284b46abfeab7',1,'GpgFrontend::GenKeyInfo']]], + ['getstandalonedatabasedir_252',['GetStandaloneDatabaseDir',['../classGpgFrontend_1_1GlobalSettingStation.html#af484ca46c5df831a9dd76f3a88d66332',1,'GpgFrontend::GlobalSettingStation']]], + ['getstandalonegpgbindir_253',['GetStandaloneGpgBinDir',['../classGpgFrontend_1_1GlobalSettingStation.html#aa93b21af9ac6649d5749c83c809f5b00',1,'GpgFrontend::GlobalSettingStation']]], + ['getstatus_254',['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_255',['GetSubKeys',['../classGpgFrontend_1_1GpgKey.html#a746699842f6c49687af0487a8b3b163d',1,'GpgFrontend::GpgKey']]], + ['getsuggestmaxkeysize_256',['GetSuggestMaxKeySize',['../classGpgFrontend_1_1GenKeyInfo.html#ae461a553176ad1ab0c1121ea6de6c8c2',1,'GpgFrontend::GenKeyInfo']]], + ['getsuggestminkeysize_257',['GetSuggestMinKeySize',['../classGpgFrontend_1_1GenKeyInfo.html#a0b1612421148b86919b7130ed148ca51',1,'GpgFrontend::GenKeyInfo']]], + ['getsummary_258',['GetSummary',['../classGpgFrontend_1_1GpgSignature.html#a3b143f6e13b71663d81fc0f326aad17f',1,'GpgFrontend::GpgSignature']]], + ['getsupportedkeyalgo_259',['GetSupportedKeyAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#ac0dbb2d89b1e5f9b272679ba3f24314e',1,'GpgFrontend::GenKeyInfo']]], + ['getsupportedkeyalgostandalone_260',['GetSupportedKeyAlgoStandalone',['../classGpgFrontend_1_1GenKeyInfo.html#afb8315b6612c64b3921b72df98ebcc74',1,'GpgFrontend::GenKeyInfo']]], + ['getsupportedsubkeyalgo_261',['GetSupportedSubkeyAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#a168d6fe5252812f5984ba6d8046c7741',1,'GpgFrontend::GenKeyInfo']]], + ['getsupportedsubkeyalgostandalone_262',['GetSupportedSubkeyAlgoStandalone',['../classGpgFrontend_1_1GenKeyInfo.html#a6819b0ca3ef7712b85ae320030cde023',1,'GpgFrontend::GenKeyInfo']]], + ['gettabidstosave_263',['GetTabIdsToSave',['../classGpgFrontend_1_1UI_1_1QuitDialog.html#aec364c38056b6d92c172f8cdfb5f8e82',1,'GpgFrontend::UI::QuitDialog']]], + ['gettempcachevalue_264',['GetTempCacheValue',['../classGpgFrontend_1_1CoreCommonUtil.html#a7689d3abb54a1cef6a826fc944d9dec7',1,'GpgFrontend::CoreCommonUtil']]], + ['gettextpage_265',['GetTextPage',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a6218e6e12bdba0228e4ab4276f7fed7a',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['gettofuinfos_266',['GetTofuInfos',['../classGpgFrontend_1_1GpgUID.html#a2a36376484f7c1a4a19377d24e47a0b2',1,'GpgFrontend::GpgUID']]], + ['getuid_267',['GetUID',['../classGpgFrontend_1_1GpgKeySignature.html#a95254ea2c00829b9dc87adc4a317cde5',1,'GpgFrontend::GpgKeySignature::GetUID()'],['../classGpgFrontend_1_1GpgUID.html#a467897d43a18b0cadd2e2e44384f6cdd',1,'GpgFrontend::GpgUID::GetUID()']]], + ['getuids_268',['GetUIDs',['../classGpgFrontend_1_1GpgKey.html#ac8b13b45e487cdc423b78d3017897f99',1,'GpgFrontend::GpgKey']]], + ['getuisettings_269',['GetUISettings',['../classGpgFrontend_1_1GlobalSettingStation.html#a14433405831283cd95091d741614d03b',1,'GpgFrontend::GlobalSettingStation']]], + ['getuserid_270',['GetUserid',['../classGpgFrontend_1_1GenKeyInfo.html#a4ee4a0659e76376d9bfc527c334392e1',1,'GpgFrontend::GenKeyInfo']]], + ['getuuid_271',['GetUUID',['../classGpgFrontend_1_1Thread_1_1Task.html#a50b91d27874af31ef13c493b00824ccf',1,'GpgFrontend::Thread::Task']]], + ['getvalidity_272',['GetValidity',['../classGpgFrontend_1_1GpgSignature.html#a09cb6b465e85dffcf7867e70a276e9ad',1,'GpgFrontend::GpgSignature::GetValidity()'],['../classGpgFrontend_1_1GpgTOFUInfo.html#a8770062c9e0c3875083d2c92ebe8ccb0',1,'GpgFrontend::GpgTOFUInfo::GetValidity()']]], + ['global_5fsetting_5fstation_5f_273',['global_setting_station_',['../classGpgFrontend_1_1DataObjectOperator.html#a3c195f8e4c30d95be14a6d43e9282601',1,'GpgFrontend::DataObjectOperator']]], + ['globalsettingstation_274',['GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html#abdc6dda369d4214e43ffa2930f7386b0',1,'GpgFrontend::GlobalSettingStation::GlobalSettingStation()'],['../classGpgFrontend_1_1GlobalSettingStation.html',1,'GpgFrontend::GlobalSettingStation']]], + ['gnupg_5fact_5f_275',['gnupg_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a79b83f536a7c4299eaa3d22e4e875227',1,'GpgFrontend::UI::MainWindow']]], + ['gnupgtab_276',['GnupgTab',['../classGpgFrontend_1_1UI_1_1GnupgTab.html#ab9d9e8af4494659f13b87804e7318a79',1,'GpgFrontend::UI::GnupgTab::GnupgTab()'],['../classGpgFrontend_1_1UI_1_1GnupgTab.html',1,'GpgFrontend::UI::GnupgTab']]], + ['good_277',['good',['../classGpgFrontend_1_1GpgContext.html#a73c505a2f3d39d1638dc4d9a3e13a913',1,'GpgFrontend::GpgContext']]], + ['gpg_5fmenu_5f_278',['gpg_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2bed0c3b032269c9eb82bc7c068852cb',1,'GpgFrontend::UI::MainWindow']]], + ['gpgadvancedoperator_279',['GpgAdvancedOperator',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a9233156767f1d45272b95decd18241e3',1,'GpgFrontend::GpgAdvancedOperator::GpgAdvancedOperator()'],['../classGpgFrontend_1_1GpgAdvancedOperator.html',1,'GpgFrontend::GpgAdvancedOperator']]], + ['gpgbasicoperator_280',['GpgBasicOperator',['../classGpgFrontend_1_1GpgBasicOperator.html#a139be86330f88e5f833aa24263a3b2ae',1,'GpgFrontend::GpgBasicOperator::GpgBasicOperator()'],['../classGpgFrontend_1_1GpgBasicOperator.html',1,'GpgFrontend::GpgBasicOperator']]], + ['gpgcommandexecutor_281',['GpgCommandExecutor',['../classGpgFrontend_1_1GpgCommandExecutor.html#a94240f423464600938bfcafa2b186c38',1,'GpgFrontend::GpgCommandExecutor::GpgCommandExecutor()'],['../classGpgFrontend_1_1GpgCommandExecutor.html',1,'GpgFrontend::GpgCommandExecutor']]], + ['gpgconstants_282',['GpgConstants',['../classGpgFrontend_1_1GpgConstants.html',1,'GpgFrontend']]], + ['gpgcontext_283',['GpgContext',['../classGpgFrontend_1_1GpgContext.html#a39882b323569987592231f722a2ef147',1,'GpgFrontend::GpgContext::GpgContext(const GpgContextInitArgs &args={})'],['../classGpgFrontend_1_1GpgContext.html#a2429d3f9daa189b4d5d8624c9f4d528b',1,'GpgFrontend::GpgContext::GpgContext(int channel)'],['../classGpgFrontend_1_1GpgContext.html',1,'GpgFrontend::GpgContext']]], + ['gpgcontextinitargs_284',['GpgContextInitArgs',['../structGpgFrontend_1_1GpgContextInitArgs.html',1,'GpgFrontend']]], + ['gpgdata_285',['GpgData',['../classGpgFrontend_1_1GpgData.html#ac3661a9365ad72b0883a2f62ef4647da',1,'GpgFrontend::GpgData::GpgData()'],['../classGpgFrontend_1_1GpgData.html#a5e607c3bb69f998aaac761f400dd6440',1,'GpgFrontend::GpgData::GpgData(void *buffer, size_t size, bool copy=true)'],['../classGpgFrontend_1_1GpgData.html',1,'GpgFrontend::GpgData']]], + ['gpgdecryptresultanalyse_286',['GpgDecryptResultAnalyse',['../classGpgFrontend_1_1GpgDecryptResultAnalyse.html#a442438ae58cdd7220f0e4b0792e5a372',1,'GpgFrontend::GpgDecryptResultAnalyse::GpgDecryptResultAnalyse()'],['../classGpgFrontend_1_1GpgDecryptResultAnalyse.html',1,'GpgFrontend::GpgDecryptResultAnalyse']]], + ['gpgencryptresultanalyse_287',['GpgEncryptResultAnalyse',['../classGpgFrontend_1_1GpgEncryptResultAnalyse.html#a0801e32c8709da373f6715bc994a7747',1,'GpgFrontend::GpgEncryptResultAnalyse::GpgEncryptResultAnalyse()'],['../classGpgFrontend_1_1GpgEncryptResultAnalyse.html',1,'GpgFrontend::GpgEncryptResultAnalyse']]], + ['gpgfileopera_288',['GpgFileOpera',['../classGpgFrontend_1_1GpgFileOpera.html#aa81da3d72c4fbc57e7138bfec7731152',1,'GpgFrontend::GpgFileOpera::GpgFileOpera()'],['../classGpgFrontend_1_1GpgFileOpera.html',1,'GpgFrontend::GpgFileOpera']]], + ['gpgfrontend_289',['GpgFrontend',['../namespaceGpgFrontend.html',1,'']]], + ['gpgfrontend_20develop_20document_20main_20page_290',['GpgFrontend Develop Document Main Page',['../index.html',1,'']]], + ['gpgfrontendapplication_291',['GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html',1,'GpgFrontend::UI::GpgFrontendApplication'],['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#ac0290f06e08f2714f9727bb578df1298',1,'GpgFrontend::UI::GpgFrontendApplication::GpgFrontendApplication()']]], + ['gpgimportedkey_292',['GpgImportedKey',['../classGpgFrontend_1_1GpgImportedKey.html',1,'GpgFrontend']]], + ['gpgimportinformation_293',['GpgImportInformation',['../classGpgFrontend_1_1GpgImportInformation.html',1,'GpgFrontend::GpgImportInformation'],['../classGpgFrontend_1_1GpgImportInformation.html#ab282d4f701403cd68eb02d1aad30be56',1,'GpgFrontend::GpgImportInformation::GpgImportInformation()']]], + ['gpginfo_294',['GpgInfo',['../classGpgFrontend_1_1GpgInfo.html',1,'GpgFrontend']]], + ['gpgkey_295',['GpgKey',['../classGpgFrontend_1_1GpgKey.html',1,'GpgFrontend::GpgKey'],['../classGpgFrontend_1_1GpgKey.html#aeb316f8728b10e966eed6f0291794eed',1,'GpgFrontend::GpgKey::GpgKey(GpgKey &&k) noexcept'],['../classGpgFrontend_1_1GpgKey.html#a1d6e415e77625c1281dac1cc5f33f804',1,'GpgFrontend::GpgKey::GpgKey(const gpgme_key_t &key)=delete'],['../classGpgFrontend_1_1GpgKey.html#aa599159ab1041c2f5a5fbf09666489b9',1,'GpgFrontend::GpgKey::GpgKey(gpgme_key_t &&key)'],['../classGpgFrontend_1_1GpgKey.html#a3b08060c07a9cc207eb8c98771bd4bc1',1,'GpgFrontend::GpgKey::GpgKey()=default']]], + ['gpgkeygetter_296',['GpgKeyGetter',['../classGpgFrontend_1_1GpgKeyGetter.html',1,'GpgFrontend::GpgKeyGetter'],['../classGpgFrontend_1_1GpgKeyGetter.html#a8eeee9f6dd74dc24c24794ce63c62285',1,'GpgFrontend::GpgKeyGetter::GpgKeyGetter()']]], + ['gpgkeyimportexporter_297',['GpgKeyImportExporter',['../classGpgFrontend_1_1GpgKeyImportExporter.html',1,'GpgFrontend::GpgKeyImportExporter'],['../classGpgFrontend_1_1GpgKeyImportExporter.html#a0eede7c782d17b32d6c1f30cd8496561',1,'GpgFrontend::GpgKeyImportExporter::GpgKeyImportExporter()']]], + ['gpgkeymanager_298',['GpgKeyManager',['../classGpgFrontend_1_1GpgKeyManager.html',1,'GpgFrontend::GpgKeyManager'],['../classGpgFrontend_1_1GpgKeyManager.html#a210b717fd8ee63b064d77f32b0df4c5d',1,'GpgFrontend::GpgKeyManager::GpgKeyManager()']]], + ['gpgkeyopera_299',['GpgKeyOpera',['../classGpgFrontend_1_1GpgKeyOpera.html',1,'GpgFrontend::GpgKeyOpera'],['../classGpgFrontend_1_1GpgKeyOpera.html#a01d6a920156a38a34c57d9c49c361079',1,'GpgFrontend::GpgKeyOpera::GpgKeyOpera()']]], + ['gpgkeysignature_300',['GpgKeySignature',['../classGpgFrontend_1_1GpgKeySignature.html',1,'GpgFrontend::GpgKeySignature'],['../classGpgFrontend_1_1GpgKeySignature.html#a8a9c792c963ef610e511b7deb6829c0b',1,'GpgFrontend::GpgKeySignature::GpgKeySignature()'],['../classGpgFrontend_1_1GpgKeySignature.html#abb4571e79c921261c03f57980d502e72',1,'GpgFrontend::GpgKeySignature::GpgKeySignature(gpgme_key_sig_t sig)'],['../classGpgFrontend_1_1GpgKeySignature.html#a9ba501d98265c9677d00e3dca3e8d903',1,'GpgFrontend::GpgKeySignature::GpgKeySignature(GpgKeySignature &&) noexcept'],['../classGpgFrontend_1_1GpgKeySignature.html#a4a501aa3a549a6a6914e2aeed4ff302e',1,'GpgFrontend::GpgKeySignature::GpgKeySignature(const GpgKeySignature &)=delete']]], + ['gpgresultanalyse_301',['GpgResultAnalyse',['../classGpgFrontend_1_1GpgResultAnalyse.html',1,'GpgFrontend::GpgResultAnalyse'],['../classGpgFrontend_1_1GpgResultAnalyse.html#aa3c9bdf1ea4c87476010ef32fd2fb426',1,'GpgFrontend::GpgResultAnalyse::GpgResultAnalyse()']]], + ['gpgsignature_302',['GpgSignature',['../classGpgFrontend_1_1GpgSignature.html',1,'GpgFrontend::GpgSignature'],['../classGpgFrontend_1_1GpgSignature.html#a1b705f45de8f6d0ae97f1ffda28185b7',1,'GpgFrontend::GpgSignature::GpgSignature(const GpgSignature &)=delete'],['../classGpgFrontend_1_1GpgSignature.html#aeae075c7b9c628f558d6fedbc8b9233a',1,'GpgFrontend::GpgSignature::GpgSignature(GpgSignature &&) noexcept'],['../classGpgFrontend_1_1GpgSignature.html#aea05d301ccf75f4a3aec2be58541eca8',1,'GpgFrontend::GpgSignature::GpgSignature(gpgme_signature_t sig)'],['../classGpgFrontend_1_1GpgSignature.html#ab7a4489b35d918503076b2659d14fafe',1,'GpgFrontend::GpgSignature::GpgSignature()']]], + ['gpgsignresultanalyse_303',['GpgSignResultAnalyse',['../classGpgFrontend_1_1GpgSignResultAnalyse.html',1,'GpgFrontend::GpgSignResultAnalyse'],['../classGpgFrontend_1_1GpgSignResultAnalyse.html#a3ddd2d52ad91fdf7f4c8740312570c8e',1,'GpgFrontend::GpgSignResultAnalyse::GpgSignResultAnalyse()']]], + ['gpgsubkey_304',['GpgSubKey',['../classGpgFrontend_1_1GpgSubKey.html',1,'GpgFrontend::GpgSubKey'],['../classGpgFrontend_1_1GpgSubKey.html#a59eba8a9d23429140e9a68126c9c7c5e',1,'GpgFrontend::GpgSubKey::GpgSubKey()'],['../classGpgFrontend_1_1GpgSubKey.html#a3c9605e6ccb7fa53d9c9013453d561fe',1,'GpgFrontend::GpgSubKey::GpgSubKey(gpgme_subkey_t subkey)'],['../classGpgFrontend_1_1GpgSubKey.html#ad12e160dbb394a849d6cf31e614a76f5',1,'GpgFrontend::GpgSubKey::GpgSubKey(GpgSubKey &&o) noexcept'],['../classGpgFrontend_1_1GpgSubKey.html#a6e8df85f8c1dea7705b761e68bb949ab',1,'GpgFrontend::GpgSubKey::GpgSubKey(const GpgSubKey &)=delete']]], + ['gpgtofuinfo_305',['GpgTOFUInfo',['../classGpgFrontend_1_1GpgTOFUInfo.html',1,'GpgFrontend::GpgTOFUInfo'],['../classGpgFrontend_1_1GpgTOFUInfo.html#aaabb02aef76162ed59647445b4c1f6de',1,'GpgFrontend::GpgTOFUInfo::GpgTOFUInfo(gpgme_tofu_info_t tofu_info)'],['../classGpgFrontend_1_1GpgTOFUInfo.html#aa953ff4b877b4b831d34e4a5678b0cd3',1,'GpgFrontend::GpgTOFUInfo::GpgTOFUInfo(GpgTOFUInfo &&o) noexcept'],['../classGpgFrontend_1_1GpgTOFUInfo.html#a4f46d32bc9bf1a1a3bbc32461538a422',1,'GpgFrontend::GpgTOFUInfo::GpgTOFUInfo(const GpgTOFUInfo &)=delete'],['../classGpgFrontend_1_1GpgTOFUInfo.html#a80acb09347a74cc35776d58b9874cf37',1,'GpgFrontend::GpgTOFUInfo::GpgTOFUInfo()']]], + ['gpguid_306',['GpgUID',['../classGpgFrontend_1_1GpgUID.html',1,'GpgFrontend::GpgUID'],['../classGpgFrontend_1_1GpgUID.html#ae1fb528a9d06d6e9f1feaf1bc291fe64',1,'GpgFrontend::GpgUID::GpgUID(gpgme_user_id_t uid)'],['../classGpgFrontend_1_1GpgUID.html#a7210ece9b898981dae83f8d29b1ca453',1,'GpgFrontend::GpgUID::GpgUID(GpgUID &&o) noexcept'],['../classGpgFrontend_1_1GpgUID.html#a35fdcef4ecf2598461bdc596ffc7957c',1,'GpgFrontend::GpgUID::GpgUID()'],['../classGpgFrontend_1_1GpgUID.html#a58ed67984063f0b87e35bc1782a1cc0a',1,'GpgFrontend::GpgUID::GpgUID(const GpgUID &)=delete']]], + ['gpguidoperator_307',['GpgUIDOperator',['../classGpgFrontend_1_1GpgUIDOperator.html',1,'GpgFrontend::GpgUIDOperator'],['../classGpgFrontend_1_1GpgUIDOperator.html#ab74a830c858ab9ff135375743393a7c7',1,'GpgFrontend::GpgUIDOperator::GpgUIDOperator()']]], + ['gpgverifyresultanalyse_308',['GpgVerifyResultAnalyse',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html',1,'GpgFrontend::GpgVerifyResultAnalyse'],['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#ab1d67da5dbe5bd2d665f7121e5f5354b',1,'GpgFrontend::GpgVerifyResultAnalyse::GpgVerifyResultAnalyse()']]], + ['rawapi_309',['RawAPI',['../namespaceGpgFrontend_1_1RawAPI.html',1,'GpgFrontend']]], + ['thread_310',['Thread',['../namespaceGpgFrontend_1_1Thread.html',1,'GpgFrontend']]], + ['ui_311',['UI',['../namespaceGpgFrontend_1_1UI.html',1,'GpgFrontend']]] ]; diff --git a/docs/html/search/all_8.js b/docs/html/search/all_8.js index a2fc85f1..26d7868e 100644 --- a/docs/html/search/all_8.js +++ b/docs/html/search/all_8.js @@ -1,6 +1,6 @@ var searchData= [ - ['hash_5fkey_5f_304',['hash_key_',['../classGpgFrontend_1_1DataObjectOperator.html#ae409c3562c3e08931daa17f5790c508b',1,'GpgFrontend::DataObjectOperator']]], - ['help_5fmenu_5f_305',['help_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a89fa105ed54d2189d762668262d74c63',1,'GpgFrontend::UI::MainWindow']]], - ['helppage_306',['HelpPage',['../classGpgFrontend_1_1UI_1_1HelpPage.html',1,'GpgFrontend::UI::HelpPage'],['../classGpgFrontend_1_1UI_1_1HelpPage.html#a1be8f5b79fef3d1d62ff4620b8535006',1,'GpgFrontend::UI::HelpPage::HelpPage()']]] + ['hash_5fkey_5f_312',['hash_key_',['../classGpgFrontend_1_1DataObjectOperator.html#ae409c3562c3e08931daa17f5790c508b',1,'GpgFrontend::DataObjectOperator']]], + ['help_5fmenu_5f_313',['help_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a89fa105ed54d2189d762668262d74c63',1,'GpgFrontend::UI::MainWindow']]], + ['helppage_314',['HelpPage',['../classGpgFrontend_1_1UI_1_1HelpPage.html',1,'GpgFrontend::UI::HelpPage'],['../classGpgFrontend_1_1UI_1_1HelpPage.html#a1be8f5b79fef3d1d62ff4620b8535006',1,'GpgFrontend::UI::HelpPage::HelpPage()']]] ]; diff --git a/docs/html/search/all_9.js b/docs/html/search/all_9.js index e1ee3558..a5a5c7f4 100644 --- a/docs/html/search/all_9.js +++ b/docs/html/search/all_9.js @@ -1,56 +1,55 @@ var searchData= [ - ['import_5fbutton_5f_307',['import_button_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8538940a9a5dea7ddf53c89acdeb83be',1,'GpgFrontend::UI::MainWindow']]], - ['import_5fkey_5ffrom_5fedit_5fact_5f_308',['import_key_from_edit_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a01b85fb17c373d8f97ce439027c6d04e',1,'GpgFrontend::UI::MainWindow']]], - ['import_5fkey_5ffrom_5fkeyserver_309',['import_key_from_keyserver',['../namespaceGpgFrontend_1_1UI.html#aa346bd199cecc61b15ef406728b58770',1,'GpgFrontend::UI']]], - ['import_5fkey_5fmenu_5f_310',['import_key_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8d6fe32ab64797459443ed285d769745',1,'GpgFrontend::UI::MainWindow']]], - ['import_5fkeys_311',['import_keys',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a3b818c2a3e5c32fc32425b17e63367e2',1,'GpgFrontend::UI::KeyServerImportDialog::import_keys()'],['../classGpgFrontend_1_1UI_1_1KeyList.html#ab64ba3049fac1aaa9fed4fb1c5919153',1,'GpgFrontend::UI::KeyList::import_keys()']]], - ['import_5funknown_5fkey_5ffrom_5fkeyserver_312',['import_unknown_key_from_keyserver',['../namespaceGpgFrontend_1_1UI.html#a9ab218dde057182cb4911c4792acd925',1,'GpgFrontend::UI']]], - ['importkey_313',['ImportKey',['../classGpgFrontend_1_1GpgKeyImportExporter.html#ab7a9be5283047695cd47562775adf79d',1,'GpgFrontend::GpgKeyImportExporter']]], - ['importkeypackage_314',['ImportKeyPackage',['../classGpgFrontend_1_1KeyPackageOperator.html#a89538b180a42eb7d6ae53583fe10ee07',1,'GpgFrontend::KeyPackageOperator']]], - ['infoboardstatus_315',['InfoBoardStatus',['../namespaceGpgFrontend_1_1UI.html#acbaebd342a317b1f067942e5144bb00d',1,'GpgFrontend::UI']]], - ['infoboardwidget_316',['InfoBoardWidget',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html',1,'GpgFrontend::UI::InfoBoardWidget'],['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#adeef521a8838bf2a1692c25d9b108010',1,'GpgFrontend::UI::InfoBoardWidget::InfoBoardWidget()']]], - ['infotab_317',['InfoTab',['../classGpgFrontend_1_1UI_1_1InfoTab.html',1,'GpgFrontend::UI::InfoTab'],['../classGpgFrontend_1_1UI_1_1InfoTab.html#a99d8b059ee28ea257981892e0b35d4cc',1,'GpgFrontend::UI::InfoTab::InfoTab()']]], - ['infovalid_318',['InfoValid',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#aec79eefdc19c90e046cb48bca347ff1c',1,'GpgFrontend::UI::SoftwareVersion']]], - ['init_319',['Init',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a08ba4521f68c488b23b651e201011759',1,'GpgFrontend::UI::MainWindow']]], - ['init_5fapp_5fsecure_5fkey_320',['init_app_secure_key',['../classGpgFrontend_1_1DataObjectOperator.html#a6b357780482f0e0c021ad55a81eb37cf',1,'GpgFrontend::DataObjectOperator']]], - ['init_5fctx_321',['init_ctx',['../classGpgFrontend_1_1GpgContext.html#a3377fd6a325aafc18c119431f602db9b',1,'GpgFrontend::GpgContext']]], - ['init_5flocale_322',['init_locale',['../namespaceGpgFrontend_1_1UI.html#a157c74e50283da9ed554cf7bf90afbee',1,'GpgFrontend::UI']]], - ['initgpgfrontendui_323',['InitGpgFrontendUI',['../namespaceGpgFrontend_1_1UI.html#ab0311557c1d7bde9c56cbca85fefa6ad',1,'GpgFrontend::UI']]], - ['initloggingsystem_324',['InitLoggingSystem',['../namespaceGpgFrontend.html#aff3e12940da2d43ce7aedeb795643434',1,'GpgFrontend']]], - ['instances_5fmap_5f_325',['instances_map_',['../classGpgFrontend_1_1SingletonStorage.html#a6181f2b5af39c6b86de89e1ba9eeff1c',1,'GpgFrontend::SingletonStorage']]], - ['instances_5fmutex_5f_326',['instances_mutex_',['../classGpgFrontend_1_1SingletonStorage.html#a15161d0afafec602018a89266dab5641',1,'GpgFrontend::SingletonStorage']]], - ['intropage_327',['IntroPage',['../classGpgFrontend_1_1UI_1_1IntroPage.html',1,'GpgFrontend::UI::IntroPage'],['../classGpgFrontend_1_1UI_1_1IntroPage.html#aed4220a7372b192ee4e8bc5024db922d',1,'GpgFrontend::UI::IntroPage::IntroPage()']]], - ['isallowauthentication_328',['IsAllowAuthentication',['../classGpgFrontend_1_1GenKeyInfo.html#aabdf981c65a0efde1e8905441b9b9c87',1,'GpgFrontend::GenKeyInfo']]], - ['isallowcertification_329',['IsAllowCertification',['../classGpgFrontend_1_1GenKeyInfo.html#ad47ceeb1ccfa8862843034e51b4d8be7',1,'GpgFrontend::GenKeyInfo']]], - ['isallowchangeauthentication_330',['IsAllowChangeAuthentication',['../classGpgFrontend_1_1GenKeyInfo.html#aaf8ab7c6564a2836837a537111d6f5b4',1,'GpgFrontend::GenKeyInfo']]], - ['isallowchangecertification_331',['IsAllowChangeCertification',['../classGpgFrontend_1_1GenKeyInfo.html#adbcddd0fa0a273f9b77fe1297633dabc',1,'GpgFrontend::GenKeyInfo']]], - ['isallowchangeencryption_332',['IsAllowChangeEncryption',['../classGpgFrontend_1_1GenKeyInfo.html#ad04a906300bea028c6fb6b1b2da1d149',1,'GpgFrontend::GenKeyInfo']]], - ['isallowchangesigning_333',['IsAllowChangeSigning',['../classGpgFrontend_1_1GenKeyInfo.html#a06f95a8d26da79bcbe7d51e266879a94',1,'GpgFrontend::GenKeyInfo']]], - ['isallowencryption_334',['IsAllowEncryption',['../classGpgFrontend_1_1GenKeyInfo.html#a28ed8a65243e5bc69403305752c2cdc9',1,'GpgFrontend::GenKeyInfo']]], - ['isallownopassphrase_335',['IsAllowNoPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#af6a79124a4571ff7f37c1c5e6c1a9415',1,'GpgFrontend::GenKeyInfo']]], - ['isallowsigning_336',['IsAllowSigning',['../classGpgFrontend_1_1GenKeyInfo.html#ad972292c408cb83c08e739327795a5f0',1,'GpgFrontend::GenKeyInfo']]], - ['iscardkey_337',['IsCardKey',['../classGpgFrontend_1_1GpgSubKey.html#ad818aa66e47d6686eb8ff253b3c21814',1,'GpgFrontend::GpgSubKey']]], - ['isdisabled_338',['IsDisabled',['../classGpgFrontend_1_1GpgSubKey.html#a75abb60a2130efc7fad8ab8fb3157042',1,'GpgFrontend::GpgSubKey::IsDisabled()'],['../classGpgFrontend_1_1GpgKey.html#a7eaf1e722d8a59f6a86d8e732217d89c',1,'GpgFrontend::GpgKey::IsDisabled()']]], - ['isdiscarded_339',['IsDiscarded',['../classGpgFrontend_1_1UI_1_1QuitDialog.html#a4c4bc06d1d168f01569ed83dcfd50d55',1,'GpgFrontend::UI::QuitDialog']]], - ['isexpired_340',['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_341',['IsExportable',['../classGpgFrontend_1_1GpgKeySignature.html#a19fc1ca3733b576e12628e333e2c449e',1,'GpgFrontend::GpgKeySignature']]], - ['isgood_342',['IsGood',['../classGpgFrontend_1_1GpgKey.html#a59e76d40f01e765f0544e5c6a2851be6',1,'GpgFrontend::GpgKey']]], - ['ishasactualauthenticationcapability_343',['IsHasActualAuthenticationCapability',['../classGpgFrontend_1_1GpgKey.html#a371a24c4e9d3b99a36f76ff8c7f2d0e6',1,'GpgFrontend::GpgKey']]], - ['ishasactualcertificationcapability_344',['IsHasActualCertificationCapability',['../classGpgFrontend_1_1GpgKey.html#ae370e41a7ea7307fbf4d28e0f2a67e0c',1,'GpgFrontend::GpgKey']]], - ['ishasactualencryptioncapability_345',['IsHasActualEncryptionCapability',['../classGpgFrontend_1_1GpgKey.html#aaa66d803456152fed9ba4cf5bce7b99d',1,'GpgFrontend::GpgKey']]], - ['ishasactualsigningcapability_346',['IsHasActualSigningCapability',['../classGpgFrontend_1_1GpgKey.html#aefa0a44adb1b7c49553a85b545fdffe1',1,'GpgFrontend::GpgKey']]], - ['ishasauthenticationcapability_347',['IsHasAuthenticationCapability',['../classGpgFrontend_1_1GpgKey.html#afdffba6dfb6009a0b320623df7a26be0',1,'GpgFrontend::GpgKey::IsHasAuthenticationCapability()'],['../classGpgFrontend_1_1GpgSubKey.html#a04d9df643cd08200cd742dc243be6cd6',1,'GpgFrontend::GpgSubKey::IsHasAuthenticationCapability()']]], - ['ishascardkey_348',['IsHasCardKey',['../classGpgFrontend_1_1GpgKey.html#afedc843415bd4b59687e975006e470ed',1,'GpgFrontend::GpgKey']]], - ['ishascertificationcapability_349',['IsHasCertificationCapability',['../classGpgFrontend_1_1GpgSubKey.html#a56938360f873949aa9ba3dbdaab519d1',1,'GpgFrontend::GpgSubKey::IsHasCertificationCapability()'],['../classGpgFrontend_1_1GpgKey.html#a2d28e72cfb741deeadfe02ff456fb490',1,'GpgFrontend::GpgKey::IsHasCertificationCapability()']]], - ['ishasencryptioncapability_350',['IsHasEncryptionCapability',['../classGpgFrontend_1_1GpgSubKey.html#ab67395a986184cb9b20f3dc178fc52be',1,'GpgFrontend::GpgSubKey::IsHasEncryptionCapability()'],['../classGpgFrontend_1_1GpgKey.html#a60b342ca6e1062d4489d8ba8f7a5a605',1,'GpgFrontend::GpgKey::IsHasEncryptionCapability() const']]], - ['ishasmasterkey_351',['IsHasMasterKey',['../classGpgFrontend_1_1GpgKey.html#aadac1b776764ee9d0ca4f8bb9f9e0741',1,'GpgFrontend::GpgKey']]], - ['ishassigningcapability_352',['IsHasSigningCapability',['../classGpgFrontend_1_1GpgSubKey.html#ab9208165c74b93fa8c5b7a06cd808f56',1,'GpgFrontend::GpgSubKey::IsHasSigningCapability()'],['../classGpgFrontend_1_1GpgKey.html#a635bbf8f08268cfdac1bc120981df877',1,'GpgFrontend::GpgKey::IsHasSigningCapability()']]], - ['isinvalid_353',['IsInvalid',['../classGpgFrontend_1_1GpgKeySignature.html#a1725474a1c61c0a3d724dc2f999cb24a',1,'GpgFrontend::GpgKeySignature']]], - ['isnonexpired_354',['IsNonExpired',['../classGpgFrontend_1_1GenKeyInfo.html#aeef7697c91b5b5998088979e09332380',1,'GpgFrontend::GenKeyInfo']]], - ['isnopassphrase_355',['IsNoPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#a848181796a99bec8d32dc5eac240ee01',1,'GpgFrontend::GenKeyInfo']]], - ['isprivatekey_356',['IsPrivateKey',['../classGpgFrontend_1_1GpgKey.html#a888c0263f04bdd52967e092b9c73eb6d',1,'GpgFrontend::GpgKey::IsPrivateKey()'],['../classGpgFrontend_1_1GpgSubKey.html#accb86b50755698b3e1e7fdfe06f44e84',1,'GpgFrontend::GpgSubKey::IsPrivateKey()']]], - ['isrevoked_357',['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_358',['IsSecretKey',['../classGpgFrontend_1_1GpgSubKey.html#a8fcbeae2ef3ad73a5aedee19f6de3e60',1,'GpgFrontend::GpgSubKey']]], - ['issubkey_359',['IsSubKey',['../classGpgFrontend_1_1GenKeyInfo.html#a40a42ad975499566de124296c19e6c55',1,'GpgFrontend::GenKeyInfo']]] + ['import_5fbutton_5f_315',['import_button_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8538940a9a5dea7ddf53c89acdeb83be',1,'GpgFrontend::UI::MainWindow']]], + ['import_5fkey_5ffrom_5fedit_5fact_5f_316',['import_key_from_edit_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a01b85fb17c373d8f97ce439027c6d04e',1,'GpgFrontend::UI::MainWindow']]], + ['import_5fkey_5ffrom_5fkeyserver_317',['import_key_from_keyserver',['../namespaceGpgFrontend_1_1UI.html#aa346bd199cecc61b15ef406728b58770',1,'GpgFrontend::UI']]], + ['import_5fkey_5fmenu_5f_318',['import_key_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8d6fe32ab64797459443ed285d769745',1,'GpgFrontend::UI::MainWindow']]], + ['import_5fkeys_319',['import_keys',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a3b818c2a3e5c32fc32425b17e63367e2',1,'GpgFrontend::UI::KeyServerImportDialog::import_keys()'],['../classGpgFrontend_1_1UI_1_1KeyList.html#ab64ba3049fac1aaa9fed4fb1c5919153',1,'GpgFrontend::UI::KeyList::import_keys()']]], + ['import_5funknown_5fkey_5ffrom_5fkeyserver_320',['import_unknown_key_from_keyserver',['../namespaceGpgFrontend_1_1UI.html#a9ab218dde057182cb4911c4792acd925',1,'GpgFrontend::UI']]], + ['importkey_321',['ImportKey',['../classGpgFrontend_1_1GpgKeyImportExporter.html#ab7a9be5283047695cd47562775adf79d',1,'GpgFrontend::GpgKeyImportExporter']]], + ['importkeypackage_322',['ImportKeyPackage',['../classGpgFrontend_1_1KeyPackageOperator.html#a89538b180a42eb7d6ae53583fe10ee07',1,'GpgFrontend::KeyPackageOperator']]], + ['infoboardstatus_323',['InfoBoardStatus',['../namespaceGpgFrontend_1_1UI.html#acbaebd342a317b1f067942e5144bb00d',1,'GpgFrontend::UI']]], + ['infoboardwidget_324',['InfoBoardWidget',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html',1,'GpgFrontend::UI::InfoBoardWidget'],['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#adeef521a8838bf2a1692c25d9b108010',1,'GpgFrontend::UI::InfoBoardWidget::InfoBoardWidget()']]], + ['infotab_325',['InfoTab',['../classGpgFrontend_1_1UI_1_1InfoTab.html',1,'GpgFrontend::UI::InfoTab'],['../classGpgFrontend_1_1UI_1_1InfoTab.html#a99d8b059ee28ea257981892e0b35d4cc',1,'GpgFrontend::UI::InfoTab::InfoTab()']]], + ['infovalid_326',['InfoValid',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#aec79eefdc19c90e046cb48bca347ff1c',1,'GpgFrontend::UI::SoftwareVersion']]], + ['init_327',['Init',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a08ba4521f68c488b23b651e201011759',1,'GpgFrontend::UI::MainWindow']]], + ['init_5fapp_5fsecure_5fkey_328',['init_app_secure_key',['../classGpgFrontend_1_1DataObjectOperator.html#a6b357780482f0e0c021ad55a81eb37cf',1,'GpgFrontend::DataObjectOperator']]], + ['init_5flocale_329',['init_locale',['../namespaceGpgFrontend_1_1UI.html#a157c74e50283da9ed554cf7bf90afbee',1,'GpgFrontend::UI']]], + ['initgpgfrontendui_330',['InitGpgFrontendUI',['../namespaceGpgFrontend_1_1UI.html#ab0311557c1d7bde9c56cbca85fefa6ad',1,'GpgFrontend::UI']]], + ['initloggingsystem_331',['InitLoggingSystem',['../namespaceGpgFrontend.html#aff3e12940da2d43ce7aedeb795643434',1,'GpgFrontend']]], + ['instances_5fmap_5f_332',['instances_map_',['../classGpgFrontend_1_1SingletonStorage.html#a6181f2b5af39c6b86de89e1ba9eeff1c',1,'GpgFrontend::SingletonStorage']]], + ['instances_5fmutex_5f_333',['instances_mutex_',['../classGpgFrontend_1_1SingletonStorage.html#a15161d0afafec602018a89266dab5641',1,'GpgFrontend::SingletonStorage']]], + ['intropage_334',['IntroPage',['../classGpgFrontend_1_1UI_1_1IntroPage.html',1,'GpgFrontend::UI::IntroPage'],['../classGpgFrontend_1_1UI_1_1IntroPage.html#aed4220a7372b192ee4e8bc5024db922d',1,'GpgFrontend::UI::IntroPage::IntroPage()']]], + ['isallowauthentication_335',['IsAllowAuthentication',['../classGpgFrontend_1_1GenKeyInfo.html#aabdf981c65a0efde1e8905441b9b9c87',1,'GpgFrontend::GenKeyInfo']]], + ['isallowcertification_336',['IsAllowCertification',['../classGpgFrontend_1_1GenKeyInfo.html#ad47ceeb1ccfa8862843034e51b4d8be7',1,'GpgFrontend::GenKeyInfo']]], + ['isallowchangeauthentication_337',['IsAllowChangeAuthentication',['../classGpgFrontend_1_1GenKeyInfo.html#aaf8ab7c6564a2836837a537111d6f5b4',1,'GpgFrontend::GenKeyInfo']]], + ['isallowchangecertification_338',['IsAllowChangeCertification',['../classGpgFrontend_1_1GenKeyInfo.html#adbcddd0fa0a273f9b77fe1297633dabc',1,'GpgFrontend::GenKeyInfo']]], + ['isallowchangeencryption_339',['IsAllowChangeEncryption',['../classGpgFrontend_1_1GenKeyInfo.html#ad04a906300bea028c6fb6b1b2da1d149',1,'GpgFrontend::GenKeyInfo']]], + ['isallowchangesigning_340',['IsAllowChangeSigning',['../classGpgFrontend_1_1GenKeyInfo.html#a06f95a8d26da79bcbe7d51e266879a94',1,'GpgFrontend::GenKeyInfo']]], + ['isallowencryption_341',['IsAllowEncryption',['../classGpgFrontend_1_1GenKeyInfo.html#a28ed8a65243e5bc69403305752c2cdc9',1,'GpgFrontend::GenKeyInfo']]], + ['isallownopassphrase_342',['IsAllowNoPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#af6a79124a4571ff7f37c1c5e6c1a9415',1,'GpgFrontend::GenKeyInfo']]], + ['isallowsigning_343',['IsAllowSigning',['../classGpgFrontend_1_1GenKeyInfo.html#ad972292c408cb83c08e739327795a5f0',1,'GpgFrontend::GenKeyInfo']]], + ['iscardkey_344',['IsCardKey',['../classGpgFrontend_1_1GpgSubKey.html#ad818aa66e47d6686eb8ff253b3c21814',1,'GpgFrontend::GpgSubKey']]], + ['isdisabled_345',['IsDisabled',['../classGpgFrontend_1_1GpgSubKey.html#a75abb60a2130efc7fad8ab8fb3157042',1,'GpgFrontend::GpgSubKey::IsDisabled()'],['../classGpgFrontend_1_1GpgKey.html#a7eaf1e722d8a59f6a86d8e732217d89c',1,'GpgFrontend::GpgKey::IsDisabled()']]], + ['isdiscarded_346',['IsDiscarded',['../classGpgFrontend_1_1UI_1_1QuitDialog.html#a4c4bc06d1d168f01569ed83dcfd50d55',1,'GpgFrontend::UI::QuitDialog']]], + ['isexpired_347',['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_348',['IsExportable',['../classGpgFrontend_1_1GpgKeySignature.html#a19fc1ca3733b576e12628e333e2c449e',1,'GpgFrontend::GpgKeySignature']]], + ['isgood_349',['IsGood',['../classGpgFrontend_1_1GpgKey.html#a59e76d40f01e765f0544e5c6a2851be6',1,'GpgFrontend::GpgKey']]], + ['ishasactualauthenticationcapability_350',['IsHasActualAuthenticationCapability',['../classGpgFrontend_1_1GpgKey.html#a371a24c4e9d3b99a36f76ff8c7f2d0e6',1,'GpgFrontend::GpgKey']]], + ['ishasactualcertificationcapability_351',['IsHasActualCertificationCapability',['../classGpgFrontend_1_1GpgKey.html#ae370e41a7ea7307fbf4d28e0f2a67e0c',1,'GpgFrontend::GpgKey']]], + ['ishasactualencryptioncapability_352',['IsHasActualEncryptionCapability',['../classGpgFrontend_1_1GpgKey.html#aaa66d803456152fed9ba4cf5bce7b99d',1,'GpgFrontend::GpgKey']]], + ['ishasactualsigningcapability_353',['IsHasActualSigningCapability',['../classGpgFrontend_1_1GpgKey.html#aefa0a44adb1b7c49553a85b545fdffe1',1,'GpgFrontend::GpgKey']]], + ['ishasauthenticationcapability_354',['IsHasAuthenticationCapability',['../classGpgFrontend_1_1GpgKey.html#afdffba6dfb6009a0b320623df7a26be0',1,'GpgFrontend::GpgKey::IsHasAuthenticationCapability()'],['../classGpgFrontend_1_1GpgSubKey.html#a04d9df643cd08200cd742dc243be6cd6',1,'GpgFrontend::GpgSubKey::IsHasAuthenticationCapability()']]], + ['ishascardkey_355',['IsHasCardKey',['../classGpgFrontend_1_1GpgKey.html#afedc843415bd4b59687e975006e470ed',1,'GpgFrontend::GpgKey']]], + ['ishascertificationcapability_356',['IsHasCertificationCapability',['../classGpgFrontend_1_1GpgSubKey.html#a56938360f873949aa9ba3dbdaab519d1',1,'GpgFrontend::GpgSubKey::IsHasCertificationCapability()'],['../classGpgFrontend_1_1GpgKey.html#a2d28e72cfb741deeadfe02ff456fb490',1,'GpgFrontend::GpgKey::IsHasCertificationCapability()']]], + ['ishasencryptioncapability_357',['IsHasEncryptionCapability',['../classGpgFrontend_1_1GpgSubKey.html#ab67395a986184cb9b20f3dc178fc52be',1,'GpgFrontend::GpgSubKey::IsHasEncryptionCapability()'],['../classGpgFrontend_1_1GpgKey.html#a60b342ca6e1062d4489d8ba8f7a5a605',1,'GpgFrontend::GpgKey::IsHasEncryptionCapability() const']]], + ['ishasmasterkey_358',['IsHasMasterKey',['../classGpgFrontend_1_1GpgKey.html#aadac1b776764ee9d0ca4f8bb9f9e0741',1,'GpgFrontend::GpgKey']]], + ['ishassigningcapability_359',['IsHasSigningCapability',['../classGpgFrontend_1_1GpgSubKey.html#ab9208165c74b93fa8c5b7a06cd808f56',1,'GpgFrontend::GpgSubKey::IsHasSigningCapability()'],['../classGpgFrontend_1_1GpgKey.html#a635bbf8f08268cfdac1bc120981df877',1,'GpgFrontend::GpgKey::IsHasSigningCapability()']]], + ['isinvalid_360',['IsInvalid',['../classGpgFrontend_1_1GpgKeySignature.html#a1725474a1c61c0a3d724dc2f999cb24a',1,'GpgFrontend::GpgKeySignature']]], + ['isnonexpired_361',['IsNonExpired',['../classGpgFrontend_1_1GenKeyInfo.html#aeef7697c91b5b5998088979e09332380',1,'GpgFrontend::GenKeyInfo']]], + ['isnopassphrase_362',['IsNoPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#a848181796a99bec8d32dc5eac240ee01',1,'GpgFrontend::GenKeyInfo']]], + ['isprivatekey_363',['IsPrivateKey',['../classGpgFrontend_1_1GpgKey.html#a888c0263f04bdd52967e092b9c73eb6d',1,'GpgFrontend::GpgKey::IsPrivateKey()'],['../classGpgFrontend_1_1GpgSubKey.html#accb86b50755698b3e1e7fdfe06f44e84',1,'GpgFrontend::GpgSubKey::IsPrivateKey()']]], + ['isrevoked_364',['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_365',['IsSecretKey',['../classGpgFrontend_1_1GpgSubKey.html#a8fcbeae2ef3ad73a5aedee19f6de3e60',1,'GpgFrontend::GpgSubKey']]], + ['issubkey_366',['IsSubKey',['../classGpgFrontend_1_1GenKeyInfo.html#a40a42ad975499566de124296c19e6c55',1,'GpgFrontend::GenKeyInfo']]] ]; diff --git a/docs/html/search/all_a.js b/docs/html/search/all_a.js index a003b1f4..390477ef 100644 --- a/docs/html/search/all_a.js +++ b/docs/html/search/all_a.js @@ -1,40 +1,40 @@ var searchData= [ - ['key_5fbox_5f_360',['key_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aae9905764b5551208574a932fdfba29c',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['key_5fid_5fvar_5flabel_361',['key_id_var_label',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a65176245d280ae0734ef7b5b3f1c4cc4',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['key_5fid_5fvar_5flabel_5f_362',['key_id_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a2f634f4c83ab5dd2d088eb07e0d3b862',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], - ['key_5flist_5fdock_5f_363',['key_list_dock_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adaa66d9cdc51c946efc99bb94deda31c',1,'GpgFrontend::UI::MainWindow']]], - ['key_5fmenu_5f_364',['key_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a16bbfd12cd3a6f0df9e2c32cf7999e57',1,'GpgFrontend::UI::MainWindow']]], - ['key_5fsize_5fspin_5fbox_5f_365',['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_366',['key_size_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a63e054f4a2d8e12c70d25d39bb55f876',1,'GpgFrontend::UI::KeyPairSubkeyTab::key_size_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a1485e603de56152f45d96e0ce5c50d9b',1,'GpgFrontend::UI::KeyPairDetailTab::key_size_var_label_()']]], - ['key_5ftool_5fbar_5f_367',['key_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a38f243880cfb9276545b08f0730811e7',1,'GpgFrontend::UI::MainWindow']]], - ['key_5ftype_5fcombo_5fbox_5f_368',['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_369',['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_370',['key_usage_group_box_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7b1b9cb46c0547c1e561e56d55616cf1',1,'GpgFrontend::UI::KeyGenDialog']]], - ['keydetailsdialog_371',['KeyDetailsDialog',['../classGpgFrontend_1_1UI_1_1KeyDetailsDialog.html',1,'GpgFrontend::UI']]], - ['keygendialog_372',['KeyGenDialog',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html',1,'GpgFrontend::UI::KeyGenDialog'],['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3aef8d2bb8e0d36842532726a6796ab9',1,'GpgFrontend::UI::KeyGenDialog::KeyGenDialog()']]], - ['keygenpage_373',['KeyGenPage',['../classGpgFrontend_1_1UI_1_1KeyGenPage.html',1,'GpgFrontend::UI::KeyGenPage'],['../classGpgFrontend_1_1UI_1_1KeyGenPage.html#a0eb5dad522c597dcd101c02f496e7e70',1,'GpgFrontend::UI::KeyGenPage::KeyGenPage()']]], - ['keyimportdetaildialog_374',['KeyImportDetailDialog',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html',1,'GpgFrontend::UI::KeyImportDetailDialog'],['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a0177cdaa19d1f83c9e519039aa7a8ce1',1,'GpgFrontend::UI::KeyImportDetailDialog::KeyImportDetailDialog()']]], - ['keylist_375',['KeyList',['../classGpgFrontend_1_1UI_1_1KeyList.html',1,'GpgFrontend::UI::KeyList'],['../classGpgFrontend_1_1UI_1_1KeyList.html#a7c9d5cacdb42e1fbda5d3cc96e861418',1,'GpgFrontend::UI::KeyList::KeyList()']]], - ['keylistcolumn_376',['KeyListColumn',['../structGpgFrontend_1_1UI_1_1KeyListColumn.html',1,'GpgFrontend::UI']]], - ['keylistrow_377',['KeyListRow',['../structGpgFrontend_1_1UI_1_1KeyListRow.html',1,'GpgFrontend::UI']]], - ['keymenuability_378',['KeyMenuAbility',['../structGpgFrontend_1_1UI_1_1KeyMenuAbility.html',1,'GpgFrontend::UI']]], - ['keymgmt_379',['KeyMgmt',['../classGpgFrontend_1_1UI_1_1KeyMgmt.html',1,'GpgFrontend::UI::KeyMgmt'],['../classGpgFrontend_1_1UI_1_1KeyMgmt.html#aefc27b57830cf14a85c2225664f89f64',1,'GpgFrontend::UI::KeyMgmt::KeyMgmt()']]], - ['keynewuiddialog_380',['KeyNewUIDDialog',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html',1,'GpgFrontend::UI::KeyNewUIDDialog'],['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a7226b139dc7a491e8ba780135654be27',1,'GpgFrontend::UI::KeyNewUIDDialog::KeyNewUIDDialog()']]], - ['keypackageoperator_381',['KeyPackageOperator',['../classGpgFrontend_1_1KeyPackageOperator.html',1,'GpgFrontend']]], - ['keypairdetailtab_382',['KeyPairDetailTab',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html',1,'GpgFrontend::UI::KeyPairDetailTab'],['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a76efd8f8d623813be1a329ad01972444',1,'GpgFrontend::UI::KeyPairDetailTab::KeyPairDetailTab()']]], - ['keypairoperatab_383',['KeyPairOperaTab',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html',1,'GpgFrontend::UI::KeyPairOperaTab'],['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#aad4e209d7b4eb0ac6623b2f12ce5ecc5',1,'GpgFrontend::UI::KeyPairOperaTab::KeyPairOperaTab()']]], - ['keypairsubkeytab_384',['KeyPairSubkeyTab',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html',1,'GpgFrontend::UI::KeyPairSubkeyTab'],['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a93abe5c0467c7c4a29e0c45437a10732',1,'GpgFrontend::UI::KeyPairSubkeyTab::KeyPairSubkeyTab()']]], - ['keypairuidtab_385',['KeyPairUIDTab',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html',1,'GpgFrontend::UI::KeyPairUIDTab'],['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#af18c4f08a127d919a316c7e27ba338d3',1,'GpgFrontend::UI::KeyPairUIDTab::KeyPairUIDTab()']]], - ['keypressevent_386',['keyPressEvent',['../classGpgFrontend_1_1UI_1_1FilePage.html#aea388ad7876e287f71e93085e6715495',1,'GpgFrontend::UI::FilePage::keyPressEvent()'],['../classGpgFrontend_1_1UI_1_1FindWidget.html#a6e2264a989c2bb2db6bc8980b43e65f0',1,'GpgFrontend::UI::FindWidget::keyPressEvent()']]], - ['keys_5fcache_5f_387',['keys_cache_',['../classGpgFrontend_1_1GpgKeyGetter.html#a9567d5e08ae73c5bafcd1dc378fed066',1,'GpgFrontend::GpgKeyGetter']]], - ['keys_5fcache_5fmutex_5f_388',['keys_cache_mutex_',['../classGpgFrontend_1_1GpgKeyGetter.html#ae1d7846ad2fa17ab90c72b3186ba5335',1,'GpgFrontend::GpgKeyGetter']]], - ['keyserverimportdialog_389',['KeyServerImportDialog',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html',1,'GpgFrontend::UI::KeyServerImportDialog'],['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a96b40e94b5c5a3216f513b9699820063',1,'GpgFrontend::UI::KeyServerImportDialog::KeyServerImportDialog(bool automatic, QWidget *parent)'],['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a4c4e44963dcd4f656b10788a7fafbb4e',1,'GpgFrontend::UI::KeyServerImportDialog::KeyServerImportDialog(QWidget *parent)']]], - ['keyserverimporttask_390',['KeyServerImportTask',['../classGpgFrontend_1_1UI_1_1KeyServerImportTask.html',1,'GpgFrontend::UI::KeyServerImportTask'],['../classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a1640363b4b27cb3d256181ddc6cdc857',1,'GpgFrontend::UI::KeyServerImportTask::KeyServerImportTask()']]], - ['keyserversearchtask_391',['KeyServerSearchTask',['../classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html',1,'GpgFrontend::UI::KeyServerSearchTask'],['../classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#a168e21bdfa72f43f91187ab29ece5efa',1,'GpgFrontend::UI::KeyServerSearchTask::KeyServerSearchTask()']]], - ['keyservertab_392',['KeyserverTab',['../classGpgFrontend_1_1UI_1_1KeyserverTab.html',1,'GpgFrontend::UI::KeyserverTab'],['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#aa3d3561d3bdf95de6486b2caa752616c',1,'GpgFrontend::UI::KeyserverTab::KeyserverTab()']]], - ['keysetexpiredatedialog_393',['KeySetExpireDateDialog',['../classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html',1,'GpgFrontend::UI::KeySetExpireDateDialog'],['../classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#a67da7721959b585db21f7e893793564b',1,'GpgFrontend::UI::KeySetExpireDateDialog::KeySetExpireDateDialog(const KeyId &key_id, QWidget *parent=nullptr)'],['../classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#a0efa9fd74abf305b2e20536f208c8beb',1,'GpgFrontend::UI::KeySetExpireDateDialog::KeySetExpireDateDialog(const KeyId &key_id, std::string subkey_fpr, QWidget *parent=nullptr)']]], - ['keytable_394',['KeyTable',['../structGpgFrontend_1_1UI_1_1KeyTable.html',1,'GpgFrontend::UI::KeyTable'],['../structGpgFrontend_1_1UI_1_1KeyTable.html#a88606ba6954d60244faf38de419bfc47',1,'GpgFrontend::UI::KeyTable::KeyTable()']]], - ['keyuidsigndialog_395',['KeyUIDSignDialog',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html',1,'GpgFrontend::UI::KeyUIDSignDialog'],['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#aaa06ce342178802e76119bec6b26cc55',1,'GpgFrontend::UI::KeyUIDSignDialog::KeyUIDSignDialog()']]], - ['keyuploaddialog_396',['KeyUploadDialog',['../classGpgFrontend_1_1UI_1_1KeyUploadDialog.html',1,'GpgFrontend::UI::KeyUploadDialog'],['../classGpgFrontend_1_1UI_1_1KeyUploadDialog.html#a51f63e30f26f7923def91519d347c0cf',1,'GpgFrontend::UI::KeyUploadDialog::KeyUploadDialog()']]] + ['key_5fbox_5f_367',['key_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aae9905764b5551208574a932fdfba29c',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['key_5fid_5fvar_5flabel_368',['key_id_var_label',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a65176245d280ae0734ef7b5b3f1c4cc4',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['key_5fid_5fvar_5flabel_5f_369',['key_id_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a2f634f4c83ab5dd2d088eb07e0d3b862',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], + ['key_5flist_5fdock_5f_370',['key_list_dock_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adaa66d9cdc51c946efc99bb94deda31c',1,'GpgFrontend::UI::MainWindow']]], + ['key_5fmenu_5f_371',['key_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a16bbfd12cd3a6f0df9e2c32cf7999e57',1,'GpgFrontend::UI::MainWindow']]], + ['key_5fsize_5fspin_5fbox_5f_372',['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_373',['key_size_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a63e054f4a2d8e12c70d25d39bb55f876',1,'GpgFrontend::UI::KeyPairSubkeyTab::key_size_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a1485e603de56152f45d96e0ce5c50d9b',1,'GpgFrontend::UI::KeyPairDetailTab::key_size_var_label_()']]], + ['key_5ftool_5fbar_5f_374',['key_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a38f243880cfb9276545b08f0730811e7',1,'GpgFrontend::UI::MainWindow']]], + ['key_5ftype_5fcombo_5fbox_5f_375',['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_376',['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_377',['key_usage_group_box_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7b1b9cb46c0547c1e561e56d55616cf1',1,'GpgFrontend::UI::KeyGenDialog']]], + ['keydetailsdialog_378',['KeyDetailsDialog',['../classGpgFrontend_1_1UI_1_1KeyDetailsDialog.html',1,'GpgFrontend::UI']]], + ['keygendialog_379',['KeyGenDialog',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html',1,'GpgFrontend::UI::KeyGenDialog'],['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3aef8d2bb8e0d36842532726a6796ab9',1,'GpgFrontend::UI::KeyGenDialog::KeyGenDialog()']]], + ['keygenpage_380',['KeyGenPage',['../classGpgFrontend_1_1UI_1_1KeyGenPage.html',1,'GpgFrontend::UI::KeyGenPage'],['../classGpgFrontend_1_1UI_1_1KeyGenPage.html#a0eb5dad522c597dcd101c02f496e7e70',1,'GpgFrontend::UI::KeyGenPage::KeyGenPage()']]], + ['keyimportdetaildialog_381',['KeyImportDetailDialog',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html',1,'GpgFrontend::UI::KeyImportDetailDialog'],['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a0177cdaa19d1f83c9e519039aa7a8ce1',1,'GpgFrontend::UI::KeyImportDetailDialog::KeyImportDetailDialog()']]], + ['keylist_382',['KeyList',['../classGpgFrontend_1_1UI_1_1KeyList.html',1,'GpgFrontend::UI::KeyList'],['../classGpgFrontend_1_1UI_1_1KeyList.html#a7c9d5cacdb42e1fbda5d3cc96e861418',1,'GpgFrontend::UI::KeyList::KeyList()']]], + ['keylistcolumn_383',['KeyListColumn',['../structGpgFrontend_1_1UI_1_1KeyListColumn.html',1,'GpgFrontend::UI']]], + ['keylistrow_384',['KeyListRow',['../structGpgFrontend_1_1UI_1_1KeyListRow.html',1,'GpgFrontend::UI']]], + ['keymenuability_385',['KeyMenuAbility',['../structGpgFrontend_1_1UI_1_1KeyMenuAbility.html',1,'GpgFrontend::UI']]], + ['keymgmt_386',['KeyMgmt',['../classGpgFrontend_1_1UI_1_1KeyMgmt.html',1,'GpgFrontend::UI::KeyMgmt'],['../classGpgFrontend_1_1UI_1_1KeyMgmt.html#aefc27b57830cf14a85c2225664f89f64',1,'GpgFrontend::UI::KeyMgmt::KeyMgmt()']]], + ['keynewuiddialog_387',['KeyNewUIDDialog',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html',1,'GpgFrontend::UI::KeyNewUIDDialog'],['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a7226b139dc7a491e8ba780135654be27',1,'GpgFrontend::UI::KeyNewUIDDialog::KeyNewUIDDialog()']]], + ['keypackageoperator_388',['KeyPackageOperator',['../classGpgFrontend_1_1KeyPackageOperator.html',1,'GpgFrontend']]], + ['keypairdetailtab_389',['KeyPairDetailTab',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html',1,'GpgFrontend::UI::KeyPairDetailTab'],['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a76efd8f8d623813be1a329ad01972444',1,'GpgFrontend::UI::KeyPairDetailTab::KeyPairDetailTab()']]], + ['keypairoperatab_390',['KeyPairOperaTab',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html',1,'GpgFrontend::UI::KeyPairOperaTab'],['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#aad4e209d7b4eb0ac6623b2f12ce5ecc5',1,'GpgFrontend::UI::KeyPairOperaTab::KeyPairOperaTab()']]], + ['keypairsubkeytab_391',['KeyPairSubkeyTab',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html',1,'GpgFrontend::UI::KeyPairSubkeyTab'],['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a93abe5c0467c7c4a29e0c45437a10732',1,'GpgFrontend::UI::KeyPairSubkeyTab::KeyPairSubkeyTab()']]], + ['keypairuidtab_392',['KeyPairUIDTab',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html',1,'GpgFrontend::UI::KeyPairUIDTab'],['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#af18c4f08a127d919a316c7e27ba338d3',1,'GpgFrontend::UI::KeyPairUIDTab::KeyPairUIDTab()']]], + ['keypressevent_393',['keyPressEvent',['../classGpgFrontend_1_1UI_1_1FilePage.html#aea388ad7876e287f71e93085e6715495',1,'GpgFrontend::UI::FilePage::keyPressEvent()'],['../classGpgFrontend_1_1UI_1_1FindWidget.html#a6e2264a989c2bb2db6bc8980b43e65f0',1,'GpgFrontend::UI::FindWidget::keyPressEvent()']]], + ['keys_5fcache_5f_394',['keys_cache_',['../classGpgFrontend_1_1GpgKeyGetter.html#a9567d5e08ae73c5bafcd1dc378fed066',1,'GpgFrontend::GpgKeyGetter']]], + ['keys_5fcache_5fmutex_5f_395',['keys_cache_mutex_',['../classGpgFrontend_1_1GpgKeyGetter.html#ae1d7846ad2fa17ab90c72b3186ba5335',1,'GpgFrontend::GpgKeyGetter']]], + ['keyserverimportdialog_396',['KeyServerImportDialog',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html',1,'GpgFrontend::UI::KeyServerImportDialog'],['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a96b40e94b5c5a3216f513b9699820063',1,'GpgFrontend::UI::KeyServerImportDialog::KeyServerImportDialog(bool automatic, QWidget *parent)'],['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a4c4e44963dcd4f656b10788a7fafbb4e',1,'GpgFrontend::UI::KeyServerImportDialog::KeyServerImportDialog(QWidget *parent)']]], + ['keyserverimporttask_397',['KeyServerImportTask',['../classGpgFrontend_1_1UI_1_1KeyServerImportTask.html',1,'GpgFrontend::UI::KeyServerImportTask'],['../classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a1640363b4b27cb3d256181ddc6cdc857',1,'GpgFrontend::UI::KeyServerImportTask::KeyServerImportTask()']]], + ['keyserversearchtask_398',['KeyServerSearchTask',['../classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html',1,'GpgFrontend::UI::KeyServerSearchTask'],['../classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#a168e21bdfa72f43f91187ab29ece5efa',1,'GpgFrontend::UI::KeyServerSearchTask::KeyServerSearchTask()']]], + ['keyservertab_399',['KeyserverTab',['../classGpgFrontend_1_1UI_1_1KeyserverTab.html',1,'GpgFrontend::UI::KeyserverTab'],['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#aa3d3561d3bdf95de6486b2caa752616c',1,'GpgFrontend::UI::KeyserverTab::KeyserverTab()']]], + ['keysetexpiredatedialog_400',['KeySetExpireDateDialog',['../classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html',1,'GpgFrontend::UI::KeySetExpireDateDialog'],['../classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#a67da7721959b585db21f7e893793564b',1,'GpgFrontend::UI::KeySetExpireDateDialog::KeySetExpireDateDialog(const KeyId &key_id, QWidget *parent=nullptr)'],['../classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#a0efa9fd74abf305b2e20536f208c8beb',1,'GpgFrontend::UI::KeySetExpireDateDialog::KeySetExpireDateDialog(const KeyId &key_id, std::string subkey_fpr, QWidget *parent=nullptr)']]], + ['keytable_401',['KeyTable',['../structGpgFrontend_1_1UI_1_1KeyTable.html',1,'GpgFrontend::UI::KeyTable'],['../structGpgFrontend_1_1UI_1_1KeyTable.html#a88606ba6954d60244faf38de419bfc47',1,'GpgFrontend::UI::KeyTable::KeyTable()']]], + ['keyuidsigndialog_402',['KeyUIDSignDialog',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html',1,'GpgFrontend::UI::KeyUIDSignDialog'],['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#aaa06ce342178802e76119bec6b26cc55',1,'GpgFrontend::UI::KeyUIDSignDialog::KeyUIDSignDialog()']]], + ['keyuploaddialog_403',['KeyUploadDialog',['../classGpgFrontend_1_1UI_1_1KeyUploadDialog.html',1,'GpgFrontend::UI::KeyUploadDialog'],['../classGpgFrontend_1_1UI_1_1KeyUploadDialog.html#a51f63e30f26f7923def91519d347c0cf',1,'GpgFrontend::UI::KeyUploadDialog::KeyUploadDialog()']]] ]; diff --git a/docs/html/search/all_b.js b/docs/html/search/all_b.js index 4b44d744..d93f2510 100644 --- a/docs/html/search/all_b.js +++ b/docs/html/search/all_b.js @@ -1,8 +1,8 @@ var searchData= [ - ['latest_5freply_5f_397',['latest_reply_',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#aed545ffa8128acb16bb28c067e032ec9',1,'GpgFrontend::UI::VersionCheckTask']]], - ['listedkeyservertesttask_398',['ListedKeyServerTestTask',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html',1,'GpgFrontend::UI::ListedKeyServerTestTask'],['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#ae25b5d59b53facc15648ab80ff19ed77',1,'GpgFrontend::UI::ListedKeyServerTestTask::ListedKeyServerTestTask()']]], - ['listlanguages_399',['ListLanguages',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#acd22ac2fd91704551e5317e2c549ae26',1,'GpgFrontend::UI::SettingsDialog']]], - ['loadfile_400',['LoadFile',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a72ed46454c833adb038c36d8d4322d18',1,'GpgFrontend::UI::TextEdit']]], - ['localized_5fhelp_401',['localized_help',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a49fbde87f2ef385b44225acd6ffbc84f',1,'GpgFrontend::UI::HelpPage']]] + ['latest_5freply_5f_404',['latest_reply_',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#aed545ffa8128acb16bb28c067e032ec9',1,'GpgFrontend::UI::VersionCheckTask']]], + ['listedkeyservertesttask_405',['ListedKeyServerTestTask',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html',1,'GpgFrontend::UI::ListedKeyServerTestTask'],['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#ae25b5d59b53facc15648ab80ff19ed77',1,'GpgFrontend::UI::ListedKeyServerTestTask::ListedKeyServerTestTask()']]], + ['listlanguages_406',['ListLanguages',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#acd22ac2fd91704551e5317e2c549ae26',1,'GpgFrontend::UI::SettingsDialog']]], + ['loadfile_407',['LoadFile',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a72ed46454c833adb038c36d8d4322d18',1,'GpgFrontend::UI::TextEdit']]], + ['localized_5fhelp_408',['localized_help',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a49fbde87f2ef385b44225acd6ffbc84f',1,'GpgFrontend::UI::HelpPage']]] ]; diff --git a/docs/html/search/all_c.js b/docs/html/search/all_c.js index f5ebeea2..df21b50b 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_402',['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_403',['MainWindow',['../classGpgFrontend_1_1UI_1_1MainWindow.html',1,'GpgFrontend::UI']]], - ['markkeys_404',['MarkKeys',['../classGpgFrontend_1_1UI_1_1KeyList.html#a31a4c067eed90830203862cb4adf951e',1,'GpgFrontend::UI::KeyList']]], - ['maybe_5fsave_5fcurrent_5ftab_405',['maybe_save_current_tab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a8fad090a19479a9fe89432300cca2b6c',1,'GpgFrontend::UI::TextEdit']]], - ['maybesaveanytab_406',['MaybeSaveAnyTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3c976a5494d06c2186d94e7cc8ebe457',1,'GpgFrontend::UI::TextEdit']]], - ['modifypassword_407',['ModifyPassword',['../classGpgFrontend_1_1GpgKeyOpera.html#ab7e16d1f4cba23ea5b5b9f6009ce5ee2',1,'GpgFrontend::GpgKeyOpera']]], - ['modifytofupolicy_408',['ModifyTOFUPolicy',['../classGpgFrontend_1_1GpgKeyOpera.html#a76a7f59701add8a59d8835919dad2000',1,'GpgFrontend::GpgKeyOpera']]], - ['mt_5f_409',['mt_',['../classGpgFrontend_1_1DataObjectOperator.html#a9fc92c7d497f2a2057776adfca40e8ca',1,'GpgFrontend::DataObjectOperator::mt_()'],['../classGpgFrontend_1_1PassphraseGenerator.html#a19ac4999bbd5fb7e6c42a4aef9606892',1,'GpgFrontend::PassphraseGenerator::mt_()']]] + ['m_5ftext_5fpage_5f_409',['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_410',['MainWindow',['../classGpgFrontend_1_1UI_1_1MainWindow.html',1,'GpgFrontend::UI']]], + ['markkeys_411',['MarkKeys',['../classGpgFrontend_1_1UI_1_1KeyList.html#a31a4c067eed90830203862cb4adf951e',1,'GpgFrontend::UI::KeyList']]], + ['maybe_5fsave_5fcurrent_5ftab_412',['maybe_save_current_tab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a8fad090a19479a9fe89432300cca2b6c',1,'GpgFrontend::UI::TextEdit']]], + ['maybesaveanytab_413',['MaybeSaveAnyTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3c976a5494d06c2186d94e7cc8ebe457',1,'GpgFrontend::UI::TextEdit']]], + ['modifypassword_414',['ModifyPassword',['../classGpgFrontend_1_1GpgKeyOpera.html#ab7e16d1f4cba23ea5b5b9f6009ce5ee2',1,'GpgFrontend::GpgKeyOpera']]], + ['modifytofupolicy_415',['ModifyTOFUPolicy',['../classGpgFrontend_1_1GpgKeyOpera.html#a76a7f59701add8a59d8835919dad2000',1,'GpgFrontend::GpgKeyOpera']]], + ['mt_5f_416',['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 17ea97c0..5d1a6d44 100644 --- a/docs/html/search/all_d.js +++ b/docs/html/search/all_d.js @@ -1,12 +1,14 @@ var searchData= [ - ['name_5fedit_5f_410',['name_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7ed095cce29c658741ae0520049010c0',1,'GpgFrontend::UI::KeyGenDialog']]], - ['name_5fvar_5flabel_5f_411',['name_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a9d57be18c2091827c04ec8809f4154be',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['needupgrade_412',['NeedUpgrade',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#abc311fd0e15da1a04b995587ca74e1a6',1,'GpgFrontend::UI::SoftwareVersion']]], - ['networktab_413',['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_414',['new_default_settings_channel',['../namespaceGpgFrontend.html#aafb9aa0ba1d03afa09085b1b8136c55f',1,'GpgFrontend']]], - ['new_5ftab_5fact_5f_415',['new_tab_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a472500fec64442b114e9ce9faf4b6a73',1,'GpgFrontend::UI::MainWindow']]], - ['nextid_416',['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_417',['notify',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a6f8ab335d89948c48cd634ab20ff9aa0',1,'GpgFrontend::UI::GpgFrontendApplication']]], - ['notifyfilesaved_418',['NotifyFileSaved',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a29b3d63ba9590e775f42c779c76102e5',1,'GpgFrontend::UI::PlainTextEditorPage']]] + ['name_5fedit_5f_417',['name_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7ed095cce29c658741ae0520049010c0',1,'GpgFrontend::UI::KeyGenDialog']]], + ['name_5fvar_5flabel_5f_418',['name_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a9d57be18c2091827c04ec8809f4154be',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['need_5fuser_5finput_5fpassphrase_419',['need_user_input_passphrase',['../classGpgFrontend_1_1GpgContext.html#ac7c9b2212a77e7cede94d68243541b1b',1,'GpgFrontend::GpgContext']]], + ['needupgrade_420',['NeedUpgrade',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#abc311fd0e15da1a04b995587ca74e1a6',1,'GpgFrontend::UI::SoftwareVersion']]], + ['networktab_421',['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_422',['new_default_settings_channel',['../namespaceGpgFrontend.html#aafb9aa0ba1d03afa09085b1b8136c55f',1,'GpgFrontend']]], + ['new_5ftab_5fact_5f_423',['new_tab_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a472500fec64442b114e9ce9faf4b6a73',1,'GpgFrontend::UI::MainWindow']]], + ['nextid_424',['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_425',['no_pass_phrase_check_box_',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a001803152c0e5bd9de7c7dd04cef8ad4',1,'GpgFrontend::UI::SubkeyGenerateDialog']]], + ['notify_426',['notify',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a6f8ab335d89948c48cd634ab20ff9aa0',1,'GpgFrontend::UI::GpgFrontendApplication']]], + ['notifyfilesaved_427',['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 73ac8c70..ceaa73bd 100644 --- a/docs/html/search/all_e.js +++ b/docs/html/search/all_e.js @@ -1,14 +1,14 @@ var searchData= [ - ['oncustomcontextmenu_419',['onCustomContextMenu',['../classGpgFrontend_1_1UI_1_1FilePage.html#aa80dc1b74a0ec65d06e5dffaa21cc785',1,'GpgFrontend::UI::FilePage']]], - ['open_5fact_5f_420',['open_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a4a1edafb8c67b181ff3c29394147571d',1,'GpgFrontend::UI::MainWindow']]], - ['open_5fkey_5fmanagement_5fact_5f_421',['open_key_management_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad7b22560df7e3bb38b660d3ffc84dc83',1,'GpgFrontend::UI::MainWindow']]], - ['open_5fsettings_5fact_5f_422',['open_settings_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#afab1e0363a4b97ff68228cd4bd7cbc62',1,'GpgFrontend::UI::MainWindow']]], - ['operator_20gpgme_5fctx_5ft_423',['operator gpgme_ctx_t',['../classGpgFrontend_1_1GpgContext.html#a5b419175bd9927f3d449637db8ba6524',1,'GpgFrontend::GpgContext']]], - ['operator_20gpgme_5fdata_5ft_424',['operator gpgme_data_t',['../classGpgFrontend_1_1GpgData.html#afca7a03bd71436c8b3c4f6e8c2acd700',1,'GpgFrontend::GpgData']]], - ['operator_20gpgme_5fkey_5ft_425',['operator gpgme_key_t',['../classGpgFrontend_1_1GpgKey.html#a827962251cf47c41dbea56665ae4207b',1,'GpgFrontend::GpgKey']]], - ['operator_3c_3d_426',['operator<=',['../classGpgFrontend_1_1GpgKey.html#adc22a349796af0ff5dd4499624b6d03d',1,'GpgFrontend::GpgKey']]], - ['operator_3d_427',['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_428',['operator==',['../classGpgFrontend_1_1GpgKey.html#a4f50b2f13b3a5dc7298ee9665e7a5367',1,'GpgFrontend::GpgKey::operator==()'],['../classGpgFrontend_1_1GpgSubKey.html#a1c88420ec4756f2e5bda1b76ff2f7c2d',1,'GpgFrontend::GpgSubKey::operator==()']]], - ['owner_5fbox_5f_429',['owner_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#ad8c25061351d8e739b70d5466b87410e',1,'GpgFrontend::UI::KeyPairDetailTab']]] + ['oncustomcontextmenu_428',['onCustomContextMenu',['../classGpgFrontend_1_1UI_1_1FilePage.html#aa80dc1b74a0ec65d06e5dffaa21cc785',1,'GpgFrontend::UI::FilePage']]], + ['open_5fact_5f_429',['open_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a4a1edafb8c67b181ff3c29394147571d',1,'GpgFrontend::UI::MainWindow']]], + ['open_5fkey_5fmanagement_5fact_5f_430',['open_key_management_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad7b22560df7e3bb38b660d3ffc84dc83',1,'GpgFrontend::UI::MainWindow']]], + ['open_5fsettings_5fact_5f_431',['open_settings_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#afab1e0363a4b97ff68228cd4bd7cbc62',1,'GpgFrontend::UI::MainWindow']]], + ['operator_20gpgme_5fctx_5ft_432',['operator gpgme_ctx_t',['../classGpgFrontend_1_1GpgContext.html#a5b419175bd9927f3d449637db8ba6524',1,'GpgFrontend::GpgContext']]], + ['operator_20gpgme_5fdata_5ft_433',['operator gpgme_data_t',['../classGpgFrontend_1_1GpgData.html#afca7a03bd71436c8b3c4f6e8c2acd700',1,'GpgFrontend::GpgData']]], + ['operator_20gpgme_5fkey_5ft_434',['operator gpgme_key_t',['../classGpgFrontend_1_1GpgKey.html#a827962251cf47c41dbea56665ae4207b',1,'GpgFrontend::GpgKey']]], + ['operator_3c_3d_435',['operator<=',['../classGpgFrontend_1_1GpgKey.html#adc22a349796af0ff5dd4499624b6d03d',1,'GpgFrontend::GpgKey']]], + ['operator_3d_436',['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_437',['operator==',['../classGpgFrontend_1_1GpgKey.html#a4f50b2f13b3a5dc7298ee9665e7a5367',1,'GpgFrontend::GpgKey::operator==()'],['../classGpgFrontend_1_1GpgSubKey.html#a1c88420ec4756f2e5bda1b76ff2f7c2d',1,'GpgFrontend::GpgSubKey::operator==()']]], + ['owner_5fbox_5f_438',['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 19693656..41564065 100644 --- a/docs/html/search/all_f.js +++ b/docs/html/search/all_f.js @@ -1,18 +1,20 @@ var searchData= [ - ['passphrasegenerator_430',['PassphraseGenerator',['../classGpgFrontend_1_1PassphraseGenerator.html',1,'GpgFrontend::PassphraseGenerator'],['../classGpgFrontend_1_1PassphraseGenerator.html#ac82ef545a54468ad02253a61cc62e3cf',1,'GpgFrontend::PassphraseGenerator::PassphraseGenerator()']]], - ['paste_5fact_5f_431',['paste_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a62ea61c38e758022ba655c6faf54322b',1,'GpgFrontend::UI::MainWindow']]], - ['pending_5ftasks_5f_432',['pending_tasks_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a6d92421bbbfcf3136335a5173d1b2a22',1,'GpgFrontend::Thread::TaskRunner']]], - ['pgp_5fcrypt_5fbegin_433',['PGP_CRYPT_BEGIN',['../classGpgFrontend_1_1GpgConstants.html#a237006d6db30c7e3f8de171210eb35f2',1,'GpgFrontend::GpgConstants']]], - ['plaintexteditorpage_434',['PlainTextEditorPage',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html',1,'GpgFrontend::UI::PlainTextEditorPage'],['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a8759224e57d4c322933ed3df6d96e5f1',1,'GpgFrontend::UI::PlainTextEditorPage::PlainTextEditorPage()']]], - ['popobject_435',['PopObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a5ef5ddec0b82017cc4ad7f34b9b13f64',1,'GpgFrontend::Thread::Task::DataObject']]], - ['posttask_436',['PostTask',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a4fae01eb0a5b296b8c4c6bf8408f1c6b',1,'GpgFrontend::Thread::TaskRunner']]], - ['print_5fact_5f_437',['print_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8f9dd7edba23321a13ed630cdef7fdcc',1,'GpgFrontend::UI::MainWindow']]], - ['print_5frecipient_438',['print_recipient',['../classGpgFrontend_1_1GpgDecryptResultAnalyse.html#a1aac1c1f77a12069479a47f54a934c44',1,'GpgFrontend::GpgDecryptResultAnalyse']]], - ['print_5fsigner_439',['print_signer',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a57bf4a26466e07f7f0ecc19de3782104',1,'GpgFrontend::GpgVerifyResultAnalyse']]], - ['process_5fdirectory_5finto_5ftarball_440',['process_directory_into_tarball',['../namespaceGpgFrontend_1_1UI.html#a5470872566b41ce628f64039f34b964a',1,'GpgFrontend::UI']]], - ['process_5foperation_441',['process_operation',['../namespaceGpgFrontend_1_1UI.html#a3c971eeb5c620d08d6d92f0752ceaf9f',1,'GpgFrontend::UI']]], - ['process_5fresult_5fanalyse_442',['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_443',['process_tarball_into_directory',['../namespaceGpgFrontend_1_1UI.html#a57d0a4dba23cd3d9b42222d40c710dc1',1,'GpgFrontend::UI']]], - ['proxyconnectiontestthread_444',['ProxyConnectionTestThread',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.html',1,'GpgFrontend::UI::ProxyConnectionTestThread'],['../classProxyConnectionTestThread.html',1,'ProxyConnectionTestThread'],['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.html#a538a78e0149906bf19e850ba71c00ada',1,'GpgFrontend::UI::ProxyConnectionTestThread::ProxyConnectionTestThread()']]] + ['passphrasegenerator_439',['PassphraseGenerator',['../classGpgFrontend_1_1PassphraseGenerator.html',1,'GpgFrontend::PassphraseGenerator'],['../classGpgFrontend_1_1PassphraseGenerator.html#ac82ef545a54468ad02253a61cc62e3cf',1,'GpgFrontend::PassphraseGenerator::PassphraseGenerator()']]], + ['paste_5fact_5f_440',['paste_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a62ea61c38e758022ba655c6faf54322b',1,'GpgFrontend::UI::MainWindow']]], + ['pending_5ftasks_5f_441',['pending_tasks_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a6d92421bbbfcf3136335a5173d1b2a22',1,'GpgFrontend::Thread::TaskRunner']]], + ['pgp_5fcrypt_5fbegin_442',['PGP_CRYPT_BEGIN',['../classGpgFrontend_1_1GpgConstants.html#a237006d6db30c7e3f8de171210eb35f2',1,'GpgFrontend::GpgConstants']]], + ['plaintexteditorpage_443',['PlainTextEditorPage',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html',1,'GpgFrontend::UI::PlainTextEditorPage'],['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a8759224e57d4c322933ed3df6d96e5f1',1,'GpgFrontend::UI::PlainTextEditorPage::PlainTextEditorPage()']]], + ['popobject_444',['PopObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a5ef5ddec0b82017cc4ad7f34b9b13f64',1,'GpgFrontend::Thread::Task::DataObject']]], + ['post_5finit_5fctx_445',['post_init_ctx',['../classGpgFrontend_1_1GpgContext.html#aaf3f394ff1790897c315c3249b1f06fe',1,'GpgFrontend::GpgContext']]], + ['postscheduletask_446',['PostScheduleTask',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#aaddb0cdd8eb57aac08ca9caf8b8e6bac',1,'GpgFrontend::Thread::TaskRunner']]], + ['posttask_447',['PostTask',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a4fae01eb0a5b296b8c4c6bf8408f1c6b',1,'GpgFrontend::Thread::TaskRunner']]], + ['print_5fact_5f_448',['print_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8f9dd7edba23321a13ed630cdef7fdcc',1,'GpgFrontend::UI::MainWindow']]], + ['print_5frecipient_449',['print_recipient',['../classGpgFrontend_1_1GpgDecryptResultAnalyse.html#a1aac1c1f77a12069479a47f54a934c44',1,'GpgFrontend::GpgDecryptResultAnalyse']]], + ['print_5fsigner_450',['print_signer',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a57bf4a26466e07f7f0ecc19de3782104',1,'GpgFrontend::GpgVerifyResultAnalyse']]], + ['process_5fdirectory_5finto_5ftarball_451',['process_directory_into_tarball',['../namespaceGpgFrontend_1_1UI.html#a5470872566b41ce628f64039f34b964a',1,'GpgFrontend::UI']]], + ['process_5foperation_452',['process_operation',['../namespaceGpgFrontend_1_1UI.html#a3c971eeb5c620d08d6d92f0752ceaf9f',1,'GpgFrontend::UI']]], + ['process_5fresult_5fanalyse_453',['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_454',['process_tarball_into_directory',['../namespaceGpgFrontend_1_1UI.html#a57d0a4dba23cd3d9b42222d40c710dc1',1,'GpgFrontend::UI']]], + ['proxyconnectiontestthread_455',['ProxyConnectionTestThread',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.html',1,'GpgFrontend::UI::ProxyConnectionTestThread'],['../classProxyConnectionTestThread.html',1,'ProxyConnectionTestThread'],['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.html#a538a78e0149906bf19e850ba71c00ada',1,'GpgFrontend::UI::ProxyConnectionTestThread::ProxyConnectionTestThread()']]] ]; diff --git a/docs/html/search/classes_0.js b/docs/html/search/classes_0.js index 7cfa2536..2746177a 100644 --- a/docs/html/search/classes_0.js +++ b/docs/html/search/classes_0.js @@ -1,7 +1,7 @@ var searchData= [ - ['_5fctx_5fref_5fdeleter_700',['_ctx_ref_deleter',['../structGpgFrontend_1_1GpgContext_1_1__ctx__ref__deleter.html',1,'GpgFrontend::GpgContext']]], - ['_5fdata_5fref_5fdeleter_701',['_data_ref_deleter',['../structGpgFrontend_1_1GpgData_1_1__data__ref__deleter.html',1,'GpgFrontend::GpgData']]], - ['_5fkey_5fref_5fdeleter_702',['_key_ref_deleter',['../structGpgFrontend_1_1GpgKey_1_1__key__ref__deleter.html',1,'GpgFrontend::GpgKey']]], - ['_5fresult_5fref_5fdeletor_703',['_result_ref_deletor',['../structGpgFrontend_1_1__result__ref__deletor.html',1,'GpgFrontend']]] + ['_5fctx_5fref_5fdeleter_721',['_ctx_ref_deleter',['../structGpgFrontend_1_1GpgContext_1_1__ctx__ref__deleter.html',1,'GpgFrontend::GpgContext']]], + ['_5fdata_5fref_5fdeleter_722',['_data_ref_deleter',['../structGpgFrontend_1_1GpgData_1_1__data__ref__deleter.html',1,'GpgFrontend::GpgData']]], + ['_5fkey_5fref_5fdeleter_723',['_key_ref_deleter',['../structGpgFrontend_1_1GpgKey_1_1__key__ref__deleter.html',1,'GpgFrontend::GpgKey']]], + ['_5fresult_5fref_5fdeletor_724',['_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 e00614da..439440df 100644 --- a/docs/html/search/classes_1.js +++ b/docs/html/search/classes_1.js @@ -1,8 +1,8 @@ var searchData= [ - ['aboutdialog_704',['AboutDialog',['../classGpgFrontend_1_1UI_1_1AboutDialog.html',1,'GpgFrontend::UI']]], - ['advancedtab_705',['AdvancedTab',['../classGpgFrontend_1_1UI_1_1AdvancedTab.html',1,'GpgFrontend::UI']]], - ['appearancetab_706',['AppearanceTab',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html',1,'GpgFrontend::UI']]], - ['archivefileoperator_707',['ArchiveFileOperator',['../classGpgFrontend_1_1ArchiveFileOperator.html',1,'GpgFrontend']]], - ['archivestruct_708',['ArchiveStruct',['../structGpgFrontend_1_1ArchiveStruct.html',1,'GpgFrontend']]] + ['aboutdialog_725',['AboutDialog',['../classGpgFrontend_1_1UI_1_1AboutDialog.html',1,'GpgFrontend::UI']]], + ['advancedtab_726',['AdvancedTab',['../classGpgFrontend_1_1UI_1_1AdvancedTab.html',1,'GpgFrontend::UI']]], + ['appearancetab_727',['AppearanceTab',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html',1,'GpgFrontend::UI']]], + ['archivefileoperator_728',['ArchiveFileOperator',['../classGpgFrontend_1_1ArchiveFileOperator.html',1,'GpgFrontend']]], + ['archivestruct_729',['ArchiveStruct',['../structGpgFrontend_1_1ArchiveStruct.html',1,'GpgFrontend']]] ]; diff --git a/docs/html/search/classes_10.js b/docs/html/search/classes_10.js index e8e4fbca..8059aacf 100644 --- a/docs/html/search/classes_10.js +++ b/docs/html/search/classes_10.js @@ -1,10 +1,10 @@ var searchData= [ - ['task_818',['Task',['../classGpgFrontend_1_1Thread_1_1Task.html',1,'GpgFrontend::Thread']]], - ['taskrunner_819',['TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html',1,'GpgFrontend::Thread']]], - ['taskrunnergetter_820',['TaskRunnerGetter',['../classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html',1,'GpgFrontend::Thread']]], - ['testlistedkeyserverthread_821',['TestListedKeyServerThread',['../classTestListedKeyServerThread.html',1,'']]], - ['textedit_822',['TextEdit',['../classGpgFrontend_1_1UI_1_1TextEdit.html',1,'GpgFrontend::UI']]], - ['tofuinfopage_823',['TOFUInfoPage',['../classGpgFrontend_1_1UI_1_1TOFUInfoPage.html',1,'GpgFrontend::UI']]], - ['translatorstab_824',['TranslatorsTab',['../classGpgFrontend_1_1UI_1_1TranslatorsTab.html',1,'GpgFrontend::UI']]] + ['task_841',['Task',['../classGpgFrontend_1_1Thread_1_1Task.html',1,'GpgFrontend::Thread']]], + ['taskrunner_842',['TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html',1,'GpgFrontend::Thread']]], + ['taskrunnergetter_843',['TaskRunnerGetter',['../classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html',1,'GpgFrontend::Thread']]], + ['testlistedkeyserverthread_844',['TestListedKeyServerThread',['../classTestListedKeyServerThread.html',1,'']]], + ['textedit_845',['TextEdit',['../classGpgFrontend_1_1UI_1_1TextEdit.html',1,'GpgFrontend::UI']]], + ['tofuinfopage_846',['TOFUInfoPage',['../classGpgFrontend_1_1UI_1_1TOFUInfoPage.html',1,'GpgFrontend::UI']]], + ['translatorstab_847',['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 8b98bc7e..7bca9e4c 100644 --- a/docs/html/search/classes_11.js +++ b/docs/html/search/classes_11.js @@ -1,4 +1,4 @@ var searchData= [ - ['updatetab_825',['UpdateTab',['../classGpgFrontend_1_1UI_1_1UpdateTab.html',1,'GpgFrontend::UI']]] + ['updatetab_848',['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 a12df58c..21c4c67f 100644 --- a/docs/html/search/classes_12.js +++ b/docs/html/search/classes_12.js @@ -1,6 +1,6 @@ var searchData= [ - ['verifydetailsdialog_826',['VerifyDetailsDialog',['../classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html',1,'GpgFrontend::UI']]], - ['verifykeydetailbox_827',['VerifyKeyDetailBox',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html',1,'GpgFrontend::UI']]], - ['versionchecktask_828',['VersionCheckTask',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html',1,'GpgFrontend::UI']]] + ['verifydetailsdialog_849',['VerifyDetailsDialog',['../classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html',1,'GpgFrontend::UI']]], + ['verifykeydetailbox_850',['VerifyKeyDetailBox',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html',1,'GpgFrontend::UI']]], + ['versionchecktask_851',['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 ac2f85e2..cde32706 100644 --- a/docs/html/search/classes_13.js +++ b/docs/html/search/classes_13.js @@ -1,5 +1,5 @@ var searchData= [ - ['waitingdialog_829',['WaitingDialog',['../classGpgFrontend_1_1UI_1_1WaitingDialog.html',1,'GpgFrontend::UI']]], - ['wizard_830',['Wizard',['../classGpgFrontend_1_1UI_1_1Wizard.html',1,'GpgFrontend::UI']]] + ['waitingdialog_852',['WaitingDialog',['../classGpgFrontend_1_1UI_1_1WaitingDialog.html',1,'GpgFrontend::UI']]], + ['wizard_853',['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 0fc65738..4a715715 100644 --- a/docs/html/search/classes_2.js +++ b/docs/html/search/classes_2.js @@ -1,12 +1,14 @@ var searchData= [ - ['channelobject_709',['ChannelObject',['../classGpgFrontend_1_1ChannelObject.html',1,'GpgFrontend']]], - ['charsetoperator_710',['CharsetOperator',['../classGpgFrontend_1_1CharsetOperator.html',1,'GpgFrontend']]], - ['choosepage_711',['ChoosePage',['../classGpgFrontend_1_1UI_1_1ChoosePage.html',1,'GpgFrontend::UI']]], - ['class_712',['class',['../classclass.html',1,'']]], - ['commonutils_713',['CommonUtils',['../classGpgFrontend_1_1UI_1_1CommonUtils.html',1,'GpgFrontend::UI']]], - ['conclusionpage_714',['ConclusionPage',['../classGpgFrontend_1_1UI_1_1ConclusionPage.html',1,'GpgFrontend::UI']]], - ['corecommonutil_715',['CoreCommonUtil',['../classGpgFrontend_1_1CoreCommonUtil.html',1,'GpgFrontend']]], - ['cryptomenu_716',['CryptoMenu',['../structGpgFrontend_1_1UI_1_1MainWindow_1_1CryptoMenu.html',1,'GpgFrontend::UI::MainWindow']]], - ['ctxchecktask_717',['CtxCheckTask',['../classGpgFrontend_1_1Thread_1_1CtxCheckTask.html',1,'GpgFrontend::Thread']]] + ['cachemanager_730',['CacheManager',['../classGpgFrontend_1_1CacheManager.html',1,'GpgFrontend']]], + ['channelobject_731',['ChannelObject',['../classGpgFrontend_1_1ChannelObject.html',1,'GpgFrontend']]], + ['charsetoperator_732',['CharsetOperator',['../classGpgFrontend_1_1CharsetOperator.html',1,'GpgFrontend']]], + ['choosepage_733',['ChoosePage',['../classGpgFrontend_1_1UI_1_1ChoosePage.html',1,'GpgFrontend::UI']]], + ['class_734',['class',['../classclass.html',1,'']]], + ['commonutils_735',['CommonUtils',['../classGpgFrontend_1_1UI_1_1CommonUtils.html',1,'GpgFrontend::UI']]], + ['conclusionpage_736',['ConclusionPage',['../classGpgFrontend_1_1UI_1_1ConclusionPage.html',1,'GpgFrontend::UI']]], + ['corecommonutil_737',['CoreCommonUtil',['../classGpgFrontend_1_1CoreCommonUtil.html',1,'GpgFrontend']]], + ['coresignalstation_738',['CoreSignalStation',['../classGpgFrontend_1_1CoreSignalStation.html',1,'GpgFrontend']]], + ['cryptomenu_739',['CryptoMenu',['../structGpgFrontend_1_1UI_1_1MainWindow_1_1CryptoMenu.html',1,'GpgFrontend::UI::MainWindow']]], + ['ctxchecktask_740',['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 a15a7fbc..12dc7497 100644 --- a/docs/html/search/classes_3.js +++ b/docs/html/search/classes_3.js @@ -1,6 +1,6 @@ var searchData= [ - ['dataobject_718',['DataObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html',1,'GpgFrontend::Thread::Task']]], - ['dataobjectoperator_719',['DataObjectOperator',['../classGpgFrontend_1_1DataObjectOperator.html',1,'GpgFrontend']]], - ['destructor_720',['Destructor',['../structGpgFrontend_1_1Thread_1_1Task_1_1DataObject_1_1Destructor.html',1,'GpgFrontend::Thread::Task::DataObject']]] + ['dataobject_741',['DataObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html',1,'GpgFrontend::Thread::Task']]], + ['dataobjectoperator_742',['DataObjectOperator',['../classGpgFrontend_1_1DataObjectOperator.html',1,'GpgFrontend']]], + ['destructor_743',['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 f8f2b970..310f4191 100644 --- a/docs/html/search/classes_4.js +++ b/docs/html/search/classes_4.js @@ -1,4 +1,4 @@ var searchData= [ - ['exportkeypackagedialog_721',['ExportKeyPackageDialog',['../classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html',1,'GpgFrontend::UI']]] + ['exportkeypackagedialog_744',['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 66789a1e..ecca994c 100644 --- a/docs/html/search/classes_5.js +++ b/docs/html/search/classes_5.js @@ -1,7 +1,7 @@ var searchData= [ - ['fileoperator_722',['FileOperator',['../classGpgFrontend_1_1FileOperator.html',1,'GpgFrontend']]], - ['filepage_723',['FilePage',['../classGpgFrontend_1_1UI_1_1FilePage.html',1,'GpgFrontend::UI']]], - ['filereadtask_724',['FileReadTask',['../classGpgFrontend_1_1UI_1_1FileReadTask.html',1,'GpgFrontend::UI']]], - ['findwidget_725',['FindWidget',['../classGpgFrontend_1_1UI_1_1FindWidget.html',1,'GpgFrontend::UI']]] + ['fileoperator_745',['FileOperator',['../classGpgFrontend_1_1FileOperator.html',1,'GpgFrontend']]], + ['filepage_746',['FilePage',['../classGpgFrontend_1_1UI_1_1FilePage.html',1,'GpgFrontend::UI']]], + ['filereadtask_747',['FileReadTask',['../classGpgFrontend_1_1UI_1_1FileReadTask.html',1,'GpgFrontend::UI']]], + ['findwidget_748',['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 1a20b777..40ee4686 100644 --- a/docs/html/search/classes_6.js +++ b/docs/html/search/classes_6.js @@ -1,37 +1,37 @@ var searchData= [ - ['generaldialog_726',['GeneralDialog',['../classGpgFrontend_1_1UI_1_1GeneralDialog.html',1,'GpgFrontend::UI']]], - ['generalmainwindow_727',['GeneralMainWindow',['../classGpgFrontend_1_1UI_1_1GeneralMainWindow.html',1,'GpgFrontend::UI']]], - ['generaltab_728',['GeneralTab',['../classGpgFrontend_1_1UI_1_1GeneralTab.html',1,'GpgFrontend::UI']]], - ['genkeyinfo_729',['GenKeyInfo',['../classGpgFrontend_1_1GenKeyInfo.html',1,'GpgFrontend']]], - ['globalsettingstation_730',['GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html',1,'GpgFrontend']]], - ['gnupgtab_731',['GnupgTab',['../classGpgFrontend_1_1UI_1_1GnupgTab.html',1,'GpgFrontend::UI']]], - ['gpgadvancedoperator_732',['GpgAdvancedOperator',['../classGpgFrontend_1_1GpgAdvancedOperator.html',1,'GpgFrontend']]], - ['gpgbasicoperator_733',['GpgBasicOperator',['../classGpgFrontend_1_1GpgBasicOperator.html',1,'GpgFrontend']]], - ['gpgcommandexecutor_734',['GpgCommandExecutor',['../classGpgFrontend_1_1GpgCommandExecutor.html',1,'GpgFrontend']]], - ['gpgconstants_735',['GpgConstants',['../classGpgFrontend_1_1GpgConstants.html',1,'GpgFrontend']]], - ['gpgcontext_736',['GpgContext',['../classGpgFrontend_1_1GpgContext.html',1,'GpgFrontend']]], - ['gpgcontextinitargs_737',['GpgContextInitArgs',['../structGpgFrontend_1_1GpgContextInitArgs.html',1,'GpgFrontend']]], - ['gpgdata_738',['GpgData',['../classGpgFrontend_1_1GpgData.html',1,'GpgFrontend']]], - ['gpgdecryptresultanalyse_739',['GpgDecryptResultAnalyse',['../classGpgFrontend_1_1GpgDecryptResultAnalyse.html',1,'GpgFrontend']]], - ['gpgencryptresultanalyse_740',['GpgEncryptResultAnalyse',['../classGpgFrontend_1_1GpgEncryptResultAnalyse.html',1,'GpgFrontend']]], - ['gpgfileopera_741',['GpgFileOpera',['../classGpgFrontend_1_1GpgFileOpera.html',1,'GpgFrontend']]], - ['gpgfrontendapplication_742',['GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html',1,'GpgFrontend::UI']]], - ['gpgimportedkey_743',['GpgImportedKey',['../classGpgFrontend_1_1GpgImportedKey.html',1,'GpgFrontend']]], - ['gpgimportinformation_744',['GpgImportInformation',['../classGpgFrontend_1_1GpgImportInformation.html',1,'GpgFrontend']]], - ['gpginfo_745',['GpgInfo',['../classGpgFrontend_1_1GpgInfo.html',1,'GpgFrontend']]], - ['gpgkey_746',['GpgKey',['../classGpgFrontend_1_1GpgKey.html',1,'GpgFrontend']]], - ['gpgkeygetter_747',['GpgKeyGetter',['../classGpgFrontend_1_1GpgKeyGetter.html',1,'GpgFrontend']]], - ['gpgkeyimportexporter_748',['GpgKeyImportExporter',['../classGpgFrontend_1_1GpgKeyImportExporter.html',1,'GpgFrontend']]], - ['gpgkeymanager_749',['GpgKeyManager',['../classGpgFrontend_1_1GpgKeyManager.html',1,'GpgFrontend']]], - ['gpgkeyopera_750',['GpgKeyOpera',['../classGpgFrontend_1_1GpgKeyOpera.html',1,'GpgFrontend']]], - ['gpgkeysignature_751',['GpgKeySignature',['../classGpgFrontend_1_1GpgKeySignature.html',1,'GpgFrontend']]], - ['gpgresultanalyse_752',['GpgResultAnalyse',['../classGpgFrontend_1_1GpgResultAnalyse.html',1,'GpgFrontend']]], - ['gpgsignature_753',['GpgSignature',['../classGpgFrontend_1_1GpgSignature.html',1,'GpgFrontend']]], - ['gpgsignresultanalyse_754',['GpgSignResultAnalyse',['../classGpgFrontend_1_1GpgSignResultAnalyse.html',1,'GpgFrontend']]], - ['gpgsubkey_755',['GpgSubKey',['../classGpgFrontend_1_1GpgSubKey.html',1,'GpgFrontend']]], - ['gpgtofuinfo_756',['GpgTOFUInfo',['../classGpgFrontend_1_1GpgTOFUInfo.html',1,'GpgFrontend']]], - ['gpguid_757',['GpgUID',['../classGpgFrontend_1_1GpgUID.html',1,'GpgFrontend']]], - ['gpguidoperator_758',['GpgUIDOperator',['../classGpgFrontend_1_1GpgUIDOperator.html',1,'GpgFrontend']]], - ['gpgverifyresultanalyse_759',['GpgVerifyResultAnalyse',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html',1,'GpgFrontend']]] + ['generaldialog_749',['GeneralDialog',['../classGpgFrontend_1_1UI_1_1GeneralDialog.html',1,'GpgFrontend::UI']]], + ['generalmainwindow_750',['GeneralMainWindow',['../classGpgFrontend_1_1UI_1_1GeneralMainWindow.html',1,'GpgFrontend::UI']]], + ['generaltab_751',['GeneralTab',['../classGpgFrontend_1_1UI_1_1GeneralTab.html',1,'GpgFrontend::UI']]], + ['genkeyinfo_752',['GenKeyInfo',['../classGpgFrontend_1_1GenKeyInfo.html',1,'GpgFrontend']]], + ['globalsettingstation_753',['GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html',1,'GpgFrontend']]], + ['gnupgtab_754',['GnupgTab',['../classGpgFrontend_1_1UI_1_1GnupgTab.html',1,'GpgFrontend::UI']]], + ['gpgadvancedoperator_755',['GpgAdvancedOperator',['../classGpgFrontend_1_1GpgAdvancedOperator.html',1,'GpgFrontend']]], + ['gpgbasicoperator_756',['GpgBasicOperator',['../classGpgFrontend_1_1GpgBasicOperator.html',1,'GpgFrontend']]], + ['gpgcommandexecutor_757',['GpgCommandExecutor',['../classGpgFrontend_1_1GpgCommandExecutor.html',1,'GpgFrontend']]], + ['gpgconstants_758',['GpgConstants',['../classGpgFrontend_1_1GpgConstants.html',1,'GpgFrontend']]], + ['gpgcontext_759',['GpgContext',['../classGpgFrontend_1_1GpgContext.html',1,'GpgFrontend']]], + ['gpgcontextinitargs_760',['GpgContextInitArgs',['../structGpgFrontend_1_1GpgContextInitArgs.html',1,'GpgFrontend']]], + ['gpgdata_761',['GpgData',['../classGpgFrontend_1_1GpgData.html',1,'GpgFrontend']]], + ['gpgdecryptresultanalyse_762',['GpgDecryptResultAnalyse',['../classGpgFrontend_1_1GpgDecryptResultAnalyse.html',1,'GpgFrontend']]], + ['gpgencryptresultanalyse_763',['GpgEncryptResultAnalyse',['../classGpgFrontend_1_1GpgEncryptResultAnalyse.html',1,'GpgFrontend']]], + ['gpgfileopera_764',['GpgFileOpera',['../classGpgFrontend_1_1GpgFileOpera.html',1,'GpgFrontend']]], + ['gpgfrontendapplication_765',['GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html',1,'GpgFrontend::UI']]], + ['gpgimportedkey_766',['GpgImportedKey',['../classGpgFrontend_1_1GpgImportedKey.html',1,'GpgFrontend']]], + ['gpgimportinformation_767',['GpgImportInformation',['../classGpgFrontend_1_1GpgImportInformation.html',1,'GpgFrontend']]], + ['gpginfo_768',['GpgInfo',['../classGpgFrontend_1_1GpgInfo.html',1,'GpgFrontend']]], + ['gpgkey_769',['GpgKey',['../classGpgFrontend_1_1GpgKey.html',1,'GpgFrontend']]], + ['gpgkeygetter_770',['GpgKeyGetter',['../classGpgFrontend_1_1GpgKeyGetter.html',1,'GpgFrontend']]], + ['gpgkeyimportexporter_771',['GpgKeyImportExporter',['../classGpgFrontend_1_1GpgKeyImportExporter.html',1,'GpgFrontend']]], + ['gpgkeymanager_772',['GpgKeyManager',['../classGpgFrontend_1_1GpgKeyManager.html',1,'GpgFrontend']]], + ['gpgkeyopera_773',['GpgKeyOpera',['../classGpgFrontend_1_1GpgKeyOpera.html',1,'GpgFrontend']]], + ['gpgkeysignature_774',['GpgKeySignature',['../classGpgFrontend_1_1GpgKeySignature.html',1,'GpgFrontend']]], + ['gpgresultanalyse_775',['GpgResultAnalyse',['../classGpgFrontend_1_1GpgResultAnalyse.html',1,'GpgFrontend']]], + ['gpgsignature_776',['GpgSignature',['../classGpgFrontend_1_1GpgSignature.html',1,'GpgFrontend']]], + ['gpgsignresultanalyse_777',['GpgSignResultAnalyse',['../classGpgFrontend_1_1GpgSignResultAnalyse.html',1,'GpgFrontend']]], + ['gpgsubkey_778',['GpgSubKey',['../classGpgFrontend_1_1GpgSubKey.html',1,'GpgFrontend']]], + ['gpgtofuinfo_779',['GpgTOFUInfo',['../classGpgFrontend_1_1GpgTOFUInfo.html',1,'GpgFrontend']]], + ['gpguid_780',['GpgUID',['../classGpgFrontend_1_1GpgUID.html',1,'GpgFrontend']]], + ['gpguidoperator_781',['GpgUIDOperator',['../classGpgFrontend_1_1GpgUIDOperator.html',1,'GpgFrontend']]], + ['gpgverifyresultanalyse_782',['GpgVerifyResultAnalyse',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html',1,'GpgFrontend']]] ]; diff --git a/docs/html/search/classes_7.js b/docs/html/search/classes_7.js index 76ccf89e..991e83cc 100644 --- a/docs/html/search/classes_7.js +++ b/docs/html/search/classes_7.js @@ -1,4 +1,4 @@ var searchData= [ - ['helppage_760',['HelpPage',['../classGpgFrontend_1_1UI_1_1HelpPage.html',1,'GpgFrontend::UI']]] + ['helppage_783',['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 d9d41589..57e5ded0 100644 --- a/docs/html/search/classes_8.js +++ b/docs/html/search/classes_8.js @@ -1,6 +1,6 @@ var searchData= [ - ['infoboardwidget_761',['InfoBoardWidget',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html',1,'GpgFrontend::UI']]], - ['infotab_762',['InfoTab',['../classGpgFrontend_1_1UI_1_1InfoTab.html',1,'GpgFrontend::UI']]], - ['intropage_763',['IntroPage',['../classGpgFrontend_1_1UI_1_1IntroPage.html',1,'GpgFrontend::UI']]] + ['infoboardwidget_784',['InfoBoardWidget',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html',1,'GpgFrontend::UI']]], + ['infotab_785',['InfoTab',['../classGpgFrontend_1_1UI_1_1InfoTab.html',1,'GpgFrontend::UI']]], + ['intropage_786',['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 31fd9f23..811c5d69 100644 --- a/docs/html/search/classes_9.js +++ b/docs/html/search/classes_9.js @@ -1,26 +1,26 @@ var searchData= [ - ['keydetailsdialog_764',['KeyDetailsDialog',['../classGpgFrontend_1_1UI_1_1KeyDetailsDialog.html',1,'GpgFrontend::UI']]], - ['keygendialog_765',['KeyGenDialog',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html',1,'GpgFrontend::UI']]], - ['keygenpage_766',['KeyGenPage',['../classGpgFrontend_1_1UI_1_1KeyGenPage.html',1,'GpgFrontend::UI']]], - ['keyimportdetaildialog_767',['KeyImportDetailDialog',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html',1,'GpgFrontend::UI']]], - ['keylist_768',['KeyList',['../classGpgFrontend_1_1UI_1_1KeyList.html',1,'GpgFrontend::UI']]], - ['keylistcolumn_769',['KeyListColumn',['../structGpgFrontend_1_1UI_1_1KeyListColumn.html',1,'GpgFrontend::UI']]], - ['keylistrow_770',['KeyListRow',['../structGpgFrontend_1_1UI_1_1KeyListRow.html',1,'GpgFrontend::UI']]], - ['keymenuability_771',['KeyMenuAbility',['../structGpgFrontend_1_1UI_1_1KeyMenuAbility.html',1,'GpgFrontend::UI']]], - ['keymgmt_772',['KeyMgmt',['../classGpgFrontend_1_1UI_1_1KeyMgmt.html',1,'GpgFrontend::UI']]], - ['keynewuiddialog_773',['KeyNewUIDDialog',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html',1,'GpgFrontend::UI']]], - ['keypackageoperator_774',['KeyPackageOperator',['../classGpgFrontend_1_1KeyPackageOperator.html',1,'GpgFrontend']]], - ['keypairdetailtab_775',['KeyPairDetailTab',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html',1,'GpgFrontend::UI']]], - ['keypairoperatab_776',['KeyPairOperaTab',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html',1,'GpgFrontend::UI']]], - ['keypairsubkeytab_777',['KeyPairSubkeyTab',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html',1,'GpgFrontend::UI']]], - ['keypairuidtab_778',['KeyPairUIDTab',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html',1,'GpgFrontend::UI']]], - ['keyserverimportdialog_779',['KeyServerImportDialog',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html',1,'GpgFrontend::UI']]], - ['keyserverimporttask_780',['KeyServerImportTask',['../classGpgFrontend_1_1UI_1_1KeyServerImportTask.html',1,'GpgFrontend::UI']]], - ['keyserversearchtask_781',['KeyServerSearchTask',['../classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html',1,'GpgFrontend::UI']]], - ['keyservertab_782',['KeyserverTab',['../classGpgFrontend_1_1UI_1_1KeyserverTab.html',1,'GpgFrontend::UI']]], - ['keysetexpiredatedialog_783',['KeySetExpireDateDialog',['../classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html',1,'GpgFrontend::UI']]], - ['keytable_784',['KeyTable',['../structGpgFrontend_1_1UI_1_1KeyTable.html',1,'GpgFrontend::UI']]], - ['keyuidsigndialog_785',['KeyUIDSignDialog',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html',1,'GpgFrontend::UI']]], - ['keyuploaddialog_786',['KeyUploadDialog',['../classGpgFrontend_1_1UI_1_1KeyUploadDialog.html',1,'GpgFrontend::UI']]] + ['keydetailsdialog_787',['KeyDetailsDialog',['../classGpgFrontend_1_1UI_1_1KeyDetailsDialog.html',1,'GpgFrontend::UI']]], + ['keygendialog_788',['KeyGenDialog',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html',1,'GpgFrontend::UI']]], + ['keygenpage_789',['KeyGenPage',['../classGpgFrontend_1_1UI_1_1KeyGenPage.html',1,'GpgFrontend::UI']]], + ['keyimportdetaildialog_790',['KeyImportDetailDialog',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html',1,'GpgFrontend::UI']]], + ['keylist_791',['KeyList',['../classGpgFrontend_1_1UI_1_1KeyList.html',1,'GpgFrontend::UI']]], + ['keylistcolumn_792',['KeyListColumn',['../structGpgFrontend_1_1UI_1_1KeyListColumn.html',1,'GpgFrontend::UI']]], + ['keylistrow_793',['KeyListRow',['../structGpgFrontend_1_1UI_1_1KeyListRow.html',1,'GpgFrontend::UI']]], + ['keymenuability_794',['KeyMenuAbility',['../structGpgFrontend_1_1UI_1_1KeyMenuAbility.html',1,'GpgFrontend::UI']]], + ['keymgmt_795',['KeyMgmt',['../classGpgFrontend_1_1UI_1_1KeyMgmt.html',1,'GpgFrontend::UI']]], + ['keynewuiddialog_796',['KeyNewUIDDialog',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html',1,'GpgFrontend::UI']]], + ['keypackageoperator_797',['KeyPackageOperator',['../classGpgFrontend_1_1KeyPackageOperator.html',1,'GpgFrontend']]], + ['keypairdetailtab_798',['KeyPairDetailTab',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html',1,'GpgFrontend::UI']]], + ['keypairoperatab_799',['KeyPairOperaTab',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html',1,'GpgFrontend::UI']]], + ['keypairsubkeytab_800',['KeyPairSubkeyTab',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html',1,'GpgFrontend::UI']]], + ['keypairuidtab_801',['KeyPairUIDTab',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html',1,'GpgFrontend::UI']]], + ['keyserverimportdialog_802',['KeyServerImportDialog',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html',1,'GpgFrontend::UI']]], + ['keyserverimporttask_803',['KeyServerImportTask',['../classGpgFrontend_1_1UI_1_1KeyServerImportTask.html',1,'GpgFrontend::UI']]], + ['keyserversearchtask_804',['KeyServerSearchTask',['../classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html',1,'GpgFrontend::UI']]], + ['keyservertab_805',['KeyserverTab',['../classGpgFrontend_1_1UI_1_1KeyserverTab.html',1,'GpgFrontend::UI']]], + ['keysetexpiredatedialog_806',['KeySetExpireDateDialog',['../classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html',1,'GpgFrontend::UI']]], + ['keytable_807',['KeyTable',['../structGpgFrontend_1_1UI_1_1KeyTable.html',1,'GpgFrontend::UI']]], + ['keyuidsigndialog_808',['KeyUIDSignDialog',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html',1,'GpgFrontend::UI']]], + ['keyuploaddialog_809',['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 e3f7fe88..72340a77 100644 --- a/docs/html/search/classes_a.js +++ b/docs/html/search/classes_a.js @@ -1,4 +1,4 @@ var searchData= [ - ['listedkeyservertesttask_787',['ListedKeyServerTestTask',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html',1,'GpgFrontend::UI']]] + ['listedkeyservertesttask_810',['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 f7842b13..e3ef778b 100644 --- a/docs/html/search/classes_b.js +++ b/docs/html/search/classes_b.js @@ -1,4 +1,4 @@ var searchData= [ - ['mainwindow_788',['MainWindow',['../classGpgFrontend_1_1UI_1_1MainWindow.html',1,'GpgFrontend::UI']]] + ['mainwindow_811',['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 908ff11b..8ed1f387 100644 --- a/docs/html/search/classes_c.js +++ b/docs/html/search/classes_c.js @@ -1,4 +1,4 @@ var searchData= [ - ['networktab_789',['NetworkTab',['../classGpgFrontend_1_1UI_1_1NetworkTab.html',1,'GpgFrontend::UI']]] + ['networktab_812',['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 d207e9d7..87e32d0e 100644 --- a/docs/html/search/classes_d.js +++ b/docs/html/search/classes_d.js @@ -1,6 +1,6 @@ var searchData= [ - ['passphrasegenerator_790',['PassphraseGenerator',['../classGpgFrontend_1_1PassphraseGenerator.html',1,'GpgFrontend']]], - ['plaintexteditorpage_791',['PlainTextEditorPage',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html',1,'GpgFrontend::UI']]], - ['proxyconnectiontestthread_792',['ProxyConnectionTestThread',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.html',1,'GpgFrontend::UI::ProxyConnectionTestThread'],['../classProxyConnectionTestThread.html',1,'ProxyConnectionTestThread']]] + ['passphrasegenerator_813',['PassphraseGenerator',['../classGpgFrontend_1_1PassphraseGenerator.html',1,'GpgFrontend']]], + ['plaintexteditorpage_814',['PlainTextEditorPage',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html',1,'GpgFrontend::UI']]], + ['proxyconnectiontestthread_815',['ProxyConnectionTestThread',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.html',1,'GpgFrontend::UI::ProxyConnectionTestThread'],['../classProxyConnectionTestThread.html',1,'ProxyConnectionTestThread']]] ]; diff --git a/docs/html/search/classes_e.js b/docs/html/search/classes_e.js index 705f7b68..c2e6aeb2 100644 --- a/docs/html/search/classes_e.js +++ b/docs/html/search/classes_e.js @@ -1,4 +1,4 @@ var searchData= [ - ['quitdialog_793',['QuitDialog',['../classGpgFrontend_1_1UI_1_1QuitDialog.html',1,'GpgFrontend::UI']]] + ['quitdialog_816',['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 6f68f6de..c9742dd4 100644 --- a/docs/html/search/classes_f.js +++ b/docs/html/search/classes_f.js @@ -1,27 +1,27 @@ var searchData= [ - ['settingsdialog_794',['SettingsDialog',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html',1,'GpgFrontend::UI']]], - ['settingsobject_795',['SettingsObject',['../classGpgFrontend_1_1UI_1_1SettingsObject.html',1,'GpgFrontend::UI']]], - ['signalstation_796',['SignalStation',['../classGpgFrontend_1_1UI_1_1SignalStation.html',1,'GpgFrontend::UI']]], - ['signaturedetailsdialog_797',['SignatureDetailsDialog',['../classSignatureDetailsDialog.html',1,'']]], - ['signerspicker_798',['SignersPicker',['../classGpgFrontend_1_1UI_1_1SignersPicker.html',1,'GpgFrontend::UI']]], - ['singletonfunctionobject_799',['SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20dataobjectoperator_20_3e_800',['SingletonFunctionObject< DataObjectOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20globalsettingstation_20_3e_801',['SingletonFunctionObject< GlobalSettingStation >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgadvancedoperator_20_3e_802',['SingletonFunctionObject< GpgAdvancedOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgbasicoperator_20_3e_803',['SingletonFunctionObject< GpgBasicOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgcommandexecutor_20_3e_804',['SingletonFunctionObject< GpgCommandExecutor >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgcontext_20_3e_805',['SingletonFunctionObject< GpgContext >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgfileopera_20_3e_806',['SingletonFunctionObject< GpgFileOpera >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgkeygetter_20_3e_807',['SingletonFunctionObject< GpgKeyGetter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgkeyimportexporter_20_3e_808',['SingletonFunctionObject< GpgKeyImportExporter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgkeymanager_20_3e_809',['SingletonFunctionObject< GpgKeyManager >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpgkeyopera_20_3e_810',['SingletonFunctionObject< GpgKeyOpera >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20gpguidoperator_20_3e_811',['SingletonFunctionObject< GpgUIDOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20passphrasegenerator_20_3e_812',['SingletonFunctionObject< PassphraseGenerator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonfunctionobject_3c_20taskrunnergetter_20_3e_813',['SingletonFunctionObject< TaskRunnerGetter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], - ['singletonstorage_814',['SingletonStorage',['../classGpgFrontend_1_1SingletonStorage.html',1,'GpgFrontend']]], - ['singletonstoragecollection_815',['SingletonStorageCollection',['../classGpgFrontend_1_1SingletonStorageCollection.html',1,'GpgFrontend']]], - ['softwareversion_816',['SoftwareVersion',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html',1,'GpgFrontend::UI']]], - ['subkeygeneratedialog_817',['SubkeyGenerateDialog',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html',1,'GpgFrontend::UI']]] + ['settingsdialog_817',['SettingsDialog',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html',1,'GpgFrontend::UI']]], + ['settingsobject_818',['SettingsObject',['../classGpgFrontend_1_1UI_1_1SettingsObject.html',1,'GpgFrontend::UI']]], + ['signalstation_819',['SignalStation',['../classGpgFrontend_1_1UI_1_1SignalStation.html',1,'GpgFrontend::UI']]], + ['signaturedetailsdialog_820',['SignatureDetailsDialog',['../classSignatureDetailsDialog.html',1,'']]], + ['signerspicker_821',['SignersPicker',['../classGpgFrontend_1_1UI_1_1SignersPicker.html',1,'GpgFrontend::UI']]], + ['singletonfunctionobject_822',['SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20dataobjectoperator_20_3e_823',['SingletonFunctionObject< DataObjectOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20globalsettingstation_20_3e_824',['SingletonFunctionObject< GlobalSettingStation >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgadvancedoperator_20_3e_825',['SingletonFunctionObject< GpgAdvancedOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgbasicoperator_20_3e_826',['SingletonFunctionObject< GpgBasicOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgcommandexecutor_20_3e_827',['SingletonFunctionObject< GpgCommandExecutor >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgcontext_20_3e_828',['SingletonFunctionObject< GpgContext >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgfileopera_20_3e_829',['SingletonFunctionObject< GpgFileOpera >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgkeygetter_20_3e_830',['SingletonFunctionObject< GpgKeyGetter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgkeyimportexporter_20_3e_831',['SingletonFunctionObject< GpgKeyImportExporter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgkeymanager_20_3e_832',['SingletonFunctionObject< GpgKeyManager >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpgkeyopera_20_3e_833',['SingletonFunctionObject< GpgKeyOpera >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20gpguidoperator_20_3e_834',['SingletonFunctionObject< GpgUIDOperator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20passphrasegenerator_20_3e_835',['SingletonFunctionObject< PassphraseGenerator >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonfunctionobject_3c_20taskrunnergetter_20_3e_836',['SingletonFunctionObject< TaskRunnerGetter >',['../classGpgFrontend_1_1SingletonFunctionObject.html',1,'GpgFrontend']]], + ['singletonstorage_837',['SingletonStorage',['../classGpgFrontend_1_1SingletonStorage.html',1,'GpgFrontend']]], + ['singletonstoragecollection_838',['SingletonStorageCollection',['../classGpgFrontend_1_1SingletonStorageCollection.html',1,'GpgFrontend']]], + ['softwareversion_839',['SoftwareVersion',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html',1,'GpgFrontend::UI']]], + ['subkeygeneratedialog_840',['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 fc71d577..20983cb1 100644 --- a/docs/html/search/enums_0.js +++ b/docs/html/search/enums_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['infoboardstatus_1484',['InfoBoardStatus',['../namespaceGpgFrontend_1_1UI.html#acbaebd342a317b1f067942e5144bb00d',1,'GpgFrontend::UI']]] + ['infoboardstatus_1526',['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 852e6f33..f5903930 100644 --- a/docs/html/search/functions_0.js +++ b/docs/html/search/functions_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['_5fnew_5fresult_835',['_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_858',['_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 3ad708e7..d807df49 100644 --- a/docs/html/search/functions_1.js +++ b/docs/html/search/functions_1.js @@ -1,15 +1,15 @@ var searchData= [ - ['aboutdialog_836',['AboutDialog',['../classGpgFrontend_1_1UI_1_1AboutDialog.html#ab04683ab4c4d682af1e259705c60d85a',1,'GpgFrontend::UI::AboutDialog']]], - ['addlistgrouptab_837',['AddListGroupTab',['../classGpgFrontend_1_1UI_1_1KeyList.html#a73ddb7feb1f70eac44e038c3dc925fec',1,'GpgFrontend::UI::KeyList']]], - ['addmenuaction_838',['AddMenuAction',['../classGpgFrontend_1_1UI_1_1KeyList.html#aa961e3ba3c48f84dea4bb7ab4f756886',1,'GpgFrontend::UI::KeyList']]], - ['addoptionalaction_839',['AddOptionalAction',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a456f15315a03107f7757d84362c1af71',1,'GpgFrontend::UI::InfoBoardWidget']]], - ['adduid_840',['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_841',['aes_256_cbc_decrypt',['../namespaceGpgFrontend_1_1RawAPI.html#a2e388ecafc7b859eda84b4e3c4e2576f',1,'GpgFrontend::RawAPI']]], - ['aes_5f256_5fcbc_5fencrypt_842',['aes_256_cbc_encrypt',['../namespaceGpgFrontend_1_1RawAPI.html#aa2bc88cf78b8da893f1b5c7e2e8ccf42',1,'GpgFrontend::RawAPI']]], - ['aes_5f256_5fcbc_5finit_843',['aes_256_cbc_init',['../namespaceGpgFrontend_1_1RawAPI.html#a1f2f6c82e9c904c3875a123a65564697',1,'GpgFrontend::RawAPI']]], - ['appearancetab_844',['AppearanceTab',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html#abfca670540bc0409b9be4459ee6a3b6c',1,'GpgFrontend::UI::AppearanceTab']]], - ['appendobject_845',['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_846',['AssociateTabWidget',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#adfa4acd435d2ec29f951f4e7e6a43f38',1,'GpgFrontend::UI::InfoBoardWidget']]], - ['associatetextedit_847',['AssociateTextEdit',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a4fd6f91eb435feb41ae93e44485646ab',1,'GpgFrontend::UI::InfoBoardWidget']]] + ['aboutdialog_859',['AboutDialog',['../classGpgFrontend_1_1UI_1_1AboutDialog.html#ab04683ab4c4d682af1e259705c60d85a',1,'GpgFrontend::UI::AboutDialog']]], + ['addlistgrouptab_860',['AddListGroupTab',['../classGpgFrontend_1_1UI_1_1KeyList.html#a73ddb7feb1f70eac44e038c3dc925fec',1,'GpgFrontend::UI::KeyList']]], + ['addmenuaction_861',['AddMenuAction',['../classGpgFrontend_1_1UI_1_1KeyList.html#aa961e3ba3c48f84dea4bb7ab4f756886',1,'GpgFrontend::UI::KeyList']]], + ['addoptionalaction_862',['AddOptionalAction',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a456f15315a03107f7757d84362c1af71',1,'GpgFrontend::UI::InfoBoardWidget']]], + ['adduid_863',['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_864',['aes_256_cbc_decrypt',['../namespaceGpgFrontend_1_1RawAPI.html#a2e388ecafc7b859eda84b4e3c4e2576f',1,'GpgFrontend::RawAPI']]], + ['aes_5f256_5fcbc_5fencrypt_865',['aes_256_cbc_encrypt',['../namespaceGpgFrontend_1_1RawAPI.html#aa2bc88cf78b8da893f1b5c7e2e8ccf42',1,'GpgFrontend::RawAPI']]], + ['aes_5f256_5fcbc_5finit_866',['aes_256_cbc_init',['../namespaceGpgFrontend_1_1RawAPI.html#a1f2f6c82e9c904c3875a123a65564697',1,'GpgFrontend::RawAPI']]], + ['appearancetab_867',['AppearanceTab',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html#abfca670540bc0409b9be4459ee6a3b6c',1,'GpgFrontend::UI::AppearanceTab']]], + ['appendobject_868',['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_869',['AssociateTabWidget',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#adfa4acd435d2ec29f951f4e7e6a43f38',1,'GpgFrontend::UI::InfoBoardWidget']]], + ['associatetextedit_870',['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 a0758fe7..606ad9c6 100644 --- a/docs/html/search/functions_10.js +++ b/docs/html/search/functions_10.js @@ -1,4 +1,4 @@ var searchData= [ - ['quitdialog_1153',['QuitDialog',['../classGpgFrontend_1_1UI_1_1QuitDialog.html#a60419bf8e817db25128c2f941fc42a3d',1,'GpgFrontend::UI::QuitDialog']]] + ['quitdialog_1183',['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 bd4d08f9..1ce9ffbd 100644 --- a/docs/html/search/functions_11.js +++ b/docs/html/search/functions_11.js @@ -1,20 +1,24 @@ var searchData= [ - ['read2buffer_1154',['Read2Buffer',['../classGpgFrontend_1_1GpgData.html#ae382a34ec551561315deca84c71c19c1',1,'GpgFrontend::GpgData']]], - ['read_5fall_5fdata_5fin_5ffile_1155',['read_all_data_in_file',['../namespaceGpgFrontend.html#a73f3e2217fb1d72dc75f266e11875f6d',1,'GpgFrontend']]], - ['readdone_1156',['ReadDone',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#ac1902b063decfeebe7f0908cbfe618ce',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['readfile_1157',['ReadFile',['../classGpgFrontend_1_1FileOperator.html#a28a3572dc01192b6a4d50b544181084c',1,'GpgFrontend::FileOperator']]], - ['readfilestd_1158',['ReadFileStd',['../classGpgFrontend_1_1FileOperator.html#ad4424bce4f22ae75a16c542dfb4ddf0a',1,'GpgFrontend::FileOperator']]], - ['refresh_1159',['Refresh',['../structGpgFrontend_1_1UI_1_1KeyTable.html#aaac381e205c323444098803e0295060f',1,'GpgFrontend::UI::KeyTable']]], - ['refresh_5finfo_5fboard_1160',['refresh_info_board',['../namespaceGpgFrontend_1_1UI.html#a204156a333cde4f705f0ace91cd3d333',1,'GpgFrontend::UI']]], - ['refresh_5fkeys_5ffrom_5fkey_5fserver_1161',['refresh_keys_from_key_server',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adfa3b3ae1de1fd04c5ea09e3c97c3e98',1,'GpgFrontend::UI::MainWindow']]], - ['refresh_5fwidgets_5fstate_1162',['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_1163',['ReleaseChannel',['../classGpgFrontend_1_1SingletonStorage.html#adb22cc80a1ab040b6e4bce962625edfd',1,'GpgFrontend::SingletonStorage::ReleaseChannel()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#ab49b1d50252e1934691a9483a6df2106',1,'GpgFrontend::SingletonFunctionObject::ReleaseChannel()']]], - ['resetoptionactionsmenu_1164',['ResetOptionActionsMenu',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a7d7504339221bd680fb18698dd829b32',1,'GpgFrontend::UI::InfoBoardWidget']]], - ['restore_5fsettings_1165',['restore_settings',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a210ab31f4d949a50507d0690c0d1598a',1,'GpgFrontend::UI::MainWindow']]], - ['revsign_1166',['RevSign',['../classGpgFrontend_1_1GpgKeyManager.html#aa2c0e804db1c4aaf3b861ee5ab54ebd8',1,'GpgFrontend::GpgKeyManager']]], - ['revuid_1167',['RevUID',['../classGpgFrontend_1_1GpgUIDOperator.html#a47f762666afbc806365877ff70947841',1,'GpgFrontend::GpgUIDOperator']]], - ['run_1168',['Run',['../classGpgFrontend_1_1Thread_1_1CtxCheckTask.html#a1c94cb1290df40a9043fe2d1a9a231f2',1,'GpgFrontend::Thread::CtxCheckTask::Run()'],['../classGpgFrontend_1_1UI_1_1FileReadTask.html#a0f8bc1c253380b68c0e65cabc011ac09',1,'GpgFrontend::UI::FileReadTask::Run()'],['../classGpgFrontend_1_1Thread_1_1Task.html#ac60aa71a24f452fd8031597ff4cbbd00',1,'GpgFrontend::Thread::Task::Run()'],['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9156325af41c378f8d7e77187d445c12',1,'GpgFrontend::UI::VersionCheckTask::Run()']]], - ['run_1169',['run',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.html#a497bb7f1b92c67f2e754fd66ca3a6666',1,'GpgFrontend::UI::ProxyConnectionTestThread']]], - ['rungpgfrontendui_1170',['RunGpgFrontendUI',['../namespaceGpgFrontend_1_1UI.html#a9e2d085812ef8fdd6f19ea94a241b4da',1,'GpgFrontend::UI']]] + ['read2buffer_1184',['Read2Buffer',['../classGpgFrontend_1_1GpgData.html#ae382a34ec551561315deca84c71c19c1',1,'GpgFrontend::GpgData']]], + ['read_5fall_5fdata_5fin_5ffile_1185',['read_all_data_in_file',['../namespaceGpgFrontend.html#a73f3e2217fb1d72dc75f266e11875f6d',1,'GpgFrontend']]], + ['readdone_1186',['ReadDone',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#ac1902b063decfeebe7f0908cbfe618ce',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['readfile_1187',['ReadFile',['../classGpgFrontend_1_1FileOperator.html#a28a3572dc01192b6a4d50b544181084c',1,'GpgFrontend::FileOperator']]], + ['readfilestd_1188',['ReadFileStd',['../classGpgFrontend_1_1FileOperator.html#ad4424bce4f22ae75a16c542dfb4ddf0a',1,'GpgFrontend::FileOperator']]], + ['refresh_1189',['Refresh',['../structGpgFrontend_1_1UI_1_1KeyTable.html#aaac381e205c323444098803e0295060f',1,'GpgFrontend::UI::KeyTable']]], + ['refresh_5finfo_5fboard_1190',['refresh_info_board',['../namespaceGpgFrontend_1_1UI.html#a204156a333cde4f705f0ace91cd3d333',1,'GpgFrontend::UI']]], + ['refresh_5fkeys_5ffrom_5fkey_5fserver_1191',['refresh_keys_from_key_server',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adfa3b3ae1de1fd04c5ea09e3c97c3e98',1,'GpgFrontend::UI::MainWindow']]], + ['refresh_5fwidgets_5fstate_1192',['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_1193',['ReleaseChannel',['../classGpgFrontend_1_1SingletonStorage.html#adb22cc80a1ab040b6e4bce962625edfd',1,'GpgFrontend::SingletonStorage::ReleaseChannel()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#ab49b1d50252e1934691a9483a6df2106',1,'GpgFrontend::SingletonFunctionObject::ReleaseChannel()']]], + ['reloadgpgcomponents_1194',['ReloadGpgComponents',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a6876b6ee63ff7147c274e4f9538d29ce',1,'GpgFrontend::GpgAdvancedOperator']]], + ['resetconfigures_1195',['ResetConfigures',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a209f6d1d664ab672437198dc10ed8226',1,'GpgFrontend::GpgAdvancedOperator']]], + ['resetoptionactionsmenu_1196',['ResetOptionActionsMenu',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a7d7504339221bd680fb18698dd829b32',1,'GpgFrontend::UI::InfoBoardWidget']]], + ['resettempcachevalue_1197',['ResetTempCacheValue',['../classGpgFrontend_1_1CoreCommonUtil.html#a354c4f7cb7f102964e43012fc10d1e52',1,'GpgFrontend::CoreCommonUtil']]], + ['restartgpgcomponents_1198',['RestartGpgComponents',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a5801bf4ea7391cbcc60efd2513d41041',1,'GpgFrontend::GpgAdvancedOperator']]], + ['restore_5fsettings_1199',['restore_settings',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a210ab31f4d949a50507d0690c0d1598a',1,'GpgFrontend::UI::MainWindow']]], + ['revsign_1200',['RevSign',['../classGpgFrontend_1_1GpgKeyManager.html#aa2c0e804db1c4aaf3b861ee5ab54ebd8',1,'GpgFrontend::GpgKeyManager']]], + ['revuid_1201',['RevUID',['../classGpgFrontend_1_1GpgUIDOperator.html#a47f762666afbc806365877ff70947841',1,'GpgFrontend::GpgUIDOperator']]], + ['run_1202',['run',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.html#a497bb7f1b92c67f2e754fd66ca3a6666',1,'GpgFrontend::UI::ProxyConnectionTestThread']]], + ['run_1203',['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_1204',['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 b0a073ae..233ad8fa 100644 --- a/docs/html/search/functions_12.js +++ b/docs/html/search/functions_12.js @@ -1,156 +1,162 @@ var searchData= [ - ['save_5ffile_1171',['save_file',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a66b6f6633e7ac71e5fe8b7814a81cadf',1,'GpgFrontend::UI::TextEdit']]], - ['save_5fsettings_1172',['save_settings',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7a4b6490038470a8849231e48282da98',1,'GpgFrontend::UI::MainWindow']]], - ['set_5fbackground_1173',['set_background',['../classGpgFrontend_1_1UI_1_1FindWidget.html#a0c531f2c673caed29225a323e750205f',1,'GpgFrontend::UI::FindWidget']]], - ['set_5floading_1174',['set_loading',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ad4a75da57fa18bfcfaeb7fc601f1c8f6',1,'GpgFrontend::UI::KeyServerImportDialog']]], - ['set_5fmessage_1175',['set_message',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ab93fbf5e0626bffe398f5baa2bc00b1a',1,'GpgFrontend::UI::KeyServerImportDialog']]], - ['set_5fsignal_5fslot_1176',['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_1177',['set_status',['../classGpgFrontend_1_1GpgResultAnalyse.html#a7f13592b421c7b0d3853f15cece8d195',1,'GpgFrontend::GpgResultAnalyse']]], - ['setalgo_1178',['SetAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#adcd9c4f3e75f989810988e0bc81d401f',1,'GpgFrontend::GenKeyInfo']]], - ['setallowauthentication_1179',['SetAllowAuthentication',['../classGpgFrontend_1_1GenKeyInfo.html#aac51d251682ed1bc1090416ebfeba4de',1,'GpgFrontend::GenKeyInfo']]], - ['setallowcertification_1180',['SetAllowCertification',['../classGpgFrontend_1_1GenKeyInfo.html#ac5f52f74566618c71a29bdc5e70fce2e',1,'GpgFrontend::GenKeyInfo']]], - ['setallowencryption_1181',['SetAllowEncryption',['../classGpgFrontend_1_1GenKeyInfo.html#a965014232f6de22c6d33320231ca4454',1,'GpgFrontend::GenKeyInfo']]], - ['setallowsigning_1182',['SetAllowSigning',['../classGpgFrontend_1_1GenKeyInfo.html#a1a01518b24d40d95e187ef73f4dcd52a',1,'GpgFrontend::GenKeyInfo']]], - ['setchannel_1183',['SetChannel',['../classGpgFrontend_1_1ChannelObject.html#aa3b19cad6d873b314bba32a3dae85f09',1,'GpgFrontend::ChannelObject']]], - ['setchecked_1184',['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_1185',['SetColumnWidth',['../classGpgFrontend_1_1UI_1_1KeyList.html#aab3f4facfc850e7eeb917571ca89f4a5',1,'GpgFrontend::UI::KeyList']]], - ['setcomment_1186',['SetComment',['../classGpgFrontend_1_1GenKeyInfo.html#a947886456f5699241b1c1b9332e4b29e',1,'GpgFrontend::GenKeyInfo']]], - ['setcryptomenustatus_1187',['SetCryptoMenuStatus',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a85a98a1ec5418c110201980fa013d1fd',1,'GpgFrontend::UI::MainWindow']]], - ['setdoubleclickedaction_1188',['SetDoubleClickedAction',['../classGpgFrontend_1_1UI_1_1KeyList.html#a7d75246eee6368be295c9ab5fe5ef291',1,'GpgFrontend::UI::KeyList']]], - ['setemail_1189',['SetEmail',['../classGpgFrontend_1_1GenKeyInfo.html#a656c81d56f77350184f9a94db1a3ce05',1,'GpgFrontend::GenKeyInfo']]], - ['setexpire_1190',['SetExpire',['../classGpgFrontend_1_1GpgKeyManager.html#a1625abfbff168c476e76fa9425a6c37d',1,'GpgFrontend::GpgKeyManager::SetExpire()'],['../classGpgFrontend_1_1GpgKeyOpera.html#a12e6b05b23781861065d7e3243c9349e',1,'GpgFrontend::GpgKeyOpera::SetExpire()']]], - ['setexpiretime_1191',['SetExpireTime',['../classGpgFrontend_1_1GenKeyInfo.html#aa3bfeda7fc7c83dc8d48ee2b80780c3a',1,'GpgFrontend::GenKeyInfo']]], - ['setfilepath_1192',['SetFilePath',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aa9e82690824c82e7628ba4ace9d6e2fe',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['setfinishafterrun_1193',['SetFinishAfterRun',['../classGpgFrontend_1_1Thread_1_1Task.html#a689969e7d88ba7ad73a693a1b38aedd7',1,'GpgFrontend::Thread::Task']]], - ['setinfoboard_1194',['SetInfoBoard',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#ac936cfc8e1b3af65d0d71b74fb3f0b02',1,'GpgFrontend::UI::InfoBoardWidget']]], - ['setissubkey_1195',['SetIsSubKey',['../classGpgFrontend_1_1GenKeyInfo.html#acd9f7742b739e1db60bd50489690dec1',1,'GpgFrontend::GenKeyInfo']]], - ['setkeylength_1196',['SetKeyLength',['../classGpgFrontend_1_1GenKeyInfo.html#ae744395012e4dcb9734ad5a30aa8ed75',1,'GpgFrontend::GenKeyInfo']]], - ['setname_1197',['SetName',['../classGpgFrontend_1_1GenKeyInfo.html#a65ebc487e0e64c325f65474c812615f7',1,'GpgFrontend::GenKeyInfo']]], - ['setnonexpired_1198',['SetNonExpired',['../classGpgFrontend_1_1GenKeyInfo.html#aea247381c21896f5371bb813ca665329',1,'GpgFrontend::GenKeyInfo']]], - ['setnonpassphrase_1199',['SetNonPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#a864407216cbdbef9e7b35e6be694d3ef',1,'GpgFrontend::GenKeyInfo']]], - ['setobjectinchannel_1200',['SetObjectInChannel',['../classGpgFrontend_1_1SingletonStorage.html#ab0097bb648b2303d68a975c7cbea5a52',1,'GpgFrontend::SingletonStorage']]], - ['setpassphrase_1201',['SetPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#afe1760d4ead397f6096925290a38e1a4',1,'GpgFrontend::GenKeyInfo']]], - ['setpassphrasecb_1202',['SetPassphraseCb',['../classGpgFrontend_1_1GpgContext.html#a3399fc60086ff5010a089bff48bbc63c',1,'GpgFrontend::GpgContext']]], - ['setprimaryuid_1203',['SetPrimaryUID',['../classGpgFrontend_1_1GpgUIDOperator.html#acbdabec97df508382b0c9b1fffbf1dd5',1,'GpgFrontend::GpgUIDOperator']]], - ['setrtn_1204',['SetRTN',['../classGpgFrontend_1_1Thread_1_1Task.html#aa6d702417bdd6a88c447ed6a457fa098',1,'GpgFrontend::Thread::Task']]], - ['setsettings_1205',['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_1206',['SetSigners',['../classGpgFrontend_1_1GpgBasicOperator.html#ad6ea3596ba7d7543fb1b8233d09996df',1,'GpgFrontend::GpgBasicOperator']]], - ['settingsdialog_1207',['SettingsDialog',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#a1b7ddc7861d1b4b9dc3810ed98023ffc',1,'GpgFrontend::UI::SettingsDialog']]], - ['settingsobject_1208',['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_1209',['show_verify_details',['../namespaceGpgFrontend_1_1UI.html#a590a26051105940a6d6e0743b147e281',1,'GpgFrontend::UI']]], - ['showevent_1210',['showEvent',['../classGpgFrontend_1_1UI_1_1AboutDialog.html#ab799cd5e07b06a8e953d72105c0a1083',1,'GpgFrontend::UI::AboutDialog']]], - ['shownotificationwidget_1211',['ShowNotificationWidget',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#af5dfdfd48ef64cc46e524ec70a22fe3a',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['sign_1212',['Sign',['../classGpgFrontend_1_1GpgBasicOperator.html#a988d7e65e85fc7a578f26300332a65d3',1,'GpgFrontend::GpgBasicOperator']]], - ['signaldeeprestartneeded_1213',['SignalDeepRestartNeeded',['../classGpgFrontend_1_1UI_1_1GeneralTab.html#afc107d56f13000aa28436a5e26a0876b',1,'GpgFrontend::UI::GeneralTab']]], - ['signalkeydatabaserefreshdone_1214',['SignalKeyDatabaseRefreshDone',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a1abc83bba95579aa94d0870181991a28',1,'GpgFrontend::UI::CommonUtils']]], - ['signalkeyserverimportresult_1215',['SignalKeyServerImportResult',['../classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a6b2c07d193fb28a57b1738fa493b2b3f',1,'GpgFrontend::UI::KeyServerImportTask']]], - ['signalkeyserverlisttestresult_1216',['SignalKeyServerListTestResult',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a20f0147d670be7ab5c9d3051a900f508',1,'GpgFrontend::UI::ListedKeyServerTestTask']]], - ['signalkeyserversearchresult_1217',['SignalKeyServerSearchResult',['../classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#ae478130476c95a8b220c3b0e6a7b88b4',1,'GpgFrontend::UI::KeyServerSearchTask']]], - ['signalopenhelp_1218',['SignalOpenHelp',['../classGpgFrontend_1_1UI_1_1Wizard.html#a8b5f5ddb1e6470cbf6c87cc6400031fb',1,'GpgFrontend::UI::Wizard']]], - ['signalpathchanged_1219',['SignalPathChanged',['../classGpgFrontend_1_1UI_1_1FilePage.html#aec462d16a2097024a4ced24012b905a7',1,'GpgFrontend::UI::FilePage']]], - ['signalproxyconnectiontestresult_1220',['SignalProxyConnectionTestResult',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.html#aedafa7b22e024be537658fd8096e5f6f',1,'GpgFrontend::UI::ProxyConnectionTestThread']]], - ['signalrefreshinfoboard_1221',['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_1222',['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_1223',['SignalReplyFromUpdateServer',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a5e752e01539ccfdc6bbe41a404ddaa95',1,'GpgFrontend::UI::UpdateTab']]], - ['signalrestartneeded_1224',['SignalRestartNeeded',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#af5ba6646af45d0d1d794bc52ee54b1b9',1,'GpgFrontend::UI::SettingsDialog']]], - ['signalrestartneeded_1225',['signalRestartNeeded',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html#abff49b636449815a9ebff52f5c067712',1,'GpgFrontend::UI::AppearanceTab']]], - ['signalrestartneeded_1226',['SignalRestartNeeded',['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#a26449a77844d9db69a543ff88f10e347',1,'GpgFrontend::UI::KeyserverTab::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1GeneralTab.html#aa88ccbda61728be6de0aa2d9b92e0b69',1,'GpgFrontend::UI::GeneralTab::SignalRestartNeeded()']]], - ['signaluibytesdisplayed_1227',['SignalUIBytesDisplayed',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#afd3749488fdd3d1c53446fb8c833f3f4',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['signalupgradeversion_1228',['SignalUpgradeVersion',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a36c5597674253348477d78ad6af380ab',1,'GpgFrontend::UI::VersionCheckTask']]], - ['signerspicker_1229',['SignersPicker',['../classGpgFrontend_1_1UI_1_1SignersPicker.html#a02c3ba737702894fc6d4ac1a1c543ccb',1,'GpgFrontend::UI::SignersPicker']]], - ['signfile_1230',['SignFile',['../classGpgFrontend_1_1GpgFileOpera.html#a350df1c07c054625c4755a78e6ca5ca8',1,'GpgFrontend::GpgFileOpera']]], - ['signkey_1231',['SignKey',['../classGpgFrontend_1_1GpgKeyManager.html#a12138780c53add7589f78f056019e5e0',1,'GpgFrontend::GpgKeyManager']]], - ['singletonfunctionobject_1232',['SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html#aabc5fe8e5a372ac276a265286457cb9a',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(T &&)=delete'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a4aa7f1eb1d3281bb1fccfcbb1b416251',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(int channel)'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a7090636bed6f4bad5b99f28f6872c645',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(const T &)=delete'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a194e49b07d46345bdad386505d743a61',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(const SingletonFunctionObject< T > &)=delete'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a02e76b42ab51d77588b01c7508bed258',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject()=default']]], - ['slot_5factivated_5fkey_5ftype_1233',['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_1234',['slot_add_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a821247d738457c4ee046162aad6728f9',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fadd_5fuid_5fresult_1235',['slot_add_uid_result',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a16f1ae88d6a417b614cfc6ae1852187c',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['slot_5fappend_5fselected_5fkeys_1236',['slot_append_selected_keys',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a76bf3784d751db78ed13bd9962e14472',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fauthentication_5fbox_5fchanged_1237',['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_1238',['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_1239',['slot_clean_double_line_breaks',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aea9274389c3b049793fe5aa5a6adf63c',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fcompress_5ffiles_1240',['slot_compress_files',['../classGpgFrontend_1_1UI_1_1FilePage.html#a250b1950f874c1d11549cd5c0ea9693f',1,'GpgFrontend::UI::FilePage']]], - ['slot_5fcopy_5ffingerprint_1241',['slot_copy_fingerprint',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#af8b600fbd7cd0fbb5b6183403bf870b2',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['slot_5fcopy_5fmail_5faddress_5fto_5fclipboard_1242',['slot_copy_mail_address_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af93d72eaf58326f1f9e926752c6b1fc6',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fcreate_5fnew_5fuid_1243',['slot_create_new_uid',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a4e115ce46a85c2f9e4e0e2427839fc7c',1,'GpgFrontend::UI::KeyNewUIDDialog']]], - ['slot_5fcut_5fpgp_5fheader_1244',['slot_cut_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7f5a88922d06bee977335fb4b5f1d86d',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fdecrypt_1245',['slot_decrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae2d89e2cc6c99ff0e16b396d2381f904',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fdecrypt_5fverify_1246',['slot_decrypt_verify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1d61ea803e6c825bd54f42ba9ae85919',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fdisable_5ftab_5factions_1247',['slot_disable_tab_actions',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a24a0b0d974fc5f8fdda60c128a82d957',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fdouble_5fclicked_1248',['slot_double_clicked',['../classGpgFrontend_1_1UI_1_1KeyList.html#a69e54f06d546d516a0dcdf1055b8028e',1,'GpgFrontend::UI::KeyList']]], - ['slot_5fencrypt_1249',['slot_encrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae11d01211c2914ecc148e13dd7de506e',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fencrypt_5fsign_1250',['slot_encrypt_sign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a304efe91afa31b32725caa00c27475a4',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fencryption_5fbox_5fchanged_1251',['slot_encryption_box_changed',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a1f4dda7500b3de7476e5d1e7bd5b550b',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_encryption_box_changed()'],['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ae611933ccd6fd67e65a2cf1ff09b5e8f',1,'GpgFrontend::UI::KeyGenDialog::slot_encryption_box_changed(int state)']]], - ['slot_5fexpire_5fbox_5fchanged_1252',['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_1253',['slot_export_private_key',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a384f4250e58110da58c0e6996b42a8ab',1,'GpgFrontend::UI::KeyPairOperaTab']]], - ['slot_5ffile_5ftree_5fview_5fitem_5fclicked_1254',['slot_file_tree_view_item_clicked',['../classGpgFrontend_1_1UI_1_1FilePage.html#a676917817d6f519e043742d1d87f97f1',1,'GpgFrontend::UI::FilePage']]], - ['slot_5ffile_5ftree_5fview_5fitem_5fdouble_5fclicked_1255',['slot_file_tree_view_item_double_clicked',['../classGpgFrontend_1_1UI_1_1FilePage.html#ad3c54320bdafbbb2c06a20d6c7dea9d6',1,'GpgFrontend::UI::FilePage']]], - ['slot_5ffind_1256',['slot_find',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae28089efbd236708601470f30f26faaa',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fformat_5fgpg_5fheader_1257',['slot_format_gpg_header',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a45267bcfc8fc83851894061c0fe2a9c2',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['slot_5fimport_1258',['slot_import',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ac9c14bbc97945c94fd02c8e067ccab06',1,'GpgFrontend::UI::KeyServerImportDialog']]], - ['slot_5fimport_5ffinished_1259',['slot_import_finished',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a6f1c5238da7cd6f117bed8018469b37a',1,'GpgFrontend::UI::KeyServerImportDialog']]], - ['slot_5fimport_5fkey_5ffrom_5fedit_1260',['slot_import_key_from_edit',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a55926649e28a96318b89afba01b966bf',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5finsert_5ftext_1261',['slot_insert_text',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a184985104f23da8fdf2b9aaf7b27405b',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['slot_5fjump_5fpage_1262',['slot_jump_page',['../classGpgFrontend_1_1UI_1_1ChoosePage.html#af0d7890fe65385b7785719b9cff0718b',1,'GpgFrontend::UI::ChoosePage']]], - ['slot_5fkey_5fgen_5faccept_1263',['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_1264',['slot_non_expired_checked',['../classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#adde2b33bd17f521f0630702987b1d274',1,'GpgFrontend::UI::KeySetExpireDateDialog']]], - ['slot_5fopen_5ffile_5ftab_1265',['slot_open_file_tab',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a29a811d4d440c79c1bd2cc2bb40cdf7e',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fopen_5fkey_5fmanagement_1266',['slot_open_key_management',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a16ddebec90a4bd0d13baa9d972c3445f',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fopen_5fsettings_5fdialog_1267',['slot_open_settings_dialog',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a874b505fbc1046f579a736683f5a7f65',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fopen_5furl_1268',['slot_open_url',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a51ff99077a75507365307f5dd783df99',1,'GpgFrontend::UI::HelpPage']]], - ['slot_5fprocess_5fnetwork_5freply_1269',['slot_process_network_reply',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#af9350e0a8d5993e5be0a5478fcb161be',1,'GpgFrontend::UI::ListedKeyServerTestTask']]], - ['slot_5fremove_5ftab_1270',['slot_remove_tab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a12f65fbc4984c266a5df4505ecde7c42',1,'GpgFrontend::UI::TextEdit']]], - ['slot_5fset_5frestart_5fneeded_1271',['slot_set_restart_needed',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#acc6b4386de554fce6fbb60ac6d201952',1,'GpgFrontend::UI::SettingsDialog']]], - ['slot_5fshow_5fkey_5fdetails_1272',['slot_show_key_details',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a033d448541b44fa48b76dec828a4eb0e',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fshow_5fversion_5fstatus_1273',['slot_show_version_status',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a1003bd969ecbc5deba940e39436968f4',1,'GpgFrontend::UI::UpdateTab']]], - ['slot_5fsign_1274',['slot_sign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3f3d03b0ec22385bee559fbd2aeb881b',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fsign_5fkey_1275',['slot_sign_key',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#a82f6bf641ff3b64341a0bdcf76571c43',1,'GpgFrontend::UI::KeyUIDSignDialog']]], - ['slot_5fsigning_5fbox_5fchanged_1276',['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_1277',['slot_start_wizard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aabf3ddf6b624790369f164b4889c95be',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fupdate_5fkey_5fstatus_1278',['slot_update_key_status',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#ab4ac26378d6a07757720163eb4b1cb0e',1,'GpgFrontend::UI::CommonUtils']]], - ['slot_5fupload_5fkey_5fto_5fserver_1279',['slot_upload_key_to_server',['../classGpgFrontend_1_1UI_1_1KeyUploadDialog.html#a0f724649ca953b888f07d69c97fe45b6',1,'GpgFrontend::UI::KeyUploadDialog']]], - ['slot_5fverify_1280',['slot_verify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa9c986dd95984811479ea93230c74b5d',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fversion_5fupgrade_1281',['slot_version_upgrade',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a48368c77af7b1f4cb632870b8d914a28',1,'GpgFrontend::UI::MainWindow']]], - ['slotclosetab_1282',['SlotCloseTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa21659aa7acba98dfd6286d69e00ab9b',1,'GpgFrontend::UI::TextEdit']]], - ['slotcopy_1283',['SlotCopy',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3599bd01636a873cf3437ab6b9d38780',1,'GpgFrontend::UI::TextEdit']]], - ['slotcurpagefiletreeview_1284',['SlotCurPageFileTreeView',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a72014409d407c161b048e07c061b4cf9',1,'GpgFrontend::UI::TextEdit']]], - ['slotcurpagetextedit_1285',['SlotCurPageTextEdit',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a48351dc1529da3b8da311f65b735b5f1',1,'GpgFrontend::UI::TextEdit']]], - ['slotcut_1286',['SlotCut',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae1e710c6722910b8d35df97aaabb3162',1,'GpgFrontend::UI::TextEdit']]], - ['slotexecutecommand_1287',['SlotExecuteCommand',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a95cd625a2e0e74ee4d564843c6d16791',1,'GpgFrontend::UI::CommonUtils']]], - ['slotexecutegpgcommand_1288',['SlotExecuteGpgCommand',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#afc845c1c37487c99f78d8e66f6874f6d',1,'GpgFrontend::UI::CommonUtils']]], - ['slotfiledecrypt_1289',['SlotFileDecrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0a6d0618f2835a6dcae707a4ca770a48',1,'GpgFrontend::UI::MainWindow']]], - ['slotfiledecryptverify_1290',['SlotFileDecryptVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab23c7e67dd1f5295b3c49ad79dfd5919',1,'GpgFrontend::UI::MainWindow']]], - ['slotfileencrypt_1291',['SlotFileEncrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9ec699536a35a37961a8c6da1e231ae3',1,'GpgFrontend::UI::MainWindow']]], - ['slotfileencryptsign_1292',['SlotFileEncryptSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a25a2e4017d77cffc8362bde9606fad30',1,'GpgFrontend::UI::MainWindow']]], - ['slotfilesign_1293',['SlotFileSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8bcdcbe678b8dc0837fffda2ebfe79bf',1,'GpgFrontend::UI::MainWindow']]], - ['slotfileverify_1294',['SlotFileVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9879061cfd321c6757c77f75d46dc7d8',1,'GpgFrontend::UI::MainWindow']]], - ['slotfilltexteditwithtext_1295',['SlotFillTextEditWithText',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af466ec2b8ab3f695d206efc0574bbe20',1,'GpgFrontend::UI::TextEdit']]], - ['slotimport_1296',['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_1297',['SlotImportKeyFromClipboard',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a0c8bf56fc5371cd2c5e9d2a0f67bf72a',1,'GpgFrontend::UI::CommonUtils']]], - ['slotimportkeyfromfile_1298',['SlotImportKeyFromFile',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a057526790f6b2f6288c3a35322c34d8d',1,'GpgFrontend::UI::CommonUtils']]], - ['slotimportkeyfromkeyserver_1299',['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_1300',['SlotImportKeys',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a3bc26cc1e0f00f0ce2f95c0b6c8778d8',1,'GpgFrontend::UI::CommonUtils']]], - ['slotnewfiletab_1301',['SlotNewFileTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae22ecadf31648f424eb8ab86bd28ef39',1,'GpgFrontend::UI::TextEdit']]], - ['slotnewhelptab_1302',['slotNewHelpTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3c17fdf3abf9c4fb6ce35cfb8f0f8fc4',1,'GpgFrontend::UI::TextEdit']]], - ['slotnewtab_1303',['SlotNewTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a57a46ab5595622ae0b7bceef7d56bd7c',1,'GpgFrontend::UI::TextEdit']]], - ['slotopen_1304',['SlotOpen',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a15335d38187ddf580b7200d856768cfb',1,'GpgFrontend::UI::TextEdit']]], - ['slotopenfile_1305',['SlotOpenFile',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a05b838ad518857fed24864ecce40c203',1,'GpgFrontend::UI::MainWindow::SlotOpenFile()'],['../classGpgFrontend_1_1UI_1_1TextEdit.html#a72006c9f8f45ac4d154c67f62a29446d',1,'GpgFrontend::UI::TextEdit::SlotOpenFile(QString &path)']]], - ['slotpaste_1306',['SlotPaste',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa2230418dc8f72c400f5a90082a983c9',1,'GpgFrontend::UI::TextEdit']]], - ['slotprint_1307',['SlotPrint',['../classGpgFrontend_1_1UI_1_1TextEdit.html#adca2bbfa746b5598f2a4f74026b84224',1,'GpgFrontend::UI::TextEdit']]], - ['slotquote_1308',['SlotQuote',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6a02fce9dc4039c982d6dd19231517ee',1,'GpgFrontend::UI::TextEdit']]], - ['slotredo_1309',['SlotRedo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae2b3bf422789d56087face98b6a9e929',1,'GpgFrontend::UI::TextEdit']]], - ['slotrefresh_1310',['SlotRefresh',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a68f984815100f4ce281b9794f193e516',1,'GpgFrontend::UI::InfoBoardWidget']]], - ['slotsave_1311',['SlotSave',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ace0b8f4c161db9f4f5db5ecbfd7a91c0',1,'GpgFrontend::UI::TextEdit']]], - ['slotsaveas_1312',['SlotSaveAs',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a02fa44ba0c56f3f6ae125f8490faf254',1,'GpgFrontend::UI::TextEdit']]], - ['slotselectall_1313',['SlotSelectAll',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6c814253dfc061bfdae0fa71c6196c55',1,'GpgFrontend::UI::TextEdit']]], - ['slotsetrestartneeded_1314',['SlotSetRestartNeeded',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a276e843e2f5eda8934fb350fb6f89327',1,'GpgFrontend::UI::MainWindow']]], - ['slotshowmodified_1315',['SlotShowModified',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a7544182198b729373843635bbfea082a',1,'GpgFrontend::UI::TextEdit']]], - ['slotswitchtabdown_1316',['SlotSwitchTabDown',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a576e06390e65576465297d2ab8d7d474',1,'GpgFrontend::UI::TextEdit']]], - ['slotswitchtabup_1317',['SlotSwitchTabUp',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af1e364b513f566c743a5d36c19098762',1,'GpgFrontend::UI::TextEdit']]], - ['slotundo_1318',['SlotUndo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a4a81e69f6dc74ea649ca9a2358342fd5',1,'GpgFrontend::UI::TextEdit']]], - ['stripped_5fname_1319',['stripped_name',['../classGpgFrontend_1_1UI_1_1TextEdit.html#afb9b7a7d88154d774b3d727d8e640cbb',1,'GpgFrontend::UI::TextEdit']]], - ['subkeygeneratedialog_1320',['SubkeyGenerateDialog',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a8f9d8baa7b576a4aa857818b87c26bcd',1,'GpgFrontend::UI::SubkeyGenerateDialog']]], - ['switch_5fui_5fenabled_1321',['switch_ui_enabled',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#ae3d97948f205e84f0604d4da634a4513',1,'GpgFrontend::UI::NetworkTab']]], - ['switch_5fui_5fproxy_5ftype_1322',['switch_ui_proxy_type',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#a1b0297158f13daec77645c88e5a8adcd',1,'GpgFrontend::UI::NetworkTab']]], - ['syncsettings_1323',['SyncSettings',['../classGpgFrontend_1_1GlobalSettingStation.html#ac061ac8e5308f67ea52b98888bbb2e8d',1,'GpgFrontend::GlobalSettingStation']]] + ['save_5ffile_1205',['save_file',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a66b6f6633e7ac71e5fe8b7814a81cadf',1,'GpgFrontend::UI::TextEdit']]], + ['save_5fsettings_1206',['save_settings',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7a4b6490038470a8849231e48282da98',1,'GpgFrontend::UI::MainWindow']]], + ['savecache_1207',['SaveCache',['../classGpgFrontend_1_1CacheManager.html#a3cbc3238638dcd8b4722bfdf560c73fe',1,'GpgFrontend::CacheManager']]], + ['set_5fbackground_1208',['set_background',['../classGpgFrontend_1_1UI_1_1FindWidget.html#a0c531f2c673caed29225a323e750205f',1,'GpgFrontend::UI::FindWidget']]], + ['set_5floading_1209',['set_loading',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ad4a75da57fa18bfcfaeb7fc601f1c8f6',1,'GpgFrontend::UI::KeyServerImportDialog']]], + ['set_5fmessage_1210',['set_message',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ab93fbf5e0626bffe398f5baa2bc00b1a',1,'GpgFrontend::UI::KeyServerImportDialog']]], + ['set_5fsignal_5fslot_1211',['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_1212',['set_status',['../classGpgFrontend_1_1GpgResultAnalyse.html#a7f13592b421c7b0d3853f15cece8d195',1,'GpgFrontend::GpgResultAnalyse']]], + ['setalgo_1213',['SetAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#adcd9c4f3e75f989810988e0bc81d401f',1,'GpgFrontend::GenKeyInfo']]], + ['setallowauthentication_1214',['SetAllowAuthentication',['../classGpgFrontend_1_1GenKeyInfo.html#aac51d251682ed1bc1090416ebfeba4de',1,'GpgFrontend::GenKeyInfo']]], + ['setallowcertification_1215',['SetAllowCertification',['../classGpgFrontend_1_1GenKeyInfo.html#ac5f52f74566618c71a29bdc5e70fce2e',1,'GpgFrontend::GenKeyInfo']]], + ['setallowencryption_1216',['SetAllowEncryption',['../classGpgFrontend_1_1GenKeyInfo.html#a965014232f6de22c6d33320231ca4454',1,'GpgFrontend::GenKeyInfo']]], + ['setallowsigning_1217',['SetAllowSigning',['../classGpgFrontend_1_1GenKeyInfo.html#a1a01518b24d40d95e187ef73f4dcd52a',1,'GpgFrontend::GenKeyInfo']]], + ['setchannel_1218',['SetChannel',['../classGpgFrontend_1_1ChannelObject.html#aa3b19cad6d873b314bba32a3dae85f09',1,'GpgFrontend::ChannelObject']]], + ['setchecked_1219',['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_1220',['SetColumnWidth',['../classGpgFrontend_1_1UI_1_1KeyList.html#aab3f4facfc850e7eeb917571ca89f4a5',1,'GpgFrontend::UI::KeyList']]], + ['setcomment_1221',['SetComment',['../classGpgFrontend_1_1GenKeyInfo.html#a947886456f5699241b1c1b9332e4b29e',1,'GpgFrontend::GenKeyInfo']]], + ['setcryptomenustatus_1222',['SetCryptoMenuStatus',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a85a98a1ec5418c110201980fa013d1fd',1,'GpgFrontend::UI::MainWindow']]], + ['setdoubleclickedaction_1223',['SetDoubleClickedAction',['../classGpgFrontend_1_1UI_1_1KeyList.html#a7d75246eee6368be295c9ab5fe5ef291',1,'GpgFrontend::UI::KeyList']]], + ['setemail_1224',['SetEmail',['../classGpgFrontend_1_1GenKeyInfo.html#a656c81d56f77350184f9a94db1a3ce05',1,'GpgFrontend::GenKeyInfo']]], + ['setexpire_1225',['SetExpire',['../classGpgFrontend_1_1GpgKeyManager.html#a1625abfbff168c476e76fa9425a6c37d',1,'GpgFrontend::GpgKeyManager::SetExpire()'],['../classGpgFrontend_1_1GpgKeyOpera.html#a12e6b05b23781861065d7e3243c9349e',1,'GpgFrontend::GpgKeyOpera::SetExpire()']]], + ['setexpiretime_1226',['SetExpireTime',['../classGpgFrontend_1_1GenKeyInfo.html#aa3bfeda7fc7c83dc8d48ee2b80780c3a',1,'GpgFrontend::GenKeyInfo']]], + ['setfilepath_1227',['SetFilePath',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aa9e82690824c82e7628ba4ace9d6e2fe',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['setfinishafterrun_1228',['SetFinishAfterRun',['../classGpgFrontend_1_1Thread_1_1Task.html#a689969e7d88ba7ad73a693a1b38aedd7',1,'GpgFrontend::Thread::Task']]], + ['setinfoboard_1229',['SetInfoBoard',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#ac936cfc8e1b3af65d0d71b74fb3f0b02',1,'GpgFrontend::UI::InfoBoardWidget']]], + ['setissubkey_1230',['SetIsSubKey',['../classGpgFrontend_1_1GenKeyInfo.html#acd9f7742b739e1db60bd50489690dec1',1,'GpgFrontend::GenKeyInfo']]], + ['setkeylength_1231',['SetKeyLength',['../classGpgFrontend_1_1GenKeyInfo.html#ae744395012e4dcb9734ad5a30aa8ed75',1,'GpgFrontend::GenKeyInfo']]], + ['setname_1232',['SetName',['../classGpgFrontend_1_1GenKeyInfo.html#a65ebc487e0e64c325f65474c812615f7',1,'GpgFrontend::GenKeyInfo']]], + ['setnonexpired_1233',['SetNonExpired',['../classGpgFrontend_1_1GenKeyInfo.html#aea247381c21896f5371bb813ca665329',1,'GpgFrontend::GenKeyInfo']]], + ['setnonpassphrase_1234',['SetNonPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#a864407216cbdbef9e7b35e6be694d3ef',1,'GpgFrontend::GenKeyInfo']]], + ['setobjectinchannel_1235',['SetObjectInChannel',['../classGpgFrontend_1_1SingletonStorage.html#ab0097bb648b2303d68a975c7cbea5a52',1,'GpgFrontend::SingletonStorage']]], + ['setpassphrase_1236',['SetPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#afe1760d4ead397f6096925290a38e1a4',1,'GpgFrontend::GenKeyInfo']]], + ['setpassphrasecb_1237',['SetPassphraseCb',['../classGpgFrontend_1_1GpgContext.html#a3399fc60086ff5010a089bff48bbc63c',1,'GpgFrontend::GpgContext']]], + ['setprimaryuid_1238',['SetPrimaryUID',['../classGpgFrontend_1_1GpgUIDOperator.html#acbdabec97df508382b0c9b1fffbf1dd5',1,'GpgFrontend::GpgUIDOperator']]], + ['setrtn_1239',['SetRTN',['../classGpgFrontend_1_1Thread_1_1Task.html#aa6d702417bdd6a88c447ed6a457fa098',1,'GpgFrontend::Thread::Task']]], + ['setsettings_1240',['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_1241',['SetSigners',['../classGpgFrontend_1_1GpgBasicOperator.html#ad6ea3596ba7d7543fb1b8233d09996df',1,'GpgFrontend::GpgBasicOperator']]], + ['settempcachevalue_1242',['SetTempCacheValue',['../classGpgFrontend_1_1CoreCommonUtil.html#a62bb080c6c04970fd2e02a460ea91d2a',1,'GpgFrontend::CoreCommonUtil']]], + ['settingsdialog_1243',['SettingsDialog',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#a1b7ddc7861d1b4b9dc3810ed98023ffc',1,'GpgFrontend::UI::SettingsDialog']]], + ['settingsobject_1244',['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_1245',['show_verify_details',['../namespaceGpgFrontend_1_1UI.html#a590a26051105940a6d6e0743b147e281',1,'GpgFrontend::UI']]], + ['showevent_1246',['showEvent',['../classGpgFrontend_1_1UI_1_1AboutDialog.html#ab799cd5e07b06a8e953d72105c0a1083',1,'GpgFrontend::UI::AboutDialog']]], + ['shownotificationwidget_1247',['ShowNotificationWidget',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#af5dfdfd48ef64cc46e524ec70a22fe3a',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['sign_1248',['Sign',['../classGpgFrontend_1_1GpgBasicOperator.html#a988d7e65e85fc7a578f26300332a65d3',1,'GpgFrontend::GpgBasicOperator']]], + ['signaldeeprestartneeded_1249',['SignalDeepRestartNeeded',['../classGpgFrontend_1_1UI_1_1GeneralTab.html#afc107d56f13000aa28436a5e26a0876b',1,'GpgFrontend::UI::GeneralTab']]], + ['signalkeydatabaserefreshdone_1250',['SignalKeyDatabaseRefreshDone',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a1abc83bba95579aa94d0870181991a28',1,'GpgFrontend::UI::CommonUtils']]], + ['signalkeyserverimportresult_1251',['SignalKeyServerImportResult',['../classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a6b2c07d193fb28a57b1738fa493b2b3f',1,'GpgFrontend::UI::KeyServerImportTask']]], + ['signalkeyserverlisttestresult_1252',['SignalKeyServerListTestResult',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#a20f0147d670be7ab5c9d3051a900f508',1,'GpgFrontend::UI::ListedKeyServerTestTask']]], + ['signalkeyserversearchresult_1253',['SignalKeyServerSearchResult',['../classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#ae478130476c95a8b220c3b0e6a7b88b4',1,'GpgFrontend::UI::KeyServerSearchTask']]], + ['signalopenhelp_1254',['SignalOpenHelp',['../classGpgFrontend_1_1UI_1_1Wizard.html#a8b5f5ddb1e6470cbf6c87cc6400031fb',1,'GpgFrontend::UI::Wizard']]], + ['signalpathchanged_1255',['SignalPathChanged',['../classGpgFrontend_1_1UI_1_1FilePage.html#aec462d16a2097024a4ced24012b905a7',1,'GpgFrontend::UI::FilePage']]], + ['signalproxyconnectiontestresult_1256',['SignalProxyConnectionTestResult',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.html#aedafa7b22e024be537658fd8096e5f6f',1,'GpgFrontend::UI::ProxyConnectionTestThread']]], + ['signalrefreshinfoboard_1257',['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_1258',['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_1259',['SignalReplyFromUpdateServer',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a5e752e01539ccfdc6bbe41a404ddaa95',1,'GpgFrontend::UI::UpdateTab']]], + ['signalrestartneeded_1260',['SignalRestartNeeded',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#af5ba6646af45d0d1d794bc52ee54b1b9',1,'GpgFrontend::UI::SettingsDialog']]], + ['signalrestartneeded_1261',['signalRestartNeeded',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html#abff49b636449815a9ebff52f5c067712',1,'GpgFrontend::UI::AppearanceTab']]], + ['signalrestartneeded_1262',['SignalRestartNeeded',['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#a26449a77844d9db69a543ff88f10e347',1,'GpgFrontend::UI::KeyserverTab::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1GeneralTab.html#aa88ccbda61728be6de0aa2d9b92e0b69',1,'GpgFrontend::UI::GeneralTab::SignalRestartNeeded()']]], + ['signaluibytesdisplayed_1263',['SignalUIBytesDisplayed',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#afd3749488fdd3d1c53446fb8c833f3f4',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['signalupgradeversion_1264',['SignalUpgradeVersion',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a36c5597674253348477d78ad6af380ab',1,'GpgFrontend::UI::VersionCheckTask']]], + ['signerspicker_1265',['SignersPicker',['../classGpgFrontend_1_1UI_1_1SignersPicker.html#a02c3ba737702894fc6d4ac1a1c543ccb',1,'GpgFrontend::UI::SignersPicker']]], + ['signfile_1266',['SignFile',['../classGpgFrontend_1_1GpgFileOpera.html#a350df1c07c054625c4755a78e6ca5ca8',1,'GpgFrontend::GpgFileOpera']]], + ['signkey_1267',['SignKey',['../classGpgFrontend_1_1GpgKeyManager.html#a12138780c53add7589f78f056019e5e0',1,'GpgFrontend::GpgKeyManager']]], + ['singletonfunctionobject_1268',['SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html#aabc5fe8e5a372ac276a265286457cb9a',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(T &&)=delete'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a4aa7f1eb1d3281bb1fccfcbb1b416251',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(int channel)'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a7090636bed6f4bad5b99f28f6872c645',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(const T &)=delete'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a194e49b07d46345bdad386505d743a61',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(const SingletonFunctionObject< T > &)=delete'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a02e76b42ab51d77588b01c7508bed258',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject()=default']]], + ['slot_5factivated_5fkey_5ftype_1269',['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_1270',['slot_add_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a821247d738457c4ee046162aad6728f9',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fadd_5fuid_5fresult_1271',['slot_add_uid_result',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a16f1ae88d6a417b614cfc6ae1852187c',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['slot_5fappend_5fselected_5fkeys_1272',['slot_append_selected_keys',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a76bf3784d751db78ed13bd9962e14472',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fauthentication_5fbox_5fchanged_1273',['slot_authentication_box_changed',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a13229f07ef0ed594357df1918af50d3d',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_authentication_box_changed()'],['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a904d5e72a1946382ddfca80dc57c4db5',1,'GpgFrontend::UI::KeyGenDialog::slot_authentication_box_changed()']]], + ['slot_5fcertification_5fbox_5fchanged_1274',['slot_certification_box_changed',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a8ab50d8f47489c57e382b3fe231ba9a7',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_certification_box_changed()'],['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a48e953cd49efde2315868e8606af7226',1,'GpgFrontend::UI::KeyGenDialog::slot_certification_box_changed()']]], + ['slot_5fclean_5fdouble_5fline_5fbreaks_1275',['slot_clean_double_line_breaks',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aea9274389c3b049793fe5aa5a6adf63c',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fcompress_5ffiles_1276',['slot_compress_files',['../classGpgFrontend_1_1UI_1_1FilePage.html#a250b1950f874c1d11549cd5c0ea9693f',1,'GpgFrontend::UI::FilePage']]], + ['slot_5fcopy_5ffingerprint_1277',['slot_copy_fingerprint',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#af8b600fbd7cd0fbb5b6183403bf870b2',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['slot_5fcopy_5fmail_5faddress_5fto_5fclipboard_1278',['slot_copy_mail_address_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af93d72eaf58326f1f9e926752c6b1fc6',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fcreate_5fnew_5fuid_1279',['slot_create_new_uid',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a4e115ce46a85c2f9e4e0e2427839fc7c',1,'GpgFrontend::UI::KeyNewUIDDialog']]], + ['slot_5fcut_5fpgp_5fheader_1280',['slot_cut_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7f5a88922d06bee977335fb4b5f1d86d',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fdecrypt_1281',['slot_decrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae2d89e2cc6c99ff0e16b396d2381f904',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fdecrypt_5fverify_1282',['slot_decrypt_verify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1d61ea803e6c825bd54f42ba9ae85919',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fdisable_5ftab_5factions_1283',['slot_disable_tab_actions',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a24a0b0d974fc5f8fdda60c128a82d957',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fdouble_5fclicked_1284',['slot_double_clicked',['../classGpgFrontend_1_1UI_1_1KeyList.html#a69e54f06d546d516a0dcdf1055b8028e',1,'GpgFrontend::UI::KeyList']]], + ['slot_5fencrypt_1285',['slot_encrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae11d01211c2914ecc148e13dd7de506e',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fencrypt_5fsign_1286',['slot_encrypt_sign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a304efe91afa31b32725caa00c27475a4',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fencryption_5fbox_5fchanged_1287',['slot_encryption_box_changed',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a1f4dda7500b3de7476e5d1e7bd5b550b',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_encryption_box_changed()'],['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ae611933ccd6fd67e65a2cf1ff09b5e8f',1,'GpgFrontend::UI::KeyGenDialog::slot_encryption_box_changed(int state)']]], + ['slot_5fexpire_5fbox_5fchanged_1288',['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_1289',['slot_export_private_key',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a384f4250e58110da58c0e6996b42a8ab',1,'GpgFrontend::UI::KeyPairOperaTab']]], + ['slot_5ffile_5ftree_5fview_5fitem_5fclicked_1290',['slot_file_tree_view_item_clicked',['../classGpgFrontend_1_1UI_1_1FilePage.html#a676917817d6f519e043742d1d87f97f1',1,'GpgFrontend::UI::FilePage']]], + ['slot_5ffile_5ftree_5fview_5fitem_5fdouble_5fclicked_1291',['slot_file_tree_view_item_double_clicked',['../classGpgFrontend_1_1UI_1_1FilePage.html#ad3c54320bdafbbb2c06a20d6c7dea9d6',1,'GpgFrontend::UI::FilePage']]], + ['slot_5ffind_1292',['slot_find',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae28089efbd236708601470f30f26faaa',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fformat_5fgpg_5fheader_1293',['slot_format_gpg_header',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a45267bcfc8fc83851894061c0fe2a9c2',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['slot_5fimport_1294',['slot_import',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ac9c14bbc97945c94fd02c8e067ccab06',1,'GpgFrontend::UI::KeyServerImportDialog']]], + ['slot_5fimport_5ffinished_1295',['slot_import_finished',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a6f1c5238da7cd6f117bed8018469b37a',1,'GpgFrontend::UI::KeyServerImportDialog']]], + ['slot_5fimport_5fkey_5ffrom_5fedit_1296',['slot_import_key_from_edit',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a55926649e28a96318b89afba01b966bf',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5finsert_5ftext_1297',['slot_insert_text',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a184985104f23da8fdf2b9aaf7b27405b',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['slot_5fjump_5fpage_1298',['slot_jump_page',['../classGpgFrontend_1_1UI_1_1ChoosePage.html#af0d7890fe65385b7785719b9cff0718b',1,'GpgFrontend::UI::ChoosePage']]], + ['slot_5fkey_5fgen_5faccept_1299',['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_1300',['slot_non_expired_checked',['../classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#adde2b33bd17f521f0630702987b1d274',1,'GpgFrontend::UI::KeySetExpireDateDialog']]], + ['slot_5fopen_5ffile_5ftab_1301',['slot_open_file_tab',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a29a811d4d440c79c1bd2cc2bb40cdf7e',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fopen_5fkey_5fmanagement_1302',['slot_open_key_management',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a16ddebec90a4bd0d13baa9d972c3445f',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fopen_5fsettings_5fdialog_1303',['slot_open_settings_dialog',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a874b505fbc1046f579a736683f5a7f65',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fopen_5furl_1304',['slot_open_url',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a51ff99077a75507365307f5dd783df99',1,'GpgFrontend::UI::HelpPage']]], + ['slot_5fprocess_5fnetwork_5freply_1305',['slot_process_network_reply',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#af9350e0a8d5993e5be0a5478fcb161be',1,'GpgFrontend::UI::ListedKeyServerTestTask']]], + ['slot_5fremove_5ftab_1306',['slot_remove_tab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a12f65fbc4984c266a5df4505ecde7c42',1,'GpgFrontend::UI::TextEdit']]], + ['slot_5fsave_5fstatus_5fto_5fcache_5ffor_5frevovery_1307',['slot_save_status_to_cache_for_revovery',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a1bf57ebe1e32b12c48bb633b7dd7a4f1',1,'GpgFrontend::UI::TextEdit']]], + ['slot_5fset_5frestart_5fneeded_1308',['slot_set_restart_needed',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#acc6b4386de554fce6fbb60ac6d201952',1,'GpgFrontend::UI::SettingsDialog']]], + ['slot_5fshow_5fkey_5fdetails_1309',['slot_show_key_details',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a033d448541b44fa48b76dec828a4eb0e',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fshow_5fversion_5fstatus_1310',['slot_show_version_status',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a1003bd969ecbc5deba940e39436968f4',1,'GpgFrontend::UI::UpdateTab']]], + ['slot_5fsign_1311',['slot_sign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3f3d03b0ec22385bee559fbd2aeb881b',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fsign_5fkey_1312',['slot_sign_key',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#a82f6bf641ff3b64341a0bdcf76571c43',1,'GpgFrontend::UI::KeyUIDSignDialog']]], + ['slot_5fsigning_5fbox_5fchanged_1313',['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_1314',['slot_start_wizard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aabf3ddf6b624790369f164b4889c95be',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fupdate_5fkey_5fstatus_1315',['slot_update_key_status',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#ab4ac26378d6a07757720163eb4b1cb0e',1,'GpgFrontend::UI::CommonUtils']]], + ['slot_5fupload_5fkey_5fto_5fserver_1316',['slot_upload_key_to_server',['../classGpgFrontend_1_1UI_1_1KeyUploadDialog.html#a0f724649ca953b888f07d69c97fe45b6',1,'GpgFrontend::UI::KeyUploadDialog']]], + ['slot_5fverify_1317',['slot_verify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa9c986dd95984811479ea93230c74b5d',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fversion_5fupgrade_1318',['slot_version_upgrade',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a48368c77af7b1f4cb632870b8d914a28',1,'GpgFrontend::UI::MainWindow']]], + ['slotclosetab_1319',['SlotCloseTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa21659aa7acba98dfd6286d69e00ab9b',1,'GpgFrontend::UI::TextEdit']]], + ['slotcopy_1320',['SlotCopy',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3599bd01636a873cf3437ab6b9d38780',1,'GpgFrontend::UI::TextEdit']]], + ['slotcurpagefiletreeview_1321',['SlotCurPageFileTreeView',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a72014409d407c161b048e07c061b4cf9',1,'GpgFrontend::UI::TextEdit']]], + ['slotcurpagetextedit_1322',['SlotCurPageTextEdit',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a48351dc1529da3b8da311f65b735b5f1',1,'GpgFrontend::UI::TextEdit']]], + ['slotcut_1323',['SlotCut',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae1e710c6722910b8d35df97aaabb3162',1,'GpgFrontend::UI::TextEdit']]], + ['slotexecutecommand_1324',['SlotExecuteCommand',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a95cd625a2e0e74ee4d564843c6d16791',1,'GpgFrontend::UI::CommonUtils']]], + ['slotexecutegpgcommand_1325',['SlotExecuteGpgCommand',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#afc845c1c37487c99f78d8e66f6874f6d',1,'GpgFrontend::UI::CommonUtils']]], + ['slotfiledecrypt_1326',['SlotFileDecrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0a6d0618f2835a6dcae707a4ca770a48',1,'GpgFrontend::UI::MainWindow']]], + ['slotfiledecryptverify_1327',['SlotFileDecryptVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab23c7e67dd1f5295b3c49ad79dfd5919',1,'GpgFrontend::UI::MainWindow']]], + ['slotfileencrypt_1328',['SlotFileEncrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9ec699536a35a37961a8c6da1e231ae3',1,'GpgFrontend::UI::MainWindow']]], + ['slotfileencryptsign_1329',['SlotFileEncryptSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a25a2e4017d77cffc8362bde9606fad30',1,'GpgFrontend::UI::MainWindow']]], + ['slotfilesign_1330',['SlotFileSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8bcdcbe678b8dc0837fffda2ebfe79bf',1,'GpgFrontend::UI::MainWindow']]], + ['slotfileverify_1331',['SlotFileVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9879061cfd321c6757c77f75d46dc7d8',1,'GpgFrontend::UI::MainWindow']]], + ['slotfilltexteditwithtext_1332',['SlotFillTextEditWithText',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af466ec2b8ab3f695d206efc0574bbe20',1,'GpgFrontend::UI::TextEdit']]], + ['slotimport_1333',['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_1334',['SlotImportKeyFromClipboard',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a0c8bf56fc5371cd2c5e9d2a0f67bf72a',1,'GpgFrontend::UI::CommonUtils']]], + ['slotimportkeyfromfile_1335',['SlotImportKeyFromFile',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a057526790f6b2f6288c3a35322c34d8d',1,'GpgFrontend::UI::CommonUtils']]], + ['slotimportkeyfromkeyserver_1336',['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_1337',['SlotImportKeys',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a3bc26cc1e0f00f0ce2f95c0b6c8778d8',1,'GpgFrontend::UI::CommonUtils']]], + ['slotnewfiletab_1338',['SlotNewFileTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae22ecadf31648f424eb8ab86bd28ef39',1,'GpgFrontend::UI::TextEdit']]], + ['slotnewhelptab_1339',['slotNewHelpTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3c17fdf3abf9c4fb6ce35cfb8f0f8fc4',1,'GpgFrontend::UI::TextEdit']]], + ['slotnewtab_1340',['SlotNewTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a57a46ab5595622ae0b7bceef7d56bd7c',1,'GpgFrontend::UI::TextEdit']]], + ['slotopen_1341',['SlotOpen',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a15335d38187ddf580b7200d856768cfb',1,'GpgFrontend::UI::TextEdit']]], + ['slotopenfile_1342',['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_1343',['SlotPaste',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa2230418dc8f72c400f5a90082a983c9',1,'GpgFrontend::UI::TextEdit']]], + ['slotprint_1344',['SlotPrint',['../classGpgFrontend_1_1UI_1_1TextEdit.html#adca2bbfa746b5598f2a4f74026b84224',1,'GpgFrontend::UI::TextEdit']]], + ['slotquote_1345',['SlotQuote',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6a02fce9dc4039c982d6dd19231517ee',1,'GpgFrontend::UI::TextEdit']]], + ['slotredo_1346',['SlotRedo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae2b3bf422789d56087face98b6a9e929',1,'GpgFrontend::UI::TextEdit']]], + ['slotrefresh_1347',['SlotRefresh',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a68f984815100f4ce281b9794f193e516',1,'GpgFrontend::UI::InfoBoardWidget']]], + ['slotsave_1348',['SlotSave',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ace0b8f4c161db9f4f5db5ecbfd7a91c0',1,'GpgFrontend::UI::TextEdit']]], + ['slotsaveas_1349',['SlotSaveAs',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a02fa44ba0c56f3f6ae125f8490faf254',1,'GpgFrontend::UI::TextEdit']]], + ['slotselectall_1350',['SlotSelectAll',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6c814253dfc061bfdae0fa71c6196c55',1,'GpgFrontend::UI::TextEdit']]], + ['slotsetrestartneeded_1351',['SlotSetRestartNeeded',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a276e843e2f5eda8934fb350fb6f89327',1,'GpgFrontend::UI::MainWindow']]], + ['slotshowmodified_1352',['SlotShowModified',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ab24adc1adb3b9b29469992e4c444436e',1,'GpgFrontend::UI::TextEdit']]], + ['slotswitchtabdown_1353',['SlotSwitchTabDown',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a576e06390e65576465297d2ab8d7d474',1,'GpgFrontend::UI::TextEdit']]], + ['slotswitchtabup_1354',['SlotSwitchTabUp',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af1e364b513f566c743a5d36c19098762',1,'GpgFrontend::UI::TextEdit']]], + ['slotundo_1355',['SlotUndo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a4a81e69f6dc74ea649ca9a2358342fd5',1,'GpgFrontend::UI::TextEdit']]], + ['startdirmngr_1356',['StartDirmngr',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a46085a11235894deccd312fc259d5078',1,'GpgFrontend::GpgAdvancedOperator']]], + ['startgpgagent_1357',['StartGpgAgent',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a07c32ba25cf6153fbc8ee585c4ba377c',1,'GpgFrontend::GpgAdvancedOperator']]], + ['startkeyboxd_1358',['StartKeyBoxd',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a9313410359ed9cff9ee66fa9b4b095ee',1,'GpgFrontend::GpgAdvancedOperator']]], + ['stripped_5fname_1359',['stripped_name',['../classGpgFrontend_1_1UI_1_1TextEdit.html#afb9b7a7d88154d774b3d727d8e640cbb',1,'GpgFrontend::UI::TextEdit']]], + ['subkeygeneratedialog_1360',['SubkeyGenerateDialog',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a8f9d8baa7b576a4aa857818b87c26bcd',1,'GpgFrontend::UI::SubkeyGenerateDialog']]], + ['switch_5fui_5fenabled_1361',['switch_ui_enabled',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#ae3d97948f205e84f0604d4da634a4513',1,'GpgFrontend::UI::NetworkTab']]], + ['switch_5fui_5fproxy_5ftype_1362',['switch_ui_proxy_type',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#a1b0297158f13daec77645c88e5a8adcd',1,'GpgFrontend::UI::NetworkTab']]], + ['syncsettings_1363',['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 2489ab5b..bb3b295d 100644 --- a/docs/html/search/functions_13.js +++ b/docs/html/search/functions_13.js @@ -1,13 +1,13 @@ var searchData= [ - ['tabcount_1324',['TabCount',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a05c54658597b04c3976c72d3a5f9add9',1,'GpgFrontend::UI::TextEdit']]], - ['takechargeofresult_1325',['TakeChargeOfResult',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#acdb7839a5158f078b38d60f0fefc5155',1,'GpgFrontend::GpgVerifyResultAnalyse']]], - ['task_1326',['Task',['../classGpgFrontend_1_1Thread_1_1Task.html#a1ec53d301fc83e0da39e43055ded5d14',1,'GpgFrontend::Thread::Task::Task()'],['../classGpgFrontend_1_1Thread_1_1Task.html#a35f3065116d2295bb2ddc9f41b1192bb',1,'GpgFrontend::Thread::Task::Task(TaskCallback callback, DataObjectPtr data_object=nullptr)'],['../classGpgFrontend_1_1Thread_1_1Task.html#a8efa02bb81d79961d88198a057c9ac64',1,'GpgFrontend::Thread::Task::Task(TaskRunnable runnable, TaskCallback callback=[](int, const std::shared_ptr< DataObject > &) {}, DataObjectPtr data=nullptr)']]], - ['taskrunner_1327',['TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#ad3c8612cbe60112f9b14e616fb0a4acf',1,'GpgFrontend::Thread::TaskRunner']]], - ['taskrunnergetter_1328',['TaskRunnerGetter',['../classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html#a80794d81179f66f4b4ed3122a64f27cf',1,'GpgFrontend::Thread::TaskRunnerGetter']]], - ['test_5fpassphrase_5fcb_1329',['test_passphrase_cb',['../classGpgFrontend_1_1GpgContext.html#acc4234054002065dfbc5d5261a4950d4',1,'GpgFrontend::GpgContext']]], - ['test_5fstatus_5fcb_1330',['test_status_cb',['../classGpgFrontend_1_1GpgContext.html#a3844cd0966134939e5c4be9a725e5271',1,'GpgFrontend::GpgContext']]], - ['text_5fis_5fsigned_1331',['text_is_signed',['../namespaceGpgFrontend.html#a2a0394c8bdd277f5235f9875a1d69a99',1,'GpgFrontend']]], - ['tofuinfopage_1332',['TOFUInfoPage',['../classGpgFrontend_1_1UI_1_1TOFUInfoPage.html#a9adc1666e3f57536594876520019e395',1,'GpgFrontend::UI::TOFUInfoPage']]], - ['translatorstab_1333',['TranslatorsTab',['../classGpgFrontend_1_1UI_1_1TranslatorsTab.html#a89e5c7b9c17fb41b7c7bf461fb8ad99e',1,'GpgFrontend::UI::TranslatorsTab']]] + ['tabcount_1364',['TabCount',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a05c54658597b04c3976c72d3a5f9add9',1,'GpgFrontend::UI::TextEdit']]], + ['takechargeofresult_1365',['TakeChargeOfResult',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#acdb7839a5158f078b38d60f0fefc5155',1,'GpgFrontend::GpgVerifyResultAnalyse']]], + ['task_1366',['Task',['../classGpgFrontend_1_1Thread_1_1Task.html#a1ec53d301fc83e0da39e43055ded5d14',1,'GpgFrontend::Thread::Task::Task()'],['../classGpgFrontend_1_1Thread_1_1Task.html#a35f3065116d2295bb2ddc9f41b1192bb',1,'GpgFrontend::Thread::Task::Task(TaskCallback callback, DataObjectPtr data_object=nullptr)'],['../classGpgFrontend_1_1Thread_1_1Task.html#a8efa02bb81d79961d88198a057c9ac64',1,'GpgFrontend::Thread::Task::Task(TaskRunnable runnable, TaskCallback callback=[](int, const std::shared_ptr< DataObject > &) {}, DataObjectPtr data=nullptr)']]], + ['taskrunner_1367',['TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#ad3c8612cbe60112f9b14e616fb0a4acf',1,'GpgFrontend::Thread::TaskRunner']]], + ['taskrunnergetter_1368',['TaskRunnerGetter',['../classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html#a80794d81179f66f4b4ed3122a64f27cf',1,'GpgFrontend::Thread::TaskRunnerGetter']]], + ['test_5fpassphrase_5fcb_1369',['test_passphrase_cb',['../classGpgFrontend_1_1GpgContext.html#acc4234054002065dfbc5d5261a4950d4',1,'GpgFrontend::GpgContext']]], + ['test_5fstatus_5fcb_1370',['test_status_cb',['../classGpgFrontend_1_1GpgContext.html#a3844cd0966134939e5c4be9a725e5271',1,'GpgFrontend::GpgContext']]], + ['text_5fis_5fsigned_1371',['text_is_signed',['../namespaceGpgFrontend.html#a2a0394c8bdd277f5235f9875a1d69a99',1,'GpgFrontend']]], + ['tofuinfopage_1372',['TOFUInfoPage',['../classGpgFrontend_1_1UI_1_1TOFUInfoPage.html#a9adc1666e3f57536594876520019e395',1,'GpgFrontend::UI::TOFUInfoPage']]], + ['translatorstab_1373',['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 78a5ca91..21505be6 100644 --- a/docs/html/search/functions_14.js +++ b/docs/html/search/functions_14.js @@ -1,6 +1,6 @@ var searchData= [ - ['unsaveddocuments_1334',['UnsavedDocuments',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a82fe98d45f54909ebea933b540367c39',1,'GpgFrontend::UI::TextEdit']]], - ['updatetab_1335',['UpdateTab',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a833c5f709607032bac530aacf389a117',1,'GpgFrontend::UI::UpdateTab']]], - ['upload_5fkey_5fto_5fserver_1336',['upload_key_to_server',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad27dcf3f534f13d8df71df680c4d177c',1,'GpgFrontend::UI::MainWindow']]] + ['unsaveddocuments_1374',['UnsavedDocuments',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a82fe98d45f54909ebea933b540367c39',1,'GpgFrontend::UI::TextEdit']]], + ['updatetab_1375',['UpdateTab',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a833c5f709607032bac530aacf389a117',1,'GpgFrontend::UI::UpdateTab']]], + ['upload_5fkey_5fto_5fserver_1376',['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 776e9720..62852927 100644 --- a/docs/html/search/functions_15.js +++ b/docs/html/search/functions_15.js @@ -1,10 +1,10 @@ var searchData= [ - ['verify_1337',['Verify',['../classGpgFrontend_1_1GpgBasicOperator.html#af0347cb28ff73b2250395ceaa9001509',1,'GpgFrontend::GpgBasicOperator']]], - ['verifydetailsdialog_1338',['VerifyDetailsDialog',['../classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#ac73f0405e249f623ddd0de22b5130fda',1,'GpgFrontend::UI::VerifyDetailsDialog']]], - ['verifyfile_1339',['VerifyFile',['../classGpgFrontend_1_1GpgFileOpera.html#a14cddfe822c9410cd9c301d08963b7e7',1,'GpgFrontend::GpgFileOpera']]], - ['verifykeydetailbox_1340',['VerifyKeyDetailBox',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#afbbe8e87786cca020c9aa8759eb041a0',1,'GpgFrontend::UI::VerifyKeyDetailBox']]], - ['version_5fcompare_1341',['version_compare',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#ae1989b6a34c76103f4bd06f35686d536',1,'GpgFrontend::UI::SoftwareVersion']]], - ['versionchecktask_1342',['VersionCheckTask',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9f7a810ae1aa78c2a61e86e7757da385',1,'GpgFrontend::UI::VersionCheckTask']]], - ['versionwithdrawn_1343',['VersionWithDrawn',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a587a3fdb047a15c3771c2af5eebdbf4b',1,'GpgFrontend::UI::SoftwareVersion']]] + ['verify_1377',['Verify',['../classGpgFrontend_1_1GpgBasicOperator.html#af0347cb28ff73b2250395ceaa9001509',1,'GpgFrontend::GpgBasicOperator']]], + ['verifydetailsdialog_1378',['VerifyDetailsDialog',['../classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#ac73f0405e249f623ddd0de22b5130fda',1,'GpgFrontend::UI::VerifyDetailsDialog']]], + ['verifyfile_1379',['VerifyFile',['../classGpgFrontend_1_1GpgFileOpera.html#a14cddfe822c9410cd9c301d08963b7e7',1,'GpgFrontend::GpgFileOpera']]], + ['verifykeydetailbox_1380',['VerifyKeyDetailBox',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#afbbe8e87786cca020c9aa8759eb041a0',1,'GpgFrontend::UI::VerifyKeyDetailBox']]], + ['version_5fcompare_1381',['version_compare',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#ae1989b6a34c76103f4bd06f35686d536',1,'GpgFrontend::UI::SoftwareVersion']]], + ['versionchecktask_1382',['VersionCheckTask',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9f7a810ae1aa78c2a61e86e7757da385',1,'GpgFrontend::UI::VersionCheckTask']]], + ['versionwithdrawn_1383',['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 5f14e717..e71464ff 100644 --- a/docs/html/search/functions_16.js +++ b/docs/html/search/functions_16.js @@ -1,9 +1,9 @@ var searchData= [ - ['waitingdialog_1344',['WaitingDialog',['../classGpgFrontend_1_1UI_1_1WaitingDialog.html#a809d0ffc8208eb2ff5d8da76c8ee10dc',1,'GpgFrontend::UI::WaitingDialog']]], - ['willcharsetchange_1345',['WillCharsetChange',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a1c1c0174ed1ed9c5a90739eafc5c3267',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['wizard_1346',['Wizard',['../classGpgFrontend_1_1UI_1_1Wizard.html#a448db8fe5ace96418ffd1f23b0142b10',1,'GpgFrontend::UI::Wizard']]], - ['write_5fbuffer_5fto_5ffile_1347',['write_buffer_to_file',['../namespaceGpgFrontend.html#a5135069571678eda9c1f07d17ed9ac41',1,'GpgFrontend']]], - ['writefile_1348',['WriteFile',['../classGpgFrontend_1_1FileOperator.html#a2f21ef4a88448b1eddf756302913d338',1,'GpgFrontend::FileOperator']]], - ['writefilestd_1349',['WriteFileStd',['../classGpgFrontend_1_1FileOperator.html#a51121c94dc32a83d7073fbe7138b603b',1,'GpgFrontend::FileOperator']]] + ['waitingdialog_1384',['WaitingDialog',['../classGpgFrontend_1_1UI_1_1WaitingDialog.html#a809d0ffc8208eb2ff5d8da76c8ee10dc',1,'GpgFrontend::UI::WaitingDialog']]], + ['willcharsetchange_1385',['WillCharsetChange',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a1c1c0174ed1ed9c5a90739eafc5c3267',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['wizard_1386',['Wizard',['../classGpgFrontend_1_1UI_1_1Wizard.html#a448db8fe5ace96418ffd1f23b0142b10',1,'GpgFrontend::UI::Wizard']]], + ['write_5fbuffer_5fto_5ffile_1387',['write_buffer_to_file',['../namespaceGpgFrontend.html#a5135069571678eda9c1f07d17ed9ac41',1,'GpgFrontend']]], + ['writefile_1388',['WriteFile',['../classGpgFrontend_1_1FileOperator.html#a2f21ef4a88448b1eddf756302913d338',1,'GpgFrontend::FileOperator']]], + ['writefilestd_1389',['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 6719bc0f..e9ec4edc 100644 --- a/docs/html/search/functions_17.js +++ b/docs/html/search/functions_17.js @@ -1,14 +1,14 @@ var searchData= [ - ['_7edataobject_1350',['~DataObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a85bb3c482bf6f47edcd6593cca568a22',1,'GpgFrontend::Thread::Task::DataObject']]], - ['_7eglobalsettingstation_1351',['~GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html#af700161900e623a0ea14261d51616451',1,'GpgFrontend::GlobalSettingStation']]], - ['_7egpgcontext_1352',['~GpgContext',['../classGpgFrontend_1_1GpgContext.html#ae89dee551354c1541337881898832725',1,'GpgFrontend::GpgContext']]], - ['_7egpgfrontendapplication_1353',['~GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a32f0e7dda69f7b1e3cc869340736c590',1,'GpgFrontend::UI::GpgFrontendApplication']]], - ['_7egpgkey_1354',['~GpgKey',['../classGpgFrontend_1_1GpgKey.html#a1e9223bb1ad8fbb4e769680de39b3697',1,'GpgFrontend::GpgKey']]], - ['_7egpgkeysignature_1355',['~GpgKeySignature',['../classGpgFrontend_1_1GpgKeySignature.html#ab4d7044f4e1ddcf0ae0d28be43f0fcb3',1,'GpgFrontend::GpgKeySignature']]], - ['_7egpgsignature_1356',['~GpgSignature',['../classGpgFrontend_1_1GpgSignature.html#a44f137a457ac109d145a1cdd8e544e3a',1,'GpgFrontend::GpgSignature']]], - ['_7esettingsobject_1357',['~SettingsObject',['../classGpgFrontend_1_1UI_1_1SettingsObject.html#ae71336d240ace35756d1852a46271f6c',1,'GpgFrontend::UI::SettingsObject']]], - ['_7esingletonfunctionobject_1358',['~SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html#a8296be8c449f88175285186831b995bc',1,'GpgFrontend::SingletonFunctionObject']]], - ['_7etask_1359',['~Task',['../classGpgFrontend_1_1Thread_1_1Task.html#a37766a505662b33ad14672c29e209ea8',1,'GpgFrontend::Thread::Task']]], - ['_7etaskrunner_1360',['~TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#ac3e57b59d537e2a75e741d4a5418ae6d',1,'GpgFrontend::Thread::TaskRunner']]] + ['_7edataobject_1390',['~DataObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a85bb3c482bf6f47edcd6593cca568a22',1,'GpgFrontend::Thread::Task::DataObject']]], + ['_7eglobalsettingstation_1391',['~GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html#af700161900e623a0ea14261d51616451',1,'GpgFrontend::GlobalSettingStation']]], + ['_7egpgcontext_1392',['~GpgContext',['../classGpgFrontend_1_1GpgContext.html#ae89dee551354c1541337881898832725',1,'GpgFrontend::GpgContext']]], + ['_7egpgfrontendapplication_1393',['~GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a32f0e7dda69f7b1e3cc869340736c590',1,'GpgFrontend::UI::GpgFrontendApplication']]], + ['_7egpgkey_1394',['~GpgKey',['../classGpgFrontend_1_1GpgKey.html#a1e9223bb1ad8fbb4e769680de39b3697',1,'GpgFrontend::GpgKey']]], + ['_7egpgkeysignature_1395',['~GpgKeySignature',['../classGpgFrontend_1_1GpgKeySignature.html#ab4d7044f4e1ddcf0ae0d28be43f0fcb3',1,'GpgFrontend::GpgKeySignature']]], + ['_7egpgsignature_1396',['~GpgSignature',['../classGpgFrontend_1_1GpgSignature.html#a44f137a457ac109d145a1cdd8e544e3a',1,'GpgFrontend::GpgSignature']]], + ['_7esettingsobject_1397',['~SettingsObject',['../classGpgFrontend_1_1UI_1_1SettingsObject.html#ae71336d240ace35756d1852a46271f6c',1,'GpgFrontend::UI::SettingsObject']]], + ['_7esingletonfunctionobject_1398',['~SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html#a8296be8c449f88175285186831b995bc',1,'GpgFrontend::SingletonFunctionObject']]], + ['_7etask_1399',['~Task',['../classGpgFrontend_1_1Thread_1_1Task.html#a37766a505662b33ad14672c29e209ea8',1,'GpgFrontend::Thread::Task']]], + ['_7etaskrunner_1400',['~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 fd99d669..50c6339e 100644 --- a/docs/html/search/functions_2.js +++ b/docs/html/search/functions_2.js @@ -1,4 +1,4 @@ var searchData= [ - ['beautify_5ffingerprint_848',['beautify_fingerprint',['../namespaceGpgFrontend.html#ac494a4b0d91e08a70db77a399c9a0f30',1,'GpgFrontend']]] + ['beautify_5ffingerprint_871',['beautify_fingerprint',['../namespaceGpgFrontend.html#ac494a4b0d91e08a70db77a399c9a0f30',1,'GpgFrontend']]] ]; diff --git a/docs/html/search/functions_3.js b/docs/html/search/functions_3.js index cb092971..3e4cfb89 100644 --- a/docs/html/search/functions_3.js +++ b/docs/html/search/functions_3.js @@ -1,46 +1,49 @@ var searchData= [ - ['calculatehash_849',['CalculateHash',['../classGpgFrontend_1_1FileOperator.html#a08baef750a723ee709804120a34d19c9',1,'GpgFrontend::FileOperator']]], - ['channelobject_850',['ChannelObject',['../classGpgFrontend_1_1ChannelObject.html#aedbf32eddc701e521bd8e790ef208da0',1,'GpgFrontend::ChannelObject::ChannelObject() noexcept'],['../classGpgFrontend_1_1ChannelObject.html#a68ad2a19339e3cd50626fe0eaad17ccd',1,'GpgFrontend::ChannelObject::ChannelObject(int channel)']]], - ['check_851',['Check',['../classGpgFrontend_1_1UI_1_1SettingsObject.html#a5ddcc2e0bc6d4c2f88e6e00371d4792e',1,'GpgFrontend::UI::SettingsObject::Check(const std::string &key, const nlohmann::json &default_value)'],['../classGpgFrontend_1_1UI_1_1SettingsObject.html#a80801f6912991ba625b5ead29a4558f0',1,'GpgFrontend::UI::SettingsObject::Check(const std::string &key)']]], - ['check_5femail_5faddress_852',['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_853',['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_854',['check_gpg_error_2_err_code',['../namespaceGpgFrontend.html#a4edac6df92596ba8eea3a8cdc1173684',1,'GpgFrontend']]], - ['choosepage_855',['ChoosePage',['../classGpgFrontend_1_1UI_1_1ChoosePage.html#ae370e789009be3926410cb749c86907b',1,'GpgFrontend::UI::ChoosePage']]], - ['close_5fattachment_5fdock_856',['close_attachment_dock',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a473b679fa0dc3cdf4f6f98d6553fa0ec',1,'GpgFrontend::UI::MainWindow']]], - ['closeevent_857',['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_858',['CloseNoteByClass',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aee4f46e54f29da671838ed232e526700',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['commonutils_859',['CommonUtils',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a78f5c2696152e9326e845c76c94be965',1,'GpgFrontend::UI::CommonUtils']]], - ['conclusionpage_860',['ConclusionPage',['../classGpgFrontend_1_1UI_1_1ConclusionPage.html#afcd98b4735047807d384e6b3d3aea3a7',1,'GpgFrontend::UI::ConclusionPage']]], - ['containsprivatekeys_861',['ContainsPrivateKeys',['../classGpgFrontend_1_1UI_1_1KeyList.html#a20c4a242f49123bd64982952fdad08e9',1,'GpgFrontend::UI::KeyList']]], - ['contextmenuevent_862',['contextMenuEvent',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a35d0b436cf13fa127dbba5b12f8f9144',1,'GpgFrontend::UI::KeyPairUIDTab::contextMenuEvent()'],['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#ad415e2dd5046c744b650b26c123130ff',1,'GpgFrontend::UI::KeyPairSubkeyTab::contextMenuEvent()'],['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#a8cbd6e448e187260730ab8301ad4892e',1,'GpgFrontend::UI::KeyserverTab::contextMenuEvent()'],['../classGpgFrontend_1_1UI_1_1KeyList.html#a82da61a76a08023b2ddbe2a6869f4190',1,'GpgFrontend::UI::KeyList::contextMenuEvent()']]], - ['copy_863',['Copy',['../classGpgFrontend_1_1GpgKey.html#ac90afba6a5aec0bc2c0f1e01de417ec8',1,'GpgFrontend::GpgKey']]], - ['create_5factions_864',['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_865',['create_attachment_dock',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a92a6d8d46e197e25eaacc3ad7ed289ab',1,'GpgFrontend::UI::MainWindow']]], - ['create_5fbasic_5finfo_5fgroup_5fbox_866',['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_867',['create_button',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a4c5d8a43fd8a6f1c217d83694dcc689c',1,'GpgFrontend::UI::KeyServerImportDialog']]], - ['create_5fbutton_5fbox_868',['create_button_box',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a9f5912ff99e3820d5fa6a58ed14a70c8',1,'GpgFrontend::UI::KeyImportDetailDialog']]], - ['create_5fcombobox_869',['create_comboBox',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ab9e2fe38d54c0f0d3d73907300faa513',1,'GpgFrontend::UI::KeyServerImportDialog']]], - ['create_5fdock_5fwindows_870',['create_dock_windows',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a04668246525874760f47a340b4b7d8de',1,'GpgFrontend::UI::MainWindow']]], - ['create_5fgeneral_5finfo_5fbox_871',['create_general_info_box',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#af88ee416b2227ce847a3b8123a23ce24',1,'GpgFrontend::UI::KeyImportDetailDialog']]], - ['create_5fkey_5finfo_5fgrid_872',['create_key_info_grid',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#a25b96a986a009d35847f94719ec327c1',1,'GpgFrontend::UI::VerifyKeyDetailBox']]], - ['create_5fkey_5fusage_5fgroup_5fbox_873',['create_key_usage_group_box',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a8e6554b47e0dd6c2025ccb0d1d0cb658',1,'GpgFrontend::UI::KeyGenDialog::create_key_usage_group_box()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aa24064a5f585b23d71e1036958f31d7d',1,'GpgFrontend::UI::SubkeyGenerateDialog::create_key_usage_group_box()']]], - ['create_5fkeys_5ftable_874',['create_keys_table',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a6f006d4702885fb41317d10d654dfa3c',1,'GpgFrontend::UI::KeyServerImportDialog::create_keys_table()'],['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a9e37a653a982e671977d2101b72ae3b6',1,'GpgFrontend::UI::KeyImportDetailDialog::create_keys_table()']]], - ['create_5fmanage_5fuid_5fmenu_875',['create_manage_uid_menu',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a5c029e55323d54aa2306267cea1809ea',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['create_5fmenus_876',['create_menus',['../classGpgFrontend_1_1UI_1_1KeyMgmt.html#a6ee90b63414038e9f840933a5b2c5e46',1,'GpgFrontend::UI::KeyMgmt::create_menus()'],['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9fbd8a2f5b2b5869276db83a4ad20216',1,'GpgFrontend::UI::MainWindow::create_menus()']]], - ['create_5fpopup_5fmenu_877',['create_popup_menu',['../classGpgFrontend_1_1UI_1_1FilePage.html#a73e4b62f4926b1aeb3f2183a1d05d871',1,'GpgFrontend::UI::FilePage']]], - ['create_5fsign_5flist_878',['create_sign_list',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a32dc14242d88ca168ae71e9a895d2b29',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['create_5fsign_5fpopup_5fmenu_879',['create_sign_popup_menu',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a7653654c81149c48e7e4d5f0c00c360f',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['create_5fstatus_5fbar_880',['create_status_bar',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1ab1f3f57f9969447491e63f54420585',1,'GpgFrontend::UI::MainWindow']]], - ['create_5fsubkey_5flist_881',['create_subkey_list',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a0503508ce7e11f497a05cdf6f536a253',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], - ['create_5fsubkey_5fopera_5fmenu_882',['create_subkey_opera_menu',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a324446276f111be455773381ee8b6739',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], - ['create_5ftool_5fbars_883',['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_884',['create_uid_list',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a0511f5714548920cf3563306536d0bd7',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['create_5fuid_5fpopup_5fmenu_885',['create_uid_popup_menu',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a2a87d3ed720a57a5d96a108c7a9827d7',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['createinstance_886',['CreateInstance',['../classGpgFrontend_1_1SingletonFunctionObject.html#a083807ff8cec58dc0aa732844edaf518',1,'GpgFrontend::SingletonFunctionObject']]], - ['createoperamenu_887',['CreateOperaMenu',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a4dcec352e412afe5c5491f941495090f',1,'GpgFrontend::UI::KeyPairOperaTab']]], - ['ctxchecktask_888',['CtxCheckTask',['../classGpgFrontend_1_1Thread_1_1CtxCheckTask.html#a9d5f0969bcedc5687e0a50ed3b36a869',1,'GpgFrontend::Thread::CtxCheckTask']]], - ['curfilepage_889',['CurFilePage',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa30daf558cb85bbdcad55a805a106109',1,'GpgFrontend::UI::TextEdit']]], - ['currentversionreleased_890',['CurrentVersionReleased',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a43663cd2d086299a0f0304f5bde9c663',1,'GpgFrontend::UI::SoftwareVersion']]], - ['curtextpage_891',['CurTextPage',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a7aa1230fbf796225bd6b83d381e11a3b',1,'GpgFrontend::UI::TextEdit']]] + ['calculatehash_872',['CalculateHash',['../classGpgFrontend_1_1FileOperator.html#a08baef750a723ee709804120a34d19c9',1,'GpgFrontend::FileOperator']]], + ['channelobject_873',['ChannelObject',['../classGpgFrontend_1_1ChannelObject.html#aedbf32eddc701e521bd8e790ef208da0',1,'GpgFrontend::ChannelObject::ChannelObject() noexcept'],['../classGpgFrontend_1_1ChannelObject.html#a68ad2a19339e3cd50626fe0eaad17ccd',1,'GpgFrontend::ChannelObject::ChannelObject(int channel)']]], + ['check_874',['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_875',['check_binary_chacksum',['../classGpgFrontend_1_1GpgContext.html#a76fba43d1439c7811e1a9424d0c16d40',1,'GpgFrontend::GpgContext']]], + ['check_5femail_5faddress_876',['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_877',['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_878',['check_gpg_error_2_err_code',['../namespaceGpgFrontend.html#a4edac6df92596ba8eea3a8cdc1173684',1,'GpgFrontend']]], + ['choosepage_879',['ChoosePage',['../classGpgFrontend_1_1UI_1_1ChoosePage.html#ae370e789009be3926410cb749c86907b',1,'GpgFrontend::UI::ChoosePage']]], + ['cleargpgpasswordcache_880',['ClearGpgPasswordCache',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a71eb87ed095754ee1e9fa79125240f3e',1,'GpgFrontend::GpgAdvancedOperator']]], + ['close_5fattachment_5fdock_881',['close_attachment_dock',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a473b679fa0dc3cdf4f6f98d6553fa0ec',1,'GpgFrontend::UI::MainWindow']]], + ['closeevent_882',['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_883',['CloseNoteByClass',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aee4f46e54f29da671838ed232e526700',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['commonutils_884',['CommonUtils',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a78f5c2696152e9326e845c76c94be965',1,'GpgFrontend::UI::CommonUtils']]], + ['conclusionpage_885',['ConclusionPage',['../classGpgFrontend_1_1UI_1_1ConclusionPage.html#afcd98b4735047807d384e6b3d3aea3a7',1,'GpgFrontend::UI::ConclusionPage']]], + ['containsprivatekeys_886',['ContainsPrivateKeys',['../classGpgFrontend_1_1UI_1_1KeyList.html#a20c4a242f49123bd64982952fdad08e9',1,'GpgFrontend::UI::KeyList']]], + ['contextmenuevent_887',['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_888',['Copy',['../classGpgFrontend_1_1GpgKey.html#ac90afba6a5aec0bc2c0f1e01de417ec8',1,'GpgFrontend::GpgKey']]], + ['create_5factions_889',['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_890',['create_attachment_dock',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a92a6d8d46e197e25eaacc3ad7ed289ab',1,'GpgFrontend::UI::MainWindow']]], + ['create_5fbasic_5finfo_5fgroup_5fbox_891',['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_892',['create_button',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a4c5d8a43fd8a6f1c217d83694dcc689c',1,'GpgFrontend::UI::KeyServerImportDialog']]], + ['create_5fbutton_5fbox_893',['create_button_box',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a9f5912ff99e3820d5fa6a58ed14a70c8',1,'GpgFrontend::UI::KeyImportDetailDialog']]], + ['create_5fcombobox_894',['create_comboBox',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ab9e2fe38d54c0f0d3d73907300faa513',1,'GpgFrontend::UI::KeyServerImportDialog']]], + ['create_5fdock_5fwindows_895',['create_dock_windows',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a04668246525874760f47a340b4b7d8de',1,'GpgFrontend::UI::MainWindow']]], + ['create_5fgeneral_5finfo_5fbox_896',['create_general_info_box',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#af88ee416b2227ce847a3b8123a23ce24',1,'GpgFrontend::UI::KeyImportDetailDialog']]], + ['create_5fkey_5finfo_5fgrid_897',['create_key_info_grid',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#a25b96a986a009d35847f94719ec327c1',1,'GpgFrontend::UI::VerifyKeyDetailBox']]], + ['create_5fkey_5fusage_5fgroup_5fbox_898',['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_899',['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_900',['create_manage_uid_menu',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a5c029e55323d54aa2306267cea1809ea',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['create_5fmenus_901',['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_902',['create_popup_menu',['../classGpgFrontend_1_1UI_1_1FilePage.html#a73e4b62f4926b1aeb3f2183a1d05d871',1,'GpgFrontend::UI::FilePage']]], + ['create_5fsign_5flist_903',['create_sign_list',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a32dc14242d88ca168ae71e9a895d2b29',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['create_5fsign_5fpopup_5fmenu_904',['create_sign_popup_menu',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a7653654c81149c48e7e4d5f0c00c360f',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['create_5fstatus_5fbar_905',['create_status_bar',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1ab1f3f57f9969447491e63f54420585',1,'GpgFrontend::UI::MainWindow']]], + ['create_5fsubkey_5flist_906',['create_subkey_list',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a0503508ce7e11f497a05cdf6f536a253',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], + ['create_5fsubkey_5fopera_5fmenu_907',['create_subkey_opera_menu',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a324446276f111be455773381ee8b6739',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], + ['create_5ftool_5fbars_908',['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_909',['create_uid_list',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a0511f5714548920cf3563306536d0bd7',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['create_5fuid_5fpopup_5fmenu_910',['create_uid_popup_menu',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a2a87d3ed720a57a5d96a108c7a9827d7',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['createinstance_911',['CreateInstance',['../classGpgFrontend_1_1SingletonFunctionObject.html#a083807ff8cec58dc0aa732844edaf518',1,'GpgFrontend::SingletonFunctionObject']]], + ['createoperamenu_912',['CreateOperaMenu',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a4dcec352e412afe5c5491f941495090f',1,'GpgFrontend::UI::KeyPairOperaTab']]], + ['ctxchecktask_913',['CtxCheckTask',['../classGpgFrontend_1_1Thread_1_1CtxCheckTask.html#a9d5f0969bcedc5687e0a50ed3b36a869',1,'GpgFrontend::Thread::CtxCheckTask']]], + ['curfilepage_914',['CurFilePage',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa30daf558cb85bbdcad55a805a106109',1,'GpgFrontend::UI::TextEdit']]], + ['currentversionreleased_915',['CurrentVersionReleased',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a43663cd2d086299a0f0304f5bde9c663',1,'GpgFrontend::UI::SoftwareVersion']]], + ['curtextpage_916',['CurTextPage',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a7aa1230fbf796225bd6b83d381e11a3b',1,'GpgFrontend::UI::TextEdit']]], + ['custom_5fpassphrase_5fcb_917',['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 26c329f5..97e52927 100644 --- a/docs/html/search/functions_4.js +++ b/docs/html/search/functions_4.js @@ -1,17 +1,17 @@ var searchData= [ - ['dataobjectoperator_892',['DataObjectOperator',['../classGpgFrontend_1_1DataObjectOperator.html#a3a8ae5c36fec01d0d5c3e5f9aed457a6',1,'GpgFrontend::DataObjectOperator']]], - ['decrypt_893',['Decrypt',['../classGpgFrontend_1_1GpgBasicOperator.html#a9ea9e81194917e08f46eb657281b7953',1,'GpgFrontend::GpgBasicOperator']]], - ['decryptfile_894',['DecryptFile',['../classGpgFrontend_1_1GpgFileOpera.html#a74eb3ba532a236d8ad284b41265b0ccd',1,'GpgFrontend::GpgFileOpera']]], - ['decryptverify_895',['DecryptVerify',['../classGpgFrontend_1_1GpgBasicOperator.html#a11845a9a3ea2941e14faa9130f0ac9ef',1,'GpgFrontend::GpgBasicOperator']]], - ['decryptverifyfile_896',['DecryptVerifyFile',['../classGpgFrontend_1_1GpgFileOpera.html#a90949b4e9e6116784260cd0e416551db',1,'GpgFrontend::GpgFileOpera']]], - ['delete_5fkeys_5fwith_5fwarning_897',['delete_keys_with_warning',['../classGpgFrontend_1_1UI_1_1KeyMgmt.html#a0b139ae0d4baa234932cf228e94abd6b',1,'GpgFrontend::UI::KeyMgmt']]], - ['delete_5fwidgets_5fin_5flayout_898',['delete_widgets_in_layout',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a852c1fe10c7d3153a2146bcea4dbe9ad',1,'GpgFrontend::UI::InfoBoardWidget']]], - ['deletekey_899',['DeleteKey',['../classGpgFrontend_1_1GpgKeyOpera.html#a151c47b997951e9162f8b036c3cb15e0',1,'GpgFrontend::GpgKeyOpera']]], - ['deletekeys_900',['DeleteKeys',['../classGpgFrontend_1_1GpgKeyOpera.html#a8a06d0f7a600d4428359b653a68f717e',1,'GpgFrontend::GpgKeyOpera']]], - ['detect_901',['Detect',['../classGpgFrontend_1_1CharsetOperator.html#a5a444a0fbd508f6af6a56f4151c21c1f',1,'GpgFrontend::CharsetOperator']]], - ['detect_5fcr_5flf_902',['detect_cr_lf',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#af08be6a1eaec76403b12dc6e42df546c',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['detect_5fencoding_903',['detect_encoding',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a14b7431a786ce59e98576e3680cb9a58',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['dragenterevent_904',['dragEnterEvent',['../classGpgFrontend_1_1UI_1_1KeyList.html#ae3ad87e114432b0d659a0297d520d72f',1,'GpgFrontend::UI::KeyList']]], - ['dropevent_905',['dropEvent',['../classGpgFrontend_1_1UI_1_1KeyList.html#a23ebf79be8de637560d41afd0433c35f',1,'GpgFrontend::UI::KeyList']]] + ['dataobjectoperator_918',['DataObjectOperator',['../classGpgFrontend_1_1DataObjectOperator.html#a3a8ae5c36fec01d0d5c3e5f9aed457a6',1,'GpgFrontend::DataObjectOperator']]], + ['decrypt_919',['Decrypt',['../classGpgFrontend_1_1GpgBasicOperator.html#a9ea9e81194917e08f46eb657281b7953',1,'GpgFrontend::GpgBasicOperator']]], + ['decryptfile_920',['DecryptFile',['../classGpgFrontend_1_1GpgFileOpera.html#a74eb3ba532a236d8ad284b41265b0ccd',1,'GpgFrontend::GpgFileOpera']]], + ['decryptverify_921',['DecryptVerify',['../classGpgFrontend_1_1GpgBasicOperator.html#a11845a9a3ea2941e14faa9130f0ac9ef',1,'GpgFrontend::GpgBasicOperator']]], + ['decryptverifyfile_922',['DecryptVerifyFile',['../classGpgFrontend_1_1GpgFileOpera.html#a90949b4e9e6116784260cd0e416551db',1,'GpgFrontend::GpgFileOpera']]], + ['delete_5fkeys_5fwith_5fwarning_923',['delete_keys_with_warning',['../classGpgFrontend_1_1UI_1_1KeyMgmt.html#a0b139ae0d4baa234932cf228e94abd6b',1,'GpgFrontend::UI::KeyMgmt']]], + ['delete_5fwidgets_5fin_5flayout_924',['delete_widgets_in_layout',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a852c1fe10c7d3153a2146bcea4dbe9ad',1,'GpgFrontend::UI::InfoBoardWidget']]], + ['deletekey_925',['DeleteKey',['../classGpgFrontend_1_1GpgKeyOpera.html#a151c47b997951e9162f8b036c3cb15e0',1,'GpgFrontend::GpgKeyOpera']]], + ['deletekeys_926',['DeleteKeys',['../classGpgFrontend_1_1GpgKeyOpera.html#a8a06d0f7a600d4428359b653a68f717e',1,'GpgFrontend::GpgKeyOpera']]], + ['detect_927',['Detect',['../classGpgFrontend_1_1CharsetOperator.html#a5a444a0fbd508f6af6a56f4151c21c1f',1,'GpgFrontend::CharsetOperator']]], + ['detect_5fcr_5flf_928',['detect_cr_lf',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#af08be6a1eaec76403b12dc6e42df546c',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['detect_5fencoding_929',['detect_encoding',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a14b7431a786ce59e98576e3680cb9a58',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['dragenterevent_930',['dragEnterEvent',['../classGpgFrontend_1_1UI_1_1KeyList.html#ae3ad87e114432b0d659a0297d520d72f',1,'GpgFrontend::UI::KeyList']]], + ['dropevent_931',['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 ed57b1b2..76551d18 100644 --- a/docs/html/search/functions_5.js +++ b/docs/html/search/functions_5.js @@ -1,16 +1,17 @@ var searchData= [ - ['encrypt_906',['Encrypt',['../classGpgFrontend_1_1GpgBasicOperator.html#a32e1eac6bb0f322588ae75ae36a9884a',1,'GpgFrontend::GpgBasicOperator']]], - ['encryptfile_907',['EncryptFile',['../classGpgFrontend_1_1GpgFileOpera.html#a234d939ae0b2c3f799dd01130fad9379',1,'GpgFrontend::GpgFileOpera']]], - ['encryptfilesymmetric_908',['EncryptFileSymmetric',['../classGpgFrontend_1_1GpgFileOpera.html#a826efca057afb07157453b3b9e267b0f',1,'GpgFrontend::GpgFileOpera']]], - ['encryptsign_909',['EncryptSign',['../classGpgFrontend_1_1GpgBasicOperator.html#a08906cf2bc2ddad8489438610f388f8a',1,'GpgFrontend::GpgBasicOperator']]], - ['encryptsignfile_910',['EncryptSignFile',['../classGpgFrontend_1_1GpgFileOpera.html#a6353e1688b113e5746aced6aa7f3876e',1,'GpgFrontend::GpgFileOpera']]], - ['encryptsymmetric_911',['EncryptSymmetric',['../classGpgFrontend_1_1GpgBasicOperator.html#a8f4ef57e941a066ad9d070eee51e2073',1,'GpgFrontend::GpgBasicOperator']]], - ['execute_912',['Execute',['../classGpgFrontend_1_1GpgCommandExecutor.html#affa984ec4c2982c527761289f73c1ab4',1,'GpgFrontend::GpgCommandExecutor']]], - ['exportkey_913',['ExportKey',['../classGpgFrontend_1_1GpgKeyImportExporter.html#a51cb18aa7302d7a48ccd1ee17f060391',1,'GpgFrontend::GpgKeyImportExporter']]], - ['exportkeyopenssh_914',['ExportKeyOpenSSH',['../classGpgFrontend_1_1GpgKeyImportExporter.html#aa0a73314ef94f397e2ef53d40abc9731',1,'GpgFrontend::GpgKeyImportExporter']]], - ['exportkeypackagedialog_915',['ExportKeyPackageDialog',['../classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html#a7d1899302ef743671c3002d04f6c9dd8',1,'GpgFrontend::UI::ExportKeyPackageDialog']]], - ['exportkeys_916',['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_917',['ExportSecretKey',['../classGpgFrontend_1_1GpgKeyImportExporter.html#a6a5e8d642ac5a3e98799af6495ef590b',1,'GpgFrontend::GpgKeyImportExporter']]], - ['exportsecretkeyshortest_918',['ExportSecretKeyShortest',['../classGpgFrontend_1_1GpgKeyImportExporter.html#abf7c0442549ae8602e1249cdf0da55df',1,'GpgFrontend::GpgKeyImportExporter']]] + ['encrypt_932',['Encrypt',['../classGpgFrontend_1_1GpgBasicOperator.html#a32e1eac6bb0f322588ae75ae36a9884a',1,'GpgFrontend::GpgBasicOperator']]], + ['encryptfile_933',['EncryptFile',['../classGpgFrontend_1_1GpgFileOpera.html#a234d939ae0b2c3f799dd01130fad9379',1,'GpgFrontend::GpgFileOpera']]], + ['encryptfilesymmetric_934',['EncryptFileSymmetric',['../classGpgFrontend_1_1GpgFileOpera.html#a826efca057afb07157453b3b9e267b0f',1,'GpgFrontend::GpgFileOpera']]], + ['encryptsign_935',['EncryptSign',['../classGpgFrontend_1_1GpgBasicOperator.html#a08906cf2bc2ddad8489438610f388f8a',1,'GpgFrontend::GpgBasicOperator']]], + ['encryptsignfile_936',['EncryptSignFile',['../classGpgFrontend_1_1GpgFileOpera.html#a6353e1688b113e5746aced6aa7f3876e',1,'GpgFrontend::GpgFileOpera']]], + ['encryptsymmetric_937',['EncryptSymmetric',['../classGpgFrontend_1_1GpgBasicOperator.html#a8f4ef57e941a066ad9d070eee51e2073',1,'GpgFrontend::GpgBasicOperator']]], + ['execute_938',['Execute',['../classGpgFrontend_1_1GpgCommandExecutor.html#affa984ec4c2982c527761289f73c1ab4',1,'GpgFrontend::GpgCommandExecutor']]], + ['exportallkeys_939',['ExportAllKeys',['../classGpgFrontend_1_1GpgKeyImportExporter.html#ae7d61a8c39ef7e7f1562895dbf108e68',1,'GpgFrontend::GpgKeyImportExporter']]], + ['exportkey_940',['ExportKey',['../classGpgFrontend_1_1GpgKeyImportExporter.html#a51cb18aa7302d7a48ccd1ee17f060391',1,'GpgFrontend::GpgKeyImportExporter']]], + ['exportkeyopenssh_941',['ExportKeyOpenSSH',['../classGpgFrontend_1_1GpgKeyImportExporter.html#aa0a73314ef94f397e2ef53d40abc9731',1,'GpgFrontend::GpgKeyImportExporter']]], + ['exportkeypackagedialog_942',['ExportKeyPackageDialog',['../classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html#a7d1899302ef743671c3002d04f6c9dd8',1,'GpgFrontend::UI::ExportKeyPackageDialog']]], + ['exportkeys_943',['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_944',['ExportSecretKey',['../classGpgFrontend_1_1GpgKeyImportExporter.html#a6a5e8d642ac5a3e98799af6495ef590b',1,'GpgFrontend::GpgKeyImportExporter']]], + ['exportsecretkeyshortest_945',['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 bff35480..7b7f4731 100644 --- a/docs/html/search/functions_6.js +++ b/docs/html/search/functions_6.js @@ -1,9 +1,9 @@ var searchData= [ - ['fetchkey_919',['FetchKey',['../classGpgFrontend_1_1GpgKeyGetter.html#afe78ac470287d70e7df51aae327b9f54',1,'GpgFrontend::GpgKeyGetter']]], - ['filepage_920',['FilePage',['../classGpgFrontend_1_1UI_1_1FilePage.html#a48fb14a3296f19f9b1c3b9b48c3a1bf3',1,'GpgFrontend::UI::FilePage']]], - ['findobjectinchannel_921',['FindObjectInChannel',['../classGpgFrontend_1_1SingletonStorage.html#a4c16c32e549494e394a0ddd859890a02',1,'GpgFrontend::SingletonStorage']]], - ['findwidget_922',['FindWidget',['../classGpgFrontend_1_1UI_1_1FindWidget.html#a495f281e72e5ddc10c8e944183b96dd9',1,'GpgFrontend::UI::FindWidget']]], - ['flushkeycache_923',['FlushKeyCache',['../classGpgFrontend_1_1GpgKeyGetter.html#ad9a902ea54566d4583304b072c4add51',1,'GpgFrontend::GpgKeyGetter']]], - ['free_5fheap_5fptr_924',['free_heap_ptr',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a17252d07835dab3772381639ec8473ea',1,'GpgFrontend::Thread::Task::DataObject']]] + ['fetchkey_946',['FetchKey',['../classGpgFrontend_1_1GpgKeyGetter.html#afe78ac470287d70e7df51aae327b9f54',1,'GpgFrontend::GpgKeyGetter']]], + ['filepage_947',['FilePage',['../classGpgFrontend_1_1UI_1_1FilePage.html#a48fb14a3296f19f9b1c3b9b48c3a1bf3',1,'GpgFrontend::UI::FilePage']]], + ['findobjectinchannel_948',['FindObjectInChannel',['../classGpgFrontend_1_1SingletonStorage.html#a4c16c32e549494e394a0ddd859890a02',1,'GpgFrontend::SingletonStorage']]], + ['findwidget_949',['FindWidget',['../classGpgFrontend_1_1UI_1_1FindWidget.html#a495f281e72e5ddc10c8e944183b96dd9',1,'GpgFrontend::UI::FindWidget']]], + ['flushkeycache_950',['FlushKeyCache',['../classGpgFrontend_1_1GpgKeyGetter.html#ad9a902ea54566d4583304b072c4add51',1,'GpgFrontend::GpgKeyGetter']]], + ['free_5fheap_5fptr_951',['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 733e4c1d..198fb10b 100644 --- a/docs/html/search/functions_7.js +++ b/docs/html/search/functions_7.js @@ -1,131 +1,132 @@ var searchData= [ - ['generaldialog_925',['GeneralDialog',['../classGpgFrontend_1_1UI_1_1GeneralDialog.html#ac9de4c49668ffaeb6916c64f878a202c',1,'GpgFrontend::UI::GeneralDialog']]], - ['generalmainwindow_926',['GeneralMainWindow',['../classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a62b24183ebf9da18852084879bcb1013',1,'GpgFrontend::UI::GeneralMainWindow']]], - ['generaltab_927',['GeneralTab',['../classGpgFrontend_1_1UI_1_1GeneralTab.html#a214079dfbacdc6898146c8468611cf0c',1,'GpgFrontend::UI::GeneralTab']]], - ['generate_928',['Generate',['../classGpgFrontend_1_1PassphraseGenerator.html#a8b4ee1083343fba6d947b85cd66079b8',1,'GpgFrontend::PassphraseGenerator']]], - ['generate_5fkey_5fpackage_5fname_929',['generate_key_package_name',['../classGpgFrontend_1_1KeyPackageOperator.html#a825d987dacd8a99d9d87729e1861a152',1,'GpgFrontend::KeyPackageOperator']]], - ['generate_5fuuid_930',['generate_uuid',['../classGpgFrontend_1_1Thread_1_1Task.html#a96d087abb7cf99d16f778f1a93b4f9e5',1,'GpgFrontend::Thread::Task']]], - ['generatekey_931',['GenerateKey',['../classGpgFrontend_1_1GpgKeyOpera.html#a4cc3ac91613164d7dc61a016a2b4caea',1,'GpgFrontend::GpgKeyOpera']]], - ['generatekeypackage_932',['GenerateKeyPackage',['../classGpgFrontend_1_1KeyPackageOperator.html#ade02f022e405e98377343c4667c206e9',1,'GpgFrontend::KeyPackageOperator']]], - ['generatekeypackagename_933',['GenerateKeyPackageName',['../classGpgFrontend_1_1KeyPackageOperator.html#ae90b362a32b6f6014cda1dc232bd3f0e',1,'GpgFrontend::KeyPackageOperator']]], - ['generatepassphrase_934',['GeneratePassphrase',['../classGpgFrontend_1_1KeyPackageOperator.html#a6d9cf022a1e0cf54c061495f59c1b4b9',1,'GpgFrontend::KeyPackageOperator']]], - ['generaterevokecert_935',['GenerateRevokeCert',['../classGpgFrontend_1_1GpgKeyOpera.html#a91a9a9f24f6b620ea7b906c529e3d9a4',1,'GpgFrontend::GpgKeyOpera']]], - ['generatesubkey_936',['GenerateSubkey',['../classGpgFrontend_1_1GpgKeyOpera.html#a882d99e8407cc22fb8b6e61c531fbe85',1,'GpgFrontend::GpgKeyOpera']]], - ['genkeyinfo_937',['GenKeyInfo',['../classGpgFrontend_1_1GenKeyInfo.html#a34eca1662ba8d4645751f3ee66582b04',1,'GpgFrontend::GenKeyInfo']]], - ['get_5ffile_5fextension_938',['get_file_extension',['../namespaceGpgFrontend.html#acff2cf5dd5b112b324fa6574ee935f79',1,'GpgFrontend']]], - ['get_5fheap_5fptr_939',['get_heap_ptr',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a0e1ab5e5bf5ef647a30a5ee2884ac63a',1,'GpgFrontend::Thread::Task::DataObject']]], - ['get_5fkey_5fin_5fcache_940',['get_key_in_cache',['../classGpgFrontend_1_1GpgKeyGetter.html#ab5196ef4ed5323fc2af70abf801ea260',1,'GpgFrontend::GpgKeyGetter']]], - ['get_5fonly_5ffile_5fname_5fwith_5fpath_941',['get_only_file_name_with_path',['../namespaceGpgFrontend.html#a5a2f5fc1ad3de55e41a1b7a388821328',1,'GpgFrontend']]], - ['get_5frestart_5fneeded_942',['get_restart_needed',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#a0d66e360dfbcf79403351459721c3981',1,'GpgFrontend::UI::SettingsDialog::get_restart_needed()'],['../classGpgFrontend_1_1UI_1_1MainWindow.html#a5e95f62dac9fba1ead6ec69c145923db',1,'GpgFrontend::UI::MainWindow::get_restart_needed()']]], - ['get_5fselected_5fsubkey_943',['get_selected_subkey',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#aedc5f77d6bf9b780b96552a43b323feb',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], - ['get_5fsign_5fselected_944',['get_sign_selected',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a2d7c328d726436061f19a287e481268d',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['get_5fstatus_5fstring_945',['get_status_string',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#ae682853c7eccfd3a6be43765f162f5a4',1,'GpgFrontend::UI::KeyImportDetailDialog']]], - ['get_5fuid_5fchecked_946',['get_uid_checked',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a7898b6fa328bfbc55ee2721bca4b2af1',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['get_5fuid_5fselected_947',['get_uid_selected',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a161bc9787be40a32f487c79faaeb54bf',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['getalgo_948',['GetAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#a6a65ba347156373b6cf98eb8e851d28d',1,'GpgFrontend::GenKeyInfo']]], - ['getallchannelid_949',['GetAllChannelId',['../classGpgFrontend_1_1SingletonStorage.html#a3f09424ebdc097fbdab77564a7d723ea',1,'GpgFrontend::SingletonStorage::GetAllChannelId()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a5f2f0474871971f86ff91fb6a2408621',1,'GpgFrontend::SingletonFunctionObject::GetAllChannelId()']]], - ['getallprivatekeys_950',['GetAllPrivateKeys',['../classGpgFrontend_1_1UI_1_1KeyList.html#a7ead8845ceb7c9310e3f4742251e1d87',1,'GpgFrontend::UI::KeyList']]], - ['getappdir_951',['GetAppDir',['../classGpgFrontend_1_1GlobalSettingStation.html#ae9d1da3d01c4a834120968636596c3c3',1,'GpgFrontend::GlobalSettingStation']]], - ['getbrowser_952',['GetBrowser',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a92c31eea47b42be28c86431384b27846',1,'GpgFrontend::UI::HelpPage']]], - ['getcertsdir_953',['GetCertsDir',['../classGpgFrontend_1_1GlobalSettingStation.html#a385ae4ab6ad5b17742a5405fa693d789',1,'GpgFrontend::GlobalSettingStation']]], - ['getchannel_954',['GetChannel',['../classGpgFrontend_1_1SingletonFunctionObject.html#aa99440b9177f5d0c18840f08a40d64b7',1,'GpgFrontend::SingletonFunctionObject::GetChannel()'],['../classGpgFrontend_1_1ChannelObject.html#a0e13a4bff1cfb679f68a3a2590a3b1b8',1,'GpgFrontend::ChannelObject::GetChannel()']]], - ['getchecked_955',['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_956',['GetCheckedSigners',['../classGpgFrontend_1_1UI_1_1SignersPicker.html#a2e98dcdf647a2e0e6455998b018aed00',1,'GpgFrontend::UI::SignersPicker']]], - ['getcomment_957',['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_958',['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_959',['GetDefaultChannel',['../classGpgFrontend_1_1ChannelObject.html#aece9c525c49900734bc1bebf85b644ef',1,'GpgFrontend::ChannelObject::GetDefaultChannel()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a50e2b3794d6553f4231eaec72d9d0a50',1,'GpgFrontend::SingletonFunctionObject::GetDefaultChannel()']]], - ['getdescription_960',['GetDescription',['../classGpgFrontend_1_1GpgTOFUInfo.html#a471a08bc906d74699f394e34d2581b78',1,'GpgFrontend::GpgTOFUInfo']]], - ['getemail_961',['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_962',['GetEncrCount',['../classGpgFrontend_1_1GpgTOFUInfo.html#abc53f7ca1b737ed1a913ad2f90a346e4',1,'GpgFrontend::GpgTOFUInfo']]], - ['getencrlast_963',['GetEncrLast',['../classGpgFrontend_1_1GpgTOFUInfo.html#a03f286ac6f16ec6d33eb3dcfd4e3f6d5',1,'GpgFrontend::GpgTOFUInfo']]], - ['getexpiretime_964',['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_965',['GetFilePath',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aff81f0f98a399fa55b6b0ebf2230d4cf',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['getfingerprint_966',['GetFingerprint',['../classGpgFrontend_1_1GpgSubKey.html#a09b00ac6a3b934b816f9522f78e77d59',1,'GpgFrontend::GpgSubKey::GetFingerprint()'],['../classGpgFrontend_1_1GpgKey.html#a165b3f645e2c6a4bbd024199e1f1cc9b',1,'GpgFrontend::GpgKey::GetFingerprint()'],['../classGpgFrontend_1_1GpgSignature.html#a627b5206311998dd3f45393344b195be',1,'GpgFrontend::GpgSignature::GetFingerprint() const']]], - ['gethashalgo_967',['GetHashAlgo',['../classGpgFrontend_1_1GpgSignature.html#ace10a3ac7f4dc3888b2ad62157213f1c',1,'GpgFrontend::GpgSignature']]], - ['getid_968',['GetId',['../classGpgFrontend_1_1GpgKey.html#a8930f958f3ca1f5566f63e8c2273837e',1,'GpgFrontend::GpgKey']]], - ['getid_969',['GetID',['../classGpgFrontend_1_1GpgSubKey.html#a48d3dfbd3aae9523ffbdb916aad8ad53',1,'GpgFrontend::GpgSubKey']]], - ['getinfo_970',['GetInfo',['../classGpgFrontend_1_1GpgContext.html#a4a8f6ff37e45979159ab375b2c7d48c3',1,'GpgFrontend::GpgContext']]], - ['getinstance_971',['GetInstance',['../classGpgFrontend_1_1CoreCommonUtil.html#a8588dfa6ccb57c055f022b13e2da1e7c',1,'GpgFrontend::CoreCommonUtil::GetInstance()'],['../classGpgFrontend_1_1UI_1_1SignalStation.html#abe381ce56a7b157a3760b2fd9c3b7419',1,'GpgFrontend::UI::SignalStation::GetInstance()'],['../classGpgFrontend_1_1SingletonStorageCollection.html#ac56d19e0d4b99e7b8a86a017721f3db1',1,'GpgFrontend::SingletonStorageCollection::GetInstance()'],['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a9b341a1a903cec0c70a6af4bb230905e',1,'GpgFrontend::UI::GpgFrontendApplication::GetInstance()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a70484d7cfe9f9dcbcd5f8bb749250f36',1,'GpgFrontend::SingletonFunctionObject::GetInstance()'],['../classGpgFrontend_1_1UI_1_1CommonUtils.html#aed529969f54e39e3f9da14ae6dd00d49',1,'GpgFrontend::UI::CommonUtils::GetInstance()']]], - ['getinvalid_972',['GetInvalid',['../classGpgFrontend_1_1GpgUID.html#a388ad367d353edd5eeb6e529977c924c',1,'GpgFrontend::GpgUID']]], - ['getkey_973',['GetKey',['../classGpgFrontend_1_1GpgKeyGetter.html#a94243d09c9418c8ebf0c7cdab4a2b7f1',1,'GpgFrontend::GpgKeyGetter']]], - ['getkeyid_974',['GetKeyID',['../classGpgFrontend_1_1GpgKeySignature.html#a4277f6deb7c07aaba62fbe8e7867b1fe',1,'GpgFrontend::GpgKeySignature']]], - ['getkeylength_975',['GetKeyLength',['../classGpgFrontend_1_1GenKeyInfo.html#a4927a9091fa2b2f68f6b60ce78ab2fe9',1,'GpgFrontend::GenKeyInfo::GetKeyLength()'],['../classGpgFrontend_1_1GpgSubKey.html#a18d7a2f0a3cee32a123b780f2b8b8708',1,'GpgFrontend::GpgSubKey::GetKeyLength()']]], - ['getkeys_976',['GetKeys',['../classGpgFrontend_1_1GpgKeyGetter.html#aa5979c21af58b874b33c203752dcc805',1,'GpgFrontend::GpgKeyGetter']]], - ['getkeyscopy_977',['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_978',['GetKeySizeStr',['../classGpgFrontend_1_1GenKeyInfo.html#a0bda4b4161d805582869ec0e56ade07c',1,'GpgFrontend::GenKeyInfo']]], - ['getlastupdatetime_979',['GetLastUpdateTime',['../classGpgFrontend_1_1GpgKey.html#a3532e20298b642f5d312712fa8a791df',1,'GpgFrontend::GpgKey']]], - ['getlatestversion_980',['getLatestVersion',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a7329657135624fc42ad80d821e11befe',1,'GpgFrontend::UI::UpdateTab']]], - ['getlocaledir_981',['GetLocaleDir',['../classGpgFrontend_1_1GlobalSettingStation.html#a0b3780564305e9b210d66ef377c21565',1,'GpgFrontend::GlobalSettingStation']]], - ['getlogdir_982',['GetLogDir',['../classGpgFrontend_1_1GlobalSettingStation.html#a7da9b08291ef2391892f5c9375b8db23',1,'GpgFrontend::GlobalSettingStation']]], - ['getname_983',['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_984',['GetObjectSize',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#aa35e6ad1ef3a5733fb338f3333b5c637',1,'GpgFrontend::Thread::Task::DataObject']]], - ['getownertrust_985',['GetOwnerTrust',['../classGpgFrontend_1_1GpgKey.html#a3327ad34ff14feb75f3fbfc2bfb7fc44',1,'GpgFrontend::GpgKey']]], - ['getpassphrase_986',['GetPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#a890ee16ef6088570360a073a6b531c89',1,'GpgFrontend::GenKeyInfo']]], - ['getpolicy_987',['GetPolicy',['../classGpgFrontend_1_1GpgTOFUInfo.html#a34d1073bb25a8958e70016f3cd6b167f',1,'GpgFrontend::GpgTOFUInfo']]], - ['getprimarykeylength_988',['GetPrimaryKeyLength',['../classGpgFrontend_1_1GpgKey.html#a5b276fdeb438fe14ec2850d799401be6',1,'GpgFrontend::GpgKey']]], - ['getprivatechecked_989',['GetPrivateChecked',['../classGpgFrontend_1_1UI_1_1KeyList.html#a81c2e36427371fa6ae6381870b9b5bdd',1,'GpgFrontend::UI::KeyList']]], - ['getprotocol_990',['GetProtocol',['../classGpgFrontend_1_1GpgKey.html#ad2440a2902c81192d5549fe951ddb130',1,'GpgFrontend::GpgKey']]], - ['getpubkey_991',['GetPubkey',['../classGpgFrontend_1_1GpgKeyGetter.html#a7a8bc7c0f12a11e108051e4c824fc430',1,'GpgFrontend::GpgKeyGetter']]], - ['getpubkeyalgo_992',['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_993',['GetPublicKeyAlgo',['../classGpgFrontend_1_1GpgKey.html#a1c21bc3b1788753f56272ad73052fc5f',1,'GpgFrontend::GpgKey']]], - ['getresourcedir_994',['GetResourceDir',['../classGpgFrontend_1_1GlobalSettingStation.html#afc1aa3dec55ae4e741f92fce1140a2d0',1,'GpgFrontend::GlobalSettingStation']]], - ['getresultreport_995',['GetResultReport',['../classGpgFrontend_1_1GpgResultAnalyse.html#aa9e35e573ea4c0ebdbb014d1afbaab9d',1,'GpgFrontend::GpgResultAnalyse']]], - ['getrevoked_996',['GetRevoked',['../classGpgFrontend_1_1GpgUID.html#a32450fbf22c64cf522e9a090423344a2',1,'GpgFrontend::GpgUID']]], - ['getselected_997',['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_998',['GetSelectedKey',['../classGpgFrontend_1_1UI_1_1KeyList.html#ab4368b81402e2468a9e960de8fb7080f',1,'GpgFrontend::UI::KeyList']]], - ['getsignatures_999',['GetSignatures',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a2063acf8262e2c600b14ed1948486ac3',1,'GpgFrontend::GpgVerifyResultAnalyse::GetSignatures()'],['../classGpgFrontend_1_1GpgUID.html#af7b5310b319378c30c488277e95ef601',1,'GpgFrontend::GpgUID::GetSignatures()']]], - ['getsigncount_1000',['GetSignCount',['../classGpgFrontend_1_1GpgTOFUInfo.html#a681046a3916d0d0cdcf0852bfa76fdb0',1,'GpgFrontend::GpgTOFUInfo']]], - ['getsigners_1001',['GetSigners',['../classGpgFrontend_1_1GpgBasicOperator.html#a78f37b8d5afd6c0248665a4415f880cf',1,'GpgFrontend::GpgBasicOperator']]], - ['getsignfirst_1002',['GetSignFirst',['../classGpgFrontend_1_1GpgTOFUInfo.html#a788a439b206882c6317162878e2fe0b8',1,'GpgFrontend::GpgTOFUInfo']]], - ['getsignlast_1003',['GetSignLast',['../classGpgFrontend_1_1GpgTOFUInfo.html#a746cbcf731af6b19ade42debbf1e2c8f',1,'GpgFrontend::GpgTOFUInfo']]], - ['getsingletonstorage_1004',['GetSingletonStorage',['../classGpgFrontend_1_1SingletonStorageCollection.html#a6f933390c54b7f55d5ffb4624074725f',1,'GpgFrontend::SingletonStorageCollection']]], - ['getsizechangestep_1005',['GetSizeChangeStep',['../classGpgFrontend_1_1GenKeyInfo.html#ac211a7a615805ae97ff284b46abfeab7',1,'GpgFrontend::GenKeyInfo']]], - ['getstandalonedatabasedir_1006',['GetStandaloneDatabaseDir',['../classGpgFrontend_1_1GlobalSettingStation.html#af484ca46c5df831a9dd76f3a88d66332',1,'GpgFrontend::GlobalSettingStation']]], - ['getstandalonegpgbindir_1007',['GetStandaloneGpgBinDir',['../classGpgFrontend_1_1GlobalSettingStation.html#aa93b21af9ac6649d5749c83c809f5b00',1,'GpgFrontend::GlobalSettingStation']]], - ['getstatus_1008',['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_1009',['GetSubKeys',['../classGpgFrontend_1_1GpgKey.html#a746699842f6c49687af0487a8b3b163d',1,'GpgFrontend::GpgKey']]], - ['getsuggestmaxkeysize_1010',['GetSuggestMaxKeySize',['../classGpgFrontend_1_1GenKeyInfo.html#ae461a553176ad1ab0c1121ea6de6c8c2',1,'GpgFrontend::GenKeyInfo']]], - ['getsuggestminkeysize_1011',['GetSuggestMinKeySize',['../classGpgFrontend_1_1GenKeyInfo.html#a0b1612421148b86919b7130ed148ca51',1,'GpgFrontend::GenKeyInfo']]], - ['getsummary_1012',['GetSummary',['../classGpgFrontend_1_1GpgSignature.html#a3b143f6e13b71663d81fc0f326aad17f',1,'GpgFrontend::GpgSignature']]], - ['getsupportedkeyalgo_1013',['GetSupportedKeyAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#ac0dbb2d89b1e5f9b272679ba3f24314e',1,'GpgFrontend::GenKeyInfo']]], - ['getsupportedkeyalgostandalone_1014',['GetSupportedKeyAlgoStandalone',['../classGpgFrontend_1_1GenKeyInfo.html#afb8315b6612c64b3921b72df98ebcc74',1,'GpgFrontend::GenKeyInfo']]], - ['getsupportedsubkeyalgo_1015',['GetSupportedSubkeyAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#a168d6fe5252812f5984ba6d8046c7741',1,'GpgFrontend::GenKeyInfo']]], - ['getsupportedsubkeyalgostandalone_1016',['GetSupportedSubkeyAlgoStandalone',['../classGpgFrontend_1_1GenKeyInfo.html#a6819b0ca3ef7712b85ae320030cde023',1,'GpgFrontend::GenKeyInfo']]], - ['gettabidstosave_1017',['GetTabIdsToSave',['../classGpgFrontend_1_1UI_1_1QuitDialog.html#aec364c38056b6d92c172f8cdfb5f8e82',1,'GpgFrontend::UI::QuitDialog']]], - ['gettextpage_1018',['GetTextPage',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a6218e6e12bdba0228e4ab4276f7fed7a',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['gettofuinfos_1019',['GetTofuInfos',['../classGpgFrontend_1_1GpgUID.html#a2a36376484f7c1a4a19377d24e47a0b2',1,'GpgFrontend::GpgUID']]], - ['getuid_1020',['GetUID',['../classGpgFrontend_1_1GpgKeySignature.html#a95254ea2c00829b9dc87adc4a317cde5',1,'GpgFrontend::GpgKeySignature::GetUID()'],['../classGpgFrontend_1_1GpgUID.html#a467897d43a18b0cadd2e2e44384f6cdd',1,'GpgFrontend::GpgUID::GetUID()']]], - ['getuids_1021',['GetUIDs',['../classGpgFrontend_1_1GpgKey.html#ac8b13b45e487cdc423b78d3017897f99',1,'GpgFrontend::GpgKey']]], - ['getuisettings_1022',['GetUISettings',['../classGpgFrontend_1_1GlobalSettingStation.html#a14433405831283cd95091d741614d03b',1,'GpgFrontend::GlobalSettingStation']]], - ['getuserid_1023',['GetUserid',['../classGpgFrontend_1_1GenKeyInfo.html#a4ee4a0659e76376d9bfc527c334392e1',1,'GpgFrontend::GenKeyInfo']]], - ['getuuid_1024',['GetUUID',['../classGpgFrontend_1_1Thread_1_1Task.html#a50b91d27874af31ef13c493b00824ccf',1,'GpgFrontend::Thread::Task']]], - ['getvalidity_1025',['GetValidity',['../classGpgFrontend_1_1GpgSignature.html#a09cb6b465e85dffcf7867e70a276e9ad',1,'GpgFrontend::GpgSignature::GetValidity()'],['../classGpgFrontend_1_1GpgTOFUInfo.html#a8770062c9e0c3875083d2c92ebe8ccb0',1,'GpgFrontend::GpgTOFUInfo::GetValidity()']]], - ['globalsettingstation_1026',['GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html#abdc6dda369d4214e43ffa2930f7386b0',1,'GpgFrontend::GlobalSettingStation']]], - ['gnupgtab_1027',['GnupgTab',['../classGpgFrontend_1_1UI_1_1GnupgTab.html#ab9d9e8af4494659f13b87804e7318a79',1,'GpgFrontend::UI::GnupgTab']]], - ['good_1028',['good',['../classGpgFrontend_1_1GpgContext.html#a73c505a2f3d39d1638dc4d9a3e13a913',1,'GpgFrontend::GpgContext']]], - ['gpgadvancedoperator_1029',['GpgAdvancedOperator',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a9233156767f1d45272b95decd18241e3',1,'GpgFrontend::GpgAdvancedOperator']]], - ['gpgbasicoperator_1030',['GpgBasicOperator',['../classGpgFrontend_1_1GpgBasicOperator.html#a139be86330f88e5f833aa24263a3b2ae',1,'GpgFrontend::GpgBasicOperator']]], - ['gpgcommandexecutor_1031',['GpgCommandExecutor',['../classGpgFrontend_1_1GpgCommandExecutor.html#a94240f423464600938bfcafa2b186c38',1,'GpgFrontend::GpgCommandExecutor']]], - ['gpgcontext_1032',['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_1033',['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_1034',['GpgDecryptResultAnalyse',['../classGpgFrontend_1_1GpgDecryptResultAnalyse.html#a442438ae58cdd7220f0e4b0792e5a372',1,'GpgFrontend::GpgDecryptResultAnalyse']]], - ['gpgencryptresultanalyse_1035',['GpgEncryptResultAnalyse',['../classGpgFrontend_1_1GpgEncryptResultAnalyse.html#a0801e32c8709da373f6715bc994a7747',1,'GpgFrontend::GpgEncryptResultAnalyse']]], - ['gpgfileopera_1036',['GpgFileOpera',['../classGpgFrontend_1_1GpgFileOpera.html#aa81da3d72c4fbc57e7138bfec7731152',1,'GpgFrontend::GpgFileOpera']]], - ['gpgfrontendapplication_1037',['GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#ac0290f06e08f2714f9727bb578df1298',1,'GpgFrontend::UI::GpgFrontendApplication']]], - ['gpgimportinformation_1038',['GpgImportInformation',['../classGpgFrontend_1_1GpgImportInformation.html#ab282d4f701403cd68eb02d1aad30be56',1,'GpgFrontend::GpgImportInformation']]], - ['gpgkey_1039',['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_1040',['GpgKeyGetter',['../classGpgFrontend_1_1GpgKeyGetter.html#a8eeee9f6dd74dc24c24794ce63c62285',1,'GpgFrontend::GpgKeyGetter']]], - ['gpgkeyimportexporter_1041',['GpgKeyImportExporter',['../classGpgFrontend_1_1GpgKeyImportExporter.html#a0eede7c782d17b32d6c1f30cd8496561',1,'GpgFrontend::GpgKeyImportExporter']]], - ['gpgkeymanager_1042',['GpgKeyManager',['../classGpgFrontend_1_1GpgKeyManager.html#a210b717fd8ee63b064d77f32b0df4c5d',1,'GpgFrontend::GpgKeyManager']]], - ['gpgkeyopera_1043',['GpgKeyOpera',['../classGpgFrontend_1_1GpgKeyOpera.html#a01d6a920156a38a34c57d9c49c361079',1,'GpgFrontend::GpgKeyOpera']]], - ['gpgkeysignature_1044',['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_1045',['GpgResultAnalyse',['../classGpgFrontend_1_1GpgResultAnalyse.html#aa3c9bdf1ea4c87476010ef32fd2fb426',1,'GpgFrontend::GpgResultAnalyse']]], - ['gpgsignature_1046',['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_1047',['GpgSignResultAnalyse',['../classGpgFrontend_1_1GpgSignResultAnalyse.html#a3ddd2d52ad91fdf7f4c8740312570c8e',1,'GpgFrontend::GpgSignResultAnalyse']]], - ['gpgsubkey_1048',['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_1049',['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_1050',['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_1051',['GpgUIDOperator',['../classGpgFrontend_1_1GpgUIDOperator.html#ab74a830c858ab9ff135375743393a7c7',1,'GpgFrontend::GpgUIDOperator']]], - ['gpgverifyresultanalyse_1052',['GpgVerifyResultAnalyse',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#ab1d67da5dbe5bd2d665f7121e5f5354b',1,'GpgFrontend::GpgVerifyResultAnalyse']]] + ['generaldialog_952',['GeneralDialog',['../classGpgFrontend_1_1UI_1_1GeneralDialog.html#ac9de4c49668ffaeb6916c64f878a202c',1,'GpgFrontend::UI::GeneralDialog']]], + ['generalmainwindow_953',['GeneralMainWindow',['../classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a62b24183ebf9da18852084879bcb1013',1,'GpgFrontend::UI::GeneralMainWindow']]], + ['generaltab_954',['GeneralTab',['../classGpgFrontend_1_1UI_1_1GeneralTab.html#a214079dfbacdc6898146c8468611cf0c',1,'GpgFrontend::UI::GeneralTab']]], + ['generate_955',['Generate',['../classGpgFrontend_1_1PassphraseGenerator.html#a8b4ee1083343fba6d947b85cd66079b8',1,'GpgFrontend::PassphraseGenerator']]], + ['generate_5fkey_5fpackage_5fname_956',['generate_key_package_name',['../classGpgFrontend_1_1KeyPackageOperator.html#a825d987dacd8a99d9d87729e1861a152',1,'GpgFrontend::KeyPackageOperator']]], + ['generate_5fuuid_957',['generate_uuid',['../classGpgFrontend_1_1Thread_1_1Task.html#a96d087abb7cf99d16f778f1a93b4f9e5',1,'GpgFrontend::Thread::Task']]], + ['generatekey_958',['GenerateKey',['../classGpgFrontend_1_1GpgKeyOpera.html#a4cc3ac91613164d7dc61a016a2b4caea',1,'GpgFrontend::GpgKeyOpera']]], + ['generatekeypackage_959',['GenerateKeyPackage',['../classGpgFrontend_1_1KeyPackageOperator.html#ade02f022e405e98377343c4667c206e9',1,'GpgFrontend::KeyPackageOperator']]], + ['generatekeypackagename_960',['GenerateKeyPackageName',['../classGpgFrontend_1_1KeyPackageOperator.html#ae90b362a32b6f6014cda1dc232bd3f0e',1,'GpgFrontend::KeyPackageOperator']]], + ['generatepassphrase_961',['GeneratePassphrase',['../classGpgFrontend_1_1KeyPackageOperator.html#a6d9cf022a1e0cf54c061495f59c1b4b9',1,'GpgFrontend::KeyPackageOperator']]], + ['generaterevokecert_962',['GenerateRevokeCert',['../classGpgFrontend_1_1GpgKeyOpera.html#a91a9a9f24f6b620ea7b906c529e3d9a4',1,'GpgFrontend::GpgKeyOpera']]], + ['generatesubkey_963',['GenerateSubkey',['../classGpgFrontend_1_1GpgKeyOpera.html#a882d99e8407cc22fb8b6e61c531fbe85',1,'GpgFrontend::GpgKeyOpera']]], + ['genkeyinfo_964',['GenKeyInfo',['../classGpgFrontend_1_1GenKeyInfo.html#a34eca1662ba8d4645751f3ee66582b04',1,'GpgFrontend::GenKeyInfo']]], + ['get_5ffile_5fextension_965',['get_file_extension',['../namespaceGpgFrontend.html#acff2cf5dd5b112b324fa6574ee935f79',1,'GpgFrontend']]], + ['get_5fheap_5fptr_966',['get_heap_ptr',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a0e1ab5e5bf5ef647a30a5ee2884ac63a',1,'GpgFrontend::Thread::Task::DataObject']]], + ['get_5fkey_5fin_5fcache_967',['get_key_in_cache',['../classGpgFrontend_1_1GpgKeyGetter.html#ab5196ef4ed5323fc2af70abf801ea260',1,'GpgFrontend::GpgKeyGetter']]], + ['get_5fonly_5ffile_5fname_5fwith_5fpath_968',['get_only_file_name_with_path',['../namespaceGpgFrontend.html#a5a2f5fc1ad3de55e41a1b7a388821328',1,'GpgFrontend']]], + ['get_5frestart_5fneeded_969',['get_restart_needed',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#a0d66e360dfbcf79403351459721c3981',1,'GpgFrontend::UI::SettingsDialog::get_restart_needed()'],['../classGpgFrontend_1_1UI_1_1MainWindow.html#a5e95f62dac9fba1ead6ec69c145923db',1,'GpgFrontend::UI::MainWindow::get_restart_needed()']]], + ['get_5fselected_5fsubkey_970',['get_selected_subkey',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#aedc5f77d6bf9b780b96552a43b323feb',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], + ['get_5fsign_5fselected_971',['get_sign_selected',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a2d7c328d726436061f19a287e481268d',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['get_5fstatus_5fstring_972',['get_status_string',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#ae682853c7eccfd3a6be43765f162f5a4',1,'GpgFrontend::UI::KeyImportDetailDialog']]], + ['get_5fuid_5fchecked_973',['get_uid_checked',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a7898b6fa328bfbc55ee2721bca4b2af1',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['get_5fuid_5fselected_974',['get_uid_selected',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a161bc9787be40a32f487c79faaeb54bf',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['getalgo_975',['GetAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#a6a65ba347156373b6cf98eb8e851d28d',1,'GpgFrontend::GenKeyInfo']]], + ['getallchannelid_976',['GetAllChannelId',['../classGpgFrontend_1_1SingletonStorage.html#a3f09424ebdc097fbdab77564a7d723ea',1,'GpgFrontend::SingletonStorage::GetAllChannelId()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a5f2f0474871971f86ff91fb6a2408621',1,'GpgFrontend::SingletonFunctionObject::GetAllChannelId()']]], + ['getallprivatekeys_977',['GetAllPrivateKeys',['../classGpgFrontend_1_1UI_1_1KeyList.html#a7ead8845ceb7c9310e3f4742251e1d87',1,'GpgFrontend::UI::KeyList']]], + ['getappdir_978',['GetAppDir',['../classGpgFrontend_1_1GlobalSettingStation.html#ae9d1da3d01c4a834120968636596c3c3',1,'GpgFrontend::GlobalSettingStation']]], + ['getbrowser_979',['GetBrowser',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a92c31eea47b42be28c86431384b27846',1,'GpgFrontend::UI::HelpPage']]], + ['getcertsdir_980',['GetCertsDir',['../classGpgFrontend_1_1GlobalSettingStation.html#a385ae4ab6ad5b17742a5405fa693d789',1,'GpgFrontend::GlobalSettingStation']]], + ['getchannel_981',['GetChannel',['../classGpgFrontend_1_1SingletonFunctionObject.html#aa99440b9177f5d0c18840f08a40d64b7',1,'GpgFrontend::SingletonFunctionObject::GetChannel()'],['../classGpgFrontend_1_1ChannelObject.html#a0e13a4bff1cfb679f68a3a2590a3b1b8',1,'GpgFrontend::ChannelObject::GetChannel()']]], + ['getchecked_982',['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_983',['GetCheckedSigners',['../classGpgFrontend_1_1UI_1_1SignersPicker.html#a2e98dcdf647a2e0e6455998b018aed00',1,'GpgFrontend::UI::SignersPicker']]], + ['getcomment_984',['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_985',['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_986',['GetDefaultChannel',['../classGpgFrontend_1_1ChannelObject.html#aece9c525c49900734bc1bebf85b644ef',1,'GpgFrontend::ChannelObject::GetDefaultChannel()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a50e2b3794d6553f4231eaec72d9d0a50',1,'GpgFrontend::SingletonFunctionObject::GetDefaultChannel()']]], + ['getdescription_987',['GetDescription',['../classGpgFrontend_1_1GpgTOFUInfo.html#a471a08bc906d74699f394e34d2581b78',1,'GpgFrontend::GpgTOFUInfo']]], + ['getemail_988',['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_989',['GetEncrCount',['../classGpgFrontend_1_1GpgTOFUInfo.html#abc53f7ca1b737ed1a913ad2f90a346e4',1,'GpgFrontend::GpgTOFUInfo']]], + ['getencrlast_990',['GetEncrLast',['../classGpgFrontend_1_1GpgTOFUInfo.html#a03f286ac6f16ec6d33eb3dcfd4e3f6d5',1,'GpgFrontend::GpgTOFUInfo']]], + ['getexpiretime_991',['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_992',['GetFilePath',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#aff81f0f98a399fa55b6b0ebf2230d4cf',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['getfingerprint_993',['GetFingerprint',['../classGpgFrontend_1_1GpgSubKey.html#a09b00ac6a3b934b816f9522f78e77d59',1,'GpgFrontend::GpgSubKey::GetFingerprint()'],['../classGpgFrontend_1_1GpgKey.html#a165b3f645e2c6a4bbd024199e1f1cc9b',1,'GpgFrontend::GpgKey::GetFingerprint()'],['../classGpgFrontend_1_1GpgSignature.html#a627b5206311998dd3f45393344b195be',1,'GpgFrontend::GpgSignature::GetFingerprint() const']]], + ['gethashalgo_994',['GetHashAlgo',['../classGpgFrontend_1_1GpgSignature.html#ace10a3ac7f4dc3888b2ad62157213f1c',1,'GpgFrontend::GpgSignature']]], + ['getid_995',['GetID',['../classGpgFrontend_1_1GpgSubKey.html#a48d3dfbd3aae9523ffbdb916aad8ad53',1,'GpgFrontend::GpgSubKey']]], + ['getid_996',['GetId',['../classGpgFrontend_1_1GpgKey.html#a8930f958f3ca1f5566f63e8c2273837e',1,'GpgFrontend::GpgKey']]], + ['getinfo_997',['GetInfo',['../classGpgFrontend_1_1GpgContext.html#a4a8f6ff37e45979159ab375b2c7d48c3',1,'GpgFrontend::GpgContext']]], + ['getinstance_998',['GetInstance',['../classGpgFrontend_1_1CoreCommonUtil.html#a8588dfa6ccb57c055f022b13e2da1e7c',1,'GpgFrontend::CoreCommonUtil::GetInstance()'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a70484d7cfe9f9dcbcd5f8bb749250f36',1,'GpgFrontend::SingletonFunctionObject::GetInstance()'],['../classGpgFrontend_1_1UI_1_1SignalStation.html#abe381ce56a7b157a3760b2fd9c3b7419',1,'GpgFrontend::UI::SignalStation::GetInstance()'],['../classGpgFrontend_1_1CoreSignalStation.html#a0c5893909726b919ea733de9906cfb36',1,'GpgFrontend::CoreSignalStation::GetInstance()'],['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a9b341a1a903cec0c70a6af4bb230905e',1,'GpgFrontend::UI::GpgFrontendApplication::GetInstance()'],['../classGpgFrontend_1_1SingletonStorageCollection.html#ac56d19e0d4b99e7b8a86a017721f3db1',1,'GpgFrontend::SingletonStorageCollection::GetInstance()'],['../classGpgFrontend_1_1UI_1_1CommonUtils.html#aed529969f54e39e3f9da14ae6dd00d49',1,'GpgFrontend::UI::CommonUtils::GetInstance()']]], + ['getinvalid_999',['GetInvalid',['../classGpgFrontend_1_1GpgUID.html#a388ad367d353edd5eeb6e529977c924c',1,'GpgFrontend::GpgUID']]], + ['getkey_1000',['GetKey',['../classGpgFrontend_1_1GpgKeyGetter.html#a94243d09c9418c8ebf0c7cdab4a2b7f1',1,'GpgFrontend::GpgKeyGetter']]], + ['getkeyid_1001',['GetKeyID',['../classGpgFrontend_1_1GpgKeySignature.html#a4277f6deb7c07aaba62fbe8e7867b1fe',1,'GpgFrontend::GpgKeySignature']]], + ['getkeylength_1002',['GetKeyLength',['../classGpgFrontend_1_1GenKeyInfo.html#a4927a9091fa2b2f68f6b60ce78ab2fe9',1,'GpgFrontend::GenKeyInfo::GetKeyLength()'],['../classGpgFrontend_1_1GpgSubKey.html#a18d7a2f0a3cee32a123b780f2b8b8708',1,'GpgFrontend::GpgSubKey::GetKeyLength()']]], + ['getkeys_1003',['GetKeys',['../classGpgFrontend_1_1GpgKeyGetter.html#aa5979c21af58b874b33c203752dcc805',1,'GpgFrontend::GpgKeyGetter']]], + ['getkeyscopy_1004',['GetKeysCopy',['../classGpgFrontend_1_1GpgKeyGetter.html#a028fe69516a51c526bbd2ec4235053ad',1,'GpgFrontend::GpgKeyGetter::GetKeysCopy(const KeyLinkListPtr &keys)'],['../classGpgFrontend_1_1GpgKeyGetter.html#a7ec8d8431a771c602cbfa946d13d6c74',1,'GpgFrontend::GpgKeyGetter::GetKeysCopy(const KeyListPtr &keys)']]], + ['getkeysizestr_1005',['GetKeySizeStr',['../classGpgFrontend_1_1GenKeyInfo.html#a0bda4b4161d805582869ec0e56ade07c',1,'GpgFrontend::GenKeyInfo']]], + ['getlastupdatetime_1006',['GetLastUpdateTime',['../classGpgFrontend_1_1GpgKey.html#a3532e20298b642f5d312712fa8a791df',1,'GpgFrontend::GpgKey']]], + ['getlatestversion_1007',['getLatestVersion',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a7329657135624fc42ad80d821e11befe',1,'GpgFrontend::UI::UpdateTab']]], + ['getlocaledir_1008',['GetLocaleDir',['../classGpgFrontend_1_1GlobalSettingStation.html#a0b3780564305e9b210d66ef377c21565',1,'GpgFrontend::GlobalSettingStation']]], + ['getlogdir_1009',['GetLogDir',['../classGpgFrontend_1_1GlobalSettingStation.html#a7da9b08291ef2391892f5c9375b8db23',1,'GpgFrontend::GlobalSettingStation']]], + ['getname_1010',['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_1011',['GetObjectSize',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#aa35e6ad1ef3a5733fb338f3333b5c637',1,'GpgFrontend::Thread::Task::DataObject']]], + ['getownertrust_1012',['GetOwnerTrust',['../classGpgFrontend_1_1GpgKey.html#a3327ad34ff14feb75f3fbfc2bfb7fc44',1,'GpgFrontend::GpgKey']]], + ['getpassphrase_1013',['GetPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#a890ee16ef6088570360a073a6b531c89',1,'GpgFrontend::GenKeyInfo']]], + ['getpolicy_1014',['GetPolicy',['../classGpgFrontend_1_1GpgTOFUInfo.html#a34d1073bb25a8958e70016f3cd6b167f',1,'GpgFrontend::GpgTOFUInfo']]], + ['getprimarykeylength_1015',['GetPrimaryKeyLength',['../classGpgFrontend_1_1GpgKey.html#a5b276fdeb438fe14ec2850d799401be6',1,'GpgFrontend::GpgKey']]], + ['getprivatechecked_1016',['GetPrivateChecked',['../classGpgFrontend_1_1UI_1_1KeyList.html#a81c2e36427371fa6ae6381870b9b5bdd',1,'GpgFrontend::UI::KeyList']]], + ['getprotocol_1017',['GetProtocol',['../classGpgFrontend_1_1GpgKey.html#ad2440a2902c81192d5549fe951ddb130',1,'GpgFrontend::GpgKey']]], + ['getpubkey_1018',['GetPubkey',['../classGpgFrontend_1_1GpgKeyGetter.html#a7a8bc7c0f12a11e108051e4c824fc430',1,'GpgFrontend::GpgKeyGetter']]], + ['getpubkeyalgo_1019',['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_1020',['GetPublicKeyAlgo',['../classGpgFrontend_1_1GpgKey.html#a1c21bc3b1788753f56272ad73052fc5f',1,'GpgFrontend::GpgKey']]], + ['getresourcedir_1021',['GetResourceDir',['../classGpgFrontend_1_1GlobalSettingStation.html#afc1aa3dec55ae4e741f92fce1140a2d0',1,'GpgFrontend::GlobalSettingStation']]], + ['getresultreport_1022',['GetResultReport',['../classGpgFrontend_1_1GpgResultAnalyse.html#aa9e35e573ea4c0ebdbb014d1afbaab9d',1,'GpgFrontend::GpgResultAnalyse']]], + ['getrevoked_1023',['GetRevoked',['../classGpgFrontend_1_1GpgUID.html#a32450fbf22c64cf522e9a090423344a2',1,'GpgFrontend::GpgUID']]], + ['getselected_1024',['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_1025',['GetSelectedKey',['../classGpgFrontend_1_1UI_1_1KeyList.html#ab4368b81402e2468a9e960de8fb7080f',1,'GpgFrontend::UI::KeyList']]], + ['getsignatures_1026',['GetSignatures',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a2063acf8262e2c600b14ed1948486ac3',1,'GpgFrontend::GpgVerifyResultAnalyse::GetSignatures()'],['../classGpgFrontend_1_1GpgUID.html#af7b5310b319378c30c488277e95ef601',1,'GpgFrontend::GpgUID::GetSignatures()']]], + ['getsigncount_1027',['GetSignCount',['../classGpgFrontend_1_1GpgTOFUInfo.html#a681046a3916d0d0cdcf0852bfa76fdb0',1,'GpgFrontend::GpgTOFUInfo']]], + ['getsigners_1028',['GetSigners',['../classGpgFrontend_1_1GpgBasicOperator.html#a78f37b8d5afd6c0248665a4415f880cf',1,'GpgFrontend::GpgBasicOperator']]], + ['getsignfirst_1029',['GetSignFirst',['../classGpgFrontend_1_1GpgTOFUInfo.html#a788a439b206882c6317162878e2fe0b8',1,'GpgFrontend::GpgTOFUInfo']]], + ['getsignlast_1030',['GetSignLast',['../classGpgFrontend_1_1GpgTOFUInfo.html#a746cbcf731af6b19ade42debbf1e2c8f',1,'GpgFrontend::GpgTOFUInfo']]], + ['getsingletonstorage_1031',['GetSingletonStorage',['../classGpgFrontend_1_1SingletonStorageCollection.html#a6f933390c54b7f55d5ffb4624074725f',1,'GpgFrontend::SingletonStorageCollection']]], + ['getsizechangestep_1032',['GetSizeChangeStep',['../classGpgFrontend_1_1GenKeyInfo.html#ac211a7a615805ae97ff284b46abfeab7',1,'GpgFrontend::GenKeyInfo']]], + ['getstandalonedatabasedir_1033',['GetStandaloneDatabaseDir',['../classGpgFrontend_1_1GlobalSettingStation.html#af484ca46c5df831a9dd76f3a88d66332',1,'GpgFrontend::GlobalSettingStation']]], + ['getstandalonegpgbindir_1034',['GetStandaloneGpgBinDir',['../classGpgFrontend_1_1GlobalSettingStation.html#aa93b21af9ac6649d5749c83c809f5b00',1,'GpgFrontend::GlobalSettingStation']]], + ['getstatus_1035',['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_1036',['GetSubKeys',['../classGpgFrontend_1_1GpgKey.html#a746699842f6c49687af0487a8b3b163d',1,'GpgFrontend::GpgKey']]], + ['getsuggestmaxkeysize_1037',['GetSuggestMaxKeySize',['../classGpgFrontend_1_1GenKeyInfo.html#ae461a553176ad1ab0c1121ea6de6c8c2',1,'GpgFrontend::GenKeyInfo']]], + ['getsuggestminkeysize_1038',['GetSuggestMinKeySize',['../classGpgFrontend_1_1GenKeyInfo.html#a0b1612421148b86919b7130ed148ca51',1,'GpgFrontend::GenKeyInfo']]], + ['getsummary_1039',['GetSummary',['../classGpgFrontend_1_1GpgSignature.html#a3b143f6e13b71663d81fc0f326aad17f',1,'GpgFrontend::GpgSignature']]], + ['getsupportedkeyalgo_1040',['GetSupportedKeyAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#ac0dbb2d89b1e5f9b272679ba3f24314e',1,'GpgFrontend::GenKeyInfo']]], + ['getsupportedkeyalgostandalone_1041',['GetSupportedKeyAlgoStandalone',['../classGpgFrontend_1_1GenKeyInfo.html#afb8315b6612c64b3921b72df98ebcc74',1,'GpgFrontend::GenKeyInfo']]], + ['getsupportedsubkeyalgo_1042',['GetSupportedSubkeyAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#a168d6fe5252812f5984ba6d8046c7741',1,'GpgFrontend::GenKeyInfo']]], + ['getsupportedsubkeyalgostandalone_1043',['GetSupportedSubkeyAlgoStandalone',['../classGpgFrontend_1_1GenKeyInfo.html#a6819b0ca3ef7712b85ae320030cde023',1,'GpgFrontend::GenKeyInfo']]], + ['gettabidstosave_1044',['GetTabIdsToSave',['../classGpgFrontend_1_1UI_1_1QuitDialog.html#aec364c38056b6d92c172f8cdfb5f8e82',1,'GpgFrontend::UI::QuitDialog']]], + ['gettempcachevalue_1045',['GetTempCacheValue',['../classGpgFrontend_1_1CoreCommonUtil.html#a7689d3abb54a1cef6a826fc944d9dec7',1,'GpgFrontend::CoreCommonUtil']]], + ['gettextpage_1046',['GetTextPage',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a6218e6e12bdba0228e4ab4276f7fed7a',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['gettofuinfos_1047',['GetTofuInfos',['../classGpgFrontend_1_1GpgUID.html#a2a36376484f7c1a4a19377d24e47a0b2',1,'GpgFrontend::GpgUID']]], + ['getuid_1048',['GetUID',['../classGpgFrontend_1_1GpgKeySignature.html#a95254ea2c00829b9dc87adc4a317cde5',1,'GpgFrontend::GpgKeySignature::GetUID()'],['../classGpgFrontend_1_1GpgUID.html#a467897d43a18b0cadd2e2e44384f6cdd',1,'GpgFrontend::GpgUID::GetUID()']]], + ['getuids_1049',['GetUIDs',['../classGpgFrontend_1_1GpgKey.html#ac8b13b45e487cdc423b78d3017897f99',1,'GpgFrontend::GpgKey']]], + ['getuisettings_1050',['GetUISettings',['../classGpgFrontend_1_1GlobalSettingStation.html#a14433405831283cd95091d741614d03b',1,'GpgFrontend::GlobalSettingStation']]], + ['getuserid_1051',['GetUserid',['../classGpgFrontend_1_1GenKeyInfo.html#a4ee4a0659e76376d9bfc527c334392e1',1,'GpgFrontend::GenKeyInfo']]], + ['getuuid_1052',['GetUUID',['../classGpgFrontend_1_1Thread_1_1Task.html#a50b91d27874af31ef13c493b00824ccf',1,'GpgFrontend::Thread::Task']]], + ['getvalidity_1053',['GetValidity',['../classGpgFrontend_1_1GpgSignature.html#a09cb6b465e85dffcf7867e70a276e9ad',1,'GpgFrontend::GpgSignature::GetValidity()'],['../classGpgFrontend_1_1GpgTOFUInfo.html#a8770062c9e0c3875083d2c92ebe8ccb0',1,'GpgFrontend::GpgTOFUInfo::GetValidity()']]], + ['globalsettingstation_1054',['GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html#abdc6dda369d4214e43ffa2930f7386b0',1,'GpgFrontend::GlobalSettingStation']]], + ['gnupgtab_1055',['GnupgTab',['../classGpgFrontend_1_1UI_1_1GnupgTab.html#ab9d9e8af4494659f13b87804e7318a79',1,'GpgFrontend::UI::GnupgTab']]], + ['good_1056',['good',['../classGpgFrontend_1_1GpgContext.html#a73c505a2f3d39d1638dc4d9a3e13a913',1,'GpgFrontend::GpgContext']]], + ['gpgadvancedoperator_1057',['GpgAdvancedOperator',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a9233156767f1d45272b95decd18241e3',1,'GpgFrontend::GpgAdvancedOperator']]], + ['gpgbasicoperator_1058',['GpgBasicOperator',['../classGpgFrontend_1_1GpgBasicOperator.html#a139be86330f88e5f833aa24263a3b2ae',1,'GpgFrontend::GpgBasicOperator']]], + ['gpgcommandexecutor_1059',['GpgCommandExecutor',['../classGpgFrontend_1_1GpgCommandExecutor.html#a94240f423464600938bfcafa2b186c38',1,'GpgFrontend::GpgCommandExecutor']]], + ['gpgcontext_1060',['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_1061',['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_1062',['GpgDecryptResultAnalyse',['../classGpgFrontend_1_1GpgDecryptResultAnalyse.html#a442438ae58cdd7220f0e4b0792e5a372',1,'GpgFrontend::GpgDecryptResultAnalyse']]], + ['gpgencryptresultanalyse_1063',['GpgEncryptResultAnalyse',['../classGpgFrontend_1_1GpgEncryptResultAnalyse.html#a0801e32c8709da373f6715bc994a7747',1,'GpgFrontend::GpgEncryptResultAnalyse']]], + ['gpgfileopera_1064',['GpgFileOpera',['../classGpgFrontend_1_1GpgFileOpera.html#aa81da3d72c4fbc57e7138bfec7731152',1,'GpgFrontend::GpgFileOpera']]], + ['gpgfrontendapplication_1065',['GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#ac0290f06e08f2714f9727bb578df1298',1,'GpgFrontend::UI::GpgFrontendApplication']]], + ['gpgimportinformation_1066',['GpgImportInformation',['../classGpgFrontend_1_1GpgImportInformation.html#ab282d4f701403cd68eb02d1aad30be56',1,'GpgFrontend::GpgImportInformation']]], + ['gpgkey_1067',['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_1068',['GpgKeyGetter',['../classGpgFrontend_1_1GpgKeyGetter.html#a8eeee9f6dd74dc24c24794ce63c62285',1,'GpgFrontend::GpgKeyGetter']]], + ['gpgkeyimportexporter_1069',['GpgKeyImportExporter',['../classGpgFrontend_1_1GpgKeyImportExporter.html#a0eede7c782d17b32d6c1f30cd8496561',1,'GpgFrontend::GpgKeyImportExporter']]], + ['gpgkeymanager_1070',['GpgKeyManager',['../classGpgFrontend_1_1GpgKeyManager.html#a210b717fd8ee63b064d77f32b0df4c5d',1,'GpgFrontend::GpgKeyManager']]], + ['gpgkeyopera_1071',['GpgKeyOpera',['../classGpgFrontend_1_1GpgKeyOpera.html#a01d6a920156a38a34c57d9c49c361079',1,'GpgFrontend::GpgKeyOpera']]], + ['gpgkeysignature_1072',['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_1073',['GpgResultAnalyse',['../classGpgFrontend_1_1GpgResultAnalyse.html#aa3c9bdf1ea4c87476010ef32fd2fb426',1,'GpgFrontend::GpgResultAnalyse']]], + ['gpgsignature_1074',['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_1075',['GpgSignResultAnalyse',['../classGpgFrontend_1_1GpgSignResultAnalyse.html#a3ddd2d52ad91fdf7f4c8740312570c8e',1,'GpgFrontend::GpgSignResultAnalyse']]], + ['gpgsubkey_1076',['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_1077',['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_1078',['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_1079',['GpgUIDOperator',['../classGpgFrontend_1_1GpgUIDOperator.html#ab74a830c858ab9ff135375743393a7c7',1,'GpgFrontend::GpgUIDOperator']]], + ['gpgverifyresultanalyse_1080',['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 cdc8c071..43026806 100644 --- a/docs/html/search/functions_8.js +++ b/docs/html/search/functions_8.js @@ -1,4 +1,4 @@ var searchData= [ - ['helppage_1053',['HelpPage',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a1be8f5b79fef3d1d62ff4620b8535006',1,'GpgFrontend::UI::HelpPage']]] + ['helppage_1081',['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 73e34fe3..9b6f546f 100644 --- a/docs/html/search/functions_9.js +++ b/docs/html/search/functions_9.js @@ -1,50 +1,49 @@ var searchData= [ - ['import_5fkey_5ffrom_5fkeyserver_1054',['import_key_from_keyserver',['../namespaceGpgFrontend_1_1UI.html#aa346bd199cecc61b15ef406728b58770',1,'GpgFrontend::UI']]], - ['import_5fkeys_1055',['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_1056',['import_unknown_key_from_keyserver',['../namespaceGpgFrontend_1_1UI.html#a9ab218dde057182cb4911c4792acd925',1,'GpgFrontend::UI']]], - ['importkey_1057',['ImportKey',['../classGpgFrontend_1_1GpgKeyImportExporter.html#ab7a9be5283047695cd47562775adf79d',1,'GpgFrontend::GpgKeyImportExporter']]], - ['importkeypackage_1058',['ImportKeyPackage',['../classGpgFrontend_1_1KeyPackageOperator.html#a89538b180a42eb7d6ae53583fe10ee07',1,'GpgFrontend::KeyPackageOperator']]], - ['infoboardwidget_1059',['InfoBoardWidget',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#adeef521a8838bf2a1692c25d9b108010',1,'GpgFrontend::UI::InfoBoardWidget']]], - ['infotab_1060',['InfoTab',['../classGpgFrontend_1_1UI_1_1InfoTab.html#a99d8b059ee28ea257981892e0b35d4cc',1,'GpgFrontend::UI::InfoTab']]], - ['infovalid_1061',['InfoValid',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#aec79eefdc19c90e046cb48bca347ff1c',1,'GpgFrontend::UI::SoftwareVersion']]], - ['init_1062',['Init',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a08ba4521f68c488b23b651e201011759',1,'GpgFrontend::UI::MainWindow']]], - ['init_5fapp_5fsecure_5fkey_1063',['init_app_secure_key',['../classGpgFrontend_1_1DataObjectOperator.html#a6b357780482f0e0c021ad55a81eb37cf',1,'GpgFrontend::DataObjectOperator']]], - ['init_5fctx_1064',['init_ctx',['../classGpgFrontend_1_1GpgContext.html#a3377fd6a325aafc18c119431f602db9b',1,'GpgFrontend::GpgContext']]], - ['init_5flocale_1065',['init_locale',['../namespaceGpgFrontend_1_1UI.html#a157c74e50283da9ed554cf7bf90afbee',1,'GpgFrontend::UI']]], - ['initgpgfrontendui_1066',['InitGpgFrontendUI',['../namespaceGpgFrontend_1_1UI.html#ab0311557c1d7bde9c56cbca85fefa6ad',1,'GpgFrontend::UI']]], - ['initloggingsystem_1067',['InitLoggingSystem',['../namespaceGpgFrontend.html#aff3e12940da2d43ce7aedeb795643434',1,'GpgFrontend']]], - ['intropage_1068',['IntroPage',['../classGpgFrontend_1_1UI_1_1IntroPage.html#aed4220a7372b192ee4e8bc5024db922d',1,'GpgFrontend::UI::IntroPage']]], - ['isallowauthentication_1069',['IsAllowAuthentication',['../classGpgFrontend_1_1GenKeyInfo.html#aabdf981c65a0efde1e8905441b9b9c87',1,'GpgFrontend::GenKeyInfo']]], - ['isallowcertification_1070',['IsAllowCertification',['../classGpgFrontend_1_1GenKeyInfo.html#ad47ceeb1ccfa8862843034e51b4d8be7',1,'GpgFrontend::GenKeyInfo']]], - ['isallowchangeauthentication_1071',['IsAllowChangeAuthentication',['../classGpgFrontend_1_1GenKeyInfo.html#aaf8ab7c6564a2836837a537111d6f5b4',1,'GpgFrontend::GenKeyInfo']]], - ['isallowchangecertification_1072',['IsAllowChangeCertification',['../classGpgFrontend_1_1GenKeyInfo.html#adbcddd0fa0a273f9b77fe1297633dabc',1,'GpgFrontend::GenKeyInfo']]], - ['isallowchangeencryption_1073',['IsAllowChangeEncryption',['../classGpgFrontend_1_1GenKeyInfo.html#ad04a906300bea028c6fb6b1b2da1d149',1,'GpgFrontend::GenKeyInfo']]], - ['isallowchangesigning_1074',['IsAllowChangeSigning',['../classGpgFrontend_1_1GenKeyInfo.html#a06f95a8d26da79bcbe7d51e266879a94',1,'GpgFrontend::GenKeyInfo']]], - ['isallowencryption_1075',['IsAllowEncryption',['../classGpgFrontend_1_1GenKeyInfo.html#a28ed8a65243e5bc69403305752c2cdc9',1,'GpgFrontend::GenKeyInfo']]], - ['isallownopassphrase_1076',['IsAllowNoPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#af6a79124a4571ff7f37c1c5e6c1a9415',1,'GpgFrontend::GenKeyInfo']]], - ['isallowsigning_1077',['IsAllowSigning',['../classGpgFrontend_1_1GenKeyInfo.html#ad972292c408cb83c08e739327795a5f0',1,'GpgFrontend::GenKeyInfo']]], - ['iscardkey_1078',['IsCardKey',['../classGpgFrontend_1_1GpgSubKey.html#ad818aa66e47d6686eb8ff253b3c21814',1,'GpgFrontend::GpgSubKey']]], - ['isdisabled_1079',['IsDisabled',['../classGpgFrontend_1_1GpgSubKey.html#a75abb60a2130efc7fad8ab8fb3157042',1,'GpgFrontend::GpgSubKey::IsDisabled()'],['../classGpgFrontend_1_1GpgKey.html#a7eaf1e722d8a59f6a86d8e732217d89c',1,'GpgFrontend::GpgKey::IsDisabled()']]], - ['isdiscarded_1080',['IsDiscarded',['../classGpgFrontend_1_1UI_1_1QuitDialog.html#a4c4bc06d1d168f01569ed83dcfd50d55',1,'GpgFrontend::UI::QuitDialog']]], - ['isexpired_1081',['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_1082',['IsExportable',['../classGpgFrontend_1_1GpgKeySignature.html#a19fc1ca3733b576e12628e333e2c449e',1,'GpgFrontend::GpgKeySignature']]], - ['isgood_1083',['IsGood',['../classGpgFrontend_1_1GpgKey.html#a59e76d40f01e765f0544e5c6a2851be6',1,'GpgFrontend::GpgKey']]], - ['ishasactualauthenticationcapability_1084',['IsHasActualAuthenticationCapability',['../classGpgFrontend_1_1GpgKey.html#a371a24c4e9d3b99a36f76ff8c7f2d0e6',1,'GpgFrontend::GpgKey']]], - ['ishasactualcertificationcapability_1085',['IsHasActualCertificationCapability',['../classGpgFrontend_1_1GpgKey.html#ae370e41a7ea7307fbf4d28e0f2a67e0c',1,'GpgFrontend::GpgKey']]], - ['ishasactualencryptioncapability_1086',['IsHasActualEncryptionCapability',['../classGpgFrontend_1_1GpgKey.html#aaa66d803456152fed9ba4cf5bce7b99d',1,'GpgFrontend::GpgKey']]], - ['ishasactualsigningcapability_1087',['IsHasActualSigningCapability',['../classGpgFrontend_1_1GpgKey.html#aefa0a44adb1b7c49553a85b545fdffe1',1,'GpgFrontend::GpgKey']]], - ['ishasauthenticationcapability_1088',['IsHasAuthenticationCapability',['../classGpgFrontend_1_1GpgKey.html#afdffba6dfb6009a0b320623df7a26be0',1,'GpgFrontend::GpgKey::IsHasAuthenticationCapability()'],['../classGpgFrontend_1_1GpgSubKey.html#a04d9df643cd08200cd742dc243be6cd6',1,'GpgFrontend::GpgSubKey::IsHasAuthenticationCapability()']]], - ['ishascardkey_1089',['IsHasCardKey',['../classGpgFrontend_1_1GpgKey.html#afedc843415bd4b59687e975006e470ed',1,'GpgFrontend::GpgKey']]], - ['ishascertificationcapability_1090',['IsHasCertificationCapability',['../classGpgFrontend_1_1GpgSubKey.html#a56938360f873949aa9ba3dbdaab519d1',1,'GpgFrontend::GpgSubKey::IsHasCertificationCapability()'],['../classGpgFrontend_1_1GpgKey.html#a2d28e72cfb741deeadfe02ff456fb490',1,'GpgFrontend::GpgKey::IsHasCertificationCapability()']]], - ['ishasencryptioncapability_1091',['IsHasEncryptionCapability',['../classGpgFrontend_1_1GpgSubKey.html#ab67395a986184cb9b20f3dc178fc52be',1,'GpgFrontend::GpgSubKey::IsHasEncryptionCapability()'],['../classGpgFrontend_1_1GpgKey.html#a60b342ca6e1062d4489d8ba8f7a5a605',1,'GpgFrontend::GpgKey::IsHasEncryptionCapability() const']]], - ['ishasmasterkey_1092',['IsHasMasterKey',['../classGpgFrontend_1_1GpgKey.html#aadac1b776764ee9d0ca4f8bb9f9e0741',1,'GpgFrontend::GpgKey']]], - ['ishassigningcapability_1093',['IsHasSigningCapability',['../classGpgFrontend_1_1GpgSubKey.html#ab9208165c74b93fa8c5b7a06cd808f56',1,'GpgFrontend::GpgSubKey::IsHasSigningCapability()'],['../classGpgFrontend_1_1GpgKey.html#a635bbf8f08268cfdac1bc120981df877',1,'GpgFrontend::GpgKey::IsHasSigningCapability()']]], - ['isinvalid_1094',['IsInvalid',['../classGpgFrontend_1_1GpgKeySignature.html#a1725474a1c61c0a3d724dc2f999cb24a',1,'GpgFrontend::GpgKeySignature']]], - ['isnonexpired_1095',['IsNonExpired',['../classGpgFrontend_1_1GenKeyInfo.html#aeef7697c91b5b5998088979e09332380',1,'GpgFrontend::GenKeyInfo']]], - ['isnopassphrase_1096',['IsNoPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#a848181796a99bec8d32dc5eac240ee01',1,'GpgFrontend::GenKeyInfo']]], - ['isprivatekey_1097',['IsPrivateKey',['../classGpgFrontend_1_1GpgKey.html#a888c0263f04bdd52967e092b9c73eb6d',1,'GpgFrontend::GpgKey::IsPrivateKey()'],['../classGpgFrontend_1_1GpgSubKey.html#accb86b50755698b3e1e7fdfe06f44e84',1,'GpgFrontend::GpgSubKey::IsPrivateKey()']]], - ['isrevoked_1098',['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_1099',['IsSecretKey',['../classGpgFrontend_1_1GpgSubKey.html#a8fcbeae2ef3ad73a5aedee19f6de3e60',1,'GpgFrontend::GpgSubKey']]], - ['issubkey_1100',['IsSubKey',['../classGpgFrontend_1_1GenKeyInfo.html#a40a42ad975499566de124296c19e6c55',1,'GpgFrontend::GenKeyInfo']]] + ['import_5fkey_5ffrom_5fkeyserver_1082',['import_key_from_keyserver',['../namespaceGpgFrontend_1_1UI.html#aa346bd199cecc61b15ef406728b58770',1,'GpgFrontend::UI']]], + ['import_5fkeys_1083',['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_1084',['import_unknown_key_from_keyserver',['../namespaceGpgFrontend_1_1UI.html#a9ab218dde057182cb4911c4792acd925',1,'GpgFrontend::UI']]], + ['importkey_1085',['ImportKey',['../classGpgFrontend_1_1GpgKeyImportExporter.html#ab7a9be5283047695cd47562775adf79d',1,'GpgFrontend::GpgKeyImportExporter']]], + ['importkeypackage_1086',['ImportKeyPackage',['../classGpgFrontend_1_1KeyPackageOperator.html#a89538b180a42eb7d6ae53583fe10ee07',1,'GpgFrontend::KeyPackageOperator']]], + ['infoboardwidget_1087',['InfoBoardWidget',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#adeef521a8838bf2a1692c25d9b108010',1,'GpgFrontend::UI::InfoBoardWidget']]], + ['infotab_1088',['InfoTab',['../classGpgFrontend_1_1UI_1_1InfoTab.html#a99d8b059ee28ea257981892e0b35d4cc',1,'GpgFrontend::UI::InfoTab']]], + ['infovalid_1089',['InfoValid',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#aec79eefdc19c90e046cb48bca347ff1c',1,'GpgFrontend::UI::SoftwareVersion']]], + ['init_1090',['Init',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a08ba4521f68c488b23b651e201011759',1,'GpgFrontend::UI::MainWindow']]], + ['init_5fapp_5fsecure_5fkey_1091',['init_app_secure_key',['../classGpgFrontend_1_1DataObjectOperator.html#a6b357780482f0e0c021ad55a81eb37cf',1,'GpgFrontend::DataObjectOperator']]], + ['init_5flocale_1092',['init_locale',['../namespaceGpgFrontend_1_1UI.html#a157c74e50283da9ed554cf7bf90afbee',1,'GpgFrontend::UI']]], + ['initgpgfrontendui_1093',['InitGpgFrontendUI',['../namespaceGpgFrontend_1_1UI.html#ab0311557c1d7bde9c56cbca85fefa6ad',1,'GpgFrontend::UI']]], + ['initloggingsystem_1094',['InitLoggingSystem',['../namespaceGpgFrontend.html#aff3e12940da2d43ce7aedeb795643434',1,'GpgFrontend']]], + ['intropage_1095',['IntroPage',['../classGpgFrontend_1_1UI_1_1IntroPage.html#aed4220a7372b192ee4e8bc5024db922d',1,'GpgFrontend::UI::IntroPage']]], + ['isallowauthentication_1096',['IsAllowAuthentication',['../classGpgFrontend_1_1GenKeyInfo.html#aabdf981c65a0efde1e8905441b9b9c87',1,'GpgFrontend::GenKeyInfo']]], + ['isallowcertification_1097',['IsAllowCertification',['../classGpgFrontend_1_1GenKeyInfo.html#ad47ceeb1ccfa8862843034e51b4d8be7',1,'GpgFrontend::GenKeyInfo']]], + ['isallowchangeauthentication_1098',['IsAllowChangeAuthentication',['../classGpgFrontend_1_1GenKeyInfo.html#aaf8ab7c6564a2836837a537111d6f5b4',1,'GpgFrontend::GenKeyInfo']]], + ['isallowchangecertification_1099',['IsAllowChangeCertification',['../classGpgFrontend_1_1GenKeyInfo.html#adbcddd0fa0a273f9b77fe1297633dabc',1,'GpgFrontend::GenKeyInfo']]], + ['isallowchangeencryption_1100',['IsAllowChangeEncryption',['../classGpgFrontend_1_1GenKeyInfo.html#ad04a906300bea028c6fb6b1b2da1d149',1,'GpgFrontend::GenKeyInfo']]], + ['isallowchangesigning_1101',['IsAllowChangeSigning',['../classGpgFrontend_1_1GenKeyInfo.html#a06f95a8d26da79bcbe7d51e266879a94',1,'GpgFrontend::GenKeyInfo']]], + ['isallowencryption_1102',['IsAllowEncryption',['../classGpgFrontend_1_1GenKeyInfo.html#a28ed8a65243e5bc69403305752c2cdc9',1,'GpgFrontend::GenKeyInfo']]], + ['isallownopassphrase_1103',['IsAllowNoPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#af6a79124a4571ff7f37c1c5e6c1a9415',1,'GpgFrontend::GenKeyInfo']]], + ['isallowsigning_1104',['IsAllowSigning',['../classGpgFrontend_1_1GenKeyInfo.html#ad972292c408cb83c08e739327795a5f0',1,'GpgFrontend::GenKeyInfo']]], + ['iscardkey_1105',['IsCardKey',['../classGpgFrontend_1_1GpgSubKey.html#ad818aa66e47d6686eb8ff253b3c21814',1,'GpgFrontend::GpgSubKey']]], + ['isdisabled_1106',['IsDisabled',['../classGpgFrontend_1_1GpgSubKey.html#a75abb60a2130efc7fad8ab8fb3157042',1,'GpgFrontend::GpgSubKey::IsDisabled()'],['../classGpgFrontend_1_1GpgKey.html#a7eaf1e722d8a59f6a86d8e732217d89c',1,'GpgFrontend::GpgKey::IsDisabled()']]], + ['isdiscarded_1107',['IsDiscarded',['../classGpgFrontend_1_1UI_1_1QuitDialog.html#a4c4bc06d1d168f01569ed83dcfd50d55',1,'GpgFrontend::UI::QuitDialog']]], + ['isexpired_1108',['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_1109',['IsExportable',['../classGpgFrontend_1_1GpgKeySignature.html#a19fc1ca3733b576e12628e333e2c449e',1,'GpgFrontend::GpgKeySignature']]], + ['isgood_1110',['IsGood',['../classGpgFrontend_1_1GpgKey.html#a59e76d40f01e765f0544e5c6a2851be6',1,'GpgFrontend::GpgKey']]], + ['ishasactualauthenticationcapability_1111',['IsHasActualAuthenticationCapability',['../classGpgFrontend_1_1GpgKey.html#a371a24c4e9d3b99a36f76ff8c7f2d0e6',1,'GpgFrontend::GpgKey']]], + ['ishasactualcertificationcapability_1112',['IsHasActualCertificationCapability',['../classGpgFrontend_1_1GpgKey.html#ae370e41a7ea7307fbf4d28e0f2a67e0c',1,'GpgFrontend::GpgKey']]], + ['ishasactualencryptioncapability_1113',['IsHasActualEncryptionCapability',['../classGpgFrontend_1_1GpgKey.html#aaa66d803456152fed9ba4cf5bce7b99d',1,'GpgFrontend::GpgKey']]], + ['ishasactualsigningcapability_1114',['IsHasActualSigningCapability',['../classGpgFrontend_1_1GpgKey.html#aefa0a44adb1b7c49553a85b545fdffe1',1,'GpgFrontend::GpgKey']]], + ['ishasauthenticationcapability_1115',['IsHasAuthenticationCapability',['../classGpgFrontend_1_1GpgKey.html#afdffba6dfb6009a0b320623df7a26be0',1,'GpgFrontend::GpgKey::IsHasAuthenticationCapability()'],['../classGpgFrontend_1_1GpgSubKey.html#a04d9df643cd08200cd742dc243be6cd6',1,'GpgFrontend::GpgSubKey::IsHasAuthenticationCapability()']]], + ['ishascardkey_1116',['IsHasCardKey',['../classGpgFrontend_1_1GpgKey.html#afedc843415bd4b59687e975006e470ed',1,'GpgFrontend::GpgKey']]], + ['ishascertificationcapability_1117',['IsHasCertificationCapability',['../classGpgFrontend_1_1GpgSubKey.html#a56938360f873949aa9ba3dbdaab519d1',1,'GpgFrontend::GpgSubKey::IsHasCertificationCapability()'],['../classGpgFrontend_1_1GpgKey.html#a2d28e72cfb741deeadfe02ff456fb490',1,'GpgFrontend::GpgKey::IsHasCertificationCapability()']]], + ['ishasencryptioncapability_1118',['IsHasEncryptionCapability',['../classGpgFrontend_1_1GpgSubKey.html#ab67395a986184cb9b20f3dc178fc52be',1,'GpgFrontend::GpgSubKey::IsHasEncryptionCapability()'],['../classGpgFrontend_1_1GpgKey.html#a60b342ca6e1062d4489d8ba8f7a5a605',1,'GpgFrontend::GpgKey::IsHasEncryptionCapability() const']]], + ['ishasmasterkey_1119',['IsHasMasterKey',['../classGpgFrontend_1_1GpgKey.html#aadac1b776764ee9d0ca4f8bb9f9e0741',1,'GpgFrontend::GpgKey']]], + ['ishassigningcapability_1120',['IsHasSigningCapability',['../classGpgFrontend_1_1GpgSubKey.html#ab9208165c74b93fa8c5b7a06cd808f56',1,'GpgFrontend::GpgSubKey::IsHasSigningCapability()'],['../classGpgFrontend_1_1GpgKey.html#a635bbf8f08268cfdac1bc120981df877',1,'GpgFrontend::GpgKey::IsHasSigningCapability()']]], + ['isinvalid_1121',['IsInvalid',['../classGpgFrontend_1_1GpgKeySignature.html#a1725474a1c61c0a3d724dc2f999cb24a',1,'GpgFrontend::GpgKeySignature']]], + ['isnonexpired_1122',['IsNonExpired',['../classGpgFrontend_1_1GenKeyInfo.html#aeef7697c91b5b5998088979e09332380',1,'GpgFrontend::GenKeyInfo']]], + ['isnopassphrase_1123',['IsNoPassPhrase',['../classGpgFrontend_1_1GenKeyInfo.html#a848181796a99bec8d32dc5eac240ee01',1,'GpgFrontend::GenKeyInfo']]], + ['isprivatekey_1124',['IsPrivateKey',['../classGpgFrontend_1_1GpgKey.html#a888c0263f04bdd52967e092b9c73eb6d',1,'GpgFrontend::GpgKey::IsPrivateKey()'],['../classGpgFrontend_1_1GpgSubKey.html#accb86b50755698b3e1e7fdfe06f44e84',1,'GpgFrontend::GpgSubKey::IsPrivateKey()']]], + ['isrevoked_1125',['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_1126',['IsSecretKey',['../classGpgFrontend_1_1GpgSubKey.html#a8fcbeae2ef3ad73a5aedee19f6de3e60',1,'GpgFrontend::GpgSubKey']]], + ['issubkey_1127',['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 66c53584..7c913bfc 100644 --- a/docs/html/search/functions_a.js +++ b/docs/html/search/functions_a.js @@ -1,22 +1,22 @@ var searchData= [ - ['keygendialog_1101',['KeyGenDialog',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3aef8d2bb8e0d36842532726a6796ab9',1,'GpgFrontend::UI::KeyGenDialog']]], - ['keygenpage_1102',['KeyGenPage',['../classGpgFrontend_1_1UI_1_1KeyGenPage.html#a0eb5dad522c597dcd101c02f496e7e70',1,'GpgFrontend::UI::KeyGenPage']]], - ['keyimportdetaildialog_1103',['KeyImportDetailDialog',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a0177cdaa19d1f83c9e519039aa7a8ce1',1,'GpgFrontend::UI::KeyImportDetailDialog']]], - ['keylist_1104',['KeyList',['../classGpgFrontend_1_1UI_1_1KeyList.html#a7c9d5cacdb42e1fbda5d3cc96e861418',1,'GpgFrontend::UI::KeyList']]], - ['keymgmt_1105',['KeyMgmt',['../classGpgFrontend_1_1UI_1_1KeyMgmt.html#aefc27b57830cf14a85c2225664f89f64',1,'GpgFrontend::UI::KeyMgmt']]], - ['keynewuiddialog_1106',['KeyNewUIDDialog',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a7226b139dc7a491e8ba780135654be27',1,'GpgFrontend::UI::KeyNewUIDDialog']]], - ['keypairdetailtab_1107',['KeyPairDetailTab',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a76efd8f8d623813be1a329ad01972444',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['keypairoperatab_1108',['KeyPairOperaTab',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#aad4e209d7b4eb0ac6623b2f12ce5ecc5',1,'GpgFrontend::UI::KeyPairOperaTab']]], - ['keypairsubkeytab_1109',['KeyPairSubkeyTab',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a93abe5c0467c7c4a29e0c45437a10732',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], - ['keypairuidtab_1110',['KeyPairUIDTab',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#af18c4f08a127d919a316c7e27ba338d3',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['keypressevent_1111',['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_1112',['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_1113',['KeyServerImportTask',['../classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a1640363b4b27cb3d256181ddc6cdc857',1,'GpgFrontend::UI::KeyServerImportTask']]], - ['keyserversearchtask_1114',['KeyServerSearchTask',['../classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#a168e21bdfa72f43f91187ab29ece5efa',1,'GpgFrontend::UI::KeyServerSearchTask']]], - ['keyservertab_1115',['KeyserverTab',['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#aa3d3561d3bdf95de6486b2caa752616c',1,'GpgFrontend::UI::KeyserverTab']]], - ['keysetexpiredatedialog_1116',['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_1117',['KeyTable',['../structGpgFrontend_1_1UI_1_1KeyTable.html#a88606ba6954d60244faf38de419bfc47',1,'GpgFrontend::UI::KeyTable']]], - ['keyuidsigndialog_1118',['KeyUIDSignDialog',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#aaa06ce342178802e76119bec6b26cc55',1,'GpgFrontend::UI::KeyUIDSignDialog']]], - ['keyuploaddialog_1119',['KeyUploadDialog',['../classGpgFrontend_1_1UI_1_1KeyUploadDialog.html#a51f63e30f26f7923def91519d347c0cf',1,'GpgFrontend::UI::KeyUploadDialog']]] + ['keygendialog_1128',['KeyGenDialog',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3aef8d2bb8e0d36842532726a6796ab9',1,'GpgFrontend::UI::KeyGenDialog']]], + ['keygenpage_1129',['KeyGenPage',['../classGpgFrontend_1_1UI_1_1KeyGenPage.html#a0eb5dad522c597dcd101c02f496e7e70',1,'GpgFrontend::UI::KeyGenPage']]], + ['keyimportdetaildialog_1130',['KeyImportDetailDialog',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a0177cdaa19d1f83c9e519039aa7a8ce1',1,'GpgFrontend::UI::KeyImportDetailDialog']]], + ['keylist_1131',['KeyList',['../classGpgFrontend_1_1UI_1_1KeyList.html#a7c9d5cacdb42e1fbda5d3cc96e861418',1,'GpgFrontend::UI::KeyList']]], + ['keymgmt_1132',['KeyMgmt',['../classGpgFrontend_1_1UI_1_1KeyMgmt.html#aefc27b57830cf14a85c2225664f89f64',1,'GpgFrontend::UI::KeyMgmt']]], + ['keynewuiddialog_1133',['KeyNewUIDDialog',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a7226b139dc7a491e8ba780135654be27',1,'GpgFrontend::UI::KeyNewUIDDialog']]], + ['keypairdetailtab_1134',['KeyPairDetailTab',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a76efd8f8d623813be1a329ad01972444',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['keypairoperatab_1135',['KeyPairOperaTab',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#aad4e209d7b4eb0ac6623b2f12ce5ecc5',1,'GpgFrontend::UI::KeyPairOperaTab']]], + ['keypairsubkeytab_1136',['KeyPairSubkeyTab',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a93abe5c0467c7c4a29e0c45437a10732',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], + ['keypairuidtab_1137',['KeyPairUIDTab',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#af18c4f08a127d919a316c7e27ba338d3',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['keypressevent_1138',['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_1139',['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_1140',['KeyServerImportTask',['../classGpgFrontend_1_1UI_1_1KeyServerImportTask.html#a1640363b4b27cb3d256181ddc6cdc857',1,'GpgFrontend::UI::KeyServerImportTask']]], + ['keyserversearchtask_1141',['KeyServerSearchTask',['../classGpgFrontend_1_1UI_1_1KeyServerSearchTask.html#a168e21bdfa72f43f91187ab29ece5efa',1,'GpgFrontend::UI::KeyServerSearchTask']]], + ['keyservertab_1142',['KeyserverTab',['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#aa3d3561d3bdf95de6486b2caa752616c',1,'GpgFrontend::UI::KeyserverTab']]], + ['keysetexpiredatedialog_1143',['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_1144',['KeyTable',['../structGpgFrontend_1_1UI_1_1KeyTable.html#a88606ba6954d60244faf38de419bfc47',1,'GpgFrontend::UI::KeyTable']]], + ['keyuidsigndialog_1145',['KeyUIDSignDialog',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#aaa06ce342178802e76119bec6b26cc55',1,'GpgFrontend::UI::KeyUIDSignDialog']]], + ['keyuploaddialog_1146',['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 9fb0a278..1478ee17 100644 --- a/docs/html/search/functions_b.js +++ b/docs/html/search/functions_b.js @@ -1,7 +1,7 @@ var searchData= [ - ['listedkeyservertesttask_1120',['ListedKeyServerTestTask',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#ae25b5d59b53facc15648ab80ff19ed77',1,'GpgFrontend::UI::ListedKeyServerTestTask']]], - ['listlanguages_1121',['ListLanguages',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#acd22ac2fd91704551e5317e2c549ae26',1,'GpgFrontend::UI::SettingsDialog']]], - ['loadfile_1122',['LoadFile',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a72ed46454c833adb038c36d8d4322d18',1,'GpgFrontend::UI::TextEdit']]], - ['localized_5fhelp_1123',['localized_help',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a49fbde87f2ef385b44225acd6ffbc84f',1,'GpgFrontend::UI::HelpPage']]] + ['listedkeyservertesttask_1147',['ListedKeyServerTestTask',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#ae25b5d59b53facc15648ab80ff19ed77',1,'GpgFrontend::UI::ListedKeyServerTestTask']]], + ['listlanguages_1148',['ListLanguages',['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#acd22ac2fd91704551e5317e2c549ae26',1,'GpgFrontend::UI::SettingsDialog']]], + ['loadfile_1149',['LoadFile',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a72ed46454c833adb038c36d8d4322d18',1,'GpgFrontend::UI::TextEdit']]], + ['localized_5fhelp_1150',['localized_help',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a49fbde87f2ef385b44225acd6ffbc84f',1,'GpgFrontend::UI::HelpPage']]] ]; diff --git a/docs/html/search/functions_c.js b/docs/html/search/functions_c.js index bf1169eb..6df03692 100644 --- a/docs/html/search/functions_c.js +++ b/docs/html/search/functions_c.js @@ -1,8 +1,8 @@ var searchData= [ - ['markkeys_1124',['MarkKeys',['../classGpgFrontend_1_1UI_1_1KeyList.html#a31a4c067eed90830203862cb4adf951e',1,'GpgFrontend::UI::KeyList']]], - ['maybe_5fsave_5fcurrent_5ftab_1125',['maybe_save_current_tab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a8fad090a19479a9fe89432300cca2b6c',1,'GpgFrontend::UI::TextEdit']]], - ['maybesaveanytab_1126',['MaybeSaveAnyTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3c976a5494d06c2186d94e7cc8ebe457',1,'GpgFrontend::UI::TextEdit']]], - ['modifypassword_1127',['ModifyPassword',['../classGpgFrontend_1_1GpgKeyOpera.html#ab7e16d1f4cba23ea5b5b9f6009ce5ee2',1,'GpgFrontend::GpgKeyOpera']]], - ['modifytofupolicy_1128',['ModifyTOFUPolicy',['../classGpgFrontend_1_1GpgKeyOpera.html#a76a7f59701add8a59d8835919dad2000',1,'GpgFrontend::GpgKeyOpera']]] + ['markkeys_1151',['MarkKeys',['../classGpgFrontend_1_1UI_1_1KeyList.html#a31a4c067eed90830203862cb4adf951e',1,'GpgFrontend::UI::KeyList']]], + ['maybe_5fsave_5fcurrent_5ftab_1152',['maybe_save_current_tab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a8fad090a19479a9fe89432300cca2b6c',1,'GpgFrontend::UI::TextEdit']]], + ['maybesaveanytab_1153',['MaybeSaveAnyTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3c976a5494d06c2186d94e7cc8ebe457',1,'GpgFrontend::UI::TextEdit']]], + ['modifypassword_1154',['ModifyPassword',['../classGpgFrontend_1_1GpgKeyOpera.html#ab7e16d1f4cba23ea5b5b9f6009ce5ee2',1,'GpgFrontend::GpgKeyOpera']]], + ['modifytofupolicy_1155',['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 935f6898..6c51dd94 100644 --- a/docs/html/search/functions_d.js +++ b/docs/html/search/functions_d.js @@ -1,9 +1,10 @@ var searchData= [ - ['needupgrade_1129',['NeedUpgrade',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#abc311fd0e15da1a04b995587ca74e1a6',1,'GpgFrontend::UI::SoftwareVersion']]], - ['networktab_1130',['NetworkTab',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#a444d3630919c1f9c4db495a58acbb9a8',1,'GpgFrontend::UI::NetworkTab']]], - ['new_5fdefault_5fsettings_5fchannel_1131',['new_default_settings_channel',['../namespaceGpgFrontend.html#aafb9aa0ba1d03afa09085b1b8136c55f',1,'GpgFrontend']]], - ['nextid_1132',['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_1133',['notify',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a6f8ab335d89948c48cd634ab20ff9aa0',1,'GpgFrontend::UI::GpgFrontendApplication']]], - ['notifyfilesaved_1134',['NotifyFileSaved',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a29b3d63ba9590e775f42c779c76102e5',1,'GpgFrontend::UI::PlainTextEditorPage']]] + ['need_5fuser_5finput_5fpassphrase_1156',['need_user_input_passphrase',['../classGpgFrontend_1_1GpgContext.html#ac7c9b2212a77e7cede94d68243541b1b',1,'GpgFrontend::GpgContext']]], + ['needupgrade_1157',['NeedUpgrade',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#abc311fd0e15da1a04b995587ca74e1a6',1,'GpgFrontend::UI::SoftwareVersion']]], + ['networktab_1158',['NetworkTab',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#a444d3630919c1f9c4db495a58acbb9a8',1,'GpgFrontend::UI::NetworkTab']]], + ['new_5fdefault_5fsettings_5fchannel_1159',['new_default_settings_channel',['../namespaceGpgFrontend.html#aafb9aa0ba1d03afa09085b1b8136c55f',1,'GpgFrontend']]], + ['nextid_1160',['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_1161',['notify',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a6f8ab335d89948c48cd634ab20ff9aa0',1,'GpgFrontend::UI::GpgFrontendApplication']]], + ['notifyfilesaved_1162',['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 aff8dfbb..510d9feb 100644 --- a/docs/html/search/functions_e.js +++ b/docs/html/search/functions_e.js @@ -1,10 +1,10 @@ var searchData= [ - ['oncustomcontextmenu_1135',['onCustomContextMenu',['../classGpgFrontend_1_1UI_1_1FilePage.html#aa80dc1b74a0ec65d06e5dffaa21cc785',1,'GpgFrontend::UI::FilePage']]], - ['operator_20gpgme_5fctx_5ft_1136',['operator gpgme_ctx_t',['../classGpgFrontend_1_1GpgContext.html#a5b419175bd9927f3d449637db8ba6524',1,'GpgFrontend::GpgContext']]], - ['operator_20gpgme_5fdata_5ft_1137',['operator gpgme_data_t',['../classGpgFrontend_1_1GpgData.html#afca7a03bd71436c8b3c4f6e8c2acd700',1,'GpgFrontend::GpgData']]], - ['operator_20gpgme_5fkey_5ft_1138',['operator gpgme_key_t',['../classGpgFrontend_1_1GpgKey.html#a827962251cf47c41dbea56665ae4207b',1,'GpgFrontend::GpgKey']]], - ['operator_3c_3d_1139',['operator<=',['../classGpgFrontend_1_1GpgKey.html#adc22a349796af0ff5dd4499624b6d03d',1,'GpgFrontend::GpgKey']]], - ['operator_3d_1140',['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_1141',['operator==',['../classGpgFrontend_1_1GpgKey.html#a4f50b2f13b3a5dc7298ee9665e7a5367',1,'GpgFrontend::GpgKey::operator==()'],['../classGpgFrontend_1_1GpgSubKey.html#a1c88420ec4756f2e5bda1b76ff2f7c2d',1,'GpgFrontend::GpgSubKey::operator==()']]] + ['oncustomcontextmenu_1163',['onCustomContextMenu',['../classGpgFrontend_1_1UI_1_1FilePage.html#aa80dc1b74a0ec65d06e5dffaa21cc785',1,'GpgFrontend::UI::FilePage']]], + ['operator_20gpgme_5fctx_5ft_1164',['operator gpgme_ctx_t',['../classGpgFrontend_1_1GpgContext.html#a5b419175bd9927f3d449637db8ba6524',1,'GpgFrontend::GpgContext']]], + ['operator_20gpgme_5fdata_5ft_1165',['operator gpgme_data_t',['../classGpgFrontend_1_1GpgData.html#afca7a03bd71436c8b3c4f6e8c2acd700',1,'GpgFrontend::GpgData']]], + ['operator_20gpgme_5fkey_5ft_1166',['operator gpgme_key_t',['../classGpgFrontend_1_1GpgKey.html#a827962251cf47c41dbea56665ae4207b',1,'GpgFrontend::GpgKey']]], + ['operator_3c_3d_1167',['operator<=',['../classGpgFrontend_1_1GpgKey.html#adc22a349796af0ff5dd4499624b6d03d',1,'GpgFrontend::GpgKey']]], + ['operator_3d_1168',['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_1169',['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 6f8c7cc4..1ff51c4f 100644 --- a/docs/html/search/functions_f.js +++ b/docs/html/search/functions_f.js @@ -1,14 +1,16 @@ var searchData= [ - ['passphrasegenerator_1142',['PassphraseGenerator',['../classGpgFrontend_1_1PassphraseGenerator.html#ac82ef545a54468ad02253a61cc62e3cf',1,'GpgFrontend::PassphraseGenerator']]], - ['plaintexteditorpage_1143',['PlainTextEditorPage',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a8759224e57d4c322933ed3df6d96e5f1',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['popobject_1144',['PopObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a5ef5ddec0b82017cc4ad7f34b9b13f64',1,'GpgFrontend::Thread::Task::DataObject']]], - ['posttask_1145',['PostTask',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a4fae01eb0a5b296b8c4c6bf8408f1c6b',1,'GpgFrontend::Thread::TaskRunner']]], - ['print_5frecipient_1146',['print_recipient',['../classGpgFrontend_1_1GpgDecryptResultAnalyse.html#a1aac1c1f77a12069479a47f54a934c44',1,'GpgFrontend::GpgDecryptResultAnalyse']]], - ['print_5fsigner_1147',['print_signer',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a57bf4a26466e07f7f0ecc19de3782104',1,'GpgFrontend::GpgVerifyResultAnalyse']]], - ['process_5fdirectory_5finto_5ftarball_1148',['process_directory_into_tarball',['../namespaceGpgFrontend_1_1UI.html#a5470872566b41ce628f64039f34b964a',1,'GpgFrontend::UI']]], - ['process_5foperation_1149',['process_operation',['../namespaceGpgFrontend_1_1UI.html#a3c971eeb5c620d08d6d92f0752ceaf9f',1,'GpgFrontend::UI']]], - ['process_5fresult_5fanalyse_1150',['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_1151',['process_tarball_into_directory',['../namespaceGpgFrontend_1_1UI.html#a57d0a4dba23cd3d9b42222d40c710dc1',1,'GpgFrontend::UI']]], - ['proxyconnectiontestthread_1152',['ProxyConnectionTestThread',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.html#a538a78e0149906bf19e850ba71c00ada',1,'GpgFrontend::UI::ProxyConnectionTestThread']]] + ['passphrasegenerator_1170',['PassphraseGenerator',['../classGpgFrontend_1_1PassphraseGenerator.html#ac82ef545a54468ad02253a61cc62e3cf',1,'GpgFrontend::PassphraseGenerator']]], + ['plaintexteditorpage_1171',['PlainTextEditorPage',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a8759224e57d4c322933ed3df6d96e5f1',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['popobject_1172',['PopObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a5ef5ddec0b82017cc4ad7f34b9b13f64',1,'GpgFrontend::Thread::Task::DataObject']]], + ['post_5finit_5fctx_1173',['post_init_ctx',['../classGpgFrontend_1_1GpgContext.html#aaf3f394ff1790897c315c3249b1f06fe',1,'GpgFrontend::GpgContext']]], + ['postscheduletask_1174',['PostScheduleTask',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#aaddb0cdd8eb57aac08ca9caf8b8e6bac',1,'GpgFrontend::Thread::TaskRunner']]], + ['posttask_1175',['PostTask',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a4fae01eb0a5b296b8c4c6bf8408f1c6b',1,'GpgFrontend::Thread::TaskRunner']]], + ['print_5frecipient_1176',['print_recipient',['../classGpgFrontend_1_1GpgDecryptResultAnalyse.html#a1aac1c1f77a12069479a47f54a934c44',1,'GpgFrontend::GpgDecryptResultAnalyse']]], + ['print_5fsigner_1177',['print_signer',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#a57bf4a26466e07f7f0ecc19de3782104',1,'GpgFrontend::GpgVerifyResultAnalyse']]], + ['process_5fdirectory_5finto_5ftarball_1178',['process_directory_into_tarball',['../namespaceGpgFrontend_1_1UI.html#a5470872566b41ce628f64039f34b964a',1,'GpgFrontend::UI']]], + ['process_5foperation_1179',['process_operation',['../namespaceGpgFrontend_1_1UI.html#a3c971eeb5c620d08d6d92f0752ceaf9f',1,'GpgFrontend::UI']]], + ['process_5fresult_5fanalyse_1180',['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_1181',['process_tarball_into_directory',['../namespaceGpgFrontend_1_1UI.html#a57d0a4dba23cd3d9b42222d40c710dc1',1,'GpgFrontend::UI']]], + ['proxyconnectiontestthread_1182',['ProxyConnectionTestThread',['../classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread.html#a538a78e0149906bf19e850ba71c00ada',1,'GpgFrontend::UI::ProxyConnectionTestThread']]] ]; diff --git a/docs/html/search/namespaces_0.js b/docs/html/search/namespaces_0.js index bffcb2dc..b11de86f 100644 --- a/docs/html/search/namespaces_0.js +++ b/docs/html/search/namespaces_0.js @@ -1,7 +1,7 @@ var searchData= [ - ['gpgfrontend_831',['GpgFrontend',['../namespaceGpgFrontend.html',1,'']]], - ['rawapi_832',['RawAPI',['../namespaceGpgFrontend_1_1RawAPI.html',1,'GpgFrontend']]], - ['thread_833',['Thread',['../namespaceGpgFrontend_1_1Thread.html',1,'GpgFrontend']]], - ['ui_834',['UI',['../namespaceGpgFrontend_1_1UI.html',1,'GpgFrontend']]] + ['gpgfrontend_854',['GpgFrontend',['../namespaceGpgFrontend.html',1,'']]], + ['rawapi_855',['RawAPI',['../namespaceGpgFrontend_1_1RawAPI.html',1,'GpgFrontend']]], + ['thread_856',['Thread',['../namespaceGpgFrontend_1_1Thread.html',1,'GpgFrontend']]], + ['ui_857',['UI',['../namespaceGpgFrontend_1_1UI.html',1,'GpgFrontend']]] ]; diff --git a/docs/html/search/pages_0.js b/docs/html/search/pages_0.js index 770af549..c98bde3b 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_1485',['GpgFrontend Develop Document Main Page',['../index.html',1,'']]] + ['gpgfrontend_20develop_20document_20main_20page_1527',['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 71e138d6..3e84768e 100644 --- a/docs/html/search/variables_0.js +++ b/docs/html/search/variables_0.js @@ -1,4 +1,5 @@ var searchData= [ - ['_5fdefault_5fchannel_1361',['_default_channel',['../classGpgFrontend_1_1ChannelObject.html#a66295bb572e98fc2fad3afce763ac311',1,'GpgFrontend::ChannelObject']]] + ['_5fdefault_5fchannel_1401',['_default_channel',['../classGpgFrontend_1_1ChannelObject.html#a66295bb572e98fc2fad3afce763ac311',1,'GpgFrontend::ChannelObject']]], + ['_5finstance_1402',['_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 16cda150..21f70394 100644 --- a/docs/html/search/variables_1.js +++ b/docs/html/search/variables_1.js @@ -1,19 +1,19 @@ var searchData= [ - ['about_5fact_5f_1362',['about_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9dd292f55fba1fe62c83508fef7e43a1',1,'GpgFrontend::UI::MainWindow']]], - ['add_5fpgp_5fheader_5fact_5f_1363',['add_pgp_header_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a95b2c86afbefe47e79af87e56032e306',1,'GpgFrontend::UI::MainWindow']]], - ['additional_5fuid_5fbox_5f_1364',['additional_uid_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a265ef140feec330e7341c1369c0aefab',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['algorithm_5fvar_5flabel_5f_1365',['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_1366',['app_configure_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a4d04bb665571921421b853f18b8b300a',1,'GpgFrontend::GlobalSettingStation']]], - ['app_5fdata_5fobjs_5fpath_5f_1367',['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_1368',['app_data_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a58fff8a42f98ad7989bffb8322344cd6',1,'GpgFrontend::GlobalSettingStation']]], - ['app_5flocale_5fpath_5f_1369',['app_locale_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a25c1b45a2ccdc21dd2dcba58866169fb',1,'GpgFrontend::GlobalSettingStation']]], - ['app_5flog_5fpath_5f_1370',['app_log_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a6459653a71cc8285fa554943c7fb3ca7',1,'GpgFrontend::GlobalSettingStation']]], - ['app_5fpath_5f_1371',['app_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a678f8ba120f9ad050d0adfec4476d7ac',1,'GpgFrontend::GlobalSettingStation']]], - ['app_5fresource_5fpath_5f_1372',['app_resource_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a1d94a126c78ac01ec01f10d2ce575388',1,'GpgFrontend::GlobalSettingStation']]], - ['app_5fsecure_5fkey_5fpath_5f_1373',['app_secure_key_path_',['../classGpgFrontend_1_1DataObjectOperator.html#a56c0c031cd327207260c73d1885dbdca',1,'GpgFrontend::DataObjectOperator']]], - ['app_5fsecure_5fpath_5f_1374',['app_secure_path_',['../classGpgFrontend_1_1DataObjectOperator.html#a6d38d25c91c33c48d083ec4de051108a',1,'GpgFrontend::DataObjectOperator']]], - ['append_5fselected_5fkeys_5fact_5f_1375',['append_selected_keys_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab67486a71126073e7c39ca12603198f4',1,'GpgFrontend::UI::MainWindow']]], - ['apppath_1376',['AppPath',['../classGpgFrontend_1_1GpgInfo.html#a2416ae0ab9bedc61782d16075750a9c0',1,'GpgFrontend::GpgInfo']]], - ['attachment_5fdock_5f_1377',['attachment_dock_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#afd243a5f00f86d65431081ead2cae153',1,'GpgFrontend::UI::MainWindow']]] + ['about_5fact_5f_1403',['about_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9dd292f55fba1fe62c83508fef7e43a1',1,'GpgFrontend::UI::MainWindow']]], + ['add_5fpgp_5fheader_5fact_5f_1404',['add_pgp_header_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a95b2c86afbefe47e79af87e56032e306',1,'GpgFrontend::UI::MainWindow']]], + ['additional_5fuid_5fbox_5f_1405',['additional_uid_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a265ef140feec330e7341c1369c0aefab',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['algorithm_5fvar_5flabel_5f_1406',['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_1407',['app_configure_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a4d04bb665571921421b853f18b8b300a',1,'GpgFrontend::GlobalSettingStation']]], + ['app_5fdata_5fobjs_5fpath_5f_1408',['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_1409',['app_data_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a58fff8a42f98ad7989bffb8322344cd6',1,'GpgFrontend::GlobalSettingStation']]], + ['app_5flocale_5fpath_5f_1410',['app_locale_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a25c1b45a2ccdc21dd2dcba58866169fb',1,'GpgFrontend::GlobalSettingStation']]], + ['app_5flog_5fpath_5f_1411',['app_log_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a6459653a71cc8285fa554943c7fb3ca7',1,'GpgFrontend::GlobalSettingStation']]], + ['app_5fpath_5f_1412',['app_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a678f8ba120f9ad050d0adfec4476d7ac',1,'GpgFrontend::GlobalSettingStation']]], + ['app_5fresource_5fpath_5f_1413',['app_resource_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a1d94a126c78ac01ec01f10d2ce575388',1,'GpgFrontend::GlobalSettingStation']]], + ['app_5fsecure_5fkey_5fpath_5f_1414',['app_secure_key_path_',['../classGpgFrontend_1_1DataObjectOperator.html#a56c0c031cd327207260c73d1885dbdca',1,'GpgFrontend::DataObjectOperator']]], + ['app_5fsecure_5fpath_5f_1415',['app_secure_path_',['../classGpgFrontend_1_1DataObjectOperator.html#a6d38d25c91c33c48d083ec4de051108a',1,'GpgFrontend::DataObjectOperator']]], + ['append_5fselected_5fkeys_5fact_5f_1416',['append_selected_keys_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab67486a71126073e7c39ca12603198f4',1,'GpgFrontend::UI::MainWindow']]], + ['apppath_1417',['AppPath',['../classGpgFrontend_1_1GpgInfo.html#a2416ae0ab9bedc61782d16075750a9c0',1,'GpgFrontend::GpgInfo']]], + ['attachment_5fdock_5f_1418',['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 a86787fd..63780883 100644 --- a/docs/html/search/variables_10.js +++ b/docs/html/search/variables_10.js @@ -1,5 +1,5 @@ var searchData= [ - ['quit_5fact_5f_1457',['quit_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#abe0683e48485f9fcff622d9519c37ed9',1,'GpgFrontend::UI::MainWindow']]], - ['quote_5fact_5f_1458',['quote_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af9640e5732c2595d0c094e7ff7e371ac',1,'GpgFrontend::UI::MainWindow']]] + ['quit_5fact_5f_1499',['quit_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#abe0683e48485f9fcff622d9519c37ed9',1,'GpgFrontend::UI::MainWindow']]], + ['quote_5fact_5f_1500',['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 9383c12c..6e41804d 100644 --- a/docs/html/search/variables_11.js +++ b/docs/html/search/variables_11.js @@ -1,5 +1,5 @@ var searchData= [ - ['rd_5f_1459',['rd_',['../classGpgFrontend_1_1DataObjectOperator.html#a24c9cdbe9256e332ac93d6dc28c76b90',1,'GpgFrontend::DataObjectOperator::rd_()'],['../classGpgFrontend_1_1PassphraseGenerator.html#a12ee6f9b7fff4883074321c7e0de3dfa',1,'GpgFrontend::PassphraseGenerator::rd_()']]], - ['redo_5fact_5f_1460',['redo_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#abe38474d4e81726147f9df8a9721ce6e',1,'GpgFrontend::UI::MainWindow']]] + ['rd_5f_1501',['rd_',['../classGpgFrontend_1_1DataObjectOperator.html#a24c9cdbe9256e332ac93d6dc28c76b90',1,'GpgFrontend::DataObjectOperator::rd_()'],['../classGpgFrontend_1_1PassphraseGenerator.html#a12ee6f9b7fff4883074321c7e0de3dfa',1,'GpgFrontend::PassphraseGenerator::rd_()']]], + ['redo_5fact_5f_1502',['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 56f457f1..8d9925d6 100644 --- a/docs/html/search/variables_12.js +++ b/docs/html/search/variables_12.js @@ -1,15 +1,15 @@ var searchData= [ - ['save_5fact_5f_1461',['save_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab0f148559d830fcf10b5a1937b0a47dc',1,'GpgFrontend::UI::MainWindow']]], - ['save_5fas_5fact_5f_1462',['save_as_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a22256763ef83ed35a81e446b553d8112',1,'GpgFrontend::UI::MainWindow']]], - ['select_5fall_5fact_5f_1463',['select_all_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ac6a42e6e3af7e76f0bd2ecc62c9520cc',1,'GpgFrontend::UI::MainWindow']]], - ['show_5fkey_5fdetails_5fact_5f_1464',['show_key_details_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#acd41722ceedd20973b7d83852fab407b',1,'GpgFrontend::UI::MainWindow']]], - ['sign_5fact_5f_1465',['sign_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0cded37ef6e07856bbe439b0e90db839',1,'GpgFrontend::UI::MainWindow']]], - ['sign_5fmarked_5f_1466',['sign_marked_',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a4f94e9ef7889a169bda5a47b7f657358',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['special_5fedit_5ftool_5fbar_5f_1467',['special_edit_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af2b3e3a0e9894633e1839df289f5ffe0',1,'GpgFrontend::UI::MainWindow']]], - ['start_5fwizard_5fact_5f_1468',['start_wizard_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab0019ca316b971c594c2f20f418256a6',1,'GpgFrontend::UI::MainWindow']]], - ['steganography_5fmenu_5f_1469',['steganography_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af763a506aed7d0fb2125d1859583b853',1,'GpgFrontend::UI::MainWindow']]], - ['storages_5fmutex_5f_1470',['storages_mutex_',['../classGpgFrontend_1_1SingletonStorageCollection.html#ab648cb257beb2475eb5fca6453c331f9',1,'GpgFrontend::SingletonStorageCollection']]], - ['switch_5ftab_5fdown_5fact_5f_1471',['switch_tab_down_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a88af746cd550792ab6095d2ebbd29b41',1,'GpgFrontend::UI::MainWindow']]], - ['switch_5ftab_5fup_5fact_5f_1472',['switch_tab_up_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8d5ce6514ef3fa8ac3223176f5fa2701',1,'GpgFrontend::UI::MainWindow']]] + ['save_5fact_5f_1503',['save_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab0f148559d830fcf10b5a1937b0a47dc',1,'GpgFrontend::UI::MainWindow']]], + ['save_5fas_5fact_5f_1504',['save_as_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a22256763ef83ed35a81e446b553d8112',1,'GpgFrontend::UI::MainWindow']]], + ['select_5fall_5fact_5f_1505',['select_all_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ac6a42e6e3af7e76f0bd2ecc62c9520cc',1,'GpgFrontend::UI::MainWindow']]], + ['show_5fkey_5fdetails_5fact_5f_1506',['show_key_details_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#acd41722ceedd20973b7d83852fab407b',1,'GpgFrontend::UI::MainWindow']]], + ['sign_5fact_5f_1507',['sign_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0cded37ef6e07856bbe439b0e90db839',1,'GpgFrontend::UI::MainWindow']]], + ['sign_5fmarked_5f_1508',['sign_marked_',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a4f94e9ef7889a169bda5a47b7f657358',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['special_5fedit_5ftool_5fbar_5f_1509',['special_edit_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af2b3e3a0e9894633e1839df289f5ffe0',1,'GpgFrontend::UI::MainWindow']]], + ['start_5fwizard_5fact_5f_1510',['start_wizard_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab0019ca316b971c594c2f20f418256a6',1,'GpgFrontend::UI::MainWindow']]], + ['steganography_5fmenu_5f_1511',['steganography_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af763a506aed7d0fb2125d1859583b853',1,'GpgFrontend::UI::MainWindow']]], + ['storages_5fmutex_5f_1512',['storages_mutex_',['../classGpgFrontend_1_1SingletonStorageCollection.html#ab648cb257beb2475eb5fca6453c331f9',1,'GpgFrontend::SingletonStorageCollection']]], + ['switch_5ftab_5fdown_5fact_5f_1513',['switch_tab_down_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a88af746cd550792ab6095d2ebbd29b41',1,'GpgFrontend::UI::MainWindow']]], + ['switch_5ftab_5fup_5fact_5f_1514',['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 ffac601e..2349c6f8 100644 --- a/docs/html/search/variables_13.js +++ b/docs/html/search/variables_13.js @@ -1,6 +1,6 @@ var searchData= [ - ['tasks_1473',['tasks',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a774775e9a91d33072b27dcf78cead6e2',1,'GpgFrontend::Thread::TaskRunner']]], - ['tasks_5fmutex_5f_1474',['tasks_mutex_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a5e72f1ce00d41c225a4304f1ed20b3f1',1,'GpgFrontend::Thread::TaskRunner']]], - ['translate_5fact_5f_1475',['translate_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adbac799672c43c90810366825d837e4e',1,'GpgFrontend::UI::MainWindow']]] + ['tasks_1515',['tasks',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a774775e9a91d33072b27dcf78cead6e2',1,'GpgFrontend::Thread::TaskRunner']]], + ['tasks_5fmutex_5f_1516',['tasks_mutex_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a5e72f1ce00d41c225a4304f1ed20b3f1',1,'GpgFrontend::Thread::TaskRunner']]], + ['translate_5fact_5f_1517',['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 4216beb3..bf274a86 100644 --- a/docs/html/search/variables_14.js +++ b/docs/html/search/variables_14.js @@ -1,7 +1,7 @@ var searchData= [ - ['ui_5fcfg_5f_1476',['ui_cfg_',['../classGpgFrontend_1_1GlobalSettingStation.html#a1818e08063d6a886975f77354fc5d85c',1,'GpgFrontend::GlobalSettingStation']]], - ['ui_5fconfig_5fdir_5fpath_5f_1477',['ui_config_dir_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#ab618fef68cfd4ff6e42d4a4aa8ea94bb',1,'GpgFrontend::GlobalSettingStation']]], - ['ui_5fconfig_5fpath_5f_1478',['ui_config_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#afa99ddc25c0d5fd59a4c5f0e61d13830',1,'GpgFrontend::GlobalSettingStation']]], - ['undo_5fact_5f_1479',['undo_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa498dfecac36590e4b60d50824dff58c',1,'GpgFrontend::UI::MainWindow']]] + ['ui_5fcfg_5f_1518',['ui_cfg_',['../classGpgFrontend_1_1GlobalSettingStation.html#a1818e08063d6a886975f77354fc5d85c',1,'GpgFrontend::GlobalSettingStation']]], + ['ui_5fconfig_5fdir_5fpath_5f_1519',['ui_config_dir_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#ab618fef68cfd4ff6e42d4a4aa8ea94bb',1,'GpgFrontend::GlobalSettingStation']]], + ['ui_5fconfig_5fpath_5f_1520',['ui_config_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#afa99ddc25c0d5fd59a4c5f0e61d13830',1,'GpgFrontend::GlobalSettingStation']]], + ['undo_5fact_5f_1521',['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 3f7a8197..2660a2fd 100644 --- a/docs/html/search/variables_15.js +++ b/docs/html/search/variables_15.js @@ -1,5 +1,5 @@ var searchData= [ - ['verify_5fact_5f_1480',['verify_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a14bb12fa25620e1a93bd23c9f7c84081',1,'GpgFrontend::UI::MainWindow']]], - ['view_5fmenu_5f_1481',['view_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0e9920cf0fc974ac2f70d3f039f009f2',1,'GpgFrontend::UI::MainWindow']]] + ['verify_5fact_5f_1522',['verify_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a14bb12fa25620e1a93bd23c9f7c84081',1,'GpgFrontend::UI::MainWindow']]], + ['view_5fmenu_5f_1523',['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 6f23d563..d17f0d2d 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_1482',['zoom_in_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3cb7daedbef61c1be27635c9ebc9e689',1,'GpgFrontend::UI::MainWindow']]], - ['zoom_5fout_5fact_5f_1483',['zoom_out_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a70397629ae3ffe039051b80a099c7979',1,'GpgFrontend::UI::MainWindow']]] + ['zoom_5fin_5fact_5f_1524',['zoom_in_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3cb7daedbef61c1be27635c9ebc9e689',1,'GpgFrontend::UI::MainWindow']]], + ['zoom_5fout_5fact_5f_1525',['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 3d8928c6..61bf22f8 100644 --- a/docs/html/search/variables_2.js +++ b/docs/html/search/variables_2.js @@ -1,6 +1,6 @@ var searchData= [ - ['browser_5f_1378',['browser_',['../classGpgFrontend_1_1UI_1_1HelpPage.html#af4f61342fae06a49c95d8d20ca51ca2c',1,'GpgFrontend::UI::HelpPage']]], - ['browser_5fact_5f_1379',['browser_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3c0a5305cf55fe5bee2f18298f983cad',1,'GpgFrontend::UI::MainWindow']]], - ['button_5fbox_5f_1380',['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_1419',['browser_',['../classGpgFrontend_1_1UI_1_1HelpPage.html#af4f61342fae06a49c95d8d20ca51ca2c',1,'GpgFrontend::UI::HelpPage']]], + ['browser_5fact_5f_1420',['browser_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3c0a5305cf55fe5bee2f18298f983cad',1,'GpgFrontend::UI::MainWindow']]], + ['button_5fbox_5f_1421',['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 f89e85ec..ab652c00 100644 --- a/docs/html/search/variables_3.js +++ b/docs/html/search/variables_3.js @@ -1,20 +1,20 @@ var searchData= [ - ['channel_5f_1381',['channel_',['../classGpgFrontend_1_1ChannelObject.html#aee5f8a5575adbdf522da4dd195c091ee',1,'GpgFrontend::ChannelObject']]], - ['check_5fupdate_5fact_5f_1382',['check_update_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a672f4ef07be6ad645613ecd49399700d',1,'GpgFrontend::UI::MainWindow']]], - ['clean_5fdouble_5fline_5fbreaks_5fact_5f_1383',['clean_double_line_breaks_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0cb094e0409337cfd7dba1bb510ea96e',1,'GpgFrontend::UI::MainWindow']]], - ['close_5ftab_5fact_5f_1384',['close_tab_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a09671c3aa26a750cfd6be6c092de8715',1,'GpgFrontend::UI::MainWindow']]], - ['comment_5fedit_5f_1385',['comment_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3008e2a9879a8e122e422f67cf0018f8',1,'GpgFrontend::UI::KeyGenDialog']]], - ['comment_5fvar_5flabel_5f_1386',['comment_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a83b1290251a204def52677ae000a17ec',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['copy_5fact_5f_1387',['copy_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a71402943f4ed19e3aba0556b23eaa8f8',1,'GpgFrontend::UI::MainWindow']]], - ['copy_5fmail_5faddress_5fto_5fclipboard_5fact_5f_1388',['copy_mail_address_to_clipboard_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af77f66b6b869f6ddb3d2caa3bc40bb09',1,'GpgFrontend::UI::MainWindow']]], - ['count_5fpage_5f_1389',['count_page_',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a747d3740a88295e6c9565788d4cf56ec',1,'GpgFrontend::UI::TextEdit']]], - ['created_5fvar_5flabel_5f_1390',['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_1391',['crypt_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1ef17c566a764f707f43593a1f6b3c60',1,'GpgFrontend::UI::MainWindow']]], - ['crypt_5ftool_5fbar_5f_1392',['crypt_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aac320aef3b49cd068544aac54b927f7a',1,'GpgFrontend::UI::MainWindow']]], - ['ctx_5f_1393',['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_1394',['ctx_mutex_',['../classGpgFrontend_1_1GpgKeyGetter.html#a81941e1f562dc22977a71d00dd10956a',1,'GpgFrontend::GpgKeyGetter']]], - ['current_5freply_5f_1395',['current_reply_',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9679bc6bcdf2e64ec82f6119620b6f2e',1,'GpgFrontend::UI::VersionCheckTask']]], - ['cut_5fact_5f_1396',['cut_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2c2f6c021219564846f1624f6bb5b9a2',1,'GpgFrontend::UI::MainWindow']]], - ['cut_5fpgp_5fheader_5fact_5f_1397',['cut_pgp_header_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a313a5d7d0847114a6f11e4d7870edd86',1,'GpgFrontend::UI::MainWindow']]] + ['channel_5f_1422',['channel_',['../classGpgFrontend_1_1ChannelObject.html#aee5f8a5575adbdf522da4dd195c091ee',1,'GpgFrontend::ChannelObject']]], + ['check_5fupdate_5fact_5f_1423',['check_update_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a672f4ef07be6ad645613ecd49399700d',1,'GpgFrontend::UI::MainWindow']]], + ['clean_5fdouble_5fline_5fbreaks_5fact_5f_1424',['clean_double_line_breaks_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0cb094e0409337cfd7dba1bb510ea96e',1,'GpgFrontend::UI::MainWindow']]], + ['close_5ftab_5fact_5f_1425',['close_tab_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a09671c3aa26a750cfd6be6c092de8715',1,'GpgFrontend::UI::MainWindow']]], + ['comment_5fedit_5f_1426',['comment_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3008e2a9879a8e122e422f67cf0018f8',1,'GpgFrontend::UI::KeyGenDialog']]], + ['comment_5fvar_5flabel_5f_1427',['comment_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a83b1290251a204def52677ae000a17ec',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['copy_5fact_5f_1428',['copy_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a71402943f4ed19e3aba0556b23eaa8f8',1,'GpgFrontend::UI::MainWindow']]], + ['copy_5fmail_5faddress_5fto_5fclipboard_5fact_5f_1429',['copy_mail_address_to_clipboard_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af77f66b6b869f6ddb3d2caa3bc40bb09',1,'GpgFrontend::UI::MainWindow']]], + ['count_5fpage_5f_1430',['count_page_',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a747d3740a88295e6c9565788d4cf56ec',1,'GpgFrontend::UI::TextEdit']]], + ['created_5fvar_5flabel_5f_1431',['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_1432',['crypt_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1ef17c566a764f707f43593a1f6b3c60',1,'GpgFrontend::UI::MainWindow']]], + ['crypt_5ftool_5fbar_5f_1433',['crypt_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aac320aef3b49cd068544aac54b927f7a',1,'GpgFrontend::UI::MainWindow']]], + ['ctx_5f_1434',['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_1435',['ctx_mutex_',['../classGpgFrontend_1_1GpgKeyGetter.html#a81941e1f562dc22977a71d00dd10956a',1,'GpgFrontend::GpgKeyGetter']]], + ['current_5freply_5f_1436',['current_reply_',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9679bc6bcdf2e64ec82f6119620b6f2e',1,'GpgFrontend::UI::VersionCheckTask']]], + ['cut_5fact_5f_1437',['cut_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2c2f6c021219564846f1624f6bb5b9a2',1,'GpgFrontend::UI::MainWindow']]], + ['cut_5fpgp_5fheader_5fact_5f_1438',['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 6f184c66..4d4c4c04 100644 --- a/docs/html/search/variables_4.js +++ b/docs/html/search/variables_4.js @@ -1,6 +1,6 @@ var searchData= [ - ['date_5fedit_5f_1398',['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_1399',['decrypt_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa92246123272e3e1085f22612aedf48f',1,'GpgFrontend::UI::MainWindow']]], - ['decrypt_5fverify_5fact_5f_1400',['decrypt_verify_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a70d2b2311708ab023466d343f2e914b1',1,'GpgFrontend::UI::MainWindow']]] + ['date_5fedit_5f_1439',['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_1440',['decrypt_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa92246123272e3e1085f22612aedf48f',1,'GpgFrontend::UI::MainWindow']]], + ['decrypt_5fverify_5fact_5f_1441',['decrypt_verify_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a70d2b2311708ab023466d343f2e914b1',1,'GpgFrontend::UI::MainWindow']]] ]; diff --git a/docs/html/search/variables_5.js b/docs/html/search/variables_5.js index a0e7a669..45830081 100644 --- a/docs/html/search/variables_5.js +++ b/docs/html/search/variables_5.js @@ -1,14 +1,14 @@ var searchData= [ - ['edit_5f_1401',['edit_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7aa41c90105fd4c2931895d8dfb5ec45',1,'GpgFrontend::UI::MainWindow']]], - ['edit_5fmenu_5f_1402',['edit_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a6d681a306c137dc107088d60b09a925f',1,'GpgFrontend::UI::MainWindow']]], - ['edit_5ftool_5fbar_5f_1403',['edit_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab531823acdbfb117c82a9906ce2107b9',1,'GpgFrontend::UI::MainWindow']]], - ['email_5fedit_5f_1404',['email_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3453d1a8a4c0411472b2779d018abdc3',1,'GpgFrontend::UI::KeyGenDialog']]], - ['email_5fvar_5flabel_5f_1405',['email_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a8c71b37aa040da50cb0105489a42e60d',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['encrypt_5fact_5f_1406',['encrypt_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad6a2cecb2846b324604c4abd1fb7d11a',1,'GpgFrontend::UI::MainWindow']]], - ['encrypt_5fsign_5fact_5f_1407',['encrypt_sign_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2417c807356e3b876ecb2f572568670b',1,'GpgFrontend::UI::MainWindow']]], - ['error_5flabel_5f_1408',['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_1409',['error_messages_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a03a8e1c8f2c1887732d36a346185bb40',1,'GpgFrontend::UI::KeyGenDialog']]], - ['expire_5fcheck_5fbox_5f_1410',['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_1411',['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_1442',['edit_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7aa41c90105fd4c2931895d8dfb5ec45',1,'GpgFrontend::UI::MainWindow']]], + ['edit_5fmenu_5f_1443',['edit_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a6d681a306c137dc107088d60b09a925f',1,'GpgFrontend::UI::MainWindow']]], + ['edit_5ftool_5fbar_5f_1444',['edit_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab531823acdbfb117c82a9906ce2107b9',1,'GpgFrontend::UI::MainWindow']]], + ['email_5fedit_5f_1445',['email_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3453d1a8a4c0411472b2779d018abdc3',1,'GpgFrontend::UI::KeyGenDialog']]], + ['email_5fvar_5flabel_5f_1446',['email_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a8c71b37aa040da50cb0105489a42e60d',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['encrypt_5fact_5f_1447',['encrypt_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad6a2cecb2846b324604c4abd1fb7d11a',1,'GpgFrontend::UI::MainWindow']]], + ['encrypt_5fsign_5fact_5f_1448',['encrypt_sign_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2417c807356e3b876ecb2f572568670b',1,'GpgFrontend::UI::MainWindow']]], + ['error_5flabel_5f_1449',['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_1450',['error_messages_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a03a8e1c8f2c1887732d36a346185bb40',1,'GpgFrontend::UI::KeyGenDialog']]], + ['expire_5fcheck_5fbox_5f_1451',['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_1452',['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 5049f4a6..5cacfe9c 100644 --- a/docs/html/search/variables_6.js +++ b/docs/html/search/variables_6.js @@ -1,11 +1,11 @@ var searchData= [ - ['file_5fmenu_5f_1412',['file_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af08c62c38a750382ee218191c8e13f4f',1,'GpgFrontend::UI::MainWindow']]], - ['file_5ftool_5fbar_5f_1413',['file_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1e0d23d361b8e339ca85410db2bdfb64',1,'GpgFrontend::UI::MainWindow']]], - ['find_5fact_5f_1414',['find_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a6154f5dbdc9cebc0644e5d1e25895df8',1,'GpgFrontend::UI::MainWindow']]], - ['find_5fedit_5f_1415',['find_edit_',['../classGpgFrontend_1_1UI_1_1FindWidget.html#af420832720942dd1e7cb3f3841c7cbfe',1,'GpgFrontend::UI::FindWidget']]], - ['fingerprint_5fbox_5f_1416',['fingerprint_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#ada1c21cf59f1f19dfd4ffe0391bc1594',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['fingerprint_5fvar_5flabel_5f_1417',['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_1418',['fpr_',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#a36bf3306b8564b49da04eee1dc653675',1,'GpgFrontend::UI::VerifyKeyDetailBox']]], - ['full_5ffile_5fpath_5f_1419',['full_file_path_',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#ae867b6329fcb1978479a9d70f7b017db',1,'GpgFrontend::UI::PlainTextEditorPage']]] + ['file_5fmenu_5f_1453',['file_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af08c62c38a750382ee218191c8e13f4f',1,'GpgFrontend::UI::MainWindow']]], + ['file_5ftool_5fbar_5f_1454',['file_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1e0d23d361b8e339ca85410db2bdfb64',1,'GpgFrontend::UI::MainWindow']]], + ['find_5fact_5f_1455',['find_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a6154f5dbdc9cebc0644e5d1e25895df8',1,'GpgFrontend::UI::MainWindow']]], + ['find_5fedit_5f_1456',['find_edit_',['../classGpgFrontend_1_1UI_1_1FindWidget.html#af420832720942dd1e7cb3f3841c7cbfe',1,'GpgFrontend::UI::FindWidget']]], + ['fingerprint_5fbox_5f_1457',['fingerprint_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#ada1c21cf59f1f19dfd4ffe0391bc1594',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['fingerprint_5fvar_5flabel_5f_1458',['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_1459',['fpr_',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#a36bf3306b8564b49da04eee1dc653675',1,'GpgFrontend::UI::VerifyKeyDetailBox']]], + ['full_5ffile_5fpath_5f_1460',['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 602b84a1..db61818f 100644 --- a/docs/html/search/variables_7.js +++ b/docs/html/search/variables_7.js @@ -1,6 +1,6 @@ var searchData= [ - ['global_5fsetting_5fstation_5f_1420',['global_setting_station_',['../classGpgFrontend_1_1DataObjectOperator.html#a3c195f8e4c30d95be14a6d43e9282601',1,'GpgFrontend::DataObjectOperator']]], - ['gnupg_5fact_5f_1421',['gnupg_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a79b83f536a7c4299eaa3d22e4e875227',1,'GpgFrontend::UI::MainWindow']]], - ['gpg_5fmenu_5f_1422',['gpg_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2bed0c3b032269c9eb82bc7c068852cb',1,'GpgFrontend::UI::MainWindow']]] + ['global_5fsetting_5fstation_5f_1461',['global_setting_station_',['../classGpgFrontend_1_1DataObjectOperator.html#a3c195f8e4c30d95be14a6d43e9282601',1,'GpgFrontend::DataObjectOperator']]], + ['gnupg_5fact_5f_1462',['gnupg_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a79b83f536a7c4299eaa3d22e4e875227',1,'GpgFrontend::UI::MainWindow']]], + ['gpg_5fmenu_5f_1463',['gpg_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2bed0c3b032269c9eb82bc7c068852cb',1,'GpgFrontend::UI::MainWindow']]] ]; diff --git a/docs/html/search/variables_8.js b/docs/html/search/variables_8.js index 6d07ce10..9de5576d 100644 --- a/docs/html/search/variables_8.js +++ b/docs/html/search/variables_8.js @@ -1,5 +1,5 @@ var searchData= [ - ['hash_5fkey_5f_1423',['hash_key_',['../classGpgFrontend_1_1DataObjectOperator.html#ae409c3562c3e08931daa17f5790c508b',1,'GpgFrontend::DataObjectOperator']]], - ['help_5fmenu_5f_1424',['help_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a89fa105ed54d2189d762668262d74c63',1,'GpgFrontend::UI::MainWindow']]] + ['hash_5fkey_5f_1464',['hash_key_',['../classGpgFrontend_1_1DataObjectOperator.html#ae409c3562c3e08931daa17f5790c508b',1,'GpgFrontend::DataObjectOperator']]], + ['help_5fmenu_5f_1465',['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 abc05130..0711cca0 100644 --- a/docs/html/search/variables_9.js +++ b/docs/html/search/variables_9.js @@ -1,8 +1,8 @@ var searchData= [ - ['import_5fbutton_5f_1425',['import_button_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8538940a9a5dea7ddf53c89acdeb83be',1,'GpgFrontend::UI::MainWindow']]], - ['import_5fkey_5ffrom_5fedit_5fact_5f_1426',['import_key_from_edit_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a01b85fb17c373d8f97ce439027c6d04e',1,'GpgFrontend::UI::MainWindow']]], - ['import_5fkey_5fmenu_5f_1427',['import_key_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8d6fe32ab64797459443ed285d769745',1,'GpgFrontend::UI::MainWindow']]], - ['instances_5fmap_5f_1428',['instances_map_',['../classGpgFrontend_1_1SingletonStorage.html#a6181f2b5af39c6b86de89e1ba9eeff1c',1,'GpgFrontend::SingletonStorage']]], - ['instances_5fmutex_5f_1429',['instances_mutex_',['../classGpgFrontend_1_1SingletonStorage.html#a15161d0afafec602018a89266dab5641',1,'GpgFrontend::SingletonStorage']]] + ['import_5fbutton_5f_1466',['import_button_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8538940a9a5dea7ddf53c89acdeb83be',1,'GpgFrontend::UI::MainWindow']]], + ['import_5fkey_5ffrom_5fedit_5fact_5f_1467',['import_key_from_edit_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a01b85fb17c373d8f97ce439027c6d04e',1,'GpgFrontend::UI::MainWindow']]], + ['import_5fkey_5fmenu_5f_1468',['import_key_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8d6fe32ab64797459443ed285d769745',1,'GpgFrontend::UI::MainWindow']]], + ['instances_5fmap_5f_1469',['instances_map_',['../classGpgFrontend_1_1SingletonStorage.html#a6181f2b5af39c6b86de89e1ba9eeff1c',1,'GpgFrontend::SingletonStorage']]], + ['instances_5fmutex_5f_1470',['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 2d69970d..0f1bdf38 100644 --- a/docs/html/search/variables_a.js +++ b/docs/html/search/variables_a.js @@ -1,16 +1,16 @@ var searchData= [ - ['key_5fbox_5f_1430',['key_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aae9905764b5551208574a932fdfba29c',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['key_5fid_5fvar_5flabel_1431',['key_id_var_label',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a65176245d280ae0734ef7b5b3f1c4cc4',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['key_5fid_5fvar_5flabel_5f_1432',['key_id_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a2f634f4c83ab5dd2d088eb07e0d3b862',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], - ['key_5flist_5fdock_5f_1433',['key_list_dock_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adaa66d9cdc51c946efc99bb94deda31c',1,'GpgFrontend::UI::MainWindow']]], - ['key_5fmenu_5f_1434',['key_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a16bbfd12cd3a6f0df9e2c32cf7999e57',1,'GpgFrontend::UI::MainWindow']]], - ['key_5fsize_5fspin_5fbox_5f_1435',['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_1436',['key_size_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a63e054f4a2d8e12c70d25d39bb55f876',1,'GpgFrontend::UI::KeyPairSubkeyTab::key_size_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a1485e603de56152f45d96e0ce5c50d9b',1,'GpgFrontend::UI::KeyPairDetailTab::key_size_var_label_()']]], - ['key_5ftool_5fbar_5f_1437',['key_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a38f243880cfb9276545b08f0730811e7',1,'GpgFrontend::UI::MainWindow']]], - ['key_5ftype_5fcombo_5fbox_5f_1438',['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_1439',['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_1440',['key_usage_group_box_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7b1b9cb46c0547c1e561e56d55616cf1',1,'GpgFrontend::UI::KeyGenDialog']]], - ['keys_5fcache_5f_1441',['keys_cache_',['../classGpgFrontend_1_1GpgKeyGetter.html#a9567d5e08ae73c5bafcd1dc378fed066',1,'GpgFrontend::GpgKeyGetter']]], - ['keys_5fcache_5fmutex_5f_1442',['keys_cache_mutex_',['../classGpgFrontend_1_1GpgKeyGetter.html#ae1d7846ad2fa17ab90c72b3186ba5335',1,'GpgFrontend::GpgKeyGetter']]] + ['key_5fbox_5f_1471',['key_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aae9905764b5551208574a932fdfba29c',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['key_5fid_5fvar_5flabel_1472',['key_id_var_label',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a65176245d280ae0734ef7b5b3f1c4cc4',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['key_5fid_5fvar_5flabel_5f_1473',['key_id_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a2f634f4c83ab5dd2d088eb07e0d3b862',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], + ['key_5flist_5fdock_5f_1474',['key_list_dock_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adaa66d9cdc51c946efc99bb94deda31c',1,'GpgFrontend::UI::MainWindow']]], + ['key_5fmenu_5f_1475',['key_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a16bbfd12cd3a6f0df9e2c32cf7999e57',1,'GpgFrontend::UI::MainWindow']]], + ['key_5fsize_5fspin_5fbox_5f_1476',['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_1477',['key_size_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a63e054f4a2d8e12c70d25d39bb55f876',1,'GpgFrontend::UI::KeyPairSubkeyTab::key_size_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a1485e603de56152f45d96e0ce5c50d9b',1,'GpgFrontend::UI::KeyPairDetailTab::key_size_var_label_()']]], + ['key_5ftool_5fbar_5f_1478',['key_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a38f243880cfb9276545b08f0730811e7',1,'GpgFrontend::UI::MainWindow']]], + ['key_5ftype_5fcombo_5fbox_5f_1479',['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_1480',['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_1481',['key_usage_group_box_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7b1b9cb46c0547c1e561e56d55616cf1',1,'GpgFrontend::UI::KeyGenDialog']]], + ['keys_5fcache_5f_1482',['keys_cache_',['../classGpgFrontend_1_1GpgKeyGetter.html#a9567d5e08ae73c5bafcd1dc378fed066',1,'GpgFrontend::GpgKeyGetter']]], + ['keys_5fcache_5fmutex_5f_1483',['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 825a9775..5965afe0 100644 --- a/docs/html/search/variables_b.js +++ b/docs/html/search/variables_b.js @@ -1,4 +1,4 @@ var searchData= [ - ['latest_5freply_5f_1443',['latest_reply_',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#aed545ffa8128acb16bb28c067e032ec9',1,'GpgFrontend::UI::VersionCheckTask']]] + ['latest_5freply_5f_1484',['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 667be62c..fdc349d1 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_1444',['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_1445',['mt_',['../classGpgFrontend_1_1DataObjectOperator.html#a9fc92c7d497f2a2057776adfca40e8ca',1,'GpgFrontend::DataObjectOperator::mt_()'],['../classGpgFrontend_1_1PassphraseGenerator.html#a19ac4999bbd5fb7e6c42a4aef9606892',1,'GpgFrontend::PassphraseGenerator::mt_()']]] + ['m_5ftext_5fpage_5f_1485',['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_1486',['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 24129d69..f0377545 100644 --- a/docs/html/search/variables_d.js +++ b/docs/html/search/variables_d.js @@ -1,6 +1,7 @@ var searchData= [ - ['name_5fedit_5f_1446',['name_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7ed095cce29c658741ae0520049010c0',1,'GpgFrontend::UI::KeyGenDialog']]], - ['name_5fvar_5flabel_5f_1447',['name_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a9d57be18c2091827c04ec8809f4154be',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['new_5ftab_5fact_5f_1448',['new_tab_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a472500fec64442b114e9ce9faf4b6a73',1,'GpgFrontend::UI::MainWindow']]] + ['name_5fedit_5f_1487',['name_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7ed095cce29c658741ae0520049010c0',1,'GpgFrontend::UI::KeyGenDialog']]], + ['name_5fvar_5flabel_5f_1488',['name_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a9d57be18c2091827c04ec8809f4154be',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['new_5ftab_5fact_5f_1489',['new_tab_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a472500fec64442b114e9ce9faf4b6a73',1,'GpgFrontend::UI::MainWindow']]], + ['no_5fpass_5fphrase_5fcheck_5fbox_5f_1490',['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 56dfbe9b..a5ad6941 100644 --- a/docs/html/search/variables_e.js +++ b/docs/html/search/variables_e.js @@ -1,7 +1,7 @@ var searchData= [ - ['open_5fact_5f_1449',['open_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a4a1edafb8c67b181ff3c29394147571d',1,'GpgFrontend::UI::MainWindow']]], - ['open_5fkey_5fmanagement_5fact_5f_1450',['open_key_management_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad7b22560df7e3bb38b660d3ffc84dc83',1,'GpgFrontend::UI::MainWindow']]], - ['open_5fsettings_5fact_5f_1451',['open_settings_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#afab1e0363a4b97ff68228cd4bd7cbc62',1,'GpgFrontend::UI::MainWindow']]], - ['owner_5fbox_5f_1452',['owner_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#ad8c25061351d8e739b70d5466b87410e',1,'GpgFrontend::UI::KeyPairDetailTab']]] + ['open_5fact_5f_1491',['open_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a4a1edafb8c67b181ff3c29394147571d',1,'GpgFrontend::UI::MainWindow']]], + ['open_5fkey_5fmanagement_5fact_5f_1492',['open_key_management_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad7b22560df7e3bb38b660d3ffc84dc83',1,'GpgFrontend::UI::MainWindow']]], + ['open_5fsettings_5fact_5f_1493',['open_settings_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#afab1e0363a4b97ff68228cd4bd7cbc62',1,'GpgFrontend::UI::MainWindow']]], + ['owner_5fbox_5f_1494',['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 8a74e7e3..6bdc65f0 100644 --- a/docs/html/search/variables_f.js +++ b/docs/html/search/variables_f.js @@ -1,7 +1,7 @@ var searchData= [ - ['paste_5fact_5f_1453',['paste_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a62ea61c38e758022ba655c6faf54322b',1,'GpgFrontend::UI::MainWindow']]], - ['pending_5ftasks_5f_1454',['pending_tasks_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a6d92421bbbfcf3136335a5173d1b2a22',1,'GpgFrontend::Thread::TaskRunner']]], - ['pgp_5fcrypt_5fbegin_1455',['PGP_CRYPT_BEGIN',['../classGpgFrontend_1_1GpgConstants.html#a237006d6db30c7e3f8de171210eb35f2',1,'GpgFrontend::GpgConstants']]], - ['print_5fact_5f_1456',['print_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8f9dd7edba23321a13ed630cdef7fdcc',1,'GpgFrontend::UI::MainWindow']]] + ['paste_5fact_5f_1495',['paste_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a62ea61c38e758022ba655c6faf54322b',1,'GpgFrontend::UI::MainWindow']]], + ['pending_5ftasks_5f_1496',['pending_tasks_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a6d92421bbbfcf3136335a5173d1b2a22',1,'GpgFrontend::Thread::TaskRunner']]], + ['pgp_5fcrypt_5fbegin_1497',['PGP_CRYPT_BEGIN',['../classGpgFrontend_1_1GpgConstants.html#a237006d6db30c7e3f8de171210eb35f2',1,'GpgFrontend::GpgConstants']]], + ['print_5fact_5f_1498',['print_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8f9dd7edba23321a13ed630cdef7fdcc',1,'GpgFrontend::UI::MainWindow']]] ]; diff --git a/docs/latex/annotated.tex b/docs/latex/annotated.tex index 34dfe8ed..06b65771 100644 --- a/docs/latex/annotated.tex +++ b/docs/latex/annotated.tex @@ -9,6 +9,7 @@ Here are the classes, structs, unions and interfaces with brief descriptions\+:\ \item\contentsline{section}{\mbox{\hyperlink{classGpgFrontend_1_1UI_1_1AppearanceTab}{Gpg\+Frontend\+::\+UI\+::\+Appearance\+Tab}} }{\pageref{classGpgFrontend_1_1UI_1_1AppearanceTab}}{} \item\contentsline{section}{\mbox{\hyperlink{classGpgFrontend_1_1ArchiveFileOperator}{Gpg\+Frontend\+::\+Archive\+File\+Operator}} }{\pageref{classGpgFrontend_1_1ArchiveFileOperator}}{} \item\contentsline{section}{\mbox{\hyperlink{structGpgFrontend_1_1ArchiveStruct}{Gpg\+Frontend\+::\+Archive\+Struct}} }{\pageref{structGpgFrontend_1_1ArchiveStruct}}{} +\item\contentsline{section}{\mbox{\hyperlink{classGpgFrontend_1_1CacheManager}{Gpg\+Frontend\+::\+Cache\+Manager}} }{\pageref{classGpgFrontend_1_1CacheManager}}{} \item\contentsline{section}{\mbox{\hyperlink{classGpgFrontend_1_1ChannelObject}{Gpg\+Frontend\+::\+Channel\+Object}} \\*Object which in channel system }{\pageref{classGpgFrontend_1_1ChannelObject}}{} \item\contentsline{section}{\mbox{\hyperlink{classGpgFrontend_1_1CharsetOperator}{Gpg\+Frontend\+::\+Charset\+Operator}} }{\pageref{classGpgFrontend_1_1CharsetOperator}}{} \item\contentsline{section}{\mbox{\hyperlink{classGpgFrontend_1_1UI_1_1ChoosePage}{Gpg\+Frontend\+::\+UI\+::\+Choose\+Page}} }{\pageref{classGpgFrontend_1_1UI_1_1ChoosePage}}{} @@ -16,6 +17,7 @@ Here are the classes, structs, unions and interfaces with brief descriptions\+:\ \item\contentsline{section}{\mbox{\hyperlink{classGpgFrontend_1_1UI_1_1CommonUtils}{Gpg\+Frontend\+::\+UI\+::\+Common\+Utils}} }{\pageref{classGpgFrontend_1_1UI_1_1CommonUtils}}{} \item\contentsline{section}{\mbox{\hyperlink{classGpgFrontend_1_1UI_1_1ConclusionPage}{Gpg\+Frontend\+::\+UI\+::\+Conclusion\+Page}} }{\pageref{classGpgFrontend_1_1UI_1_1ConclusionPage}}{} \item\contentsline{section}{\mbox{\hyperlink{classGpgFrontend_1_1CoreCommonUtil}{Gpg\+Frontend\+::\+Core\+Common\+Util}} }{\pageref{classGpgFrontend_1_1CoreCommonUtil}}{} +\item\contentsline{section}{\mbox{\hyperlink{classGpgFrontend_1_1CoreSignalStation}{Gpg\+Frontend\+::\+Core\+Signal\+Station}} }{\pageref{classGpgFrontend_1_1CoreSignalStation}}{} \item\contentsline{section}{\mbox{\hyperlink{structGpgFrontend_1_1UI_1_1MainWindow_1_1CryptoMenu}{Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::\+Crypto\+Menu}} }{\pageref{structGpgFrontend_1_1UI_1_1MainWindow_1_1CryptoMenu}}{} \item\contentsline{section}{\mbox{\hyperlink{classGpgFrontend_1_1Thread_1_1CtxCheckTask}{Gpg\+Frontend\+::\+Thread\+::\+Ctx\+Check\+Task}} }{\pageref{classGpgFrontend_1_1Thread_1_1CtxCheckTask}}{} \item\contentsline{section}{\mbox{\hyperlink{classGpgFrontend_1_1Thread_1_1Task_1_1DataObject}{Gpg\+Frontend\+::\+Thread\+::\+Task\+::\+Data\+Object}} \\*\mbox{\hyperlink{classGpgFrontend_1_1Thread_1_1Task_1_1DataObject}{Data\+Object}} to be passed to the callback function }{\pageref{classGpgFrontend_1_1Thread_1_1Task_1_1DataObject}}{} diff --git a/docs/latex/classGpgFrontend_1_1ArchiveFileOperator__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1ArchiveFileOperator__coll__graph.pdf index d410c242..ffb7449a 100644 Binary files a/docs/latex/classGpgFrontend_1_1ArchiveFileOperator__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1ArchiveFileOperator__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1CacheManager.tex b/docs/latex/classGpgFrontend_1_1CacheManager.tex new file mode 100644 index 00000000..bd9929e5 --- /dev/null +++ b/docs/latex/classGpgFrontend_1_1CacheManager.tex @@ -0,0 +1,56 @@ +\hypertarget{classGpgFrontend_1_1CacheManager}{}\doxysection{Gpg\+Frontend\+::Cache\+Manager Class Reference} +\label{classGpgFrontend_1_1CacheManager}\index{GpgFrontend::CacheManager@{GpgFrontend::CacheManager}} + + +Collaboration diagram for Gpg\+Frontend\+::Cache\+Manager\+: +\nopagebreak +\begin{figure}[H] +\begin{center} +\leavevmode +\includegraphics[width=238pt]{classGpgFrontend_1_1CacheManager__coll__graph} +\end{center} +\end{figure} +\doxysubsection*{Static Public Member Functions} +\begin{DoxyCompactItemize} +\item +static void \mbox{\hyperlink{classGpgFrontend_1_1CacheManager_a3cbc3238638dcd8b4722bfdf560c73fe}{Save\+Cache}} (std\+::string key, const nlohmann\+::json \&value) +\item +\mbox{\Hypertarget{classGpgFrontend_1_1CacheManager_aaac1a2b86867831713efa5f092abf985}\label{classGpgFrontend_1_1CacheManager_aaac1a2b86867831713efa5f092abf985}} +static nlohmann\+::json {\bfseries Load\+Cache} (std\+::string name) +\item +\mbox{\Hypertarget{classGpgFrontend_1_1CacheManager_ae5246d24c5dbafb8f9abb561217ea235}\label{classGpgFrontend_1_1CacheManager_ae5246d24c5dbafb8f9abb561217ea235}} +static void {\bfseries Clear\+All\+Cache} () +\end{DoxyCompactItemize} + + +\doxysubsection{Member Function Documentation} +\mbox{\Hypertarget{classGpgFrontend_1_1CacheManager_a3cbc3238638dcd8b4722bfdf560c73fe}\label{classGpgFrontend_1_1CacheManager_a3cbc3238638dcd8b4722bfdf560c73fe}} +\index{GpgFrontend::CacheManager@{GpgFrontend::CacheManager}!SaveCache@{SaveCache}} +\index{SaveCache@{SaveCache}!GpgFrontend::CacheManager@{GpgFrontend::CacheManager}} +\doxysubsubsection{\texorpdfstring{SaveCache()}{SaveCache()}} +{\footnotesize\ttfamily void Gpg\+Frontend\+::\+Cache\+Manager\+::\+Save\+Cache (\begin{DoxyParamCaption}\item[{std\+::string}]{key, }\item[{const nlohmann\+::json \&}]{value }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} + +Copyright (C) 2021 Saturneric + +This file is part of \mbox{\hyperlink{namespaceGpgFrontend}{Gpg\+Frontend}}. + +\mbox{\hyperlink{namespaceGpgFrontend}{Gpg\+Frontend}} is free software\+: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. + +\mbox{\hyperlink{namespaceGpgFrontend}{Gpg\+Frontend}} is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License along with \mbox{\hyperlink{namespaceGpgFrontend}{Gpg\+Frontend}}. If not, see \href{https://www.gnu.org/licenses/}{\texttt{ https\+://www.\+gnu.\+org/licenses/}}. + +The initial version of the source code is inherited from the gpg4usb project, which is under GPL-\/3.\+0-\/or-\/later. + +All the source code of \mbox{\hyperlink{namespaceGpgFrontend}{Gpg\+Frontend}} was modified and released by Saturneric\href{mailto:eric@bktus.com}{\texttt{ eric@bktus.\+com}} starting on May 12, 2021. + +SPDX-\/\+License-\/\+Identifier\+: GPL-\/3.\+0-\/or-\/later + +References Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Data\+Object\+Operator $>$\+::\+Get\+Instance(). + + + +The documentation for this class was generated from the following files\+:\begin{DoxyCompactItemize} +\item +src/core/function/Cache\+Manager.\+h\item +src/core/function/Cache\+Manager.\+cpp\end{DoxyCompactItemize} diff --git a/docs/latex/classGpgFrontend_1_1CacheManager__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1CacheManager__coll__graph.md5 new file mode 100644 index 00000000..03ce9218 --- /dev/null +++ b/docs/latex/classGpgFrontend_1_1CacheManager__coll__graph.md5 @@ -0,0 +1 @@ +ab999b5079abf1e5aba4c0035606f5da \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1CacheManager__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1CacheManager__coll__graph.pdf new file mode 100644 index 00000000..4bd0f426 Binary files /dev/null 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 c657c445..fa35713e 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 6da06dee..ced47d8e 100644 --- a/docs/latex/classGpgFrontend_1_1ChannelObject__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1ChannelObject__inherit__graph.md5 @@ -1 +1 @@ -c3a1489547b5e49226d5a00b18b2ec29 \ No newline at end of file +72de0197ec5b49d6b992f3a432b61ae2 \ 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 08080cfc..71fdc227 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 22d8c340..b123f0a7 100644 Binary files a/docs/latex/classGpgFrontend_1_1CharsetOperator__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1CharsetOperator__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1CoreCommonUtil.tex b/docs/latex/classGpgFrontend_1_1CoreCommonUtil.tex index 64401f2b..ffac5c9e 100644 --- a/docs/latex/classGpgFrontend_1_1CoreCommonUtil.tex +++ b/docs/latex/classGpgFrontend_1_1CoreCommonUtil.tex @@ -26,12 +26,28 @@ Collaboration diagram for Gpg\+Frontend\+::Core\+Common\+Util\+: \mbox{\Hypertarget{classGpgFrontend_1_1CoreCommonUtil_ae78bbd20a519cbd8b4384e443c98231e}\label{classGpgFrontend_1_1CoreCommonUtil_ae78bbd20a519cbd8b4384e443c98231e}} void {\bfseries Signal\+Gnupg\+Not\+Install} () \end{DoxyCompactItemize} +\doxysubsection*{Public Member Functions} +\begin{DoxyCompactItemize} +\item +\mbox{\Hypertarget{classGpgFrontend_1_1CoreCommonUtil_a62bb080c6c04970fd2e02a460ea91d2a}\label{classGpgFrontend_1_1CoreCommonUtil_a62bb080c6c04970fd2e02a460ea91d2a}} +void \mbox{\hyperlink{classGpgFrontend_1_1CoreCommonUtil_a62bb080c6c04970fd2e02a460ea91d2a}{Set\+Temp\+Cache\+Value}} (const std\+::string, const std\+::string) +\begin{DoxyCompactList}\small\item\em set a temp cache under a certain key \end{DoxyCompactList}\item +std\+::string \mbox{\hyperlink{classGpgFrontend_1_1CoreCommonUtil_a7689d3abb54a1cef6a826fc944d9dec7}{Get\+Temp\+Cache\+Value}} (const std\+::string) +\begin{DoxyCompactList}\small\item\em after get the temp cache, its value will be imediately ease in storage \end{DoxyCompactList}\item +void \mbox{\hyperlink{classGpgFrontend_1_1CoreCommonUtil_a354c4f7cb7f102964e43012fc10d1e52}{Reset\+Temp\+Cache\+Value}} (const std\+::string) +\begin{DoxyCompactList}\small\item\em imediately ease temp cache in storage \end{DoxyCompactList}\end{DoxyCompactItemize} \doxysubsection*{Static Public Member Functions} \begin{DoxyCompactItemize} \item \mbox{\Hypertarget{classGpgFrontend_1_1CoreCommonUtil_a8588dfa6ccb57c055f022b13e2da1e7c}\label{classGpgFrontend_1_1CoreCommonUtil_a8588dfa6ccb57c055f022b13e2da1e7c}} static \mbox{\hyperlink{classGpgFrontend_1_1CoreCommonUtil}{Core\+Common\+Util}} $\ast$ \mbox{\hyperlink{classGpgFrontend_1_1CoreCommonUtil_a8588dfa6ccb57c055f022b13e2da1e7c}{Get\+Instance}} () \begin{DoxyCompactList}\small\item\em Construct a new Core Common Util object. \end{DoxyCompactList}\end{DoxyCompactItemize} +\doxysubsection*{Private Attributes} +\begin{DoxyCompactItemize} +\item +\mbox{\Hypertarget{classGpgFrontend_1_1CoreCommonUtil_a4d36aa8744c3fb246080075ca1d81c9a}\label{classGpgFrontend_1_1CoreCommonUtil_a4d36aa8744c3fb246080075ca1d81c9a}} +std\+::map$<$ std\+::string, std\+::string $>$ {\bfseries temp\+\_\+cache\+\_\+} +\end{DoxyCompactItemize} \doxysubsection*{Static Private Attributes} \begin{DoxyCompactItemize} \item @@ -40,6 +56,43 @@ static std\+::unique\+\_\+ptr$<$ \mbox{\hyperlink{classGpgFrontend_1_1CoreCommon \end{DoxyCompactItemize} +\doxysubsection{Member Function Documentation} +\mbox{\Hypertarget{classGpgFrontend_1_1CoreCommonUtil_a7689d3abb54a1cef6a826fc944d9dec7}\label{classGpgFrontend_1_1CoreCommonUtil_a7689d3abb54a1cef6a826fc944d9dec7}} +\index{GpgFrontend::CoreCommonUtil@{GpgFrontend::CoreCommonUtil}!GetTempCacheValue@{GetTempCacheValue}} +\index{GetTempCacheValue@{GetTempCacheValue}!GpgFrontend::CoreCommonUtil@{GpgFrontend::CoreCommonUtil}} +\doxysubsubsection{\texorpdfstring{GetTempCacheValue()}{GetTempCacheValue()}} +{\footnotesize\ttfamily std\+::string Gpg\+Frontend\+::\+Core\+Common\+Util\+::\+Get\+Temp\+Cache\+Value (\begin{DoxyParamCaption}\item[{const std\+::string}]{key }\end{DoxyParamCaption})} + + + +after get the temp cache, its value will be imediately ease in storage + +\begin{DoxyReturn}{Returns} +std\+::string +\end{DoxyReturn} + + +Referenced by Gpg\+Frontend\+::\+Gpg\+Context\+::custom\+\_\+passphrase\+\_\+cb(). + +\mbox{\Hypertarget{classGpgFrontend_1_1CoreCommonUtil_a354c4f7cb7f102964e43012fc10d1e52}\label{classGpgFrontend_1_1CoreCommonUtil_a354c4f7cb7f102964e43012fc10d1e52}} +\index{GpgFrontend::CoreCommonUtil@{GpgFrontend::CoreCommonUtil}!ResetTempCacheValue@{ResetTempCacheValue}} +\index{ResetTempCacheValue@{ResetTempCacheValue}!GpgFrontend::CoreCommonUtil@{GpgFrontend::CoreCommonUtil}} +\doxysubsubsection{\texorpdfstring{ResetTempCacheValue()}{ResetTempCacheValue()}} +{\footnotesize\ttfamily void Gpg\+Frontend\+::\+Core\+Common\+Util\+::\+Reset\+Temp\+Cache\+Value (\begin{DoxyParamCaption}\item[{const std\+::string}]{key }\end{DoxyParamCaption})} + + + +imediately ease temp cache in storage + +\begin{DoxyReturn}{Returns} +std\+::string +\end{DoxyReturn} + + +Referenced by Gpg\+Frontend\+::\+UI\+::\+Key\+Gen\+Dialog\+::slot\+\_\+key\+\_\+gen\+\_\+accept(), and Gpg\+Frontend\+::\+UI\+::\+Subkey\+Generate\+Dialog\+::slot\+\_\+key\+\_\+gen\+\_\+accept(). + + + The documentation for this class was generated from the following files\+:\begin{DoxyCompactItemize} \item src/core/common/Core\+Common\+Util.\+h\item diff --git a/docs/latex/classGpgFrontend_1_1CoreCommonUtil__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1CoreCommonUtil__coll__graph.md5 index d04c7cd7..a1aaa1b5 100644 --- a/docs/latex/classGpgFrontend_1_1CoreCommonUtil__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1CoreCommonUtil__coll__graph.md5 @@ -1 +1 @@ -9cfa935ba62d1a85d2dee17bef5dcaae \ No newline at end of file +e45df041e216b503b5da54769dc807e9 \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1CoreCommonUtil__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1CoreCommonUtil__coll__graph.pdf index ec8ceb8e..50b8beff 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.md5 b/docs/latex/classGpgFrontend_1_1CoreCommonUtil__inherit__graph.md5 index 7492dc21..c9b08d9c 100644 --- a/docs/latex/classGpgFrontend_1_1CoreCommonUtil__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1CoreCommonUtil__inherit__graph.md5 @@ -1 +1 @@ -e343efa130c509a6b3b8d2d88fa52ea2 \ No newline at end of file +87f4ca5bac8c064ff0821d973183ff36 \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1CoreCommonUtil__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1CoreCommonUtil__inherit__graph.pdf index 12844060..e8db834a 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.tex b/docs/latex/classGpgFrontend_1_1CoreSignalStation.tex new file mode 100644 index 00000000..b30356e3 --- /dev/null +++ b/docs/latex/classGpgFrontend_1_1CoreSignalStation.tex @@ -0,0 +1,98 @@ +\hypertarget{classGpgFrontend_1_1CoreSignalStation}{}\doxysection{Gpg\+Frontend\+::Core\+Signal\+Station Class Reference} +\label{classGpgFrontend_1_1CoreSignalStation}\index{GpgFrontend::CoreSignalStation@{GpgFrontend::CoreSignalStation}} + + +Inheritance diagram for Gpg\+Frontend\+::Core\+Signal\+Station\+: +\nopagebreak +\begin{figure}[H] +\begin{center} +\leavevmode +\includegraphics[width=252pt]{classGpgFrontend_1_1CoreSignalStation__inherit__graph} +\end{center} +\end{figure} + + +Collaboration diagram for Gpg\+Frontend\+::Core\+Signal\+Station\+: +\nopagebreak +\begin{figure}[H] +\begin{center} +\leavevmode +\includegraphics[width=350pt]{classGpgFrontend_1_1CoreSignalStation__coll__graph} +\end{center} +\end{figure} +\doxysubsection*{Signals} +\begin{DoxyCompactItemize} +\item +\mbox{\Hypertarget{classGpgFrontend_1_1CoreSignalStation_aac91061a578d4afe738495b5c6b3883f}\label{classGpgFrontend_1_1CoreSignalStation_aac91061a578d4afe738495b5c6b3883f}} +void {\bfseries Signal\+User\+Input\+Passphrase\+Done} (QString passparase) +\item +\mbox{\Hypertarget{classGpgFrontend_1_1CoreSignalStation_af30315ec5659ca05557b4f21f5297b08}\label{classGpgFrontend_1_1CoreSignalStation_af30315ec5659ca05557b4f21f5297b08}} +void {\bfseries Signal\+Need\+User\+Input\+Passphrase} () +\end{DoxyCompactItemize} +\doxysubsection*{Static Public Member Functions} +\begin{DoxyCompactItemize} +\item +static \mbox{\hyperlink{classGpgFrontend_1_1CoreSignalStation}{Core\+Signal\+Station}} $\ast$ \mbox{\hyperlink{classGpgFrontend_1_1CoreSignalStation_a0c5893909726b919ea733de9906cfb36}{Get\+Instance}} () +\begin{DoxyCompactList}\small\item\em Get the Instance object. \end{DoxyCompactList}\end{DoxyCompactItemize} +\doxysubsection*{Static Private Attributes} +\begin{DoxyCompactItemize} +\item +static std\+::unique\+\_\+ptr$<$ \mbox{\hyperlink{classGpgFrontend_1_1CoreSignalStation}{Core\+Signal\+Station}} $>$ \mbox{\hyperlink{classGpgFrontend_1_1CoreSignalStation_a36c316a2a76fdf7c3e74dfa5f8ed6b15}{\+\_\+instance}} = nullptr +\end{DoxyCompactItemize} + + +\doxysubsection{Member Function Documentation} +\mbox{\Hypertarget{classGpgFrontend_1_1CoreSignalStation_a0c5893909726b919ea733de9906cfb36}\label{classGpgFrontend_1_1CoreSignalStation_a0c5893909726b919ea733de9906cfb36}} +\index{GpgFrontend::CoreSignalStation@{GpgFrontend::CoreSignalStation}!GetInstance@{GetInstance}} +\index{GetInstance@{GetInstance}!GpgFrontend::CoreSignalStation@{GpgFrontend::CoreSignalStation}} +\doxysubsubsection{\texorpdfstring{GetInstance()}{GetInstance()}} +{\footnotesize\ttfamily \mbox{\hyperlink{classGpgFrontend_1_1CoreSignalStation}{Gpg\+Frontend\+::\+Core\+Signal\+Station}} $\ast$ Gpg\+Frontend\+::\+Core\+Signal\+Station\+::\+Get\+Instance (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} + + + +Get the Instance object. + +\begin{DoxyReturn}{Returns} +Signal\+Station$\ast$ +\end{DoxyReturn} + + +References \+\_\+instance. + + + +Referenced by Gpg\+Frontend\+::\+UI\+::\+Common\+Utils\+::\+Common\+Utils(), Gpg\+Frontend\+::\+Gpg\+Context\+::need\+\_\+user\+\_\+input\+\_\+passphrase(), and Gpg\+Frontend\+::\+Gpg\+Context\+::post\+\_\+init\+\_\+ctx(). + + + +\doxysubsection{Member Data Documentation} +\mbox{\Hypertarget{classGpgFrontend_1_1CoreSignalStation_a36c316a2a76fdf7c3e74dfa5f8ed6b15}\label{classGpgFrontend_1_1CoreSignalStation_a36c316a2a76fdf7c3e74dfa5f8ed6b15}} +\index{GpgFrontend::CoreSignalStation@{GpgFrontend::CoreSignalStation}!\_instance@{\_instance}} +\index{\_instance@{\_instance}!GpgFrontend::CoreSignalStation@{GpgFrontend::CoreSignalStation}} +\doxysubsubsection{\texorpdfstring{\_instance}{\_instance}} +{\footnotesize\ttfamily std\+::unique\+\_\+ptr$<$ \mbox{\hyperlink{classGpgFrontend_1_1CoreSignalStation}{Gpg\+Frontend\+::\+Core\+Signal\+Station}} $>$ Gpg\+Frontend\+::\+Core\+Signal\+Station\+::\+\_\+instance = nullptr\hspace{0.3cm}{\ttfamily [static]}, {\ttfamily [private]}} + +Copyright (C) 2021 Saturneric + +This file is part of \mbox{\hyperlink{namespaceGpgFrontend}{Gpg\+Frontend}}. + +\mbox{\hyperlink{namespaceGpgFrontend}{Gpg\+Frontend}} is free software\+: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. + +\mbox{\hyperlink{namespaceGpgFrontend}{Gpg\+Frontend}} is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License along with \mbox{\hyperlink{namespaceGpgFrontend}{Gpg\+Frontend}}. If not, see \href{https://www.gnu.org/licenses/}{\texttt{ https\+://www.\+gnu.\+org/licenses/}}. + +The initial version of the source code is inherited from the gpg4usb project, which is under GPL-\/3.\+0-\/or-\/later. + +All the source code of \mbox{\hyperlink{namespaceGpgFrontend}{Gpg\+Frontend}} was modified and released by Saturneric\href{mailto:eric@bktus.com}{\texttt{ eric@bktus.\+com}} starting on May 12, 2021. + +SPDX-\/\+License-\/\+Identifier\+: GPL-\/3.\+0-\/or-\/later + +Referenced by Get\+Instance(). + + + +The documentation for this class was generated from the following files\+:\begin{DoxyCompactItemize} +\item +src/core/function/Core\+Signal\+Station.\+h\item +src/core/function/Core\+Signal\+Station.\+cpp\end{DoxyCompactItemize} diff --git a/docs/latex/classGpgFrontend_1_1CoreSignalStation__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1CoreSignalStation__coll__graph.md5 new file mode 100644 index 00000000..e20fb8a3 --- /dev/null +++ b/docs/latex/classGpgFrontend_1_1CoreSignalStation__coll__graph.md5 @@ -0,0 +1 @@ +b4dd6f2d88562a772faacae2fdd71bca \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1CoreSignalStation__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1CoreSignalStation__coll__graph.pdf new file mode 100644 index 00000000..6078c1fe Binary files /dev/null and b/docs/latex/classGpgFrontend_1_1CoreSignalStation__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1CoreSignalStation__inherit__graph.md5 b/docs/latex/classGpgFrontend_1_1CoreSignalStation__inherit__graph.md5 new file mode 100644 index 00000000..06f685da --- /dev/null +++ b/docs/latex/classGpgFrontend_1_1CoreSignalStation__inherit__graph.md5 @@ -0,0 +1 @@ +a7931d8b299bdbf628fc8b4db70f50c0 \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1CoreSignalStation__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1CoreSignalStation__inherit__graph.pdf new file mode 100644 index 00000000..7c50dfa4 Binary files /dev/null and b/docs/latex/classGpgFrontend_1_1CoreSignalStation__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1DataObjectOperator__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1DataObjectOperator__coll__graph.pdf index 858a92a7..1e1a8096 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 f7be2341..ad245750 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 cc9c3862..e787056c 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 93ce927a..0aaa67ef 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 0b2636b2..e244d621 100644 --- a/docs/latex/classGpgFrontend_1_1GlobalSettingStation.tex +++ b/docs/latex/classGpgFrontend_1_1GlobalSettingStation.tex @@ -128,7 +128,7 @@ std\+::filesystem\+::path \end{DoxyReturn} -Referenced by Gpg\+Frontend\+::\+UI\+::init\+\_\+locale(), and Gpg\+Frontend\+::\+UI\+::\+Settings\+Dialog\+::\+List\+Languages(). +Referenced by Gpg\+Frontend\+::\+UI\+::\+Settings\+Dialog\+::\+List\+Languages(). \mbox{\Hypertarget{classGpgFrontend_1_1GlobalSettingStation_a7da9b08291ef2391892f5c9375b8db23}\label{classGpgFrontend_1_1GlobalSettingStation_a7da9b08291ef2391892f5c9375b8db23}} \index{GpgFrontend::GlobalSettingStation@{GpgFrontend::GlobalSettingStation}!GetLogDir@{GetLogDir}} diff --git a/docs/latex/classGpgFrontend_1_1GlobalSettingStation__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GlobalSettingStation__coll__graph.pdf index 8253a2fe..32e86ab9 100644 Binary files a/docs/latex/classGpgFrontend_1_1GlobalSettingStation__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GlobalSettingStation__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GlobalSettingStation__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GlobalSettingStation__inherit__graph.pdf index 8253a2fe..32e86ab9 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.tex b/docs/latex/classGpgFrontend_1_1GpgAdvancedOperator.tex index ab3eecec..f412c598 100644 --- a/docs/latex/classGpgFrontend_1_1GpgAdvancedOperator.tex +++ b/docs/latex/classGpgFrontend_1_1GpgAdvancedOperator.tex @@ -25,17 +25,19 @@ Collaboration diagram for Gpg\+Frontend\+::Gpg\+Advanced\+Operator\+: \item \mbox{\hyperlink{classGpgFrontend_1_1GpgAdvancedOperator_a9233156767f1d45272b95decd18241e3}{Gpg\+Advanced\+Operator}} (int channel=\mbox{\hyperlink{classGpgFrontend_1_1SingletonFunctionObject_a50e2b3794d6553f4231eaec72d9d0a50}{Singleton\+Function\+Object\+::\+Get\+Default\+Channel}}()) \begin{DoxyCompactList}\small\item\em Construct a new Basic Operator object. \end{DoxyCompactList}\item -\mbox{\Hypertarget{classGpgFrontend_1_1GpgAdvancedOperator_a71eb87ed095754ee1e9fa79125240f3e}\label{classGpgFrontend_1_1GpgAdvancedOperator_a71eb87ed095754ee1e9fa79125240f3e}} -bool {\bfseries Clear\+Gpg\+Password\+Cache} () +bool \mbox{\hyperlink{classGpgFrontend_1_1GpgAdvancedOperator_a71eb87ed095754ee1e9fa79125240f3e}{Clear\+Gpg\+Password\+Cache}} () \item -\mbox{\Hypertarget{classGpgFrontend_1_1GpgAdvancedOperator_a6876b6ee63ff7147c274e4f9538d29ce}\label{classGpgFrontend_1_1GpgAdvancedOperator_a6876b6ee63ff7147c274e4f9538d29ce}} -bool {\bfseries Reload\+Gpg\+Components} () +bool \mbox{\hyperlink{classGpgFrontend_1_1GpgAdvancedOperator_a6876b6ee63ff7147c274e4f9538d29ce}{Reload\+Gpg\+Components}} () \item -\mbox{\Hypertarget{classGpgFrontend_1_1GpgAdvancedOperator_a5801bf4ea7391cbcc60efd2513d41041}\label{classGpgFrontend_1_1GpgAdvancedOperator_a5801bf4ea7391cbcc60efd2513d41041}} -bool {\bfseries Restart\+Gpg\+Components} () +bool \mbox{\hyperlink{classGpgFrontend_1_1GpgAdvancedOperator_a5801bf4ea7391cbcc60efd2513d41041}{Restart\+Gpg\+Components}} () \item -\mbox{\Hypertarget{classGpgFrontend_1_1GpgAdvancedOperator_a209f6d1d664ab672437198dc10ed8226}\label{classGpgFrontend_1_1GpgAdvancedOperator_a209f6d1d664ab672437198dc10ed8226}} -bool {\bfseries Reset\+Configures} () +bool \mbox{\hyperlink{classGpgFrontend_1_1GpgAdvancedOperator_a209f6d1d664ab672437198dc10ed8226}{Reset\+Configures}} () +\item +bool \mbox{\hyperlink{classGpgFrontend_1_1GpgAdvancedOperator_a07c32ba25cf6153fbc8ee585c4ba377c}{Start\+Gpg\+Agent}} () +\item +bool \mbox{\hyperlink{classGpgFrontend_1_1GpgAdvancedOperator_a46085a11235894deccd312fc259d5078}{Start\+Dirmngr}} () +\item +bool \mbox{\hyperlink{classGpgFrontend_1_1GpgAdvancedOperator_a9313410359ed9cff9ee66fa9b4b095ee}{Start\+Key\+Boxd}} () \end{DoxyCompactItemize} \doxysubsection*{Private Attributes} \begin{DoxyCompactItemize} @@ -63,6 +65,114 @@ Construct a new Basic Operator object. \end{DoxyParams} +\doxysubsection{Member Function Documentation} +\mbox{\Hypertarget{classGpgFrontend_1_1GpgAdvancedOperator_a71eb87ed095754ee1e9fa79125240f3e}\label{classGpgFrontend_1_1GpgAdvancedOperator_a71eb87ed095754ee1e9fa79125240f3e}} +\index{GpgFrontend::GpgAdvancedOperator@{GpgFrontend::GpgAdvancedOperator}!ClearGpgPasswordCache@{ClearGpgPasswordCache}} +\index{ClearGpgPasswordCache@{ClearGpgPasswordCache}!GpgFrontend::GpgAdvancedOperator@{GpgFrontend::GpgAdvancedOperator}} +\doxysubsubsection{\texorpdfstring{ClearGpgPasswordCache()}{ClearGpgPasswordCache()}} +{\footnotesize\ttfamily bool Gpg\+Frontend\+::\+Gpg\+Advanced\+Operator\+::\+Clear\+Gpg\+Password\+Cache (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +\begin{DoxyReturn}{Returns} +true + +false +\end{DoxyReturn} + + +References Gpg\+Frontend\+::\+Gpg\+Command\+Executor\+::\+Execute(), and Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Gpg\+Command\+Executor $>$\+::\+Get\+Instance(). + +\mbox{\Hypertarget{classGpgFrontend_1_1GpgAdvancedOperator_a6876b6ee63ff7147c274e4f9538d29ce}\label{classGpgFrontend_1_1GpgAdvancedOperator_a6876b6ee63ff7147c274e4f9538d29ce}} +\index{GpgFrontend::GpgAdvancedOperator@{GpgFrontend::GpgAdvancedOperator}!ReloadGpgComponents@{ReloadGpgComponents}} +\index{ReloadGpgComponents@{ReloadGpgComponents}!GpgFrontend::GpgAdvancedOperator@{GpgFrontend::GpgAdvancedOperator}} +\doxysubsubsection{\texorpdfstring{ReloadGpgComponents()}{ReloadGpgComponents()}} +{\footnotesize\ttfamily bool Gpg\+Frontend\+::\+Gpg\+Advanced\+Operator\+::\+Reload\+Gpg\+Components (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +\begin{DoxyReturn}{Returns} +true + +false +\end{DoxyReturn} + + +References Gpg\+Frontend\+::\+Gpg\+Command\+Executor\+::\+Execute(), and Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Gpg\+Command\+Executor $>$\+::\+Get\+Instance(). + +\mbox{\Hypertarget{classGpgFrontend_1_1GpgAdvancedOperator_a209f6d1d664ab672437198dc10ed8226}\label{classGpgFrontend_1_1GpgAdvancedOperator_a209f6d1d664ab672437198dc10ed8226}} +\index{GpgFrontend::GpgAdvancedOperator@{GpgFrontend::GpgAdvancedOperator}!ResetConfigures@{ResetConfigures}} +\index{ResetConfigures@{ResetConfigures}!GpgFrontend::GpgAdvancedOperator@{GpgFrontend::GpgAdvancedOperator}} +\doxysubsubsection{\texorpdfstring{ResetConfigures()}{ResetConfigures()}} +{\footnotesize\ttfamily bool Gpg\+Frontend\+::\+Gpg\+Advanced\+Operator\+::\+Reset\+Configures (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +\begin{DoxyReturn}{Returns} +true + +false +\end{DoxyReturn} + + +References Gpg\+Frontend\+::\+Gpg\+Command\+Executor\+::\+Execute(), and Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Gpg\+Command\+Executor $>$\+::\+Get\+Instance(). + +\mbox{\Hypertarget{classGpgFrontend_1_1GpgAdvancedOperator_a5801bf4ea7391cbcc60efd2513d41041}\label{classGpgFrontend_1_1GpgAdvancedOperator_a5801bf4ea7391cbcc60efd2513d41041}} +\index{GpgFrontend::GpgAdvancedOperator@{GpgFrontend::GpgAdvancedOperator}!RestartGpgComponents@{RestartGpgComponents}} +\index{RestartGpgComponents@{RestartGpgComponents}!GpgFrontend::GpgAdvancedOperator@{GpgFrontend::GpgAdvancedOperator}} +\doxysubsubsection{\texorpdfstring{RestartGpgComponents()}{RestartGpgComponents()}} +{\footnotesize\ttfamily bool Gpg\+Frontend\+::\+Gpg\+Advanced\+Operator\+::\+Restart\+Gpg\+Components (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +\begin{DoxyReturn}{Returns} +true + +false +\end{DoxyReturn} + + +References Gpg\+Frontend\+::\+Gpg\+Command\+Executor\+::\+Execute(), and Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Gpg\+Command\+Executor $>$\+::\+Get\+Instance(). + +\mbox{\Hypertarget{classGpgFrontend_1_1GpgAdvancedOperator_a46085a11235894deccd312fc259d5078}\label{classGpgFrontend_1_1GpgAdvancedOperator_a46085a11235894deccd312fc259d5078}} +\index{GpgFrontend::GpgAdvancedOperator@{GpgFrontend::GpgAdvancedOperator}!StartDirmngr@{StartDirmngr}} +\index{StartDirmngr@{StartDirmngr}!GpgFrontend::GpgAdvancedOperator@{GpgFrontend::GpgAdvancedOperator}} +\doxysubsubsection{\texorpdfstring{StartDirmngr()}{StartDirmngr()}} +{\footnotesize\ttfamily bool Gpg\+Frontend\+::\+Gpg\+Advanced\+Operator\+::\+Start\+Dirmngr (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +\begin{DoxyReturn}{Returns} +true + +false +\end{DoxyReturn} + + +References Gpg\+Frontend\+::\+Gpg\+Command\+Executor\+::\+Execute(), and Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Gpg\+Command\+Executor $>$\+::\+Get\+Instance(). + +\mbox{\Hypertarget{classGpgFrontend_1_1GpgAdvancedOperator_a07c32ba25cf6153fbc8ee585c4ba377c}\label{classGpgFrontend_1_1GpgAdvancedOperator_a07c32ba25cf6153fbc8ee585c4ba377c}} +\index{GpgFrontend::GpgAdvancedOperator@{GpgFrontend::GpgAdvancedOperator}!StartGpgAgent@{StartGpgAgent}} +\index{StartGpgAgent@{StartGpgAgent}!GpgFrontend::GpgAdvancedOperator@{GpgFrontend::GpgAdvancedOperator}} +\doxysubsubsection{\texorpdfstring{StartGpgAgent()}{StartGpgAgent()}} +{\footnotesize\ttfamily bool Gpg\+Frontend\+::\+Gpg\+Advanced\+Operator\+::\+Start\+Gpg\+Agent (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +\begin{DoxyReturn}{Returns} +true + +false +\end{DoxyReturn} + + +References Gpg\+Frontend\+::\+Gpg\+Command\+Executor\+::\+Execute(), and Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Gpg\+Command\+Executor $>$\+::\+Get\+Instance(). + +\mbox{\Hypertarget{classGpgFrontend_1_1GpgAdvancedOperator_a9313410359ed9cff9ee66fa9b4b095ee}\label{classGpgFrontend_1_1GpgAdvancedOperator_a9313410359ed9cff9ee66fa9b4b095ee}} +\index{GpgFrontend::GpgAdvancedOperator@{GpgFrontend::GpgAdvancedOperator}!StartKeyBoxd@{StartKeyBoxd}} +\index{StartKeyBoxd@{StartKeyBoxd}!GpgFrontend::GpgAdvancedOperator@{GpgFrontend::GpgAdvancedOperator}} +\doxysubsubsection{\texorpdfstring{StartKeyBoxd()}{StartKeyBoxd()}} +{\footnotesize\ttfamily bool Gpg\+Frontend\+::\+Gpg\+Advanced\+Operator\+::\+Start\+Key\+Boxd (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +\begin{DoxyReturn}{Returns} +true + +false +\end{DoxyReturn} + + +References Gpg\+Frontend\+::\+Gpg\+Command\+Executor\+::\+Execute(), and Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Gpg\+Command\+Executor $>$\+::\+Get\+Instance(). + + + \doxysubsection{Member Data Documentation} \mbox{\Hypertarget{classGpgFrontend_1_1GpgAdvancedOperator_a387ad457bb729f340f680d0b743733ad}\label{classGpgFrontend_1_1GpgAdvancedOperator_a387ad457bb729f340f680d0b743733ad}} \index{GpgFrontend::GpgAdvancedOperator@{GpgFrontend::GpgAdvancedOperator}!ctx\_@{ctx\_}} diff --git a/docs/latex/classGpgFrontend_1_1GpgAdvancedOperator__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1GpgAdvancedOperator__coll__graph.md5 index 2c9b5004..90ddb961 100644 --- a/docs/latex/classGpgFrontend_1_1GpgAdvancedOperator__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1GpgAdvancedOperator__coll__graph.md5 @@ -1 +1 @@ -d929114ffc7f326a23896dda854348dc \ No newline at end of file +c0f0682bfdf5e9769d94d6178335e04f \ 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 ca1b30c4..d34b7816 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.md5 b/docs/latex/classGpgFrontend_1_1GpgAdvancedOperator__inherit__graph.md5 index eec50a82..2e13c287 100644 --- a/docs/latex/classGpgFrontend_1_1GpgAdvancedOperator__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1GpgAdvancedOperator__inherit__graph.md5 @@ -1 +1 @@ -007b34d634f7a8521db19dcb5d0f410f \ No newline at end of file +6168f91419e2e4ca04874226d663cf25 \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1GpgAdvancedOperator__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgAdvancedOperator__inherit__graph.pdf index cf46066e..cf553402 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 6a52bbab..46ee48e2 100644 --- a/docs/latex/classGpgFrontend_1_1GpgBasicOperator__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1GpgBasicOperator__coll__graph.md5 @@ -1 +1 @@ -42af50d01862a1920d7f0774f9d3244b \ No newline at end of file +70616cf8feda65492ad4164b2c90498f \ 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 5a58a4e7..9773a4e5 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 d2b1f6a6..2a470bb0 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgBasicOperator__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgBasicOperator__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgCommandExecutor.tex b/docs/latex/classGpgFrontend_1_1GpgCommandExecutor.tex index e94edde8..6d64681f 100644 --- a/docs/latex/classGpgFrontend_1_1GpgCommandExecutor.tex +++ b/docs/latex/classGpgFrontend_1_1GpgCommandExecutor.tex @@ -103,7 +103,7 @@ References Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Task\+Runner\+Gette -Referenced by Gpg\+Frontend\+::\+Gpg\+Context\+::\+Get\+Info(). +Referenced by Gpg\+Frontend\+::\+Gpg\+Advanced\+Operator\+::\+Clear\+Gpg\+Password\+Cache(), Gpg\+Frontend\+::\+Gpg\+Context\+::\+Get\+Info(), Gpg\+Frontend\+::\+Gpg\+Advanced\+Operator\+::\+Reload\+Gpg\+Components(), Gpg\+Frontend\+::\+Gpg\+Advanced\+Operator\+::\+Reset\+Configures(), Gpg\+Frontend\+::\+Gpg\+Advanced\+Operator\+::\+Restart\+Gpg\+Components(), Gpg\+Frontend\+::\+Gpg\+Advanced\+Operator\+::\+Start\+Dirmngr(), Gpg\+Frontend\+::\+Gpg\+Advanced\+Operator\+::\+Start\+Gpg\+Agent(), and Gpg\+Frontend\+::\+Gpg\+Advanced\+Operator\+::\+Start\+Key\+Boxd(). diff --git a/docs/latex/classGpgFrontend_1_1GpgCommandExecutor__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1GpgCommandExecutor__coll__graph.md5 index 10af25f6..d0692f38 100644 --- a/docs/latex/classGpgFrontend_1_1GpgCommandExecutor__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1GpgCommandExecutor__coll__graph.md5 @@ -1 +1 @@ -36bf88c2b5a0a9ed54f52c786d363ac9 \ No newline at end of file +d9df9e99db7b9f5dac0494de44058b89 \ 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 72a00a8e..4063caa7 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 c4fcc4df..12bc4ff1 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 6ad3a0fe..43b36de6 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 939fd1e3..3d293cb9 100644 --- a/docs/latex/classGpgFrontend_1_1GpgContext.tex +++ b/docs/latex/classGpgFrontend_1_1GpgContext.tex @@ -25,6 +25,12 @@ Collaboration diagram for Gpg\+Frontend\+::Gpg\+Context\+: \item struct \mbox{\hyperlink{structGpgFrontend_1_1GpgContext_1_1__ctx__ref__deleter}{\+\_\+ctx\+\_\+ref\+\_\+deleter}} \end{DoxyCompactItemize} +\doxysubsection*{Signals} +\begin{DoxyCompactItemize} +\item +\mbox{\Hypertarget{classGpgFrontend_1_1GpgContext_a36e807be6873698b5f8d4218bdfe8732}\label{classGpgFrontend_1_1GpgContext_a36e807be6873698b5f8d4218bdfe8732}} +void {\bfseries Signal\+Need\+User\+Input\+Passphrase} () +\end{DoxyCompactItemize} \doxysubsection*{Public Member Functions} \begin{DoxyCompactItemize} \item @@ -48,6 +54,8 @@ void \mbox{\hyperlink{classGpgFrontend_1_1GpgContext_a3399fc60086ff5010a089bff48 \item static gpgme\+\_\+error\+\_\+t \mbox{\hyperlink{classGpgFrontend_1_1GpgContext_acc4234054002065dfbc5d5261a4950d4}{test\+\_\+passphrase\+\_\+cb}} (void $\ast$opaque, const char $\ast$uid\+\_\+hint, const char $\ast$passphrase\+\_\+info, int last\+\_\+was\+\_\+bad, int fd) \item +static gpgme\+\_\+error\+\_\+t \mbox{\hyperlink{classGpgFrontend_1_1GpgContext_af46f09a4f5c77429c3e782b551812ec2}{custom\+\_\+passphrase\+\_\+cb}} (void $\ast$opaque, const char $\ast$uid\+\_\+hint, const char $\ast$passphrase\+\_\+info, int last\+\_\+was\+\_\+bad, int fd) +\item static gpgme\+\_\+error\+\_\+t \mbox{\hyperlink{classGpgFrontend_1_1GpgContext_a3844cd0966134939e5c4be9a725e5271}{test\+\_\+status\+\_\+cb}} (void $\ast$hook, const char $\ast$keyword, const char $\ast$args) \end{DoxyCompactItemize} \doxysubsection*{Private Types} @@ -59,8 +67,13 @@ using {\bfseries Ctx\+Ref\+Handler} = std\+::unique\+\_\+ptr$<$ struct gpgme\+\_ \doxysubsection*{Private Member Functions} \begin{DoxyCompactItemize} \item -void \mbox{\hyperlink{classGpgFrontend_1_1GpgContext_a3377fd6a325aafc18c119431f602db9b}{init\+\_\+ctx}} () -\end{DoxyCompactItemize} +void \mbox{\hyperlink{classGpgFrontend_1_1GpgContext_aaf3f394ff1790897c315c3249b1f06fe}{post\+\_\+init\+\_\+ctx}} () +\item +std\+::string \mbox{\hyperlink{classGpgFrontend_1_1GpgContext_ac7c9b2212a77e7cede94d68243541b1b}{need\+\_\+user\+\_\+input\+\_\+passphrase}} () +\item +\mbox{\Hypertarget{classGpgFrontend_1_1GpgContext_a76fba43d1439c7811e1a9424d0c16d40}\label{classGpgFrontend_1_1GpgContext_a76fba43d1439c7811e1a9424d0c16d40}} +std\+::optional$<$ std\+::string $>$ \mbox{\hyperlink{classGpgFrontend_1_1GpgContext_a76fba43d1439c7811e1a9424d0c16d40}{check\+\_\+binary\+\_\+chacksum}} (std\+::filesystem\+::path) +\begin{DoxyCompactList}\small\item\em Construct a new std\+::check component existence object. \end{DoxyCompactList}\end{DoxyCompactItemize} \doxysubsection*{Private Attributes} \begin{DoxyCompactItemize} \item @@ -100,7 +113,7 @@ Construct a new Gpg Context object. \end{DoxyParams} -References Gpg\+Frontend\+::\+Gpg\+Info\+::\+App\+Path, Gpg\+Frontend\+::check\+\_\+gpg\+\_\+error(), Gpg\+Frontend\+::check\+\_\+gpg\+\_\+error\+\_\+2\+\_\+err\+\_\+code(), and init\+\_\+ctx(). +References Gpg\+Frontend\+::\+Gpg\+Info\+::\+App\+Path, Gpg\+Frontend\+::check\+\_\+gpg\+\_\+error(), Gpg\+Frontend\+::check\+\_\+gpg\+\_\+error\+\_\+2\+\_\+err\+\_\+code(), Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Task\+Runner\+Getter $>$\+::\+Get\+Instance(), and post\+\_\+init\+\_\+ctx(). \mbox{\Hypertarget{classGpgFrontend_1_1GpgContext_a2429d3f9daa189b4d5d8624c9f4d528b}\label{classGpgFrontend_1_1GpgContext_a2429d3f9daa189b4d5d8624c9f4d528b}} \index{GpgFrontend::GpgContext@{GpgFrontend::GpgContext}!GpgContext@{GpgContext}} @@ -120,6 +133,36 @@ Construct a new Gpg Context object. \doxysubsection{Member Function Documentation} +\mbox{\Hypertarget{classGpgFrontend_1_1GpgContext_af46f09a4f5c77429c3e782b551812ec2}\label{classGpgFrontend_1_1GpgContext_af46f09a4f5c77429c3e782b551812ec2}} +\index{GpgFrontend::GpgContext@{GpgFrontend::GpgContext}!custom\_passphrase\_cb@{custom\_passphrase\_cb}} +\index{custom\_passphrase\_cb@{custom\_passphrase\_cb}!GpgFrontend::GpgContext@{GpgFrontend::GpgContext}} +\doxysubsubsection{\texorpdfstring{custom\_passphrase\_cb()}{custom\_passphrase\_cb()}} +{\footnotesize\ttfamily gpgme\+\_\+error\+\_\+t Gpg\+Frontend\+::\+Gpg\+Context\+::custom\+\_\+passphrase\+\_\+cb (\begin{DoxyParamCaption}\item[{void $\ast$}]{opaque, }\item[{const char $\ast$}]{uid\+\_\+hint, }\item[{const char $\ast$}]{passphrase\+\_\+info, }\item[{int}]{last\+\_\+was\+\_\+bad, }\item[{int}]{fd }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} + + +\begin{DoxyParams}{Parameters} +{\em opaque} & \\ +\hline +{\em uid\+\_\+hint} & \\ +\hline +{\em passphrase\+\_\+info} & \\ +\hline +{\em last\+\_\+was\+\_\+bad} & \\ +\hline +{\em fd} & \\ +\hline +\end{DoxyParams} +\begin{DoxyReturn}{Returns} +gpgme\+\_\+error\+\_\+t +\end{DoxyReturn} + + +References Gpg\+Frontend\+::\+Core\+Common\+Util\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Gpg\+Context $>$\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Core\+Common\+Util\+::\+Get\+Temp\+Cache\+Value(), and need\+\_\+user\+\_\+input\+\_\+passphrase(). + + + +Referenced by post\+\_\+init\+\_\+ctx(). + \mbox{\Hypertarget{classGpgFrontend_1_1GpgContext_a4a8f6ff37e45979159ab375b2c7d48c3}\label{classGpgFrontend_1_1GpgContext_a4a8f6ff37e45979159ab375b2c7d48c3}} \index{GpgFrontend::GpgContext@{GpgFrontend::GpgContext}!GetInfo@{GetInfo}} \index{GetInfo@{GetInfo}!GpgFrontend::GpgContext@{GpgFrontend::GpgContext}} @@ -135,11 +178,11 @@ const \mbox{\hyperlink{classGpgFrontend_1_1GpgInfo}{Gpg\+Info}}\& \end{DoxyReturn} -References Gpg\+Frontend\+::\+Gpg\+Command\+Executor\+::\+Execute(), and Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Gpg\+Command\+Executor $>$\+::\+Get\+Instance(). +References check\+\_\+binary\+\_\+chacksum(), Gpg\+Frontend\+::\+Gpg\+Command\+Executor\+::\+Execute(), and Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Gpg\+Command\+Executor $>$\+::\+Get\+Instance(). -Referenced by Gpg\+Frontend\+::\+UI\+::\+Gnupg\+Tab\+::\+Gnupg\+Tab(), and Gpg\+Frontend\+::\+UI\+::\+Common\+Utils\+::\+Slot\+Execute\+Gpg\+Command(). +Referenced by Gpg\+Frontend\+::\+UI\+::\+Gnupg\+Tab\+::\+Gnupg\+Tab(), post\+\_\+init\+\_\+ctx(), and Gpg\+Frontend\+::\+UI\+::\+Common\+Utils\+::\+Slot\+Execute\+Gpg\+Command(). \mbox{\Hypertarget{classGpgFrontend_1_1GpgContext_a73c505a2f3d39d1638dc4d9a3e13a913}\label{classGpgFrontend_1_1GpgContext_a73c505a2f3d39d1638dc4d9a3e13a913}} \index{GpgFrontend::GpgContext@{GpgFrontend::GpgContext}!good@{good}} @@ -152,25 +195,22 @@ true false \end{DoxyReturn} -\mbox{\Hypertarget{classGpgFrontend_1_1GpgContext_a3377fd6a325aafc18c119431f602db9b}\label{classGpgFrontend_1_1GpgContext_a3377fd6a325aafc18c119431f602db9b}} -\index{GpgFrontend::GpgContext@{GpgFrontend::GpgContext}!init\_ctx@{init\_ctx}} -\index{init\_ctx@{init\_ctx}!GpgFrontend::GpgContext@{GpgFrontend::GpgContext}} -\doxysubsubsection{\texorpdfstring{init\_ctx()}{init\_ctx()}} -{\footnotesize\ttfamily void Gpg\+Frontend\+::\+Gpg\+Context\+::init\+\_\+ctx (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [private]}} +\mbox{\Hypertarget{classGpgFrontend_1_1GpgContext_ac7c9b2212a77e7cede94d68243541b1b}\label{classGpgFrontend_1_1GpgContext_ac7c9b2212a77e7cede94d68243541b1b}} +\index{GpgFrontend::GpgContext@{GpgFrontend::GpgContext}!need\_user\_input\_passphrase@{need\_user\_input\_passphrase}} +\index{need\_user\_input\_passphrase@{need\_user\_input\_passphrase}!GpgFrontend::GpgContext@{GpgFrontend::GpgContext}} +\doxysubsubsection{\texorpdfstring{need\_user\_input\_passphrase()}{need\_user\_input\_passphrase()}} +{\footnotesize\ttfamily std\+::string Gpg\+Frontend\+::\+Gpg\+Context\+::need\+\_\+user\+\_\+input\+\_\+passphrase (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [private]}} -Setting the output type must be done at the beginning +\begin{DoxyReturn}{Returns} +std\+::string +\end{DoxyReturn} -think this means ascii-\/armor -\/-\/$>$ ? -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(), Set\+Passphrase\+Cb(), test\+\_\+passphrase\+\_\+cb(), and test\+\_\+status\+\_\+cb(). +References Gpg\+Frontend\+::\+Core\+Signal\+Station\+::\+Get\+Instance(). -Referenced by Gpg\+Context(). +Referenced by custom\+\_\+passphrase\+\_\+cb(). \mbox{\Hypertarget{classGpgFrontend_1_1GpgContext_a5b419175bd9927f3d449637db8ba6524}\label{classGpgFrontend_1_1GpgContext_a5b419175bd9927f3d449637db8ba6524}} \index{GpgFrontend::GpgContext@{GpgFrontend::GpgContext}!operator gpgme\_ctx\_t@{operator gpgme\_ctx\_t}} @@ -181,6 +221,26 @@ Referenced by Gpg\+Context(). \begin{DoxyReturn}{Returns} gpgme\+\_\+ctx\+\_\+t \end{DoxyReturn} +\mbox{\Hypertarget{classGpgFrontend_1_1GpgContext_aaf3f394ff1790897c315c3249b1f06fe}\label{classGpgFrontend_1_1GpgContext_aaf3f394ff1790897c315c3249b1f06fe}} +\index{GpgFrontend::GpgContext@{GpgFrontend::GpgContext}!post\_init\_ctx@{post\_init\_ctx}} +\index{post\_init\_ctx@{post\_init\_ctx}!GpgFrontend::GpgContext@{GpgFrontend::GpgContext}} +\doxysubsubsection{\texorpdfstring{post\_init\_ctx()}{post\_init\_ctx()}} +{\footnotesize\ttfamily void Gpg\+Frontend\+::\+Gpg\+Context\+::post\+\_\+init\+\_\+ctx (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [private]}} + +Setting the output type must be done at the beginning + +think this means ascii-\/armor -\/-\/$>$ ? + +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(), Get\+Info(), Gpg\+Frontend\+::\+Core\+Signal\+Station\+::\+Get\+Instance(), Set\+Passphrase\+Cb(), test\+\_\+passphrase\+\_\+cb(), and test\+\_\+status\+\_\+cb(). + + + +Referenced by Gpg\+Context(). + \mbox{\Hypertarget{classGpgFrontend_1_1GpgContext_a3399fc60086ff5010a089bff48bbc63c}\label{classGpgFrontend_1_1GpgContext_a3399fc60086ff5010a089bff48bbc63c}} \index{GpgFrontend::GpgContext@{GpgFrontend::GpgContext}!SetPassphraseCb@{SetPassphraseCb}} \index{SetPassphraseCb@{SetPassphraseCb}!GpgFrontend::GpgContext@{GpgFrontend::GpgContext}} @@ -198,7 +258,7 @@ Set the Passphrase Cb object. \end{DoxyParams} -Referenced by init\+\_\+ctx(). +Referenced by post\+\_\+init\+\_\+ctx(). \mbox{\Hypertarget{classGpgFrontend_1_1GpgContext_acc4234054002065dfbc5d5261a4950d4}\label{classGpgFrontend_1_1GpgContext_acc4234054002065dfbc5d5261a4950d4}} \index{GpgFrontend::GpgContext@{GpgFrontend::GpgContext}!test\_passphrase\_cb@{test\_passphrase\_cb}} @@ -224,7 +284,7 @@ gpgme\+\_\+error\+\_\+t \end{DoxyReturn} -Referenced by init\+\_\+ctx(). +Referenced by post\+\_\+init\+\_\+ctx(). \mbox{\Hypertarget{classGpgFrontend_1_1GpgContext_a3844cd0966134939e5c4be9a725e5271}\label{classGpgFrontend_1_1GpgContext_a3844cd0966134939e5c4be9a725e5271}} \index{GpgFrontend::GpgContext@{GpgFrontend::GpgContext}!test\_status\_cb@{test\_status\_cb}} @@ -246,7 +306,7 @@ gpgme\+\_\+error\+\_\+t \end{DoxyReturn} -Referenced by init\+\_\+ctx(). +Referenced by post\+\_\+init\+\_\+ctx(). diff --git a/docs/latex/classGpgFrontend_1_1GpgContext__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1GpgContext__coll__graph.md5 index 9c2d697a..4802ec5f 100644 --- a/docs/latex/classGpgFrontend_1_1GpgContext__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1GpgContext__coll__graph.md5 @@ -1 +1 @@ -db120af217e13c5d35cd165bb7206cf0 \ No newline at end of file +fa46ea09774dfc826fb0a2a7c4e3905f \ 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 6fa65c9d..8f9b9d43 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.md5 b/docs/latex/classGpgFrontend_1_1GpgContext__inherit__graph.md5 index 480358a5..c7d35584 100644 --- a/docs/latex/classGpgFrontend_1_1GpgContext__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1GpgContext__inherit__graph.md5 @@ -1 +1 @@ -c0af61b80dfd682afc49da9473605a07 \ No newline at end of file +20fa5da0047764f88adf785ced3ed51b \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1GpgContext__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgContext__inherit__graph.pdf index 67388487..40ce9957 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 5a5dbb87..b496b52a 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 3cc601ae..850608bd 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 80beda47..f7d53b47 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 d691ea8c..46d378f9 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 e5ca5a5b..aa56cd04 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 e7656f91..10f9d7bb 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 e7656f91..10f9d7bb 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 fedae121..a148df9e 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 4f998886..fc7ac82c 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.tex b/docs/latex/classGpgFrontend_1_1GpgInfo.tex index bd92c32e..34649a07 100644 --- a/docs/latex/classGpgFrontend_1_1GpgInfo.tex +++ b/docs/latex/classGpgFrontend_1_1GpgInfo.tex @@ -40,9 +40,21 @@ std\+::string {\bfseries Assuan\+Path} \mbox{\Hypertarget{classGpgFrontend_1_1GpgInfo_ac8ecbf438d05dc434c77825dd38dfdf2}\label{classGpgFrontend_1_1GpgInfo_ac8ecbf438d05dc434c77825dd38dfdf2}} std\+::string {\bfseries CMSPath} \item +\mbox{\Hypertarget{classGpgFrontend_1_1GpgInfo_af6ca2e99ffc487b8e4aa251d3cb23191}\label{classGpgFrontend_1_1GpgInfo_af6ca2e99ffc487b8e4aa251d3cb23191}} +std\+::string {\bfseries Gpg\+Agent\+Path} +\item +\mbox{\Hypertarget{classGpgFrontend_1_1GpgInfo_a8c7e75d67b2438c61bbe4cebe68a7029}\label{classGpgFrontend_1_1GpgInfo_a8c7e75d67b2438c61bbe4cebe68a7029}} +std\+::string {\bfseries Dirmngr\+Path} +\item +\mbox{\Hypertarget{classGpgFrontend_1_1GpgInfo_a072503811cb59dad27040e4e8914d18b}\label{classGpgFrontend_1_1GpgInfo_a072503811cb59dad27040e4e8914d18b}} +std\+::string {\bfseries Keyboxd\+Path} +\item \mbox{\Hypertarget{classGpgFrontend_1_1GpgInfo_aaea5a9651daac0323495ce12c152dc23}\label{classGpgFrontend_1_1GpgInfo_aaea5a9651daac0323495ce12c152dc23}} std\+::string {\bfseries Gpg\+MEVersion} \item +\mbox{\Hypertarget{classGpgFrontend_1_1GpgInfo_a0c1dbdb54f880a620419fdbd8336dc5d}\label{classGpgFrontend_1_1GpgInfo_a0c1dbdb54f880a620419fdbd8336dc5d}} +std\+::string {\bfseries Gnu\+PGHome\+Path} +\item \mbox{\Hypertarget{classGpgFrontend_1_1GpgInfo_aae8f26ff084fb2541826efb7b20c3dc0}\label{classGpgFrontend_1_1GpgInfo_aae8f26ff084fb2541826efb7b20c3dc0}} std\+::map$<$ std\+::string, std\+::vector$<$ std\+::string $>$ $>$ {\bfseries Components\+Info} \item diff --git a/docs/latex/classGpgFrontend_1_1GpgInfo__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1GpgInfo__coll__graph.md5 index 0b889175..34d995b7 100644 --- a/docs/latex/classGpgFrontend_1_1GpgInfo__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1GpgInfo__coll__graph.md5 @@ -1 +1 @@ -d4e48b6f2277323ce1d7ed607325450c \ No newline at end of file +8c8cb52d058d1ff7bee8ebbd840032cb \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1GpgInfo__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgInfo__coll__graph.pdf index d5509784..36fe152d 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 e3c38c89..1aae3457 100644 --- a/docs/latex/classGpgFrontend_1_1GpgKeyGetter__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1GpgKeyGetter__coll__graph.md5 @@ -1 +1 @@ -ad47cbae7c2f3c35717c7e58e89bc8b3 \ No newline at end of file +eb844fd805d4c7e3ff0107cd6cfd9dfc \ 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 36f62a3b..d288a359 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 b43f441e..6777056d 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgKeyGetter__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgKeyGetter__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter.tex b/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter.tex index 5db328fb..f1bb8c9d 100644 --- a/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter.tex +++ b/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter.tex @@ -31,6 +31,8 @@ bool \mbox{\hyperlink{classGpgFrontend_1_1GpgKeyImportExporter_aa9fbda8f6c3fa36a \item bool \mbox{\hyperlink{classGpgFrontend_1_1GpgKeyImportExporter_a8157afa844c8bf964ce83f5de71efc5a}{Export\+Keys}} (const Key\+Args\+List \&keys, Byte\+Array\+Ptr \&out\+Buffer, bool secret=false) const \item +bool \mbox{\hyperlink{classGpgFrontend_1_1GpgKeyImportExporter_ae7d61a8c39ef7e7f1562895dbf108e68}{Export\+All\+Keys}} (Key\+Id\+Args\+List\+Ptr \&uid\+\_\+list, Byte\+Array\+Ptr \&out\+\_\+buffer, bool secret) const +\item bool \mbox{\hyperlink{classGpgFrontend_1_1GpgKeyImportExporter_a51cb18aa7302d7a48ccd1ee17f060391}{Export\+Key}} (const \mbox{\hyperlink{classGpgFrontend_1_1GpgKey}{Gpg\+Key}} \&key, Byte\+Array\+Ptr \&out\+\_\+buffer) const \item bool \mbox{\hyperlink{classGpgFrontend_1_1GpgKeyImportExporter_aa0a73314ef94f397e2ef53d40abc9731}{Export\+Key\+Open\+SSH}} (const \mbox{\hyperlink{classGpgFrontend_1_1GpgKey}{Gpg\+Key}} \&key, Byte\+Array\+Ptr \&out\+\_\+buffer) const @@ -78,6 +80,36 @@ All the source code of \mbox{\hyperlink{namespaceGpgFrontend}{Gpg\+Frontend}} wa SPDX-\/\+License-\/\+Identifier\+: GPL-\/3.\+0-\/or-\/later \doxysubsection{Member Function Documentation} +\mbox{\Hypertarget{classGpgFrontend_1_1GpgKeyImportExporter_ae7d61a8c39ef7e7f1562895dbf108e68}\label{classGpgFrontend_1_1GpgKeyImportExporter_ae7d61a8c39ef7e7f1562895dbf108e68}} +\index{GpgFrontend::GpgKeyImportExporter@{GpgFrontend::GpgKeyImportExporter}!ExportAllKeys@{ExportAllKeys}} +\index{ExportAllKeys@{ExportAllKeys}!GpgFrontend::GpgKeyImportExporter@{GpgFrontend::GpgKeyImportExporter}} +\doxysubsubsection{\texorpdfstring{ExportAllKeys()}{ExportAllKeys()}} +{\footnotesize\ttfamily bool Gpg\+Frontend\+::\+Gpg\+Key\+Import\+Exporter\+::\+Export\+All\+Keys (\begin{DoxyParamCaption}\item[{Key\+Id\+Args\+List\+Ptr \&}]{uid\+\_\+list, }\item[{Byte\+Array\+Ptr \&}]{out\+\_\+buffer, }\item[{bool}]{secret }\end{DoxyParamCaption}) const} + + +\begin{DoxyParams}{Parameters} +{\em keys} & \\ +\hline +{\em out\+Buffer} & \\ +\hline +{\em secret} & \\ +\hline +\end{DoxyParams} +\begin{DoxyReturn}{Returns} +true + +false +\end{DoxyReturn} +Export all the keys both private and public keys +\begin{DoxyParams}{Parameters} +{\em uid\+\_\+list} & key ids \\ +\hline +{\em out\+\_\+buffer} & output byte array \\ +\hline +\end{DoxyParams} +\begin{DoxyReturn}{Returns} +if success +\end{DoxyReturn} \mbox{\Hypertarget{classGpgFrontend_1_1GpgKeyImportExporter_a51cb18aa7302d7a48ccd1ee17f060391}\label{classGpgFrontend_1_1GpgKeyImportExporter_a51cb18aa7302d7a48ccd1ee17f060391}} \index{GpgFrontend::GpgKeyImportExporter@{GpgFrontend::GpgKeyImportExporter}!ExportKey@{ExportKey}} \index{ExportKey@{ExportKey}!GpgFrontend::GpgKeyImportExporter@{GpgFrontend::GpgKeyImportExporter}} diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter__coll__graph.md5 index 2cef45d9..0090ca20 100644 --- a/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter__coll__graph.md5 @@ -1 +1 @@ -e3bc03f57315b1f80e56d755b50b4d88 \ No newline at end of file +ec57e8bcedaf0e6082026cbb8a1a17e0 \ 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 54ad5221..feb16def 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.md5 b/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter__inherit__graph.md5 index 5ba241f2..ad8c2864 100644 --- a/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter__inherit__graph.md5 @@ -1 +1 @@ -9a36c0f6c79651e8e95ffc1e9ac95e88 \ No newline at end of file +d64ea2e9844850207b175a5efce4242c \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter__inherit__graph.pdf index 90ed7595..a81fe2e0 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 760afb62..e07e02ea 100644 --- a/docs/latex/classGpgFrontend_1_1GpgKeyManager__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1GpgKeyManager__coll__graph.md5 @@ -1 +1 @@ -4124c3a2f80ac3fb9b3bd0e40f264129 \ No newline at end of file +a33604896adefd9bb2084c2bf583e67b \ 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 b34950e9..9e89d6ce 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 7bcc6dc0..112b6848 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 016de13b..6aba8888 100644 --- a/docs/latex/classGpgFrontend_1_1GpgKeyOpera__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1GpgKeyOpera__coll__graph.md5 @@ -1 +1 @@ -d6a9ee9974bad7bfed4029f6a4374b0f \ No newline at end of file +f8bb329e743f80a433752b9f0f305c36 \ 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 b020c289..24193af2 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 c5021d32..f022ea34 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 dac7bf2f..aaf5cb7b 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 c11ffb31..257154b9 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 b28efccf..7fb394e1 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 759a2459..e28b01e2 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 ff141c47..1f543749 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 10818719..d8c89b78 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 285c2133..8035363c 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 034df2a7..13072e2c 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 5fa5cb0c..03968c89 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 959a0de9..15b75957 100644 --- a/docs/latex/classGpgFrontend_1_1GpgUIDOperator__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1GpgUIDOperator__coll__graph.md5 @@ -1 +1 @@ -d677a334c01c1143a2f531b9feab9bca \ No newline at end of file +7703dad29706ec9533dd3178e6168290 \ 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 d69fca10..da23b8ba 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 82e055b6..de963fb9 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 f821ccf8..d17246fd 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 db2cad8f..5af71712 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 f02330bd..17527e25 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 c21fc3f5..d90d3bde 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 372edff1..487a4d1e 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 372edff1..487a4d1e 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 92770dc1..cc1872c3 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 0ebbe015..4717e98c 100644 --- a/docs/latex/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.md5 @@ -1 +1 @@ -2a7c610fb1c5f2635126c61717ce97e6 \ No newline at end of file +b4a7e03b28e783f4ebd5d143fba6efbc \ 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 9dbad5ad..7c5cb4ed 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 a0f0cc53..b8f22b9c 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 f4eabbba..e596cb79 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 f76d5845..c9d0d48c 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 4553a16d..9dd417b4 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_1TaskRunner.tex b/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner.tex index ba6eb505..199b7354 100644 --- a/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner.tex +++ b/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner.tex @@ -7,7 +7,7 @@ Inheritance diagram for Gpg\+Frontend\+::Thread\+::Task\+Runner\+: \begin{figure}[H] \begin{center} \leavevmode -\includegraphics[width=199pt]{classGpgFrontend_1_1Thread_1_1TaskRunner__inherit__graph} +\includegraphics[width=202pt]{classGpgFrontend_1_1Thread_1_1TaskRunner__inherit__graph} \end{center} \end{figure} @@ -24,6 +24,8 @@ Collaboration diagram for Gpg\+Frontend\+::Thread\+::Task\+Runner\+: \begin{DoxyCompactItemize} \item void \mbox{\hyperlink{classGpgFrontend_1_1Thread_1_1TaskRunner_a4fae01eb0a5b296b8c4c6bf8408f1c6b}{Post\+Task}} (\mbox{\hyperlink{classGpgFrontend_1_1Thread_1_1Task}{Task}} $\ast$task) +\item +void \mbox{\hyperlink{classGpgFrontend_1_1Thread_1_1TaskRunner_aaddb0cdd8eb57aac08ca9caf8b8e6bac}{Post\+Schedule\+Task}} (\mbox{\hyperlink{classGpgFrontend_1_1Thread_1_1Task}{Task}} $\ast$task, size\+\_\+t seconds) \end{DoxyCompactItemize} \doxysubsection*{Public Member Functions} \begin{DoxyCompactItemize} @@ -76,6 +78,19 @@ The initial version of the source code is inherited from the gpg4usb project, wh The source code version of this software was modified and released by Saturneric\href{mailto:eric@bktus.com}{\texttt{ eric@bktus.\+com}}\href{mailto:eric@bktus.com}{\texttt{ eric@bktus.\+com}} starting on May 12, 2021. \doxysubsection{Member Function Documentation} +\mbox{\Hypertarget{classGpgFrontend_1_1Thread_1_1TaskRunner_aaddb0cdd8eb57aac08ca9caf8b8e6bac}\label{classGpgFrontend_1_1Thread_1_1TaskRunner_aaddb0cdd8eb57aac08ca9caf8b8e6bac}} +\index{GpgFrontend::Thread::TaskRunner@{GpgFrontend::Thread::TaskRunner}!PostScheduleTask@{PostScheduleTask}} +\index{PostScheduleTask@{PostScheduleTask}!GpgFrontend::Thread::TaskRunner@{GpgFrontend::Thread::TaskRunner}} +\doxysubsubsection{\texorpdfstring{PostScheduleTask}{PostScheduleTask}} +{\footnotesize\ttfamily void Gpg\+Frontend\+::\+Thread\+::\+Task\+Runner\+::\+Post\+Schedule\+Task (\begin{DoxyParamCaption}\item[{\mbox{\hyperlink{classGpgFrontend_1_1Thread_1_1Task}{Task}} $\ast$}]{task, }\item[{size\+\_\+t}]{seconds }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [slot]}} + + +\begin{DoxyParams}{Parameters} +{\em task} & \\ +\hline +{\em seconds} & \\ +\hline +\end{DoxyParams} \mbox{\Hypertarget{classGpgFrontend_1_1Thread_1_1TaskRunner_a4fae01eb0a5b296b8c4c6bf8408f1c6b}\label{classGpgFrontend_1_1Thread_1_1TaskRunner_a4fae01eb0a5b296b8c4c6bf8408f1c6b}} \index{GpgFrontend::Thread::TaskRunner@{GpgFrontend::Thread::TaskRunner}!PostTask@{PostTask}} \index{PostTask@{PostTask}!GpgFrontend::Thread::TaskRunner@{GpgFrontend::Thread::TaskRunner}} diff --git a/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunnerGetter__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunnerGetter__coll__graph.md5 index 7397de17..daf1f2e4 100644 --- a/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunnerGetter__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunnerGetter__coll__graph.md5 @@ -1 +1 @@ -39bb389b7383147d57f56a31ff831193 \ No newline at end of file +eb1a456c45a081b409e01d30a216e40f \ No newline at end of file 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 58744f10..31f133e3 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 560fa4cb..91ca6b48 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.md5 b/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner__coll__graph.md5 index a0d6ed74..9d1bceb6 100644 --- a/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner__coll__graph.md5 @@ -1 +1 @@ -a0a6697fc716b25cb75e0b453042f607 \ No newline at end of file +4f09c686d7736a324ef1274950f13b6d \ No newline at end of file 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 680bbe6b..d80a0c4d 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.md5 b/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner__inherit__graph.md5 index 22aa5d75..7a12ecdb 100644 --- a/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner__inherit__graph.md5 @@ -1 +1 @@ -5daeba3a81ddb384f8ac6acc5fb4cdb7 \ No newline at end of file +52621addda4d3a336c7c42110b4eb4b8 \ No newline at end of file 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 28c07698..9841cf1b 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 fe967cec..e99ba559 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 46318afb..22776ea2 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 b62b3612..da7b4fd5 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 5d79437f..0c93c1fd 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 d6c41ca2..8df47bd1 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 dca8fd6c..ad5aae16 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 dca8fd6c..ad5aae16 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 9bf651ee..43024f37 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 93d7fada..2d3a2e46 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 9953028d..8f442c21 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 9953028d..8f442c21 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ChoosePage__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ChoosePage__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils.tex b/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils.tex index ece59d0f..5a012b3a 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils.tex @@ -54,7 +54,13 @@ void {\bfseries Signal\+Gnupg\+Not\+Install} () \item \mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1CommonUtils_a1abc83bba95579aa94d0870181991a28}\label{classGpgFrontend_1_1UI_1_1CommonUtils_a1abc83bba95579aa94d0870181991a28}} void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1CommonUtils_a1abc83bba95579aa94d0870181991a28}{Signal\+Key\+Database\+Refresh\+Done}} () -\begin{DoxyCompactList}\small\item\em emit when the key database is refreshed \end{DoxyCompactList}\end{DoxyCompactItemize} +\begin{DoxyCompactList}\small\item\em emit when the key database is refreshed \end{DoxyCompactList}\item +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1CommonUtils_a1e7dff5252d5ec77c8450ad356891ebb}\label{classGpgFrontend_1_1UI_1_1CommonUtils_a1e7dff5252d5ec77c8450ad356891ebb}} +void {\bfseries Signal\+Need\+User\+Input\+Passphrase} () +\item +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1CommonUtils_a80350e7fe1cd696004c9aa2a43eab184}\label{classGpgFrontend_1_1UI_1_1CommonUtils_a80350e7fe1cd696004c9aa2a43eab184}} +void {\bfseries Signal\+User\+Input\+Passphrase\+Done} (QString passphrase) +\end{DoxyCompactItemize} \doxysubsection*{Public Member Functions} \begin{DoxyCompactItemize} \item @@ -71,7 +77,10 @@ static \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1CommonUtils}{Common\+Utils}} $ \item \mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1CommonUtils_ab4ac26378d6a07757720163eb4b1cb0e}\label{classGpgFrontend_1_1UI_1_1CommonUtils_ab4ac26378d6a07757720163eb4b1cb0e}} void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1CommonUtils_ab4ac26378d6a07757720163eb4b1cb0e}{slot\+\_\+update\+\_\+key\+\_\+status}} () -\begin{DoxyCompactList}\small\item\em update the key status when signal is emitted \end{DoxyCompactList}\end{DoxyCompactItemize} +\begin{DoxyCompactList}\small\item\em update the key status when signal is emitted \end{DoxyCompactList}\item +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1CommonUtils_aef14c7eaaf8b73bd1b8f845a5484748e}\label{classGpgFrontend_1_1UI_1_1CommonUtils_aef14c7eaaf8b73bd1b8f845a5484748e}} +void {\bfseries slot\+\_\+popup\+\_\+passphrase\+\_\+input\+\_\+dialog} () +\end{DoxyCompactItemize} \doxysubsection*{Static Private Attributes} \begin{DoxyCompactItemize} \item diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__coll__graph.md5 index b7aaa38f..246865cc 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__coll__graph.md5 @@ -1 +1 @@ -7c2d1228584c0eb98d04b4d3b0152921 \ No newline at end of file +f5b2f33e9544b7d3898ba0ab75b5294f \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__coll__graph.pdf index d2d40b21..6c3c57fc 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__inherit__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__inherit__graph.md5 index d929acfc..7e40cda8 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__inherit__graph.md5 @@ -1 +1 @@ -eb067b6bf8eec5384b32457cb65301cf \ No newline at end of file +5b6e35f639108e14d82ad457cd97e62f \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__inherit__graph.pdf index b9751661..f42f5379 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 7eb13fed..bb1a0ffd 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 7eb13fed..bb1a0ffd 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 fe9d5a9c..39bdb1fb 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 dcced4a4..302f2010 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 3db56a09..91b9dc3b 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 14f17229..3abcf972 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 58e313e5..3d4e420b 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 c29cf0dc..f46de17f 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 a4ca8d72..760c764f 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 5de02ab4..794c48d1 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 259e78f0..655226d7 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.md5 index a5bfdf5b..5105097e 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.md5 @@ -1 +1 @@ -5e082dc6edfc6949de8d0d993131cd09 \ No newline at end of file +18f239dea23d65d453c3fe850a7dc08c \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.pdf index 17d626e3..02547338 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 40827b74..be5dfc43 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 4691fdb5..2a94a6c8 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 f71e6b10..cb9ea9e8 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 08a01aa2..2cbb568f 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralTab__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralTab__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GnupgTab__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GnupgTab__coll__graph.pdf index 37f1a9b4..f8dd2ec3 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 905e8a07..8898db11 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 45a410fb..14a5bf41 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 45a410fb..14a5bf41 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 c1d522a7..3a598247 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 c1d522a7..3a598247 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 4249b445..c9238614 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 5f5edba2..78e5347d 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 db27c0e0..ed850945 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 db27c0e0..ed850945 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 aa164161..e345a82e 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 aa164161..e345a82e 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 15c3c974..67018da4 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 5637c560..c282f512 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog.tex b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog.tex index 9688bfa5..be6dce06 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog.tex @@ -89,6 +89,9 @@ QLine\+Edit $\ast$ \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1KeyGenDialog_a3453 \mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1KeyGenDialog_a3008e2a9879a8e122e422f67cf0018f8}\label{classGpgFrontend_1_1UI_1_1KeyGenDialog_a3008e2a9879a8e122e422f67cf0018f8}} QLine\+Edit $\ast$ \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1KeyGenDialog_a3008e2a9879a8e122e422f67cf0018f8}{comment\+\_\+edit\+\_\+}} \{\} \begin{DoxyCompactList}\small\item\em Line edit for the keys comment. \end{DoxyCompactList}\item +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1KeyGenDialog_a43850a47ceaeb2e693027a0672bf77f7}\label{classGpgFrontend_1_1UI_1_1KeyGenDialog_a43850a47ceaeb2e693027a0672bf77f7}} +QLine\+Edit $\ast$ {\bfseries passphrase\+\_\+edit\+\_\+} \{\} +\item \mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1KeyGenDialog_aaa9b55830c39ce854e4ede26d916a844}\label{classGpgFrontend_1_1UI_1_1KeyGenDialog_aaa9b55830c39ce854e4ede26d916a844}} QSpin\+Box $\ast$ \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1KeyGenDialog_aaa9b55830c39ce854e4ede26d916a844}{key\+\_\+size\+\_\+spin\+\_\+box\+\_\+}} \{\} \begin{DoxyCompactList}\small\item\em Spinbox for the keys size (in bit) \end{DoxyCompactList}\item @@ -300,7 +303,7 @@ create the string for key generation create error message -References check\+\_\+email\+\_\+address(), comment\+\_\+edit\+\_\+, date\+\_\+edit\+\_\+, email\+\_\+edit\+\_\+, error\+\_\+label\+\_\+, expire\+\_\+check\+\_\+box\+\_\+, Gpg\+Frontend\+::\+Gpg\+Key\+Opera\+::\+Generate\+Key(), Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Gpg\+Key\+Opera $>$\+::\+Get\+Instance(), key\+\_\+size\+\_\+spin\+\_\+box\+\_\+, and name\+\_\+edit\+\_\+. +References check\+\_\+email\+\_\+address(), comment\+\_\+edit\+\_\+, date\+\_\+edit\+\_\+, email\+\_\+edit\+\_\+, error\+\_\+label\+\_\+, expire\+\_\+check\+\_\+box\+\_\+, Gpg\+Frontend\+::\+Gpg\+Key\+Opera\+::\+Generate\+Key(), Gpg\+Frontend\+::\+Core\+Common\+Util\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Gpg\+Key\+Opera $>$\+::\+Get\+Instance(), key\+\_\+size\+\_\+spin\+\_\+box\+\_\+, name\+\_\+edit\+\_\+, Gpg\+Frontend\+::\+Core\+Common\+Util\+::\+Reset\+Temp\+Cache\+Value(), and Gpg\+Frontend\+::\+Core\+Common\+Util\+::\+Set\+Temp\+Cache\+Value(). diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.md5 index 520d918e..716abead 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.md5 @@ -1 +1 @@ -c6e7428a5adf75594575c40fb2e54c81 \ No newline at end of file +ba0356df7d6634dccec223c280a29898 \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.pdf index d3588d6a..92788d48 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.md5 index 87742b5d..f7e54f41 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.md5 @@ -1 +1 @@ -2baa4f9d48dc1be536d5e62edad511df \ No newline at end of file +c325371b0ec0aaa027b1053a28ca6b19 \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.pdf index a873097a..ec86546e 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 8a98b310..5d262175 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 8a98b310..5d262175 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 dafca317..c1ceac98 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 941716c2..807c9ffb 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyList__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyList__coll__graph.pdf index babb4821..5673cf46 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 eca82f10..030cccd3 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyList__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyList__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.pdf index 26985f3b..f1be1c74 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 c17d1e17..eee0f7c0 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 920a9dd8..f6661749 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 46ff4685..af841115 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 0d98fd69..052837b4 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 cfdf0b17..3432ab32 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 da52e7c5..38077a4e 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 c6a3a408..be074190 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 1c902eef..10f0bfd7 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 acf104a5..f6a2f322 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 b58c0ac2..45d7197f 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 3dea7830..34ed0189 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.pdf index 231938a3..b3abc23a 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 6290ad41..6b513e21 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 9b47b4ce..e396d456 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 5daac904..916c4e6d 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 cd1034a0..7e683d90 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 11dc5252..f778d9be 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 36788620..c8eef789 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 bbd951af..37a01236 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 87db914d..ad6669dd 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 f6429f09..4dce4de3 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 a48adc51..2a42ec27 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 aa7cec74..fd0292cb 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 9fd9e1a4..6aa7d0d5 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 836c4ad0..010d020a 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 c02a87f7..a201befb 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 6e8f9478..337b56a9 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.md5 index f00512a3..9a6d9d9d 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.md5 @@ -1 +1 @@ -25e96c501bdfc25c25ea7659b810b787 \ No newline at end of file +9c3af083d25bc297a72b508da727673e \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.pdf index 8740c6e6..30cba241 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 39e11da8..ac133b61 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 0d56fb4a..3a79c26e 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 ff7394bc..793aeb65 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 4544b62f..b6c059e6 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 a61acf8c..668b421c 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1PlainTextEditorPage__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1PlainTextEditorPage__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread__coll__graph.pdf index e7fc0ffa..95c08fe1 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread__inherit__graph.pdf index e7fc0ffa..95c08fe1 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestThread__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.pdf index 503d32cc..f1cd3320 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 7e010cca..ccb3073c 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 87654bc8..232e59c5 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 6a9be850..fcd76f24 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 d804c95b..4a7f7ef3 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 e64f969f..568a69fc 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SettingsObject__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SettingsObject__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SignalStation.tex b/docs/latex/classGpgFrontend_1_1UI_1_1SignalStation.tex index 4312aa1e..99ca3330 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1SignalStation.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1SignalStation.tex @@ -32,6 +32,12 @@ void {\bfseries Signal\+Key\+Database\+Refresh\+Done} () void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1SignalStation_a94d4c7d79e0deb7026083689bc5dc2ad}{Signal\+Refresh\+Info\+Board}} (const QString \&text, \mbox{\hyperlink{namespaceGpgFrontend_1_1UI_acbaebd342a317b1f067942e5144bb00d}{Info\+Board\+Status}} verify\+\_\+label\+\_\+status) \item void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1SignalStation_a7b5fb2e2c0ad238313650a08ea648ce3}{Signal\+Refresh\+Status\+Bar}} (const QString \&message, int timeout) +\item +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1SignalStation_afa0b1cced7430180fae67ad2303ce448}\label{classGpgFrontend_1_1UI_1_1SignalStation_afa0b1cced7430180fae67ad2303ce448}} +void {\bfseries Signal\+User\+Input\+Passphrase\+Done} (QString passparase) +\item +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1SignalStation_a2347964648d48b5d88994b2f504b6642}\label{classGpgFrontend_1_1UI_1_1SignalStation_a2347964648d48b5d88994b2f504b6642}} +void {\bfseries Signal\+Need\+User\+Input\+Passphrase} () \end{DoxyCompactItemize} \doxysubsection*{Static Public Member Functions} \begin{DoxyCompactItemize} 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 5a3abeda..343711f9 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 cb827477..6df1e70f 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 1e17ad83..bbee22d5 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 6b408e8c..4b6e98f0 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.tex b/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.tex index fdd94842..7efd9dde 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.tex @@ -89,6 +89,12 @@ QDate\+Time\+Edit $\ast$ \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1SubkeyGenera \mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog_afa21ac4d45a6474afc1bc594486ed8e2}\label{classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog_afa21ac4d45a6474afc1bc594486ed8e2}} QCheck\+Box $\ast$ \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog_afa21ac4d45a6474afc1bc594486ed8e2}{expire\+\_\+check\+\_\+box\+\_\+}} \{\} \begin{DoxyCompactList}\small\item\em Checkbox, if key should expire. \end{DoxyCompactList}\item +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog_a001803152c0e5bd9de7c7dd04cef8ad4}\label{classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog_a001803152c0e5bd9de7c7dd04cef8ad4}} +QCheck\+Box $\ast$ \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog_a001803152c0e5bd9de7c7dd04cef8ad4}{no\+\_\+pass\+\_\+phrase\+\_\+check\+\_\+box\+\_\+}} \{\} +\begin{DoxyCompactList}\small\item\em Checkbox, if key should expire. \end{DoxyCompactList}\item +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog_a9cbb5bcf775a873a0d866a9aa0a5acd0}\label{classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog_a9cbb5bcf775a873a0d866a9aa0a5acd0}} +QLine\+Edit $\ast$ {\bfseries passphrase\+\_\+edit\+\_\+} \{\} +\item \mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog_a5d67b8ed68062ef127ad92986a98e95a}\label{classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog_a5d67b8ed68062ef127ad92986a98e95a}} std\+::vector$<$ QCheck\+Box $\ast$ $>$ \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog_a5d67b8ed68062ef127ad92986a98e95a}{key\+\_\+usage\+\_\+check\+\_\+boxes\+\_\+}} \begin{DoxyCompactList}\small\item\em ENCR, SIGN, CERT, AUTH. \end{DoxyCompactList}\item @@ -138,7 +144,7 @@ QGroup\+Box$\ast$ \end{DoxyReturn} -References date\+\_\+edit\+\_\+, error\+\_\+label\+\_\+, expire\+\_\+check\+\_\+box\+\_\+, Gpg\+Frontend\+::\+Gen\+Key\+Info\+::\+Get\+Supported\+Subkey\+Algo(), key\+\_\+size\+\_\+spin\+\_\+box\+\_\+, and key\+\_\+type\+\_\+combo\+\_\+box\+\_\+. +References date\+\_\+edit\+\_\+, error\+\_\+label\+\_\+, expire\+\_\+check\+\_\+box\+\_\+, Gpg\+Frontend\+::\+Gen\+Key\+Info\+::\+Get\+Supported\+Subkey\+Algo(), key\+\_\+size\+\_\+spin\+\_\+box\+\_\+, key\+\_\+type\+\_\+combo\+\_\+box\+\_\+, and no\+\_\+pass\+\_\+phrase\+\_\+check\+\_\+box\+\_\+. @@ -267,7 +273,7 @@ check all line edits for false entries. Show error, when there is one, otherwise create error message -References Gpg\+Frontend\+::check\+\_\+gpg\+\_\+error\+\_\+2\+\_\+err\+\_\+code(), date\+\_\+edit\+\_\+, error\+\_\+label\+\_\+, expire\+\_\+check\+\_\+box\+\_\+, Gpg\+Frontend\+::\+Gpg\+Key\+Opera\+::\+Generate\+Subkey(), Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Gpg\+Key\+Opera $>$\+::\+Get\+Instance(), and key\+\_\+size\+\_\+spin\+\_\+box\+\_\+. +References Gpg\+Frontend\+::check\+\_\+gpg\+\_\+error\+\_\+2\+\_\+err\+\_\+code(), date\+\_\+edit\+\_\+, error\+\_\+label\+\_\+, expire\+\_\+check\+\_\+box\+\_\+, Gpg\+Frontend\+::\+Gpg\+Key\+Opera\+::\+Generate\+Subkey(), Gpg\+Frontend\+::\+Core\+Common\+Util\+::\+Get\+Instance(), Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Gpg\+Key\+Opera $>$\+::\+Get\+Instance(), key\+\_\+size\+\_\+spin\+\_\+box\+\_\+, Gpg\+Frontend\+::\+Core\+Common\+Util\+::\+Reset\+Temp\+Cache\+Value(), and Gpg\+Frontend\+::\+Core\+Common\+Util\+::\+Set\+Temp\+Cache\+Value(). diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.md5 index 97d3dbbc..47ebb559 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.md5 @@ -1 +1 @@ -6e9b0a68e1c61813348ffd37db4f04c7 \ No newline at end of file +4079f8c459d852b43de946e233af4207 \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.pdf index 39fc6ea2..44a86192 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.md5 index 8c1a5be1..f829d7c7 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.md5 @@ -1 +1 @@ -6adca92aaa9479e18c6e7d0b317d188f \ No newline at end of file +682b8d6a836a436dc4886930159f83e1 \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.pdf index 23b3416e..c1983334 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 0c7a53eb..4b45ac27 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 0c7a53eb..4b45ac27 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1TOFUInfoPage__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1TOFUInfoPage__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit.tex b/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit.tex index 1af51616..1bf862b5 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit.tex @@ -16,7 +16,7 @@ Inheritance diagram for Gpg\+Frontend\+::UI\+::Text\+Edit\+: \begin{figure}[H] \begin{center} \leavevmode -\includegraphics[width=235pt]{classGpgFrontend_1_1UI_1_1TextEdit__inherit__graph} +\includegraphics[height=550pt]{classGpgFrontend_1_1UI_1_1TextEdit__inherit__graph} \end{center} \end{figure} @@ -26,7 +26,7 @@ Collaboration diagram for Gpg\+Frontend\+::UI\+::Text\+Edit\+: \begin{figure}[H] \begin{center} \leavevmode -\includegraphics[width=235pt]{classGpgFrontend_1_1UI_1_1TextEdit__coll__graph} +\includegraphics[height=550pt]{classGpgFrontend_1_1UI_1_1TextEdit__coll__graph} \end{center} \end{figure} \doxysubsection*{Public Slots} @@ -50,13 +50,13 @@ void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1TextEdit_adca2bbfa746b5598f2a4f7 \item void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1TextEdit_a57a46ab5595622ae0b7bceef7d56bd7c}{Slot\+New\+Tab}} () \item -void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1TextEdit_a72006c9f8f45ac4d154c67f62a29446d}{Slot\+Open\+File}} (QString \&path) +void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1TextEdit_a60c73cc66a48a38c13e7890de49e86c3}{Slot\+Open\+File}} (const QString \&path) \item void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1TextEdit_a3c17fdf3abf9c4fb6ce35cfb8f0f8fc4}{slot\+New\+Help\+Tab}} (const QString \&title, const QString \&path) const \item void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1TextEdit_ae22ecadf31648f424eb8ab86bd28ef39}{Slot\+New\+File\+Tab}} () const \item -void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1TextEdit_a7544182198b729373843635bbfea082a}{Slot\+Show\+Modified}} () const +void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1TextEdit_ab24adc1adb3b9b29469992e4c444436e}{Slot\+Show\+Modified}} (bool) const \item void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1TextEdit_aa21659aa7acba98dfd6286d69e00ab9b}{Slot\+Close\+Tab}} () \item @@ -120,6 +120,8 @@ bool \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1TextEdit_a66b6f6633e7ac71e5fe8b7 void {\bfseries slot\+\_\+file\+\_\+page\+\_\+path\+\_\+changed} (const QString \&path) const \item void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1TextEdit_a12f65fbc4984c266a5df4505ecde7c42}{slot\+\_\+remove\+\_\+tab}} (int index) +\item +void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1TextEdit_a1bf57ebe1e32b12c48bb633b7dd7a4f1}{slot\+\_\+save\+\_\+status\+\_\+to\+\_\+cache\+\_\+for\+\_\+revovery}} () \end{DoxyCompactItemize} \doxysubsection*{Private Member Functions} \begin{DoxyCompactItemize} @@ -134,6 +136,9 @@ static QString \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1TextEdit_afb9b7a7d8815 \doxysubsection*{Private Attributes} \begin{DoxyCompactItemize} \item +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1TextEdit_a1d8948316e9231f50809e6fb9b337546}\label{classGpgFrontend_1_1UI_1_1TextEdit_a1d8948316e9231f50809e6fb9b337546}} +uint {\bfseries text\+\_\+page\+\_\+data\+\_\+modified\+\_\+count\+\_\+} = 0 +\item \mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1TextEdit_a747d3740a88295e6c9565788d4cf56ec}\label{classGpgFrontend_1_1UI_1_1TextEdit_a747d3740a88295e6c9565788d4cf56ec}} int \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1TextEdit_a747d3740a88295e6c9565788d4cf56ec}{count\+\_\+page\+\_\+}} \begin{DoxyCompactList}\small\item\em int containing the number of added tabs \end{DoxyCompactList}\end{DoxyCompactItemize} @@ -253,6 +258,17 @@ Remove the tab with given index {\em index} & Tab-\/number to remove \\ \hline \end{DoxyParams} +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1TextEdit_a1bf57ebe1e32b12c48bb633b7dd7a4f1}\label{classGpgFrontend_1_1UI_1_1TextEdit_a1bf57ebe1e32b12c48bb633b7dd7a4f1}} +\index{GpgFrontend::UI::TextEdit@{GpgFrontend::UI::TextEdit}!slot\_save\_status\_to\_cache\_for\_revovery@{slot\_save\_status\_to\_cache\_for\_revovery}} +\index{slot\_save\_status\_to\_cache\_for\_revovery@{slot\_save\_status\_to\_cache\_for\_revovery}!GpgFrontend::UI::TextEdit@{GpgFrontend::UI::TextEdit}} +\doxysubsubsection{\texorpdfstring{slot\_save\_status\_to\_cache\_for\_revovery}{slot\_save\_status\_to\_cache\_for\_revovery}} +{\footnotesize\ttfamily void Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::slot\+\_\+save\+\_\+status\+\_\+to\+\_\+cache\+\_\+for\+\_\+revovery (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [private]}, {\ttfamily [slot]}} + + +\begin{DoxyParams}{Parameters} +{\em index} & \\ +\hline +\end{DoxyParams} \mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1TextEdit_aa21659aa7acba98dfd6286d69e00ab9b}\label{classGpgFrontend_1_1UI_1_1TextEdit_aa21659aa7acba98dfd6286d69e00ab9b}} \index{GpgFrontend::UI::TextEdit@{GpgFrontend::UI::TextEdit}!SlotCloseTab@{SlotCloseTab}} \index{SlotCloseTab@{SlotCloseTab}!GpgFrontend::UI::TextEdit@{GpgFrontend::UI::TextEdit}} @@ -363,11 +379,11 @@ Show an Open\+File\+Doalog and open the file in a new tab. Shows an error dialog Referenced by Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::create\+\_\+actions(). -\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1TextEdit_a72006c9f8f45ac4d154c67f62a29446d}\label{classGpgFrontend_1_1UI_1_1TextEdit_a72006c9f8f45ac4d154c67f62a29446d}} +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1TextEdit_a60c73cc66a48a38c13e7890de49e86c3}\label{classGpgFrontend_1_1UI_1_1TextEdit_a60c73cc66a48a38c13e7890de49e86c3}} \index{GpgFrontend::UI::TextEdit@{GpgFrontend::UI::TextEdit}!SlotOpenFile@{SlotOpenFile}} \index{SlotOpenFile@{SlotOpenFile}!GpgFrontend::UI::TextEdit@{GpgFrontend::UI::TextEdit}} \doxysubsubsection{\texorpdfstring{SlotOpenFile}{SlotOpenFile}} -{\footnotesize\ttfamily void Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Slot\+Open\+File (\begin{DoxyParamCaption}\item[{QString \&}]{path }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [slot]}} +{\footnotesize\ttfamily void Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Slot\+Open\+File (\begin{DoxyParamCaption}\item[{const QString \&}]{path }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [slot]}} Adds a new tab with opening file by path @@ -432,11 +448,11 @@ References Gpg\+Frontend\+::\+UI\+::\+Plain\+Text\+Editor\+Page\+::\+Get\+File\+ Referenced by Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::create\+\_\+actions(). -\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1TextEdit_a7544182198b729373843635bbfea082a}\label{classGpgFrontend_1_1UI_1_1TextEdit_a7544182198b729373843635bbfea082a}} +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1TextEdit_ab24adc1adb3b9b29469992e4c444436e}\label{classGpgFrontend_1_1UI_1_1TextEdit_ab24adc1adb3b9b29469992e4c444436e}} \index{GpgFrontend::UI::TextEdit@{GpgFrontend::UI::TextEdit}!SlotShowModified@{SlotShowModified}} \index{SlotShowModified@{SlotShowModified}!GpgFrontend::UI::TextEdit@{GpgFrontend::UI::TextEdit}} \doxysubsubsection{\texorpdfstring{SlotShowModified}{SlotShowModified}} -{\footnotesize\ttfamily void Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Slot\+Show\+Modified (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption}) const\hspace{0.3cm}{\ttfamily [slot]}} +{\footnotesize\ttfamily void Gpg\+Frontend\+::\+UI\+::\+Text\+Edit\+::\+Slot\+Show\+Modified (\begin{DoxyParamCaption}\item[{bool}]{changed }\end{DoxyParamCaption}) const\hspace{0.3cm}{\ttfamily [slot]}} put a $\ast$ in front of current tabs title, if current textedit is modified \mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1TextEdit_a576e06390e65576465297d2ab8d7d474}\label{classGpgFrontend_1_1UI_1_1TextEdit_a576e06390e65576465297d2ab8d7d474}} \index{GpgFrontend::UI::TextEdit@{GpgFrontend::UI::TextEdit}!SlotSwitchTabDown@{SlotSwitchTabDown}} diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__coll__graph.md5 index 9b221e8c..a908999d 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__coll__graph.md5 @@ -1 +1 @@ -2912b69201049a78ac8e27b15dbc24ea \ No newline at end of file +e2f2e35f400a92d89edd42de689a6806 \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__coll__graph.pdf index 59ae2027..905ed492 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__inherit__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__inherit__graph.md5 index 9b221e8c..a908999d 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__inherit__graph.md5 @@ -1 +1 @@ -2912b69201049a78ac8e27b15dbc24ea \ No newline at end of file +e2f2e35f400a92d89edd42de689a6806 \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__inherit__graph.pdf index 59ae2027..905ed492 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 3d1a4b4d..9f8e9343 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 3d1a4b4d..9f8e9343 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 f170b03f..61937e5d 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 f170b03f..61937e5d 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 b7a5c5ed..ca4ac0b6 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 3f8f846c..55c5bccf 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1VerifyDetailsDialog__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox__coll__graph.pdf index 276893b8..cc20f8c8 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 53cd319f..4e42739d 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 a104159e..dca66bbe 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 7769328d..6b597acf 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 1de0a674..46ac4091 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 1de0a674..46ac4091 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1Wizard__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1Wizard__coll__graph.pdf index 7060bd3e..7dafc463 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 7060bd3e..7dafc463 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 a90a686a..0a7d3a9a 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 3c775f9d..60c151a6 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 3c775f9d..60c151a6 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 2a4f19fa..a9083a7d 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 3bd7d81d..9b0efe2b 100644 Binary files a/docs/latex/classclass__coll__graph.pdf and b/docs/latex/classclass__coll__graph.pdf differ diff --git a/docs/latex/hierarchy.tex b/docs/latex/hierarchy.tex index d73e8ebb..afe813db 100644 --- a/docs/latex/hierarchy.tex +++ b/docs/latex/hierarchy.tex @@ -6,6 +6,7 @@ This inheritance list is sorted roughly, but not completely, alphabetically\+:\b \item \contentsline{section}{Gpg\+Frontend\+::\+\_\+result\+\_\+ref\+\_\+deletor}{\pageref{structGpgFrontend_1_1__result__ref__deletor}}{} \item \contentsline{section}{Gpg\+Frontend\+::Archive\+File\+Operator}{\pageref{classGpgFrontend_1_1ArchiveFileOperator}}{} \item \contentsline{section}{Gpg\+Frontend\+::Archive\+Struct}{\pageref{structGpgFrontend_1_1ArchiveStruct}}{} +\item \contentsline{section}{Gpg\+Frontend\+::Cache\+Manager}{\pageref{classGpgFrontend_1_1CacheManager}}{} \item \contentsline{section}{Gpg\+Frontend\+::Channel\+Object}{\pageref{classGpgFrontend_1_1ChannelObject}}{} \begin{DoxyCompactList} \item \contentsline{section}{Gpg\+Frontend\+::Singleton\+Function\+Object$<$ Gpg\+UIDOperator $>$}{\pageref{classGpgFrontend_1_1SingletonFunctionObject}}{} @@ -138,6 +139,8 @@ This inheritance list is sorted roughly, but not completely, alphabetically\+:\b \end{DoxyCompactList} \item QObject\begin{DoxyCompactList} \item \contentsline{section}{Gpg\+Frontend\+::Core\+Common\+Util}{\pageref{classGpgFrontend_1_1CoreCommonUtil}}{} +\item \contentsline{section}{Gpg\+Frontend\+::Core\+Signal\+Station}{\pageref{classGpgFrontend_1_1CoreSignalStation}}{} +\item \contentsline{section}{Gpg\+Frontend\+::Gpg\+Context}{\pageref{classGpgFrontend_1_1GpgContext}}{} \item \contentsline{section}{Gpg\+Frontend\+::Thread\+::Task}{\pageref{classGpgFrontend_1_1Thread_1_1Task}}{} \begin{DoxyCompactList} \item \contentsline{section}{Gpg\+Frontend\+::Thread\+::Ctx\+Check\+Task}{\pageref{classGpgFrontend_1_1Thread_1_1CtxCheckTask}}{} diff --git a/docs/latex/namespaceGpgFrontend.tex b/docs/latex/namespaceGpgFrontend.tex index a72ae0a9..2cdf5381 100644 --- a/docs/latex/namespaceGpgFrontend.tex +++ b/docs/latex/namespaceGpgFrontend.tex @@ -18,8 +18,12 @@ struct \mbox{\hyperlink{structGpgFrontend_1_1ArchiveStruct}{Archive\+Struct}} \item class \mbox{\hyperlink{classGpgFrontend_1_1ArchiveFileOperator}{Archive\+File\+Operator}} \item +class \mbox{\hyperlink{classGpgFrontend_1_1CacheManager}{Cache\+Manager}} +\item class \mbox{\hyperlink{classGpgFrontend_1_1CharsetOperator}{Charset\+Operator}} \item +class \mbox{\hyperlink{classGpgFrontend_1_1CoreSignalStation}{Core\+Signal\+Station}} +\item class \mbox{\hyperlink{classGpgFrontend_1_1DataObjectOperator}{Data\+Object\+Operator}} \item class \mbox{\hyperlink{classGpgFrontend_1_1FileOperator}{File\+Operator}} @@ -382,7 +386,7 @@ Gpg\+Error \end{DoxyReturn} -Referenced by Gpg\+Frontend\+::\+Gpg\+Basic\+Operator\+::\+Decrypt(), Gpg\+Frontend\+::\+Gpg\+Basic\+Operator\+::\+Decrypt\+Verify(), Gpg\+Frontend\+::\+Gpg\+Key\+Opera\+::\+Delete\+Keys(), Gpg\+Frontend\+::\+Gpg\+Basic\+Operator\+::\+Encrypt(), Gpg\+Frontend\+::\+Gpg\+Basic\+Operator\+::\+Encrypt\+Sign(), Gpg\+Frontend\+::\+Gpg\+Basic\+Operator\+::\+Encrypt\+Symmetric(), Gpg\+Frontend\+::\+Gpg\+Key\+Opera\+::\+Generate\+Key(), Gpg\+Frontend\+::\+Gpg\+Key\+Opera\+::\+Generate\+Subkey(), Gpg\+Frontend\+::\+Gpg\+Context\+::\+Gpg\+Context(), Gpg\+Frontend\+::\+Gpg\+Key\+Import\+Exporter\+::\+Import\+Key(), Gpg\+Frontend\+::\+Gpg\+Context\+::init\+\_\+ctx(), Gpg\+Frontend\+::\+Gpg\+Key\+Opera\+::\+Modify\+Password(), Gpg\+Frontend\+::\+Gpg\+Key\+Opera\+::\+Modify\+TOFUPolicy(), Gpg\+Frontend\+::\+Gpg\+Key\+Manager\+::\+Rev\+Sign(), Gpg\+Frontend\+::\+Gpg\+UIDOperator\+::\+Rev\+UID(), Gpg\+Frontend\+::\+Gpg\+Key\+Manager\+::\+Set\+Expire(), Gpg\+Frontend\+::\+Gpg\+UIDOperator\+::\+Set\+Primary\+UID(), Gpg\+Frontend\+::\+Gpg\+Basic\+Operator\+::\+Set\+Signers(), Gpg\+Frontend\+::\+Gpg\+Basic\+Operator\+::\+Sign(), Gpg\+Frontend\+::\+Gpg\+Key\+Manager\+::\+Sign\+Key(), and Gpg\+Frontend\+::\+Gpg\+Basic\+Operator\+::\+Verify(). +Referenced by Gpg\+Frontend\+::\+Gpg\+Basic\+Operator\+::\+Decrypt(), Gpg\+Frontend\+::\+Gpg\+Basic\+Operator\+::\+Decrypt\+Verify(), Gpg\+Frontend\+::\+Gpg\+Key\+Opera\+::\+Delete\+Keys(), Gpg\+Frontend\+::\+Gpg\+Basic\+Operator\+::\+Encrypt(), Gpg\+Frontend\+::\+Gpg\+Basic\+Operator\+::\+Encrypt\+Sign(), Gpg\+Frontend\+::\+Gpg\+Basic\+Operator\+::\+Encrypt\+Symmetric(), Gpg\+Frontend\+::\+Gpg\+Key\+Opera\+::\+Generate\+Key(), Gpg\+Frontend\+::\+Gpg\+Key\+Opera\+::\+Generate\+Subkey(), Gpg\+Frontend\+::\+Gpg\+Context\+::\+Gpg\+Context(), Gpg\+Frontend\+::\+Gpg\+Key\+Import\+Exporter\+::\+Import\+Key(), Gpg\+Frontend\+::\+Gpg\+Key\+Opera\+::\+Modify\+Password(), Gpg\+Frontend\+::\+Gpg\+Key\+Opera\+::\+Modify\+TOFUPolicy(), Gpg\+Frontend\+::\+Gpg\+Context\+::post\+\_\+init\+\_\+ctx(), Gpg\+Frontend\+::\+Gpg\+Key\+Manager\+::\+Rev\+Sign(), Gpg\+Frontend\+::\+Gpg\+UIDOperator\+::\+Rev\+UID(), Gpg\+Frontend\+::\+Gpg\+Key\+Manager\+::\+Set\+Expire(), Gpg\+Frontend\+::\+Gpg\+UIDOperator\+::\+Set\+Primary\+UID(), Gpg\+Frontend\+::\+Gpg\+Basic\+Operator\+::\+Set\+Signers(), Gpg\+Frontend\+::\+Gpg\+Basic\+Operator\+::\+Sign(), Gpg\+Frontend\+::\+Gpg\+Key\+Manager\+::\+Sign\+Key(), and Gpg\+Frontend\+::\+Gpg\+Basic\+Operator\+::\+Verify(). \mbox{\Hypertarget{namespaceGpgFrontend_adf0fbe100c3ea1bf2f33bc0f55dfff17}\label{namespaceGpgFrontend_adf0fbe100c3ea1bf2f33bc0f55dfff17}} \index{GpgFrontend@{GpgFrontend}!check\_gpg\_error@{check\_gpg\_error}} @@ -418,7 +422,7 @@ gpg\+\_\+err\+\_\+code\+\_\+t \end{DoxyReturn} -Referenced by Gpg\+Frontend\+::\+Gpg\+UIDOperator\+::\+Add\+UID(), Gpg\+Frontend\+::\+Gpg\+File\+Opera\+::\+Decrypt\+File(), Gpg\+Frontend\+::\+Gpg\+File\+Opera\+::\+Decrypt\+Verify\+File(), Gpg\+Frontend\+::\+Gpg\+File\+Opera\+::\+Encrypt\+File(), Gpg\+Frontend\+::\+Gpg\+File\+Opera\+::\+Encrypt\+File\+Symmetric(), Gpg\+Frontend\+::\+Gpg\+File\+Opera\+::\+Encrypt\+Sign\+File(), Gpg\+Frontend\+::\+Gpg\+Key\+Import\+Exporter\+::\+Export\+Key(), Gpg\+Frontend\+::\+Gpg\+Key\+Import\+Exporter\+::\+Export\+Key\+Open\+SSH(), Gpg\+Frontend\+::\+Gpg\+Key\+Import\+Exporter\+::\+Export\+Secret\+Key(), Gpg\+Frontend\+::\+Gpg\+Key\+Import\+Exporter\+::\+Export\+Secret\+Key\+Shortest(), Gpg\+Frontend\+::\+Gpg\+Key\+Getter\+::\+Flush\+Key\+Cache(), Gpg\+Frontend\+::\+Gpg\+Key\+Opera\+::\+Generate\+Key(), Gpg\+Frontend\+::\+Gpg\+Context\+::\+Gpg\+Context(), Gpg\+Frontend\+::\+Gpg\+Context\+::init\+\_\+ctx(), Gpg\+Frontend\+::\+Gpg\+Key\+Manager\+::\+Rev\+Sign(), Gpg\+Frontend\+::\+Gpg\+UIDOperator\+::\+Rev\+UID(), Gpg\+Frontend\+::\+Gpg\+Key\+Manager\+::\+Set\+Expire(), Gpg\+Frontend\+::\+Gpg\+UIDOperator\+::\+Set\+Primary\+UID(), Gpg\+Frontend\+::\+Gpg\+File\+Opera\+::\+Sign\+File(), Gpg\+Frontend\+::\+Gpg\+Key\+Manager\+::\+Sign\+Key(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::slot\+\_\+decrypt(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::slot\+\_\+decrypt\+\_\+verify(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::slot\+\_\+encrypt(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::slot\+\_\+encrypt\+\_\+sign(), Gpg\+Frontend\+::\+UI\+::\+Subkey\+Generate\+Dialog\+::slot\+\_\+key\+\_\+gen\+\_\+accept(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::slot\+\_\+sign(), and Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::slot\+\_\+verify(). +Referenced by Gpg\+Frontend\+::\+Gpg\+UIDOperator\+::\+Add\+UID(), Gpg\+Frontend\+::\+Gpg\+File\+Opera\+::\+Decrypt\+File(), Gpg\+Frontend\+::\+Gpg\+File\+Opera\+::\+Decrypt\+Verify\+File(), Gpg\+Frontend\+::\+Gpg\+File\+Opera\+::\+Encrypt\+File(), Gpg\+Frontend\+::\+Gpg\+File\+Opera\+::\+Encrypt\+File\+Symmetric(), Gpg\+Frontend\+::\+Gpg\+File\+Opera\+::\+Encrypt\+Sign\+File(), Gpg\+Frontend\+::\+Gpg\+Key\+Import\+Exporter\+::\+Export\+Key(), Gpg\+Frontend\+::\+Gpg\+Key\+Import\+Exporter\+::\+Export\+Key\+Open\+SSH(), Gpg\+Frontend\+::\+Gpg\+Key\+Import\+Exporter\+::\+Export\+Secret\+Key(), Gpg\+Frontend\+::\+Gpg\+Key\+Import\+Exporter\+::\+Export\+Secret\+Key\+Shortest(), Gpg\+Frontend\+::\+Gpg\+Key\+Getter\+::\+Flush\+Key\+Cache(), Gpg\+Frontend\+::\+Gpg\+Key\+Opera\+::\+Generate\+Key(), Gpg\+Frontend\+::\+Gpg\+Context\+::\+Gpg\+Context(), Gpg\+Frontend\+::\+Gpg\+Context\+::post\+\_\+init\+\_\+ctx(), Gpg\+Frontend\+::\+Gpg\+Key\+Manager\+::\+Rev\+Sign(), Gpg\+Frontend\+::\+Gpg\+UIDOperator\+::\+Rev\+UID(), Gpg\+Frontend\+::\+Gpg\+Key\+Manager\+::\+Set\+Expire(), Gpg\+Frontend\+::\+Gpg\+UIDOperator\+::\+Set\+Primary\+UID(), Gpg\+Frontend\+::\+Gpg\+File\+Opera\+::\+Sign\+File(), Gpg\+Frontend\+::\+Gpg\+Key\+Manager\+::\+Sign\+Key(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::slot\+\_\+decrypt(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::slot\+\_\+decrypt\+\_\+verify(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::slot\+\_\+encrypt(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::slot\+\_\+encrypt\+\_\+sign(), Gpg\+Frontend\+::\+UI\+::\+Subkey\+Generate\+Dialog\+::slot\+\_\+key\+\_\+gen\+\_\+accept(), Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::slot\+\_\+sign(), and Gpg\+Frontend\+::\+UI\+::\+Main\+Window\+::slot\+\_\+verify(). \mbox{\Hypertarget{namespaceGpgFrontend_acff2cf5dd5b112b324fa6574ee935f79}\label{namespaceGpgFrontend_acff2cf5dd5b112b324fa6574ee935f79}} \index{GpgFrontend@{GpgFrontend}!get\_file\_extension@{get\_file\_extension}} diff --git a/docs/latex/refman.tex b/docs/latex/refman.tex index 760dddcd..c68a2703 100644 --- a/docs/latex/refman.tex +++ b/docs/latex/refman.tex @@ -194,6 +194,7 @@ \input{classGpgFrontend_1_1UI_1_1AppearanceTab} \input{classGpgFrontend_1_1ArchiveFileOperator} \input{structGpgFrontend_1_1ArchiveStruct} +\input{classGpgFrontend_1_1CacheManager} \input{classGpgFrontend_1_1ChannelObject} \input{classGpgFrontend_1_1CharsetOperator} \input{classGpgFrontend_1_1UI_1_1ChoosePage} @@ -201,6 +202,7 @@ \input{classGpgFrontend_1_1UI_1_1CommonUtils} \input{classGpgFrontend_1_1UI_1_1ConclusionPage} \input{classGpgFrontend_1_1CoreCommonUtil} +\input{classGpgFrontend_1_1CoreSignalStation} \input{structGpgFrontend_1_1UI_1_1MainWindow_1_1CryptoMenu} \input{classGpgFrontend_1_1Thread_1_1CtxCheckTask} \input{classGpgFrontend_1_1Thread_1_1Task_1_1DataObject} diff --git a/docs/latex/structGpgFrontend_1_1ArchiveStruct__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1ArchiveStruct__coll__graph.pdf index 77094f89..c5441d30 100644 Binary files a/docs/latex/structGpgFrontend_1_1ArchiveStruct__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1ArchiveStruct__coll__graph.pdf differ diff --git a/docs/latex/structGpgFrontend_1_1GpgContextInitArgs__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1GpgContextInitArgs__coll__graph.pdf index 8b95a452..fb084d85 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 a42aaeb5..e730455d 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 687bed47..e250ba42 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 ce743bad..88e855b2 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 02757e81..228a0612 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 46ede2eb..0f22bef5 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 dc720925..7635d83a 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 185db3a6..a528cff0 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 1ffc2844..50c91101 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 a11771f3..9d4ec5ab 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 e9f95391..2be6e379 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 8886491d..bd5c7494 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