diff --git a/docs/html/GeneralDialog_8h_source.html b/docs/html/GeneralDialog_8h_source.html index 5e47cfc3..f6059ff2 100644 --- a/docs/html/GeneralDialog_8h_source.html +++ b/docs/html/GeneralDialog_8h_source.html @@ -104,7 +104,7 @@ $(document).ready(function(){initNavTree('GeneralDialog_8h_source.html',''); ini
53 
58  void movePosition2CenterOfParent();
59 
-
64  [[nodiscard]] bool isRectRestored();
+
64  [[nodiscard]] auto isRectRestored() -> bool;
65 
70  void showEvent(QShowEvent* event) override;
71 
diff --git a/docs/html/GeneralMainWindow_8h_source.html b/docs/html/GeneralMainWindow_8h_source.html index 74b1c0c4..c152fec1 100644 --- a/docs/html/GeneralMainWindow_8h_source.html +++ b/docs/html/GeneralMainWindow_8h_source.html @@ -102,21 +102,30 @@ $(document).ready(function(){initNavTree('GeneralMainWindow_8h_source.html','');
51  protected:
56  void closeEvent(QCloseEvent* event) override;
57 
-
58  QSize icon_size_{};
-
59  int font_size_{};
-
60  Qt::ToolButtonStyle icon_style_;
-
61 
-
62  private slots:
-
66  void slot_restore_settings() noexcept;
-
67 
-
71  void slot_save_settings() noexcept;
+
61  void setPosCenterOfScreen();
+
62 
+
67  void movePosition2CenterOfParent();
+
68 
+
69  QSize icon_size_{};
+
70  int font_size_{};
+
71  Qt::ToolButtonStyle icon_style_;
72 
-
73  private:
-
74  QString name_;
-
75  QPoint pos_;
-
76  QSize size_;
-
77 };
-
78 } // namespace GpgFrontend::UI
+
73  private slots:
+
77  void slot_restore_settings() noexcept;
+
78 
+
82  void slot_save_settings() noexcept;
+
83 
+
88  void update_rect_cache();
+
89 
+
90  private:
+
91  QString name_;
+
92  QPoint pos_;
+
93  QSize size_;
+
94  QRect rect_;
+
95  QRect screen_rect_;
+
96  QRect parent_rect_;
+
97 };
+
98 } // namespace GpgFrontend::UI
GpgFrontend::UI::GeneralMainWindow
Definition: GeneralMainWindow.h:38
GpgFrontend::UI::GeneralMainWindow::GeneralMainWindow
GeneralMainWindow(QString name, QWidget *parent=nullptr)
Definition: GeneralMainWindow.cpp:39
GpgFrontend::UI::GeneralMainWindow::closeEvent
void closeEvent(QCloseEvent *event) override
Definition: GeneralMainWindow.cpp:47
diff --git a/docs/html/GpgFrontendUIInit_8h_source.html b/docs/html/GpgFrontendUIInit_8h_source.html index 7ed23085..765f9d07 100644 --- a/docs/html/GpgFrontendUIInit_8h_source.html +++ b/docs/html/GpgFrontendUIInit_8h_source.html @@ -103,9 +103,9 @@ $(document).ready(function(){initNavTree('GpgFrontendUIInit_8h_source.html','');
57 
58 }; // namespace GpgFrontend::UI
GpgFrontend::UI
Definition: FileReadTask.cpp:31
-
GpgFrontend::UI::DestroyGpgFrontendUI
void GPGFRONTEND_UI_EXPORT DestroyGpgFrontendUI()
init the UI library
Definition: GpgFrontendUIInit.cpp:208
-
GpgFrontend::UI::InitGpgFrontendUI
void InitGpgFrontendUI(QApplication *)
init the UI library
Definition: GpgFrontendUIInit.cpp:106
-
GpgFrontend::UI::RunGpgFrontendUI
auto RunGpgFrontendUI(QApplication *app) -> int
run main window
Definition: GpgFrontendUIInit.cpp:187
+
GpgFrontend::UI::DestroyGpgFrontendUI
void GPGFRONTEND_UI_EXPORT DestroyGpgFrontendUI()
init the UI library
Definition: GpgFrontendUIInit.cpp:209
+
GpgFrontend::UI::InitGpgFrontendUI
void InitGpgFrontendUI(QApplication *)
init the UI library
Definition: GpgFrontendUIInit.cpp:107
+
GpgFrontend::UI::RunGpgFrontendUI
auto RunGpgFrontendUI(QApplication *app) -> int
run main window
Definition: GpgFrontendUIInit.cpp:188
diff --git a/docs/html/KeyImportDetailDialog_8h_source.html b/docs/html/KeyImportDetailDialog_8h_source.html index f0b82f42..8364f457 100644 --- a/docs/html/KeyImportDetailDialog_8h_source.html +++ b/docs/html/KeyImportDetailDialog_8h_source.html @@ -112,7 +112,7 @@ $(document).ready(function(){initNavTree('KeyImportDetailDialog_8h_source.html',
70 
75  void create_button_box();
76 
-
83  static QString get_status_string(int keyStatus);
+
83  static auto get_status_string(int) -> QString;
84 
85  QTableWidget* keys_table_{};
86  QGroupBox* general_info_box_{};
@@ -124,10 +124,10 @@ $(document).ready(function(){initNavTree('KeyImportDetailDialog_8h_source.html',
92 } // namespace GpgFrontend::UI
GpgFrontend::UI::GeneralDialog
Definition: GeneralDialog.h:35
GpgFrontend::UI::KeyImportDetailDialog
Definition: KeyImportDetailDialog.h:44
+
GpgFrontend::UI::KeyImportDetailDialog::get_status_string
static auto get_status_string(int) -> QString
Get the status string object.
Definition: KeyImportDetailDialog.cpp:162
GpgFrontend::UI::KeyImportDetailDialog::KeyImportDetailDialog
KeyImportDetailDialog(std::shared_ptr< GpgImportInformation > result, QWidget *parent=nullptr)
Construct a new Key Import Detail Dialog object.
Definition: KeyImportDetailDialog.cpp:36
GpgFrontend::UI::KeyImportDetailDialog::create_keys_table
void create_keys_table()
Create a keys table object.
Definition: KeyImportDetailDialog.cpp:130
GpgFrontend::UI::KeyImportDetailDialog::create_button_box
void create_button_box()
Create a button box object.
Definition: KeyImportDetailDialog.cpp:194
-
GpgFrontend::UI::KeyImportDetailDialog::get_status_string
static QString get_status_string(int keyStatus)
Get the status string object.
Definition: KeyImportDetailDialog.cpp:162
GpgFrontend::UI::KeyImportDetailDialog::create_general_info_box
void create_general_info_box()
Create a general info box object.
Definition: KeyImportDetailDialog.cpp:71
GpgFrontend::UI
Definition: FileReadTask.cpp:31
GpgFrontend
Definition: app.cpp:39
diff --git a/docs/html/MainWindow_8h_source.html b/docs/html/MainWindow_8h_source.html index 095a3feb..c284989a 100644 --- a/docs/html/MainWindow_8h_source.html +++ b/docs/html/MainWindow_8h_source.html @@ -359,7 +359,7 @@ $(document).ready(function(){initNavTree('MainWindow_8h_source.html',''); initRe
GpgFrontend::UI::MainWindow::slot_show_key_details
void slot_show_key_details()
Definition: MainWindowSlotFunction.cpp:189
GpgFrontend::UI::MainWindow::create_dock_windows
void create_dock_windows()
Definition: MainWindowUI.cpp:677
GpgFrontend::UI::MainWindow::SlotEncrypt
void SlotEncrypt()
Definition: MainWindowGpgOperaFunction.cpp:46
-
GpgFrontend::UI::MainWindow::Init
void Init() noexcept
Definition: MainWindow.cpp:54
+
GpgFrontend::UI::MainWindow::Init
void Init() noexcept
Definition: MainWindow.cpp:55
GpgFrontend::UI::MainWindow::close_tab_act_
QAction * close_tab_act_
Action to print.
Definition: MainWindow.h:463
GpgFrontend::UI::MainWindow::create_actions
void create_actions()
Definition: MainWindowUI.cpp:41
GpgFrontend::UI::MainWindow::clean_double_line_breaks_act_
QAction * clean_double_line_breaks_act_
Definition: MainWindow.h:472
@@ -368,11 +368,11 @@ $(document).ready(function(){initNavTree('MainWindow_8h_source.html',''); initRe
GpgFrontend::UI::MainWindow::verify_act_
QAction * verify_act_
Action to verify text.
Definition: MainWindow.h:470
GpgFrontend::UI::MainWindow::key_menu_
QMenu * key_menu_
Submenu for key-operations.
Definition: MainWindow.h:435
GpgFrontend::UI::MainWindow::slot_open_key_management
void slot_open_key_management()
Definition: MainWindowSlotUI.cpp:58
-
GpgFrontend::UI::MainWindow::closeEvent
void closeEvent(QCloseEvent *event) override
Definition: MainWindow.cpp:233
+
GpgFrontend::UI::MainWindow::closeEvent
void closeEvent(QCloseEvent *event) override
Definition: MainWindow.cpp:234
GpgFrontend::UI::MainWindow::create_status_bar
void create_status_bar()
Definition: MainWindowUI.cpp:661
GpgFrontend::UI::MainWindow::file_tool_bar_
QToolBar * file_tool_bar_
Toolbar holding file actions.
Definition: MainWindow.h:444
GpgFrontend::UI::MainWindow::crypt_menu_
QMenu * crypt_menu_
Submenu for crypt-operations.
Definition: MainWindow.h:432
-
GpgFrontend::UI::MainWindow::restore_settings
void restore_settings()
Definition: MainWindow.cpp:164
+
GpgFrontend::UI::MainWindow::restore_settings
void restore_settings()
Definition: MainWindow.cpp:165
GpgFrontend::UI::MainWindow::save_as_act_
QAction * save_as_act_
Action to save file as.
Definition: MainWindow.h:461
GpgFrontend::UI::MainWindow::encrypt_sign_act_
QAction * encrypt_sign_act_
Action to encrypt and sign text.
Definition: MainWindow.h:466
GpgFrontend::UI::MainWindow::slot_disable_tab_actions
void slot_disable_tab_actions(int number)
Definition: MainWindowSlotUI.cpp:67
@@ -388,7 +388,7 @@ $(document).ready(function(){initNavTree('MainWindow_8h_source.html',''); initRe
GpgFrontend::UI::MainWindow::browser_act_
QAction * browser_act_
Action to open file browser.
Definition: MainWindow.h:459
GpgFrontend::UI::MainWindow::zoom_in_act_
QAction * zoom_in_act_
Action to zoom in.
Definition: MainWindow.h:504
GpgFrontend::UI::MainWindow::new_tab_act_
QAction * new_tab_act_
Action to create new tab.
Definition: MainWindow.h:455
-
GpgFrontend::UI::MainWindow::close_attachment_dock
void close_attachment_dock()
Definition: MainWindow.cpp:224
+
GpgFrontend::UI::MainWindow::close_attachment_dock
void close_attachment_dock()
Definition: MainWindow.cpp:225
GpgFrontend::UI::MainWindow::open_act_
QAction * open_act_
Action to open file.
Definition: MainWindow.h:458
GpgFrontend::UI::MainWindow::slot_import_key_from_edit
void slot_import_key_from_edit()
Definition: MainWindowSlotUI.cpp:52
GpgFrontend::UI::MainWindow::get_restart_needed
int get_restart_needed() const
return true, if restart is needed
Definition: MainWindowSlotUI.cpp:186
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog-members.html index da81cf73..b1bb085c 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog-members.html @@ -91,7 +91,7 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1AboutDialog. - + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog.html index 5b323201..7c61c733 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1AboutDialog.html @@ -139,9 +139,9 @@ void  - - + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog-members.html index e9637f45..0efc7cfd 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog-members.html @@ -91,7 +91,7 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1ExportKeyPac
AboutDialog(int defaultIndex, QWidget *parent)GpgFrontend::UI::AboutDialogexplicit
GeneralDialog(QString name, QWidget *parent=nullptr)GpgFrontend::UI::GeneralDialogexplicit
isRectRestored() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
isRectRestored() -> bool (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
setPosCenterOfScreen<
void movePosition2CenterOfParent ()
 
-bool isRectRestored ()
 
+auto isRectRestored () -> bool
 
void showEvent (QShowEvent *event) override
 
- + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html index d8125ff3..b9fa1afb 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog.html @@ -146,9 +146,9 @@ void  - - + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog-members.html index 5c21c064..07595187 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog-members.html @@ -90,7 +90,7 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1GeneralDialo

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

ExportKeyPackageDialog(KeyIdArgsListPtr key_ids, QWidget *parent)GpgFrontend::UI::ExportKeyPackageDialogexplicit
GeneralDialog(QString name, QWidget *parent=nullptr)GpgFrontend::UI::GeneralDialogexplicit
isRectRestored() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
isRectRestored() -> bool (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
setPosCenterOfScreen<
void movePosition2CenterOfParent ()
 
-bool isRectRestored ()
 
+auto isRectRestored () -> bool
 
void showEvent (QShowEvent *event) override
 
- + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog.html index 58c806df..5576e001 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog.html @@ -141,9 +141,9 @@ void  - - + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog.js b/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog.js index b6e63096..844763e2 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog.js +++ b/docs/html/classGpgFrontend_1_1UI_1_1GeneralDialog.js @@ -2,7 +2,7 @@ var classGpgFrontend_1_1UI_1_1GeneralDialog = [ [ "GeneralDialog", "classGpgFrontend_1_1UI_1_1GeneralDialog.html#ab300bc30252244b1b11cc24350147942", null ], [ "~GeneralDialog", "classGpgFrontend_1_1UI_1_1GeneralDialog.html#a42043895f4b33acd1531c428ae4deaa8", null ], - [ "isRectRestored", "classGpgFrontend_1_1UI_1_1GeneralDialog.html#ad2d6d4e919b339ee3d7643038d18be7e", null ], + [ "isRectRestored", "classGpgFrontend_1_1UI_1_1GeneralDialog.html#a488618b02dee0cbec129bfe5d7fe8981", 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 ], diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow-members.html b/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow-members.html index 5af9a821..080c0563 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow-members.html @@ -94,11 +94,17 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1GeneralMainW - + + + - - - + + + + + + +
GeneralDialog(QString name, QWidget *parent=nullptr)GpgFrontend::UI::GeneralDialogexplicit
isRectRestored() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
isRectRestored() -> bool (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
setPosCenterOfScreen<
void movePosition2CenterOfParent ()
 
-bool isRectRestored ()
 
+auto isRectRestored () -> bool
 
void showEvent (QShowEvent *event) override
 
GeneralMainWindow(QString name, QWidget *parent=nullptr)GpgFrontend::UI::GeneralMainWindowexplicit
icon_size_ (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprotected
icon_style_ (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprotected
name_ (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprivate
movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprotected
name_ (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprivate
parent_rect_ (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprivate
pos_ (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprivate
size_ (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprivate
slot_restore_settings() noexcept (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprivateslot
slot_save_settings() noexcept (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprivateslot
rect_ (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprivate
screen_rect_ (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprivate
setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprotected
size_ (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprivate
slot_restore_settings() noexcept (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprivateslot
slot_save_settings() noexcept (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprivateslot
update_rect_cache() (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprivateslot
~GeneralMainWindow() override (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindow
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow.html b/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow.html index 9428ae99..ef9fd16f 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow.html @@ -98,9 +98,9 @@ Inheritance diagram for GpgFrontend::UI::GeneralMainWindow:
Inheritance graph
- - - + + +
@@ -109,8 +109,8 @@ Collaboration diagram for GpgFrontend::UI::GeneralMainWindow:
Collaboration graph
- - + +
@@ -123,6 +123,12 @@ Public Member Functions Protected Member Functions + + + +
void closeEvent (QCloseEvent *event) override
 
+void setPosCenterOfScreen ()
 
+void movePosition2CenterOfParent ()
 
@@ -144,6 +150,9 @@ void  + +

Protected Attributes

slot_restore_settings
void slot_save_settings () noexcept
 
+void update_rect_cache ()
 
@@ -156,6 +165,15 @@ QPoint  + + + + + +

Private Attributes

pos_
QSize size_
 
+QRect rect_
 
+QRect screen_rect_
 
+QRect parent_rect_
 

Constructor & Destructor Documentation

diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow.js b/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow.js index b6e2a58b..5f66dbf3 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow.js +++ b/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow.js @@ -3,12 +3,18 @@ var classGpgFrontend_1_1UI_1_1GeneralMainWindow = [ "GeneralMainWindow", "classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a4e70182b431aaf983341527d636f5b67", null ], [ "~GeneralMainWindow", "classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a60f3fab73cb82114b17b10d6ac2f3b1a", null ], [ "closeEvent", "classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#acc10569862d1575d9453d1c1aa539242", null ], + [ "movePosition2CenterOfParent", "classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#aaac4a7ad04031656f74ab8918ad2fc71", null ], + [ "setPosCenterOfScreen", "classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#ab3d8d459b9308512f73cfb537346205e", null ], [ "slot_restore_settings", "classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a42d1bc5a70f0e81cb49c88eb23544255", null ], [ "slot_save_settings", "classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a8ddf641e1266d00cb876ddf786e5ccb8", null ], + [ "update_rect_cache", "classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#aaf099cbbb450a58ca58fbcc05f992853", null ], [ "font_size_", "classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#ab0dd85f0fcbbab2f15eee995458d2dfb", null ], [ "icon_size_", "classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#abb5b9f6dd7aed18f42cea885af85c741", null ], [ "icon_style_", "classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a6ded03c8319326809b09bc90c94e890c", null ], [ "name_", "classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a51a901370b0ca1f3d43dae49e918b541", null ], + [ "parent_rect_", "classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a2e412119ae6fdb00f6a086f4541f9a36", null ], [ "pos_", "classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#ad799871eab498f2e535f52f0082f8b8b", null ], + [ "rect_", "classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#afd7e8d1079c1a6eb50c06ea363765820", null ], + [ "screen_rect_", "classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a9d2b63a02ce434551fff79a465ed6fdb", null ], [ "size_", "classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a5c0bb4c6847846d57ca7524d5f5e4d53", null ] ]; \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow__coll__graph.map index 28c1d79b..ac53f163 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow__coll__graph.map @@ -1,4 +1,4 @@ - - + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow__coll__graph.md5 index e52e897b..3a7ed86f 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow__coll__graph.md5 @@ -1 +1 @@ -c118928b81e81c1c04bc48aadc35c4c5 \ No newline at end of file +873167ec21cacfe11788ed3b139ec89d \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow__coll__graph.png index bb384815..0cea7afc 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow__inherit__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow__inherit__graph.map index f0cc42b9..71af2840 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow__inherit__graph.map @@ -1,6 +1,6 @@ - - - + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow__inherit__graph.md5 index 875deaf4..d42677f3 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow__inherit__graph.md5 @@ -1 +1 @@ -bac4ef8a8d12f5f0a7ae4eaf6246e694 \ No newline at end of file +ead7fb73dd5563acc3ffd0b1a49c6cba \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow__inherit__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow__inherit__graph.png index ab0b904a..cbbc48cb 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow__inherit__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1GeneralMainWindow__inherit__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog-members.html index 0f2e857f..9c91a7f4 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog-members.html @@ -97,7 +97,7 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1GnuPGControl GeneralDialog(QString name, QWidget *parent=nullptr)GpgFrontend::UI::GeneralDialogexplicit get_restart_needed() const -> intGpgFrontend::UI::GnuPGControllerDialogprivate GnuPGControllerDialog(QWidget *parent=nullptr)GpgFrontend::UI::GnuPGControllerDialogexplicit - isRectRestored() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected + isRectRestored() -> bool (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 diff --git a/docs/html/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html index 99155429..dc0ac755 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html @@ -190,9 +190,9 @@ void setPosCenterOfScreen< void movePosition2CenterOfParent ()   - -bool isRectRestored () -  + +auto isRectRestored () -> bool +  void showEvent (QShowEvent *event) override   diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog-members.html index fc6aac28..40c59fc5 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog-members.html @@ -90,7 +90,7 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1KeyDetailsDi

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

- + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog.html index 2c920388..118aaebf 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyDetailsDialog.html @@ -135,9 +135,9 @@ void  - - + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog-members.html index 7e252ae2..15a702ee 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog-members.html @@ -103,7 +103,7 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1KeyGenDialog - + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog.html index a159a438..4dc0993a 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyGenDialog.html @@ -239,9 +239,9 @@ void  - - + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog-members.html index 549912a1..cadb4c89 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog-members.html @@ -95,8 +95,8 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1KeyImportDet - - + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html index 37c00b77..ba782bad 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html @@ -142,9 +142,9 @@ void  - - - + + +
GeneralDialog(QString name, QWidget *parent=nullptr)GpgFrontend::UI::GeneralDialogexplicit
isRectRestored() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
isRectRestored() -> bool (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
setPosCenterOfScreen<
void movePosition2CenterOfParent ()
 
-bool isRectRestored ()
 
+auto isRectRestored () -> bool
 
void showEvent (QShowEvent *event) override
 
gen_subkey_info_ (defined in GpgFrontend::UI::KeyGenDialog)GpgFrontend::UI::KeyGenDialogprivate
GeneralDialog(QString name, QWidget *parent=nullptr)GpgFrontend::UI::GeneralDialogexplicit
generate_key_dialog() (defined in GpgFrontend::UI::KeyGenDialog)GpgFrontend::UI::KeyGenDialogprivate
isRectRestored() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
isRectRestored() -> bool (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
key_size_spin_box_GpgFrontend::UI::KeyGenDialogprivate
key_type_combo_box_GpgFrontend::UI::KeyGenDialogprivate
key_usage_check_boxes_GpgFrontend::UI::KeyGenDialogprivate
setPosCenterOfScreen<
void movePosition2CenterOfParent ()
 
-bool isRectRestored ()
 
+auto isRectRestored () -> bool
 
void showEvent (QShowEvent *event) override
 
create_keys_table()GpgFrontend::UI::KeyImportDetailDialogprivate
general_info_box_ (defined in GpgFrontend::UI::KeyImportDetailDialog)GpgFrontend::UI::KeyImportDetailDialogprivate
GeneralDialog(QString name, QWidget *parent=nullptr)GpgFrontend::UI::GeneralDialogexplicit
get_status_string(int keyStatus)GpgFrontend::UI::KeyImportDetailDialogprivatestatic
isRectRestored() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
get_status_string(int) -> QStringGpgFrontend::UI::KeyImportDetailDialogprivatestatic
isRectRestored() -> bool (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
key_info_box_ (defined in GpgFrontend::UI::KeyImportDetailDialog)GpgFrontend::UI::KeyImportDetailDialogprivate
KeyImportDetailDialog(std::shared_ptr< GpgImportInformation > result, QWidget *parent=nullptr)GpgFrontend::UI::KeyImportDetailDialogexplicit
keys_table_ (defined in GpgFrontend::UI::KeyImportDetailDialog)GpgFrontend::UI::KeyImportDetailDialogprivate

Static Private Member Functions

static QString get_status_string (int keyStatus)
 Get the status string object. More...
 
static auto get_status_string (int) -> QString
 Get the status string object. More...
 
@@ -173,9 +173,9 @@ void  - - + + @@ -230,8 +230,8 @@ void  diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.js b/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.js index 11b59085..27bd8bc4 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.js +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.js @@ -4,7 +4,7 @@ var classGpgFrontend_1_1UI_1_1KeyImportDetailDialog = [ "create_button_box", "classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a9f5912ff99e3820d5fa6a58ed14a70c8", null ], [ "create_general_info_box", "classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#af88ee416b2227ce847a3b8123a23ce24", null ], [ "create_keys_table", "classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a9e37a653a982e671977d2101b72ae3b6", null ], - [ "get_status_string", "classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#ae682853c7eccfd3a6be43765f162f5a4", null ], + [ "get_status_string", "classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a168bea15c50aa5c42601026124fb04f0", null ], [ "button_box_", "classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#affc26751c72e51c702eea3a251f284db", null ], [ "general_info_box_", "classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a8bc7fdc44432686d8b154783b2d156e8", null ], [ "key_info_box_", "classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a1f82af3b6aee0e6e5999b1b146b36938", null ], diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt-members.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt-members.html index 8e3626e1..09dcf19c 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt-members.html @@ -118,25 +118,31 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1KeyMgmt.html - - + + + + + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + +

Private Attributes

setPosCenterOfScreen<
void movePosition2CenterOfParent ()
 
-bool isRectRestored ()
 
+auto isRectRestored () -> bool
 
void showEvent (QShowEvent *event) override
 
showEvent (QShowE

Member Function Documentation

- -

◆ get_status_string()

+ +

◆ get_status_string()

@@ -240,11 +240,11 @@ void 
showEvent (QShowE - + - - + +
QString GpgFrontend::UI::KeyImportDetailDialog::get_status_string auto GpgFrontend::UI::KeyImportDetailDialog::get_status_string ( int keyStatus)key_status) -> QString
key_list_ (defined in GpgFrontend::UI::KeyMgmt)GpgFrontend::UI::KeyMgmtprivate
key_menu_ (defined in GpgFrontend::UI::KeyMgmt)GpgFrontend::UI::KeyMgmtprivate
KeyMgmt(QWidget *parent=nullptr)GpgFrontend::UI::KeyMgmtexplicit
name_ (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprivate
open_key_file_act_GpgFrontend::UI::KeyMgmtprivate
movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprotected
name_ (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprivate
open_key_file_act_GpgFrontend::UI::KeyMgmtprivate
parent_rect_ (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprivate
pos_ (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprivate
rect_ (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprivate
screen_rect_ (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprivate
set_owner_trust_of_key_act_ (defined in GpgFrontend::UI::KeyMgmt)GpgFrontend::UI::KeyMgmtprivate
show_key_details_act_ (defined in GpgFrontend::UI::KeyMgmt)GpgFrontend::UI::KeyMgmtprivate
SignalKeyStatusUpdated() (defined in GpgFrontend::UI::KeyMgmt)GpgFrontend::UI::KeyMgmtsignal
SignalStatusBarChanged(QString) (defined in GpgFrontend::UI::KeyMgmt)GpgFrontend::UI::KeyMgmtsignal
size_ (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprivate
slot_restore_settings() noexcept (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprivateslot
slot_save_settings() noexcept (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprivateslot
SlotDeleteCheckedKeys() (defined in GpgFrontend::UI::KeyMgmt)GpgFrontend::UI::KeyMgmtslot
SlotDeleteSelectedKeys() (defined in GpgFrontend::UI::KeyMgmt)GpgFrontend::UI::KeyMgmtslot
SlotExportAsOpenSSHFormat() (defined in GpgFrontend::UI::KeyMgmt)GpgFrontend::UI::KeyMgmtslot
SlotExportKeyToClipboard() (defined in GpgFrontend::UI::KeyMgmt)GpgFrontend::UI::KeyMgmtslot
SlotExportKeyToKeyPackage() (defined in GpgFrontend::UI::KeyMgmt)GpgFrontend::UI::KeyMgmtslot
SlotGenerateKeyDialog() (defined in GpgFrontend::UI::KeyMgmt)GpgFrontend::UI::KeyMgmtslot
SlotGenerateSubKey() (defined in GpgFrontend::UI::KeyMgmt)GpgFrontend::UI::KeyMgmtslot
SlotImportKeyPackage() (defined in GpgFrontend::UI::KeyMgmt)GpgFrontend::UI::KeyMgmtslot
SlotShowKeyDetails() (defined in GpgFrontend::UI::KeyMgmt)GpgFrontend::UI::KeyMgmtslot
setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprotected
show_key_details_act_ (defined in GpgFrontend::UI::KeyMgmt)GpgFrontend::UI::KeyMgmtprivate
SignalKeyStatusUpdated() (defined in GpgFrontend::UI::KeyMgmt)GpgFrontend::UI::KeyMgmtsignal
SignalStatusBarChanged(QString) (defined in GpgFrontend::UI::KeyMgmt)GpgFrontend::UI::KeyMgmtsignal
size_ (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprivate
slot_restore_settings() noexcept (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprivateslot
slot_save_settings() noexcept (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprivateslot
SlotDeleteCheckedKeys() (defined in GpgFrontend::UI::KeyMgmt)GpgFrontend::UI::KeyMgmtslot
SlotDeleteSelectedKeys() (defined in GpgFrontend::UI::KeyMgmt)GpgFrontend::UI::KeyMgmtslot
SlotExportAsOpenSSHFormat() (defined in GpgFrontend::UI::KeyMgmt)GpgFrontend::UI::KeyMgmtslot
SlotExportKeyToClipboard() (defined in GpgFrontend::UI::KeyMgmt)GpgFrontend::UI::KeyMgmtslot
SlotExportKeyToKeyPackage() (defined in GpgFrontend::UI::KeyMgmt)GpgFrontend::UI::KeyMgmtslot
SlotGenerateKeyDialog() (defined in GpgFrontend::UI::KeyMgmt)GpgFrontend::UI::KeyMgmtslot
SlotGenerateSubKey() (defined in GpgFrontend::UI::KeyMgmt)GpgFrontend::UI::KeyMgmtslot
SlotImportKeyPackage() (defined in GpgFrontend::UI::KeyMgmt)GpgFrontend::UI::KeyMgmtslot
SlotShowKeyDetails() (defined in GpgFrontend::UI::KeyMgmt)GpgFrontend::UI::KeyMgmtslot
update_rect_cache() (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprivateslot
~GeneralMainWindow() override (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindow
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt.html index e8ae0d3f..4dde6241 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt.html @@ -98,9 +98,9 @@ Inheritance diagram for GpgFrontend::UI::KeyMgmt:
Inheritance graph
- - - + + +
@@ -108,24 +108,24 @@ Collaboration diagram for GpgFrontend::UI::KeyMgmt:
Collaboration graph
- - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + +
@@ -269,6 +269,12 @@ Additional Inherited Members + + + + 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 51073a96..595d684d 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__coll__graph.map @@ -1,20 +1,20 @@ - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + 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 fbb4b7ec..e464eb3d 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 @@ -b37c060e4382423cb71e4c7ab46efd78 \ No newline at end of file +0cc30536da31e8a43aba25ae815d2bb6 \ 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 fb4e605f..ab676188 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_1KeyMgmt__inherit__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__inherit__graph.map index 8963b303..b8d21e9c 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__inherit__graph.map @@ -1,5 +1,5 @@ - - - + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__inherit__graph.md5 index 816b47cc..dcd055b8 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__inherit__graph.md5 @@ -1 +1 @@ -71e70def05caae209241176f317ac649 \ No newline at end of file +29c196774407068461330a172fa8d3b3 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__inherit__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__inherit__graph.png index 4c4debc0..6aadb635 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__inherit__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1KeyMgmt__inherit__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 e84d3d2a..3022c028 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog-members.html @@ -96,7 +96,7 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1KeyNewUIDDia - + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html index b2ba8599..cf2f627b 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog.html @@ -178,9 +178,9 @@ void  - - + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog-members.html index e2e49e0a..9a100e35 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog-members.html @@ -97,7 +97,7 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1KeyServerImp - + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html index 4b6541e9..10ba604d 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyServerImportDialog.html @@ -221,9 +221,9 @@ void  - - + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog-members.html index abf40e32..f2014f97 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog-members.html @@ -91,7 +91,7 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1KeySetExpire
- Protected Member Functions inherited from GpgFrontend::UI::GeneralMainWindow
void closeEvent (QCloseEvent *event) override
 
+void setPosCenterOfScreen ()
 
+void movePosition2CenterOfParent ()
 
- Protected Attributes inherited from GpgFrontend::UI::GeneralMainWindow
QSize icon_size_ {}
error_label_ (defined in GpgFrontend::UI::KeyNewUIDDialog)GpgFrontend::UI::KeyNewUIDDialogprivate
error_messages_ (defined in GpgFrontend::UI::KeyNewUIDDialog)GpgFrontend::UI::KeyNewUIDDialogprivate
GeneralDialog(QString name, QWidget *parent=nullptr)GpgFrontend::UI::GeneralDialogexplicit
isRectRestored() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
isRectRestored() -> bool (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
setPosCenterOfScreen<
void movePosition2CenterOfParent ()
 
-bool isRectRestored ()
 
+auto isRectRestored () -> bool
 
void showEvent (QShowEvent *event) override
 
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
isRectRestored() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
isRectRestored() -> bool (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
setPosCenterOfScreen<
void movePosition2CenterOfParent ()
 
-bool isRectRestored ()
 
+auto isRectRestored () -> bool
 
void showEvent (QShowEvent *event) override
 
- + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html index 5bcf6382..a209f233 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog.html @@ -173,9 +173,9 @@ void  - - + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog-members.html index a566df0a..630f43cd 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog-members.html @@ -91,7 +91,7 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1KeyUIDSignDi
GeneralDialog(QString name, QWidget *parent=nullptr)GpgFrontend::UI::GeneralDialogexplicit
init() (defined in GpgFrontend::UI::KeySetExpireDateDialog)GpgFrontend::UI::KeySetExpireDateDialogprivate
isRectRestored() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
isRectRestored() -> bool (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
KeySetExpireDateDialog(const KeyId &key_id, QWidget *parent=nullptr)GpgFrontend::UI::KeySetExpireDateDialogexplicit
KeySetExpireDateDialog(const KeyId &key_id, QString subkey_fpr, QWidget *parent=nullptr)GpgFrontend::UI::KeySetExpireDateDialogexplicit
m_key_ (defined in GpgFrontend::UI::KeySetExpireDateDialog)GpgFrontend::UI::KeySetExpireDateDialogprivate
setPosCenterOfScreen<
void movePosition2CenterOfParent ()
 
-bool isRectRestored ()
 
+auto isRectRestored () -> bool
 
void showEvent (QShowEvent *event) override
 
- + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html index f06d907e..c50b6328 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog.html @@ -179,9 +179,9 @@ void  - - + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog-members.html index 51055762..3fc57aa1 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog-members.html @@ -90,7 +90,7 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1KeyUploadDia

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

expires_edit_ (defined in GpgFrontend::UI::KeyUIDSignDialog)GpgFrontend::UI::KeyUIDSignDialogprivate
GeneralDialog(QString name, QWidget *parent=nullptr)GpgFrontend::UI::GeneralDialogexplicit
isRectRestored() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
isRectRestored() -> bool (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
setPosCenterOfScreen<
void movePosition2CenterOfParent ()
 
-bool isRectRestored ()
 
+auto isRectRestored () -> bool
 
void showEvent (QShowEvent *event) override
 
- + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog.html index 83ea9452..3287d65a 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1KeyUploadDialog.html @@ -157,9 +157,9 @@ void  - - + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1MainWindow-members.html b/docs/html/classGpgFrontend_1_1UI_1_1MainWindow-members.html index d222b88d..99391806 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1MainWindow-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1MainWindow-members.html @@ -152,11 +152,13 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1MainWindow.h - - - - - + + + + + + + @@ -164,78 +166,82 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1MainWindow.h - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1MainWindow.html b/docs/html/classGpgFrontend_1_1UI_1_1MainWindow.html index d1fe8e3d..67bef45f 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1MainWindow.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1MainWindow.html @@ -101,9 +101,9 @@ Inheritance diagram for GpgFrontend::UI::MainWindow:
Inheritance graph
- - - + + +
@@ -111,27 +111,27 @@ Collaboration diagram for GpgFrontend::UI::MainWindow:
Collaboration graph
- - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + +
GeneralDialog(QString name, QWidget *parent=nullptr)GpgFrontend::UI::GeneralDialogexplicit
isRectRestored() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
isRectRestored() -> bool (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
setPosCenterOfScreen<
void movePosition2CenterOfParent ()
 
-bool isRectRestored ()
 
+auto isRectRestored () -> bool
 
void showEvent (QShowEvent *event) override
 
key_tool_bar_GpgFrontend::UI::MainWindowprivate
m_key_list_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
MainWindow() (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindow
name_ (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprivate
new_tab_act_GpgFrontend::UI::MainWindowprivate
open_act_GpgFrontend::UI::MainWindowprivate
open_key_management_act_GpgFrontend::UI::MainWindowprivate
open_settings_act_GpgFrontend::UI::MainWindowprivate
movePosition2CenterOfParent() (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprotected
name_ (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprivate
new_tab_act_GpgFrontend::UI::MainWindowprivate
open_act_GpgFrontend::UI::MainWindowprivate
open_key_management_act_GpgFrontend::UI::MainWindowprivate
open_settings_act_GpgFrontend::UI::MainWindowprivate
parent_rect_ (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprivate
paste_act_GpgFrontend::UI::MainWindowprivate
pos_ (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprivate
print_act_GpgFrontend::UI::MainWindowprivate
quit_act_GpgFrontend::UI::MainWindowprivate
quote_act_GpgFrontend::UI::MainWindowprivate
recover_editor_unsaved_pages_from_cache() (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
redo_act_GpgFrontend::UI::MainWindowprivate
refresh_keys_from_key_server()GpgFrontend::UI::MainWindowprivateslot
reload_components_act_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
remove_key_from_favourtie_act_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
restart_components_act_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
restart_needed_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
restore_settings()GpgFrontend::UI::MainWindowprivate
save_act_GpgFrontend::UI::MainWindowprivate
save_as_act_GpgFrontend::UI::MainWindowprivate
rect_ (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprivate
redo_act_GpgFrontend::UI::MainWindowprivate
refresh_keys_from_key_server()GpgFrontend::UI::MainWindowprivateslot
reload_components_act_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
remove_key_from_favourtie_act_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
restart_components_act_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
restart_needed_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
restore_settings()GpgFrontend::UI::MainWindowprivate
save_act_GpgFrontend::UI::MainWindowprivate
save_as_act_GpgFrontend::UI::MainWindowprivate
screen_rect_ (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprivate
select_all_act_GpgFrontend::UI::MainWindowprivate
set_owner_trust_of_key_act_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
show_key_details_act_GpgFrontend::UI::MainWindowprivate
sign_act_GpgFrontend::UI::MainWindowprivate
SignalKeyDatabaseRefresh() (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowsignal
SignalLoaded() (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowsignal
SignalRestartApplication(int) (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowsignal
SignalUIRefresh() (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowsignal
size_ (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprivate
slot_add_key_2_favourite() (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivateslot
slot_add_pgp_header()GpgFrontend::UI::MainWindowprivateslot
slot_append_keys_create_datetime() (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivateslot
slot_append_keys_expire_datetime() (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivateslot
slot_append_keys_fingerprint() (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivateslot
slot_append_selected_keys()GpgFrontend::UI::MainWindowprivateslot
slot_clean_double_line_breaks()GpgFrontend::UI::MainWindowprivateslot
slot_copy_default_uid_to_clipboard()GpgFrontend::UI::MainWindowprivateslot
slot_copy_key_id_to_clipboard()GpgFrontend::UI::MainWindowprivateslot
slot_copy_mail_address_to_clipboard()GpgFrontend::UI::MainWindowprivateslot
slot_cut_pgp_header()GpgFrontend::UI::MainWindowprivateslot
slot_disable_tab_actions(int number)GpgFrontend::UI::MainWindowprivateslot
slot_find()GpgFrontend::UI::MainWindowprivateslot
slot_import_key_from_edit()GpgFrontend::UI::MainWindowprivateslot
slot_open_file_tab()GpgFrontend::UI::MainWindowprivateslot
slot_open_key_management()GpgFrontend::UI::MainWindowprivateslot
slot_open_settings_dialog()GpgFrontend::UI::MainWindowprivateslot
slot_refresh_current_file_view() (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivateslot
slot_remove_key_from_favourite() (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivateslot
slot_restore_settings() noexcept (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprivateslot
slot_save_settings() noexcept (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprivateslot
slot_set_owner_trust_level_of_key() (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivateslot
slot_show_key_details()GpgFrontend::UI::MainWindowprivateslot
slot_start_wizard()GpgFrontend::UI::MainWindowprivateslot
slot_version_upgrade_nofity()GpgFrontend::UI::MainWindowprivateslot
SlotArchiveDecrypt(const QString &path)GpgFrontend::UI::MainWindowslot
SlotArchiveDecryptVerify(const QString &path)GpgFrontend::UI::MainWindowslot
SlotDecrypt()GpgFrontend::UI::MainWindowslot
SlotDecryptVerify()GpgFrontend::UI::MainWindowslot
SlotDirectoryEncrypt(const QString &) (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowslot
SlotDirectoryEncryptSign(const QString &path)GpgFrontend::UI::MainWindowslot
SlotEncrypt()GpgFrontend::UI::MainWindowslot
SlotEncryptSign()GpgFrontend::UI::MainWindowslot
SlotFileDecrypt(const QString &path)GpgFrontend::UI::MainWindowslot
SlotFileDecryptVerify(const QString &path)GpgFrontend::UI::MainWindowslot
SlotFileEncrypt(const QString &)GpgFrontend::UI::MainWindowslot
SlotFileEncryptSign(const QString &path)GpgFrontend::UI::MainWindowslot
SlotFileSign(const QString &path)GpgFrontend::UI::MainWindowslot
SlotFileVerify(const QString &path)GpgFrontend::UI::MainWindowslot
SlotOpenFile(const QString &path)GpgFrontend::UI::MainWindowslot
SlotRaisePinentry(QSharedPointer< GpgPassphraseContext >)GpgFrontend::UI::MainWindowslot
SlotSetRestartNeeded(int)GpgFrontend::UI::MainWindowslot
SlotSetStatusBarText(const QString &text) (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowslot
SlotSign()GpgFrontend::UI::MainWindowslot
SlotUpdateCryptoMenuStatus(unsigned int type)GpgFrontend::UI::MainWindowslot
SlotVerify()GpgFrontend::UI::MainWindowslot
special_edit_tool_bar_GpgFrontend::UI::MainWindowprivate
start_wizard_act_GpgFrontend::UI::MainWindowprivate
status_bar_icon_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
steganography_menu_GpgFrontend::UI::MainWindowprivate
switch_tab_down_act_GpgFrontend::UI::MainWindowprivate
switch_tab_up_act_GpgFrontend::UI::MainWindowprivate
translate_act_GpgFrontend::UI::MainWindowprivate
undo_act_GpgFrontend::UI::MainWindowprivate
setPosCenterOfScreen() (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprotected
show_key_details_act_GpgFrontend::UI::MainWindowprivate
sign_act_GpgFrontend::UI::MainWindowprivate
SignalKeyDatabaseRefresh() (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowsignal
SignalLoaded() (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowsignal
SignalRestartApplication(int) (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowsignal
SignalUIRefresh() (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowsignal
size_ (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprivate
slot_add_key_2_favourite() (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivateslot
slot_add_pgp_header()GpgFrontend::UI::MainWindowprivateslot
slot_append_keys_create_datetime() (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivateslot
slot_append_keys_expire_datetime() (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivateslot
slot_append_keys_fingerprint() (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivateslot
slot_append_selected_keys()GpgFrontend::UI::MainWindowprivateslot
slot_clean_double_line_breaks()GpgFrontend::UI::MainWindowprivateslot
slot_copy_default_uid_to_clipboard()GpgFrontend::UI::MainWindowprivateslot
slot_copy_key_id_to_clipboard()GpgFrontend::UI::MainWindowprivateslot
slot_copy_mail_address_to_clipboard()GpgFrontend::UI::MainWindowprivateslot
slot_cut_pgp_header()GpgFrontend::UI::MainWindowprivateslot
slot_disable_tab_actions(int number)GpgFrontend::UI::MainWindowprivateslot
slot_find()GpgFrontend::UI::MainWindowprivateslot
slot_import_key_from_edit()GpgFrontend::UI::MainWindowprivateslot
slot_open_file_tab()GpgFrontend::UI::MainWindowprivateslot
slot_open_key_management()GpgFrontend::UI::MainWindowprivateslot
slot_open_settings_dialog()GpgFrontend::UI::MainWindowprivateslot
slot_refresh_current_file_view() (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivateslot
slot_remove_key_from_favourite() (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivateslot
slot_restore_settings() noexcept (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprivateslot
slot_save_settings() noexcept (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprivateslot
slot_set_owner_trust_level_of_key() (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivateslot
slot_show_key_details()GpgFrontend::UI::MainWindowprivateslot
slot_start_wizard()GpgFrontend::UI::MainWindowprivateslot
slot_version_upgrade_nofity()GpgFrontend::UI::MainWindowprivateslot
SlotArchiveDecrypt(const QString &path)GpgFrontend::UI::MainWindowslot
SlotArchiveDecryptVerify(const QString &path)GpgFrontend::UI::MainWindowslot
SlotDecrypt()GpgFrontend::UI::MainWindowslot
SlotDecryptVerify()GpgFrontend::UI::MainWindowslot
SlotDirectoryEncrypt(const QString &) (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowslot
SlotDirectoryEncryptSign(const QString &path)GpgFrontend::UI::MainWindowslot
SlotEncrypt()GpgFrontend::UI::MainWindowslot
SlotEncryptSign()GpgFrontend::UI::MainWindowslot
SlotFileDecrypt(const QString &path)GpgFrontend::UI::MainWindowslot
SlotFileDecryptVerify(const QString &path)GpgFrontend::UI::MainWindowslot
SlotFileEncrypt(const QString &)GpgFrontend::UI::MainWindowslot
SlotFileEncryptSign(const QString &path)GpgFrontend::UI::MainWindowslot
SlotFileSign(const QString &path)GpgFrontend::UI::MainWindowslot
SlotFileVerify(const QString &path)GpgFrontend::UI::MainWindowslot
SlotOpenFile(const QString &path)GpgFrontend::UI::MainWindowslot
SlotRaisePinentry(QSharedPointer< GpgPassphraseContext >)GpgFrontend::UI::MainWindowslot
SlotSetRestartNeeded(int)GpgFrontend::UI::MainWindowslot
SlotSetStatusBarText(const QString &text) (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowslot
SlotSign()GpgFrontend::UI::MainWindowslot
SlotUpdateCryptoMenuStatus(unsigned int type)GpgFrontend::UI::MainWindowslot
SlotVerify()GpgFrontend::UI::MainWindowslot
special_edit_tool_bar_GpgFrontend::UI::MainWindowprivate
start_wizard_act_GpgFrontend::UI::MainWindowprivate
status_bar_icon_ (defined in GpgFrontend::UI::MainWindow)GpgFrontend::UI::MainWindowprivate
steganography_menu_GpgFrontend::UI::MainWindowprivate
switch_tab_down_act_GpgFrontend::UI::MainWindowprivate
switch_tab_up_act_GpgFrontend::UI::MainWindowprivate
translate_act_GpgFrontend::UI::MainWindowprivate
undo_act_GpgFrontend::UI::MainWindowprivate
update_rect_cache() (defined in GpgFrontend::UI::GeneralMainWindow)GpgFrontend::UI::GeneralMainWindowprivateslot
upload_key_to_server()GpgFrontend::UI::MainWindowprivateslot
verify_act_GpgFrontend::UI::MainWindowprivate
view_menu_GpgFrontend::UI::MainWindowprivate
@@ -217,6 +217,12 @@ Protected Member Functions + + + +
- Protected Member Functions inherited from GpgFrontend::UI::GeneralMainWindow
void closeEvent (QCloseEvent *event) override
 
+void setPosCenterOfScreen ()
 
+void movePosition2CenterOfParent ()
 
diff --git a/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.map index 8eb6836a..9ff04762 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.map @@ -1,23 +1,23 @@ - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.md5 index 85627214..34c0a547 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.md5 @@ -1 +1 @@ -4698a983b1c8639cd85d77011aaa3639 \ No newline at end of file +f3419a377cae77cbe9099bf05a0b9e6f \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.png index 7943ebe8..7537dc99 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__inherit__graph.map b/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__inherit__graph.map index 9c48985a..17709cbc 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__inherit__graph.map +++ b/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__inherit__graph.map @@ -1,5 +1,5 @@ - - - + + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__inherit__graph.md5 b/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__inherit__graph.md5 index 38599538..ef8f7e7f 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__inherit__graph.md5 +++ b/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__inherit__graph.md5 @@ -1 +1 @@ -2194e36bb900638b53446166638e9e49 \ No newline at end of file +cd75d7114a459420539b11de6f7e2ef6 \ No newline at end of file diff --git a/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__inherit__graph.png b/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__inherit__graph.png index 0092f9c4..937757d9 100644 Binary files a/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__inherit__graph.png and b/docs/html/classGpgFrontend_1_1UI_1_1MainWindow__inherit__graph.png differ diff --git a/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog-members.html index a712ee41..5499e356 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog-members.html @@ -93,7 +93,7 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1QuitDialog.h - + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog.html index af24cc82..e5f22c20 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1QuitDialog.html @@ -150,9 +150,9 @@ void  - - + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog-members.html index 0547b8b2..081ee132 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog-members.html @@ -94,7 +94,7 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1SettingsDial - + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog.html index cfc9f172..a970606a 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1SettingsDialog.html @@ -213,9 +213,9 @@ void  - - + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker-members.html b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker-members.html index 17514ef3..bc5655d6 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker-members.html @@ -93,7 +93,7 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1SignersPicke - + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker.html b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker.html index 108dd8f9..a4584dc5 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1SignersPicker.html @@ -158,9 +158,9 @@ void  - - + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog-members.html index 0fb50eef..0bf5648a 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog-members.html @@ -97,7 +97,7 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1SubkeyGenera - + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html index cf21564b..2d84c173 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog.html @@ -217,9 +217,9 @@ void  - - + + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog-members.html b/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog-members.html index 61888922..f68d7aee 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog-members.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog-members.html @@ -90,7 +90,7 @@ $(document).ready(function(){initNavTree('classGpgFrontend_1_1UI_1_1WaitingDialo

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

Private Slots

GeneralDialog(QString name, QWidget *parent=nullptr)GpgFrontend::UI::GeneralDialogexplicit
GetTabIdsToSave() -> QList< int >GpgFrontend::UI::QuitDialog
IsDiscarded() const -> boolGpgFrontend::UI::QuitDialog
isRectRestored() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
isRectRestored() -> bool (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
setPosCenterOfScreen<
void movePosition2CenterOfParent ()
 
-bool isRectRestored ()
 
+auto isRectRestored () -> bool
 
void showEvent (QShowEvent *event) override
 
general_tab_ (defined in GpgFrontend::UI::SettingsDialog)GpgFrontend::UI::SettingsDialog
GeneralDialog(QString name, QWidget *parent=nullptr)GpgFrontend::UI::GeneralDialogexplicit
get_restart_needed() constGpgFrontend::UI::SettingsDialogprivate
isRectRestored() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
isRectRestored() -> bool (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
setPosCenterOfScreen<
void movePosition2CenterOfParent ()
 
-bool isRectRestored ()
 
+auto isRectRestored () -> bool
 
void showEvent (QShowEvent *event) override
 
GeneralDialog(QString name, QWidget *parent=nullptr)GpgFrontend::UI::GeneralDialogexplicit
GetCheckedSigners()GpgFrontend::UI::SignersPicker
GetStatus() constGpgFrontend::UI::SignersPicker
isRectRestored() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
isRectRestored() -> bool (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
setPosCenterOfScreen<
void movePosition2CenterOfParent ()
 
-bool isRectRestored ()
 
+auto isRectRestored () -> bool
 
void showEvent (QShowEvent *event) override
 
expire_check_box_GpgFrontend::UI::SubkeyGenerateDialogprivate
gen_key_info_ (defined in GpgFrontend::UI::SubkeyGenerateDialog)GpgFrontend::UI::SubkeyGenerateDialogprivate
GeneralDialog(QString name, QWidget *parent=nullptr)GpgFrontend::UI::GeneralDialogexplicit
isRectRestored() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
isRectRestored() -> bool (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
setPosCenterOfScreen<
void movePosition2CenterOfParent ()
 
-bool isRectRestored ()
 
+auto isRectRestored () -> bool
 
void showEvent (QShowEvent *event) override
 
- + diff --git a/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog.html b/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog.html index f5b4670a..013fcf87 100644 --- a/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog.html +++ b/docs/html/classGpgFrontend_1_1UI_1_1WaitingDialog.html @@ -128,9 +128,9 @@ void  - - + + diff --git a/docs/html/functions_func_g.html b/docs/html/functions_func_g.html index 2ad726e7..68e4f4e4 100644 --- a/docs/html/functions_func_g.html +++ b/docs/html/functions_func_g.html @@ -154,7 +154,7 @@ $(document).ready(function(){initNavTree('functions_func_g.html',''); initResiza : GpgFrontend::UI::KeyPairUIDTab
  • get_status_string() -: GpgFrontend::UI::KeyImportDetailDialog +: GpgFrontend::UI::KeyImportDetailDialog
  • get_uid_checked() : GpgFrontend::UI::KeyPairUIDTab diff --git a/docs/html/functions_g.html b/docs/html/functions_g.html index dceec8f7..c2d7a29b 100644 --- a/docs/html/functions_g.html +++ b/docs/html/functions_g.html @@ -154,7 +154,7 @@ $(document).ready(function(){initNavTree('functions_g.html',''); initResizable() : GpgFrontend::UI::KeyPairUIDTab
  • get_status_string() -: GpgFrontend::UI::KeyImportDetailDialog +: GpgFrontend::UI::KeyImportDetailDialog
  • get_uid_checked() : GpgFrontend::UI::KeyPairUIDTab diff --git a/docs/html/navtreedata.js b/docs/html/navtreedata.js index b56788d9..d7ab841a 100644 --- a/docs/html/navtreedata.js +++ b/docs/html/navtreedata.js @@ -60,12 +60,12 @@ var NAVTREEINDEX = "classGpgFrontend_1_1GpgTOFUInfo.html#a55e9388dce5d0d695844cbbb03db0437", "classGpgFrontend_1_1PassphraseGenerator.html#a19ac4999bbd5fb7e6c42a4aef9606892", "classGpgFrontend_1_1UI_1_1FileTreeView.html#a4a02715e876d9a36b4bbdf505d8ad8a2", -"classGpgFrontend_1_1UI_1_1KeyMgmt.html#ac6b43abecc2477164e4947759fc97237", -"classGpgFrontend_1_1UI_1_1MainWindow.html#a1ddc7e6246dd5065bed0777dca4e6fb6", -"classGpgFrontend_1_1UI_1_1TextEdit.html#a6c814253dfc061bfdae0fa71c6196c55", -"functions_e.html", -"namespaceGpgFrontend_1_1Test.html#a026f0d5f8802ed951e0398781d1aa1b5", -"structGpgFrontend_1_1UI_1_1KeyTable.html#aacf3e9cf2ec39a47033d274ccf35911a" +"classGpgFrontend_1_1UI_1_1KeyMgmt.html#aa10636ab18ccf63bcd3dfa60bdd9cbc7", +"classGpgFrontend_1_1UI_1_1MainWindow.html#a14bb12fa25620e1a93bd23c9f7c84081", +"classGpgFrontend_1_1UI_1_1TextEdit.html#a4a81e69f6dc74ea649ca9a2358342fd5", +"files.html", +"namespaceGpgFrontend_1_1RawAPI.html", +"structGpgFrontend_1_1UI_1_1KeyTable.html#a0719f023069e0f6e29db20b6cd0cf5ea" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/docs/html/navtreeindex10.js b/docs/html/navtreeindex10.js index 3a454eb3..bad7eacd 100644 --- a/docs/html/navtreeindex10.js +++ b/docs/html/navtreeindex10.js @@ -1,5 +1,11 @@ var NAVTREEINDEX10 = { +"namespaceGpgFrontend_1_1RawAPI.html":[1,0,2,1], +"namespaceGpgFrontend_1_1RawAPI.html#a1f2f6c82e9c904c3875a123a65564697":[1,0,2,1,2], +"namespaceGpgFrontend_1_1RawAPI.html#a2e388ecafc7b859eda84b4e3c4e2576f":[1,0,2,1,0], +"namespaceGpgFrontend_1_1RawAPI.html#aa2bc88cf78b8da893f1b5c7e2e8ccf42":[1,0,2,1,1], +"namespaceGpgFrontend_1_1Test.html":[1,0,2,2], +"namespaceGpgFrontend_1_1Test.html#a01e5fea23fce814851e959c4256de226":[1,0,2,2,26], "namespaceGpgFrontend_1_1Test.html#a026f0d5f8802ed951e0398781d1aa1b5":[1,0,2,2,22], "namespaceGpgFrontend_1_1Test.html#a06fdad939bca6dc12c67a46d74855f15":[1,0,2,2,36], "namespaceGpgFrontend_1_1Test.html#a108caf6ea41964e3e4f59152a6e123a6":[1,0,2,2,13], @@ -243,11 +249,5 @@ var NAVTREEINDEX10 = "structGpgFrontend_1_1UI_1_1KeyServerSO.html#af0a58755c2b62dac4695a7dc0d407e0a":[2,0,1,3,46,5], "structGpgFrontend_1_1UI_1_1KeyServerSO.html#af5f83b07717f206a069fae945be9c388":[2,0,1,3,46,4], "structGpgFrontend_1_1UI_1_1KeyServerSO.html#afec2c455b7b57c66a2f034f49ba21105":[2,0,1,3,46,3], -"structGpgFrontend_1_1UI_1_1KeyTable.html":[2,0,1,3,63], -"structGpgFrontend_1_1UI_1_1KeyTable.html#a0719f023069e0f6e29db20b6cd0cf5ea":[2,0,1,3,63,8], -"structGpgFrontend_1_1UI_1_1KeyTable.html#a1560962e3a6eac5f042ba4963f439f15":[2,0,1,3,63,12], -"structGpgFrontend_1_1UI_1_1KeyTable.html#a5bce4bf0dc41ac05390a4f93da8b8985":[2,0,1,3,63,14], -"structGpgFrontend_1_1UI_1_1KeyTable.html#a77eba4055ecb7d32fab06f65b80ae07e":[2,0,1,3,63,3], -"structGpgFrontend_1_1UI_1_1KeyTable.html#a9ef84e0b2d9146b962ca4ca79e7f0e9c":[2,0,1,3,63,2], -"structGpgFrontend_1_1UI_1_1KeyTable.html#aaac381e205c323444098803e0295060f":[2,0,1,3,63,4] +"structGpgFrontend_1_1UI_1_1KeyTable.html":[2,0,1,3,63] }; diff --git a/docs/html/navtreeindex11.js b/docs/html/navtreeindex11.js index 1335c7c6..b6b281c1 100644 --- a/docs/html/navtreeindex11.js +++ b/docs/html/navtreeindex11.js @@ -1,5 +1,11 @@ var NAVTREEINDEX11 = { +"structGpgFrontend_1_1UI_1_1KeyTable.html#a0719f023069e0f6e29db20b6cd0cf5ea":[2,0,1,3,63,8], +"structGpgFrontend_1_1UI_1_1KeyTable.html#a1560962e3a6eac5f042ba4963f439f15":[2,0,1,3,63,12], +"structGpgFrontend_1_1UI_1_1KeyTable.html#a5bce4bf0dc41ac05390a4f93da8b8985":[2,0,1,3,63,14], +"structGpgFrontend_1_1UI_1_1KeyTable.html#a77eba4055ecb7d32fab06f65b80ae07e":[2,0,1,3,63,3], +"structGpgFrontend_1_1UI_1_1KeyTable.html#a9ef84e0b2d9146b962ca4ca79e7f0e9c":[2,0,1,3,63,2], +"structGpgFrontend_1_1UI_1_1KeyTable.html#aaac381e205c323444098803e0295060f":[2,0,1,3,63,4], "structGpgFrontend_1_1UI_1_1KeyTable.html#aacf3e9cf2ec39a47033d274ccf35911a":[2,0,1,3,63,7], "structGpgFrontend_1_1UI_1_1KeyTable.html#ab0aee9ed16af04048f456abddb4dc007":[2,0,1,3,63,16], "structGpgFrontend_1_1UI_1_1KeyTable.html#ab54360c35b11c469d708b5f57030ed41":[2,0,1,3,63,9], diff --git a/docs/html/navtreeindex5.js b/docs/html/navtreeindex5.js index 7f3e57b2..59962388 100644 --- a/docs/html/navtreeindex5.js +++ b/docs/html/navtreeindex5.js @@ -43,6 +43,7 @@ var NAVTREEINDEX5 = "classGpgFrontend_1_1UI_1_1GeneralDialog.html#a22f39850fae58b9f6c59c372b9fbb582":[2,0,1,3,2,11], "classGpgFrontend_1_1UI_1_1GeneralDialog.html#a34d01f247eee92017a2eccf697cda080":[2,0,1,3,2,6], "classGpgFrontend_1_1UI_1_1GeneralDialog.html#a42043895f4b33acd1531c428ae4deaa8":[2,0,1,3,2,1], +"classGpgFrontend_1_1UI_1_1GeneralDialog.html#a488618b02dee0cbec129bfe5d7fe8981":[2,0,1,3,2,2], "classGpgFrontend_1_1UI_1_1GeneralDialog.html#a4e4eb414ac80ba7dd1e853ed62e1ee68":[2,0,1,3,2,12], "classGpgFrontend_1_1UI_1_1GeneralDialog.html#a570c723ba0cb5522f2b0c16ac28d0532":[2,0,1,3,2,5], "classGpgFrontend_1_1UI_1_1GeneralDialog.html#a702e62aaf5eb38c7cc56cf5fb7f29383":[2,0,1,3,2,9], @@ -52,20 +53,25 @@ var NAVTREEINDEX5 = "classGpgFrontend_1_1UI_1_1GeneralDialog.html#ab92573b0e63d9c792f2e1697d858cea7":[2,0,1,3,2,10], "classGpgFrontend_1_1UI_1_1GeneralDialog.html#abad7cff23d2426820e320ecea47b479c":[2,0,1,3,2,4], "classGpgFrontend_1_1UI_1_1GeneralDialog.html#ad1f20151e9556a3c481fda89cf88e585":[2,0,1,3,2,8], -"classGpgFrontend_1_1UI_1_1GeneralDialog.html#ad2d6d4e919b339ee3d7643038d18be7e":[2,0,1,3,2,2], "classGpgFrontend_1_1UI_1_1GeneralDialog.html#ad9d5be542aa422450a96dff00232ebe5":[2,0,1,3,2,3], "classGpgFrontend_1_1UI_1_1GeneralMainWindow.html":[2,0,1,3,41], -"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a42d1bc5a70f0e81cb49c88eb23544255":[2,0,1,3,41,3], +"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a2e412119ae6fdb00f6a086f4541f9a36":[2,0,1,3,41,12], +"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a42d1bc5a70f0e81cb49c88eb23544255":[2,0,1,3,41,5], "classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a4e70182b431aaf983341527d636f5b67":[2,0,1,3,41,0], -"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a51a901370b0ca1f3d43dae49e918b541":[2,0,1,3,41,8], -"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a5c0bb4c6847846d57ca7524d5f5e4d53":[2,0,1,3,41,10], +"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a51a901370b0ca1f3d43dae49e918b541":[2,0,1,3,41,11], +"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a5c0bb4c6847846d57ca7524d5f5e4d53":[2,0,1,3,41,16], "classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a60f3fab73cb82114b17b10d6ac2f3b1a":[2,0,1,3,41,1], -"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a6ded03c8319326809b09bc90c94e890c":[2,0,1,3,41,7], -"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a8ddf641e1266d00cb876ddf786e5ccb8":[2,0,1,3,41,4], -"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#ab0dd85f0fcbbab2f15eee995458d2dfb":[2,0,1,3,41,5], -"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#abb5b9f6dd7aed18f42cea885af85c741":[2,0,1,3,41,6], +"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a6ded03c8319326809b09bc90c94e890c":[2,0,1,3,41,10], +"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a8ddf641e1266d00cb876ddf786e5ccb8":[2,0,1,3,41,6], +"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#a9d2b63a02ce434551fff79a465ed6fdb":[2,0,1,3,41,15], +"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#aaac4a7ad04031656f74ab8918ad2fc71":[2,0,1,3,41,3], +"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#aaf099cbbb450a58ca58fbcc05f992853":[2,0,1,3,41,7], +"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#ab0dd85f0fcbbab2f15eee995458d2dfb":[2,0,1,3,41,8], +"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#ab3d8d459b9308512f73cfb537346205e":[2,0,1,3,41,4], +"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#abb5b9f6dd7aed18f42cea885af85c741":[2,0,1,3,41,9], "classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#acc10569862d1575d9453d1c1aa539242":[2,0,1,3,41,2], -"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#ad799871eab498f2e535f52f0082f8b8b":[2,0,1,3,41,9], +"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#ad799871eab498f2e535f52f0082f8b8b":[2,0,1,3,41,13], +"classGpgFrontend_1_1UI_1_1GeneralMainWindow.html#afd7e8d1079c1a6eb50c06ea363765820":[2,0,1,3,41,14], "classGpgFrontend_1_1UI_1_1GeneralTab.html":[2,0,1,3,26], "classGpgFrontend_1_1UI_1_1GeneralTab.html#a214079dfbacdc6898146c8468611cf0c":[2,0,1,3,26,0], "classGpgFrontend_1_1UI_1_1GeneralTab.html#a2af085877a396b6a4f857b9b8fb88969":[2,0,1,3,26,6], @@ -172,6 +178,7 @@ var NAVTREEINDEX5 = "classGpgFrontend_1_1UI_1_1KeyGenPage.html#a28958f6627f01db7c6f75fc0dec3eead":[2,0,1,3,34,1], "classGpgFrontend_1_1UI_1_1KeyGenPage.html#a8b757ec603524d53307278110cece2bd":[2,0,1,3,34,2], "classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html":[2,0,1,3,10], +"classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a168bea15c50aa5c42601026124fb04f0":[2,0,1,3,10,4], "classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a1f82af3b6aee0e6e5999b1b146b36938":[2,0,1,3,10,7], "classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a2abf6522dd8c254074d9174fcde1d2be":[2,0,1,3,10,8], "classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a43107640e606d1378f401109fad9547e":[2,0,1,3,10,9], @@ -179,7 +186,6 @@ var NAVTREEINDEX5 = "classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a93cb4a357b44060c5eee9186bd33e7af":[2,0,1,3,10,0], "classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a9e37a653a982e671977d2101b72ae3b6":[2,0,1,3,10,3], "classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a9f5912ff99e3820d5fa6a58ed14a70c8":[2,0,1,3,10,1], -"classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#ae682853c7eccfd3a6be43765f162f5a4":[2,0,1,3,10,4], "classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#af88ee416b2227ce847a3b8123a23ce24":[2,0,1,3,10,2], "classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#affc26751c72e51c702eea3a251f284db":[2,0,1,3,10,5], "classGpgFrontend_1_1UI_1_1KeyList.html":[2,0,1,3,64], @@ -243,11 +249,5 @@ var NAVTREEINDEX5 = "classGpgFrontend_1_1UI_1_1KeyMgmt.html#a7623fa63b3c24ee86d923b434dee9c7f":[2,0,1,3,42,33], "classGpgFrontend_1_1UI_1_1KeyMgmt.html#a876e257c8d8bb7e47ceb70e1da4f9da7":[2,0,1,3,42,35], "classGpgFrontend_1_1UI_1_1KeyMgmt.html#a905d55ac2c7de8579db9f5a7b91a0abf":[2,0,1,3,42,15], -"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a9ec2dc6b623617496aa934a45256d695":[2,0,1,3,42,20], -"classGpgFrontend_1_1UI_1_1KeyMgmt.html#aa10636ab18ccf63bcd3dfa60bdd9cbc7":[2,0,1,3,42,12], -"classGpgFrontend_1_1UI_1_1KeyMgmt.html#aa5cd08927c720e1d545149e8318559c8":[2,0,1,3,42,14], -"classGpgFrontend_1_1UI_1_1KeyMgmt.html#ab06b65fbb2581eb1245d45273ed3885a":[2,0,1,3,42,13], -"classGpgFrontend_1_1UI_1_1KeyMgmt.html#ab3698ef93ee48a949915f205452f8743":[2,0,1,3,42,16], -"classGpgFrontend_1_1UI_1_1KeyMgmt.html#abf0f05743185c40b3cd0936ddccf8f9d":[2,0,1,3,42,22], -"classGpgFrontend_1_1UI_1_1KeyMgmt.html#ac06a816b6898b4d3e0c7a74bc7b4f4be":[2,0,1,3,42,17] +"classGpgFrontend_1_1UI_1_1KeyMgmt.html#a9ec2dc6b623617496aa934a45256d695":[2,0,1,3,42,20] }; diff --git a/docs/html/navtreeindex6.js b/docs/html/navtreeindex6.js index e708a0d3..74f057fd 100644 --- a/docs/html/navtreeindex6.js +++ b/docs/html/navtreeindex6.js @@ -1,5 +1,11 @@ var NAVTREEINDEX6 = { +"classGpgFrontend_1_1UI_1_1KeyMgmt.html#aa10636ab18ccf63bcd3dfa60bdd9cbc7":[2,0,1,3,42,12], +"classGpgFrontend_1_1UI_1_1KeyMgmt.html#aa5cd08927c720e1d545149e8318559c8":[2,0,1,3,42,14], +"classGpgFrontend_1_1UI_1_1KeyMgmt.html#ab06b65fbb2581eb1245d45273ed3885a":[2,0,1,3,42,13], +"classGpgFrontend_1_1UI_1_1KeyMgmt.html#ab3698ef93ee48a949915f205452f8743":[2,0,1,3,42,16], +"classGpgFrontend_1_1UI_1_1KeyMgmt.html#abf0f05743185c40b3cd0936ddccf8f9d":[2,0,1,3,42,22], +"classGpgFrontend_1_1UI_1_1KeyMgmt.html#ac06a816b6898b4d3e0c7a74bc7b4f4be":[2,0,1,3,42,17], "classGpgFrontend_1_1UI_1_1KeyMgmt.html#ac6b43abecc2477164e4947759fc97237":[2,0,1,3,42,24], "classGpgFrontend_1_1UI_1_1KeyMgmt.html#aca369a078ec127d150a466d9b2b219c2":[2,0,1,3,42,8], "classGpgFrontend_1_1UI_1_1KeyMgmt.html#acadb7692e422ca8efac192604d875457":[2,0,1,3,42,29], @@ -243,11 +249,5 @@ var NAVTREEINDEX6 = "classGpgFrontend_1_1UI_1_1MainWindow.html#a0ab96012df041f2c2e47092db0600355":[2,0,1,3,43,4], "classGpgFrontend_1_1UI_1_1MainWindow.html#a0cb094e0409337cfd7dba1bb510ea96e":[2,0,1,3,43,75], "classGpgFrontend_1_1UI_1_1MainWindow.html#a0cded37ef6e07856bbe439b0e90db839":[2,0,1,3,43,131], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a0e9920cf0fc974ac2f70d3f039f009f2":[2,0,1,3,43,141], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a14bb12fa25620e1a93bd23c9f7c84081":[2,0,1,3,43,140], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a16bbfd12cd3a6f0df9e2c32cf7999e57":[2,0,1,3,43,109], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a16ddebec90a4bd0d13baa9d972c3445f":[2,0,1,3,43,34], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a1759412cb7ee71600c4b6e3c6e752d2e":[2,0,1,3,43,3], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a19d24772c88b55070f139b97806c10ca":[2,0,1,3,43,124], -"classGpgFrontend_1_1UI_1_1MainWindow.html#a1ab1f3f57f9969447491e63f54420585":[2,0,1,3,43,8] +"classGpgFrontend_1_1UI_1_1MainWindow.html#a0e9920cf0fc974ac2f70d3f039f009f2":[2,0,1,3,43,141] }; diff --git a/docs/html/navtreeindex7.js b/docs/html/navtreeindex7.js index 1da088be..79e817f6 100644 --- a/docs/html/navtreeindex7.js +++ b/docs/html/navtreeindex7.js @@ -1,5 +1,11 @@ var NAVTREEINDEX7 = { +"classGpgFrontend_1_1UI_1_1MainWindow.html#a14bb12fa25620e1a93bd23c9f7c84081":[2,0,1,3,43,140], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a16bbfd12cd3a6f0df9e2c32cf7999e57":[2,0,1,3,43,109], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a16ddebec90a4bd0d13baa9d972c3445f":[2,0,1,3,43,34], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a1759412cb7ee71600c4b6e3c6e752d2e":[2,0,1,3,43,3], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a19d24772c88b55070f139b97806c10ca":[2,0,1,3,43,124], +"classGpgFrontend_1_1UI_1_1MainWindow.html#a1ab1f3f57f9969447491e63f54420585":[2,0,1,3,43,8], "classGpgFrontend_1_1UI_1_1MainWindow.html#a1ddc7e6246dd5065bed0777dca4e6fb6":[2,0,1,3,43,123], "classGpgFrontend_1_1UI_1_1MainWindow.html#a1e0d23d361b8e339ca85410db2bdfb64":[2,0,1,3,43,94], "classGpgFrontend_1_1UI_1_1MainWindow.html#a1e7923dacd93eb498d8532bb887739b0":[2,0,1,3,43,69], @@ -243,11 +249,5 @@ var NAVTREEINDEX7 = "classGpgFrontend_1_1UI_1_1TextEdit.html#a32327f592965d8922eb7095af117336d":[2,0,1,3,66,35], "classGpgFrontend_1_1UI_1_1TextEdit.html#a3599bd01636a873cf3437ab6b9d38780":[2,0,1,3,66,12], "classGpgFrontend_1_1UI_1_1TextEdit.html#a3c17fdf3abf9c4fb6ce35cfb8f0f8fc4":[2,0,1,3,66,18], -"classGpgFrontend_1_1UI_1_1TextEdit.html#a48351dc1529da3b8da311f65b735b5f1":[2,0,1,3,66,14], -"classGpgFrontend_1_1UI_1_1TextEdit.html#a4a81e69f6dc74ea649ca9a2358342fd5":[2,0,1,3,66,33], -"classGpgFrontend_1_1UI_1_1TextEdit.html#a576e06390e65576465297d2ab8d7d474":[2,0,1,3,66,31], -"classGpgFrontend_1_1UI_1_1TextEdit.html#a57a46ab5595622ae0b7bceef7d56bd7c":[2,0,1,3,66,19], -"classGpgFrontend_1_1UI_1_1TextEdit.html#a60c73cc66a48a38c13e7890de49e86c3":[2,0,1,3,66,22], -"classGpgFrontend_1_1UI_1_1TextEdit.html#a66b6f6633e7ac71e5fe8b7814a81cadf":[2,0,1,3,66,6], -"classGpgFrontend_1_1UI_1_1TextEdit.html#a6a02fce9dc4039c982d6dd19231517ee":[2,0,1,3,66,25] +"classGpgFrontend_1_1UI_1_1TextEdit.html#a48351dc1529da3b8da311f65b735b5f1":[2,0,1,3,66,14] }; diff --git a/docs/html/navtreeindex8.js b/docs/html/navtreeindex8.js index 5aa3cd9b..96bf65b6 100644 --- a/docs/html/navtreeindex8.js +++ b/docs/html/navtreeindex8.js @@ -1,5 +1,11 @@ var NAVTREEINDEX8 = { +"classGpgFrontend_1_1UI_1_1TextEdit.html#a4a81e69f6dc74ea649ca9a2358342fd5":[2,0,1,3,66,33], +"classGpgFrontend_1_1UI_1_1TextEdit.html#a576e06390e65576465297d2ab8d7d474":[2,0,1,3,66,31], +"classGpgFrontend_1_1UI_1_1TextEdit.html#a57a46ab5595622ae0b7bceef7d56bd7c":[2,0,1,3,66,19], +"classGpgFrontend_1_1UI_1_1TextEdit.html#a60c73cc66a48a38c13e7890de49e86c3":[2,0,1,3,66,22], +"classGpgFrontend_1_1UI_1_1TextEdit.html#a66b6f6633e7ac71e5fe8b7814a81cadf":[2,0,1,3,66,6], +"classGpgFrontend_1_1UI_1_1TextEdit.html#a6a02fce9dc4039c982d6dd19231517ee":[2,0,1,3,66,25], "classGpgFrontend_1_1UI_1_1TextEdit.html#a6c814253dfc061bfdae0fa71c6196c55":[2,0,1,3,66,29], "classGpgFrontend_1_1UI_1_1TextEdit.html#a72014409d407c161b048e07c061b4cf9":[2,0,1,3,66,13], "classGpgFrontend_1_1UI_1_1TextEdit.html#a725048d1c6de8ed7ba29062afa72767b":[2,0,1,3,66,40], @@ -243,11 +249,5 @@ var NAVTREEINDEX8 = "dir_f3911b9629b0e27ea480d06d47573cbf.html":[3,0,0,4,5], "dir_f8a0abd6d3586538a5b71803e0ab7ffa.html":[3,0,0,0,0], "dir_fc6c58bf49530122ab17df13a9869378.html":[3,0,0,0,0,2], -"dir_fd71accbf528c1576ca21e7ec5716833.html":[3,0,0,0,4], -"files.html":[3,0], -"functions.html":[2,3,0], -"functions.html":[2,3,0,0], -"functions_b.html":[2,3,0,1], -"functions_c.html":[2,3,0,2], -"functions_d.html":[2,3,0,3] +"dir_fd71accbf528c1576ca21e7ec5716833.html":[3,0,0,0,4] }; diff --git a/docs/html/navtreeindex9.js b/docs/html/navtreeindex9.js index de908278..14ed9028 100644 --- a/docs/html/navtreeindex9.js +++ b/docs/html/navtreeindex9.js @@ -1,9 +1,15 @@ var NAVTREEINDEX9 = { +"files.html":[3,0], +"functions.html":[2,3,0], +"functions.html":[2,3,0,0], +"functions_b.html":[2,3,0,1], +"functions_c.html":[2,3,0,2], +"functions_d.html":[2,3,0,3], "functions_e.html":[2,3,0,4], "functions_f.html":[2,3,0,5], -"functions_func.html":[2,3,1], "functions_func.html":[2,3,1,0], +"functions_func.html":[2,3,1], "functions_func_c.html":[2,3,1,1], "functions_func_d.html":[2,3,1,2], "functions_func_e.html":[2,3,1,3], @@ -45,8 +51,8 @@ var NAVTREEINDEX9 = "functions_z.html":[2,3,0,22], "functions_~.html":[2,3,0,23], "hierarchy.html":[2,2], -"index.html":[0], "index.html":[], +"index.html":[0], "init_8h_source.html":[3,0,0,8], "integrated_2gnupg__info__gathering__module_2GpgFrontendModuleExport_8h_source.html":[3,0,0,1,0,0,1], "integrated_2version__checking__module_2GpgFrontendModuleExport_8h_source.html":[3,0,0,1,0,1,0], @@ -243,11 +249,5 @@ var NAVTREEINDEX9 = "namespaceGpgFrontend_1_1Module_1_1SDK.html#a6a1dff88f1da053117d0614c0f94e52c":[1,0,2,0,1,2], "namespaceGpgFrontend_1_1Module_1_1SDK.html#a77f3de0edd4f66611431addcdc69e4c1":[1,0,2,0,1,3], "namespaceGpgFrontend_1_1Module_1_1SDK.html#ab16a035830f089a32f873bb4c61b420f":[1,0,2,0,1,4], -"namespaceGpgFrontend_1_1Module_1_1SDK.html#acee0c8da2a824cc7c5eef423fefa5840":[1,0,2,0,1,1], -"namespaceGpgFrontend_1_1RawAPI.html":[1,0,2,1], -"namespaceGpgFrontend_1_1RawAPI.html#a1f2f6c82e9c904c3875a123a65564697":[1,0,2,1,2], -"namespaceGpgFrontend_1_1RawAPI.html#a2e388ecafc7b859eda84b4e3c4e2576f":[1,0,2,1,0], -"namespaceGpgFrontend_1_1RawAPI.html#aa2bc88cf78b8da893f1b5c7e2e8ccf42":[1,0,2,1,1], -"namespaceGpgFrontend_1_1Test.html":[1,0,2,2], -"namespaceGpgFrontend_1_1Test.html#a01e5fea23fce814851e959c4256de226":[1,0,2,2,26] +"namespaceGpgFrontend_1_1Module_1_1SDK.html#acee0c8da2a824cc7c5eef423fefa5840":[1,0,2,0,1,1] }; diff --git a/docs/html/search/all_6.js b/docs/html/search/all_6.js index 33975bdc..058803aa 100644 --- a/docs/html/search/all_6.js +++ b/docs/html/search/all_6.js @@ -24,7 +24,7 @@ var searchData= ['get_5frestart_5fneeded_205',['get_restart_needed',['../classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html#a67c4bc7a4e0d76c610267b86612ba5b6',1,'GpgFrontend::UI::GnuPGControllerDialog::get_restart_needed()'],['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#a2ca2325a0dd0764cb6b5c2a7e35ba408',1,'GpgFrontend::UI::SettingsDialog::get_restart_needed()'],['../classGpgFrontend_1_1UI_1_1MainWindow.html#a5e95f62dac9fba1ead6ec69c145923db',1,'GpgFrontend::UI::MainWindow::get_restart_needed()']]], ['get_5fselected_5fsubkey_206',['get_selected_subkey',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#aa757320412a0a904bcbd2d6ee536c744',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], ['get_5fsign_5fselected_207',['get_sign_selected',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#ab090e19189ae4f03ab43f9a300b906f0',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['get_5fstatus_5fstring_208',['get_status_string',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#ae682853c7eccfd3a6be43765f162f5a4',1,'GpgFrontend::UI::KeyImportDetailDialog']]], + ['get_5fstatus_5fstring_208',['get_status_string',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a168bea15c50aa5c42601026124fb04f0',1,'GpgFrontend::UI::KeyImportDetailDialog']]], ['get_5fuid_5fchecked_209',['get_uid_checked',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#ae8830624dd1e06f83cde4a1d9750aa85',1,'GpgFrontend::UI::KeyPairUIDTab']]], ['get_5fuid_5fselected_210',['get_uid_selected',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a88c454f97ba4bd140e23c8ff1054eff5',1,'GpgFrontend::UI::KeyPairUIDTab']]], ['getalgo_211',['GetAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#aadafd2fa289a5b8e69e03c5b2deeacd6',1,'GpgFrontend::GenKeyInfo']]], diff --git a/docs/html/search/functions_6.js b/docs/html/search/functions_6.js index 8f72e332..4aa8df48 100644 --- a/docs/html/search/functions_6.js +++ b/docs/html/search/functions_6.js @@ -22,7 +22,7 @@ var searchData= ['get_5frestart_5fneeded_1164',['get_restart_needed',['../classGpgFrontend_1_1UI_1_1MainWindow.html#a5e95f62dac9fba1ead6ec69c145923db',1,'GpgFrontend::UI::MainWindow::get_restart_needed()'],['../classGpgFrontend_1_1UI_1_1SettingsDialog.html#a2ca2325a0dd0764cb6b5c2a7e35ba408',1,'GpgFrontend::UI::SettingsDialog::get_restart_needed()'],['../classGpgFrontend_1_1UI_1_1GnuPGControllerDialog.html#a67c4bc7a4e0d76c610267b86612ba5b6',1,'GpgFrontend::UI::GnuPGControllerDialog::get_restart_needed()']]], ['get_5fselected_5fsubkey_1165',['get_selected_subkey',['../classGpgFrontend_1_1UI_1_1KeyPairSubkeyTab.html#aa757320412a0a904bcbd2d6ee536c744',1,'GpgFrontend::UI::KeyPairSubkeyTab']]], ['get_5fsign_5fselected_1166',['get_sign_selected',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#ab090e19189ae4f03ab43f9a300b906f0',1,'GpgFrontend::UI::KeyPairUIDTab']]], - ['get_5fstatus_5fstring_1167',['get_status_string',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#ae682853c7eccfd3a6be43765f162f5a4',1,'GpgFrontend::UI::KeyImportDetailDialog']]], + ['get_5fstatus_5fstring_1167',['get_status_string',['../classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.html#a168bea15c50aa5c42601026124fb04f0',1,'GpgFrontend::UI::KeyImportDetailDialog']]], ['get_5fuid_5fchecked_1168',['get_uid_checked',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#ae8830624dd1e06f83cde4a1d9750aa85',1,'GpgFrontend::UI::KeyPairUIDTab']]], ['get_5fuid_5fselected_1169',['get_uid_selected',['../classGpgFrontend_1_1UI_1_1KeyPairUIDTab.html#a88c454f97ba4bd140e23c8ff1054eff5',1,'GpgFrontend::UI::KeyPairUIDTab']]], ['getalgo_1170',['GetAlgo',['../classGpgFrontend_1_1GenKeyInfo.html#aadafd2fa289a5b8e69e03c5b2deeacd6',1,'GpgFrontend::GenKeyInfo']]], diff --git a/docs/latex/classCapsLockWatcher_1_1Private__coll__graph.pdf b/docs/latex/classCapsLockWatcher_1_1Private__coll__graph.pdf index f4c97b8e..e0276822 100644 Binary files a/docs/latex/classCapsLockWatcher_1_1Private__coll__graph.pdf and b/docs/latex/classCapsLockWatcher_1_1Private__coll__graph.pdf differ diff --git a/docs/latex/classCapsLockWatcher__coll__graph.pdf b/docs/latex/classCapsLockWatcher__coll__graph.pdf index 22524fa3..513f0019 100644 Binary files a/docs/latex/classCapsLockWatcher__coll__graph.pdf and b/docs/latex/classCapsLockWatcher__coll__graph.pdf differ diff --git a/docs/latex/classCapsLockWatcher__inherit__graph.pdf b/docs/latex/classCapsLockWatcher__inherit__graph.pdf index 13f35f45..1bb22127 100644 Binary files a/docs/latex/classCapsLockWatcher__inherit__graph.pdf and b/docs/latex/classCapsLockWatcher__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1ArchiveFileOperator__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1ArchiveFileOperator__coll__graph.pdf index 50cea56e..cc230603 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_1_1Impl__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1CacheManager_1_1Impl__coll__graph.pdf index 29bfd7bb..4c846dc8 100644 Binary files a/docs/latex/classGpgFrontend_1_1CacheManager_1_1Impl__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1CacheManager_1_1Impl__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1CacheManager_1_1Impl__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1CacheManager_1_1Impl__inherit__graph.pdf index 32cc8d32..2897175f 100644 Binary files a/docs/latex/classGpgFrontend_1_1CacheManager_1_1Impl__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1CacheManager_1_1Impl__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1CacheManager__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1CacheManager__coll__graph.pdf index 477207f8..f72146de 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 477207f8..f72146de 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 03d86c42..189b6ddd 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.pdf b/docs/latex/classGpgFrontend_1_1ChannelObject__inherit__graph.pdf index 8a935199..4c494605 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_1CoreSignalStation__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1CoreSignalStation__coll__graph.pdf index eafc3b9b..6268c93e 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 252e4c86..5ed7d280 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 779e4384..b65fe22a 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 ad22a2ac..cee4d673 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_1DataObject_1_1Impl__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1DataObject_1_1Impl__coll__graph.pdf index 81b27ccc..795c161c 100644 Binary files a/docs/latex/classGpgFrontend_1_1DataObject_1_1Impl__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1DataObject_1_1Impl__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1DataObject__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1DataObject__coll__graph.pdf index 74ca6aec..c3343d49 100644 Binary files a/docs/latex/classGpgFrontend_1_1DataObject__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1DataObject__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GFBuffer__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GFBuffer__coll__graph.pdf index c1383878..6b07cb6d 100644 Binary files a/docs/latex/classGpgFrontend_1_1GFBuffer__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GFBuffer__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GFDataExchanger__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GFDataExchanger__coll__graph.pdf index 370778fb..6286d0f6 100644 Binary files a/docs/latex/classGpgFrontend_1_1GFDataExchanger__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GFDataExchanger__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 030aec15..5250529e 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_1_1Impl__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GlobalSettingStation_1_1Impl__coll__graph.pdf index d10ab3c4..6b1612d0 100644 Binary files a/docs/latex/classGpgFrontend_1_1GlobalSettingStation_1_1Impl__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GlobalSettingStation_1_1Impl__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 392d9f46..2715f2db 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 392d9f46..2715f2db 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 1cc44bdd..4f675043 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_1GpgBasicOperator__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgBasicOperator__coll__graph.pdf index 0688df56..f441fe98 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 9c324e29..4ab16371 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgBasicOperator__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgBasicOperator__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgCommandExecutor__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgCommandExecutor__coll__graph.pdf index 00bcccbd..8742463c 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_1GpgContext_1_1Impl__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgContext_1_1Impl__coll__graph.pdf index 23b09f36..0fe5672e 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgContext_1_1Impl__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgContext_1_1Impl__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 6ee660eb..69165ff9 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 6ee660eb..69165ff9 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 4d25a78a..ec4eff83 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 56ee762c..fcf7248a 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 aad76f4c..be71da94 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_1GpgDecryptResult__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgDecryptResult__coll__graph.pdf index 470167ab..4c7182ac 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgDecryptResult__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgDecryptResult__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgEncryptResultAnalyse__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgEncryptResultAnalyse__coll__graph.pdf index 03f98182..2b7616be 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 8fded479..18832e54 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_1GpgEncryptResult__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgEncryptResult__coll__graph.pdf index 5f1c2ced..97c5522a 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgEncryptResult__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgEncryptResult__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgFileOpera__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgFileOpera__coll__graph.pdf index 6ff1443e..c10b7f3a 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 124ec7a7..817e2ed8 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_1GpgGenerateKeyResult__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgGenerateKeyResult__coll__graph.pdf index f2159fbc..36dc0374 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgGenerateKeyResult__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgGenerateKeyResult__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgImportInformation_1_1GpgImportedKey__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgImportInformation_1_1GpgImportedKey__coll__graph.pdf index 3bc2e45c..8c7e7e08 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgImportInformation_1_1GpgImportedKey__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgImportInformation_1_1GpgImportedKey__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgImportInformation__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgImportInformation__coll__graph.pdf index 9d8f1c66..45d41833 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_1GpgKeyGetter_1_1Impl__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgKeyGetter_1_1Impl__coll__graph.pdf index 80c9a1b3..0bea0335 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgKeyGetter_1_1Impl__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgKeyGetter_1_1Impl__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyGetter_1_1Impl__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgKeyGetter_1_1Impl__inherit__graph.pdf index d1bf4664..30e6916b 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgKeyGetter_1_1Impl__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgKeyGetter_1_1Impl__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyGetter__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgKeyGetter__coll__graph.pdf index f3100bb8..2268ecbf 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 f3100bb8..2268ecbf 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 b3d2cb04..0fea41e0 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 7cdfad3b..634d89c2 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 68cad12f..5d525c92 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 e4fef552..8babaa51 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgKeyManager__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgKeyManager__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyOpera__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgKeyOpera__coll__graph.pdf index ec30c72d..8377cffd 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgKeyOpera__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgKeyOpera__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgKeyOpera__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgKeyOpera__inherit__graph.pdf index bbcacbee..d68d8666 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 c4f19030..1c9cfdd7 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 8dab3bc7..ff25ce7a 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_1GpgPassphraseContext__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgPassphraseContext__coll__graph.pdf index 8bd66fd0..b8c539d1 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgPassphraseContext__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgPassphraseContext__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgPassphraseContext__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgPassphraseContext__inherit__graph.pdf index 8bd66fd0..b8c539d1 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgPassphraseContext__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgPassphraseContext__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgResultAnalyse__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgResultAnalyse__coll__graph.pdf index 73327a51..3c5b58b0 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 475a2a81..859408d5 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 22c13b55..f8718e18 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 f62e4a66..6a8c1e9c 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_1GpgSignResult__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgSignResult__coll__graph.pdf index af6a3441..9e49a506 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgSignResult__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgSignResult__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1GpgSignature__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgSignature__coll__graph.pdf index 41e40463..f14e24ed 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 02e62a25..3169617e 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 9b2e1925..a12eb831 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 763ec275..55cf3682 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 b04079b4..34a24a2c 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 48676f78..8f0fb4bc 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 623f26ec..13bb9ed1 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 3a840bda..cf679c35 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_1GpgVerifyResult__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1GpgVerifyResult__coll__graph.pdf index f6597d36..1e3d6268 100644 Binary files a/docs/latex/classGpgFrontend_1_1GpgVerifyResult__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1GpgVerifyResult__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1KeyPackageOperator__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1KeyPackageOperator__coll__graph.pdf index 5457d292..920a377e 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_1LoggerManager__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1LoggerManager__coll__graph.pdf index b24e0901..ff9eede6 100644 Binary files a/docs/latex/classGpgFrontend_1_1LoggerManager__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1LoggerManager__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1LoggerManager__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1LoggerManager__inherit__graph.pdf index eabce8a4..4ea6bb5e 100644 Binary files a/docs/latex/classGpgFrontend_1_1LoggerManager__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1LoggerManager__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1Module_1_1Event_1_1Impl__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Module_1_1Event_1_1Impl__coll__graph.pdf index b3e6e832..d117f0d7 100644 Binary files a/docs/latex/classGpgFrontend_1_1Module_1_1Event_1_1Impl__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1Module_1_1Event_1_1Impl__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1Module_1_1Event__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Module_1_1Event__coll__graph.pdf index e48c20bb..6bbec0c3 100644 Binary files a/docs/latex/classGpgFrontend_1_1Module_1_1Event__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1Module_1_1Event__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl__coll__graph.pdf index 722f5c6f..ea98dacf 100644 Binary files a/docs/latex/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1Module_1_1GlobalModuleContext__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Module_1_1GlobalModuleContext__coll__graph.pdf index 0a5085e0..0303b732 100644 Binary files a/docs/latex/classGpgFrontend_1_1Module_1_1GlobalModuleContext__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1Module_1_1GlobalModuleContext__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1Module_1_1GlobalModuleContext__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1Module_1_1GlobalModuleContext__inherit__graph.pdf index 0a5085e0..0303b732 100644 Binary files a/docs/latex/classGpgFrontend_1_1Module_1_1GlobalModuleContext__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1Module_1_1GlobalModuleContext__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1Module_1_1GlobalRegisterTable_1_1Impl__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Module_1_1GlobalRegisterTable_1_1Impl__coll__graph.pdf index 4e3d8602..4c952255 100644 Binary files a/docs/latex/classGpgFrontend_1_1Module_1_1GlobalRegisterTable_1_1Impl__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1Module_1_1GlobalRegisterTable_1_1Impl__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1Module_1_1GlobalRegisterTable__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Module_1_1GlobalRegisterTable__coll__graph.pdf index 2491a0c6..a9db82ff 100644 Binary files a/docs/latex/classGpgFrontend_1_1Module_1_1GlobalRegisterTable__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1Module_1_1GlobalRegisterTable__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1Module_1_1GlobalRegisterTable__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1Module_1_1GlobalRegisterTable__inherit__graph.pdf index 2491a0c6..a9db82ff 100644 Binary files a/docs/latex/classGpgFrontend_1_1Module_1_1GlobalRegisterTable__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1Module_1_1GlobalRegisterTable__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1Module_1_1Integrated_1_1GnuPGInfoGatheringModule_1_1GnuPGInfoGatheringModule__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Module_1_1Integrated_1_1GnuPGInfoGatheringModule_1_1GnuPGInfoGatheringModule__coll__graph.pdf index 76513d4a..9d2abb71 100644 Binary files a/docs/latex/classGpgFrontend_1_1Module_1_1Integrated_1_1GnuPGInfoGatheringModule_1_1GnuPGInfoGatheringModule__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1Module_1_1Integrated_1_1GnuPGInfoGatheringModule_1_1GnuPGInfoGatheringModule__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1Module_1_1Integrated_1_1GnuPGInfoGatheringModule_1_1GnuPGInfoGatheringModule__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1Module_1_1Integrated_1_1GnuPGInfoGatheringModule_1_1GnuPGInfoGatheringModule__inherit__graph.pdf index 76513d4a..9d2abb71 100644 Binary files a/docs/latex/classGpgFrontend_1_1Module_1_1Integrated_1_1GnuPGInfoGatheringModule_1_1GnuPGInfoGatheringModule__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1Module_1_1Integrated_1_1GnuPGInfoGatheringModule_1_1GnuPGInfoGatheringModule__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1Module_1_1Integrated_1_1GnuPGInfoGatheringModule_1_1GpgInfo__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Module_1_1Integrated_1_1GnuPGInfoGatheringModule_1_1GpgInfo__coll__graph.pdf index 1432376e..2bc748ee 100644 Binary files a/docs/latex/classGpgFrontend_1_1Module_1_1Integrated_1_1GnuPGInfoGatheringModule_1_1GpgInfo__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1Module_1_1Integrated_1_1GnuPGInfoGatheringModule_1_1GpgInfo__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1Module_1_1Integrated_1_1VersionCheckingModule_1_1VersionCheckTask__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Module_1_1Integrated_1_1VersionCheckingModule_1_1VersionCheckTask__coll__graph.pdf index 5509e2ae..23eeeb1c 100644 Binary files a/docs/latex/classGpgFrontend_1_1Module_1_1Integrated_1_1VersionCheckingModule_1_1VersionCheckTask__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1Module_1_1Integrated_1_1VersionCheckingModule_1_1VersionCheckTask__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1Module_1_1Integrated_1_1VersionCheckingModule_1_1VersionCheckTask__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1Module_1_1Integrated_1_1VersionCheckingModule_1_1VersionCheckTask__inherit__graph.pdf index f943c529..1972401a 100644 Binary files a/docs/latex/classGpgFrontend_1_1Module_1_1Integrated_1_1VersionCheckingModule_1_1VersionCheckTask__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1Module_1_1Integrated_1_1VersionCheckingModule_1_1VersionCheckTask__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1Module_1_1Integrated_1_1VersionCheckingModule_1_1VersionCheckingModule__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Module_1_1Integrated_1_1VersionCheckingModule_1_1VersionCheckingModule__coll__graph.pdf index 58ada5ae..37749592 100644 Binary files a/docs/latex/classGpgFrontend_1_1Module_1_1Integrated_1_1VersionCheckingModule_1_1VersionCheckingModule__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1Module_1_1Integrated_1_1VersionCheckingModule_1_1VersionCheckingModule__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1Module_1_1Integrated_1_1VersionCheckingModule_1_1VersionCheckingModule__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1Module_1_1Integrated_1_1VersionCheckingModule_1_1VersionCheckingModule__inherit__graph.pdf index 58ada5ae..37749592 100644 Binary files a/docs/latex/classGpgFrontend_1_1Module_1_1Integrated_1_1VersionCheckingModule_1_1VersionCheckingModule__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1Module_1_1Integrated_1_1VersionCheckingModule_1_1VersionCheckingModule__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl__coll__graph.pdf index c23b6e91..60f0d45e 100644 Binary files a/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager_1_1Impl__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager__coll__graph.pdf index 6a3d2dce..67c8269e 100644 Binary files a/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager__inherit__graph.pdf index 6a3d2dce..67c8269e 100644 Binary files a/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1Module_1_1ModuleManager__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1Module_1_1Module_1_1Impl__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Module_1_1Module_1_1Impl__coll__graph.pdf index 9f059119..7353df9c 100644 Binary files a/docs/latex/classGpgFrontend_1_1Module_1_1Module_1_1Impl__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1Module_1_1Module_1_1Impl__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1Module_1_1Module__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Module_1_1Module__coll__graph.pdf index 5026126b..05b151fd 100644 Binary files a/docs/latex/classGpgFrontend_1_1Module_1_1Module__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1Module_1_1Module__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1Module_1_1Module__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1Module_1_1Module__inherit__graph.pdf index 10e0f27f..0b217568 100644 Binary files a/docs/latex/classGpgFrontend_1_1Module_1_1Module__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1Module_1_1Module__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1PassphraseGenerator__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1PassphraseGenerator__coll__graph.pdf index d3362908..5873a082 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 2d5f6a72..5873a082 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_1PointerConverter__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1PointerConverter__coll__graph.pdf index 56eb904c..e0aa6099 100644 Binary files a/docs/latex/classGpgFrontend_1_1PointerConverter__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1PointerConverter__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1SecureMemoryAllocator__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1SecureMemoryAllocator__coll__graph.pdf index c8995e45..6ca965e6 100644 Binary files a/docs/latex/classGpgFrontend_1_1SecureMemoryAllocator__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1SecureMemoryAllocator__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1SingletonFunctionObject__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1SingletonFunctionObject__coll__graph.pdf index 8ee0c56d..5f9f8a9f 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.pdf b/docs/latex/classGpgFrontend_1_1SingletonFunctionObject__inherit__graph.pdf index d1c16ff7..21754b71 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_1_1Impl__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1SingletonStorageCollection_1_1Impl__coll__graph.pdf index 2964eb75..0c39f878 100644 Binary files a/docs/latex/classGpgFrontend_1_1SingletonStorageCollection_1_1Impl__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1SingletonStorageCollection_1_1Impl__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1SingletonStorageCollection__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1SingletonStorageCollection__coll__graph.pdf index 11697df7..32159ed2 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_1_1Impl__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1SingletonStorage_1_1Impl__coll__graph.pdf index 3d7b01b9..bfd06d7f 100644 Binary files a/docs/latex/classGpgFrontend_1_1SingletonStorage_1_1Impl__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1SingletonStorage_1_1Impl__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 9c37c135..98fe667a 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_1Test_1_1GpgCoreTest__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Test_1_1GpgCoreTest__coll__graph.pdf index 73daf116..483f1c46 100644 Binary files a/docs/latex/classGpgFrontend_1_1Test_1_1GpgCoreTest__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1Test_1_1GpgCoreTest__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1Test_1_1GpgCoreTest__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1Test_1_1GpgCoreTest__inherit__graph.pdf index 73daf116..483f1c46 100644 Binary files a/docs/latex/classGpgFrontend_1_1Test_1_1GpgCoreTest__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1Test_1_1GpgCoreTest__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1ThreadSafeMap__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1ThreadSafeMap__coll__graph.pdf index 1ef8a890..b8bf2fc5 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 7d8d9ab3..24079b35 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_1TaskRunnerGetter__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunnerGetter__coll__graph.pdf index b4fe3c80..6c9d65d1 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 a0174ccc..94886ecc 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_1_1Impl__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner_1_1Impl__coll__graph.pdf index e86133d6..b741f9bd 100644 Binary files a/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner_1_1Impl__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner_1_1Impl__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner_1_1Impl__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner_1_1Impl__inherit__graph.pdf index e86133d6..b741f9bd 100644 Binary files a/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner_1_1Impl__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1Thread_1_1TaskRunner_1_1Impl__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 7fee6c9c..1773355f 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 7fee6c9c..1773355f 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_1Impl__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Thread_1_1Task_1_1Impl__coll__graph.pdf index 6514b1d2..c27b0dd9 100644 Binary files a/docs/latex/classGpgFrontend_1_1Thread_1_1Task_1_1Impl__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1Thread_1_1Task_1_1Impl__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1Thread_1_1Task_1_1TaskHandler__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1Thread_1_1Task_1_1TaskHandler__coll__graph.pdf index d1caa067..fe0aecc0 100644 Binary files a/docs/latex/classGpgFrontend_1_1Thread_1_1Task_1_1TaskHandler__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1Thread_1_1Task_1_1TaskHandler__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 e116e0ed..98a5f3cd 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 34d96333..e0afdb2e 100644 Binary files a/docs/latex/classGpgFrontend_1_1Thread_1_1Task__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1Thread_1_1Task__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.pdf index 2a9597c6..fde6238c 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1AboutDialog__inherit__graph.pdf index fcb6e82f..8f51c5a2 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_1AppearanceTab__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1AppearanceTab__coll__graph.pdf index fb6e7865..a816fec0 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 9b6be461..4e481b58 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_1CacheObject__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1CacheObject__coll__graph.pdf index 85993497..b2298017 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1CacheObject__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1CacheObject__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1CacheObject__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1CacheObject__inherit__graph.pdf index 85993497..b2298017 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1CacheObject__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1CacheObject__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 6a2081ec..06a18b5c 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 6a2081ec..06a18b5c 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 bcc7433d..3e3ec02d 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 1be6d1bd..71a96fb0 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 ba7bcb2a..d09484ef 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 ba7bcb2a..d09484ef 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ConclusionPage__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ConclusionPage__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.pdf index f1462428..f2f884a2 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1ExportKeyPackageDialog__inherit__graph.pdf index 3b04fd58..69159005 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 741c5359..71abfc72 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 df74d959..5d652877 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 0e8cf0d0..60198fc6 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 0e8cf0d0..60198fc6 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_1FileTreeView__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1FileTreeView__coll__graph.pdf index b702e51b..c91c3be0 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1FileTreeView__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1FileTreeView__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1FileTreeView__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1FileTreeView__inherit__graph.pdf index b702e51b..c91c3be0 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1FileTreeView__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1FileTreeView__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 55b9add6..e4d2c425 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 3c56f1eb..e78f90e4 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 f03c473f..22ca160c 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog.tex @@ -34,8 +34,8 @@ void {\bfseries set\+Pos\+Center\+Of\+Screen} () \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_ad2d6d4e919b339ee3d7643038d18be7e}\label{classGpgFrontend_1_1UI_1_1GeneralDialog_ad2d6d4e919b339ee3d7643038d18be7e}} -bool {\bfseries is\+Rect\+Restored} () +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralDialog_a488618b02dee0cbec129bfe5d7fe8981}\label{classGpgFrontend_1_1UI_1_1GeneralDialog_a488618b02dee0cbec129bfe5d7fe8981}} +auto {\bfseries is\+Rect\+Restored} () -\/$>$ bool \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 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 b8afa0e4..710905be 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralDialog__inherit__graph.pdf index d189f1e3..56aad634 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.tex b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralMainWindow.tex index f0624b36..82c58126 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralMainWindow.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralMainWindow.tex @@ -17,7 +17,7 @@ Collaboration diagram for Gpg\+Frontend\+::UI\+::General\+Main\+Window\+: \begin{figure}[H] \begin{center} \leavevmode -\includegraphics[width=225pt]{classGpgFrontend_1_1UI_1_1GeneralMainWindow__coll__graph} +\includegraphics[width=262pt]{classGpgFrontend_1_1UI_1_1GeneralMainWindow__coll__graph} \end{center} \end{figure} \doxysubsection*{Public Member Functions} @@ -29,6 +29,12 @@ Collaboration diagram for Gpg\+Frontend\+::UI\+::General\+Main\+Window\+: \begin{DoxyCompactItemize} \item void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1GeneralMainWindow_acc10569862d1575d9453d1c1aa539242}{close\+Event}} (QClose\+Event $\ast$event) override +\item +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralMainWindow_ab3d8d459b9308512f73cfb537346205e}\label{classGpgFrontend_1_1UI_1_1GeneralMainWindow_ab3d8d459b9308512f73cfb537346205e}} +void {\bfseries set\+Pos\+Center\+Of\+Screen} () +\item +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralMainWindow_aaac4a7ad04031656f74ab8918ad2fc71}\label{classGpgFrontend_1_1UI_1_1GeneralMainWindow_aaac4a7ad04031656f74ab8918ad2fc71}} +void {\bfseries move\+Position2\+Center\+Of\+Parent} () \end{DoxyCompactItemize} \doxysubsection*{Protected Attributes} \begin{DoxyCompactItemize} @@ -50,6 +56,9 @@ void {\bfseries slot\+\_\+restore\+\_\+settings} () noexcept \item \mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralMainWindow_a8ddf641e1266d00cb876ddf786e5ccb8}\label{classGpgFrontend_1_1UI_1_1GeneralMainWindow_a8ddf641e1266d00cb876ddf786e5ccb8}} void {\bfseries slot\+\_\+save\+\_\+settings} () noexcept +\item +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralMainWindow_aaf099cbbb450a58ca58fbcc05f992853}\label{classGpgFrontend_1_1UI_1_1GeneralMainWindow_aaf099cbbb450a58ca58fbcc05f992853}} +void {\bfseries update\+\_\+rect\+\_\+cache} () \end{DoxyCompactItemize} \doxysubsection*{Private Attributes} \begin{DoxyCompactItemize} @@ -62,6 +71,15 @@ QPoint {\bfseries pos\+\_\+} \item \mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralMainWindow_a5c0bb4c6847846d57ca7524d5f5e4d53}\label{classGpgFrontend_1_1UI_1_1GeneralMainWindow_a5c0bb4c6847846d57ca7524d5f5e4d53}} QSize {\bfseries size\+\_\+} +\item +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralMainWindow_afd7e8d1079c1a6eb50c06ea363765820}\label{classGpgFrontend_1_1UI_1_1GeneralMainWindow_afd7e8d1079c1a6eb50c06ea363765820}} +QRect {\bfseries rect\+\_\+} +\item +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralMainWindow_a9d2b63a02ce434551fff79a465ed6fdb}\label{classGpgFrontend_1_1UI_1_1GeneralMainWindow_a9d2b63a02ce434551fff79a465ed6fdb}} +QRect {\bfseries screen\+\_\+rect\+\_\+} +\item +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1GeneralMainWindow_a2e412119ae6fdb00f6a086f4541f9a36}\label{classGpgFrontend_1_1UI_1_1GeneralMainWindow_a2e412119ae6fdb00f6a086f4541f9a36}} +QRect {\bfseries parent\+\_\+rect\+\_\+} \end{DoxyCompactItemize} diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralMainWindow__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralMainWindow__coll__graph.md5 index 193d8edf..7d82acfd 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralMainWindow__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralMainWindow__coll__graph.md5 @@ -1 +1 @@ -af09f9dff13b550e4c817ae1c9d2d02b \ No newline at end of file +6a07f0e87c8796f116d68b810e34a876 \ No newline at end of file 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 f3fa5a18..512c1f4b 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralMainWindow__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralMainWindow__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralMainWindow__inherit__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralMainWindow__inherit__graph.md5 index 76d3a59a..b4e3aed8 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralMainWindow__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralMainWindow__inherit__graph.md5 @@ -1 +1 @@ -d78f7e760bcc34e93bf8adfbdf19a342 \ No newline at end of file +25d857ab7e958e8854851a6ab08e251d \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralMainWindow__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralMainWindow__inherit__graph.pdf index 8d0e1065..5c05d0b1 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 f446fe0b..057e9e8f 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 201b8d9f..ac9b6ce3 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_1GeneralWindowState__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralWindowState__coll__graph.pdf index 8b720d7d..48f122ba 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GeneralWindowState__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GeneralWindowState__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GenerateRevokeCertification__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GenerateRevokeCertification__coll__graph.pdf index a91f05c8..6daa3af2 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GenerateRevokeCertification__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GenerateRevokeCertification__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GenerateRevokeCertification__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GenerateRevokeCertification__inherit__graph.pdf index a91f05c8..6daa3af2 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GenerateRevokeCertification__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GenerateRevokeCertification__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__coll__graph.pdf index 18cdc738..eea16472 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1GnuPGControllerDialog__inherit__graph.pdf index 7fbb5711..86ea8bc3 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 0ec3250a..1177f018 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 40a48272..260af7e9 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 0f45cf2f..41e341f6 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 0f45cf2f..41e341f6 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 41a68b40..5f351f45 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 41a68b40..5f351f45 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 13936723..db9f638e 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 7c7a697d..0b97d9b3 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 d1421758..2bdbacca 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 d1421758..2bdbacca 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 bbf25500..d0110090 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 bbf25500..d0110090 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1IntroPage__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1IntroPage__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.pdf index fd12f651..8ebd037c 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.pdf index fd12f651..8ebd037c 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyDetailsDialog__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.pdf index 0973c276..8bb40261 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyGenDialog__inherit__graph.pdf index 8eaf2d03..139d9811 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 5df0bbc7..93736702 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 5df0bbc7..93736702 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 3004e52e..3b592c45 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.tex +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog.tex @@ -40,7 +40,7 @@ void \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1KeyImportDetailDialog_a9f5912ff9 \doxysubsection*{Static Private Member Functions} \begin{DoxyCompactItemize} \item -static QString \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1KeyImportDetailDialog_ae682853c7eccfd3a6be43765f162f5a4}{get\+\_\+status\+\_\+string}} (int key\+Status) +static auto \mbox{\hyperlink{classGpgFrontend_1_1UI_1_1KeyImportDetailDialog_a168bea15c50aa5c42601026124fb04f0}{get\+\_\+status\+\_\+string}} (int) -\/$>$ QString \begin{DoxyCompactList}\small\item\em Get the status string object. \end{DoxyCompactList}\end{DoxyCompactItemize} \doxysubsection*{Private Attributes} \begin{DoxyCompactItemize} @@ -90,11 +90,11 @@ References create\+\_\+button\+\_\+box(), create\+\_\+general\+\_\+info\+\_\+box \doxysubsection{Member Function Documentation} -\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1KeyImportDetailDialog_ae682853c7eccfd3a6be43765f162f5a4}\label{classGpgFrontend_1_1UI_1_1KeyImportDetailDialog_ae682853c7eccfd3a6be43765f162f5a4}} +\mbox{\Hypertarget{classGpgFrontend_1_1UI_1_1KeyImportDetailDialog_a168bea15c50aa5c42601026124fb04f0}\label{classGpgFrontend_1_1UI_1_1KeyImportDetailDialog_a168bea15c50aa5c42601026124fb04f0}} \index{GpgFrontend::UI::KeyImportDetailDialog@{GpgFrontend::UI::KeyImportDetailDialog}!get\_status\_string@{get\_status\_string}} \index{get\_status\_string@{get\_status\_string}!GpgFrontend::UI::KeyImportDetailDialog@{GpgFrontend::UI::KeyImportDetailDialog}} \doxysubsubsection{\texorpdfstring{get\_status\_string()}{get\_status\_string()}} -{\footnotesize\ttfamily QString Gpg\+Frontend\+::\+UI\+::\+Key\+Import\+Detail\+Dialog\+::get\+\_\+status\+\_\+string (\begin{DoxyParamCaption}\item[{int}]{key\+Status }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}, {\ttfamily [private]}} +{\footnotesize\ttfamily auto Gpg\+Frontend\+::\+UI\+::\+Key\+Import\+Detail\+Dialog\+::get\+\_\+status\+\_\+string (\begin{DoxyParamCaption}\item[{int}]{key\+\_\+status }\end{DoxyParamCaption}) -\/$>$ QString\hspace{0.3cm}{\ttfamily [static]}, {\ttfamily [private]}} 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 e5a804d2..530a3b83 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyImportDetailDialog__inherit__graph.pdf index 50f869c1..30d49973 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 6c58046f..c4c5b2f6 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 8a689484..00c105ca 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 ef631496..8ec8d9a2 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 @@ -25846bb1afc66d1b590f7de7d5ee5f36 \ No newline at end of file +271ff8f5a5e88861ad307aa9636176d2 \ 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 7df943e4..8e3b7af6 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.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt__inherit__graph.md5 index 119c71d1..29aac842 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt__inherit__graph.md5 @@ -1 +1 @@ -a218d93a2ae9fd3e34193cf0e4e53184 \ No newline at end of file +c84a26c19dcc8f9f973e97806c691b9d \ No newline at end of file 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 9a6be411..e6451f7c 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyMgmt__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.pdf index 64cd3bae..1ebbb071 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyNewUIDDialog__inherit__graph.pdf index c7c10bc1..fb0c5c0a 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 feac55ce..dd4f7347 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 42446b76..10300fa8 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 957a4c92..61aa4858 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 c3df8d6d..d2ddd7a0 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 3872f72c..4c7b7c21 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 90d6c8b4..eb506016 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 73fd9cf1..a050848f 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 fce051d7..ac646ba9 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyPairUIDTab__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.pdf index a81fdfd5..d52a4aab 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerImportDialog__inherit__graph.pdf index a81fdfd5..d52a4aab 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 d19cd155..9a19bed5 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 35acfdea..1e1da2e4 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 8acea99d..8f5f1c46 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 8acea99d..8f5f1c46 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerSearchTask__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyServerSearchTask__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.pdf index e8c54f65..b5e20f5c 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.pdf index d8f2b609..41bf268c 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeySetExpireDateDialog__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.pdf index 2ab62967..4e37ca50 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.pdf index b76adddf..4ca068cb 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUIDSignDialog__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.pdf index 85ffd8b6..be8baf10 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1KeyUploadDialog__inherit__graph.pdf index a2621c13..8784b90a 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 4ddf15bf..e99041c2 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 f6bfd35e..8a99c64c 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 4acfe2ad..761d83d6 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 90a2c739..0cd9e053 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ListedKeyServerTestTask__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.md5 index 12d2e65c..1d519906 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.md5 @@ -1 +1 @@ -90245bfe86493a814919bf2192b3c42e \ No newline at end of file +e5c68b2f08e212f964565572b73f3e20 \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.pdf index 19c762fd..8dbe267f 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__inherit__graph.md5 b/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__inherit__graph.md5 index d7c5165d..c86cc08b 100644 --- a/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__inherit__graph.md5 +++ b/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__inherit__graph.md5 @@ -1 +1 @@ -45b9abe76f4691e6325ed232fb61dad0 \ No newline at end of file +5562a422ff178c1be1bc67df8a3a32ef \ No newline at end of file diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1MainWindow__inherit__graph.pdf index ecf482c0..60dbf883 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 e3293a75..57d6019d 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 d10439a8..15569ceb 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 85448c00..524f01d0 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 067bbb57..9c5afa8d 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 081f822a..3985dae5 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 081f822a..3985dae5 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1ProxyConnectionTestTask__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.pdf index 252c3c0f..f422305b 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1QuitDialog__inherit__graph.pdf index 252c3c0f..f422305b 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_1RaisePinentry__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1RaisePinentry__coll__graph.pdf index 68b8efab..48809dd9 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1RaisePinentry__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1RaisePinentry__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1RaisePinentry__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1RaisePinentry__inherit__graph.pdf index 68b8efab..48809dd9 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1RaisePinentry__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1RaisePinentry__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SetOwnerTrustLevel__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SetOwnerTrustLevel__coll__graph.pdf index 8977c0e1..2e420a83 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SetOwnerTrustLevel__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SetOwnerTrustLevel__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SetOwnerTrustLevel__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SetOwnerTrustLevel__inherit__graph.pdf index 8977c0e1..2e420a83 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SetOwnerTrustLevel__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SetOwnerTrustLevel__inherit__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.pdf index 3f182a63..500d06fd 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SettingsDialog__inherit__graph.pdf index f84b9954..4b6809c2 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 542b6df3..c5b47fe4 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 542b6df3..c5b47fe4 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_1SignersPicker__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.pdf index 11c1dc46..07b461d4 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SignersPicker__inherit__graph.pdf index 5592be2e..ae65e124 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.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.pdf index 95cece0a..33e1a874 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1SubkeyGenerateDialog__inherit__graph.pdf index 7638152c..04e33093 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 969471ba..ae68ac29 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 969471ba..ae68ac29 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 c3c68f93..d8bdf8de 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 c3c68f93..d8bdf8de 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 4840d070..2eaf97f2 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 4840d070..2eaf97f2 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_1UISignalStation__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1UISignalStation__coll__graph.pdf index 111cc94a..81435cc5 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1UISignalStation__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1UISignalStation__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1UISignalStation__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1UISignalStation__inherit__graph.pdf index 63e305e4..639cdee0 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1UISignalStation__inherit__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1UISignalStation__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 d229d40e..d46eba65 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 d229d40e..d46eba65 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 d9c9f75f..e19ec2da 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 6ec6e974..0de32938 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 3a4212e1..4aad814d 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 3a4212e1..4aad814d 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_1WaitingDialog__coll__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.pdf index 52e943e7..0a33ec40 100644 Binary files a/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.pdf and b/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__coll__graph.pdf differ diff --git a/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.pdf b/docs/latex/classGpgFrontend_1_1UI_1_1WaitingDialog__inherit__graph.pdf index 52e943e7..0a33ec40 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 1ee09607..365519d1 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 1ee09607..365519d1 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/classPinEntryDialog__coll__graph.pdf b/docs/latex/classPinEntryDialog__coll__graph.pdf index 4ab3604a..ed2751ed 100644 Binary files a/docs/latex/classPinEntryDialog__coll__graph.pdf and b/docs/latex/classPinEntryDialog__coll__graph.pdf differ diff --git a/docs/latex/classPinEntryDialog__inherit__graph.pdf b/docs/latex/classPinEntryDialog__inherit__graph.pdf index 949c7197..1b5eea76 100644 Binary files a/docs/latex/classPinEntryDialog__inherit__graph.pdf and b/docs/latex/classPinEntryDialog__inherit__graph.pdf differ diff --git a/docs/latex/classPinLineEdit_1_1Private__coll__graph.pdf b/docs/latex/classPinLineEdit_1_1Private__coll__graph.pdf index 653b094d..7ca1fd9d 100644 Binary files a/docs/latex/classPinLineEdit_1_1Private__coll__graph.pdf and b/docs/latex/classPinLineEdit_1_1Private__coll__graph.pdf differ diff --git a/docs/latex/classPinLineEdit__coll__graph.pdf b/docs/latex/classPinLineEdit__coll__graph.pdf index b3ec9601..95178140 100644 Binary files a/docs/latex/classPinLineEdit__coll__graph.pdf and b/docs/latex/classPinLineEdit__coll__graph.pdf differ diff --git a/docs/latex/classPinLineEdit__inherit__graph.pdf b/docs/latex/classPinLineEdit__inherit__graph.pdf index 77955a0a..0df54825 100644 Binary files a/docs/latex/classPinLineEdit__inherit__graph.pdf and b/docs/latex/classPinLineEdit__inherit__graph.pdf differ diff --git a/docs/latex/classPinentryConfirm__coll__graph.pdf b/docs/latex/classPinentryConfirm__coll__graph.pdf index bd0c4daa..7e3bfbff 100644 Binary files a/docs/latex/classPinentryConfirm__coll__graph.pdf and b/docs/latex/classPinentryConfirm__coll__graph.pdf differ diff --git a/docs/latex/classPinentryConfirm__inherit__graph.pdf b/docs/latex/classPinentryConfirm__inherit__graph.pdf index bd0c4daa..7e3bfbff 100644 Binary files a/docs/latex/classPinentryConfirm__inherit__graph.pdf and b/docs/latex/classPinentryConfirm__inherit__graph.pdf differ diff --git a/docs/latex/classSignatureDetailsDialog__coll__graph.pdf b/docs/latex/classSignatureDetailsDialog__coll__graph.pdf index 82820df4..28a71f55 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 82820df4..28a71f55 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 49b51658..8054973b 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 774f081f..7c3791a4 100644 Binary files a/docs/latex/classclass__coll__graph.pdf and b/docs/latex/classclass__coll__graph.pdf differ diff --git a/docs/latex/classsecmem_1_1alloc__coll__graph.pdf b/docs/latex/classsecmem_1_1alloc__coll__graph.pdf index 9f9db996..7fa1aed5 100644 Binary files a/docs/latex/classsecmem_1_1alloc__coll__graph.pdf and b/docs/latex/classsecmem_1_1alloc__coll__graph.pdf differ diff --git a/docs/latex/structFunctionObjectTypeLockInfo__coll__graph.pdf b/docs/latex/structFunctionObjectTypeLockInfo__coll__graph.pdf index f3353415..651437dd 100644 Binary files a/docs/latex/structFunctionObjectTypeLockInfo__coll__graph.pdf and b/docs/latex/structFunctionObjectTypeLockInfo__coll__graph.pdf differ diff --git a/docs/latex/structGpgFrontend_1_1ArchiveReadClientData__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1ArchiveReadClientData__coll__graph.pdf index 026719f9..8d375dda 100644 Binary files a/docs/latex/structGpgFrontend_1_1ArchiveReadClientData__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1ArchiveReadClientData__coll__graph.pdf differ diff --git a/docs/latex/structGpgFrontend_1_1CoreInitArgs__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1CoreInitArgs__coll__graph.pdf index dbfd1055..1eda7635 100644 Binary files a/docs/latex/structGpgFrontend_1_1CoreInitArgs__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1CoreInitArgs__coll__graph.pdf differ diff --git a/docs/latex/structGpgFrontend_1_1GpgCommandExecutor_1_1ExecuteContext__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1GpgCommandExecutor_1_1ExecuteContext__coll__graph.pdf index bd21b3fc..717ccd13 100644 Binary files a/docs/latex/structGpgFrontend_1_1GpgCommandExecutor_1_1ExecuteContext__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1GpgCommandExecutor_1_1ExecuteContext__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 8ee12be6..abf3cd88 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_1GpgData_1_1DataRefDeleter__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1GpgData_1_1DataRefDeleter__coll__graph.pdf index 1d4873a5..29565770 100644 Binary files a/docs/latex/structGpgFrontend_1_1GpgData_1_1DataRefDeleter__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1GpgData_1_1DataRefDeleter__coll__graph.pdf differ diff --git a/docs/latex/structGpgFrontend_1_1GpgFrontendContext__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1GpgFrontendContext__coll__graph.pdf index 94e9e31d..5c595d6a 100644 Binary files a/docs/latex/structGpgFrontend_1_1GpgFrontendContext__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1GpgFrontendContext__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 26353d80..b2782fcd 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_1KeyRefDeleter__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1GpgKey_1_1KeyRefDeleter__coll__graph.pdf index c1f2cece..81a9995e 100644 Binary files a/docs/latex/structGpgFrontend_1_1GpgKey_1_1KeyRefDeleter__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1GpgKey_1_1KeyRefDeleter__coll__graph.pdf differ diff --git a/docs/latex/structGpgFrontend_1_1GpgRecipient__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1GpgRecipient__coll__graph.pdf index 3309e1e8..363c720b 100644 Binary files a/docs/latex/structGpgFrontend_1_1GpgRecipient__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1GpgRecipient__coll__graph.pdf differ diff --git a/docs/latex/structGpgFrontend_1_1Module_1_1Event_1_1ParameterInitializer__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1Module_1_1Event_1_1ParameterInitializer__coll__graph.pdf index ef45a29d..67296945 100644 Binary files a/docs/latex/structGpgFrontend_1_1Module_1_1Event_1_1ParameterInitializer__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1Module_1_1Event_1_1ParameterInitializer__coll__graph.pdf differ diff --git a/docs/latex/structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo__coll__graph.pdf index d02884d1..9ea91e67 100644 Binary files a/docs/latex/structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1Module_1_1GlobalModuleContext_1_1Impl_1_1ModuleRegisterInfo__coll__graph.pdf differ diff --git a/docs/latex/structGpgFrontend_1_1Module_1_1GlobalRegisterTable_1_1Impl_1_1RTNode__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1Module_1_1GlobalRegisterTable_1_1Impl_1_1RTNode__coll__graph.pdf index e7a33c63..d121bb72 100644 Binary files a/docs/latex/structGpgFrontend_1_1Module_1_1GlobalRegisterTable_1_1Impl_1_1RTNode__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1Module_1_1GlobalRegisterTable_1_1Impl_1_1RTNode__coll__graph.pdf differ diff --git a/docs/latex/structGpgFrontend_1_1Module_1_1Integrated_1_1GnuPGInfoGatheringModule_1_1GpgComponentInfo__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1Module_1_1Integrated_1_1GnuPGInfoGatheringModule_1_1GpgComponentInfo__coll__graph.pdf index cc1a2c16..b18c3e5a 100644 Binary files a/docs/latex/structGpgFrontend_1_1Module_1_1Integrated_1_1GnuPGInfoGatheringModule_1_1GpgComponentInfo__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1Module_1_1Integrated_1_1GnuPGInfoGatheringModule_1_1GpgComponentInfo__coll__graph.pdf differ diff --git a/docs/latex/structGpgFrontend_1_1Module_1_1Integrated_1_1GnuPGInfoGatheringModule_1_1GpgOptionsInfo__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1Module_1_1Integrated_1_1GnuPGInfoGatheringModule_1_1GpgOptionsInfo__coll__graph.pdf index fea1c610..f38cd41b 100644 Binary files a/docs/latex/structGpgFrontend_1_1Module_1_1Integrated_1_1GnuPGInfoGatheringModule_1_1GpgOptionsInfo__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1Module_1_1Integrated_1_1GnuPGInfoGatheringModule_1_1GpgOptionsInfo__coll__graph.pdf differ diff --git a/docs/latex/structGpgFrontend_1_1Module_1_1Integrated_1_1VersionCheckingModule_1_1SoftwareVersion__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1Module_1_1Integrated_1_1VersionCheckingModule_1_1SoftwareVersion__coll__graph.pdf index c5015a76..0375c486 100644 Binary files a/docs/latex/structGpgFrontend_1_1Module_1_1Integrated_1_1VersionCheckingModule_1_1SoftwareVersion__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1Module_1_1Integrated_1_1VersionCheckingModule_1_1SoftwareVersion__coll__graph.pdf differ diff --git a/docs/latex/structGpgFrontend_1_1Module_1_1ModuleInitArgs__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1Module_1_1ModuleInitArgs__coll__graph.pdf index 5861a26f..3ca1e6be 100644 Binary files a/docs/latex/structGpgFrontend_1_1Module_1_1ModuleInitArgs__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1Module_1_1ModuleInitArgs__coll__graph.pdf differ diff --git a/docs/latex/structGpgFrontend_1_1RefDeleter__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1RefDeleter__coll__graph.pdf index fb48bf0b..d30484e2 100644 Binary files a/docs/latex/structGpgFrontend_1_1RefDeleter__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1RefDeleter__coll__graph.pdf differ diff --git a/docs/latex/structGpgFrontend_1_1SecureObjectDeleter__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1SecureObjectDeleter__coll__graph.pdf index d0f0764d..45047e1f 100644 Binary files a/docs/latex/structGpgFrontend_1_1SecureObjectDeleter__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1SecureObjectDeleter__coll__graph.pdf differ diff --git a/docs/latex/structGpgFrontend_1_1Test_1_1GpgFrontendContext__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1Test_1_1GpgFrontendContext__coll__graph.pdf index 13e162d4..4bb2a12c 100644 Binary files a/docs/latex/structGpgFrontend_1_1Test_1_1GpgFrontendContext__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1Test_1_1GpgFrontendContext__coll__graph.pdf differ diff --git a/docs/latex/structGpgFrontend_1_1UI_1_1AppearanceSO__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1UI_1_1AppearanceSO__coll__graph.pdf index 546ab0e7..2790ad64 100644 Binary files a/docs/latex/structGpgFrontend_1_1UI_1_1AppearanceSO__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1UI_1_1AppearanceSO__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 d38d2925..6fdb7d9e 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 6a4b10f1..283311bd 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 446447f8..81efb909 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_1KeyServerSO__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1UI_1_1KeyServerSO__coll__graph.pdf index 5a01568b..60aa1644 100644 Binary files a/docs/latex/structGpgFrontend_1_1UI_1_1KeyServerSO__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1UI_1_1KeyServerSO__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 d673c4d7..109ff843 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 acc404bd..32c31421 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_1WindowStateSO__coll__graph.pdf b/docs/latex/structGpgFrontend_1_1UI_1_1WindowStateSO__coll__graph.pdf index 95944c80..bee08ec4 100644 Binary files a/docs/latex/structGpgFrontend_1_1UI_1_1WindowStateSO__coll__graph.pdf and b/docs/latex/structGpgFrontend_1_1UI_1_1WindowStateSO__coll__graph.pdf differ diff --git a/docs/latex/structPinEntryDialog_1_1ConstraintsOptions__coll__graph.pdf b/docs/latex/structPinEntryDialog_1_1ConstraintsOptions__coll__graph.pdf index 49c9a98e..fa56f6e9 100644 Binary files a/docs/latex/structPinEntryDialog_1_1ConstraintsOptions__coll__graph.pdf and b/docs/latex/structPinEntryDialog_1_1ConstraintsOptions__coll__graph.pdf differ diff --git a/docs/latex/structPinEntryDialog_1_1FormattedPassphraseOptions__coll__graph.pdf b/docs/latex/structPinEntryDialog_1_1FormattedPassphraseOptions__coll__graph.pdf index eddf1459..912d93b0 100644 Binary files a/docs/latex/structPinEntryDialog_1_1FormattedPassphraseOptions__coll__graph.pdf and b/docs/latex/structPinEntryDialog_1_1FormattedPassphraseOptions__coll__graph.pdf differ diff --git a/docs/latex/structfmt_1_1formatter_3_01QByteArray_01_4__coll__graph.pdf b/docs/latex/structfmt_1_1formatter_3_01QByteArray_01_4__coll__graph.pdf index dd365437..d712a8ff 100644 Binary files a/docs/latex/structfmt_1_1formatter_3_01QByteArray_01_4__coll__graph.pdf and b/docs/latex/structfmt_1_1formatter_3_01QByteArray_01_4__coll__graph.pdf differ diff --git a/docs/latex/structfmt_1_1formatter_3_01QString_01_4__coll__graph.pdf b/docs/latex/structfmt_1_1formatter_3_01QString_01_4__coll__graph.pdf index 787a2fe7..6f436b61 100644 Binary files a/docs/latex/structfmt_1_1formatter_3_01QString_01_4__coll__graph.pdf and b/docs/latex/structfmt_1_1formatter_3_01QString_01_4__coll__graph.pdf differ diff --git a/docs/latex/structpinentry__coll__graph.pdf b/docs/latex/structpinentry__coll__graph.pdf index c1273e5f..17b3d98a 100644 Binary files a/docs/latex/structpinentry__coll__graph.pdf and b/docs/latex/structpinentry__coll__graph.pdf differ diff --git a/docs/latex/structsecmem_1_1alloc_1_1rebind__coll__graph.pdf b/docs/latex/structsecmem_1_1alloc_1_1rebind__coll__graph.pdf index 150a6604..4aafe087 100644 Binary files a/docs/latex/structsecmem_1_1alloc_1_1rebind__coll__graph.pdf and b/docs/latex/structsecmem_1_1alloc_1_1rebind__coll__graph.pdf differ
  • GeneralDialog(QString name, QWidget *parent=nullptr)GpgFrontend::UI::GeneralDialogexplicit
    isRectRestored() (defined in GpgFrontend::UI::GeneralDialog)GpgFrontend::UI::GeneralDialogprotected
    isRectRestored() -> bool (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
    setPosCenterOfScreen<
    void movePosition2CenterOfParent ()
     
    -bool isRectRestored ()
     
    +auto isRectRestored () -> bool
     
    void showEvent (QShowEvent *event) override