X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fscreen_dialog.cc;h=66e37a4cf94d58225b199fa8a88cef93fe19de22;hb=1858190cff2f960f3d1f0a5cc02c69da86088f5b;hp=10650263b1a929cfb418e52dd463657baa08a86c;hpb=5ea52a08f45b0cb8b8fe7221244cdcdeeaca0ed7;p=dcpomatic.git diff --git a/src/wx/screen_dialog.cc b/src/wx/screen_dialog.cc index 10650263b..66e37a4cf 100644 --- a/src/wx/screen_dialog.cc +++ b/src/wx/screen_dialog.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2014 Carl Hetherington + Copyright (C) 2012-2015 Carl Hetherington 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 @@ -26,12 +26,13 @@ #include "wx_util.h" #include "doremi_certificate_dialog.h" #include "dolby_certificate_dialog.h" +#include using std::string; using std::cout; -using boost::shared_ptr; +using boost::optional; -ScreenDialog::ScreenDialog (wxWindow* parent, string title, string name, shared_ptr certificate) +ScreenDialog::ScreenDialog (wxWindow* parent, string title, string name, optional certificate) : TableDialog (parent, std_to_wx (title), 2, true) , _certificate (certificate) { @@ -44,7 +45,7 @@ ScreenDialog::ScreenDialog (wxWindow* parent, string title, string name, shared_ add (_("Certificate"), true); wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL); _load_certificate = new wxButton (this, wxID_ANY, _("Load from file...")); - _download_certificate = new wxButton (this, wxID_ANY, _("Download")); + _download_certificate = new wxButton (this, wxID_ANY, _("Download...")); s->Add (_load_certificate, 1, wxEXPAND); s->Add (_download_certificate, 1, wxEXPAND); add (s); @@ -79,7 +80,7 @@ ScreenDialog::name () const return wx_to_std (_name->GetValue()); } -shared_ptr +optional ScreenDialog::certificate () const { return _certificate; @@ -89,7 +90,7 @@ void ScreenDialog::load_certificate (boost::filesystem::path file) { try { - _certificate.reset (new dcp::Certificate (dcp::file_to_string (file))); + _certificate = dcp::Certificate (dcp::file_to_string (file)); _certificate_text->SetValue (_certificate->certificate ()); } catch (dcp::MiscError& e) { error_dialog (this, wxString::Format (_("Could not read certificate file (%s)"), e.what())); @@ -128,7 +129,9 @@ void ScreenDialog::setup_sensitivity () { wxButton* ok = dynamic_cast (FindWindowById (wxID_OK, this)); - ok->Enable (_certificate.get ()); + if (ok) { + ok->Enable (_certificate); + } _download_certificate->Enable ( _manufacturer->GetStringSelection() == _("Doremi") ||