diff options
| author | Felix (xq) Queißner <git@mq32.de> | 2020-06-28 16:30:52 +0200 |
|---|---|---|
| committer | Felix (xq) Queißner <git@mq32.de> | 2020-06-28 16:30:52 +0200 |
| commit | 6edd9e7a12a3827fb6aac62a88be01085e41e176 (patch) | |
| tree | 4513475c7efaea92a154ff20e970ed3d4b475b7c /src/dialogs/certificatemanagementdialog.hpp | |
| parent | a53e490d2e96d22a24293019921af26e00f2bf7a (diff) | |
| download | kristall-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.hpp | 6 |
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; }; |
