aboutsummaryrefslogtreecommitdiff
path: root/src/dialogs/certificatemanagementdialog.hpp
diff options
context:
space:
mode:
authorFelix (xq) Queißner <git@mq32.de>2020-06-28 16:30:52 +0200
committerFelix (xq) Queißner <git@mq32.de>2020-06-28 16:30:52 +0200
commit6edd9e7a12a3827fb6aac62a88be01085e41e176 (patch)
tree4513475c7efaea92a154ff20e970ed3d4b475b7c /src/dialogs/certificatemanagementdialog.hpp
parenta53e490d2e96d22a24293019921af26e00f2bf7a (diff)
downloadkristall-6edd9e7a12a3827fb6aac62a88be01085e41e176.tar.gz
Huge refacoring of the settings stuff. Provides automated migration between old and new configuration file stuff. Themes are now just files in a folder instead of encoded data in the config file.
Diffstat (limited to 'src/dialogs/certificatemanagementdialog.hpp')
-rw-r--r--src/dialogs/certificatemanagementdialog.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/dialogs/certificatemanagementdialog.hpp b/src/dialogs/certificatemanagementdialog.hpp
index 0d7178a..23c07fa 100644
--- a/src/dialogs/certificatemanagementdialog.hpp
+++ b/src/dialogs/certificatemanagementdialog.hpp
@@ -4,6 +4,7 @@
#include <QDialog>
#include "cryptoidentity.hpp"
+#include "identitycollection.hpp"
namespace Ui {
class CertificateManagementDialog;
@@ -17,6 +18,9 @@ public:
explicit CertificateManagementDialog(QWidget *parent = nullptr);
~CertificateManagementDialog();
+ IdentityCollection identitySet() const;
+ void setIdentitySet(IdentityCollection const & src);
+
private slots:
void on_cert_notes_textChanged();
@@ -39,6 +43,8 @@ private:
private:
Ui::CertificateManagementDialog *ui;
+ IdentityCollection identity_set;
+
CryptoIdentity * selected_identity;
};