Save trusted devices.
[dcpomatic.git] / src / wx / screen_dialog.h
index 7e03b160d1d06ddc028ea7065435dd79aea2b641..2985516c48870a6f6d68cb1613eef8b288c3470c 100644 (file)
 
 */
 
-#include "table_dialog.h"
+#include "editable_list.h"
 #include <dcp/certificate.h>
 #include <wx/wx.h>
 #include <boost/shared_ptr.hpp>
 #include <boost/optional.hpp>
 
 class Progress;
+class FileDialogWrapper;
 
-class ScreenDialog : public TableDialog
+class ScreenDialog : public wxDialog
 {
 public:
-       ScreenDialog (wxWindow *, std::string, std::string name = "", boost::optional<dcp::Certificate> c = boost::optional<dcp::Certificate> ());
+       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, FileDialogWrapper>* _trusted_device_list;
 
        boost::optional<dcp::Certificate> _recipient;
+       std::vector<dcp::Certificate> _trusted_devices;
 };