diff --git a/docs/html/GeneralDialog_8h_source.html b/docs/html/GeneralDialog_8h_source.html index 87ce32d6..b9563b4a 100644 --- a/docs/html/GeneralDialog_8h_source.html +++ b/docs/html/GeneralDialog_8h_source.html @@ -131,21 +131,26 @@ $(document).ready(function(){initNavTree('GeneralDialog_8h_source.html',''); ini
53 
58  void movePosition2CenterOfParent();
59 
-
60  private slots:
-
64  void slot_restore_settings() noexcept;
+
64  [[nodiscard]] bool isRectRestored();
65 
-
69  void slot_save_settings() noexcept;
-
70 
-
71  private:
-
72  std::string name_;
-
73  QPoint pos_;
-
74  QSize size_;
-
75  QPoint parent_pos_;
-
76  QSize parent_size_;
-
77 };
-
78 } // namespace GpgFrontend::UI
-
79 
-
80 #endif // GPGFRONTEND_GENERALDIALOG_H
+
70  void showEvent(QShowEvent* event) override;
+
71 
+
72  private slots:
+
76  void slot_restore_settings() noexcept;
+
77 
+
81  void slot_save_settings() noexcept;
+
82 
+
83  private:
+
87  void update_rect_cache();
+
88 
+
89  std::string name_;
+
90  QRect rect_;
+
91  QRect parent_rect_;
+
92  bool rect_restored_ = false;
+
93 };
+
94 } // namespace GpgFrontend::UI
+
95 
+
96 #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:29
diff --git a/docs/html/GpgKeyOpera_8h_source.html b/docs/html/GpgKeyOpera_8h_source.html index 575e9d8f..81de9993 100644 --- a/docs/html/GpgKeyOpera_8h_source.html +++ b/docs/html/GpgKeyOpera_8h_source.html @@ -110,8 +110,8 @@ $(document).ready(function(){initNavTree('GpgKeyOpera_8h_source.html',''); initR
80  GpgError SetExpire(const GpgKey& key, const SubkeyId& subkey_fpr,
81  std::unique_ptr<boost::posix_time::ptime>& expires);
82 
-
89  static void GenerateRevokeCert(const GpgKey& key,
-
90  const std::string& output_file_name);
+
89  void GenerateRevokeCert(const GpgKey& key,
+
90  const std::string& output_file_name);
91 
98  GpgFrontend::GpgError ModifyPassword(const GpgKey& key);
99 
diff --git a/docs/html/KeyList_8h_source.html b/docs/html/KeyList_8h_source.html index eaac1016..c685745a 100644 --- a/docs/html/KeyList_8h_source.html +++ b/docs/html/KeyList_8h_source.html @@ -291,8 +291,8 @@ $(document).ready(function(){initNavTree('KeyList_8h_source.html',''); initResiz
GpgFrontend::UI::KeyMenuAbility
Definition: KeyList.h:73
GpgFrontend::UI::KeyTable
Definition: KeyList.h:89
GpgFrontend::UI::KeyTable::GetChecked
KeyIdArgsListPtr & GetChecked()
Get the Checked object.
Definition: KeyList.cpp:558
-
GpgFrontend::UI::KeyTable::Refresh
void Refresh(KeyLinkListPtr m_keys=nullptr)
Definition: KeyList.cpp:577
-
GpgFrontend::UI::KeyTable::SetChecked
void SetChecked(KeyIdArgsListPtr key_ids)
Set the Checked object.
Definition: KeyList.cpp:573
+
GpgFrontend::UI::KeyTable::Refresh
void Refresh(KeyLinkListPtr m_keys=nullptr)
Definition: KeyList.cpp:576
+
GpgFrontend::UI::KeyTable::SetChecked
void SetChecked(KeyIdArgsListPtr key_ids)
Set the Checked object.
Definition: KeyList.cpp:572
GpgFrontend::UI::KeyTable::KeyTable
KeyTable(QTableWidget *_key_list, KeyListRow::KeyType _select_type, KeyListColumn::InfoType _info_type, KeyTableFilter _filter=[](const GpgKey &, const KeyTable &) -> bool { return true;})
Construct a new Key Table object.
Definition: KeyList.h:109
diff --git a/docs/html/WaitingDialog_8h_source.html b/docs/html/WaitingDialog_8h_source.html index d3105db5..72cfe699 100644 --- a/docs/html/WaitingDialog_8h_source.html +++ b/docs/html/WaitingDialog_8h_source.html @@ -91,20 +91,22 @@ $(document).ready(function(){initNavTree('WaitingDialog_8h_source.html',''); ini
30 #define __UI_WAITING_DIALOG_H__
31 
32 #include "ui/GpgFrontendUI.h"
-
33 
-
34 namespace GpgFrontend::UI {
-
35 
-
40 class WaitingDialog : public QDialog {
-
41  Q_OBJECT
-
42  public:
-
49  WaitingDialog(const QString& title, QWidget* parent);
-
50 };
-
51 
-
52 } // namespace GpgFrontend::UI
-
53 
-
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
+
33 #include "ui/dialog/GeneralDialog.h"
+
34 
+
35 namespace GpgFrontend::UI {
+
36 
+
41 class WaitingDialog : public GeneralDialog {
+
42  Q_OBJECT
+
43  public:
+
50  WaitingDialog(const QString& title, QWidget* parent);
+
51 };
+
52 
+
53 } // namespace GpgFrontend::UI
+
54 
+
55 #endif // __UI_WAITING_DIALOG_H__
+
GpgFrontend::UI::GeneralDialog
Definition: GeneralDialog.h:35
+
GpgFrontend::UI::WaitingDialog
Definition: WaitingDialog.h:41
+
GpgFrontend::UI::WaitingDialog::WaitingDialog
WaitingDialog(const QString &title, QWidget *parent)
Construct a new Waiting Dialog object.
Definition: WaitingDialog.cpp:35
GpgFrontend::UI
Definition: FileReadTask.cpp:29
diff --git a/docs/html/classGpgFrontend_1_1ChannelObject__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1ChannelObject__inherit__graph.md5 index 77ef1a9c..3ff12ac2 100644 --- a/docs/html/classGpgFrontend_1_1ChannelObject__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1ChannelObject__inherit__graph.md5 @@ -1 +1 @@ -e07dbf2ba0765739eaa05bc8dfb44a8d \ No newline at end of file +761fa7df24a1ede2971ddbc7c2e3b8bc \ 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 3b125284..682b1185 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_1GpgCommandExecutor.html b/docs/html/classGpgFrontend_1_1GpgCommandExecutor.html index fb352c3e..0f4c0128 100644 --- a/docs/html/classGpgFrontend_1_1GpgCommandExecutor.html +++ b/docs/html/classGpgFrontend_1_1GpgCommandExecutor.html @@ -317,7 +317,7 @@ virtual References GpgFrontend::SingletonFunctionObject< TaskRunnerGetter >::GetInstance(), and GpgFrontend::Thread::Task::SignalTaskEnd().

-

Referenced by GpgFrontend::GpgAdvancedOperator::ClearGpgPasswordCache(), GpgFrontend::GpgContext::GetInfo(), GpgFrontend::GpgAdvancedOperator::ReloadGpgComponents(), GpgFrontend::GpgAdvancedOperator::ResetConfigures(), GpgFrontend::GpgAdvancedOperator::RestartGpgComponents(), GpgFrontend::GpgAdvancedOperator::StartDirmngr(), GpgFrontend::GpgAdvancedOperator::StartGpgAgent(), and GpgFrontend::GpgAdvancedOperator::StartKeyBoxd().

+

Referenced by GpgFrontend::GpgAdvancedOperator::ClearGpgPasswordCache(), GpgFrontend::GpgKeyOpera::GenerateRevokeCert(), GpgFrontend::GpgContext::GetInfo(), GpgFrontend::GpgAdvancedOperator::ReloadGpgComponents(), GpgFrontend::GpgAdvancedOperator::ResetConfigures(), GpgFrontend::GpgAdvancedOperator::RestartGpgComponents(), GpgFrontend::GpgAdvancedOperator::StartDirmngr(), GpgFrontend::GpgAdvancedOperator::StartGpgAgent(), and GpgFrontend::GpgAdvancedOperator::StartKeyBoxd().

diff --git a/docs/html/classGpgFrontend_1_1GpgKeyOpera-members.html b/docs/html/classGpgFrontend_1_1GpgKeyOpera-members.html index 375040f8..be2bcdfd 100644 --- a/docs/html/classGpgFrontend_1_1GpgKeyOpera-members.html +++ b/docs/html/classGpgFrontend_1_1GpgKeyOpera-members.html @@ -98,7 +98,7 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1GpgKeyOpera.html', DeleteKey(const KeyId &key_id)GpgFrontend::GpgKeyOpera DeleteKeys(KeyIdArgsListPtr key_ids)GpgFrontend::GpgKeyOpera GenerateKey(const std::unique_ptr< GenKeyInfo > &params, GpgGenKeyResult &result)GpgFrontend::GpgKeyOpera - GenerateRevokeCert(const GpgKey &key, const std::string &output_file_name)GpgFrontend::GpgKeyOperastatic + GenerateRevokeCert(const GpgKey &key, const std::string &output_file_name)GpgFrontend::GpgKeyOpera GenerateSubkey(const GpgKey &key, const std::unique_ptr< GenKeyInfo > &params)GpgFrontend::GpgKeyOpera GetAllChannelId()GpgFrontend::SingletonFunctionObject< GpgKeyOpera >inlinestatic GetChannel() constGpgFrontend::SingletonFunctionObject< GpgKeyOpera >inline diff --git a/docs/html/classGpgFrontend_1_1GpgKeyOpera.html b/docs/html/classGpgFrontend_1_1GpgKeyOpera.html index 8550fcc1..e88e665c 100644 --- a/docs/html/classGpgFrontend_1_1GpgKeyOpera.html +++ b/docs/html/classGpgFrontend_1_1GpgKeyOpera.html @@ -84,7 +84,6 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1GpgKeyOpera.html',
Public Member Functions | -Static Public Member Functions | Private Attributes | List of all members
@@ -142,6 +141,8 @@ Public Member Functions GpgError SetExpire (const GpgKey &key, const SubkeyId &subkey_fpr, std::unique_ptr< boost::posix_time::ptime > &expires)  Set the Expire object. More...
  +void GenerateRevokeCert (const GpgKey &key, const std::string &output_file_name) +  GpgFrontend::GpgError ModifyPassword (const GpgKey &key)   GpgFrontend::GpgError ModifyTOFUPolicy (const GpgKey &key, gpgme_tofu_policy_t tofu_policy) @@ -187,10 +188,13 @@ void operator= (const  Set the Channel object. More...
  - - - + + + +

-Static Public Member Functions

static void GenerateRevokeCert (const GpgKey &key, const std::string &output_file_name)
 

+Private Attributes

GpgContextctx_
 
+ @@ -210,14 +214,6 @@ Static Public Member Functions -

+Additional Inherited Members

- Static Public Member Functions inherited from GpgFrontend::SingletonFunctionObject< GpgKeyOpera >
static GpgKeyOperaGetInstance (int channel=GpgFrontend::GPGFRONTEND_DEFAULT_CHANNEL)
 Get the Instance object. More...
static int GetDefaultChannel ()
 Get the Default Channel object. More...
 
- - - -

-Private Attributes

GpgContextctx_
 
- @@ -379,9 +375,6 @@ virtual  - - - - - - - - + + + + + + + + + + - - - - - - - - + + + + + + + +

-Additional Inherited Members

- Protected Member Functions inherited from GpgFrontend::SingletonFunctionObject< GpgKeyOpera >
 SingletonFunctionObject ()=default
- - - + + + +
@@ -393,7 +386,7 @@ virtual  - + @@ -401,11 +394,6 @@ virtual  - -
void GpgFrontend::GpgKeyOpera::GenerateRevokeCert const std::string & output_file_name output_file_path 
-static
Parameters
@@ -418,6 +406,8 @@ virtual  + + + +
Returns
the process doing this job
+

References GpgFrontend::GpgCommandExecutor::Execute(), and GpgFrontend::SingletonFunctionObject< GpgCommandExecutor >::GetInstance().

+ diff --git a/docs/html/classGpgFrontend_1_1GpgKeyOpera__coll__graph.md5 b/docs/html/classGpgFrontend_1_1GpgKeyOpera__coll__graph.md5 index fe9062d8..2cb137b1 100644 --- a/docs/html/classGpgFrontend_1_1GpgKeyOpera__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1GpgKeyOpera__coll__graph.md5 @@ -1 +1 @@ -f2725a42e8f9f4ff0a2c6a0b5a81e939 \ No newline at end of file +892a93d03c5da15c2a1f3a0d02ebef09 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1GpgKeyOpera__coll__graph.png b/docs/html/classGpgFrontend_1_1GpgKeyOpera__coll__graph.png index 0b3006a1..6e9cd2c7 100644 Binary files a/docs/html/classGpgFrontend_1_1GpgKeyOpera__coll__graph.png and b/docs/html/classGpgFrontend_1_1GpgKeyOpera__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1GpgKeyOpera__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1GpgKeyOpera__inherit__graph.md5 index fe8cc77d..067b1239 100644 --- a/docs/html/classGpgFrontend_1_1GpgKeyOpera__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1GpgKeyOpera__inherit__graph.md5 @@ -1 +1 @@ -8323dcf8e28c11b61c99b714d909794a \ No newline at end of file +039650ff156bf599c3459a5c9f418f75 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1GpgKeyOpera__inherit__graph.png b/docs/html/classGpgFrontend_1_1GpgKeyOpera__inherit__graph.png index 083bbe8d..f6b5e540 100644 Binary files a/docs/html/classGpgFrontend_1_1GpgKeyOpera__inherit__graph.png and b/docs/html/classGpgFrontend_1_1GpgKeyOpera__inherit__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.md5 index 87831107..6476e4da 100644 --- a/docs/html/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.md5 @@ -1 +1 @@ -3e36b1c5013e744b90ff1a08ed8d9a68 \ No newline at end of file +96b2fd60e503e43094c1d3ec2462e814 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.png b/docs/html/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.png index c0b815f6..8d5df4a6 100644 Binary files a/docs/html/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.png and b/docs/html/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog-members.html index 34cbc8f2..b6d10c24 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog-members.html @@ -91,18 +91,19 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1AboutDialog. - - - - - - - - + + + + + + + + - - + + +
AboutDialog(int defaultIndex, QWidget *parent)GpgFrontend::UI::AboutDialogexplicit
GeneralDialog(std::string name, QWidget *parent=nullptr)GpgFrontend::UI::GeneralDialogexplicit
movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
parent_pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
parent_size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
showEvent(QShowEvent *ev) overrideGpgFrontend::UI::AboutDialogprotected
size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
isRectRestored() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
parent_rect_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
rect_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
rect_restored_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
showEvent(QShowEvent *ev) overrideGpgFrontend::UI::AboutDialogprotected
slot_restore_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot
slot_save_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot
update_tab_ (defined in GpgFrontend::UI::AboutDialog)GpgFrontend::UI::AboutDialogprivate
~GeneralDialog() override (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialog
update_rect_cache() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
update_tab_ (defined in GpgFrontend::UI::AboutDialog)GpgFrontend::UI::AboutDialogprivate
~GeneralDialog() override (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialog
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog.html index 4ddac328..074fc8c6 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog.html @@ -101,8 +101,8 @@ Inheritance diagram for GpgFrontend::UI::AboutDialog:
Inheritance graph
- - + +
@@ -111,12 +111,12 @@ Collaboration diagram for GpgFrontend::UI::AboutDialog:
Collaboration graph
- - + + - +
@@ -141,6 +141,12 @@ void 
setPosCenterOfScreen<
void movePosition2CenterOfParent ()
 
+bool isRectRestored ()
 
+void showEvent (QShowEvent *event) override
 
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.map index 95f18fef..21a91e30 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.map @@ -1,9 +1,9 @@ - - + + - + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.md5 index ad751a9b..46b52e7d 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.md5 @@ -1 +1 @@ -a3e33cebf408986f349a553374641636 \ No newline at end of file +96e3570e68e0dcf68943462a3ff5a90f \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.png index bfdbe911..e2971e97 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.map index f6c0bf5d..4c257f8b 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.map @@ -1,5 +1,5 @@ - - + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.md5 index 21d28608..b6962196 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.md5 @@ -1 +1 @@ -b8646657283c7c31b87de6d35a87a0bb \ No newline at end of file +f128bb2b741157b0f9a66b213cd0bf57 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.png index 64de06b3..4daa629c 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog-members.html index df4f59de..3195022c 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog-members.html @@ -91,18 +91,20 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1ExportKeyPac

Private Attributes

- - - - - + + + + + - - - - - - + + + + + + + +
ExportKeyPackageDialog(KeyIdArgsListPtr key_ids, QWidget *parent)GpgFrontend::UI::ExportKeyPackageDialogexplicit
GeneralDialog(std::string name, QWidget *parent=nullptr)GpgFrontend::UI::GeneralDialogexplicit
key_ids_ (defined in GpgFrontend::UI::ExportKeyPackageDialog)GpgFrontend::UI::ExportKeyPackageDialogprivate
movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
parent_pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
parent_size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
isRectRestored() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
key_ids_ (defined in GpgFrontend::UI::ExportKeyPackageDialog)GpgFrontend::UI::ExportKeyPackageDialogprivate
movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
parent_rect_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
passphrase_ (defined in GpgFrontend::UI::ExportKeyPackageDialog)GpgFrontend::UI::ExportKeyPackageDialogprivate
pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
slot_restore_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot
slot_save_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot
ui_ (defined in GpgFrontend::UI::ExportKeyPackageDialog)GpgFrontend::UI::ExportKeyPackageDialogprivate
rect_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
rect_restored_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
showEvent(QShowEvent *event) override (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
slot_restore_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot
slot_save_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot
ui_ (defined in GpgFrontend::UI::ExportKeyPackageDialog)GpgFrontend::UI::ExportKeyPackageDialogprivate
update_rect_cache() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
~GeneralDialog() override (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialog
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html index 6dc47f7c..d627855f 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html @@ -95,8 +95,8 @@ Inheritance diagram for GpgFrontend::UI::ExportKeyPackageDialog:
Inheritance graph
- - + +
@@ -105,16 +105,16 @@ Collaboration diagram for GpgFrontend::UI::ExportKeyPackageDialog:
Collaboration graph
- - + + - + - +
@@ -148,6 +148,12 @@ void  + + + +
setPosCenterOfScreen<
void movePosition2CenterOfParent ()
 
+bool isRectRestored ()
 
+void showEvent (QShowEvent *event) override
 

Constructor & Destructor Documentation

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.map index 86d56af8..2dc38018 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.map @@ -1,12 +1,12 @@ - - + + - + - + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.md5 index 231b90fd..7208ac8f 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.md5 @@ -1 +1 @@ -66c142b62f3c8cb72f33283471cd4d84 \ No newline at end of file +434d7b875d42f553a6e83d6fe2e8c3d7 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.png index 37badd2b..698e2b40 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.map index dfe95665..79e84bb5 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.map @@ -1,5 +1,5 @@ - - + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.md5 index e76135e8..233dda21 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.md5 @@ -1 +1 @@ -3c683b6affe0924739e8aa3318706e8d \ No newline at end of file +a0139c3e3162c6dcb74ac2d879f2b124 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.png index ed428c54..da668cc3 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog-members.html index 9eb457eb..4daffc31 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog-members.html @@ -90,15 +90,17 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1GeneralDialo

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

- - - - - - - - - + + + + + + + + + + +
GeneralDialog(std::string name, QWidget *parent=nullptr)GpgFrontend::UI::GeneralDialogexplicit
movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
parent_pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
parent_size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
slot_restore_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot
slot_save_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot
isRectRestored() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
parent_rect_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
rect_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
rect_restored_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
showEvent(QShowEvent *event) override (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
slot_restore_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot
slot_save_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot
update_rect_cache() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
~GeneralDialog() override (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialog
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog.html index 14e5047d..004b1017 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog.html @@ -86,6 +86,7 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1GeneralDialo Public Member Functions | Protected Member Functions | Private Slots | +Private Member Functions | Private Attributes | List of all members
@@ -97,23 +98,24 @@ Inheritance diagram for GpgFrontend::UI::GeneralDialog:
Inheritance graph
- - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + +
@@ -121,7 +123,7 @@ Collaboration diagram for GpgFrontend::UI::GeneralDialog:
Collaboration graph
- + @@ -141,6 +143,12 @@ void 
setPosCenterOfScreen<
void movePosition2CenterOfParent ()
 
+bool isRectRestored ()
 
+void showEvent (QShowEvent *event) override
 
@@ -151,23 +159,26 @@ void 

Private Slots

slot_restore_settings void slot_save_settings () noexcept
 
+ + + +

+Private Member Functions

+void update_rect_cache ()
 
- - - - - - - - + + + + + +

Private Attributes

std::string name_
 
-QPoint pos_
 
-QSize size_
 
-QPoint parent_pos_
 
-QSize parent_size_
 
+QRect rect_
 
+QRect parent_rect_
 
+bool rect_restored_ = false
 

Constructor & Destructor Documentation

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog.js b/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog.js index faf519a4..1047cbd7 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog.js +++ b/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog.js @@ -2,13 +2,15 @@ var classGpgFrontend_1_1UI_1_1GeneralDialog = [ [ "GeneralDialog", "classGpgFrontend_1_1UI_1_1GeneralDialog.html#ac9de4c49668ffaeb6916c64f878a202c", null ], [ "~GeneralDialog", "classGpgFrontend_1_1UI_1_1GeneralDialog.html#a42043895f4b33acd1531c428ae4deaa8", null ], + [ "isRectRestored", "classGpgFrontend_1_1UI_1_1GeneralDialog.html#af074bf574bb3fb2be5de5f7e3b5b539e", null ], [ "movePosition2CenterOfParent", "classGpgFrontend_1_1UI_1_1GeneralDialog.html#ad9d5be542aa422450a96dff00232ebe5", null ], [ "setPosCenterOfScreen", "classGpgFrontend_1_1UI_1_1GeneralDialog.html#abad7cff23d2426820e320ecea47b479c", null ], + [ "showEvent", "classGpgFrontend_1_1UI_1_1GeneralDialog.html#a570c723ba0cb5522f2b0c16ac28d0532", null ], [ "slot_restore_settings", "classGpgFrontend_1_1UI_1_1GeneralDialog.html#a34d01f247eee92017a2eccf697cda080", null ], [ "slot_save_settings", "classGpgFrontend_1_1UI_1_1GeneralDialog.html#a940a6ea31dff4db83f9f08d38e843a2b", null ], + [ "update_rect_cache", "classGpgFrontend_1_1UI_1_1GeneralDialog.html#ad1f20151e9556a3c481fda89cf88e585", null ], [ "name_", "classGpgFrontend_1_1UI_1_1GeneralDialog.html#ae91392293866dc302132a9fc19209d8c", null ], - [ "parent_pos_", "classGpgFrontend_1_1UI_1_1GeneralDialog.html#a871f204f01f10815e3475c103f1157af", null ], - [ "parent_size_", "classGpgFrontend_1_1UI_1_1GeneralDialog.html#a234a0a4d8c0b1b49a54f65b1aa3f9490", null ], - [ "pos_", "classGpgFrontend_1_1UI_1_1GeneralDialog.html#ad9b847aa128dfeb4ecf0064ef948e6ea", null ], - [ "size_", "classGpgFrontend_1_1UI_1_1GeneralDialog.html#aeda520454fd38920a027c1a4195a2e6f", null ] + [ "parent_rect_", "classGpgFrontend_1_1UI_1_1GeneralDialog.html#ab92573b0e63d9c792f2e1697d858cea7", null ], + [ "rect_", "classGpgFrontend_1_1UI_1_1GeneralDialog.html#a22f39850fae58b9f6c59c372b9fbb582", null ], + [ "rect_restored_", "classGpgFrontend_1_1UI_1_1GeneralDialog.html#a4e4eb414ac80ba7dd1e853ed62e1ee68", null ] ]; \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.map index 6acf3722..c2c3abe4 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.map @@ -1,5 +1,5 @@ - + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.md5 index 7ba79f9a..2a4b05cb 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.md5 @@ -1 +1 @@ -dfb384493a858ed51bb7f1b6a02893eb \ No newline at end of file +17da2b68b129726a479412e2e9ec4ec6 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.png index e893b8b9..a9cff594 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.map index 2cc872cd..1effa739 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.map @@ -1,19 +1,20 @@ - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.md5 index d14e990a..d6c695b9 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.md5 @@ -1 +1 @@ -6ee88867f15d01d194c58a382eada5a7 \ No newline at end of file +eb0212979eb6d5fc03f6a3566e9e0cf7 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.png index 006a399f..39c01aae 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog-members.html index 0f6a02e7..cf11047c 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog-members.html @@ -95,23 +95,25 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1GnuPGControl
GeneralDialog(std::string name, QWidget *parent=nullptr)GpgFrontend::UI::GeneralDialogexplicit
get_restart_needed() constGpgFrontend::UI::GnuPGControllerDialogprivate
GnuPGControllerDialog(QWidget *parent=nullptr)GpgFrontend::UI::GnuPGControllerDialogexplicit
movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
parent_pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
parent_size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
restart_needed_ (defined in GpgFrontend::UI::GnuPGControllerDialog)GpgFrontend::UI::GnuPGControllerDialogprivate
set_settings() (defined in GpgFrontend::UI::GnuPGControllerDialog)GpgFrontend::UI::GnuPGControllerDialogprivate
setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
isRectRestored() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
parent_rect_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
rect_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
rect_restored_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
restart_needed_ (defined in GpgFrontend::UI::GnuPGControllerDialog)GpgFrontend::UI::GnuPGControllerDialogprivate
set_settings() (defined in GpgFrontend::UI::GnuPGControllerDialog)GpgFrontend::UI::GnuPGControllerDialogprivate
setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
showEvent(QShowEvent *event) override (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
SignalRestartNeeded(int)GpgFrontend::UI::GnuPGControllerDialogsignal
size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
slot_restore_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot
slot_save_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot
slot_set_restart_needed(int)GpgFrontend::UI::GnuPGControllerDialogprivateslot
slot_update_custom_gnupg_install_path_label(int state) (defined in GpgFrontend::UI::GnuPGControllerDialog)GpgFrontend::UI::GnuPGControllerDialogprivateslot
slot_update_custom_key_database_path_label(int state) (defined in GpgFrontend::UI::GnuPGControllerDialog)GpgFrontend::UI::GnuPGControllerDialogprivateslot
SlotAccept() (defined in GpgFrontend::UI::GnuPGControllerDialog)GpgFrontend::UI::GnuPGControllerDialogslot
ui_ (defined in GpgFrontend::UI::GnuPGControllerDialog)GpgFrontend::UI::GnuPGControllerDialogprivate
slot_restore_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot
slot_save_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot
slot_set_restart_needed(int)GpgFrontend::UI::GnuPGControllerDialogprivateslot
slot_update_custom_gnupg_install_path_label(int state) (defined in GpgFrontend::UI::GnuPGControllerDialog)GpgFrontend::UI::GnuPGControllerDialogprivateslot
slot_update_custom_key_database_path_label(int state) (defined in GpgFrontend::UI::GnuPGControllerDialog)GpgFrontend::UI::GnuPGControllerDialogprivateslot
SlotAccept() (defined in GpgFrontend::UI::GnuPGControllerDialog)GpgFrontend::UI::GnuPGControllerDialogslot
ui_ (defined in GpgFrontend::UI::GnuPGControllerDialog)GpgFrontend::UI::GnuPGControllerDialogprivate
update_rect_cache() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
~GeneralDialog() override (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialog
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html index 9ddd5d3f..db93fefc 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html @@ -99,8 +99,8 @@ Inheritance diagram for GpgFrontend::UI::GnuPGControllerDialog:
Inheritance graph
- - + +
@@ -109,12 +109,12 @@ Collaboration diagram for GpgFrontend::UI::GnuPGControllerDialog:
Collaboration graph
- - + + - + @@ -187,6 +187,12 @@ void setPosCenterOfScreen< void movePosition2CenterOfParent ()   + +bool isRectRestored () +  + +void showEvent (QShowEvent *event) override + 

Constructor & Destructor Documentation

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__coll__graph.map index 67a597f6..7c617b75 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__coll__graph.map @@ -1,10 +1,10 @@ - - + + - + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__coll__graph.md5 index dfde6b46..205ab2b0 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__coll__graph.md5 @@ -1 +1 @@ -cb02da66b9707b88455905e3981cdabe \ No newline at end of file +48bd7c0476dde9775abda0e28ad7edb8 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__coll__graph.png index 79687772..d9345926 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__inherit__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__inherit__graph.map index 3e5e0d82..c070fbdb 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__inherit__graph.map @@ -1,5 +1,5 @@ - - + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__inherit__graph.md5 index 9546fc26..28818039 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__inherit__graph.md5 @@ -1 +1 @@ -9fd2539ba932aa4bf471b35347934e47 \ No newline at end of file +7dd46465c299ee3caf474bed5de86592 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__inherit__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__inherit__graph.png index ba679843..b2c6ad82 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__inherit__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__inherit__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog-members.html index dbd94668..45fd1554 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog-members.html @@ -90,17 +90,19 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1KeyDetailsDi

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

- - - - - - - - - - - + + + + + + + + + + + + +
GeneralDialog(std::string name, QWidget *parent=nullptr)GpgFrontend::UI::GeneralDialogexplicit
KeyDetailsDialog(const GpgKey &key, QWidget *parent=nullptr) (defined in GpgFrontend::UI::KeyDetailsDialog)GpgFrontend::UI::KeyDetailsDialogexplicit
movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
parent_pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
parent_size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
slot_restore_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot
slot_save_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot
tab_widget_ (defined in GpgFrontend::UI::KeyDetailsDialog)GpgFrontend::UI::KeyDetailsDialogprivate
isRectRestored() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
KeyDetailsDialog(const GpgKey &key, QWidget *parent=nullptr) (defined in GpgFrontend::UI::KeyDetailsDialog)GpgFrontend::UI::KeyDetailsDialogexplicit
movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
parent_rect_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
rect_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
rect_restored_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
showEvent(QShowEvent *event) override (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
slot_restore_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot
slot_save_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot
tab_widget_ (defined in GpgFrontend::UI::KeyDetailsDialog)GpgFrontend::UI::KeyDetailsDialogprivate
update_rect_cache() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
~GeneralDialog() override (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialog
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog.html index 09650c8a..4defa56e 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog.html @@ -95,8 +95,8 @@ Inheritance diagram for GpgFrontend::UI::KeyDetailsDialog:
Inheritance graph
- - + +
@@ -105,8 +105,8 @@ Collaboration diagram for GpgFrontend::UI::KeyDetailsDialog:
Collaboration graph
- - + + @@ -137,6 +137,12 @@ void setPosCenterOfScreen< void movePosition2CenterOfParent ()   + +bool isRectRestored () +  + +void showEvent (QShowEvent *event) override + 
The documentation for this class was generated from the following files:
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog.html index 4ad939c1..534182fb 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog.html @@ -98,8 +98,8 @@ Inheritance diagram for GpgFrontend::UI::KeyGenDialog:
Inheritance graph
- - + +
@@ -108,16 +108,16 @@ Collaboration diagram for GpgFrontend::UI::KeyGenDialog:
Collaboration graph
- - + + - + - +
@@ -244,6 +244,12 @@ void  + + + +
setPosCenterOfScreen<
void movePosition2CenterOfParent ()
 
+bool isRectRestored ()
 
+void showEvent (QShowEvent *event) override
 

Constructor & Destructor Documentation

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.map index 39f0090b..7db834e5 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.map @@ -1,12 +1,12 @@ - - + + - + - + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.md5 index 81ae91e4..03c2c185 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.md5 @@ -1 +1 @@ -59cf5fc14378fc61fcbfc88abe84ec81 \ No newline at end of file +62b67d508e06adf87bf4e94026fb3683 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.png index 68466c7c..902cac7b 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.map index 89422297..ced3281b 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.map @@ -1,5 +1,5 @@ - - + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.md5 index be9a4c89..5347c8de 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.md5 @@ -1 +1 @@ -74f32fddc769d595273ee4b226b23610 \ No newline at end of file +9772937746dc35b68ac046b4fcae0a41 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.png index 2f4074d7..deb4a077 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog-members.html index 929bc35f..19232dc9 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog-members.html @@ -96,19 +96,21 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1KeyImportDet general_info_box_ (defined in GpgFrontend::UI::KeyImportDetailDialog)GpgFrontend::UI::KeyImportDetailDialogprivate GeneralDialog(std::string name, QWidget *parent=nullptr)GpgFrontend::UI::GeneralDialogexplicit get_status_string(int keyStatus)GpgFrontend::UI::KeyImportDetailDialogprivatestatic - key_info_box_ (defined in GpgFrontend::UI::KeyImportDetailDialog)GpgFrontend::UI::KeyImportDetailDialogprivate - KeyImportDetailDialog(GpgImportInformation result, bool automatic, QWidget *parent=nullptr)GpgFrontend::UI::KeyImportDetailDialog - keys_table_ (defined in GpgFrontend::UI::KeyImportDetailDialog)GpgFrontend::UI::KeyImportDetailDialogprivate - m_result_ (defined in GpgFrontend::UI::KeyImportDetailDialog)GpgFrontend::UI::KeyImportDetailDialogprivate - movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected - name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - parent_pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - parent_size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected - size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - slot_restore_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot - slot_save_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot + isRectRestored() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected + key_info_box_ (defined in GpgFrontend::UI::KeyImportDetailDialog)GpgFrontend::UI::KeyImportDetailDialogprivate + KeyImportDetailDialog(GpgImportInformation result, bool automatic, QWidget *parent=nullptr)GpgFrontend::UI::KeyImportDetailDialog + keys_table_ (defined in GpgFrontend::UI::KeyImportDetailDialog)GpgFrontend::UI::KeyImportDetailDialogprivate + m_result_ (defined in GpgFrontend::UI::KeyImportDetailDialog)GpgFrontend::UI::KeyImportDetailDialogprivate + movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected + name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate + parent_rect_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate + rect_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate + rect_restored_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate + setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected + showEvent(QShowEvent *event) override (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected + slot_restore_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot + slot_save_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot + update_rect_cache() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate ~GeneralDialog() override (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialog diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html index e3a2ae04..342e6dc5 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html @@ -97,8 +97,8 @@ Inheritance diagram for GpgFrontend::UI::KeyImportDetailDialog:
Inheritance graph
- - + +
@@ -107,15 +107,15 @@ Collaboration diagram for GpgFrontend::UI::KeyImportDetailDialog:
Collaboration graph
- - + + - + - - - + + +
@@ -177,6 +177,12 @@ void setPosCenterOfScreen< void movePosition2CenterOfParent ()   + +bool isRectRestored () +  + +void showEvent (QShowEvent *event) override + 

Constructor & Destructor Documentation

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.map index ab00bf23..2cc4885c 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.map @@ -1,12 +1,12 @@ - - + + - + - - - + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.md5 index 6d0f7836..5e605852 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.md5 @@ -1 +1 @@ -55b7362c2a0c2cebfc6d69aae5bcf382 \ No newline at end of file +c10c72c159b174efa2a92fdeb5859776 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.png index 7841c807..8a6b6b9e 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.map index c73933b6..4cbddd04 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.map @@ -1,5 +1,5 @@ - - + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.md5 index 5bcaf175..dcab25ac 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.md5 @@ -1 +1 @@ -c5256b3b2554792025c908f398fd1ff1 \ No newline at end of file +b68178159bcedb5b2b7ac3a300a6d20c \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.png index fc4bfd3e..2fdac9fa 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt.html index 1be9ae71..7299d8ed 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt.html @@ -113,7 +113,7 @@ Collaboration diagram for GpgFrontend::UI::KeyMgmt: - + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.map index 430c7c60..a231b7bd 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.map @@ -4,7 +4,7 @@ - + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.md5 index 693d07c8..a634ebf8 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.md5 @@ -1 +1 @@ -42045b617e048b376f5e7ed98081a2f5 \ No newline at end of file +df4db83b23adce04f7bd0d3dd4db4dc4 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.png index 8e63f1db..20f6083c 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog-members.html index 5b3a3ae9..84a46f25 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog-members.html @@ -96,20 +96,22 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1KeyNewUIDDia error_label_ (defined in GpgFrontend::UI::KeyNewUIDDialog)GpgFrontend::UI::KeyNewUIDDialogprivate error_messages_ (defined in GpgFrontend::UI::KeyNewUIDDialog)GpgFrontend::UI::KeyNewUIDDialogprivate GeneralDialog(std::string name, QWidget *parent=nullptr)GpgFrontend::UI::GeneralDialogexplicit - KeyNewUIDDialog(const KeyId &key, QWidget *parent=nullptr)GpgFrontend::UI::KeyNewUIDDialog - m_key_ (defined in GpgFrontend::UI::KeyNewUIDDialog)GpgFrontend::UI::KeyNewUIDDialogprivate - movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected - name_ (defined in GpgFrontend::UI::KeyNewUIDDialog)GpgFrontend::UI::KeyNewUIDDialogprivate - parent_pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - parent_size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - re_email_ (defined in GpgFrontend::UI::KeyNewUIDDialog)GpgFrontend::UI::KeyNewUIDDialogprivate - setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected + isRectRestored() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected + KeyNewUIDDialog(const KeyId &key, QWidget *parent=nullptr)GpgFrontend::UI::KeyNewUIDDialog + m_key_ (defined in GpgFrontend::UI::KeyNewUIDDialog)GpgFrontend::UI::KeyNewUIDDialogprivate + movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected + name_ (defined in GpgFrontend::UI::KeyNewUIDDialog)GpgFrontend::UI::KeyNewUIDDialogprivate + parent_rect_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate + re_email_ (defined in GpgFrontend::UI::KeyNewUIDDialog)GpgFrontend::UI::KeyNewUIDDialogprivate + rect_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate + rect_restored_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate + setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected + showEvent(QShowEvent *event) override (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected SignalUIDCreated() (defined in GpgFrontend::UI::KeyNewUIDDialog)GpgFrontend::UI::KeyNewUIDDialogsignal - size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - slot_create_new_uid()GpgFrontend::UI::KeyNewUIDDialogprivateslot - slot_restore_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot - slot_save_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot + slot_create_new_uid()GpgFrontend::UI::KeyNewUIDDialogprivateslot + slot_restore_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot + slot_save_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot + update_rect_cache() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate ~GeneralDialog() override (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialog diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html index 673b270e..ad54e0c1 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html @@ -98,8 +98,8 @@ Inheritance diagram for GpgFrontend::UI::KeyNewUIDDialog:
Inheritance graph
- - + +
@@ -108,12 +108,12 @@ Collaboration diagram for GpgFrontend::UI::KeyNewUIDDialog:
Collaboration graph
- - + + - + @@ -181,6 +181,12 @@ void setPosCenterOfScreen< void movePosition2CenterOfParent ()   + +bool isRectRestored () +  + +void showEvent (QShowEvent *event) override + 

Constructor & Destructor Documentation

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.map index e55aaece..64dbd31a 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.map @@ -1,10 +1,10 @@ - - + + - + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.md5 index 89a5bf84..ac45db28 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.md5 @@ -1 +1 @@ -e31d89c48cd3413def767b23597bddb4 \ No newline at end of file +9561e858165a9a18237ab2d667b4d1fb \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.png index 3ff29333..97ac1349 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.map index bd91b3af..ef9cedc4 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.map @@ -1,5 +1,5 @@ - - + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.md5 index 6d880f98..026ff75e 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.md5 @@ -1 +1 @@ -026bb9a6a7e417f6bbd8d5e5e20e77a4 \ No newline at end of file +90364cc479cb03a65e2d7f0c299caae1 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.png index 72718328..8eb3089a 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog-members.html index 60c41440..6d910513 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog-members.html @@ -97,34 +97,36 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1KeyServerImp icon_ (defined in GpgFrontend::UI::KeyServerImportDialog)GpgFrontend::UI::KeyServerImportDialogprivate import_button_ (defined in GpgFrontend::UI::KeyServerImportDialog)GpgFrontend::UI::KeyServerImportDialogprivate import_keys(ByteArrayPtr in_data)GpgFrontend::UI::KeyServerImportDialogprivate - key_server_combo_box_ (defined in GpgFrontend::UI::KeyServerImportDialog)GpgFrontend::UI::KeyServerImportDialogprivate - key_server_label_ (defined in GpgFrontend::UI::KeyServerImportDialog)GpgFrontend::UI::KeyServerImportDialogprivate - keys_table_ (defined in GpgFrontend::UI::KeyServerImportDialog)GpgFrontend::UI::KeyServerImportDialogprivate - KeyServerImportDialog(bool automatic, QWidget *parent)GpgFrontend::UI::KeyServerImportDialog - KeyServerImportDialog(QWidget *parent)GpgFrontend::UI::KeyServerImportDialogexplicit - m_automatic_ (defined in GpgFrontend::UI::KeyServerImportDialog)GpgFrontend::UI::KeyServerImportDialogprivate - message_ (defined in GpgFrontend::UI::KeyServerImportDialog)GpgFrontend::UI::KeyServerImportDialogprivate - movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected - name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - parent_pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - parent_size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - search_button_ (defined in GpgFrontend::UI::KeyServerImportDialog)GpgFrontend::UI::KeyServerImportDialogprivate - search_label_ (defined in GpgFrontend::UI::KeyServerImportDialog)GpgFrontend::UI::KeyServerImportDialogprivate - search_line_edit_ (defined in GpgFrontend::UI::KeyServerImportDialog)GpgFrontend::UI::KeyServerImportDialogprivate - set_loading(bool status)GpgFrontend::UI::KeyServerImportDialogprivate - set_message(const QString &text, bool error)GpgFrontend::UI::KeyServerImportDialogprivate - setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected + isRectRestored() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected + key_server_combo_box_ (defined in GpgFrontend::UI::KeyServerImportDialog)GpgFrontend::UI::KeyServerImportDialogprivate + key_server_label_ (defined in GpgFrontend::UI::KeyServerImportDialog)GpgFrontend::UI::KeyServerImportDialogprivate + keys_table_ (defined in GpgFrontend::UI::KeyServerImportDialog)GpgFrontend::UI::KeyServerImportDialogprivate + KeyServerImportDialog(bool automatic, QWidget *parent)GpgFrontend::UI::KeyServerImportDialog + KeyServerImportDialog(QWidget *parent)GpgFrontend::UI::KeyServerImportDialogexplicit + m_automatic_ (defined in GpgFrontend::UI::KeyServerImportDialog)GpgFrontend::UI::KeyServerImportDialogprivate + message_ (defined in GpgFrontend::UI::KeyServerImportDialog)GpgFrontend::UI::KeyServerImportDialogprivate + movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected + name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate + parent_rect_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate + rect_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate + rect_restored_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate + search_button_ (defined in GpgFrontend::UI::KeyServerImportDialog)GpgFrontend::UI::KeyServerImportDialogprivate + search_label_ (defined in GpgFrontend::UI::KeyServerImportDialog)GpgFrontend::UI::KeyServerImportDialogprivate + search_line_edit_ (defined in GpgFrontend::UI::KeyServerImportDialog)GpgFrontend::UI::KeyServerImportDialogprivate + set_loading(bool status)GpgFrontend::UI::KeyServerImportDialogprivate + set_message(const QString &text, bool error)GpgFrontend::UI::KeyServerImportDialogprivate + setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected + showEvent(QShowEvent *event) override (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected SignalKeyImported() (defined in GpgFrontend::UI::KeyServerImportDialog)GpgFrontend::UI::KeyServerImportDialogsignal - size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - slot_import()GpgFrontend::UI::KeyServerImportDialogprivateslot - slot_import_finished(QNetworkReply::NetworkError error, QByteArray buffer)GpgFrontend::UI::KeyServerImportDialogprivateslot - slot_restore_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot - slot_save_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot - slot_search() (defined in GpgFrontend::UI::KeyServerImportDialog)GpgFrontend::UI::KeyServerImportDialogprivateslot - slot_search_finished(QNetworkReply::NetworkError reply, QByteArray buffer) (defined in GpgFrontend::UI::KeyServerImportDialog)GpgFrontend::UI::KeyServerImportDialogprivateslot - SlotImport(const KeyIdArgsListPtr &keys)GpgFrontend::UI::KeyServerImportDialogslot - SlotImport(std::vector< std::string > key_ids_list, std::string keyserver_url)GpgFrontend::UI::KeyServerImportDialogslot + slot_import()GpgFrontend::UI::KeyServerImportDialogprivateslot + slot_import_finished(QNetworkReply::NetworkError error, QByteArray buffer)GpgFrontend::UI::KeyServerImportDialogprivateslot + slot_restore_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot + slot_save_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot + slot_search() (defined in GpgFrontend::UI::KeyServerImportDialog)GpgFrontend::UI::KeyServerImportDialogprivateslot + slot_search_finished(QNetworkReply::NetworkError reply, QByteArray buffer) (defined in GpgFrontend::UI::KeyServerImportDialog)GpgFrontend::UI::KeyServerImportDialogprivateslot + SlotImport(const KeyIdArgsListPtr &keys)GpgFrontend::UI::KeyServerImportDialogslot + SlotImport(std::vector< std::string > key_ids_list, std::string keyserver_url)GpgFrontend::UI::KeyServerImportDialogslot + update_rect_cache() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate waiting_bar_ (defined in GpgFrontend::UI::KeyServerImportDialog)GpgFrontend::UI::KeyServerImportDialogprivate ~GeneralDialog() override (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialog
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html index cde19e43..52b41a61 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html @@ -99,8 +99,8 @@ Inheritance diagram for GpgFrontend::UI::KeyServerImportDialog:
Inheritance graph
- - + +
@@ -109,8 +109,8 @@ Collaboration diagram for GpgFrontend::UI::KeyServerImportDialog:
Collaboration graph
- - + + @@ -226,6 +226,12 @@ void setPosCenterOfScreen< void movePosition2CenterOfParent ()   + +bool isRectRestored () +  + +void showEvent (QShowEvent *event) override + 

Constructor & Destructor Documentation

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.map index c6d4a28b..b363e326 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.map @@ -1,6 +1,6 @@ - - + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.md5 index 3640211d..159cad05 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.md5 @@ -1 +1 @@ -d65bdd32e60d6c9b155cc1d9efc0341e \ No newline at end of file +4588e6f3af0811200928a8faef6f94cd \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.png index c7724c33..88a6a146 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.map index febf62cd..3f772ac4 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.map @@ -1,5 +1,5 @@ - - + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.md5 index f07a3554..d777ab2c 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.md5 @@ -1 +1 @@ -83b83c5d6364875c4b099e8ff4b7ee60 \ No newline at end of file +87978b4602037b35de12f4066b51d5fc \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.png index 8f327df6..b1746df1 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog-members.html index 79ec20e3..9cf394e2 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog-members.html @@ -91,23 +91,25 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1KeySetExpire - - - - - - - - - - + + + + + + + + + + + + - - - - - - + + + + + +
GeneralDialog(std::string name, QWidget *parent=nullptr)GpgFrontend::UI::GeneralDialogexplicit
init() (defined in GpgFrontend::UI::KeySetExpireDateDialog)GpgFrontend::UI::KeySetExpireDateDialogprivate
KeySetExpireDateDialog(const KeyId &key_id, QWidget *parent=nullptr)GpgFrontend::UI::KeySetExpireDateDialogexplicit
KeySetExpireDateDialog(const KeyId &key_id, std::string subkey_fpr, QWidget *parent=nullptr)GpgFrontend::UI::KeySetExpireDateDialogexplicit
m_key_ (defined in GpgFrontend::UI::KeySetExpireDateDialog)GpgFrontend::UI::KeySetExpireDateDialogprivate
m_subkey_ (defined in GpgFrontend::UI::KeySetExpireDateDialog)GpgFrontend::UI::KeySetExpireDateDialogprivate
movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
parent_pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
parent_size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
isRectRestored() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
KeySetExpireDateDialog(const KeyId &key_id, QWidget *parent=nullptr)GpgFrontend::UI::KeySetExpireDateDialogexplicit
KeySetExpireDateDialog(const KeyId &key_id, std::string subkey_fpr, QWidget *parent=nullptr)GpgFrontend::UI::KeySetExpireDateDialogexplicit
m_key_ (defined in GpgFrontend::UI::KeySetExpireDateDialog)GpgFrontend::UI::KeySetExpireDateDialogprivate
m_subkey_ (defined in GpgFrontend::UI::KeySetExpireDateDialog)GpgFrontend::UI::KeySetExpireDateDialogprivate
movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
parent_rect_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
rect_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
rect_restored_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
showEvent(QShowEvent *event) override (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
SignalKeyExpireDateUpdated() (defined in GpgFrontend::UI::KeySetExpireDateDialog)GpgFrontend::UI::KeySetExpireDateDialogsignal
size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
slot_confirm() (defined in GpgFrontend::UI::KeySetExpireDateDialog)GpgFrontend::UI::KeySetExpireDateDialogprivateslot
slot_non_expired_checked(int state)GpgFrontend::UI::KeySetExpireDateDialogprivateslot
slot_restore_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot
slot_save_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot
ui_ (defined in GpgFrontend::UI::KeySetExpireDateDialog)GpgFrontend::UI::KeySetExpireDateDialogprivate
slot_confirm() (defined in GpgFrontend::UI::KeySetExpireDateDialog)GpgFrontend::UI::KeySetExpireDateDialogprivateslot
slot_non_expired_checked(int state)GpgFrontend::UI::KeySetExpireDateDialogprivateslot
slot_restore_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot
slot_save_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot
ui_ (defined in GpgFrontend::UI::KeySetExpireDateDialog)GpgFrontend::UI::KeySetExpireDateDialogprivate
update_rect_cache() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
~GeneralDialog() override (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialog
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html index 0eb40837..efc4be24 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html @@ -98,8 +98,8 @@ Inheritance diagram for GpgFrontend::UI::KeySetExpireDateDialog:
Inheritance graph
- - + +
@@ -108,8 +108,8 @@ Collaboration diagram for GpgFrontend::UI::KeySetExpireDateDialog:
Collaboration graph
- - + + @@ -117,7 +117,7 @@ Collaboration diagram for GpgFrontend::UI::KeySetExpireDateDialog:
- + @@ -176,6 +176,12 @@ void setPosCenterOfScreen< void movePosition2CenterOfParent ()   + +bool isRectRestored () +  + +void showEvent (QShowEvent *event) override + 

Constructor & Destructor Documentation

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.map index 5de4727e..2293c0e1 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.map @@ -1,6 +1,6 @@ - - + + @@ -8,7 +8,7 @@ - + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.md5 index aabc6978..e5234e2b 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.md5 @@ -1 +1 @@ -f0896364489e7448d546f36f389d9609 \ No newline at end of file +aa5bc4fc88a10301e24563633104bee2 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.png index 094bd14c..966fbec1 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.map index a22d84f3..b96af575 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.map @@ -1,5 +1,5 @@ - - + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.md5 index df0b0da5..739dc347 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.md5 @@ -1 +1 @@ -c17288cb417248d0ae8c2a1d9ad62ae5 \ No newline at end of file +c7b35755d0d181c3a8b19abc8cf262be \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.png index 05418365..1611b525 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog-members.html index 2f167019..724db961 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog-members.html @@ -91,23 +91,25 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1KeyUIDSignDi - - - - - - - - - - - + + + + + + + + + + + + + - - - - + + + +
expires_edit_ (defined in GpgFrontend::UI::KeyUIDSignDialog)GpgFrontend::UI::KeyUIDSignDialogprivate
GeneralDialog(std::string name, QWidget *parent=nullptr)GpgFrontend::UI::GeneralDialogexplicit
KeyUIDSignDialog(const GpgKey &key, UIDArgsListPtr uid, QWidget *parent=nullptr)GpgFrontend::UI::KeyUIDSignDialogexplicit
m_key_ (defined in GpgFrontend::UI::KeyUIDSignDialog)GpgFrontend::UI::KeyUIDSignDialogprivate
m_key_list_ (defined in GpgFrontend::UI::KeyUIDSignDialog)GpgFrontend::UI::KeyUIDSignDialogprivate
m_uids_ (defined in GpgFrontend::UI::KeyUIDSignDialog)GpgFrontend::UI::KeyUIDSignDialogprivate
movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
non_expire_check_ (defined in GpgFrontend::UI::KeyUIDSignDialog)GpgFrontend::UI::KeyUIDSignDialogprivate
parent_pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
parent_size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
isRectRestored() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
KeyUIDSignDialog(const GpgKey &key, UIDArgsListPtr uid, QWidget *parent=nullptr)GpgFrontend::UI::KeyUIDSignDialogexplicit
m_key_ (defined in GpgFrontend::UI::KeyUIDSignDialog)GpgFrontend::UI::KeyUIDSignDialogprivate
m_key_list_ (defined in GpgFrontend::UI::KeyUIDSignDialog)GpgFrontend::UI::KeyUIDSignDialogprivate
m_uids_ (defined in GpgFrontend::UI::KeyUIDSignDialog)GpgFrontend::UI::KeyUIDSignDialogprivate
movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
non_expire_check_ (defined in GpgFrontend::UI::KeyUIDSignDialog)GpgFrontend::UI::KeyUIDSignDialogprivate
parent_rect_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
rect_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
rect_restored_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
showEvent(QShowEvent *event) override (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
sign_key_button_ (defined in GpgFrontend::UI::KeyUIDSignDialog)GpgFrontend::UI::KeyUIDSignDialogprivate
SignalKeyUIDSignUpdate() (defined in GpgFrontend::UI::KeyUIDSignDialog)GpgFrontend::UI::KeyUIDSignDialogsignal
size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
slot_restore_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot
slot_save_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot
slot_sign_key(bool clicked)GpgFrontend::UI::KeyUIDSignDialogprivateslot
slot_restore_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot
slot_save_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot
slot_sign_key(bool clicked)GpgFrontend::UI::KeyUIDSignDialogprivateslot
update_rect_cache() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
~GeneralDialog() override (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialog
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html index a7504820..17186ba7 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html @@ -97,8 +97,8 @@ Inheritance diagram for GpgFrontend::UI::KeyUIDSignDialog:
Inheritance graph
- - + +
@@ -108,7 +108,7 @@ Collaboration diagram for GpgFrontend::UI::KeyUIDSignDialog:
Collaboration graph
- + @@ -181,6 +181,12 @@ void setPosCenterOfScreen< void movePosition2CenterOfParent ()   + +bool isRectRestored () +  + +void showEvent (QShowEvent *event) override + 

Constructor & Destructor Documentation

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.map index 79f8ca82..1c84ee97 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.map @@ -1,6 +1,6 @@ - + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.md5 index 9aeb6a6b..eea19804 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.md5 @@ -1 +1 @@ -344a2d0d8090ac6566322809461238b1 \ No newline at end of file +17c224b49877ee5cb5cf2137daf87b22 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.png index 6e025d7f..fe53258d 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.map index ddb4f337..3edac6ed 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.map @@ -1,5 +1,5 @@ - - + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.md5 index 92e0c8aa..018c4c58 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.md5 @@ -1 +1 @@ -8e2d1d0e55c227f3badc7f088fa927cb \ No newline at end of file +dad5836fb9809d4b27c45ff3a36639af \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.png index 8cc22b2c..8c75c938 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog-members.html index 268c0fb6..2ab7a0ae 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog-members.html @@ -90,21 +90,23 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1KeyUploadDia

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

- - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + +
GeneralDialog(std::string name, QWidget *parent=nullptr)GpgFrontend::UI::GeneralDialogexplicit
KeyUploadDialog(const KeyIdArgsListPtr &keys_ids, QWidget *parent)GpgFrontend::UI::KeyUploadDialogexplicit
m_key_data_ (defined in GpgFrontend::UI::KeyUploadDialog)GpgFrontend::UI::KeyUploadDialogprivate
m_keys_ (defined in GpgFrontend::UI::KeyUploadDialog)GpgFrontend::UI::KeyUploadDialogprivate
movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
parent_pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
parent_size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
slot_restore_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot
slot_save_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot
slot_upload_finished() (defined in GpgFrontend::UI::KeyUploadDialog)GpgFrontend::UI::KeyUploadDialogprivateslot
slot_upload_key_to_server(const GpgFrontend::ByteArray &keys_data)GpgFrontend::UI::KeyUploadDialogprivateslot
SlotUpload() (defined in GpgFrontend::UI::KeyUploadDialog)GpgFrontend::UI::KeyUploadDialogslot
isRectRestored() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
KeyUploadDialog(const KeyIdArgsListPtr &keys_ids, QWidget *parent)GpgFrontend::UI::KeyUploadDialogexplicit
m_key_data_ (defined in GpgFrontend::UI::KeyUploadDialog)GpgFrontend::UI::KeyUploadDialogprivate
m_keys_ (defined in GpgFrontend::UI::KeyUploadDialog)GpgFrontend::UI::KeyUploadDialogprivate
movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
parent_rect_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
rect_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
rect_restored_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
showEvent(QShowEvent *event) override (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
slot_restore_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot
slot_save_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot
slot_upload_finished() (defined in GpgFrontend::UI::KeyUploadDialog)GpgFrontend::UI::KeyUploadDialogprivateslot
slot_upload_key_to_server(const GpgFrontend::ByteArray &keys_data)GpgFrontend::UI::KeyUploadDialogprivateslot
SlotUpload() (defined in GpgFrontend::UI::KeyUploadDialog)GpgFrontend::UI::KeyUploadDialogslot
update_rect_cache() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
~GeneralDialog() override (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialog
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog.html index 15e919fb..89c55dce 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog.html @@ -97,8 +97,8 @@ Inheritance diagram for GpgFrontend::UI::KeyUploadDialog:
Inheritance graph
- - + +
@@ -107,12 +107,12 @@ Collaboration diagram for GpgFrontend::UI::KeyUploadDialog:
Collaboration graph
- - + + - + @@ -159,6 +159,12 @@ void setPosCenterOfScreen< void movePosition2CenterOfParent ()   + +bool isRectRestored () +  + +void showEvent (QShowEvent *event) override + 

Constructor & Destructor Documentation

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.map index 265cd32c..e064e879 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.map @@ -1,10 +1,10 @@ - - + + - + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.md5 index 156a4a97..1a89c18f 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.md5 @@ -1 +1 @@ -d65271b0dbfc56b846a5cf651494e3e4 \ No newline at end of file +dc2cdcd3d47b99e95c191f05d5769efe \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.png index 6cf055a9..887de197 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.map index 5d3a29e4..efd2b682 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.map @@ -1,5 +1,5 @@ - - + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.md5 index aa0a0109..279b9e8b 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.md5 @@ -1 +1 @@ -796bc31420fe54e26b8d2dde87fe0b34 \ No newline at end of file +549e7189ea320002f872355772a1157c \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.png index a85df638..8debb3bb 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog-members.html index 95f2f5bc..5e6663d8 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog-members.html @@ -93,18 +93,20 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1QuitDialog.h GeneralDialog(std::string name, QWidget *parent=nullptr)GpgFrontend::UI::GeneralDialogexplicit GetTabIdsToSave()GpgFrontend::UI::QuitDialog IsDiscarded() constGpgFrontend::UI::QuitDialog - m_fileList_ (defined in GpgFrontend::UI::QuitDialog)GpgFrontend::UI::QuitDialogprivate - movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected - name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - parent_pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - parent_size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - QuitDialog(QWidget *parent, const QHash< int, QString > &unsavedDocs)GpgFrontend::UI::QuitDialog - setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected - size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - slot_my_discard() (defined in GpgFrontend::UI::QuitDialog)GpgFrontend::UI::QuitDialogprivateslot - slot_restore_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot - slot_save_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot + isRectRestored() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected + m_fileList_ (defined in GpgFrontend::UI::QuitDialog)GpgFrontend::UI::QuitDialogprivate + movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected + name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate + parent_rect_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate + QuitDialog(QWidget *parent, const QHash< int, QString > &unsavedDocs)GpgFrontend::UI::QuitDialog + rect_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate + rect_restored_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate + setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected + showEvent(QShowEvent *event) override (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected + slot_my_discard() (defined in GpgFrontend::UI::QuitDialog)GpgFrontend::UI::QuitDialogprivateslot + slot_restore_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot + slot_save_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot + update_rect_cache() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate ~GeneralDialog() override (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialog
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog.html index 379c8dc9..5c3400d9 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog.html @@ -96,8 +96,8 @@ Inheritance diagram for GpgFrontend::UI::QuitDialog:
Inheritance graph
- - + +
@@ -106,8 +106,8 @@ Collaboration diagram for GpgFrontend::UI::QuitDialog:
Collaboration graph
- - + + @@ -152,6 +152,12 @@ void setPosCenterOfScreen< void movePosition2CenterOfParent ()   + +bool isRectRestored () +  + +void showEvent (QShowEvent *event) override + 

Constructor & Destructor Documentation

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.map index 2cbab8d1..08bb3f6b 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.map @@ -1,6 +1,6 @@ - - + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.md5 index ce412043..9f730e73 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.md5 @@ -1 +1 @@ -70bae2d13c2dd62cb47a13069d43d9ac \ No newline at end of file +1169c07ddb7366baeeaa20febf9dec16 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.png index e7b35858..e45350ee 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.map index 5c376d89..85984440 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.map @@ -1,5 +1,5 @@ - - + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.md5 index 02cfda70..60cdad43 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.md5 @@ -1 +1 @@ -869911f60ff3cc28cf90e701bab22ea6 \ No newline at end of file +01d70a981b7efe73f4a52cdca17928ea \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.png index 90d82790..9dcdedb6 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog-members.html index 2b9108bd..b8e37a8a 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog-members.html @@ -94,24 +94,26 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1SettingsDial general_tab_ (defined in GpgFrontend::UI::SettingsDialog)GpgFrontend::UI::SettingsDialog GeneralDialog(std::string name, QWidget *parent=nullptr)GpgFrontend::UI::GeneralDialogexplicit get_restart_needed() constGpgFrontend::UI::SettingsDialogprivate - key_server_tab_ (defined in GpgFrontend::UI::SettingsDialog)GpgFrontend::UI::SettingsDialog - ListLanguages()GpgFrontend::UI::SettingsDialogstatic - movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected - name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - network_tab_ (defined in GpgFrontend::UI::SettingsDialog)GpgFrontend::UI::SettingsDialog - parent_pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - parent_size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - restart_needed_ (defined in GpgFrontend::UI::SettingsDialog)GpgFrontend::UI::SettingsDialogprivate - setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected - SettingsDialog(QWidget *parent=nullptr)GpgFrontend::UI::SettingsDialogexplicit + isRectRestored() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected + key_server_tab_ (defined in GpgFrontend::UI::SettingsDialog)GpgFrontend::UI::SettingsDialog + ListLanguages()GpgFrontend::UI::SettingsDialogstatic + movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected + name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate + network_tab_ (defined in GpgFrontend::UI::SettingsDialog)GpgFrontend::UI::SettingsDialog + parent_rect_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate + rect_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate + rect_restored_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate + restart_needed_ (defined in GpgFrontend::UI::SettingsDialog)GpgFrontend::UI::SettingsDialogprivate + setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected + SettingsDialog(QWidget *parent=nullptr)GpgFrontend::UI::SettingsDialogexplicit + showEvent(QShowEvent *event) override (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected SignalRestartNeeded(int)GpgFrontend::UI::SettingsDialogsignal - size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - slot_restore_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot - slot_save_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot - slot_set_restart_needed(int)GpgFrontend::UI::SettingsDialogprivateslot - SlotAccept() (defined in GpgFrontend::UI::SettingsDialog)GpgFrontend::UI::SettingsDialogslot - tab_widget_ (defined in GpgFrontend::UI::SettingsDialog)GpgFrontend::UI::SettingsDialogprivate + slot_restore_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot + slot_save_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot + slot_set_restart_needed(int)GpgFrontend::UI::SettingsDialogprivateslot + SlotAccept() (defined in GpgFrontend::UI::SettingsDialog)GpgFrontend::UI::SettingsDialogslot + tab_widget_ (defined in GpgFrontend::UI::SettingsDialog)GpgFrontend::UI::SettingsDialogprivate + update_rect_cache() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate ~GeneralDialog() override (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialog
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog.html index 278883ec..e086b756 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog.html @@ -101,8 +101,8 @@ Inheritance diagram for GpgFrontend::UI::SettingsDialog:
Inheritance graph
- - + +
@@ -112,7 +112,7 @@ Collaboration diagram for GpgFrontend::UI::SettingsDialog:
Collaboration graph
- + @@ -215,6 +215,12 @@ void setPosCenterOfScreen< void movePosition2CenterOfParent ()   + +bool isRectRestored () +  + +void showEvent (QShowEvent *event) override + 

Constructor & Destructor Documentation

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.map index a15cf9e1..ecfd2405 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.map @@ -1,6 +1,6 @@ - + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.md5 index 17c8851f..3d89d5f3 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.md5 @@ -1 +1 @@ -6d032bba795fb0473bdcfcdbda2ae131 \ No newline at end of file +a317712dc09b85c9ccd6be83dec0231e \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.png index eff9b5e2..db8cd9c3 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.map index 0e71f192..9eabd598 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.map @@ -1,5 +1,5 @@ - - + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.md5 index 2194d42a..49cba724 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.md5 @@ -1 +1 @@ -1065b289d536711a5ff4764bfaeffef0 \ No newline at end of file +338de5da8f1fbdb4cb95ff39b935f355 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.png index 2f4ff6dd..db427e2c 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker-members.html b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker-members.html index 7da6d388..f46b952b 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker-members.html @@ -93,17 +93,19 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1SignersPicke GeneralDialog(std::string name, QWidget *parent=nullptr)GpgFrontend::UI::GeneralDialogexplicit GetCheckedSigners()GpgFrontend::UI::SignersPicker GetStatus() constGpgFrontend::UI::SignersPicker - key_list_ (defined in GpgFrontend::UI::SignersPicker)GpgFrontend::UI::SignersPickerprivate - movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected - name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - parent_pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - parent_size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected + isRectRestored() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected + key_list_ (defined in GpgFrontend::UI::SignersPicker)GpgFrontend::UI::SignersPickerprivate + movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected + name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate + parent_rect_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate + rect_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate + rect_restored_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate + setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected + showEvent(QShowEvent *event) override (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected SignersPicker(QWidget *parent=nullptr)GpgFrontend::UI::SignersPickerexplicit - size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - slot_restore_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot - slot_save_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot + slot_restore_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot + slot_save_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot + update_rect_cache() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate ~GeneralDialog() override (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialog diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker.html b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker.html index 29bc1529..80229d9f 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker.html @@ -95,8 +95,8 @@ Inheritance diagram for GpgFrontend::UI::SignersPicker:
Inheritance graph
- - + +
@@ -106,7 +106,7 @@ Collaboration diagram for GpgFrontend::UI::SignersPicker:
Collaboration graph
- + @@ -160,6 +160,12 @@ void setPosCenterOfScreen< void movePosition2CenterOfParent ()   + +bool isRectRestored () +  + +void showEvent (QShowEvent *event) override + 

Constructor & Destructor Documentation

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.map index b6ca34dd..53e41200 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.map @@ -1,6 +1,6 @@ - + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.md5 index e8b92571..ca578fec 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.md5 @@ -1 +1 @@ -6804ebfd9f2c743d15d9183e1cdd2594 \ No newline at end of file +a4f5760b7e9c70765518d11c33a5b489 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.png index c67b65ef..c4cc10f4 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.map index 09017b32..e7116313 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.map @@ -1,5 +1,5 @@ - - + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.md5 index 2f473d66..384a336b 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.md5 @@ -1 +1 @@ -a0fd39801f72025c7b91047f1aa3fec1 \ No newline at end of file +a37fd0a7049e45a4121ce253cea461fd \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.png index 5f39057e..fbce8b7e 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog-members.html index 7f9b9baa..4df7264e 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog-members.html @@ -97,34 +97,36 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1SubkeyGenera expire_check_box_GpgFrontend::UI::SubkeyGenerateDialogprivate gen_key_info_ (defined in GpgFrontend::UI::SubkeyGenerateDialog)GpgFrontend::UI::SubkeyGenerateDialogprivate GeneralDialog(std::string name, QWidget *parent=nullptr)GpgFrontend::UI::GeneralDialogexplicit - key_ (defined in GpgFrontend::UI::SubkeyGenerateDialog)GpgFrontend::UI::SubkeyGenerateDialogprivate - key_size_spin_box_GpgFrontend::UI::SubkeyGenerateDialogprivate - key_type_combo_box_GpgFrontend::UI::SubkeyGenerateDialogprivate - key_usage_check_boxes_GpgFrontend::UI::SubkeyGenerateDialogprivate - key_usage_group_box_ (defined in GpgFrontend::UI::SubkeyGenerateDialog)GpgFrontend::UI::SubkeyGenerateDialogprivate - max_date_time_ (defined in GpgFrontend::UI::SubkeyGenerateDialog)GpgFrontend::UI::SubkeyGenerateDialogprivate - movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected - name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - no_pass_phrase_check_box_GpgFrontend::UI::SubkeyGenerateDialogprivate - parent_pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - parent_size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate + isRectRestored() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected + key_ (defined in GpgFrontend::UI::SubkeyGenerateDialog)GpgFrontend::UI::SubkeyGenerateDialogprivate + key_size_spin_box_GpgFrontend::UI::SubkeyGenerateDialogprivate + key_type_combo_box_GpgFrontend::UI::SubkeyGenerateDialogprivate + key_usage_check_boxes_GpgFrontend::UI::SubkeyGenerateDialogprivate + key_usage_group_box_ (defined in GpgFrontend::UI::SubkeyGenerateDialog)GpgFrontend::UI::SubkeyGenerateDialogprivate + max_date_time_ (defined in GpgFrontend::UI::SubkeyGenerateDialog)GpgFrontend::UI::SubkeyGenerateDialogprivate + movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected + name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate + no_pass_phrase_check_box_GpgFrontend::UI::SubkeyGenerateDialogprivate + parent_rect_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate passphrase_edit_ (defined in GpgFrontend::UI::SubkeyGenerateDialog)GpgFrontend::UI::SubkeyGenerateDialogprivate - pos_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - refresh_widgets_state()GpgFrontend::UI::SubkeyGenerateDialogprivate - set_signal_slot()GpgFrontend::UI::SubkeyGenerateDialogprivate - setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected + rect_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate + rect_restored_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate + refresh_widgets_state()GpgFrontend::UI::SubkeyGenerateDialogprivate + set_signal_slot()GpgFrontend::UI::SubkeyGenerateDialogprivate + setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected + showEvent(QShowEvent *event) override (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected SignalSubKeyGenerated() (defined in GpgFrontend::UI::SubkeyGenerateDialog)GpgFrontend::UI::SubkeyGenerateDialogsignal - size_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate - slot_activated_key_type(int index)GpgFrontend::UI::SubkeyGenerateDialogprivateslot - slot_authentication_box_changed(int state)GpgFrontend::UI::SubkeyGenerateDialogprivateslot - slot_certification_box_changed(int state)GpgFrontend::UI::SubkeyGenerateDialogprivateslot - slot_encryption_box_changed(int state)GpgFrontend::UI::SubkeyGenerateDialogprivateslot - slot_expire_box_changed()GpgFrontend::UI::SubkeyGenerateDialogprivateslot - slot_key_gen_accept()GpgFrontend::UI::SubkeyGenerateDialogprivateslot - slot_restore_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot - slot_save_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot - slot_signing_box_changed(int state)GpgFrontend::UI::SubkeyGenerateDialogprivateslot - SubkeyGenerateDialog(const KeyId &key_id, QWidget *parent)GpgFrontend::UI::SubkeyGenerateDialogexplicit + slot_activated_key_type(int index)GpgFrontend::UI::SubkeyGenerateDialogprivateslot + slot_authentication_box_changed(int state)GpgFrontend::UI::SubkeyGenerateDialogprivateslot + slot_certification_box_changed(int state)GpgFrontend::UI::SubkeyGenerateDialogprivateslot + slot_encryption_box_changed(int state)GpgFrontend::UI::SubkeyGenerateDialogprivateslot + slot_expire_box_changed()GpgFrontend::UI::SubkeyGenerateDialogprivateslot + slot_key_gen_accept()GpgFrontend::UI::SubkeyGenerateDialogprivateslot + slot_restore_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot + slot_save_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot + slot_signing_box_changed(int state)GpgFrontend::UI::SubkeyGenerateDialogprivateslot + SubkeyGenerateDialog(const KeyId &key_id, QWidget *parent)GpgFrontend::UI::SubkeyGenerateDialogexplicit + update_rect_cache() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate use_pinentry_ (defined in GpgFrontend::UI::SubkeyGenerateDialog)GpgFrontend::UI::SubkeyGenerateDialogprivate ~GeneralDialog() override (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialog diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html index c8e9f635..68604716 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html @@ -98,8 +98,8 @@ Inheritance diagram for GpgFrontend::UI::SubkeyGenerateDialog:
Inheritance graph
- - + +
@@ -108,8 +108,8 @@ Collaboration diagram for GpgFrontend::UI::SubkeyGenerateDialog:
Collaboration graph
- - + + @@ -118,7 +118,7 @@ Collaboration diagram for GpgFrontend::UI::SubkeyGenerateDialog:
- +
@@ -232,6 +232,12 @@ void setPosCenterOfScreen< void movePosition2CenterOfParent ()   + +bool isRectRestored () +  + +void showEvent (QShowEvent *event) override + 

Constructor & Destructor Documentation

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.map index 94719202..b40e0159 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.map @@ -1,6 +1,6 @@ - - + + @@ -9,7 +9,7 @@ - + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.md5 index ca91a42f..32c43c6e 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.md5 @@ -1 +1 @@ -f5a44e5a8432794f3c20f7e1c2760523 \ No newline at end of file +79fc9f8947d35651400f0e7d9d4dde2b \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.png index c8e13f38..1481f2df 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.map index ecef73cb..1c81010e 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.map @@ -1,5 +1,5 @@ - - + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.md5 index 3d02e1ed..665ba9a1 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.md5 @@ -1 +1 @@ -16b9e8e6e7838f1293f4667a263303c9 \ No newline at end of file +bc1bf298eb71520334c1bfc68d492620 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.png index 5c7e41ab..c2a6ac4d 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog-members.html index b55faba2..57ad360e 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog-members.html @@ -89,7 +89,20 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1WaitingDialo

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

+ + + + + + + + + + + + +
GeneralDialog(std::string name, QWidget *parent=nullptr)GpgFrontend::UI::GeneralDialogexplicit
isRectRestored() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
name_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
parent_rect_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
rect_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
rect_restored_ (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
showEvent(QShowEvent *event) override (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
slot_restore_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot
slot_save_settings() noexcept (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivateslot
update_rect_cache() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprivate
WaitingDialog(const QString &title, QWidget *parent)GpgFrontend::UI::WaitingDialog
~GeneralDialog() override (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialog
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog.html index f0d0f77d..b08bc445 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog.html @@ -94,8 +94,9 @@ Inheritance diagram for GpgFrontend::UI::WaitingDialog:
Inheritance graph
- - + + +
@@ -103,8 +104,11 @@ Collaboration diagram for GpgFrontend::UI::WaitingDialog:
Collaboration graph
- - + + + + +
@@ -113,6 +117,25 @@ Public Member Functions + + + +
 WaitingDialog (const QString &title, QWidget *parent)
 Construct a new Waiting Dialog object. More...
 
- Public Member Functions inherited from GpgFrontend::UI::GeneralDialog
 GeneralDialog (std::string name, QWidget *parent=nullptr)
 
+ + + + + + + + + +

+Additional Inherited Members

- Protected Member Functions inherited from GpgFrontend::UI::GeneralDialog
+void setPosCenterOfScreen ()
 
+void movePosition2CenterOfParent ()
 
+bool isRectRestored ()
 
+void showEvent (QShowEvent *event) override
 

Constructor & Destructor Documentation

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.map index 0b562491..3796d9d5 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.map @@ -1,4 +1,7 @@ - - + + + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.md5 index 6c945c7a..6e1321b9 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.md5 @@ -1 +1 @@ -39336a99ad63e41e7b199a4a7b3c87f8 \ No newline at end of file +3bd5435ceebc5db585103575410ff9da \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.png index b4236974..c72999cf 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.map index 0b562491..077e3a4f 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.map @@ -1,4 +1,5 @@ - - + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.md5 index 6c945c7a..7d02adc4 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.md5 @@ -1 +1 @@ -39336a99ad63e41e7b199a4a7b3c87f8 \ No newline at end of file +82dc3bf16e94411c8b1991b292fb4df9 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.png index b4236974..f6be4767 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.png differ diff --git a/docs/html/hierarchy.html b/docs/html/hierarchy.html index f171865b..5405f4b8 100644 --- a/docs/html/hierarchy.html +++ b/docs/html/hierarchy.html @@ -180,9 +180,9 @@ This inheritance list is sorted roughly, but not completely, alphabetically: CGpgFrontend::UI::SettingsDialog  CGpgFrontend::UI::SignersPicker  CGpgFrontend::UI::SubkeyGenerateDialog + CGpgFrontend::UI::WaitingDialog  CGpgFrontend::UI::VerifyDetailsDialog - CGpgFrontend::UI::WaitingDialog - CSignatureDetailsDialog + CSignatureDetailsDialog  CQGroupBox  CGpgFrontend::UI::VerifyKeyDetailBox  CQMainWindow diff --git a/docs/html/hierarchy.js b/docs/html/hierarchy.js index 19c244f0..580e904e 100644 --- a/docs/html/hierarchy.js +++ b/docs/html/hierarchy.js @@ -108,10 +108,10 @@ var hierarchy = [ "GpgFrontend::UI::QuitDialog", "classGpgFrontend_1_1UI_1_1QuitDialog.html", null ], [ "GpgFrontend::UI::SettingsDialog", "classGpgFrontend_1_1UI_1_1SettingsDialog.html", null ], [ "GpgFrontend::UI::SignersPicker", "classGpgFrontend_1_1UI_1_1SignersPicker.html", null ], - [ "GpgFrontend::UI::SubkeyGenerateDialog", "classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html", null ] + [ "GpgFrontend::UI::SubkeyGenerateDialog", "classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html", null ], + [ "GpgFrontend::UI::WaitingDialog", "classGpgFrontend_1_1UI_1_1WaitingDialog.html", null ] ] ], [ "GpgFrontend::UI::VerifyDetailsDialog", "classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html", null ], - [ "GpgFrontend::UI::WaitingDialog", "classGpgFrontend_1_1UI_1_1WaitingDialog.html", null ], [ "SignatureDetailsDialog", "classSignatureDetailsDialog.html", null ] ] ], [ "QGroupBox", null, [ diff --git a/docs/html/inherit_graph_35.map b/docs/html/inherit_graph_35.map index db39b51e..1b98b48e 100644 --- a/docs/html/inherit_graph_35.map +++ b/docs/html/inherit_graph_35.map @@ -1,9 +1,8 @@ - - - - + + + @@ -19,4 +18,5 @@ + diff --git a/docs/html/inherit_graph_35.md5 b/docs/html/inherit_graph_35.md5 index 6153eeda..5c538359 100644 --- a/docs/html/inherit_graph_35.md5 +++ b/docs/html/inherit_graph_35.md5 @@ -1 +1 @@ -5c94015e11e6efdc5836b0f2f87919d4 \ No newline at end of file +03dace9a36fddb5557668946c2c298f6 \ No newline at end of file diff --git a/docs/html/inherit_graph_35.png b/docs/html/inherit_graph_35.png index d77500e4..fa3fd09f 100644 Binary files a/docs/html/inherit_graph_35.png and b/docs/html/inherit_graph_35.png differ diff --git a/docs/html/inherits.html b/docs/html/inherits.html index c09ba1b7..3d3ec049 100644 --- a/docs/html/inherits.html +++ b/docs/html/inherits.html @@ -342,10 +342,9 @@ $(document).ready(function(){initNavTree('hierarchy.html',''); initResizable(); - - - - + + + @@ -361,6 +360,7 @@ $(document).ready(function(){initNavTree('hierarchy.html',''); initResizable(); + diff --git a/docs/html/navtreedata.js b/docs/html/navtreedata.js index 12405110..e7af3dfa 100644 --- a/docs/html/navtreedata.js +++ b/docs/html/navtreedata.js @@ -56,10 +56,10 @@ var NAVTREEINDEX = "classGpgFrontend_1_1GlobalSettingStation.html#a6459653a71cc8285fa554943c7fb3ca7", "classGpgFrontend_1_1GpgKeySignature.html#acd5e46397ebea3224761a6af15eea4fb", "classGpgFrontend_1_1UI_1_1ChoosePage.html#ae370e789009be3926410cb749c86907b", -"classGpgFrontend_1_1UI_1_1KeyList.html#aad57901bf84aaf7849e7cf7bb9f8fc99", -"classGpgFrontend_1_1UI_1_1KeyserverTab.html#a8fd9c3735ab43ecf2eb6df4c9b2ddd93", -"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a029017ad2e025a43d21144f1b7427593", -"namespaceGpgFrontend.html#ae3f2947210ad3e11269ebac355f47492" +"classGpgFrontend_1_1UI_1_1KeyList.html#aa961e3ba3c48f84dea4bb7ab4f756886", +"classGpgFrontend_1_1UI_1_1KeyserverTab.html#a85b9bfdbd7ae71f0d74b9d6c32a194e1", +"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html", +"namespaceGpgFrontend.html#adf0fbe100c3ea1bf2f33bc0f55dfff17" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/docs/html/navtreeindex3.js b/docs/html/navtreeindex3.js index 957a687a..26958950 100644 --- a/docs/html/navtreeindex3.js +++ b/docs/html/navtreeindex3.js @@ -90,17 +90,19 @@ var NAVTREEINDEX3 = "classGpgFrontend_1_1UI_1_1FindWidget.html#aa019bd8b63ad1e79050e4428cfee62cf":[2,0,0,1,51,4], "classGpgFrontend_1_1UI_1_1FindWidget.html#af420832720942dd1e7cb3f3841c7cbfe":[2,0,0,1,51,7], "classGpgFrontend_1_1UI_1_1GeneralDialog.html":[2,0,0,1,2], -"classGpgFrontend_1_1UI_1_1GeneralDialog.html#a234a0a4d8c0b1b49a54f65b1aa3f9490":[2,0,0,1,2,8], -"classGpgFrontend_1_1UI_1_1GeneralDialog.html#a34d01f247eee92017a2eccf697cda080":[2,0,0,1,2,4], +"classGpgFrontend_1_1UI_1_1GeneralDialog.html#a22f39850fae58b9f6c59c372b9fbb582":[2,0,0,1,2,11], +"classGpgFrontend_1_1UI_1_1GeneralDialog.html#a34d01f247eee92017a2eccf697cda080":[2,0,0,1,2,6], "classGpgFrontend_1_1UI_1_1GeneralDialog.html#a42043895f4b33acd1531c428ae4deaa8":[2,0,0,1,2,1], -"classGpgFrontend_1_1UI_1_1GeneralDialog.html#a871f204f01f10815e3475c103f1157af":[2,0,0,1,2,7], -"classGpgFrontend_1_1UI_1_1GeneralDialog.html#a940a6ea31dff4db83f9f08d38e843a2b":[2,0,0,1,2,5], -"classGpgFrontend_1_1UI_1_1GeneralDialog.html#abad7cff23d2426820e320ecea47b479c":[2,0,0,1,2,3], +"classGpgFrontend_1_1UI_1_1GeneralDialog.html#a4e4eb414ac80ba7dd1e853ed62e1ee68":[2,0,0,1,2,12], +"classGpgFrontend_1_1UI_1_1GeneralDialog.html#a570c723ba0cb5522f2b0c16ac28d0532":[2,0,0,1,2,5], +"classGpgFrontend_1_1UI_1_1GeneralDialog.html#a940a6ea31dff4db83f9f08d38e843a2b":[2,0,0,1,2,7], +"classGpgFrontend_1_1UI_1_1GeneralDialog.html#ab92573b0e63d9c792f2e1697d858cea7":[2,0,0,1,2,10], +"classGpgFrontend_1_1UI_1_1GeneralDialog.html#abad7cff23d2426820e320ecea47b479c":[2,0,0,1,2,4], "classGpgFrontend_1_1UI_1_1GeneralDialog.html#ac9de4c49668ffaeb6916c64f878a202c":[2,0,0,1,2,0], -"classGpgFrontend_1_1UI_1_1GeneralDialog.html#ad9b847aa128dfeb4ecf0064ef948e6ea":[2,0,0,1,2,9], -"classGpgFrontend_1_1UI_1_1GeneralDialog.html#ad9d5be542aa422450a96dff00232ebe5":[2,0,0,1,2,2], -"classGpgFrontend_1_1UI_1_1GeneralDialog.html#ae91392293866dc302132a9fc19209d8c":[2,0,0,1,2,6], -"classGpgFrontend_1_1UI_1_1GeneralDialog.html#aeda520454fd38920a027c1a4195a2e6f":[2,0,0,1,2,10], +"classGpgFrontend_1_1UI_1_1GeneralDialog.html#ad1f20151e9556a3c481fda89cf88e585":[2,0,0,1,2,8], +"classGpgFrontend_1_1UI_1_1GeneralDialog.html#ad9d5be542aa422450a96dff00232ebe5":[2,0,0,1,2,3], +"classGpgFrontend_1_1UI_1_1GeneralDialog.html#ae91392293866dc302132a9fc19209d8c":[2,0,0,1,2,9], +"classGpgFrontend_1_1UI_1_1GeneralDialog.html#af074bf574bb3fb2be5de5f7e3b5b539e":[2,0,0,1,2,2], "classGpgFrontend_1_1UI_1_1GeneralMainWindow.html":[2,0,0,1,38], "classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a42d1bc5a70f0e81cb49c88eb23544255":[2,0,0,1,38,3], "classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a5c0bb4c6847846d57ca7524d5f5e4d53":[2,0,0,1,38,10], @@ -247,7 +249,5 @@ var NAVTREEINDEX3 = "classGpgFrontend_1_1UI_1_1KeyList.html#a86a294a8baa9feaeb808f0af956ef522":[2,0,0,1,58,23], "classGpgFrontend_1_1UI_1_1KeyList.html#a8aeb2eef64f57fbc2e7f06f433d1ccb2":[2,0,0,1,58,38], "classGpgFrontend_1_1UI_1_1KeyList.html#a8d1e2fde8e54d111581adc701e3191bb":[2,0,0,1,58,34], -"classGpgFrontend_1_1UI_1_1KeyList.html#a947f4ce45285b58bbde94f4ae879ff7a":[2,0,0,1,58,24], -"classGpgFrontend_1_1UI_1_1KeyList.html#aa961e3ba3c48f84dea4bb7ab4f756886":[2,0,0,1,58,2], -"classGpgFrontend_1_1UI_1_1KeyList.html#aab3f4facfc850e7eeb917571ca89f4a5":[2,0,0,1,58,21] +"classGpgFrontend_1_1UI_1_1KeyList.html#a947f4ce45285b58bbde94f4ae879ff7a":[2,0,0,1,58,24] }; diff --git a/docs/html/navtreeindex4.js b/docs/html/navtreeindex4.js index a5cb5d4a..1ccff2c8 100644 --- a/docs/html/navtreeindex4.js +++ b/docs/html/navtreeindex4.js @@ -1,5 +1,7 @@ var NAVTREEINDEX4 = { +"classGpgFrontend_1_1UI_1_1KeyList.html#aa961e3ba3c48f84dea4bb7ab4f756886":[2,0,0,1,58,2], +"classGpgFrontend_1_1UI_1_1KeyList.html#aab3f4facfc850e7eeb917571ca89f4a5":[2,0,0,1,58,21], "classGpgFrontend_1_1UI_1_1KeyList.html#aad57901bf84aaf7849e7cf7bb9f8fc99":[2,0,0,1,58,26], "classGpgFrontend_1_1UI_1_1KeyList.html#ab0182646beb01850779260b3772bd8fe":[2,0,0,1,58,19], "classGpgFrontend_1_1UI_1_1KeyList.html#ab4368b81402e2468a9e960de8fb7080f":[2,0,0,1,58,15], @@ -247,7 +249,5 @@ var NAVTREEINDEX4 = "classGpgFrontend_1_1UI_1_1KeyserverTab.html#a221117b56dda48956e44d96a08f6823b":[2,0,0,1,28,3], "classGpgFrontend_1_1UI_1_1KeyserverTab.html#a26449a77844d9db69a543ff88f10e347":[2,0,0,1,28,4], "classGpgFrontend_1_1UI_1_1KeyserverTab.html#a68f954c4b713956a87f7382b30f45612":[2,0,0,1,28,7], -"classGpgFrontend_1_1UI_1_1KeyserverTab.html#a74f30a1f6314b6156f4df20652129c5d":[2,0,0,1,28,6], -"classGpgFrontend_1_1UI_1_1KeyserverTab.html#a85b9bfdbd7ae71f0d74b9d6c32a194e1":[2,0,0,1,28,12], -"classGpgFrontend_1_1UI_1_1KeyserverTab.html#a8cbd6e448e187260730ab8301ad4892e":[2,0,0,1,28,2] +"classGpgFrontend_1_1UI_1_1KeyserverTab.html#a74f30a1f6314b6156f4df20652129c5d":[2,0,0,1,28,6] }; diff --git a/docs/html/navtreeindex5.js b/docs/html/navtreeindex5.js index 4a8e964e..c457132e 100644 --- a/docs/html/navtreeindex5.js +++ b/docs/html/navtreeindex5.js @@ -1,5 +1,7 @@ var NAVTREEINDEX5 = { +"classGpgFrontend_1_1UI_1_1KeyserverTab.html#a85b9bfdbd7ae71f0d74b9d6c32a194e1":[2,0,0,1,28,12], +"classGpgFrontend_1_1UI_1_1KeyserverTab.html#a8cbd6e448e187260730ab8301ad4892e":[2,0,0,1,28,2], "classGpgFrontend_1_1UI_1_1KeyserverTab.html#a8fd9c3735ab43ecf2eb6df4c9b2ddd93":[2,0,0,1,28,1], "classGpgFrontend_1_1UI_1_1KeyserverTab.html#aa3d3561d3bdf95de6486b2caa752616c":[2,0,0,1,28,0], "classGpgFrontend_1_1UI_1_1KeyserverTab.html#aacb5e6e543708687185a993dd43050a3":[2,0,0,1,28,5], @@ -247,7 +249,5 @@ var NAVTREEINDEX5 = "classGpgFrontend_1_1UI_1_1SignersPicker.html#a2e98dcdf647a2e0e6455998b018aed00":[2,0,0,1,30,1], "classGpgFrontend_1_1UI_1_1SignersPicker.html#a4daf860ef736aedd986e566383666be5":[2,0,0,1,30,4], "classGpgFrontend_1_1UI_1_1SignersPicker.html#a524ee72ddb4fe397d71c0d4b5eb69171":[2,0,0,1,30,3], -"classGpgFrontend_1_1UI_1_1SignersPicker.html#aba7633983da57c7a7eb2710a1f33f7ac":[2,0,0,1,30,2], -"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html":[2,0,0,1,14], -"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a001803152c0e5bd9de7c7dd04cef8ad4":[2,0,0,1,14,24] +"classGpgFrontend_1_1UI_1_1SignersPicker.html#aba7633983da57c7a7eb2710a1f33f7ac":[2,0,0,1,30,2] }; diff --git a/docs/html/navtreeindex6.js b/docs/html/navtreeindex6.js index 74895c85..afd4ba5a 100644 --- a/docs/html/navtreeindex6.js +++ b/docs/html/navtreeindex6.js @@ -1,5 +1,7 @@ var NAVTREEINDEX6 = { +"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html":[2,0,0,1,14], +"classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a001803152c0e5bd9de7c7dd04cef8ad4":[2,0,0,1,14,24], "classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a029017ad2e025a43d21144f1b7427593":[2,0,0,1,14,1], "classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a06ae254026e0be902d28bb005a91fe0c":[2,0,0,1,14,23], "classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a10b30ea96e819657053c1d5752024547":[2,0,0,1,14,18], @@ -149,8 +151,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,0], "functions.html":[2,3,0], +"functions.html":[2,3,0,0], "functions_a.html":[2,3,0,1], "functions_b.html":[2,3,0,2], "functions_c.html":[2,3,0,3], @@ -247,7 +249,5 @@ var NAVTREEINDEX6 = "namespaceGpgFrontend.html#acb5dd82fc7d0428bafe34ed304dc15d1":[1,0,0,80], "namespaceGpgFrontend.html#acff2cf5dd5b112b324fa6574ee935f79":[1,0,0,86], "namespaceGpgFrontend.html#ad8f79b76997875f0588a77340a34d2a1":[1,0,0,71], -"namespaceGpgFrontend.html#ada6a044ece8975e35b2a229f65249713":[1,0,0,48], -"namespaceGpgFrontend.html#adf0fbe100c3ea1bf2f33bc0f55dfff17":[1,0,0,84], -"namespaceGpgFrontend.html#ae060b7e70b7898c1239f372b55bac640":[1,0,0,53] +"namespaceGpgFrontend.html#ada6a044ece8975e35b2a229f65249713":[1,0,0,48] }; diff --git a/docs/html/navtreeindex7.js b/docs/html/navtreeindex7.js index aeaceba9..7f451994 100644 --- a/docs/html/navtreeindex7.js +++ b/docs/html/navtreeindex7.js @@ -1,5 +1,7 @@ var NAVTREEINDEX7 = { +"namespaceGpgFrontend.html#adf0fbe100c3ea1bf2f33bc0f55dfff17":[1,0,0,84], +"namespaceGpgFrontend.html#ae060b7e70b7898c1239f372b55bac640":[1,0,0,53], "namespaceGpgFrontend.html#ae3f2947210ad3e11269ebac355f47492":[1,0,0,81], "namespaceGpgFrontend.html#aeeebf38d3337a0772e682bddaff88ff4":[1,0,0,94], "namespaceGpgFrontend.html#af909eb3cf2690d23939e394a461e48e9":[1,0,0,79], diff --git a/docs/html/search/all_12.js b/docs/html/search/all_12.js index 6b2788df..96577ad9 100644 --- a/docs/html/search/all_12.js +++ b/docs/html/search/all_12.js @@ -62,8 +62,8 @@ var searchData= ['signalrefreshinfoboard_557',['SignalRefreshInfoBoard',['../classGpgFrontend_1_1UI_1_1SignalStation.html#a94d4c7d79e0deb7026083689bc5dc2ad',1,'GpgFrontend::UI::SignalStation::SignalRefreshInfoBoard()'],['../classGpgFrontend_1_1UI_1_1FilePage.html#a301c5c7747ad251b14c490d58b5d678f',1,'GpgFrontend::UI::FilePage::SignalRefreshInfoBoard()']]], ['signalrefreshstatusbar_558',['SignalRefreshStatusBar',['../classGpgFrontend_1_1UI_1_1SignalStation.html#a7b5fb2e2c0ad238313650a08ea648ce3',1,'GpgFrontend::UI::SignalStation::SignalRefreshStatusBar()'],['../classGpgFrontend_1_1UI_1_1KeyList.html#a947f4ce45285b58bbde94f4ae879ff7a',1,'GpgFrontend::UI::KeyList::SignalRefreshStatusBar()']]], ['signalreplyfromupdateserver_559',['SignalReplyFromUpdateServer',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a5e752e01539ccfdc6bbe41a404ddaa95',1,'GpgFrontend::UI::UpdateTab']]], - ['signalrestartneeded_560',['SignalRestartNeeded',['../classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html#a35a707865fbcc95b6261e382a6ff171c',1,'GpgFrontend::UI::GnuPGControllerDialog::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#af5ba6646af45d0d1d794bc52ee54b1b9',1,'GpgFrontend::UI::SettingsDialog::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1GeneralTab.html#aa88ccbda61728be6de0aa2d9b92e0b69',1,'GpgFrontend::UI::GeneralTab::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#a26449a77844d9db69a543ff88f10e347',1,'GpgFrontend::UI::KeyserverTab::SignalRestartNeeded()']]], - ['signalrestartneeded_561',['signalRestartNeeded',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html#abff49b636449815a9ebff52f5c067712',1,'GpgFrontend::UI::AppearanceTab']]], + ['signalrestartneeded_560',['signalRestartNeeded',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html#abff49b636449815a9ebff52f5c067712',1,'GpgFrontend::UI::AppearanceTab']]], + ['signalrestartneeded_561',['SignalRestartNeeded',['../classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html#a35a707865fbcc95b6261e382a6ff171c',1,'GpgFrontend::UI::GnuPGControllerDialog::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#af5ba6646af45d0d1d794bc52ee54b1b9',1,'GpgFrontend::UI::SettingsDialog::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1GeneralTab.html#aa88ccbda61728be6de0aa2d9b92e0b69',1,'GpgFrontend::UI::GeneralTab::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#a26449a77844d9db69a543ff88f10e347',1,'GpgFrontend::UI::KeyserverTab::SignalRestartNeeded()']]], ['signalstation_562',['SignalStation',['../classGpgFrontend_1_1UI_1_1SignalStation.html',1,'GpgFrontend::UI']]], ['signaltaskend_563',['SignalTaskEnd',['../classGpgFrontend_1_1Thread_1_1Task.html#abbbb68bcac48b6c31d6fe8ee1572f151',1,'GpgFrontend::Thread::Task']]], ['signaltaskrunnableend_564',['SignalTaskRunnableEnd',['../classGpgFrontend_1_1Thread_1_1Task.html#a125b7e71f21dadf10618e30ee0386b12',1,'GpgFrontend::Thread::Task']]], diff --git a/docs/html/search/all_7.js b/docs/html/search/all_7.js index 31a22f25..7961e94a 100644 --- a/docs/html/search/all_7.js +++ b/docs/html/search/all_7.js @@ -44,8 +44,8 @@ var searchData= ['getfingerprint_218',['GetFingerprint',['../classGpgFrontend_1_1GpgSubKey.html#a09b00ac6a3b934b816f9522f78e77d59',1,'GpgFrontend::GpgSubKey::GetFingerprint()'],['../classGpgFrontend_1_1GpgKey.html#a165b3f645e2c6a4bbd024199e1f1cc9b',1,'GpgFrontend::GpgKey::GetFingerprint()'],['../classGpgFrontend_1_1GpgSignature.html#a627b5206311998dd3f45393344b195be',1,'GpgFrontend::GpgSignature::GetFingerprint()']]], ['getfullid_219',['GetFullID',['../classGpgFrontend_1_1Thread_1_1Task.html#a3df2340426251e9145e5fe4419937e2a',1,'GpgFrontend::Thread::Task']]], ['gethashalgo_220',['GetHashAlgo',['../classGpgFrontend_1_1GpgSignature.html#ace10a3ac7f4dc3888b2ad62157213f1c',1,'GpgFrontend::GpgSignature']]], - ['getid_221',['GetID',['../classGpgFrontend_1_1GpgSubKey.html#a48d3dfbd3aae9523ffbdb916aad8ad53',1,'GpgFrontend::GpgSubKey']]], - ['getid_222',['GetId',['../classGpgFrontend_1_1GpgKey.html#a8930f958f3ca1f5566f63e8c2273837e',1,'GpgFrontend::GpgKey']]], + ['getid_221',['GetId',['../classGpgFrontend_1_1GpgKey.html#a8930f958f3ca1f5566f63e8c2273837e',1,'GpgFrontend::GpgKey']]], + ['getid_222',['GetID',['../classGpgFrontend_1_1GpgSubKey.html#a48d3dfbd3aae9523ffbdb916aad8ad53',1,'GpgFrontend::GpgSubKey']]], ['getinfo_223',['GetInfo',['../classGpgFrontend_1_1GpgContext.html#a4a8f6ff37e45979159ab375b2c7d48c3',1,'GpgFrontend::GpgContext']]], ['getinstance_224',['GetInstance',['../classGpgFrontend_1_1SingletonFunctionObject.html#a70484d7cfe9f9dcbcd5f8bb749250f36',1,'GpgFrontend::SingletonFunctionObject::GetInstance()'],['../classGpgFrontend_1_1UI_1_1CommonUtils.html#aed529969f54e39e3f9da14ae6dd00d49',1,'GpgFrontend::UI::CommonUtils::GetInstance()'],['../classGpgFrontend_1_1SingletonStorageCollection.html#ac56d19e0d4b99e7b8a86a017721f3db1',1,'GpgFrontend::SingletonStorageCollection::GetInstance()'],['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a9b341a1a903cec0c70a6af4bb230905e',1,'GpgFrontend::UI::GpgFrontendApplication::GetInstance()'],['../classGpgFrontend_1_1UI_1_1SignalStation.html#abe381ce56a7b157a3760b2fd9c3b7419',1,'GpgFrontend::UI::SignalStation::GetInstance()'],['../classGpgFrontend_1_1CoreSignalStation.html#a0c5893909726b919ea733de9906cfb36',1,'GpgFrontend::CoreSignalStation::GetInstance()'],['../classGpgFrontend_1_1CoreCommonUtil.html#a8588dfa6ccb57c055f022b13e2da1e7c',1,'GpgFrontend::CoreCommonUtil::GetInstance()']]], ['getinvalid_225',['GetInvalid',['../classGpgFrontend_1_1GpgUID.html#a388ad367d353edd5eeb6e529977c924c',1,'GpgFrontend::GpgUID']]], diff --git a/docs/html/search/enums_0.js b/docs/html/search/enums_0.js index a026a4a7..76305ac6 100644 --- a/docs/html/search/enums_0.js +++ b/docs/html/search/enums_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['infoboardstatus_1578',['InfoBoardStatus',['../namespaceGpgFrontend_1_1UI.html#acbaebd342a317b1f067942e5144bb00d',1,'GpgFrontend::UI']]] + ['infoboardstatus_1577',['InfoBoardStatus',['../namespaceGpgFrontend_1_1UI.html#acbaebd342a317b1f067942e5144bb00d',1,'GpgFrontend::UI']]] ]; diff --git a/docs/html/search/functions_12.js b/docs/html/search/functions_12.js index e3efcd69..dc813172 100644 --- a/docs/html/search/functions_12.js +++ b/docs/html/search/functions_12.js @@ -55,112 +55,111 @@ var searchData= ['signalrefreshinfoboard_1293',['SignalRefreshInfoBoard',['../classGpgFrontend_1_1UI_1_1SignalStation.html#a94d4c7d79e0deb7026083689bc5dc2ad',1,'GpgFrontend::UI::SignalStation::SignalRefreshInfoBoard()'],['../classGpgFrontend_1_1UI_1_1FilePage.html#a301c5c7747ad251b14c490d58b5d678f',1,'GpgFrontend::UI::FilePage::SignalRefreshInfoBoard()']]], ['signalrefreshstatusbar_1294',['SignalRefreshStatusBar',['../classGpgFrontend_1_1UI_1_1KeyList.html#a947f4ce45285b58bbde94f4ae879ff7a',1,'GpgFrontend::UI::KeyList::SignalRefreshStatusBar()'],['../classGpgFrontend_1_1UI_1_1SignalStation.html#a7b5fb2e2c0ad238313650a08ea648ce3',1,'GpgFrontend::UI::SignalStation::SignalRefreshStatusBar()']]], ['signalreplyfromupdateserver_1295',['SignalReplyFromUpdateServer',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a5e752e01539ccfdc6bbe41a404ddaa95',1,'GpgFrontend::UI::UpdateTab']]], - ['signalrestartneeded_1296',['SignalRestartNeeded',['../classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html#a35a707865fbcc95b6261e382a6ff171c',1,'GpgFrontend::UI::GnuPGControllerDialog']]], - ['signalrestartneeded_1297',['signalRestartNeeded',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html#abff49b636449815a9ebff52f5c067712',1,'GpgFrontend::UI::AppearanceTab']]], - ['signalrestartneeded_1298',['SignalRestartNeeded',['../classGpgFrontend_1_1UI_1_1GeneralTab.html#aa88ccbda61728be6de0aa2d9b92e0b69',1,'GpgFrontend::UI::GeneralTab::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#af5ba6646af45d0d1d794bc52ee54b1b9',1,'GpgFrontend::UI::SettingsDialog::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#a26449a77844d9db69a543ff88f10e347',1,'GpgFrontend::UI::KeyserverTab::SignalRestartNeeded()']]], - ['signaltaskend_1299',['SignalTaskEnd',['../classGpgFrontend_1_1Thread_1_1Task.html#abbbb68bcac48b6c31d6fe8ee1572f151',1,'GpgFrontend::Thread::Task']]], - ['signaltaskrunnableend_1300',['SignalTaskRunnableEnd',['../classGpgFrontend_1_1Thread_1_1Task.html#a125b7e71f21dadf10618e30ee0386b12',1,'GpgFrontend::Thread::Task']]], - ['signaluibytesdisplayed_1301',['SignalUIBytesDisplayed',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#afd3749488fdd3d1c53446fb8c833f3f4',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['signalupgradeversion_1302',['SignalUpgradeVersion',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a36c5597674253348477d78ad6af380ab',1,'GpgFrontend::UI::VersionCheckTask']]], - ['signerspicker_1303',['SignersPicker',['../classGpgFrontend_1_1UI_1_1SignersPicker.html#a02c3ba737702894fc6d4ac1a1c543ccb',1,'GpgFrontend::UI::SignersPicker']]], - ['signfile_1304',['SignFile',['../classGpgFrontend_1_1GpgFileOpera.html#a350df1c07c054625c4755a78e6ca5ca8',1,'GpgFrontend::GpgFileOpera']]], - ['signkey_1305',['SignKey',['../classGpgFrontend_1_1GpgKeyManager.html#a12138780c53add7589f78f056019e5e0',1,'GpgFrontend::GpgKeyManager']]], - ['singletonfunctionobject_1306',['SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html#a194e49b07d46345bdad386505d743a61',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(const SingletonFunctionObject< T > &)=delete'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a4aa7f1eb1d3281bb1fccfcbb1b416251',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(int channel)'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a7090636bed6f4bad5b99f28f6872c645',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(const T &)=delete'],['../classGpgFrontend_1_1SingletonFunctionObject.html#aabc5fe8e5a372ac276a265286457cb9a',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(T &&)=delete'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a02e76b42ab51d77588b01c7508bed258',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject()=default']]], - ['slot_5factivated_5fkey_5ftype_1307',['slot_activated_key_type',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a52a0aadc9b1e80bdcaaf1ad9d8997957',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_activated_key_type()'],['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ab8f04b046abb56d53bdbe67838b84fdc',1,'GpgFrontend::UI::KeyGenDialog::slot_activated_key_type()']]], - ['slot_5fadd_5fpgp_5fheader_1308',['slot_add_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a821247d738457c4ee046162aad6728f9',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fadd_5fuid_5fresult_1309',['slot_add_uid_result',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a16f1ae88d6a417b614cfc6ae1852187c',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['slot_5fappend_5fselected_5fkeys_1310',['slot_append_selected_keys',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a76bf3784d751db78ed13bd9962e14472',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fauthentication_5fbox_5fchanged_1311',['slot_authentication_box_changed',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a13229f07ef0ed594357df1918af50d3d',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_authentication_box_changed()'],['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a904d5e72a1946382ddfca80dc57c4db5',1,'GpgFrontend::UI::KeyGenDialog::slot_authentication_box_changed(int state)']]], - ['slot_5fcertification_5fbox_5fchanged_1312',['slot_certification_box_changed',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a48e953cd49efde2315868e8606af7226',1,'GpgFrontend::UI::KeyGenDialog::slot_certification_box_changed()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a8ab50d8f47489c57e382b3fe231ba9a7',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_certification_box_changed()']]], - ['slot_5fclean_5fdouble_5fline_5fbreaks_1313',['slot_clean_double_line_breaks',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aea9274389c3b049793fe5aa5a6adf63c',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fcompress_5ffiles_1314',['slot_compress_files',['../classGpgFrontend_1_1UI_1_1FilePage.html#a250b1950f874c1d11549cd5c0ea9693f',1,'GpgFrontend::UI::FilePage']]], - ['slot_5fcopy_5fdefault_5fuid_5fto_5fclipboard_1315',['slot_copy_default_uid_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3982432b140738859415e487e2c5f5eb',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fcopy_5ffingerprint_1316',['slot_copy_fingerprint',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#af8b600fbd7cd0fbb5b6183403bf870b2',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['slot_5fcopy_5fkey_5fid_5fto_5fclipboard_1317',['slot_copy_key_id_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9e2ddb2135df42d76134bea168fbdce9',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fcopy_5fmail_5faddress_5fto_5fclipboard_1318',['slot_copy_mail_address_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af93d72eaf58326f1f9e926752c6b1fc6',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fcreate_5fnew_5fuid_1319',['slot_create_new_uid',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a4e115ce46a85c2f9e4e0e2427839fc7c',1,'GpgFrontend::UI::KeyNewUIDDialog']]], - ['slot_5fcut_5fpgp_5fheader_1320',['slot_cut_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7f5a88922d06bee977335fb4b5f1d86d',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fdecrypt_1321',['slot_decrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae2d89e2cc6c99ff0e16b396d2381f904',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fdecrypt_5fverify_1322',['slot_decrypt_verify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1d61ea803e6c825bd54f42ba9ae85919',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fdisable_5ftab_5factions_1323',['slot_disable_tab_actions',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a24a0b0d974fc5f8fdda60c128a82d957',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fdouble_5fclicked_1324',['slot_double_clicked',['../classGpgFrontend_1_1UI_1_1KeyList.html#a69e54f06d546d516a0dcdf1055b8028e',1,'GpgFrontend::UI::KeyList']]], - ['slot_5fencrypt_1325',['slot_encrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae11d01211c2914ecc148e13dd7de506e',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fencrypt_5fsign_1326',['slot_encrypt_sign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a304efe91afa31b32725caa00c27475a4',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fencryption_5fbox_5fchanged_1327',['slot_encryption_box_changed',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ae611933ccd6fd67e65a2cf1ff09b5e8f',1,'GpgFrontend::UI::KeyGenDialog::slot_encryption_box_changed()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a1f4dda7500b3de7476e5d1e7bd5b550b',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_encryption_box_changed()']]], - ['slot_5fexpire_5fbox_5fchanged_1328',['slot_expire_box_changed',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a516aa59c71a9ddf06c51e93252e93b76',1,'GpgFrontend::UI::KeyGenDialog::slot_expire_box_changed()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a49d9f3bb2cfb17eb39dcd4dc0385234e',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_expire_box_changed()']]], - ['slot_5fexport_5fprivate_5fkey_1329',['slot_export_private_key',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a384f4250e58110da58c0e6996b42a8ab',1,'GpgFrontend::UI::KeyPairOperaTab']]], - ['slot_5ffile_5ftree_5fview_5fitem_5fclicked_1330',['slot_file_tree_view_item_clicked',['../classGpgFrontend_1_1UI_1_1FilePage.html#a676917817d6f519e043742d1d87f97f1',1,'GpgFrontend::UI::FilePage']]], - ['slot_5ffile_5ftree_5fview_5fitem_5fdouble_5fclicked_1331',['slot_file_tree_view_item_double_clicked',['../classGpgFrontend_1_1UI_1_1FilePage.html#ad3c54320bdafbbb2c06a20d6c7dea9d6',1,'GpgFrontend::UI::FilePage']]], - ['slot_5ffind_1332',['slot_find',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae28089efbd236708601470f30f26faaa',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fformat_5fgpg_5fheader_1333',['slot_format_gpg_header',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a45267bcfc8fc83851894061c0fe2a9c2',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['slot_5fimport_1334',['slot_import',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ac9c14bbc97945c94fd02c8e067ccab06',1,'GpgFrontend::UI::KeyServerImportDialog']]], - ['slot_5fimport_5ffinished_1335',['slot_import_finished',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a6f1c5238da7cd6f117bed8018469b37a',1,'GpgFrontend::UI::KeyServerImportDialog']]], - ['slot_5fimport_5fkey_5ffrom_5fedit_1336',['slot_import_key_from_edit',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a55926649e28a96318b89afba01b966bf',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5finsert_5ftext_1337',['slot_insert_text',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a184985104f23da8fdf2b9aaf7b27405b',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['slot_5fjump_5fpage_1338',['slot_jump_page',['../classGpgFrontend_1_1UI_1_1ChoosePage.html#af0d7890fe65385b7785719b9cff0718b',1,'GpgFrontend::UI::ChoosePage']]], - ['slot_5fkey_5fgen_5faccept_1339',['slot_key_gen_accept',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#af1f7a62dcb024513453766ee8816d514',1,'GpgFrontend::UI::KeyGenDialog::slot_key_gen_accept()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aab426dec4b4655b215b09b490e05ad05',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_key_gen_accept()']]], - ['slot_5fnon_5fexpired_5fchecked_1340',['slot_non_expired_checked',['../classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#adde2b33bd17f521f0630702987b1d274',1,'GpgFrontend::UI::KeySetExpireDateDialog']]], - ['slot_5fopen_5ffile_5ftab_1341',['slot_open_file_tab',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a29a811d4d440c79c1bd2cc2bb40cdf7e',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fopen_5fkey_5fmanagement_1342',['slot_open_key_management',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a16ddebec90a4bd0d13baa9d972c3445f',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fopen_5fsettings_5fdialog_1343',['slot_open_settings_dialog',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a874b505fbc1046f579a736683f5a7f65',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fopen_5furl_1344',['slot_open_url',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a51ff99077a75507365307f5dd783df99',1,'GpgFrontend::UI::HelpPage']]], - ['slot_5fprocess_5fnetwork_5freply_1345',['slot_process_network_reply',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#af9350e0a8d5993e5be0a5478fcb161be',1,'GpgFrontend::UI::ListedKeyServerTestTask']]], - ['slot_5fremove_5ftab_1346',['slot_remove_tab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a12f65fbc4984c266a5df4505ecde7c42',1,'GpgFrontend::UI::TextEdit']]], - ['slot_5fsave_5fstatus_5fto_5fcache_5ffor_5frevovery_1347',['slot_save_status_to_cache_for_revovery',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a1bf57ebe1e32b12c48bb633b7dd7a4f1',1,'GpgFrontend::UI::TextEdit']]], - ['slot_5fset_5frestart_5fneeded_1348',['slot_set_restart_needed',['../classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html#a2bb963a14733cf9b99736b6624c09d83',1,'GpgFrontend::UI::GnuPGControllerDialog::slot_set_restart_needed()'],['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#acc6b4386de554fce6fbb60ac6d201952',1,'GpgFrontend::UI::SettingsDialog::slot_set_restart_needed()']]], - ['slot_5fshow_5fkey_5fdetails_1349',['slot_show_key_details',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a033d448541b44fa48b76dec828a4eb0e',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fshow_5fversion_5fstatus_1350',['slot_show_version_status',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a1003bd969ecbc5deba940e39436968f4',1,'GpgFrontend::UI::UpdateTab']]], - ['slot_5fsign_1351',['slot_sign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3f3d03b0ec22385bee559fbd2aeb881b',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fsign_5fkey_1352',['slot_sign_key',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#a82f6bf641ff3b64341a0bdcf76571c43',1,'GpgFrontend::UI::KeyUIDSignDialog']]], - ['slot_5fsigning_5fbox_5fchanged_1353',['slot_signing_box_changed',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a03b7fe3e34147e404ca3ca6a0aa80cfc',1,'GpgFrontend::UI::KeyGenDialog::slot_signing_box_changed()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aedef4e8784c8a3edb06b0f2821500552',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_signing_box_changed()']]], - ['slot_5fstart_5fwizard_1354',['slot_start_wizard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aabf3ddf6b624790369f164b4889c95be',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fupdate_5fkey_5fstatus_1355',['slot_update_key_status',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#ab4ac26378d6a07757720163eb4b1cb0e',1,'GpgFrontend::UI::CommonUtils']]], - ['slot_5fupload_5fkey_5fto_5fserver_1356',['slot_upload_key_to_server',['../classGpgFrontend_1_1UI_1_1KeyUploadDialog.html#a0f724649ca953b888f07d69c97fe45b6',1,'GpgFrontend::UI::KeyUploadDialog']]], - ['slot_5fverify_1357',['slot_verify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa9c986dd95984811479ea93230c74b5d',1,'GpgFrontend::UI::MainWindow']]], - ['slot_5fversion_5fupgrade_1358',['slot_version_upgrade',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a48368c77af7b1f4cb632870b8d914a28',1,'GpgFrontend::UI::MainWindow']]], - ['slotclosetab_1359',['SlotCloseTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa21659aa7acba98dfd6286d69e00ab9b',1,'GpgFrontend::UI::TextEdit']]], - ['slotcopy_1360',['SlotCopy',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3599bd01636a873cf3437ab6b9d38780',1,'GpgFrontend::UI::TextEdit']]], - ['slotcurpagefiletreeview_1361',['SlotCurPageFileTreeView',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a72014409d407c161b048e07c061b4cf9',1,'GpgFrontend::UI::TextEdit']]], - ['slotcurpagetextedit_1362',['SlotCurPageTextEdit',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a48351dc1529da3b8da311f65b735b5f1',1,'GpgFrontend::UI::TextEdit']]], - ['slotcut_1363',['SlotCut',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae1e710c6722910b8d35df97aaabb3162',1,'GpgFrontend::UI::TextEdit']]], - ['slotexecutecommand_1364',['SlotExecuteCommand',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a95cd625a2e0e74ee4d564843c6d16791',1,'GpgFrontend::UI::CommonUtils']]], - ['slotexecutegpgcommand_1365',['SlotExecuteGpgCommand',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#afc845c1c37487c99f78d8e66f6874f6d',1,'GpgFrontend::UI::CommonUtils']]], - ['slotfiledecrypt_1366',['SlotFileDecrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0a6d0618f2835a6dcae707a4ca770a48',1,'GpgFrontend::UI::MainWindow']]], - ['slotfiledecryptverify_1367',['SlotFileDecryptVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab23c7e67dd1f5295b3c49ad79dfd5919',1,'GpgFrontend::UI::MainWindow']]], - ['slotfileencrypt_1368',['SlotFileEncrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9ec699536a35a37961a8c6da1e231ae3',1,'GpgFrontend::UI::MainWindow']]], - ['slotfileencryptsign_1369',['SlotFileEncryptSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a25a2e4017d77cffc8362bde9606fad30',1,'GpgFrontend::UI::MainWindow']]], - ['slotfilesign_1370',['SlotFileSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8bcdcbe678b8dc0837fffda2ebfe79bf',1,'GpgFrontend::UI::MainWindow']]], - ['slotfileverify_1371',['SlotFileVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9879061cfd321c6757c77f75d46dc7d8',1,'GpgFrontend::UI::MainWindow']]], - ['slotfilltexteditwithtext_1372',['SlotFillTextEditWithText',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af466ec2b8ab3f695d206efc0574bbe20',1,'GpgFrontend::UI::TextEdit']]], - ['slotimport_1373',['SlotImport',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a1e17305d6b470d0f7050eb8e3e6ee3d8',1,'GpgFrontend::UI::KeyServerImportDialog::SlotImport(const KeyIdArgsListPtr &keys)'],['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#abb3d99b2c17b0f6ddb0e5b93dd8f8802',1,'GpgFrontend::UI::KeyServerImportDialog::SlotImport(std::vector< std::string > key_ids_list, std::string keyserver_url)']]], - ['slotimportkeyfromclipboard_1374',['SlotImportKeyFromClipboard',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a0c8bf56fc5371cd2c5e9d2a0f67bf72a',1,'GpgFrontend::UI::CommonUtils']]], - ['slotimportkeyfromfile_1375',['SlotImportKeyFromFile',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a057526790f6b2f6288c3a35322c34d8d',1,'GpgFrontend::UI::CommonUtils']]], - ['slotimportkeyfromkeyserver_1376',['SlotImportKeyFromKeyServer',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#af1b3538d3119c8564e83c7661f73f6ea',1,'GpgFrontend::UI::CommonUtils::SlotImportKeyFromKeyServer(QWidget *parent)'],['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a35a47fc31b81b6c4f5899e8ab5c4c51a',1,'GpgFrontend::UI::CommonUtils::SlotImportKeyFromKeyServer(const GpgFrontend::KeyIdArgsList &key_ids, const GpgFrontend::UI::CommonUtils::ImportCallbackFunctiopn &callback)']]], - ['slotimportkeys_1377',['SlotImportKeys',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a3bc26cc1e0f00f0ce2f95c0b6c8778d8',1,'GpgFrontend::UI::CommonUtils']]], - ['slotnewfiletab_1378',['SlotNewFileTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae22ecadf31648f424eb8ab86bd28ef39',1,'GpgFrontend::UI::TextEdit']]], - ['slotnewhelptab_1379',['slotNewHelpTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3c17fdf3abf9c4fb6ce35cfb8f0f8fc4',1,'GpgFrontend::UI::TextEdit']]], - ['slotnewtab_1380',['SlotNewTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a57a46ab5595622ae0b7bceef7d56bd7c',1,'GpgFrontend::UI::TextEdit']]], - ['slotopen_1381',['SlotOpen',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a15335d38187ddf580b7200d856768cfb',1,'GpgFrontend::UI::TextEdit']]], - ['slotopenfile_1382',['SlotOpenFile',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a05b838ad518857fed24864ecce40c203',1,'GpgFrontend::UI::MainWindow::SlotOpenFile()'],['../classGpgFrontend_1_1UI_1_1TextEdit.html#a60c73cc66a48a38c13e7890de49e86c3',1,'GpgFrontend::UI::TextEdit::SlotOpenFile(const QString &path)']]], - ['slotpaste_1383',['SlotPaste',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa2230418dc8f72c400f5a90082a983c9',1,'GpgFrontend::UI::TextEdit']]], - ['slotprint_1384',['SlotPrint',['../classGpgFrontend_1_1UI_1_1TextEdit.html#adca2bbfa746b5598f2a4f74026b84224',1,'GpgFrontend::UI::TextEdit']]], - ['slotquote_1385',['SlotQuote',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6a02fce9dc4039c982d6dd19231517ee',1,'GpgFrontend::UI::TextEdit']]], - ['slotredo_1386',['SlotRedo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae2b3bf422789d56087face98b6a9e929',1,'GpgFrontend::UI::TextEdit']]], - ['slotrefresh_1387',['SlotRefresh',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a68f984815100f4ce281b9794f193e516',1,'GpgFrontend::UI::InfoBoardWidget']]], - ['slotsave_1388',['SlotSave',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ace0b8f4c161db9f4f5db5ecbfd7a91c0',1,'GpgFrontend::UI::TextEdit']]], - ['slotsaveas_1389',['SlotSaveAs',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a02fa44ba0c56f3f6ae125f8490faf254',1,'GpgFrontend::UI::TextEdit']]], - ['slotselectall_1390',['SlotSelectAll',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6c814253dfc061bfdae0fa71c6196c55',1,'GpgFrontend::UI::TextEdit']]], - ['slotsetrestartneeded_1391',['SlotSetRestartNeeded',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a276e843e2f5eda8934fb350fb6f89327',1,'GpgFrontend::UI::MainWindow']]], - ['slotshowmodified_1392',['SlotShowModified',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ab24adc1adb3b9b29469992e4c444436e',1,'GpgFrontend::UI::TextEdit']]], - ['slotswitchtabdown_1393',['SlotSwitchTabDown',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a576e06390e65576465297d2ab8d7d474',1,'GpgFrontend::UI::TextEdit']]], - ['slotswitchtabup_1394',['SlotSwitchTabUp',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af1e364b513f566c743a5d36c19098762',1,'GpgFrontend::UI::TextEdit']]], - ['slotundo_1395',['SlotUndo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a4a81e69f6dc74ea649ca9a2358342fd5',1,'GpgFrontend::UI::TextEdit']]], - ['startdirmngr_1396',['StartDirmngr',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a46085a11235894deccd312fc259d5078',1,'GpgFrontend::GpgAdvancedOperator']]], - ['startgpgagent_1397',['StartGpgAgent',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a07c32ba25cf6153fbc8ee585c4ba377c',1,'GpgFrontend::GpgAdvancedOperator']]], - ['startkeyboxd_1398',['StartKeyBoxd',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a9313410359ed9cff9ee66fa9b4b095ee',1,'GpgFrontend::GpgAdvancedOperator']]], - ['stripped_5fname_1399',['stripped_name',['../classGpgFrontend_1_1UI_1_1TextEdit.html#afb9b7a7d88154d774b3d727d8e640cbb',1,'GpgFrontend::UI::TextEdit']]], - ['subkeygeneratedialog_1400',['SubkeyGenerateDialog',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a8f9d8baa7b576a4aa857818b87c26bcd',1,'GpgFrontend::UI::SubkeyGenerateDialog']]], - ['switch_5fui_5fenabled_1401',['switch_ui_enabled',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#ae3d97948f205e84f0604d4da634a4513',1,'GpgFrontend::UI::NetworkTab']]], - ['switch_5fui_5fproxy_5ftype_1402',['switch_ui_proxy_type',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#a1b0297158f13daec77645c88e5a8adcd',1,'GpgFrontend::UI::NetworkTab']]], - ['syncsettings_1403',['SyncSettings',['../classGpgFrontend_1_1GlobalSettingStation.html#ac061ac8e5308f67ea52b98888bbb2e8d',1,'GpgFrontend::GlobalSettingStation']]] + ['signalrestartneeded_1296',['signalRestartNeeded',['../classGpgFrontend_1_1UI_1_1AppearanceTab.html#abff49b636449815a9ebff52f5c067712',1,'GpgFrontend::UI::AppearanceTab']]], + ['signalrestartneeded_1297',['SignalRestartNeeded',['../classGpgFrontend_1_1UI_1_1KeyserverTab.html#a26449a77844d9db69a543ff88f10e347',1,'GpgFrontend::UI::KeyserverTab::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#af5ba6646af45d0d1d794bc52ee54b1b9',1,'GpgFrontend::UI::SettingsDialog::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html#a35a707865fbcc95b6261e382a6ff171c',1,'GpgFrontend::UI::GnuPGControllerDialog::SignalRestartNeeded()'],['../classGpgFrontend_1_1UI_1_1GeneralTab.html#aa88ccbda61728be6de0aa2d9b92e0b69',1,'GpgFrontend::UI::GeneralTab::SignalRestartNeeded()']]], + ['signaltaskend_1298',['SignalTaskEnd',['../classGpgFrontend_1_1Thread_1_1Task.html#abbbb68bcac48b6c31d6fe8ee1572f151',1,'GpgFrontend::Thread::Task']]], + ['signaltaskrunnableend_1299',['SignalTaskRunnableEnd',['../classGpgFrontend_1_1Thread_1_1Task.html#a125b7e71f21dadf10618e30ee0386b12',1,'GpgFrontend::Thread::Task']]], + ['signaluibytesdisplayed_1300',['SignalUIBytesDisplayed',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#afd3749488fdd3d1c53446fb8c833f3f4',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['signalupgradeversion_1301',['SignalUpgradeVersion',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a36c5597674253348477d78ad6af380ab',1,'GpgFrontend::UI::VersionCheckTask']]], + ['signerspicker_1302',['SignersPicker',['../classGpgFrontend_1_1UI_1_1SignersPicker.html#a02c3ba737702894fc6d4ac1a1c543ccb',1,'GpgFrontend::UI::SignersPicker']]], + ['signfile_1303',['SignFile',['../classGpgFrontend_1_1GpgFileOpera.html#a350df1c07c054625c4755a78e6ca5ca8',1,'GpgFrontend::GpgFileOpera']]], + ['signkey_1304',['SignKey',['../classGpgFrontend_1_1GpgKeyManager.html#a12138780c53add7589f78f056019e5e0',1,'GpgFrontend::GpgKeyManager']]], + ['singletonfunctionobject_1305',['SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html#a194e49b07d46345bdad386505d743a61',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(const SingletonFunctionObject< T > &)=delete'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a4aa7f1eb1d3281bb1fccfcbb1b416251',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(int channel)'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a7090636bed6f4bad5b99f28f6872c645',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(const T &)=delete'],['../classGpgFrontend_1_1SingletonFunctionObject.html#aabc5fe8e5a372ac276a265286457cb9a',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject(T &&)=delete'],['../classGpgFrontend_1_1SingletonFunctionObject.html#a02e76b42ab51d77588b01c7508bed258',1,'GpgFrontend::SingletonFunctionObject::SingletonFunctionObject()=default']]], + ['slot_5factivated_5fkey_5ftype_1306',['slot_activated_key_type',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a52a0aadc9b1e80bdcaaf1ad9d8997957',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_activated_key_type()'],['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ab8f04b046abb56d53bdbe67838b84fdc',1,'GpgFrontend::UI::KeyGenDialog::slot_activated_key_type()']]], + ['slot_5fadd_5fpgp_5fheader_1307',['slot_add_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a821247d738457c4ee046162aad6728f9',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fadd_5fuid_5fresult_1308',['slot_add_uid_result',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a16f1ae88d6a417b614cfc6ae1852187c',1,'GpgFrontend::UI::KeyPairUIDTab']]], + ['slot_5fappend_5fselected_5fkeys_1309',['slot_append_selected_keys',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a76bf3784d751db78ed13bd9962e14472',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fauthentication_5fbox_5fchanged_1310',['slot_authentication_box_changed',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a13229f07ef0ed594357df1918af50d3d',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_authentication_box_changed()'],['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a904d5e72a1946382ddfca80dc57c4db5',1,'GpgFrontend::UI::KeyGenDialog::slot_authentication_box_changed(int state)']]], + ['slot_5fcertification_5fbox_5fchanged_1311',['slot_certification_box_changed',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a48e953cd49efde2315868e8606af7226',1,'GpgFrontend::UI::KeyGenDialog::slot_certification_box_changed()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a8ab50d8f47489c57e382b3fe231ba9a7',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_certification_box_changed()']]], + ['slot_5fclean_5fdouble_5fline_5fbreaks_1312',['slot_clean_double_line_breaks',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aea9274389c3b049793fe5aa5a6adf63c',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fcompress_5ffiles_1313',['slot_compress_files',['../classGpgFrontend_1_1UI_1_1FilePage.html#a250b1950f874c1d11549cd5c0ea9693f',1,'GpgFrontend::UI::FilePage']]], + ['slot_5fcopy_5fdefault_5fuid_5fto_5fclipboard_1314',['slot_copy_default_uid_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3982432b140738859415e487e2c5f5eb',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fcopy_5ffingerprint_1315',['slot_copy_fingerprint',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#af8b600fbd7cd0fbb5b6183403bf870b2',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['slot_5fcopy_5fkey_5fid_5fto_5fclipboard_1316',['slot_copy_key_id_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9e2ddb2135df42d76134bea168fbdce9',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fcopy_5fmail_5faddress_5fto_5fclipboard_1317',['slot_copy_mail_address_to_clipboard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af93d72eaf58326f1f9e926752c6b1fc6',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fcreate_5fnew_5fuid_1318',['slot_create_new_uid',['../classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html#a4e115ce46a85c2f9e4e0e2427839fc7c',1,'GpgFrontend::UI::KeyNewUIDDialog']]], + ['slot_5fcut_5fpgp_5fheader_1319',['slot_cut_pgp_header',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7f5a88922d06bee977335fb4b5f1d86d',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fdecrypt_1320',['slot_decrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae2d89e2cc6c99ff0e16b396d2381f904',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fdecrypt_5fverify_1321',['slot_decrypt_verify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1d61ea803e6c825bd54f42ba9ae85919',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fdisable_5ftab_5factions_1322',['slot_disable_tab_actions',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a24a0b0d974fc5f8fdda60c128a82d957',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fdouble_5fclicked_1323',['slot_double_clicked',['../classGpgFrontend_1_1UI_1_1KeyList.html#a69e54f06d546d516a0dcdf1055b8028e',1,'GpgFrontend::UI::KeyList']]], + ['slot_5fencrypt_1324',['slot_encrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae11d01211c2914ecc148e13dd7de506e',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fencrypt_5fsign_1325',['slot_encrypt_sign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a304efe91afa31b32725caa00c27475a4',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fencryption_5fbox_5fchanged_1326',['slot_encryption_box_changed',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ae611933ccd6fd67e65a2cf1ff09b5e8f',1,'GpgFrontend::UI::KeyGenDialog::slot_encryption_box_changed()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a1f4dda7500b3de7476e5d1e7bd5b550b',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_encryption_box_changed()']]], + ['slot_5fexpire_5fbox_5fchanged_1327',['slot_expire_box_changed',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a516aa59c71a9ddf06c51e93252e93b76',1,'GpgFrontend::UI::KeyGenDialog::slot_expire_box_changed()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a49d9f3bb2cfb17eb39dcd4dc0385234e',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_expire_box_changed()']]], + ['slot_5fexport_5fprivate_5fkey_1328',['slot_export_private_key',['../classGpgFrontend_1_1UI_1_1KeyPairOperaTab.html#a384f4250e58110da58c0e6996b42a8ab',1,'GpgFrontend::UI::KeyPairOperaTab']]], + ['slot_5ffile_5ftree_5fview_5fitem_5fclicked_1329',['slot_file_tree_view_item_clicked',['../classGpgFrontend_1_1UI_1_1FilePage.html#a676917817d6f519e043742d1d87f97f1',1,'GpgFrontend::UI::FilePage']]], + ['slot_5ffile_5ftree_5fview_5fitem_5fdouble_5fclicked_1330',['slot_file_tree_view_item_double_clicked',['../classGpgFrontend_1_1UI_1_1FilePage.html#ad3c54320bdafbbb2c06a20d6c7dea9d6',1,'GpgFrontend::UI::FilePage']]], + ['slot_5ffind_1331',['slot_find',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ae28089efbd236708601470f30f26faaa',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fformat_5fgpg_5fheader_1332',['slot_format_gpg_header',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a45267bcfc8fc83851894061c0fe2a9c2',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['slot_5fimport_1333',['slot_import',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#ac9c14bbc97945c94fd02c8e067ccab06',1,'GpgFrontend::UI::KeyServerImportDialog']]], + ['slot_5fimport_5ffinished_1334',['slot_import_finished',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a6f1c5238da7cd6f117bed8018469b37a',1,'GpgFrontend::UI::KeyServerImportDialog']]], + ['slot_5fimport_5fkey_5ffrom_5fedit_1335',['slot_import_key_from_edit',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a55926649e28a96318b89afba01b966bf',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5finsert_5ftext_1336',['slot_insert_text',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a184985104f23da8fdf2b9aaf7b27405b',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['slot_5fjump_5fpage_1337',['slot_jump_page',['../classGpgFrontend_1_1UI_1_1ChoosePage.html#af0d7890fe65385b7785719b9cff0718b',1,'GpgFrontend::UI::ChoosePage']]], + ['slot_5fkey_5fgen_5faccept_1338',['slot_key_gen_accept',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#af1f7a62dcb024513453766ee8816d514',1,'GpgFrontend::UI::KeyGenDialog::slot_key_gen_accept()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aab426dec4b4655b215b09b490e05ad05',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_key_gen_accept()']]], + ['slot_5fnon_5fexpired_5fchecked_1339',['slot_non_expired_checked',['../classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html#adde2b33bd17f521f0630702987b1d274',1,'GpgFrontend::UI::KeySetExpireDateDialog']]], + ['slot_5fopen_5ffile_5ftab_1340',['slot_open_file_tab',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a29a811d4d440c79c1bd2cc2bb40cdf7e',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fopen_5fkey_5fmanagement_1341',['slot_open_key_management',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a16ddebec90a4bd0d13baa9d972c3445f',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fopen_5fsettings_5fdialog_1342',['slot_open_settings_dialog',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a874b505fbc1046f579a736683f5a7f65',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fopen_5furl_1343',['slot_open_url',['../classGpgFrontend_1_1UI_1_1HelpPage.html#a51ff99077a75507365307f5dd783df99',1,'GpgFrontend::UI::HelpPage']]], + ['slot_5fprocess_5fnetwork_5freply_1344',['slot_process_network_reply',['../classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask.html#af9350e0a8d5993e5be0a5478fcb161be',1,'GpgFrontend::UI::ListedKeyServerTestTask']]], + ['slot_5fremove_5ftab_1345',['slot_remove_tab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a12f65fbc4984c266a5df4505ecde7c42',1,'GpgFrontend::UI::TextEdit']]], + ['slot_5fsave_5fstatus_5fto_5fcache_5ffor_5frevovery_1346',['slot_save_status_to_cache_for_revovery',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a1bf57ebe1e32b12c48bb633b7dd7a4f1',1,'GpgFrontend::UI::TextEdit']]], + ['slot_5fset_5frestart_5fneeded_1347',['slot_set_restart_needed',['../classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html#a2bb963a14733cf9b99736b6624c09d83',1,'GpgFrontend::UI::GnuPGControllerDialog::slot_set_restart_needed()'],['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#acc6b4386de554fce6fbb60ac6d201952',1,'GpgFrontend::UI::SettingsDialog::slot_set_restart_needed()']]], + ['slot_5fshow_5fkey_5fdetails_1348',['slot_show_key_details',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a033d448541b44fa48b76dec828a4eb0e',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fshow_5fversion_5fstatus_1349',['slot_show_version_status',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a1003bd969ecbc5deba940e39436968f4',1,'GpgFrontend::UI::UpdateTab']]], + ['slot_5fsign_1350',['slot_sign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3f3d03b0ec22385bee559fbd2aeb881b',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fsign_5fkey_1351',['slot_sign_key',['../classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html#a82f6bf641ff3b64341a0bdcf76571c43',1,'GpgFrontend::UI::KeyUIDSignDialog']]], + ['slot_5fsigning_5fbox_5fchanged_1352',['slot_signing_box_changed',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a03b7fe3e34147e404ca3ca6a0aa80cfc',1,'GpgFrontend::UI::KeyGenDialog::slot_signing_box_changed()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aedef4e8784c8a3edb06b0f2821500552',1,'GpgFrontend::UI::SubkeyGenerateDialog::slot_signing_box_changed()']]], + ['slot_5fstart_5fwizard_1353',['slot_start_wizard',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aabf3ddf6b624790369f164b4889c95be',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fupdate_5fkey_5fstatus_1354',['slot_update_key_status',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#ab4ac26378d6a07757720163eb4b1cb0e',1,'GpgFrontend::UI::CommonUtils']]], + ['slot_5fupload_5fkey_5fto_5fserver_1355',['slot_upload_key_to_server',['../classGpgFrontend_1_1UI_1_1KeyUploadDialog.html#a0f724649ca953b888f07d69c97fe45b6',1,'GpgFrontend::UI::KeyUploadDialog']]], + ['slot_5fverify_1356',['slot_verify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa9c986dd95984811479ea93230c74b5d',1,'GpgFrontend::UI::MainWindow']]], + ['slot_5fversion_5fupgrade_1357',['slot_version_upgrade',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a48368c77af7b1f4cb632870b8d914a28',1,'GpgFrontend::UI::MainWindow']]], + ['slotclosetab_1358',['SlotCloseTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa21659aa7acba98dfd6286d69e00ab9b',1,'GpgFrontend::UI::TextEdit']]], + ['slotcopy_1359',['SlotCopy',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3599bd01636a873cf3437ab6b9d38780',1,'GpgFrontend::UI::TextEdit']]], + ['slotcurpagefiletreeview_1360',['SlotCurPageFileTreeView',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a72014409d407c161b048e07c061b4cf9',1,'GpgFrontend::UI::TextEdit']]], + ['slotcurpagetextedit_1361',['SlotCurPageTextEdit',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a48351dc1529da3b8da311f65b735b5f1',1,'GpgFrontend::UI::TextEdit']]], + ['slotcut_1362',['SlotCut',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae1e710c6722910b8d35df97aaabb3162',1,'GpgFrontend::UI::TextEdit']]], + ['slotexecutecommand_1363',['SlotExecuteCommand',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a95cd625a2e0e74ee4d564843c6d16791',1,'GpgFrontend::UI::CommonUtils']]], + ['slotexecutegpgcommand_1364',['SlotExecuteGpgCommand',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#afc845c1c37487c99f78d8e66f6874f6d',1,'GpgFrontend::UI::CommonUtils']]], + ['slotfiledecrypt_1365',['SlotFileDecrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0a6d0618f2835a6dcae707a4ca770a48',1,'GpgFrontend::UI::MainWindow']]], + ['slotfiledecryptverify_1366',['SlotFileDecryptVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab23c7e67dd1f5295b3c49ad79dfd5919',1,'GpgFrontend::UI::MainWindow']]], + ['slotfileencrypt_1367',['SlotFileEncrypt',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9ec699536a35a37961a8c6da1e231ae3',1,'GpgFrontend::UI::MainWindow']]], + ['slotfileencryptsign_1368',['SlotFileEncryptSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a25a2e4017d77cffc8362bde9606fad30',1,'GpgFrontend::UI::MainWindow']]], + ['slotfilesign_1369',['SlotFileSign',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8bcdcbe678b8dc0837fffda2ebfe79bf',1,'GpgFrontend::UI::MainWindow']]], + ['slotfileverify_1370',['SlotFileVerify',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9879061cfd321c6757c77f75d46dc7d8',1,'GpgFrontend::UI::MainWindow']]], + ['slotfilltexteditwithtext_1371',['SlotFillTextEditWithText',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af466ec2b8ab3f695d206efc0574bbe20',1,'GpgFrontend::UI::TextEdit']]], + ['slotimport_1372',['SlotImport',['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#a1e17305d6b470d0f7050eb8e3e6ee3d8',1,'GpgFrontend::UI::KeyServerImportDialog::SlotImport(const KeyIdArgsListPtr &keys)'],['../classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html#abb3d99b2c17b0f6ddb0e5b93dd8f8802',1,'GpgFrontend::UI::KeyServerImportDialog::SlotImport(std::vector< std::string > key_ids_list, std::string keyserver_url)']]], + ['slotimportkeyfromclipboard_1373',['SlotImportKeyFromClipboard',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a0c8bf56fc5371cd2c5e9d2a0f67bf72a',1,'GpgFrontend::UI::CommonUtils']]], + ['slotimportkeyfromfile_1374',['SlotImportKeyFromFile',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a057526790f6b2f6288c3a35322c34d8d',1,'GpgFrontend::UI::CommonUtils']]], + ['slotimportkeyfromkeyserver_1375',['SlotImportKeyFromKeyServer',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#af1b3538d3119c8564e83c7661f73f6ea',1,'GpgFrontend::UI::CommonUtils::SlotImportKeyFromKeyServer(QWidget *parent)'],['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a35a47fc31b81b6c4f5899e8ab5c4c51a',1,'GpgFrontend::UI::CommonUtils::SlotImportKeyFromKeyServer(const GpgFrontend::KeyIdArgsList &key_ids, const GpgFrontend::UI::CommonUtils::ImportCallbackFunctiopn &callback)']]], + ['slotimportkeys_1376',['SlotImportKeys',['../classGpgFrontend_1_1UI_1_1CommonUtils.html#a3bc26cc1e0f00f0ce2f95c0b6c8778d8',1,'GpgFrontend::UI::CommonUtils']]], + ['slotnewfiletab_1377',['SlotNewFileTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae22ecadf31648f424eb8ab86bd28ef39',1,'GpgFrontend::UI::TextEdit']]], + ['slotnewhelptab_1378',['slotNewHelpTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a3c17fdf3abf9c4fb6ce35cfb8f0f8fc4',1,'GpgFrontend::UI::TextEdit']]], + ['slotnewtab_1379',['SlotNewTab',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a57a46ab5595622ae0b7bceef7d56bd7c',1,'GpgFrontend::UI::TextEdit']]], + ['slotopen_1380',['SlotOpen',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a15335d38187ddf580b7200d856768cfb',1,'GpgFrontend::UI::TextEdit']]], + ['slotopenfile_1381',['SlotOpenFile',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a05b838ad518857fed24864ecce40c203',1,'GpgFrontend::UI::MainWindow::SlotOpenFile()'],['../classGpgFrontend_1_1UI_1_1TextEdit.html#a60c73cc66a48a38c13e7890de49e86c3',1,'GpgFrontend::UI::TextEdit::SlotOpenFile(const QString &path)']]], + ['slotpaste_1382',['SlotPaste',['../classGpgFrontend_1_1UI_1_1TextEdit.html#aa2230418dc8f72c400f5a90082a983c9',1,'GpgFrontend::UI::TextEdit']]], + ['slotprint_1383',['SlotPrint',['../classGpgFrontend_1_1UI_1_1TextEdit.html#adca2bbfa746b5598f2a4f74026b84224',1,'GpgFrontend::UI::TextEdit']]], + ['slotquote_1384',['SlotQuote',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6a02fce9dc4039c982d6dd19231517ee',1,'GpgFrontend::UI::TextEdit']]], + ['slotredo_1385',['SlotRedo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ae2b3bf422789d56087face98b6a9e929',1,'GpgFrontend::UI::TextEdit']]], + ['slotrefresh_1386',['SlotRefresh',['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a68f984815100f4ce281b9794f193e516',1,'GpgFrontend::UI::InfoBoardWidget']]], + ['slotsave_1387',['SlotSave',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ace0b8f4c161db9f4f5db5ecbfd7a91c0',1,'GpgFrontend::UI::TextEdit']]], + ['slotsaveas_1388',['SlotSaveAs',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a02fa44ba0c56f3f6ae125f8490faf254',1,'GpgFrontend::UI::TextEdit']]], + ['slotselectall_1389',['SlotSelectAll',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a6c814253dfc061bfdae0fa71c6196c55',1,'GpgFrontend::UI::TextEdit']]], + ['slotsetrestartneeded_1390',['SlotSetRestartNeeded',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a276e843e2f5eda8934fb350fb6f89327',1,'GpgFrontend::UI::MainWindow']]], + ['slotshowmodified_1391',['SlotShowModified',['../classGpgFrontend_1_1UI_1_1TextEdit.html#ab24adc1adb3b9b29469992e4c444436e',1,'GpgFrontend::UI::TextEdit']]], + ['slotswitchtabdown_1392',['SlotSwitchTabDown',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a576e06390e65576465297d2ab8d7d474',1,'GpgFrontend::UI::TextEdit']]], + ['slotswitchtabup_1393',['SlotSwitchTabUp',['../classGpgFrontend_1_1UI_1_1TextEdit.html#af1e364b513f566c743a5d36c19098762',1,'GpgFrontend::UI::TextEdit']]], + ['slotundo_1394',['SlotUndo',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a4a81e69f6dc74ea649ca9a2358342fd5',1,'GpgFrontend::UI::TextEdit']]], + ['startdirmngr_1395',['StartDirmngr',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a46085a11235894deccd312fc259d5078',1,'GpgFrontend::GpgAdvancedOperator']]], + ['startgpgagent_1396',['StartGpgAgent',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a07c32ba25cf6153fbc8ee585c4ba377c',1,'GpgFrontend::GpgAdvancedOperator']]], + ['startkeyboxd_1397',['StartKeyBoxd',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a9313410359ed9cff9ee66fa9b4b095ee',1,'GpgFrontend::GpgAdvancedOperator']]], + ['stripped_5fname_1398',['stripped_name',['../classGpgFrontend_1_1UI_1_1TextEdit.html#afb9b7a7d88154d774b3d727d8e640cbb',1,'GpgFrontend::UI::TextEdit']]], + ['subkeygeneratedialog_1399',['SubkeyGenerateDialog',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a8f9d8baa7b576a4aa857818b87c26bcd',1,'GpgFrontend::UI::SubkeyGenerateDialog']]], + ['switch_5fui_5fenabled_1400',['switch_ui_enabled',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#ae3d97948f205e84f0604d4da634a4513',1,'GpgFrontend::UI::NetworkTab']]], + ['switch_5fui_5fproxy_5ftype_1401',['switch_ui_proxy_type',['../classGpgFrontend_1_1UI_1_1NetworkTab.html#a1b0297158f13daec77645c88e5a8adcd',1,'GpgFrontend::UI::NetworkTab']]], + ['syncsettings_1402',['SyncSettings',['../classGpgFrontend_1_1GlobalSettingStation.html#ac061ac8e5308f67ea52b98888bbb2e8d',1,'GpgFrontend::GlobalSettingStation']]] ]; diff --git a/docs/html/search/functions_13.js b/docs/html/search/functions_13.js index 6f739c1a..83350496 100644 --- a/docs/html/search/functions_13.js +++ b/docs/html/search/functions_13.js @@ -1,13 +1,13 @@ var searchData= [ - ['tabcount_1404',['TabCount',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a05c54658597b04c3976c72d3a5f9add9',1,'GpgFrontend::UI::TextEdit']]], - ['takechargeofresult_1405',['TakeChargeOfResult',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#acdb7839a5158f078b38d60f0fefc5155',1,'GpgFrontend::GpgVerifyResultAnalyse']]], - ['task_1406',['Task',['../classGpgFrontend_1_1Thread_1_1Task.html#abdff056f5c96f00ac67bd1edcb5f0a48',1,'GpgFrontend::Thread::Task::Task(std::string name=DEFAULT_TASK_NAME)'],['../classGpgFrontend_1_1Thread_1_1Task.html#a79f935428d2e03585673226228a7ffff',1,'GpgFrontend::Thread::Task::Task(TaskRunnable runnable, std::string name=DEFAULT_TASK_NAME, DataObjectPtr data_object=nullptr, bool sequency=true)'],['../classGpgFrontend_1_1Thread_1_1Task.html#a59047d6d26fdf78f9b43ddc189d84958',1,'GpgFrontend::Thread::Task::Task(TaskRunnable runnable, std::string name, DataObjectPtr data, TaskCallback callback=[](int, const std::shared_ptr< DataObject > &) {}, bool sequency=true)']]], - ['taskrunner_1407',['TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#ad3c8612cbe60112f9b14e616fb0a4acf',1,'GpgFrontend::Thread::TaskRunner']]], - ['taskrunnergetter_1408',['TaskRunnerGetter',['../classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html#a80794d81179f66f4b4ed3122a64f27cf',1,'GpgFrontend::Thread::TaskRunnerGetter']]], - ['test_5fpassphrase_5fcb_1409',['test_passphrase_cb',['../classGpgFrontend_1_1GpgContext.html#acc4234054002065dfbc5d5261a4950d4',1,'GpgFrontend::GpgContext']]], - ['test_5fstatus_5fcb_1410',['test_status_cb',['../classGpgFrontend_1_1GpgContext.html#a3844cd0966134939e5c4be9a725e5271',1,'GpgFrontend::GpgContext']]], - ['text_5fis_5fsigned_1411',['text_is_signed',['../namespaceGpgFrontend.html#a2a0394c8bdd277f5235f9875a1d69a99',1,'GpgFrontend']]], - ['tofuinfopage_1412',['TOFUInfoPage',['../classGpgFrontend_1_1UI_1_1TOFUInfoPage.html#a9adc1666e3f57536594876520019e395',1,'GpgFrontend::UI::TOFUInfoPage']]], - ['translatorstab_1413',['TranslatorsTab',['../classGpgFrontend_1_1UI_1_1TranslatorsTab.html#a89e5c7b9c17fb41b7c7bf461fb8ad99e',1,'GpgFrontend::UI::TranslatorsTab']]] + ['tabcount_1403',['TabCount',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a05c54658597b04c3976c72d3a5f9add9',1,'GpgFrontend::UI::TextEdit']]], + ['takechargeofresult_1404',['TakeChargeOfResult',['../classGpgFrontend_1_1GpgVerifyResultAnalyse.html#acdb7839a5158f078b38d60f0fefc5155',1,'GpgFrontend::GpgVerifyResultAnalyse']]], + ['task_1405',['Task',['../classGpgFrontend_1_1Thread_1_1Task.html#abdff056f5c96f00ac67bd1edcb5f0a48',1,'GpgFrontend::Thread::Task::Task(std::string name=DEFAULT_TASK_NAME)'],['../classGpgFrontend_1_1Thread_1_1Task.html#a79f935428d2e03585673226228a7ffff',1,'GpgFrontend::Thread::Task::Task(TaskRunnable runnable, std::string name=DEFAULT_TASK_NAME, DataObjectPtr data_object=nullptr, bool sequency=true)'],['../classGpgFrontend_1_1Thread_1_1Task.html#a59047d6d26fdf78f9b43ddc189d84958',1,'GpgFrontend::Thread::Task::Task(TaskRunnable runnable, std::string name, DataObjectPtr data, TaskCallback callback=[](int, const std::shared_ptr< DataObject > &) {}, bool sequency=true)']]], + ['taskrunner_1406',['TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#ad3c8612cbe60112f9b14e616fb0a4acf',1,'GpgFrontend::Thread::TaskRunner']]], + ['taskrunnergetter_1407',['TaskRunnerGetter',['../classGpgFrontend_1_1Thread_1_1TaskRunnerGetter.html#a80794d81179f66f4b4ed3122a64f27cf',1,'GpgFrontend::Thread::TaskRunnerGetter']]], + ['test_5fpassphrase_5fcb_1408',['test_passphrase_cb',['../classGpgFrontend_1_1GpgContext.html#acc4234054002065dfbc5d5261a4950d4',1,'GpgFrontend::GpgContext']]], + ['test_5fstatus_5fcb_1409',['test_status_cb',['../classGpgFrontend_1_1GpgContext.html#a3844cd0966134939e5c4be9a725e5271',1,'GpgFrontend::GpgContext']]], + ['text_5fis_5fsigned_1410',['text_is_signed',['../namespaceGpgFrontend.html#a2a0394c8bdd277f5235f9875a1d69a99',1,'GpgFrontend']]], + ['tofuinfopage_1411',['TOFUInfoPage',['../classGpgFrontend_1_1UI_1_1TOFUInfoPage.html#a9adc1666e3f57536594876520019e395',1,'GpgFrontend::UI::TOFUInfoPage']]], + ['translatorstab_1412',['TranslatorsTab',['../classGpgFrontend_1_1UI_1_1TranslatorsTab.html#a89e5c7b9c17fb41b7c7bf461fb8ad99e',1,'GpgFrontend::UI::TranslatorsTab']]] ]; diff --git a/docs/html/search/functions_14.js b/docs/html/search/functions_14.js index 1f3a06fd..26661c6b 100644 --- a/docs/html/search/functions_14.js +++ b/docs/html/search/functions_14.js @@ -1,6 +1,6 @@ var searchData= [ - ['unsaveddocuments_1414',['UnsavedDocuments',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a82fe98d45f54909ebea933b540367c39',1,'GpgFrontend::UI::TextEdit']]], - ['updatetab_1415',['UpdateTab',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a833c5f709607032bac530aacf389a117',1,'GpgFrontend::UI::UpdateTab']]], - ['upload_5fkey_5fto_5fserver_1416',['upload_key_to_server',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad27dcf3f534f13d8df71df680c4d177c',1,'GpgFrontend::UI::MainWindow']]] + ['unsaveddocuments_1413',['UnsavedDocuments',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a82fe98d45f54909ebea933b540367c39',1,'GpgFrontend::UI::TextEdit']]], + ['updatetab_1414',['UpdateTab',['../classGpgFrontend_1_1UI_1_1UpdateTab.html#a833c5f709607032bac530aacf389a117',1,'GpgFrontend::UI::UpdateTab']]], + ['upload_5fkey_5fto_5fserver_1415',['upload_key_to_server',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad27dcf3f534f13d8df71df680c4d177c',1,'GpgFrontend::UI::MainWindow']]] ]; diff --git a/docs/html/search/functions_15.js b/docs/html/search/functions_15.js index 943c287c..8082424d 100644 --- a/docs/html/search/functions_15.js +++ b/docs/html/search/functions_15.js @@ -1,10 +1,10 @@ var searchData= [ - ['verify_1417',['Verify',['../classGpgFrontend_1_1GpgBasicOperator.html#af0347cb28ff73b2250395ceaa9001509',1,'GpgFrontend::GpgBasicOperator']]], - ['verifydetailsdialog_1418',['VerifyDetailsDialog',['../classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#ac73f0405e249f623ddd0de22b5130fda',1,'GpgFrontend::UI::VerifyDetailsDialog']]], - ['verifyfile_1419',['VerifyFile',['../classGpgFrontend_1_1GpgFileOpera.html#a14cddfe822c9410cd9c301d08963b7e7',1,'GpgFrontend::GpgFileOpera']]], - ['verifykeydetailbox_1420',['VerifyKeyDetailBox',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#afbbe8e87786cca020c9aa8759eb041a0',1,'GpgFrontend::UI::VerifyKeyDetailBox']]], - ['version_5fcompare_1421',['version_compare',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#ae1989b6a34c76103f4bd06f35686d536',1,'GpgFrontend::UI::SoftwareVersion']]], - ['versionchecktask_1422',['VersionCheckTask',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9f7a810ae1aa78c2a61e86e7757da385',1,'GpgFrontend::UI::VersionCheckTask']]], - ['versionwithdrawn_1423',['VersionWithDrawn',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a587a3fdb047a15c3771c2af5eebdbf4b',1,'GpgFrontend::UI::SoftwareVersion']]] + ['verify_1416',['Verify',['../classGpgFrontend_1_1GpgBasicOperator.html#af0347cb28ff73b2250395ceaa9001509',1,'GpgFrontend::GpgBasicOperator']]], + ['verifydetailsdialog_1417',['VerifyDetailsDialog',['../classGpgFrontend_1_1UI_1_1VerifyDetailsDialog.html#ac73f0405e249f623ddd0de22b5130fda',1,'GpgFrontend::UI::VerifyDetailsDialog']]], + ['verifyfile_1418',['VerifyFile',['../classGpgFrontend_1_1GpgFileOpera.html#a14cddfe822c9410cd9c301d08963b7e7',1,'GpgFrontend::GpgFileOpera']]], + ['verifykeydetailbox_1419',['VerifyKeyDetailBox',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#afbbe8e87786cca020c9aa8759eb041a0',1,'GpgFrontend::UI::VerifyKeyDetailBox']]], + ['version_5fcompare_1420',['version_compare',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#ae1989b6a34c76103f4bd06f35686d536',1,'GpgFrontend::UI::SoftwareVersion']]], + ['versionchecktask_1421',['VersionCheckTask',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9f7a810ae1aa78c2a61e86e7757da385',1,'GpgFrontend::UI::VersionCheckTask']]], + ['versionwithdrawn_1422',['VersionWithDrawn',['../structGpgFrontend_1_1UI_1_1SoftwareVersion.html#a587a3fdb047a15c3771c2af5eebdbf4b',1,'GpgFrontend::UI::SoftwareVersion']]] ]; diff --git a/docs/html/search/functions_16.js b/docs/html/search/functions_16.js index 923a458c..5dec9c3e 100644 --- a/docs/html/search/functions_16.js +++ b/docs/html/search/functions_16.js @@ -1,9 +1,9 @@ var searchData= [ - ['waitingdialog_1424',['WaitingDialog',['../classGpgFrontend_1_1UI_1_1WaitingDialog.html#a809d0ffc8208eb2ff5d8da76c8ee10dc',1,'GpgFrontend::UI::WaitingDialog']]], - ['willcharsetchange_1425',['WillCharsetChange',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a1c1c0174ed1ed9c5a90739eafc5c3267',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['wizard_1426',['Wizard',['../classGpgFrontend_1_1UI_1_1Wizard.html#a448db8fe5ace96418ffd1f23b0142b10',1,'GpgFrontend::UI::Wizard']]], - ['write_5fbuffer_5fto_5ffile_1427',['write_buffer_to_file',['../namespaceGpgFrontend.html#a5135069571678eda9c1f07d17ed9ac41',1,'GpgFrontend']]], - ['writefile_1428',['WriteFile',['../classGpgFrontend_1_1FileOperator.html#a2f21ef4a88448b1eddf756302913d338',1,'GpgFrontend::FileOperator']]], - ['writefilestd_1429',['WriteFileStd',['../classGpgFrontend_1_1FileOperator.html#a51121c94dc32a83d7073fbe7138b603b',1,'GpgFrontend::FileOperator']]] + ['waitingdialog_1423',['WaitingDialog',['../classGpgFrontend_1_1UI_1_1WaitingDialog.html#a809d0ffc8208eb2ff5d8da76c8ee10dc',1,'GpgFrontend::UI::WaitingDialog']]], + ['willcharsetchange_1424',['WillCharsetChange',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a1c1c0174ed1ed9c5a90739eafc5c3267',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['wizard_1425',['Wizard',['../classGpgFrontend_1_1UI_1_1Wizard.html#a448db8fe5ace96418ffd1f23b0142b10',1,'GpgFrontend::UI::Wizard']]], + ['write_5fbuffer_5fto_5ffile_1426',['write_buffer_to_file',['../namespaceGpgFrontend.html#a5135069571678eda9c1f07d17ed9ac41',1,'GpgFrontend']]], + ['writefile_1427',['WriteFile',['../classGpgFrontend_1_1FileOperator.html#a2f21ef4a88448b1eddf756302913d338',1,'GpgFrontend::FileOperator']]], + ['writefilestd_1428',['WriteFileStd',['../classGpgFrontend_1_1FileOperator.html#a51121c94dc32a83d7073fbe7138b603b',1,'GpgFrontend::FileOperator']]] ]; diff --git a/docs/html/search/functions_17.js b/docs/html/search/functions_17.js index b75dfb26..12ba06a8 100644 --- a/docs/html/search/functions_17.js +++ b/docs/html/search/functions_17.js @@ -1,14 +1,14 @@ var searchData= [ - ['_7edataobject_1430',['~DataObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a85bb3c482bf6f47edcd6593cca568a22',1,'GpgFrontend::Thread::Task::DataObject']]], - ['_7eglobalsettingstation_1431',['~GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html#af700161900e623a0ea14261d51616451',1,'GpgFrontend::GlobalSettingStation']]], - ['_7egpgcontext_1432',['~GpgContext',['../classGpgFrontend_1_1GpgContext.html#ae89dee551354c1541337881898832725',1,'GpgFrontend::GpgContext']]], - ['_7egpgfrontendapplication_1433',['~GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a32f0e7dda69f7b1e3cc869340736c590',1,'GpgFrontend::UI::GpgFrontendApplication']]], - ['_7egpgkey_1434',['~GpgKey',['../classGpgFrontend_1_1GpgKey.html#a1e9223bb1ad8fbb4e769680de39b3697',1,'GpgFrontend::GpgKey']]], - ['_7egpgkeysignature_1435',['~GpgKeySignature',['../classGpgFrontend_1_1GpgKeySignature.html#ab4d7044f4e1ddcf0ae0d28be43f0fcb3',1,'GpgFrontend::GpgKeySignature']]], - ['_7egpgsignature_1436',['~GpgSignature',['../classGpgFrontend_1_1GpgSignature.html#a44f137a457ac109d145a1cdd8e544e3a',1,'GpgFrontend::GpgSignature']]], - ['_7esettingsobject_1437',['~SettingsObject',['../classGpgFrontend_1_1UI_1_1SettingsObject.html#ae71336d240ace35756d1852a46271f6c',1,'GpgFrontend::UI::SettingsObject']]], - ['_7esingletonfunctionobject_1438',['~SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html#a8296be8c449f88175285186831b995bc',1,'GpgFrontend::SingletonFunctionObject']]], - ['_7etask_1439',['~Task',['../classGpgFrontend_1_1Thread_1_1Task.html#a37766a505662b33ad14672c29e209ea8',1,'GpgFrontend::Thread::Task']]], - ['_7etaskrunner_1440',['~TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#ac3e57b59d537e2a75e741d4a5418ae6d',1,'GpgFrontend::Thread::TaskRunner']]] + ['_7edataobject_1429',['~DataObject',['../classGpgFrontend_1_1Thread_1_1Task_1_1DataObject.html#a85bb3c482bf6f47edcd6593cca568a22',1,'GpgFrontend::Thread::Task::DataObject']]], + ['_7eglobalsettingstation_1430',['~GlobalSettingStation',['../classGpgFrontend_1_1GlobalSettingStation.html#af700161900e623a0ea14261d51616451',1,'GpgFrontend::GlobalSettingStation']]], + ['_7egpgcontext_1431',['~GpgContext',['../classGpgFrontend_1_1GpgContext.html#ae89dee551354c1541337881898832725',1,'GpgFrontend::GpgContext']]], + ['_7egpgfrontendapplication_1432',['~GpgFrontendApplication',['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a32f0e7dda69f7b1e3cc869340736c590',1,'GpgFrontend::UI::GpgFrontendApplication']]], + ['_7egpgkey_1433',['~GpgKey',['../classGpgFrontend_1_1GpgKey.html#a1e9223bb1ad8fbb4e769680de39b3697',1,'GpgFrontend::GpgKey']]], + ['_7egpgkeysignature_1434',['~GpgKeySignature',['../classGpgFrontend_1_1GpgKeySignature.html#ab4d7044f4e1ddcf0ae0d28be43f0fcb3',1,'GpgFrontend::GpgKeySignature']]], + ['_7egpgsignature_1435',['~GpgSignature',['../classGpgFrontend_1_1GpgSignature.html#a44f137a457ac109d145a1cdd8e544e3a',1,'GpgFrontend::GpgSignature']]], + ['_7esettingsobject_1436',['~SettingsObject',['../classGpgFrontend_1_1UI_1_1SettingsObject.html#ae71336d240ace35756d1852a46271f6c',1,'GpgFrontend::UI::SettingsObject']]], + ['_7esingletonfunctionobject_1437',['~SingletonFunctionObject',['../classGpgFrontend_1_1SingletonFunctionObject.html#a8296be8c449f88175285186831b995bc',1,'GpgFrontend::SingletonFunctionObject']]], + ['_7etask_1438',['~Task',['../classGpgFrontend_1_1Thread_1_1Task.html#a37766a505662b33ad14672c29e209ea8',1,'GpgFrontend::Thread::Task']]], + ['_7etaskrunner_1439',['~TaskRunner',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#ac3e57b59d537e2a75e741d4a5418ae6d',1,'GpgFrontend::Thread::TaskRunner']]] ]; diff --git a/docs/html/search/functions_7.js b/docs/html/search/functions_7.js index b9eaac05..409e2258 100644 --- a/docs/html/search/functions_7.js +++ b/docs/html/search/functions_7.js @@ -44,8 +44,8 @@ var searchData= ['getfingerprint_1025',['GetFingerprint',['../classGpgFrontend_1_1GpgSubKey.html#a09b00ac6a3b934b816f9522f78e77d59',1,'GpgFrontend::GpgSubKey::GetFingerprint()'],['../classGpgFrontend_1_1GpgKey.html#a165b3f645e2c6a4bbd024199e1f1cc9b',1,'GpgFrontend::GpgKey::GetFingerprint()'],['../classGpgFrontend_1_1GpgSignature.html#a627b5206311998dd3f45393344b195be',1,'GpgFrontend::GpgSignature::GetFingerprint()']]], ['getfullid_1026',['GetFullID',['../classGpgFrontend_1_1Thread_1_1Task.html#a3df2340426251e9145e5fe4419937e2a',1,'GpgFrontend::Thread::Task']]], ['gethashalgo_1027',['GetHashAlgo',['../classGpgFrontend_1_1GpgSignature.html#ace10a3ac7f4dc3888b2ad62157213f1c',1,'GpgFrontend::GpgSignature']]], - ['getid_1028',['GetId',['../classGpgFrontend_1_1GpgKey.html#a8930f958f3ca1f5566f63e8c2273837e',1,'GpgFrontend::GpgKey']]], - ['getid_1029',['GetID',['../classGpgFrontend_1_1GpgSubKey.html#a48d3dfbd3aae9523ffbdb916aad8ad53',1,'GpgFrontend::GpgSubKey']]], + ['getid_1028',['GetID',['../classGpgFrontend_1_1GpgSubKey.html#a48d3dfbd3aae9523ffbdb916aad8ad53',1,'GpgFrontend::GpgSubKey']]], + ['getid_1029',['GetId',['../classGpgFrontend_1_1GpgKey.html#a8930f958f3ca1f5566f63e8c2273837e',1,'GpgFrontend::GpgKey']]], ['getinfo_1030',['GetInfo',['../classGpgFrontend_1_1GpgContext.html#a4a8f6ff37e45979159ab375b2c7d48c3',1,'GpgFrontend::GpgContext']]], ['getinstance_1031',['GetInstance',['../classGpgFrontend_1_1SingletonFunctionObject.html#a70484d7cfe9f9dcbcd5f8bb749250f36',1,'GpgFrontend::SingletonFunctionObject::GetInstance()'],['../classGpgFrontend_1_1UI_1_1GpgFrontendApplication.html#a9b341a1a903cec0c70a6af4bb230905e',1,'GpgFrontend::UI::GpgFrontendApplication::GetInstance()'],['../classGpgFrontend_1_1SingletonStorageCollection.html#ac56d19e0d4b99e7b8a86a017721f3db1',1,'GpgFrontend::SingletonStorageCollection::GetInstance()'],['../classGpgFrontend_1_1UI_1_1SignalStation.html#abe381ce56a7b157a3760b2fd9c3b7419',1,'GpgFrontend::UI::SignalStation::GetInstance()'],['../classGpgFrontend_1_1CoreCommonUtil.html#a8588dfa6ccb57c055f022b13e2da1e7c',1,'GpgFrontend::CoreCommonUtil::GetInstance()'],['../classGpgFrontend_1_1UI_1_1CommonUtils.html#aed529969f54e39e3f9da14ae6dd00d49',1,'GpgFrontend::UI::CommonUtils::GetInstance()'],['../classGpgFrontend_1_1CoreSignalStation.html#a0c5893909726b919ea733de9906cfb36',1,'GpgFrontend::CoreSignalStation::GetInstance()']]], ['getinvalid_1032',['GetInvalid',['../classGpgFrontend_1_1GpgUID.html#a388ad367d353edd5eeb6e529977c924c',1,'GpgFrontend::GpgUID']]], diff --git a/docs/html/search/pages_0.js b/docs/html/search/pages_0.js index d9d4cc31..fe42574e 100644 --- a/docs/html/search/pages_0.js +++ b/docs/html/search/pages_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['gpgfrontend_20develop_20document_20main_20page_1579',['GpgFrontend Develop Document Main Page',['../index.html',1,'']]] + ['gpgfrontend_20develop_20document_20main_20page_1578',['GpgFrontend Develop Document Main Page',['../index.html',1,'']]] ]; diff --git a/docs/html/search/variables_0.js b/docs/html/search/variables_0.js index 46e37c18..bd564c73 100644 --- a/docs/html/search/variables_0.js +++ b/docs/html/search/variables_0.js @@ -1,5 +1,5 @@ var searchData= [ - ['_5fdefault_5fchannel_1441',['_default_channel',['../classGpgFrontend_1_1ChannelObject.html#a66295bb572e98fc2fad3afce763ac311',1,'GpgFrontend::ChannelObject']]], - ['_5finstance_1442',['_instance',['../classGpgFrontend_1_1CoreSignalStation.html#a36c316a2a76fdf7c3e74dfa5f8ed6b15',1,'GpgFrontend::CoreSignalStation']]] + ['_5fdefault_5fchannel_1440',['_default_channel',['../classGpgFrontend_1_1ChannelObject.html#a66295bb572e98fc2fad3afce763ac311',1,'GpgFrontend::ChannelObject']]], + ['_5finstance_1441',['_instance',['../classGpgFrontend_1_1CoreSignalStation.html#a36c316a2a76fdf7c3e74dfa5f8ed6b15',1,'GpgFrontend::CoreSignalStation']]] ]; diff --git a/docs/html/search/variables_1.js b/docs/html/search/variables_1.js index 920b9ba0..295a417f 100644 --- a/docs/html/search/variables_1.js +++ b/docs/html/search/variables_1.js @@ -1,20 +1,20 @@ var searchData= [ - ['about_5fact_5f_1443',['about_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9dd292f55fba1fe62c83508fef7e43a1',1,'GpgFrontend::UI::MainWindow']]], - ['add_5fpgp_5fheader_5fact_5f_1444',['add_pgp_header_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a95b2c86afbefe47e79af87e56032e306',1,'GpgFrontend::UI::MainWindow']]], - ['additional_5fuid_5fbox_5f_1445',['additional_uid_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a265ef140feec330e7341c1369c0aefab',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['algorithm_5fvar_5flabel_5f_1446',['algorithm_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aadcb3bbb4233fdc2deca5b509c46b2e1',1,'GpgFrontend::UI::KeyPairDetailTab::algorithm_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a1790a8b163b94f33a3bb968f9a19f00c',1,'GpgFrontend::UI::KeyPairSubkeyTab::algorithm_var_label_()']]], - ['app_5fconfigure_5fpath_5f_1447',['app_configure_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a4d04bb665571921421b853f18b8b300a',1,'GpgFrontend::GlobalSettingStation']]], - ['app_5fdata_5fobjs_5fpath_5f_1448',['app_data_objs_path_',['../classGpgFrontend_1_1DataObjectOperator.html#ae6762d4f0f5ca2e83f7c1508cd25cc21',1,'GpgFrontend::DataObjectOperator::app_data_objs_path_()'],['../classGpgFrontend_1_1GlobalSettingStation.html#ad0600d475f6758503b1347722e2a933a',1,'GpgFrontend::GlobalSettingStation::app_data_objs_path_()']]], - ['app_5fdata_5fpath_5f_1449',['app_data_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a58fff8a42f98ad7989bffb8322344cd6',1,'GpgFrontend::GlobalSettingStation']]], - ['app_5flocale_5fpath_5f_1450',['app_locale_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a25c1b45a2ccdc21dd2dcba58866169fb',1,'GpgFrontend::GlobalSettingStation']]], - ['app_5flog_5fpath_5f_1451',['app_log_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a6459653a71cc8285fa554943c7fb3ca7',1,'GpgFrontend::GlobalSettingStation']]], - ['app_5fpath_5f_1452',['app_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a678f8ba120f9ad050d0adfec4476d7ac',1,'GpgFrontend::GlobalSettingStation']]], - ['app_5fresource_5fpath_5f_1453',['app_resource_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a1d94a126c78ac01ec01f10d2ce575388',1,'GpgFrontend::GlobalSettingStation']]], - ['app_5fsecure_5fkey_5fpath_5f_1454',['app_secure_key_path_',['../classGpgFrontend_1_1DataObjectOperator.html#a56c0c031cd327207260c73d1885dbdca',1,'GpgFrontend::DataObjectOperator']]], - ['app_5fsecure_5fpath_5f_1455',['app_secure_path_',['../classGpgFrontend_1_1DataObjectOperator.html#a6d38d25c91c33c48d083ec4de051108a',1,'GpgFrontend::DataObjectOperator']]], - ['append_5fselected_5fkeys_5fact_5f_1456',['append_selected_keys_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab67486a71126073e7c39ca12603198f4',1,'GpgFrontend::UI::MainWindow']]], - ['apppath_1457',['AppPath',['../classGpgFrontend_1_1GpgInfo.html#a2416ae0ab9bedc61782d16075750a9c0',1,'GpgFrontend::GpgInfo']]], - ['assuanpath_1458',['AssuanPath',['../classGpgFrontend_1_1GpgInfo.html#a48659b780f8d0153ca0eb985a072b5ba',1,'GpgFrontend::GpgInfo']]], - ['attachment_5fdock_5f_1459',['attachment_dock_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#afd243a5f00f86d65431081ead2cae153',1,'GpgFrontend::UI::MainWindow']]] + ['about_5fact_5f_1442',['about_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a9dd292f55fba1fe62c83508fef7e43a1',1,'GpgFrontend::UI::MainWindow']]], + ['add_5fpgp_5fheader_5fact_5f_1443',['add_pgp_header_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a95b2c86afbefe47e79af87e56032e306',1,'GpgFrontend::UI::MainWindow']]], + ['additional_5fuid_5fbox_5f_1444',['additional_uid_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a265ef140feec330e7341c1369c0aefab',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['algorithm_5fvar_5flabel_5f_1445',['algorithm_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aadcb3bbb4233fdc2deca5b509c46b2e1',1,'GpgFrontend::UI::KeyPairDetailTab::algorithm_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a1790a8b163b94f33a3bb968f9a19f00c',1,'GpgFrontend::UI::KeyPairSubkeyTab::algorithm_var_label_()']]], + ['app_5fconfigure_5fpath_5f_1446',['app_configure_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a4d04bb665571921421b853f18b8b300a',1,'GpgFrontend::GlobalSettingStation']]], + ['app_5fdata_5fobjs_5fpath_5f_1447',['app_data_objs_path_',['../classGpgFrontend_1_1DataObjectOperator.html#ae6762d4f0f5ca2e83f7c1508cd25cc21',1,'GpgFrontend::DataObjectOperator::app_data_objs_path_()'],['../classGpgFrontend_1_1GlobalSettingStation.html#ad0600d475f6758503b1347722e2a933a',1,'GpgFrontend::GlobalSettingStation::app_data_objs_path_()']]], + ['app_5fdata_5fpath_5f_1448',['app_data_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a58fff8a42f98ad7989bffb8322344cd6',1,'GpgFrontend::GlobalSettingStation']]], + ['app_5flocale_5fpath_5f_1449',['app_locale_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a25c1b45a2ccdc21dd2dcba58866169fb',1,'GpgFrontend::GlobalSettingStation']]], + ['app_5flog_5fpath_5f_1450',['app_log_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a6459653a71cc8285fa554943c7fb3ca7',1,'GpgFrontend::GlobalSettingStation']]], + ['app_5fpath_5f_1451',['app_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a678f8ba120f9ad050d0adfec4476d7ac',1,'GpgFrontend::GlobalSettingStation']]], + ['app_5fresource_5fpath_5f_1452',['app_resource_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#a1d94a126c78ac01ec01f10d2ce575388',1,'GpgFrontend::GlobalSettingStation']]], + ['app_5fsecure_5fkey_5fpath_5f_1453',['app_secure_key_path_',['../classGpgFrontend_1_1DataObjectOperator.html#a56c0c031cd327207260c73d1885dbdca',1,'GpgFrontend::DataObjectOperator']]], + ['app_5fsecure_5fpath_5f_1454',['app_secure_path_',['../classGpgFrontend_1_1DataObjectOperator.html#a6d38d25c91c33c48d083ec4de051108a',1,'GpgFrontend::DataObjectOperator']]], + ['append_5fselected_5fkeys_5fact_5f_1455',['append_selected_keys_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab67486a71126073e7c39ca12603198f4',1,'GpgFrontend::UI::MainWindow']]], + ['apppath_1456',['AppPath',['../classGpgFrontend_1_1GpgInfo.html#a2416ae0ab9bedc61782d16075750a9c0',1,'GpgFrontend::GpgInfo']]], + ['assuanpath_1457',['AssuanPath',['../classGpgFrontend_1_1GpgInfo.html#a48659b780f8d0153ca0eb985a072b5ba',1,'GpgFrontend::GpgInfo']]], + ['attachment_5fdock_5f_1458',['attachment_dock_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#afd243a5f00f86d65431081ead2cae153',1,'GpgFrontend::UI::MainWindow']]] ]; diff --git a/docs/html/search/variables_10.js b/docs/html/search/variables_10.js index f4713807..5d114721 100644 --- a/docs/html/search/variables_10.js +++ b/docs/html/search/variables_10.js @@ -1,5 +1,5 @@ var searchData= [ - ['quit_5fact_5f_1549',['quit_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#abe0683e48485f9fcff622d9519c37ed9',1,'GpgFrontend::UI::MainWindow']]], - ['quote_5fact_5f_1550',['quote_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af9640e5732c2595d0c094e7ff7e371ac',1,'GpgFrontend::UI::MainWindow']]] + ['quit_5fact_5f_1548',['quit_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#abe0683e48485f9fcff622d9519c37ed9',1,'GpgFrontend::UI::MainWindow']]], + ['quote_5fact_5f_1549',['quote_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af9640e5732c2595d0c094e7ff7e371ac',1,'GpgFrontend::UI::MainWindow']]] ]; diff --git a/docs/html/search/variables_11.js b/docs/html/search/variables_11.js index dffac836..15d413e1 100644 --- a/docs/html/search/variables_11.js +++ b/docs/html/search/variables_11.js @@ -1,5 +1,5 @@ var searchData= [ - ['rd_5f_1551',['rd_',['../classGpgFrontend_1_1DataObjectOperator.html#a24c9cdbe9256e332ac93d6dc28c76b90',1,'GpgFrontend::DataObjectOperator::rd_()'],['../classGpgFrontend_1_1PassphraseGenerator.html#a12ee6f9b7fff4883074321c7e0de3dfa',1,'GpgFrontend::PassphraseGenerator::rd_()']]], - ['redo_5fact_5f_1552',['redo_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#abe38474d4e81726147f9df8a9721ce6e',1,'GpgFrontend::UI::MainWindow']]] + ['rd_5f_1550',['rd_',['../classGpgFrontend_1_1DataObjectOperator.html#a24c9cdbe9256e332ac93d6dc28c76b90',1,'GpgFrontend::DataObjectOperator::rd_()'],['../classGpgFrontend_1_1PassphraseGenerator.html#a12ee6f9b7fff4883074321c7e0de3dfa',1,'GpgFrontend::PassphraseGenerator::rd_()']]], + ['redo_5fact_5f_1551',['redo_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#abe38474d4e81726147f9df8a9721ce6e',1,'GpgFrontend::UI::MainWindow']]] ]; diff --git a/docs/html/search/variables_12.js b/docs/html/search/variables_12.js index a7e136c3..fad504c8 100644 --- a/docs/html/search/variables_12.js +++ b/docs/html/search/variables_12.js @@ -1,16 +1,16 @@ var searchData= [ - ['save_5fact_5f_1553',['save_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab0f148559d830fcf10b5a1937b0a47dc',1,'GpgFrontend::UI::MainWindow']]], - ['save_5fas_5fact_5f_1554',['save_as_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a22256763ef83ed35a81e446b553d8112',1,'GpgFrontend::UI::MainWindow']]], - ['select_5fall_5fact_5f_1555',['select_all_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ac6a42e6e3af7e76f0bd2ecc62c9520cc',1,'GpgFrontend::UI::MainWindow']]], - ['sequency_5f_1556',['sequency_',['../classGpgFrontend_1_1Thread_1_1Task.html#a71ed097a2c4b4b735fd385dfe87e6f57',1,'GpgFrontend::Thread::Task']]], - ['show_5fkey_5fdetails_5fact_5f_1557',['show_key_details_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#acd41722ceedd20973b7d83852fab407b',1,'GpgFrontend::UI::MainWindow']]], - ['sign_5fact_5f_1558',['sign_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0cded37ef6e07856bbe439b0e90db839',1,'GpgFrontend::UI::MainWindow']]], - ['sign_5fmarked_5f_1559',['sign_marked_',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a4f94e9ef7889a169bda5a47b7f657358',1,'GpgFrontend::UI::PlainTextEditorPage']]], - ['special_5fedit_5ftool_5fbar_5f_1560',['special_edit_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af2b3e3a0e9894633e1839df289f5ffe0',1,'GpgFrontend::UI::MainWindow']]], - ['start_5fwizard_5fact_5f_1561',['start_wizard_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab0019ca316b971c594c2f20f418256a6',1,'GpgFrontend::UI::MainWindow']]], - ['steganography_5fmenu_5f_1562',['steganography_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af763a506aed7d0fb2125d1859583b853',1,'GpgFrontend::UI::MainWindow']]], - ['storages_5fmutex_5f_1563',['storages_mutex_',['../classGpgFrontend_1_1SingletonStorageCollection.html#ab648cb257beb2475eb5fca6453c331f9',1,'GpgFrontend::SingletonStorageCollection']]], - ['switch_5ftab_5fdown_5fact_5f_1564',['switch_tab_down_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a88af746cd550792ab6095d2ebbd29b41',1,'GpgFrontend::UI::MainWindow']]], - ['switch_5ftab_5fup_5fact_5f_1565',['switch_tab_up_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8d5ce6514ef3fa8ac3223176f5fa2701',1,'GpgFrontend::UI::MainWindow']]] + ['save_5fact_5f_1552',['save_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab0f148559d830fcf10b5a1937b0a47dc',1,'GpgFrontend::UI::MainWindow']]], + ['save_5fas_5fact_5f_1553',['save_as_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a22256763ef83ed35a81e446b553d8112',1,'GpgFrontend::UI::MainWindow']]], + ['select_5fall_5fact_5f_1554',['select_all_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ac6a42e6e3af7e76f0bd2ecc62c9520cc',1,'GpgFrontend::UI::MainWindow']]], + ['sequency_5f_1555',['sequency_',['../classGpgFrontend_1_1Thread_1_1Task.html#a71ed097a2c4b4b735fd385dfe87e6f57',1,'GpgFrontend::Thread::Task']]], + ['show_5fkey_5fdetails_5fact_5f_1556',['show_key_details_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#acd41722ceedd20973b7d83852fab407b',1,'GpgFrontend::UI::MainWindow']]], + ['sign_5fact_5f_1557',['sign_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0cded37ef6e07856bbe439b0e90db839',1,'GpgFrontend::UI::MainWindow']]], + ['sign_5fmarked_5f_1558',['sign_marked_',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#a4f94e9ef7889a169bda5a47b7f657358',1,'GpgFrontend::UI::PlainTextEditorPage']]], + ['special_5fedit_5ftool_5fbar_5f_1559',['special_edit_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af2b3e3a0e9894633e1839df289f5ffe0',1,'GpgFrontend::UI::MainWindow']]], + ['start_5fwizard_5fact_5f_1560',['start_wizard_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab0019ca316b971c594c2f20f418256a6',1,'GpgFrontend::UI::MainWindow']]], + ['steganography_5fmenu_5f_1561',['steganography_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af763a506aed7d0fb2125d1859583b853',1,'GpgFrontend::UI::MainWindow']]], + ['storages_5fmutex_5f_1562',['storages_mutex_',['../classGpgFrontend_1_1SingletonStorageCollection.html#ab648cb257beb2475eb5fca6453c331f9',1,'GpgFrontend::SingletonStorageCollection']]], + ['switch_5ftab_5fdown_5fact_5f_1563',['switch_tab_down_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a88af746cd550792ab6095d2ebbd29b41',1,'GpgFrontend::UI::MainWindow']]], + ['switch_5ftab_5fup_5fact_5f_1564',['switch_tab_up_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8d5ce6514ef3fa8ac3223176f5fa2701',1,'GpgFrontend::UI::MainWindow']]] ]; diff --git a/docs/html/search/variables_13.js b/docs/html/search/variables_13.js index 0acc1411..3bcd8e80 100644 --- a/docs/html/search/variables_13.js +++ b/docs/html/search/variables_13.js @@ -1,7 +1,7 @@ var searchData= [ - ['tasks_1566',['tasks',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a774775e9a91d33072b27dcf78cead6e2',1,'GpgFrontend::Thread::TaskRunner']]], - ['tasks_5fmutex_5f_1567',['tasks_mutex_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a5e72f1ce00d41c225a4304f1ed20b3f1',1,'GpgFrontend::Thread::TaskRunner']]], - ['thread_5fpool_5f_1568',['thread_pool_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a2bdc321dd0732ba7a72499b2dc12f7c9',1,'GpgFrontend::Thread::TaskRunner']]], - ['translate_5fact_5f_1569',['translate_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adbac799672c43c90810366825d837e4e',1,'GpgFrontend::UI::MainWindow']]] + ['tasks_1565',['tasks',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a774775e9a91d33072b27dcf78cead6e2',1,'GpgFrontend::Thread::TaskRunner']]], + ['tasks_5fmutex_5f_1566',['tasks_mutex_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a5e72f1ce00d41c225a4304f1ed20b3f1',1,'GpgFrontend::Thread::TaskRunner']]], + ['thread_5fpool_5f_1567',['thread_pool_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a2bdc321dd0732ba7a72499b2dc12f7c9',1,'GpgFrontend::Thread::TaskRunner']]], + ['translate_5fact_5f_1568',['translate_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adbac799672c43c90810366825d837e4e',1,'GpgFrontend::UI::MainWindow']]] ]; diff --git a/docs/html/search/variables_14.js b/docs/html/search/variables_14.js index 6052f65a..d511b0f9 100644 --- a/docs/html/search/variables_14.js +++ b/docs/html/search/variables_14.js @@ -1,7 +1,7 @@ var searchData= [ - ['ui_5fcfg_5f_1570',['ui_cfg_',['../classGpgFrontend_1_1GlobalSettingStation.html#a1818e08063d6a886975f77354fc5d85c',1,'GpgFrontend::GlobalSettingStation']]], - ['ui_5fconfig_5fdir_5fpath_5f_1571',['ui_config_dir_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#ab618fef68cfd4ff6e42d4a4aa8ea94bb',1,'GpgFrontend::GlobalSettingStation']]], - ['ui_5fconfig_5fpath_5f_1572',['ui_config_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#afa99ddc25c0d5fd59a4c5f0e61d13830',1,'GpgFrontend::GlobalSettingStation']]], - ['undo_5fact_5f_1573',['undo_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa498dfecac36590e4b60d50824dff58c',1,'GpgFrontend::UI::MainWindow']]] + ['ui_5fcfg_5f_1569',['ui_cfg_',['../classGpgFrontend_1_1GlobalSettingStation.html#a1818e08063d6a886975f77354fc5d85c',1,'GpgFrontend::GlobalSettingStation']]], + ['ui_5fconfig_5fdir_5fpath_5f_1570',['ui_config_dir_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#ab618fef68cfd4ff6e42d4a4aa8ea94bb',1,'GpgFrontend::GlobalSettingStation']]], + ['ui_5fconfig_5fpath_5f_1571',['ui_config_path_',['../classGpgFrontend_1_1GlobalSettingStation.html#afa99ddc25c0d5fd59a4c5f0e61d13830',1,'GpgFrontend::GlobalSettingStation']]], + ['undo_5fact_5f_1572',['undo_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa498dfecac36590e4b60d50824dff58c',1,'GpgFrontend::UI::MainWindow']]] ]; diff --git a/docs/html/search/variables_15.js b/docs/html/search/variables_15.js index 69629d85..9a914455 100644 --- a/docs/html/search/variables_15.js +++ b/docs/html/search/variables_15.js @@ -1,5 +1,5 @@ var searchData= [ - ['verify_5fact_5f_1574',['verify_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a14bb12fa25620e1a93bd23c9f7c84081',1,'GpgFrontend::UI::MainWindow']]], - ['view_5fmenu_5f_1575',['view_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0e9920cf0fc974ac2f70d3f039f009f2',1,'GpgFrontend::UI::MainWindow']]] + ['verify_5fact_5f_1573',['verify_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a14bb12fa25620e1a93bd23c9f7c84081',1,'GpgFrontend::UI::MainWindow']]], + ['view_5fmenu_5f_1574',['view_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0e9920cf0fc974ac2f70d3f039f009f2',1,'GpgFrontend::UI::MainWindow']]] ]; diff --git a/docs/html/search/variables_16.js b/docs/html/search/variables_16.js index fa5dfa9c..5433d264 100644 --- a/docs/html/search/variables_16.js +++ b/docs/html/search/variables_16.js @@ -1,5 +1,5 @@ var searchData= [ - ['zoom_5fin_5fact_5f_1576',['zoom_in_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3cb7daedbef61c1be27635c9ebc9e689',1,'GpgFrontend::UI::MainWindow']]], - ['zoom_5fout_5fact_5f_1577',['zoom_out_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a70397629ae3ffe039051b80a099c7979',1,'GpgFrontend::UI::MainWindow']]] + ['zoom_5fin_5fact_5f_1575',['zoom_in_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3cb7daedbef61c1be27635c9ebc9e689',1,'GpgFrontend::UI::MainWindow']]], + ['zoom_5fout_5fact_5f_1576',['zoom_out_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a70397629ae3ffe039051b80a099c7979',1,'GpgFrontend::UI::MainWindow']]] ]; diff --git a/docs/html/search/variables_2.js b/docs/html/search/variables_2.js index d0cf0df0..6727e4d2 100644 --- a/docs/html/search/variables_2.js +++ b/docs/html/search/variables_2.js @@ -1,6 +1,6 @@ var searchData= [ - ['browser_5f_1460',['browser_',['../classGpgFrontend_1_1UI_1_1HelpPage.html#af4f61342fae06a49c95d8d20ca51ca2c',1,'GpgFrontend::UI::HelpPage']]], - ['browser_5fact_5f_1461',['browser_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3c0a5305cf55fe5bee2f18298f983cad',1,'GpgFrontend::UI::MainWindow']]], - ['button_5fbox_5f_1462',['button_box_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#aa765259f9aa65b81d59b982ee0595e52',1,'GpgFrontend::UI::KeyGenDialog::button_box_()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#ab06b11f407fbb407139235fc84325de2',1,'GpgFrontend::UI::SubkeyGenerateDialog::button_box_()']]] + ['browser_5f_1459',['browser_',['../classGpgFrontend_1_1UI_1_1HelpPage.html#af4f61342fae06a49c95d8d20ca51ca2c',1,'GpgFrontend::UI::HelpPage']]], + ['browser_5fact_5f_1460',['browser_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a3c0a5305cf55fe5bee2f18298f983cad',1,'GpgFrontend::UI::MainWindow']]], + ['button_5fbox_5f_1461',['button_box_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#aa765259f9aa65b81d59b982ee0595e52',1,'GpgFrontend::UI::KeyGenDialog::button_box_()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#ab06b11f407fbb407139235fc84325de2',1,'GpgFrontend::UI::SubkeyGenerateDialog::button_box_()']]] ]; diff --git a/docs/html/search/variables_3.js b/docs/html/search/variables_3.js index cb3218b7..24873c75 100644 --- a/docs/html/search/variables_3.js +++ b/docs/html/search/variables_3.js @@ -1,21 +1,21 @@ var searchData= [ - ['channel_5f_1463',['channel_',['../classGpgFrontend_1_1ChannelObject.html#aee5f8a5575adbdf522da4dd195c091ee',1,'GpgFrontend::ChannelObject']]], - ['check_5fupdate_5fact_5f_1464',['check_update_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a672f4ef07be6ad645613ecd49399700d',1,'GpgFrontend::UI::MainWindow']]], - ['clean_5fdouble_5fline_5fbreaks_5fact_5f_1465',['clean_double_line_breaks_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0cb094e0409337cfd7dba1bb510ea96e',1,'GpgFrontend::UI::MainWindow']]], - ['close_5ftab_5fact_5f_1466',['close_tab_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a09671c3aa26a750cfd6be6c092de8715',1,'GpgFrontend::UI::MainWindow']]], - ['cmspath_1467',['CMSPath',['../classGpgFrontend_1_1GpgInfo.html#ac8ecbf438d05dc434c77825dd38dfdf2',1,'GpgFrontend::GpgInfo']]], - ['comment_5fedit_5f_1468',['comment_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3008e2a9879a8e122e422f67cf0018f8',1,'GpgFrontend::UI::KeyGenDialog']]], - ['comment_5fvar_5flabel_5f_1469',['comment_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a83b1290251a204def52677ae000a17ec',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['copy_5fact_5f_1470',['copy_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a71402943f4ed19e3aba0556b23eaa8f8',1,'GpgFrontend::UI::MainWindow']]], - ['copy_5fmail_5faddress_5fto_5fclipboard_5fact_5f_1471',['copy_mail_address_to_clipboard_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af77f66b6b869f6ddb3d2caa3bc40bb09',1,'GpgFrontend::UI::MainWindow']]], - ['count_5fpage_5f_1472',['count_page_',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a747d3740a88295e6c9565788d4cf56ec',1,'GpgFrontend::UI::TextEdit']]], - ['created_5fvar_5flabel_5f_1473',['created_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#ac827e8474ace52814f8de70709987d36',1,'GpgFrontend::UI::KeyPairSubkeyTab::created_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aa45a2433ce82a88eeb2c9c282ab7b975',1,'GpgFrontend::UI::KeyPairDetailTab::created_var_label_()']]], - ['crypt_5fmenu_5f_1474',['crypt_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1ef17c566a764f707f43593a1f6b3c60',1,'GpgFrontend::UI::MainWindow']]], - ['crypt_5ftool_5fbar_5f_1475',['crypt_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aac320aef3b49cd068544aac54b927f7a',1,'GpgFrontend::UI::MainWindow']]], - ['ctx_5f_1476',['ctx_',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a387ad457bb729f340f680d0b743733ad',1,'GpgFrontend::GpgAdvancedOperator::ctx_()'],['../classGpgFrontend_1_1GpgBasicOperator.html#afad990a43ab06a060a93db9948ebb740',1,'GpgFrontend::GpgBasicOperator::ctx_()'],['../classGpgFrontend_1_1GpgCommandExecutor.html#aefc4f18ec852b98c539d97da1c712a02',1,'GpgFrontend::GpgCommandExecutor::ctx_()'],['../classGpgFrontend_1_1GpgKeyGetter.html#aa4aef315d82123726be879097d3df147',1,'GpgFrontend::GpgKeyGetter::ctx_()']]], - ['ctx_5fmutex_5f_1477',['ctx_mutex_',['../classGpgFrontend_1_1GpgKeyGetter.html#a81941e1f562dc22977a71d00dd10956a',1,'GpgFrontend::GpgKeyGetter']]], - ['current_5freply_5f_1478',['current_reply_',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9679bc6bcdf2e64ec82f6119620b6f2e',1,'GpgFrontend::UI::VersionCheckTask']]], - ['cut_5fact_5f_1479',['cut_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2c2f6c021219564846f1624f6bb5b9a2',1,'GpgFrontend::UI::MainWindow']]], - ['cut_5fpgp_5fheader_5fact_5f_1480',['cut_pgp_header_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a313a5d7d0847114a6f11e4d7870edd86',1,'GpgFrontend::UI::MainWindow']]] + ['channel_5f_1462',['channel_',['../classGpgFrontend_1_1ChannelObject.html#aee5f8a5575adbdf522da4dd195c091ee',1,'GpgFrontend::ChannelObject']]], + ['check_5fupdate_5fact_5f_1463',['check_update_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a672f4ef07be6ad645613ecd49399700d',1,'GpgFrontend::UI::MainWindow']]], + ['clean_5fdouble_5fline_5fbreaks_5fact_5f_1464',['clean_double_line_breaks_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a0cb094e0409337cfd7dba1bb510ea96e',1,'GpgFrontend::UI::MainWindow']]], + ['close_5ftab_5fact_5f_1465',['close_tab_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a09671c3aa26a750cfd6be6c092de8715',1,'GpgFrontend::UI::MainWindow']]], + ['cmspath_1466',['CMSPath',['../classGpgFrontend_1_1GpgInfo.html#ac8ecbf438d05dc434c77825dd38dfdf2',1,'GpgFrontend::GpgInfo']]], + ['comment_5fedit_5f_1467',['comment_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3008e2a9879a8e122e422f67cf0018f8',1,'GpgFrontend::UI::KeyGenDialog']]], + ['comment_5fvar_5flabel_5f_1468',['comment_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a83b1290251a204def52677ae000a17ec',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['copy_5fact_5f_1469',['copy_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a71402943f4ed19e3aba0556b23eaa8f8',1,'GpgFrontend::UI::MainWindow']]], + ['copy_5fmail_5faddress_5fto_5fclipboard_5fact_5f_1470',['copy_mail_address_to_clipboard_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af77f66b6b869f6ddb3d2caa3bc40bb09',1,'GpgFrontend::UI::MainWindow']]], + ['count_5fpage_5f_1471',['count_page_',['../classGpgFrontend_1_1UI_1_1TextEdit.html#a747d3740a88295e6c9565788d4cf56ec',1,'GpgFrontend::UI::TextEdit']]], + ['created_5fvar_5flabel_5f_1472',['created_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#ac827e8474ace52814f8de70709987d36',1,'GpgFrontend::UI::KeyPairSubkeyTab::created_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aa45a2433ce82a88eeb2c9c282ab7b975',1,'GpgFrontend::UI::KeyPairDetailTab::created_var_label_()']]], + ['crypt_5fmenu_5f_1473',['crypt_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1ef17c566a764f707f43593a1f6b3c60',1,'GpgFrontend::UI::MainWindow']]], + ['crypt_5ftool_5fbar_5f_1474',['crypt_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aac320aef3b49cd068544aac54b927f7a',1,'GpgFrontend::UI::MainWindow']]], + ['ctx_5f_1475',['ctx_',['../classGpgFrontend_1_1GpgAdvancedOperator.html#a387ad457bb729f340f680d0b743733ad',1,'GpgFrontend::GpgAdvancedOperator::ctx_()'],['../classGpgFrontend_1_1GpgBasicOperator.html#afad990a43ab06a060a93db9948ebb740',1,'GpgFrontend::GpgBasicOperator::ctx_()'],['../classGpgFrontend_1_1GpgCommandExecutor.html#aefc4f18ec852b98c539d97da1c712a02',1,'GpgFrontend::GpgCommandExecutor::ctx_()'],['../classGpgFrontend_1_1GpgKeyGetter.html#aa4aef315d82123726be879097d3df147',1,'GpgFrontend::GpgKeyGetter::ctx_()']]], + ['ctx_5fmutex_5f_1476',['ctx_mutex_',['../classGpgFrontend_1_1GpgKeyGetter.html#a81941e1f562dc22977a71d00dd10956a',1,'GpgFrontend::GpgKeyGetter']]], + ['current_5freply_5f_1477',['current_reply_',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#a9679bc6bcdf2e64ec82f6119620b6f2e',1,'GpgFrontend::UI::VersionCheckTask']]], + ['cut_5fact_5f_1478',['cut_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2c2f6c021219564846f1624f6bb5b9a2',1,'GpgFrontend::UI::MainWindow']]], + ['cut_5fpgp_5fheader_5fact_5f_1479',['cut_pgp_header_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a313a5d7d0847114a6f11e4d7870edd86',1,'GpgFrontend::UI::MainWindow']]] ]; diff --git a/docs/html/search/variables_4.js b/docs/html/search/variables_4.js index b5e08843..58e85b33 100644 --- a/docs/html/search/variables_4.js +++ b/docs/html/search/variables_4.js @@ -1,9 +1,9 @@ var searchData= [ - ['databasepath_1481',['DatabasePath',['../classGpgFrontend_1_1GpgInfo.html#a7347d47006bdf41f1da979ea3289de7e',1,'GpgFrontend::GpgInfo']]], - ['date_5fedit_5f_1482',['date_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a242a3245de709ede086087d7a096e6cd',1,'GpgFrontend::UI::KeyGenDialog::date_edit_()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aa8bf228ba2a773c0d38f9e5c2f20539d',1,'GpgFrontend::UI::SubkeyGenerateDialog::date_edit_()']]], - ['decrypt_5fact_5f_1483',['decrypt_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa92246123272e3e1085f22612aedf48f',1,'GpgFrontend::UI::MainWindow']]], - ['decrypt_5fverify_5fact_5f_1484',['decrypt_verify_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a70d2b2311708ab023466d343f2e914b1',1,'GpgFrontend::UI::MainWindow']]], - ['default_5ftask_5fname_1485',['DEFAULT_TASK_NAME',['../classGpgFrontend_1_1Thread_1_1Task.html#a4a2cad8747108322152b41c049f99c72',1,'GpgFrontend::Thread::Task']]], - ['dirmngrpath_1486',['DirmngrPath',['../classGpgFrontend_1_1GpgInfo.html#a8c7e75d67b2438c61bbe4cebe68a7029',1,'GpgFrontend::GpgInfo']]] + ['databasepath_1480',['DatabasePath',['../classGpgFrontend_1_1GpgInfo.html#a7347d47006bdf41f1da979ea3289de7e',1,'GpgFrontend::GpgInfo']]], + ['date_5fedit_5f_1481',['date_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a242a3245de709ede086087d7a096e6cd',1,'GpgFrontend::UI::KeyGenDialog::date_edit_()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aa8bf228ba2a773c0d38f9e5c2f20539d',1,'GpgFrontend::UI::SubkeyGenerateDialog::date_edit_()']]], + ['decrypt_5fact_5f_1482',['decrypt_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#aa92246123272e3e1085f22612aedf48f',1,'GpgFrontend::UI::MainWindow']]], + ['decrypt_5fverify_5fact_5f_1483',['decrypt_verify_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a70d2b2311708ab023466d343f2e914b1',1,'GpgFrontend::UI::MainWindow']]], + ['default_5ftask_5fname_1484',['DEFAULT_TASK_NAME',['../classGpgFrontend_1_1Thread_1_1Task.html#a4a2cad8747108322152b41c049f99c72',1,'GpgFrontend::Thread::Task']]], + ['dirmngrpath_1485',['DirmngrPath',['../classGpgFrontend_1_1GpgInfo.html#a8c7e75d67b2438c61bbe4cebe68a7029',1,'GpgFrontend::GpgInfo']]] ]; diff --git a/docs/html/search/variables_5.js b/docs/html/search/variables_5.js index a5ef860f..25faa8c5 100644 --- a/docs/html/search/variables_5.js +++ b/docs/html/search/variables_5.js @@ -1,14 +1,14 @@ var searchData= [ - ['edit_5f_1487',['edit_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7aa41c90105fd4c2931895d8dfb5ec45',1,'GpgFrontend::UI::MainWindow']]], - ['edit_5fmenu_5f_1488',['edit_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a6d681a306c137dc107088d60b09a925f',1,'GpgFrontend::UI::MainWindow']]], - ['edit_5ftool_5fbar_5f_1489',['edit_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab531823acdbfb117c82a9906ce2107b9',1,'GpgFrontend::UI::MainWindow']]], - ['email_5fedit_5f_1490',['email_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3453d1a8a4c0411472b2779d018abdc3',1,'GpgFrontend::UI::KeyGenDialog']]], - ['email_5fvar_5flabel_5f_1491',['email_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a8c71b37aa040da50cb0105489a42e60d',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['encrypt_5fact_5f_1492',['encrypt_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad6a2cecb2846b324604c4abd1fb7d11a',1,'GpgFrontend::UI::MainWindow']]], - ['encrypt_5fsign_5fact_5f_1493',['encrypt_sign_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2417c807356e3b876ecb2f572568670b',1,'GpgFrontend::UI::MainWindow']]], - ['error_5flabel_5f_1494',['error_label_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a8e500e3153558364fe5ba5b8bab6f219',1,'GpgFrontend::UI::KeyGenDialog::error_label_()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a75f325b4a5aa8bcfcc411bdaf9279683',1,'GpgFrontend::UI::SubkeyGenerateDialog::error_label_()']]], - ['error_5fmessages_5f_1495',['error_messages_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a03a8e1c8f2c1887732d36a346185bb40',1,'GpgFrontend::UI::KeyGenDialog']]], - ['expire_5fcheck_5fbox_5f_1496',['expire_check_box_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a196ef707a7a2cfd717f69c8a5bc3278d',1,'GpgFrontend::UI::KeyGenDialog::expire_check_box_()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#afa21ac4d45a6474afc1bc594486ed8e2',1,'GpgFrontend::UI::SubkeyGenerateDialog::expire_check_box_()']]], - ['expire_5fvar_5flabel_5f_1497',['expire_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aedc0e13ba1b64782e40f7c14af77f8f0',1,'GpgFrontend::UI::KeyPairDetailTab::expire_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a72b94f3e8d11c44d1b4e3653ab885927',1,'GpgFrontend::UI::KeyPairSubkeyTab::expire_var_label_()']]] + ['edit_5f_1486',['edit_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a7aa41c90105fd4c2931895d8dfb5ec45',1,'GpgFrontend::UI::MainWindow']]], + ['edit_5fmenu_5f_1487',['edit_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a6d681a306c137dc107088d60b09a925f',1,'GpgFrontend::UI::MainWindow']]], + ['edit_5ftool_5fbar_5f_1488',['edit_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ab531823acdbfb117c82a9906ce2107b9',1,'GpgFrontend::UI::MainWindow']]], + ['email_5fedit_5f_1489',['email_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a3453d1a8a4c0411472b2779d018abdc3',1,'GpgFrontend::UI::KeyGenDialog']]], + ['email_5fvar_5flabel_5f_1490',['email_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a8c71b37aa040da50cb0105489a42e60d',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['encrypt_5fact_5f_1491',['encrypt_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad6a2cecb2846b324604c4abd1fb7d11a',1,'GpgFrontend::UI::MainWindow']]], + ['encrypt_5fsign_5fact_5f_1492',['encrypt_sign_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2417c807356e3b876ecb2f572568670b',1,'GpgFrontend::UI::MainWindow']]], + ['error_5flabel_5f_1493',['error_label_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a8e500e3153558364fe5ba5b8bab6f219',1,'GpgFrontend::UI::KeyGenDialog::error_label_()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a75f325b4a5aa8bcfcc411bdaf9279683',1,'GpgFrontend::UI::SubkeyGenerateDialog::error_label_()']]], + ['error_5fmessages_5f_1494',['error_messages_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a03a8e1c8f2c1887732d36a346185bb40',1,'GpgFrontend::UI::KeyGenDialog']]], + ['expire_5fcheck_5fbox_5f_1495',['expire_check_box_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a196ef707a7a2cfd717f69c8a5bc3278d',1,'GpgFrontend::UI::KeyGenDialog::expire_check_box_()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#afa21ac4d45a6474afc1bc594486ed8e2',1,'GpgFrontend::UI::SubkeyGenerateDialog::expire_check_box_()']]], + ['expire_5fvar_5flabel_5f_1496',['expire_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aedc0e13ba1b64782e40f7c14af77f8f0',1,'GpgFrontend::UI::KeyPairDetailTab::expire_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a72b94f3e8d11c44d1b4e3653ab885927',1,'GpgFrontend::UI::KeyPairSubkeyTab::expire_var_label_()']]] ]; diff --git a/docs/html/search/variables_6.js b/docs/html/search/variables_6.js index 96ef648c..5ae3ba19 100644 --- a/docs/html/search/variables_6.js +++ b/docs/html/search/variables_6.js @@ -1,11 +1,11 @@ var searchData= [ - ['file_5fmenu_5f_1498',['file_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af08c62c38a750382ee218191c8e13f4f',1,'GpgFrontend::UI::MainWindow']]], - ['file_5ftool_5fbar_5f_1499',['file_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1e0d23d361b8e339ca85410db2bdfb64',1,'GpgFrontend::UI::MainWindow']]], - ['find_5fact_5f_1500',['find_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a6154f5dbdc9cebc0644e5d1e25895df8',1,'GpgFrontend::UI::MainWindow']]], - ['find_5fedit_5f_1501',['find_edit_',['../classGpgFrontend_1_1UI_1_1FindWidget.html#af420832720942dd1e7cb3f3841c7cbfe',1,'GpgFrontend::UI::FindWidget']]], - ['fingerprint_5fbox_5f_1502',['fingerprint_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#ada1c21cf59f1f19dfd4ffe0391bc1594',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['fingerprint_5fvar_5flabel_5f_1503',['fingerprint_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a1bb1519e5cce51ad5796065232f66ad6',1,'GpgFrontend::UI::KeyPairDetailTab::fingerprint_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a11a6e8aca1754d513ea91192ee0315bf',1,'GpgFrontend::UI::KeyPairSubkeyTab::fingerprint_var_label_()']]], - ['fpr_5f_1504',['fpr_',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#a36bf3306b8564b49da04eee1dc653675',1,'GpgFrontend::UI::VerifyKeyDetailBox']]], - ['full_5ffile_5fpath_5f_1505',['full_file_path_',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#ae867b6329fcb1978479a9d70f7b017db',1,'GpgFrontend::UI::PlainTextEditorPage']]] + ['file_5fmenu_5f_1497',['file_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#af08c62c38a750382ee218191c8e13f4f',1,'GpgFrontend::UI::MainWindow']]], + ['file_5ftool_5fbar_5f_1498',['file_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a1e0d23d361b8e339ca85410db2bdfb64',1,'GpgFrontend::UI::MainWindow']]], + ['find_5fact_5f_1499',['find_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a6154f5dbdc9cebc0644e5d1e25895df8',1,'GpgFrontend::UI::MainWindow']]], + ['find_5fedit_5f_1500',['find_edit_',['../classGpgFrontend_1_1UI_1_1FindWidget.html#af420832720942dd1e7cb3f3841c7cbfe',1,'GpgFrontend::UI::FindWidget']]], + ['fingerprint_5fbox_5f_1501',['fingerprint_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#ada1c21cf59f1f19dfd4ffe0391bc1594',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['fingerprint_5fvar_5flabel_5f_1502',['fingerprint_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a1bb1519e5cce51ad5796065232f66ad6',1,'GpgFrontend::UI::KeyPairDetailTab::fingerprint_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a11a6e8aca1754d513ea91192ee0315bf',1,'GpgFrontend::UI::KeyPairSubkeyTab::fingerprint_var_label_()']]], + ['fpr_5f_1503',['fpr_',['../classGpgFrontend_1_1UI_1_1VerifyKeyDetailBox.html#a36bf3306b8564b49da04eee1dc653675',1,'GpgFrontend::UI::VerifyKeyDetailBox']]], + ['full_5ffile_5fpath_5f_1504',['full_file_path_',['../classGpgFrontend_1_1UI_1_1PlainTextEditorPage.html#ae867b6329fcb1978479a9d70f7b017db',1,'GpgFrontend::UI::PlainTextEditorPage']]] ]; diff --git a/docs/html/search/variables_7.js b/docs/html/search/variables_7.js index 24333873..d19c5dde 100644 --- a/docs/html/search/variables_7.js +++ b/docs/html/search/variables_7.js @@ -1,10 +1,10 @@ var searchData= [ - ['global_5fsetting_5fstation_5f_1506',['global_setting_station_',['../classGpgFrontend_1_1DataObjectOperator.html#a3c195f8e4c30d95be14a6d43e9282601',1,'GpgFrontend::DataObjectOperator']]], - ['gnupg_5fact_5f_1507',['gnupg_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a79b83f536a7c4299eaa3d22e4e875227',1,'GpgFrontend::UI::MainWindow']]], - ['gnupghomepath_1508',['GnuPGHomePath',['../classGpgFrontend_1_1GpgInfo.html#a0c1dbdb54f880a620419fdbd8336dc5d',1,'GpgFrontend::GpgInfo']]], - ['gnupgversion_1509',['GnupgVersion',['../classGpgFrontend_1_1GpgInfo.html#abbb3d503b10073bebf86d79bbaeab4c9',1,'GpgFrontend::GpgInfo']]], - ['gpg_5fmenu_5f_1510',['gpg_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2bed0c3b032269c9eb82bc7c068852cb',1,'GpgFrontend::UI::MainWindow']]], - ['gpgagentpath_1511',['GpgAgentPath',['../classGpgFrontend_1_1GpgInfo.html#af6ca2e99ffc487b8e4aa251d3cb23191',1,'GpgFrontend::GpgInfo']]], - ['gpgconfpath_1512',['GpgConfPath',['../classGpgFrontend_1_1GpgInfo.html#a2fcd53b59bc251c38eb8d79cec946777',1,'GpgFrontend::GpgInfo']]] + ['global_5fsetting_5fstation_5f_1505',['global_setting_station_',['../classGpgFrontend_1_1DataObjectOperator.html#a3c195f8e4c30d95be14a6d43e9282601',1,'GpgFrontend::DataObjectOperator']]], + ['gnupg_5fact_5f_1506',['gnupg_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a79b83f536a7c4299eaa3d22e4e875227',1,'GpgFrontend::UI::MainWindow']]], + ['gnupghomepath_1507',['GnuPGHomePath',['../classGpgFrontend_1_1GpgInfo.html#a0c1dbdb54f880a620419fdbd8336dc5d',1,'GpgFrontend::GpgInfo']]], + ['gnupgversion_1508',['GnupgVersion',['../classGpgFrontend_1_1GpgInfo.html#abbb3d503b10073bebf86d79bbaeab4c9',1,'GpgFrontend::GpgInfo']]], + ['gpg_5fmenu_5f_1509',['gpg_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a2bed0c3b032269c9eb82bc7c068852cb',1,'GpgFrontend::UI::MainWindow']]], + ['gpgagentpath_1510',['GpgAgentPath',['../classGpgFrontend_1_1GpgInfo.html#af6ca2e99ffc487b8e4aa251d3cb23191',1,'GpgFrontend::GpgInfo']]], + ['gpgconfpath_1511',['GpgConfPath',['../classGpgFrontend_1_1GpgInfo.html#a2fcd53b59bc251c38eb8d79cec946777',1,'GpgFrontend::GpgInfo']]] ]; diff --git a/docs/html/search/variables_8.js b/docs/html/search/variables_8.js index 2c88c1bb..c30d6532 100644 --- a/docs/html/search/variables_8.js +++ b/docs/html/search/variables_8.js @@ -1,5 +1,5 @@ var searchData= [ - ['hash_5fkey_5f_1513',['hash_key_',['../classGpgFrontend_1_1DataObjectOperator.html#ae409c3562c3e08931daa17f5790c508b',1,'GpgFrontend::DataObjectOperator']]], - ['help_5fmenu_5f_1514',['help_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a89fa105ed54d2189d762668262d74c63',1,'GpgFrontend::UI::MainWindow']]] + ['hash_5fkey_5f_1512',['hash_key_',['../classGpgFrontend_1_1DataObjectOperator.html#ae409c3562c3e08931daa17f5790c508b',1,'GpgFrontend::DataObjectOperator']]], + ['help_5fmenu_5f_1513',['help_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a89fa105ed54d2189d762668262d74c63',1,'GpgFrontend::UI::MainWindow']]] ]; diff --git a/docs/html/search/variables_9.js b/docs/html/search/variables_9.js index fd1b1180..4da542dd 100644 --- a/docs/html/search/variables_9.js +++ b/docs/html/search/variables_9.js @@ -1,8 +1,8 @@ var searchData= [ - ['import_5fbutton_5f_1515',['import_button_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8538940a9a5dea7ddf53c89acdeb83be',1,'GpgFrontend::UI::MainWindow']]], - ['import_5fkey_5ffrom_5fedit_5fact_5f_1516',['import_key_from_edit_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a01b85fb17c373d8f97ce439027c6d04e',1,'GpgFrontend::UI::MainWindow']]], - ['import_5fkey_5fmenu_5f_1517',['import_key_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8d6fe32ab64797459443ed285d769745',1,'GpgFrontend::UI::MainWindow']]], - ['instances_5fmap_5f_1518',['instances_map_',['../classGpgFrontend_1_1SingletonStorage.html#a6181f2b5af39c6b86de89e1ba9eeff1c',1,'GpgFrontend::SingletonStorage']]], - ['instances_5fmutex_5f_1519',['instances_mutex_',['../classGpgFrontend_1_1SingletonStorage.html#a15161d0afafec602018a89266dab5641',1,'GpgFrontend::SingletonStorage']]] + ['import_5fbutton_5f_1514',['import_button_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8538940a9a5dea7ddf53c89acdeb83be',1,'GpgFrontend::UI::MainWindow']]], + ['import_5fkey_5ffrom_5fedit_5fact_5f_1515',['import_key_from_edit_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a01b85fb17c373d8f97ce439027c6d04e',1,'GpgFrontend::UI::MainWindow']]], + ['import_5fkey_5fmenu_5f_1516',['import_key_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8d6fe32ab64797459443ed285d769745',1,'GpgFrontend::UI::MainWindow']]], + ['instances_5fmap_5f_1517',['instances_map_',['../classGpgFrontend_1_1SingletonStorage.html#a6181f2b5af39c6b86de89e1ba9eeff1c',1,'GpgFrontend::SingletonStorage']]], + ['instances_5fmutex_5f_1518',['instances_mutex_',['../classGpgFrontend_1_1SingletonStorage.html#a15161d0afafec602018a89266dab5641',1,'GpgFrontend::SingletonStorage']]] ]; diff --git a/docs/html/search/variables_a.js b/docs/html/search/variables_a.js index 3bb8f5ee..dc237783 100644 --- a/docs/html/search/variables_a.js +++ b/docs/html/search/variables_a.js @@ -1,17 +1,17 @@ var searchData= [ - ['key_5fbox_5f_1520',['key_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aae9905764b5551208574a932fdfba29c',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['key_5fid_5fvar_5flabel_1521',['key_id_var_label',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a65176245d280ae0734ef7b5b3f1c4cc4',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['key_5fid_5fvar_5flabel_5f_1522',['key_id_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a2f634f4c83ab5dd2d088eb07e0d3b862',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], - ['key_5flist_5fdock_5f_1523',['key_list_dock_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adaa66d9cdc51c946efc99bb94deda31c',1,'GpgFrontend::UI::MainWindow']]], - ['key_5fmenu_5f_1524',['key_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a16bbfd12cd3a6f0df9e2c32cf7999e57',1,'GpgFrontend::UI::MainWindow']]], - ['key_5fsize_5fspin_5fbox_5f_1525',['key_size_spin_box_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#aaa9b55830c39ce854e4ede26d916a844',1,'GpgFrontend::UI::KeyGenDialog::key_size_spin_box_()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aa91db742b41d352ba9f88620d649afb3',1,'GpgFrontend::UI::SubkeyGenerateDialog::key_size_spin_box_()']]], - ['key_5fsize_5fvar_5flabel_5f_1526',['key_size_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a1485e603de56152f45d96e0ce5c50d9b',1,'GpgFrontend::UI::KeyPairDetailTab::key_size_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a63e054f4a2d8e12c70d25d39bb55f876',1,'GpgFrontend::UI::KeyPairSubkeyTab::key_size_var_label_()']]], - ['key_5ftool_5fbar_5f_1527',['key_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a38f243880cfb9276545b08f0730811e7',1,'GpgFrontend::UI::MainWindow']]], - ['key_5ftype_5fcombo_5fbox_5f_1528',['key_type_combo_box_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a281bfffd99fcb600d07c4604bf2a8841',1,'GpgFrontend::UI::KeyGenDialog::key_type_combo_box_()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#ac515dabcf6c094c5eeb2bf88aa3aa9d3',1,'GpgFrontend::UI::SubkeyGenerateDialog::key_type_combo_box_()']]], - ['key_5fusage_5fcheck_5fboxes_5f_1529',['key_usage_check_boxes_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ab0ccac068670a3e28ce78ff87a40b2fc',1,'GpgFrontend::UI::KeyGenDialog::key_usage_check_boxes_()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a5d67b8ed68062ef127ad92986a98e95a',1,'GpgFrontend::UI::SubkeyGenerateDialog::key_usage_check_boxes_()']]], - ['key_5fusage_5fgroup_5fbox_5f_1530',['key_usage_group_box_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7b1b9cb46c0547c1e561e56d55616cf1',1,'GpgFrontend::UI::KeyGenDialog']]], - ['keyboxdpath_1531',['KeyboxdPath',['../classGpgFrontend_1_1GpgInfo.html#a072503811cb59dad27040e4e8914d18b',1,'GpgFrontend::GpgInfo']]], - ['keys_5fcache_5f_1532',['keys_cache_',['../classGpgFrontend_1_1GpgKeyGetter.html#a9567d5e08ae73c5bafcd1dc378fed066',1,'GpgFrontend::GpgKeyGetter']]], - ['keys_5fcache_5fmutex_5f_1533',['keys_cache_mutex_',['../classGpgFrontend_1_1GpgKeyGetter.html#ae1d7846ad2fa17ab90c72b3186ba5335',1,'GpgFrontend::GpgKeyGetter']]] + ['key_5fbox_5f_1519',['key_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#aae9905764b5551208574a932fdfba29c',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['key_5fid_5fvar_5flabel_1520',['key_id_var_label',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a65176245d280ae0734ef7b5b3f1c4cc4',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['key_5fid_5fvar_5flabel_5f_1521',['key_id_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a2f634f4c83ab5dd2d088eb07e0d3b862',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], + ['key_5flist_5fdock_5f_1522',['key_list_dock_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#adaa66d9cdc51c946efc99bb94deda31c',1,'GpgFrontend::UI::MainWindow']]], + ['key_5fmenu_5f_1523',['key_menu_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a16bbfd12cd3a6f0df9e2c32cf7999e57',1,'GpgFrontend::UI::MainWindow']]], + ['key_5fsize_5fspin_5fbox_5f_1524',['key_size_spin_box_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#aaa9b55830c39ce854e4ede26d916a844',1,'GpgFrontend::UI::KeyGenDialog::key_size_spin_box_()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#aa91db742b41d352ba9f88620d649afb3',1,'GpgFrontend::UI::SubkeyGenerateDialog::key_size_spin_box_()']]], + ['key_5fsize_5fvar_5flabel_5f_1525',['key_size_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a1485e603de56152f45d96e0ce5c50d9b',1,'GpgFrontend::UI::KeyPairDetailTab::key_size_var_label_()'],['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#a63e054f4a2d8e12c70d25d39bb55f876',1,'GpgFrontend::UI::KeyPairSubkeyTab::key_size_var_label_()']]], + ['key_5ftool_5fbar_5f_1526',['key_tool_bar_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a38f243880cfb9276545b08f0730811e7',1,'GpgFrontend::UI::MainWindow']]], + ['key_5ftype_5fcombo_5fbox_5f_1527',['key_type_combo_box_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a281bfffd99fcb600d07c4604bf2a8841',1,'GpgFrontend::UI::KeyGenDialog::key_type_combo_box_()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#ac515dabcf6c094c5eeb2bf88aa3aa9d3',1,'GpgFrontend::UI::SubkeyGenerateDialog::key_type_combo_box_()']]], + ['key_5fusage_5fcheck_5fboxes_5f_1528',['key_usage_check_boxes_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#ab0ccac068670a3e28ce78ff87a40b2fc',1,'GpgFrontend::UI::KeyGenDialog::key_usage_check_boxes_()'],['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a5d67b8ed68062ef127ad92986a98e95a',1,'GpgFrontend::UI::SubkeyGenerateDialog::key_usage_check_boxes_()']]], + ['key_5fusage_5fgroup_5fbox_5f_1529',['key_usage_group_box_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7b1b9cb46c0547c1e561e56d55616cf1',1,'GpgFrontend::UI::KeyGenDialog']]], + ['keyboxdpath_1530',['KeyboxdPath',['../classGpgFrontend_1_1GpgInfo.html#a072503811cb59dad27040e4e8914d18b',1,'GpgFrontend::GpgInfo']]], + ['keys_5fcache_5f_1531',['keys_cache_',['../classGpgFrontend_1_1GpgKeyGetter.html#a9567d5e08ae73c5bafcd1dc378fed066',1,'GpgFrontend::GpgKeyGetter']]], + ['keys_5fcache_5fmutex_5f_1532',['keys_cache_mutex_',['../classGpgFrontend_1_1GpgKeyGetter.html#ae1d7846ad2fa17ab90c72b3186ba5335',1,'GpgFrontend::GpgKeyGetter']]] ]; diff --git a/docs/html/search/variables_b.js b/docs/html/search/variables_b.js index 22606b99..c76c89da 100644 --- a/docs/html/search/variables_b.js +++ b/docs/html/search/variables_b.js @@ -1,4 +1,4 @@ var searchData= [ - ['latest_5freply_5f_1534',['latest_reply_',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#aed545ffa8128acb16bb28c067e032ec9',1,'GpgFrontend::UI::VersionCheckTask']]] + ['latest_5freply_5f_1533',['latest_reply_',['../classGpgFrontend_1_1UI_1_1VersionCheckTask.html#aed545ffa8128acb16bb28c067e032ec9',1,'GpgFrontend::UI::VersionCheckTask']]] ]; diff --git a/docs/html/search/variables_c.js b/docs/html/search/variables_c.js index 1182c017..cd68a5ec 100644 --- a/docs/html/search/variables_c.js +++ b/docs/html/search/variables_c.js @@ -1,5 +1,5 @@ var searchData= [ - ['m_5ftext_5fpage_5f_1535',['m_text_page_',['../classGpgFrontend_1_1UI_1_1FindWidget.html#a11f9d0f07b704539ad1df15a5c15dca9',1,'GpgFrontend::UI::FindWidget::m_text_page_()'],['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a6380776ea1bf9a020370589e1e20efd3',1,'GpgFrontend::UI::InfoBoardWidget::m_text_page_()']]], - ['mt_5f_1536',['mt_',['../classGpgFrontend_1_1DataObjectOperator.html#a9fc92c7d497f2a2057776adfca40e8ca',1,'GpgFrontend::DataObjectOperator::mt_()'],['../classGpgFrontend_1_1PassphraseGenerator.html#a19ac4999bbd5fb7e6c42a4aef9606892',1,'GpgFrontend::PassphraseGenerator::mt_()']]] + ['m_5ftext_5fpage_5f_1534',['m_text_page_',['../classGpgFrontend_1_1UI_1_1FindWidget.html#a11f9d0f07b704539ad1df15a5c15dca9',1,'GpgFrontend::UI::FindWidget::m_text_page_()'],['../classGpgFrontend_1_1UI_1_1InfoBoardWidget.html#a6380776ea1bf9a020370589e1e20efd3',1,'GpgFrontend::UI::InfoBoardWidget::m_text_page_()']]], + ['mt_5f_1535',['mt_',['../classGpgFrontend_1_1DataObjectOperator.html#a9fc92c7d497f2a2057776adfca40e8ca',1,'GpgFrontend::DataObjectOperator::mt_()'],['../classGpgFrontend_1_1PassphraseGenerator.html#a19ac4999bbd5fb7e6c42a4aef9606892',1,'GpgFrontend::PassphraseGenerator::mt_()']]] ]; diff --git a/docs/html/search/variables_d.js b/docs/html/search/variables_d.js index e34e97fe..3a379831 100644 --- a/docs/html/search/variables_d.js +++ b/docs/html/search/variables_d.js @@ -1,7 +1,7 @@ var searchData= [ - ['name_5fedit_5f_1537',['name_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7ed095cce29c658741ae0520049010c0',1,'GpgFrontend::UI::KeyGenDialog']]], - ['name_5fvar_5flabel_5f_1538',['name_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a9d57be18c2091827c04ec8809f4154be',1,'GpgFrontend::UI::KeyPairDetailTab']]], - ['new_5ftab_5fact_5f_1539',['new_tab_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a472500fec64442b114e9ce9faf4b6a73',1,'GpgFrontend::UI::MainWindow']]], - ['no_5fpass_5fphrase_5fcheck_5fbox_5f_1540',['no_pass_phrase_check_box_',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a001803152c0e5bd9de7c7dd04cef8ad4',1,'GpgFrontend::UI::SubkeyGenerateDialog']]] + ['name_5fedit_5f_1536',['name_edit_',['../classGpgFrontend_1_1UI_1_1KeyGenDialog.html#a7ed095cce29c658741ae0520049010c0',1,'GpgFrontend::UI::KeyGenDialog']]], + ['name_5fvar_5flabel_5f_1537',['name_var_label_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#a9d57be18c2091827c04ec8809f4154be',1,'GpgFrontend::UI::KeyPairDetailTab']]], + ['new_5ftab_5fact_5f_1538',['new_tab_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a472500fec64442b114e9ce9faf4b6a73',1,'GpgFrontend::UI::MainWindow']]], + ['no_5fpass_5fphrase_5fcheck_5fbox_5f_1539',['no_pass_phrase_check_box_',['../classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html#a001803152c0e5bd9de7c7dd04cef8ad4',1,'GpgFrontend::UI::SubkeyGenerateDialog']]] ]; diff --git a/docs/html/search/variables_e.js b/docs/html/search/variables_e.js index 64be37a3..76f61966 100644 --- a/docs/html/search/variables_e.js +++ b/docs/html/search/variables_e.js @@ -1,7 +1,7 @@ var searchData= [ - ['open_5fact_5f_1541',['open_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a4a1edafb8c67b181ff3c29394147571d',1,'GpgFrontend::UI::MainWindow']]], - ['open_5fkey_5fmanagement_5fact_5f_1542',['open_key_management_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad7b22560df7e3bb38b660d3ffc84dc83',1,'GpgFrontend::UI::MainWindow']]], - ['open_5fsettings_5fact_5f_1543',['open_settings_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#afab1e0363a4b97ff68228cd4bd7cbc62',1,'GpgFrontend::UI::MainWindow']]], - ['owner_5fbox_5f_1544',['owner_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#ad8c25061351d8e739b70d5466b87410e',1,'GpgFrontend::UI::KeyPairDetailTab']]] + ['open_5fact_5f_1540',['open_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a4a1edafb8c67b181ff3c29394147571d',1,'GpgFrontend::UI::MainWindow']]], + ['open_5fkey_5fmanagement_5fact_5f_1541',['open_key_management_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#ad7b22560df7e3bb38b660d3ffc84dc83',1,'GpgFrontend::UI::MainWindow']]], + ['open_5fsettings_5fact_5f_1542',['open_settings_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#afab1e0363a4b97ff68228cd4bd7cbc62',1,'GpgFrontend::UI::MainWindow']]], + ['owner_5fbox_5f_1543',['owner_box_',['../classGpgFrontend_1_1UI_1_1KeyPairDetailTab.html#ad8c25061351d8e739b70d5466b87410e',1,'GpgFrontend::UI::KeyPairDetailTab']]] ]; diff --git a/docs/html/search/variables_f.js b/docs/html/search/variables_f.js index c2506e1d..b45b3a92 100644 --- a/docs/html/search/variables_f.js +++ b/docs/html/search/variables_f.js @@ -1,7 +1,7 @@ var searchData= [ - ['paste_5fact_5f_1545',['paste_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a62ea61c38e758022ba655c6faf54322b',1,'GpgFrontend::UI::MainWindow']]], - ['pending_5ftasks_5f_1546',['pending_tasks_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a6d92421bbbfcf3136335a5173d1b2a22',1,'GpgFrontend::Thread::TaskRunner']]], - ['pgp_5fcrypt_5fbegin_1547',['PGP_CRYPT_BEGIN',['../classGpgFrontend_1_1GpgConstants.html#a237006d6db30c7e3f8de171210eb35f2',1,'GpgFrontend::GpgConstants']]], - ['print_5fact_5f_1548',['print_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8f9dd7edba23321a13ed630cdef7fdcc',1,'GpgFrontend::UI::MainWindow']]] + ['paste_5fact_5f_1544',['paste_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a62ea61c38e758022ba655c6faf54322b',1,'GpgFrontend::UI::MainWindow']]], + ['pending_5ftasks_5f_1545',['pending_tasks_',['../classGpgFrontend_1_1Thread_1_1TaskRunner.html#a6d92421bbbfcf3136335a5173d1b2a22',1,'GpgFrontend::Thread::TaskRunner']]], + ['pgp_5fcrypt_5fbegin_1546',['PGP_CRYPT_BEGIN',['../classGpgFrontend_1_1GpgConstants.html#a237006d6db30c7e3f8de171210eb35f2',1,'GpgFrontend::GpgConstants']]], + ['print_5fact_5f_1547',['print_act_',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a8f9dd7edba23321a13ed630cdef7fdcc',1,'GpgFrontend::UI::MainWindow']]] ]; diff --git a/docs/latex/classGpgFrontend_1_1ArchiveFileOperator__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1ArchiveFileOperator__coll__graph.pdf index 150b6979..06dc2126 100644 Binary files a/docs/latex/classGpgFrontend_1_1ArchiveFileOperator__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1ArchiveFileOperator__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1CacheManager__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1CacheManager__coll__graph.pdf index 8c40236c..64037a08 100644 Binary files a/docs/latex/classGpgFrontend_1_1CacheManager__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1CacheManager__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1CacheManager__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1CacheManager__inherit__graph.pdf index bafb1391..636a4c5e 100644 Binary files a/docs/latex/classGpgFrontend_1_1CacheManager__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1CacheManager__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1ChannelObject__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1ChannelObject__coll__graph.pdf index 3bc29e77..65853c76 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 376f79b2..a7e7e211 100644 --- a/docs/latex/classGpgFrontend_1_1ChannelObject__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1ChannelObject__inherit__graph.md5 @@ -1 +1 @@ -c930f53b70db9fe7e3145adade30b77b \ No newline at end of file +c01b0586afbc08d747185cc22d7c51b1 \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1ChannelObject__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1ChannelObject__inherit__graph.pdf index 743f6a9c..1930e113 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 406b8b74..e66be820 100644 Binary files a/docs/latex/classGpgFrontend_1_1CharsetOperator__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1CharsetOperator__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1CoreCommonUtil__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1CoreCommonUtil__coll__graph.pdf index ffcc3ac5..f09a65c6 100644 Binary files a/docs/latex/classGpgFrontend_1_1CoreCommonUtil__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1CoreCommonUtil__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1CoreCommonUtil__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1CoreCommonUtil__inherit__graph.pdf index 35fae1a2..ec1461d2 100644 Binary files a/docs/latex/classGpgFrontend_1_1CoreCommonUtil__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1CoreCommonUtil__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1CoreSignalStation__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1CoreSignalStation__coll__graph.pdf index 678a37db..813d5fd3 100644 Binary files a/docs/latex/classGpgFrontend_1_1CoreSignalStation__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1CoreSignalStation__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1CoreSignalStation__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1CoreSignalStation__inherit__graph.pdf index 01ea68d7..abd50f74 100644 Binary files a/docs/latex/classGpgFrontend_1_1CoreSignalStation__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1CoreSignalStation__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1DataObjectOperator__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1DataObjectOperator__coll__graph.pdf index 4835aa94..3b5e9b17 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 1b2b2527..7b063391 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 aa565af0..209b83b2 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 80d75996..fd00adc1 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__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GlobalSettingStation__coll__graph.pdf index 44c03f77..f778227a 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 44c03f77..f778227a 100644 Binary files a/docs/latex/classGpgFrontend_1_1GlobalSettingStation__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GlobalSettingStation__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgAdvancedOperator__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgAdvancedOperator__coll__graph.pdf index 366bb831..821f37d7 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgAdvancedOperator__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgAdvancedOperator__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgAdvancedOperator__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgAdvancedOperator__inherit__graph.pdf index aa8cbd5e..4589815f 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgAdvancedOperator__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgAdvancedOperator__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgBasicOperator__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgBasicOperator__coll__graph.pdf index ea338133..ee4a2b58 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 d22cfe79..79cc26d2 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgBasicOperator__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgBasicOperator__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgCommandExecutor.tex b/docs/latex/classGpgFrontend_1_1GpgCommandExecutor.tex index 023c77c0..fc4a0f2a 100644 --- a/docs/latex/classGpgFrontend_1_1GpgCommandExecutor.tex +++ b/docs/latex/classGpgFrontend_1_1GpgCommandExecutor.tex @@ -106,7 +106,7 @@ References Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Task\+Runner\+Gette -Referenced by Gpg\+Frontend\+::\+Gpg\+Advanced\+Operator\+::\+Clear\+Gpg\+Password\+Cache(), Gpg\+Frontend\+::\+Gpg\+Context\+::\+Get\+Info(), Gpg\+Frontend\+::\+Gpg\+Advanced\+Operator\+::\+Reload\+Gpg\+Components(), Gpg\+Frontend\+::\+Gpg\+Advanced\+Operator\+::\+Reset\+Configures(), Gpg\+Frontend\+::\+Gpg\+Advanced\+Operator\+::\+Restart\+Gpg\+Components(), Gpg\+Frontend\+::\+Gpg\+Advanced\+Operator\+::\+Start\+Dirmngr(), Gpg\+Frontend\+::\+Gpg\+Advanced\+Operator\+::\+Start\+Gpg\+Agent(), and Gpg\+Frontend\+::\+Gpg\+Advanced\+Operator\+::\+Start\+Key\+Boxd(). +Referenced by Gpg\+Frontend\+::\+Gpg\+Advanced\+Operator\+::\+Clear\+Gpg\+Password\+Cache(), Gpg\+Frontend\+::\+Gpg\+Key\+Opera\+::\+Generate\+Revoke\+Cert(), Gpg\+Frontend\+::\+Gpg\+Context\+::\+Get\+Info(), Gpg\+Frontend\+::\+Gpg\+Advanced\+Operator\+::\+Reload\+Gpg\+Components(), Gpg\+Frontend\+::\+Gpg\+Advanced\+Operator\+::\+Reset\+Configures(), Gpg\+Frontend\+::\+Gpg\+Advanced\+Operator\+::\+Restart\+Gpg\+Components(), Gpg\+Frontend\+::\+Gpg\+Advanced\+Operator\+::\+Start\+Dirmngr(), Gpg\+Frontend\+::\+Gpg\+Advanced\+Operator\+::\+Start\+Gpg\+Agent(), and Gpg\+Frontend\+::\+Gpg\+Advanced\+Operator\+::\+Start\+Key\+Boxd(). diff --git a/docs/latex/classGpgFrontend_1_1GpgCommandExecutor__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgCommandExecutor__coll__graph.pdf index ca2ef6b5..368ff12d 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 30cb0bc1..570e1c11 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 a0f5446f..4d4f6567 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgConstants__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgConstants__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgContext__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgContext__coll__graph.pdf index 13aedbfb..e358d34b 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgContext__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgContext__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgContext__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgContext__inherit__graph.pdf index ee85e1fb..45b941aa 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 dc2d496d..e83d601e 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 e455b913..ea88346a 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 5866df19..e634ea3b 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 aa8df135..02328ffa 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 afe61506..db57b59f 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 012a446c..75a6fc96 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 012a446c..75a6fc96 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 6b2d6200..96d38d83 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 952369a2..ce68f664 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgImportedKey__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgImportedKey__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgInfo__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgInfo__coll__graph.pdf index 8cfbf192..65b5ba5b 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.pdf b/docs/latex/classGpgFrontend_1_1GpgKeyGetter__coll__graph.pdf index 8cd88cd3..d3e72a69 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 037aeda6..b5853aea 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgKeyGetter__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgKeyGetter__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter__coll__graph.pdf index 75e1b0f9..c0c4bad6 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter__inherit__graph.pdf index 5d091e72..87fd8984 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgKeyImportExporter__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyManager__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgKeyManager__coll__graph.pdf index 932a783b..e8278588 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 185f9ea0..25d1db0e 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgKeyManager__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgKeyManager__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyOpera.tex b/docs/latex/classGpgFrontend_1_1GpgKeyOpera.tex index 592942b5..89627c19 100644 --- a/docs/latex/classGpgFrontend_1_1GpgKeyOpera.tex +++ b/docs/latex/classGpgFrontend_1_1GpgKeyOpera.tex @@ -31,6 +31,8 @@ void \mbox{\hyperlink{classGpgFrontend_1_1GpgKeyOpera_a151c47b997951e9162f8b036c \item Gpg\+Error \mbox{\hyperlink{classGpgFrontend_1_1GpgKeyOpera_a12e6b05b23781861065d7e3243c9349e}{Set\+Expire}} (const \mbox{\hyperlink{classGpgFrontend_1_1GpgKey}{Gpg\+Key}} \&key, const Subkey\+Id \&subkey\+\_\+fpr, std\+::unique\+\_\+ptr$<$ boost\+::posix\+\_\+time\+::ptime $>$ \&expires) \begin{DoxyCompactList}\small\item\em Set the Expire object. \end{DoxyCompactList}\item +void \mbox{\hyperlink{classGpgFrontend_1_1GpgKeyOpera_a91a9a9f24f6b620ea7b906c529e3d9a4}{Generate\+Revoke\+Cert}} (const \mbox{\hyperlink{classGpgFrontend_1_1GpgKey}{Gpg\+Key}} \&key, const std\+::string \&output\+\_\+file\+\_\+name) +\item Gpg\+Frontend\+::\+Gpg\+Error \mbox{\hyperlink{classGpgFrontend_1_1GpgKeyOpera_ab7e16d1f4cba23ea5b5b9f6009ce5ee2}{Modify\+Password}} (const \mbox{\hyperlink{classGpgFrontend_1_1GpgKey}{Gpg\+Key}} \&key) \item Gpg\+Frontend\+::\+Gpg\+Error \mbox{\hyperlink{classGpgFrontend_1_1GpgKeyOpera_a76a7f59701add8a59d8835919dad2000}{Modify\+TOFUPolicy}} (const \mbox{\hyperlink{classGpgFrontend_1_1GpgKey}{Gpg\+Key}} \&key, gpgme\+\_\+tofu\+\_\+policy\+\_\+t tofu\+\_\+policy) @@ -39,11 +41,6 @@ Gpg\+Frontend\+::\+Gpg\+Error \mbox{\hyperlink{classGpgFrontend_1_1GpgKeyOpera_a \item Gpg\+Frontend\+::\+Gpg\+Error \mbox{\hyperlink{classGpgFrontend_1_1GpgKeyOpera_a882d99e8407cc22fb8b6e61c531fbe85}{Generate\+Subkey}} (const \mbox{\hyperlink{classGpgFrontend_1_1GpgKey}{Gpg\+Key}} \&key, const std\+::unique\+\_\+ptr$<$ \mbox{\hyperlink{classGpgFrontend_1_1GenKeyInfo}{Gen\+Key\+Info}} $>$ \¶ms) \end{DoxyCompactItemize} -\doxysubsection*{Static Public Member Functions} -\begin{DoxyCompactItemize} -\item -static void \mbox{\hyperlink{classGpgFrontend_1_1GpgKeyOpera_a91a9a9f24f6b620ea7b906c529e3d9a4}{Generate\+Revoke\+Cert}} (const \mbox{\hyperlink{classGpgFrontend_1_1GpgKey}{Gpg\+Key}} \&key, const std\+::string \&output\+\_\+file\+\_\+name) -\end{DoxyCompactItemize} \doxysubsection*{Private Attributes} \begin{DoxyCompactItemize} \item @@ -151,7 +148,7 @@ Referenced by Gpg\+Frontend\+::\+UI\+::\+Key\+Gen\+Dialog\+::slot\+\_\+key\+\_\+ \index{GpgFrontend::GpgKeyOpera@{GpgFrontend::GpgKeyOpera}!GenerateRevokeCert@{GenerateRevokeCert}} \index{GenerateRevokeCert@{GenerateRevokeCert}!GpgFrontend::GpgKeyOpera@{GpgFrontend::GpgKeyOpera}} \doxysubsubsection{\texorpdfstring{GenerateRevokeCert()}{GenerateRevokeCert()}} -{\footnotesize\ttfamily void Gpg\+Frontend\+::\+Gpg\+Key\+Opera\+::\+Generate\+Revoke\+Cert (\begin{DoxyParamCaption}\item[{const \mbox{\hyperlink{classGpgFrontend_1_1GpgKey}{Gpg\+Key}} \&}]{key, }\item[{const std\+::string \&}]{output\+\_\+file\+\_\+name }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} +{\footnotesize\ttfamily void Gpg\+Frontend\+::\+Gpg\+Key\+Opera\+::\+Generate\+Revoke\+Cert (\begin{DoxyParamCaption}\item[{const \mbox{\hyperlink{classGpgFrontend_1_1GpgKey}{Gpg\+Key}} \&}]{key, }\item[{const std\+::string \&}]{output\+\_\+file\+\_\+path }\end{DoxyParamCaption})} \begin{DoxyParams}{Parameters} @@ -167,6 +164,10 @@ Referenced by Gpg\+Frontend\+::\+UI\+::\+Key\+Gen\+Dialog\+::slot\+\_\+key\+\_\+ \begin{DoxyReturn}{Returns} the process doing this job \end{DoxyReturn} + + +References Gpg\+Frontend\+::\+Gpg\+Command\+Executor\+::\+Execute(), and Gpg\+Frontend\+::\+Singleton\+Function\+Object$<$ Gpg\+Command\+Executor $>$\+::\+Get\+Instance(). + \mbox{\Hypertarget{classGpgFrontend_1_1GpgKeyOpera_a882d99e8407cc22fb8b6e61c531fbe85}\label{classGpgFrontend_1_1GpgKeyOpera_a882d99e8407cc22fb8b6e61c531fbe85}} \index{GpgFrontend::GpgKeyOpera@{GpgFrontend::GpgKeyOpera}!GenerateSubkey@{GenerateSubkey}} \index{GenerateSubkey@{GenerateSubkey}!GpgFrontend::GpgKeyOpera@{GpgFrontend::GpgKeyOpera}} diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyOpera__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1GpgKeyOpera__coll__graph.md5 index cf38342c..52b88392 100644 --- a/docs/latex/classGpgFrontend_1_1GpgKeyOpera__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1GpgKeyOpera__coll__graph.md5 @@ -1 +1 @@ -85fd32902ac465739e52bfe30e23707e \ No newline at end of file +bcbf120cc6651331f3f6d1aebc9e71bc \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyOpera__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgKeyOpera__coll__graph.pdf index aef60751..955e21b3 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgKeyOpera__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgKeyOpera__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyOpera__inherit__graph.md5 b/docs/latex/classGpgFrontend_1_1GpgKeyOpera__inherit__graph.md5 index 395e9161..5335015f 100644 --- a/docs/latex/classGpgFrontend_1_1GpgKeyOpera__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1GpgKeyOpera__inherit__graph.md5 @@ -1 +1 @@ -c7bf301af4db1f11e4b12ab8ab3d2ff0 \ No newline at end of file +28732c98a5f2c4de0d37a357b4cdee0b \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyOpera__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgKeyOpera__inherit__graph.pdf index 3d5bfac7..4ca95684 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 228f4746..36368e5d 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 2e747c80..d05f3120 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 933ca1de..dc707929 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 7a3218a4..145a7b6a 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 43e6a3bd..1d974fe8 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 7fa7a3c4..46bcbbde 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 93747e56..68134115 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 00f9ab48..30e60bad 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 8f71bc7f..9e9dc63b 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgTOFUInfo__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgTOFUInfo__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgUIDOperator__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgUIDOperator__coll__graph.pdf index 40cf4655..9c8b791a 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 555fce14..d5ad3a3b 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 a0eb3783..2c667add 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 e50116d0..538b57cd 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 7911462d..5e5cfdea 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 d20b9bc2..871c60d7 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 6e76a3ee..7b2fd86e 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 6e76a3ee..7b2fd86e 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 bc5165a0..803d651e 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 7f4a7bb1..a1a9e6f0 100644 --- a/docs/latex/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.md5 @@ -1 +1 @@ -5d2cb6220c0a11001c7ef26264159bd8 \ No newline at end of file +1e1162effc8e4bd317eff1560e747739 \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.pdf index 2f624939..0e42fe3f 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 5c45629e..85024226 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 d0bcc406..93fdd5cf 100644 Binary files a/docs/latex/classGpgFrontend_1_1SingletonStorage__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1SingletonStorage__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1ThreadSafeMap__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1ThreadSafeMap__coll__graph.pdf index 4c3d8f27..e9953f5b 100644 Binary files a/docs/latex/classGpgFrontend_1_1ThreadSafeMap__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1ThreadSafeMap__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1ThreadSafeMap__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1ThreadSafeMap__inherit__graph.pdf index 72aca9b2..495e8ab1 100644 Binary files a/docs/latex/classGpgFrontend_1_1ThreadSafeMap__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1ThreadSafeMap__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1Thread_1_1CtxCheckTask__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Thread_1_1CtxCheckTask__coll__graph.pdf index f9423984..10abf138 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 18a9c011..4a3b6a68 100644 Binary files a/docs/latex/classGpgFrontend_1_1Thread_1_1CtxCheckTask__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1Thread_1_1CtxCheckTask__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunnerGetter__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunnerGetter__coll__graph.pdf index e00985c8..2bcbaa85 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 48dfbce4..1d37c374 100644 Binary files a/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunnerGetter__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunnerGetter__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner__coll__graph.pdf index c4b08412..6d0e1eba 100644 Binary files a/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner__inherit__graph.pdf index 78384701..469d2687 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 8774102f..e7da1007 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 055b0699..0e644ecb 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 b7f1b743..7fc70c1b 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.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.md5 index 96f8abde..44b7b01f 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.md5 @@ -1 +1 @@ -4f278e0d63bb9455a50d3a688e08577c \ No newline at end of file +291f03260028d5071439c1a5b6d58ab6 \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.pdf index d78963bc..adfdb3d6 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.md5 index 82ad4cec..b4e0a8d4 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.md5 @@ -1 +1 @@ -63aa24fd12f931982b3183a3ce899bb6 \ No newline at end of file +130b80f581404098ce5481a20bb4d4ef \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.pdf index dae9fece..3e4af077 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 13047618..7f2b3a5c 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 13047618..7f2b3a5c 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 9df2dfaf..e77c50e0 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 bf36e325..ab2e9854 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 e43ae9db..59c1db4b 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 e43ae9db..59c1db4b 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ChoosePage__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ChoosePage__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__coll__graph.pdf index 8fb89dea..f543ee9d 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1CommonUtils__inherit__graph.pdf index 5db53d7d..8c47d23d 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 4778d359..fed2bef9 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 4778d359..fed2bef9 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.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.md5 index bdd6a1a9..65848726 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.md5 @@ -1 +1 @@ -2cbc410ecde206f138950b8776b8755d \ No newline at end of file +fe16293fa57648ca8fb921cb61cfdb9e \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.pdf index d8ed92c9..b2e71158 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.md5 index 455d9058..bb4f9a56 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.md5 @@ -1 +1 @@ -694ddea368a258ff713c2c3c16faaa83 \ No newline at end of file +50e3f37cc03bbe14315a75e679173fa0 \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.pdf index 421e03e8..03e64cac 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 41f6cc43..7628d23b 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 ef7f6e86..e7935975 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 2c07ccb1..6a172e58 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 809cf1b2..7ca7c866 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 8f93fc87..5c448a9b 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 2e6b150e..9df8e4ac 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1FindWidget__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1FindWidget__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog.tex b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog.tex index 55315c02..05678907 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog.tex @@ -33,6 +33,12 @@ void {\bfseries set\+Pos\+Center\+Of\+Screen} () \item \mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralDialog_ad9d5be542aa422450a96dff00232ebe5}\label{classGpgFrontend_1_1UI_1_1GeneralDialog_ad9d5be542aa422450a96dff00232ebe5}} void {\bfseries move\+Position2\+Center\+Of\+Parent} () +\item +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralDialog_af074bf574bb3fb2be5de5f7e3b5b539e}\label{classGpgFrontend_1_1UI_1_1GeneralDialog_af074bf574bb3fb2be5de5f7e3b5b539e}} +bool {\bfseries is\+Rect\+Restored} () +\item +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralDialog_a570c723ba0cb5522f2b0c16ac28d0532}\label{classGpgFrontend_1_1UI_1_1GeneralDialog_a570c723ba0cb5522f2b0c16ac28d0532}} +void {\bfseries show\+Event} (QShow\+Event $\ast$event) override \end{DoxyCompactItemize} \doxysubsection*{Private Slots} \begin{DoxyCompactItemize} @@ -43,23 +49,26 @@ void {\bfseries slot\+\_\+restore\+\_\+settings} () noexcept \mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralDialog_a940a6ea31dff4db83f9f08d38e843a2b}\label{classGpgFrontend_1_1UI_1_1GeneralDialog_a940a6ea31dff4db83f9f08d38e843a2b}} void {\bfseries slot\+\_\+save\+\_\+settings} () noexcept \end{DoxyCompactItemize} +\doxysubsection*{Private Member Functions} +\begin{DoxyCompactItemize} +\item +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralDialog_ad1f20151e9556a3c481fda89cf88e585}\label{classGpgFrontend_1_1UI_1_1GeneralDialog_ad1f20151e9556a3c481fda89cf88e585}} +void {\bfseries update\+\_\+rect\+\_\+cache} () +\end{DoxyCompactItemize} \doxysubsection*{Private Attributes} \begin{DoxyCompactItemize} \item \mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralDialog_ae91392293866dc302132a9fc19209d8c}\label{classGpgFrontend_1_1UI_1_1GeneralDialog_ae91392293866dc302132a9fc19209d8c}} std\+::string {\bfseries name\+\_\+} \item -\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralDialog_ad9b847aa128dfeb4ecf0064ef948e6ea}\label{classGpgFrontend_1_1UI_1_1GeneralDialog_ad9b847aa128dfeb4ecf0064ef948e6ea}} -QPoint {\bfseries pos\+\_\+} +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralDialog_a22f39850fae58b9f6c59c372b9fbb582}\label{classGpgFrontend_1_1UI_1_1GeneralDialog_a22f39850fae58b9f6c59c372b9fbb582}} +QRect {\bfseries rect\+\_\+} \item -\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralDialog_aeda520454fd38920a027c1a4195a2e6f}\label{classGpgFrontend_1_1UI_1_1GeneralDialog_aeda520454fd38920a027c1a4195a2e6f}} -QSize {\bfseries size\+\_\+} +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralDialog_ab92573b0e63d9c792f2e1697d858cea7}\label{classGpgFrontend_1_1UI_1_1GeneralDialog_ab92573b0e63d9c792f2e1697d858cea7}} +QRect {\bfseries parent\+\_\+rect\+\_\+} \item -\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralDialog_a871f204f01f10815e3475c103f1157af}\label{classGpgFrontend_1_1UI_1_1GeneralDialog_a871f204f01f10815e3475c103f1157af}} -QPoint {\bfseries parent\+\_\+pos\+\_\+} -\item -\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralDialog_a234a0a4d8c0b1b49a54f65b1aa3f9490}\label{classGpgFrontend_1_1UI_1_1GeneralDialog_a234a0a4d8c0b1b49a54f65b1aa3f9490}} -QSize {\bfseries parent\+\_\+size\+\_\+} +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralDialog_a4e4eb414ac80ba7dd1e853ed62e1ee68}\label{classGpgFrontend_1_1UI_1_1GeneralDialog_a4e4eb414ac80ba7dd1e853ed62e1ee68}} +bool {\bfseries rect\+\_\+restored\+\_\+} = false \end{DoxyCompactItemize} diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.md5 index 46b177ed..cb60b8d0 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.md5 @@ -1 +1 @@ -1ad0f86474effc5f3a42f82bfbd85399 \ No newline at end of file +561961c3aa4d5869f93c9ff145106553 \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.pdf index 5a8fd012..ead310f9 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 b13f0e3c..3dae1772 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 @@ -d07b0d811c019408329e50c2a536e9cb \ No newline at end of file +d943111e8b204a3cd9389c01dee534d2 \ 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 d7b37d84..25428d55 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 cb4c8b2c..d525eaee 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 6e0c696d..6a1b8cdf 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 bec9c9ee..60eb48cf 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 0a331895..d89d9941 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralTab__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralTab__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__coll__graph.md5 index 97f09dab..35d13c62 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__coll__graph.md5 @@ -1 +1 @@ -390453fe263a0b94ec1df65817dd8843 \ No newline at end of file +ef013e206121f524e712a2680c76f0c9 \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__coll__graph.pdf index 828651d8..8399fe73 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__inherit__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__inherit__graph.md5 index bd64d506..ac17364e 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__inherit__graph.md5 @@ -1 +1 @@ -9a50dccab2f68f551befafc78f5efd13 \ No newline at end of file +43740bce87b77dd3a4815dd1b19c3e4c \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__inherit__graph.pdf index 152f97da..a03c1391 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GnupgTab__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GnupgTab__coll__graph.pdf index d8ac704c..5b70bf03 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 d576987c..a4329294 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 e94496a9..7e4b4681 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 e94496a9..7e4b4681 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 cd60afa2..42b59625 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 cd60afa2..42b59625 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 72a0d201..80a95c15 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 597a2a1f..a10a53fd 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 2f73ca0f..5cda1d89 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 2f73ca0f..5cda1d89 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 aa59948b..986b8a31 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 aa59948b..986b8a31 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.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.md5 index 3aa29ca6..ccfd1a37 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.md5 @@ -1 +1 @@ -e150d9ff2dc1d02a44ea535f4df881a0 \ No newline at end of file +f5318e100ada4647e71582cefaddd2b1 \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.pdf index d2a8ffbe..a8d1a038 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.md5 index 316656a8..275f68d1 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.md5 @@ -1 +1 @@ -ef280f4118fcedbc592fad35168d0535 \ No newline at end of file +794782b5711c56785c41cb7b2d75d960 \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.pdf index 961cb5a1..088a731a 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.md5 index 8e4d7d82..3f9c03d8 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 @@ -66e5bc28fd23171bf8a4066b9b80b692 \ No newline at end of file +5286aa415e0a8d9c39bac7e2cf53d6ce \ 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 439cebfe..e265de28 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 e6299462..0249401f 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 @@ -6ffb96125ea4ad262f9cdf497150d603 \ No newline at end of file +4bf34a713daa2ec800c19369d2f90e87 \ 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 f91fb0ff..f6becc89 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 0f90e1f0..4b3ab639 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 0f90e1f0..4b3ab639 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenPage__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenPage__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.tex b/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.tex index b6d179f0..6d3baff1 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.tex @@ -7,7 +7,7 @@ Inheritance diagram for Gpg\+Frontend\+::UI\+::Key\+Import\+Detail\+Dialog\+: \begin{figure}[H] \begin{center} \leavevmode -\includegraphics[width=262pt]{classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph} +\includegraphics[height=550pt]{classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph} \end{center} \end{figure} diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.md5 index 46dc6b5a..df700ab2 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.md5 @@ -1 +1 @@ -c3ff390cfb71d2f377d9372948217916 \ No newline at end of file +a543b77e5e8d7ae146dc045a6237d94d \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.pdf index 2b1b33b5..467198c7 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.md5 index a5609a8f..8f63cce8 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.md5 @@ -1 +1 @@ -81bc9706182dea09cf2179ff57fd8398 \ No newline at end of file +3dcbdc36c46dbf0f49acd323008fe7a7 \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.pdf index 8f40b44f..0aadb2a7 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 70b5eaf8..62f321aa 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 3c713f6f..2b719a0a 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyList__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyList__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.md5 index a3ba4ddc..1e4f8f2c 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.md5 @@ -1 +1 @@ -28716ee3ae1cc90c1257c9c9d338f735 \ No newline at end of file +828cdaeb52ef6e92f8c8207a32e305ff \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.pdf index 85f30414..71d73d3a 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 c2edc3ad..82af5b62 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.tex b/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.tex index 637c2e60..315fcfcb 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.tex @@ -7,7 +7,7 @@ Inheritance diagram for Gpg\+Frontend\+::UI\+::Key\+New\+UIDDialog\+: \begin{figure}[H] \begin{center} \leavevmode -\includegraphics[width=271pt]{classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph} +\includegraphics[height=550pt]{classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph} \end{center} \end{figure} diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.md5 index 4ff75064..ee42909d 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.md5 @@ -1 +1 @@ -9e9f69da8d46ab2812d31d615179c5cf \ No newline at end of file +10000aada5160411d6162946c83ed9a6 \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.pdf index bd9da434..91b7029c 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.md5 index 1e30aad3..5435ff9c 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.md5 @@ -1 +1 @@ -71d7569cffde208b5559a82e16a3db46 \ No newline at end of file +ed5e00a4dbbe15f6dd5bc51e831146f8 \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.pdf index 903e7fad..be727fa9 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 90e66770..87535ddb 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 2b0ad8a8..f43bddd3 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 26aa860c..fe4ebed0 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 ebc9de5c..c19b7e00 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 d88803fe..ccd10a91 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 f893c519..e3e076e4 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 9099acd2..0f892cad 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 ce709def..de9beeb7 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.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.md5 index 2431ac4f..ac92016e 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.md5 @@ -1 +1 @@ -55122de7dd19865f8c0ea095729297e0 \ No newline at end of file +0f1556c36b7ec0ca14633407c007f16e \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.pdf index 60617029..d5953cad 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.md5 index f8ccca0a..d738e2cd 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.md5 @@ -1 +1 @@ -a679016b7c01a2560e93d1705087147e \ No newline at end of file +b3fb2a4f302623af64fe5c91a8d9cfbd \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.pdf index d50e10f8..2fa589fa 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 c744288d..4e29250a 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 a0d2464c..a3cc0a24 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 cdc5dbaf..3895b3fb 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 e7788c2b..c6aac866 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerSearchTask__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerSearchTask__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.md5 index a01fa8cc..0c6acb48 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.md5 @@ -1 +1 @@ -e7529b6f3414b246196970b3d9bc4e2d \ No newline at end of file +94192b8fcfcd1c6c9422365e399673fb \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.pdf index ad247dac..3a59a894 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.md5 index f4b68c79..95aeb401 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.md5 @@ -1 +1 @@ -e48cb9f4f473b85fa93e831a7a410a91 \ No newline at end of file +b6da64206c7c2a842d7cc8fb6b51472e \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.pdf index 09d5ba18..849e5eee 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.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.md5 index 616584a5..7ac516c9 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.md5 @@ -1 +1 @@ -4d38d4a9419f8be1fafd0a60152b7ea7 \ No newline at end of file +12fdd825f4e14eb09e7fab7f852283ec \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.pdf index 42aa7131..1b64aecd 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.md5 index 4ef1d478..f80e6116 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.md5 @@ -1 +1 @@ -9b9713f0cce0476f20f2906f1144f47c \ No newline at end of file +9d31ff580eac2b879e8a712ec3f94cd7 \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.pdf index 24751d1f..904474e6 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.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.md5 index b2e21d0b..01f7f141 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.md5 @@ -1 +1 @@ -99a928f62f8da32ad2928c0e5ebe03fa \ No newline at end of file +0ece4a685d4808ab5ff520f8fafa2144 \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.pdf index 6f300227..9ed15247 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.md5 index 55022f23..fa598200 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.md5 @@ -1 +1 @@ -b4cd49f7f3e58f21d2e7c4fef0e09740 \ No newline at end of file +512d0563f4e2d5b7e241d96cd7833741 \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.pdf index 58a5750f..eed4a125 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 e5f4ebec..14bdd88a 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 a9f22448..cbfc5b8f 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 c3d7a82b..7ee8e672 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 217051af..6525d5b4 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.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.pdf index bda80950..87a09616 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 5164df44..c2953e0a 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 d1d6c4c4..e66a8ad3 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 a19ab923..e5749c6c 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 c3488c12..f3a523e0 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 99cb86e8..d0d158fe 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1PlainTextEditorPage__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1PlainTextEditorPage__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask__coll__graph.pdf index dc801181..59d7e46b 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask__inherit__graph.pdf index fa47fd9a..2ad110e0 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.md5 index ad437634..5b12be0b 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.md5 @@ -1 +1 @@ -1ed26d080c8e22a9fafe7ab03f52f990 \ No newline at end of file +be58fae8d626b8901cfee42894e9e56d \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.pdf index 5be672fd..9823dcda 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.md5 index b098b5d4..087494db 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.md5 @@ -1 +1 @@ -bc113a5764db8fa96bbc767845d76057 \ No newline at end of file +d3f832dda7be7bb3811e31811222defb \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.pdf index 58d82cff..0bb92247 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.md5 index d6c5028f..20778129 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.md5 @@ -1 +1 @@ -0fc6925c75ea6ad423540cca4d0cdd4b \ No newline at end of file +4e5309d3bb227b96cd6a1ff7dfaea7c7 \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.pdf index 2c0c09fd..fab40414 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.md5 index ccf7aa09..1b05a9af 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.md5 @@ -1 +1 @@ -c67352bba9c2cb6764ded9312fa547a3 \ No newline at end of file +c5aac6559e4f0e7d245996d048612960 \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.pdf index 4cb6be9f..9e148e0e 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 623228ea..5d42e9e6 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 4c4c63db..1c00766a 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SettingsObject__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SettingsObject__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SignalStation__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SignalStation__coll__graph.pdf index 1d572c92..2d38bf3f 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 791daeca..24ae9483 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SignalStation__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SignalStation__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.md5 index 7de44bbe..16ffd0e2 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.md5 @@ -1 +1 @@ -0f7266f057e563fcc5f18ea828aff489 \ No newline at end of file +3f6ec1d431ea4481a70938b2c7cee01c \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.pdf index 8e74907d..58777f8e 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.md5 index 4fce405f..eb4f0dd5 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.md5 @@ -1 +1 @@ -b32cf09c4698c5b5da151cf95ddac55e \ No newline at end of file +30265b476c567cc0c5f61096717f92d0 \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.pdf index 642a16fb..3fa870eb 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.md5 index ff07cb95..3811d8dd 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 @@ -e072fb630f64db3da0f316d70303fb5b \ No newline at end of file +6b0ab70e9e10170f50397a46b19c8bbf \ 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 3f24ed69..9efe53d9 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 e417f539..329ec8ce 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 @@ -993258972863042a2eaa3d0f6f2087eb \ No newline at end of file +5b2b64446f895b24d9f5773c432f6dff \ 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 602482d7..7a4f8c08 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 34644af6..ea00fb02 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 34644af6..ea00fb02 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1TOFUInfoPage__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1TOFUInfoPage__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__coll__graph.pdf index 8203eaf8..28fa224a 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1TextEdit__inherit__graph.pdf index 8203eaf8..28fa224a 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 40e41b42..5daec84f 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 40e41b42..5daec84f 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 fbda2efb..24287ac3 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 fbda2efb..24287ac3 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 25a1f1ad..b8996b3e 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 7ab6731d..e607447d 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 9481ab97..aabdd060 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 704a4354..9fc519d4 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 9bcf03b7..beda338e 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 30d7b75b..af27a657 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1VersionCheckTask__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1VersionCheckTask__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog.tex b/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog.tex index 879ee7df..7be6c377 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog.tex @@ -7,7 +7,7 @@ Inheritance diagram for Gpg\+Frontend\+::UI\+::Waiting\+Dialog\+: \begin{figure}[H] \begin{center} \leavevmode -\includegraphics[width=218pt]{classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph} +\includegraphics[width=262pt]{classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph} \end{center} \end{figure} @@ -17,7 +17,7 @@ Collaboration diagram for Gpg\+Frontend\+::UI\+::Waiting\+Dialog\+: \begin{figure}[H] \begin{center} \leavevmode -\includegraphics[width=218pt]{classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph} +\includegraphics[height=550pt]{classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph} \end{center} \end{figure} \doxysubsection*{Public Member Functions} @@ -25,6 +25,7 @@ Collaboration diagram for Gpg\+Frontend\+::UI\+::Waiting\+Dialog\+: \item \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1WaitingDialog_a809d0ffc8208eb2ff5d8da76c8ee10dc}{Waiting\+Dialog}} (const QString \&title, QWidget $\ast$parent) \begin{DoxyCompactList}\small\item\em Construct a new Waiting Dialog object. \end{DoxyCompactList}\end{DoxyCompactItemize} +\doxysubsection*{Additional Inherited Members} \doxysubsection{Constructor \& Destructor Documentation} diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.md5 index a84031e7..bc79d534 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.md5 @@ -1 +1 @@ -276d842f732e08396fe85f9ee1733b8a \ No newline at end of file +cd5fc53e0613abc8682c08af7860f4aa \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.pdf index 1c0ffa82..037cbe42 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.md5 index a84031e7..dce952ec 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.md5 @@ -1 +1 @@ -276d842f732e08396fe85f9ee1733b8a \ No newline at end of file +5f160b4b067e7151630aad6adc6e323b \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.pdf index 1c0ffa82..9ef973f5 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 9938d036..3eb0e63a 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 9938d036..3eb0e63a 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 e2ad3c30..c9615d92 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 b0456e95..71fec3ea 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 b0456e95..71fec3ea 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 d9701511..280ed838 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 cfb490fb..e2b73d70 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 9879e944..2707eb81 100644 --- a/docs/latex/hierarchy.tex +++ b/docs/latex/hierarchy.tex @@ -127,9 +127,9 @@ This inheritance list is sorted roughly, but not completely, alphabetically\+:\b \item \contentsline{section}{Gpg\+Frontend\+::UI\+::Settings\+Dialog}{\pageref{classGpgFrontend_1_1UI_1_1SettingsDialog}}{} \item \contentsline{section}{Gpg\+Frontend\+::UI\+::Signers\+Picker}{\pageref{classGpgFrontend_1_1UI_1_1SignersPicker}}{} \item \contentsline{section}{Gpg\+Frontend\+::UI\+::Subkey\+Generate\+Dialog}{\pageref{classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog}}{} +\item \contentsline{section}{Gpg\+Frontend\+::UI\+::Waiting\+Dialog}{\pageref{classGpgFrontend_1_1UI_1_1WaitingDialog}}{} \end{DoxyCompactList} \item \contentsline{section}{Gpg\+Frontend\+::UI\+::Verify\+Details\+Dialog}{\pageref{classGpgFrontend_1_1UI_1_1VerifyDetailsDialog}}{} -\item \contentsline{section}{Gpg\+Frontend\+::UI\+::Waiting\+Dialog}{\pageref{classGpgFrontend_1_1UI_1_1WaitingDialog}}{} \item \contentsline{section}{Signature\+Details\+Dialog}{\pageref{classSignatureDetailsDialog}}{} \end{DoxyCompactList} \item QGroup\+Box\begin{DoxyCompactList} diff --git a/docs/latex/structGpgFrontend_1_1ArchiveStruct__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1ArchiveStruct__coll__graph.pdf index 2c2d5288..a43159c6 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 b2efa20e..0e7f51ef 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 63d81e95..cb933709 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 8df6143b..c601611b 100644 Binary files a/docs/latex/structGpgFrontend_1_1GpgData_1_1__data__ref__deleter__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1GpgData_1_1__data__ref__deleter__coll__graph.pdf differ diff --git a/docs/latex/structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct__coll__graph.pdf index 4d024b44..64c6a442 100644 Binary files a/docs/latex/structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1GpgKeyManager_1_1AutomatonHandelStruct__coll__graph.pdf differ diff --git a/docs/latex/structGpgFrontend_1_1GpgKey_1_1__key__ref__deleter__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1GpgKey_1_1__key__ref__deleter__coll__graph.pdf index f76e3ec7..824afe0b 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 b17085f9..1e311e64 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 74b53e56..d73bfba5 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 1456df5c..a571cbb9 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 b6394b0d..2e8d03de 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 d93316d7..46c1b687 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 110370ec..4b3623e5 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 1accdb3c..2415d34b 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 fc71b247..71acbcff 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