Add a stored list of DKDMs to the creator rather than just a load button (#767).
[dcpomatic.git] / src / wx / screen_dialog.h
index 78869782f93bd629274f804d6287465ff2b959c3..5ae369415e001cdf9cf145adeafdbf1bcb0d1573 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2012-2014 Carl Hetherington <cth@carlh.net>
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
 
 */
 
+#include "editable_list.h"
+#include <dcp/certificate.h>
 #include <wx/wx.h>
+#include <boost/shared_ptr.hpp>
+#include <boost/optional.hpp>
+
+class Progress;
+class CertificateFileDialogWrapper;
 
 class ScreenDialog : public wxDialog
 {
 public:
-       ScreenDialog (wxWindow *, std::string, std::string name = "");
+       ScreenDialog (
+               wxWindow *,
+               std::string,
+               std::string name = "",
+               boost::optional<dcp::Certificate> c = boost::optional<dcp::Certificate> (),
+               std::vector<dcp::Certificate> d = std::vector<dcp::Certificate> ()
+               );
 
        std::string name () const;
-       
+       boost::optional<dcp::Certificate> recipient () const;
+       std::vector<dcp::Certificate> trusted_devices () {
+               return _trusted_devices;
+       }
+
 private:
+       void get_recipient_from_file ();
+       void load_recipient (boost::filesystem::path);
+       void download_recipient ();
+       void setup_sensitivity ();
+       void set_recipient (boost::optional<dcp::Certificate>);
+
+       void set_trusted_devices (std::vector<dcp::Certificate> d) {
+               _trusted_devices = d;
+       }
+
+       wxGridBagSizer* _sizer;
        wxTextCtrl* _name;
+       wxStaticText* _recipient_thumbprint;
+       wxButton* _get_recipient_from_file;
+       wxButton* _download_recipient;
+       EditableList<dcp::Certificate, CertificateFileDialogWrapper>* _trusted_device_list;
+
+       boost::optional<dcp::Certificate> _recipient;
+       std::vector<dcp::Certificate> _trusted_devices;
 };