diff options
author | Saturneric <[email protected]> | 2023-04-05 08:48:32 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2023-04-05 08:48:32 +0000 |
commit | cd24624e94551193f9e541e69642e84e89999f78 (patch) | |
tree | 2595a7bf86231991bbf1ea2104aad816286a2365 /src/ui/dialog/gnupg/GnuPGControllerDialog.h | |
parent | fix: solve custom gpgconf path wrong issue (diff) | |
download | GpgFrontend-cd24624e94551193f9e541e69642e84e89999f78.tar.gz GpgFrontend-cd24624e94551193f9e541e69642e84e89999f78.zip |
feat: add check for key db and improve ui
Diffstat (limited to '')
-rw-r--r-- | src/ui/dialog/gnupg/GnuPGControllerDialog.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ui/dialog/gnupg/GnuPGControllerDialog.h b/src/ui/dialog/gnupg/GnuPGControllerDialog.h index 497f293a..9d53cf46 100644 --- a/src/ui/dialog/gnupg/GnuPGControllerDialog.h +++ b/src/ui/dialog/gnupg/GnuPGControllerDialog.h @@ -29,6 +29,7 @@ #ifndef GPGFRONTEND_GNUPGCONTROLLERDIALOGLOG_H #define GPGFRONTEND_GNUPGCONTROLLERDIALOGLOG_H +#include <string> #include "ui/GpgFrontendUI.h" #include "ui/dialog/GeneralDialog.h" @@ -98,6 +99,10 @@ class GnuPGControllerDialog : public GeneralDialog { void set_settings(); void apply_settings(); + + bool check_custom_gnupg_path(std::string); + + bool check_custom_gnupg_key_database_path(std::string); }; } // namespace GpgFrontend::UI |