summaryrefslogtreecommitdiff
path: root/src/wx/screen_dialog.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-12-23 00:23:19 +0000
committerCarl Hetherington <cth@carlh.net>2015-12-23 00:23:19 +0000
commit03dd6e03f5ee261b9c1ed9328ad2762ef3b62057 (patch)
treeb33e3b379ea72bcaa4417cb1b42b68753f48b7ec /src/wx/screen_dialog.cc
parenta618339514026c5f9129a9f786289952cdbd3cdf (diff)
Add a stored list of DKDMs to the creator rather than just a load button (#767).
Diffstat (limited to 'src/wx/screen_dialog.cc')
-rw-r--r--src/wx/screen_dialog.cc43
1 files changed, 11 insertions, 32 deletions
diff --git a/src/wx/screen_dialog.cc b/src/wx/screen_dialog.cc
index 6c95c0bae..fcb878bc0 100644
--- a/src/wx/screen_dialog.cc
+++ b/src/wx/screen_dialog.cc
@@ -19,6 +19,7 @@
#include "screen_dialog.h"
#include "wx_util.h"
+#include "file_dialog_wrapper.h"
#include "download_certificate_dialog.h"
#include "lib/compose.hpp"
#include "lib/util.h"
@@ -33,44 +34,22 @@ using std::vector;
using boost::optional;
using boost::bind;
-class FileDialogWrapper
+static string
+column (dcp::Certificate c)
{
-public:
- FileDialogWrapper (wxWindow* parent)
- : _parent (parent)
- {
- _dialog = new wxFileDialog (parent, _("Select certificate file"));
- }
-
- void set (dcp::Certificate) {}
-
- dcp::Certificate get () {
- return dcp::Certificate (dcp::file_to_string (wx_to_std (_dialog->GetPath ())));
- }
+ return c.thumbprint ();
+}
- int ShowModal ()
+class CertificateFileDialogWrapper : public FileDialogWrapper<dcp::Certificate>
+{
+public:
+ CertificateFileDialogWrapper (wxWindow* parent)
+ : FileDialogWrapper (parent, _("Select certificate file"))
{
- return _dialog->ShowModal ();
- }
- void Destroy ()
- {
- _dialog->Destroy ();
- /* eek! */
- delete this;
}
-
-private:
- wxWindow* _parent;
- wxFileDialog* _dialog;
};
-static string
-column (dcp::Certificate c)
-{
- return c.thumbprint ();
-}
-
ScreenDialog::ScreenDialog (wxWindow* parent, string title, string name, optional<dcp::Certificate> recipient, vector<dcp::Certificate> trusted_devices)
: wxDialog (parent, wxID_ANY, std_to_wx (title))
, _recipient (recipient)
@@ -112,7 +91,7 @@ ScreenDialog::ScreenDialog (wxWindow* parent, string title, string name, optiona
vector<string> columns;
columns.push_back (wx_to_std (_("Thumbprint")));
- _trusted_device_list = new EditableList<dcp::Certificate, FileDialogWrapper> (
+ _trusted_device_list = new EditableList<dcp::Certificate, CertificateFileDialogWrapper> (
this, columns, bind (&ScreenDialog::trusted_devices, this), bind (&ScreenDialog::set_trusted_devices, this, _1), bind (&column, _1), false
);