Slightly better errors when the player fails to load a DCP.
[dcpomatic.git] / src / wx / download_certificate_panel.cc
index 0c78901eba551e21e9a76fc3b94f1467e09413d2..2f3b435efaba5a4f66cc2a72f432ae1a20ad8ea3 100644 (file)
@@ -20,6 +20,7 @@
 
 #include "wx_util.h"
 #include "download_certificate_panel.h"
+#include "download_certificate_dialog.h"
 #include "lib/signal_manager.h"
 #include <dcp/util.h>
 #include <dcp/exceptions.h>
@@ -28,8 +29,8 @@
 using boost::function;
 using boost::optional;
 
-DownloadCertificatePanel::DownloadCertificatePanel (wxWindow* parent, DownloadCertificateDialog* dialog)
-       : wxPanel (parent, wxID_ANY)
+DownloadCertificatePanel::DownloadCertificatePanel (DownloadCertificateDialog* dialog)
+       : wxPanel (dialog->notebook(), wxID_ANY)
        , _dialog (dialog)
 {
        _overall_sizer = new wxBoxSizer (wxVERTICAL);
@@ -39,11 +40,13 @@ DownloadCertificatePanel::DownloadCertificatePanel (wxWindow* parent, DownloadCe
        _table->AddGrowableCol (1, 1);
 
        _overall_sizer->Add (_table, 1, wxEXPAND | wxALL, DCPOMATIC_DIALOG_BORDER);
-}
 
-void
-DownloadCertificatePanel::layout ()
-{
+       add_label_to_sizer (_table, this, _("Serial number"), true);
+       _serial = new wxTextCtrl (this, wxID_ANY, wxT (""), wxDefaultPosition, wxSize (300, -1));
+       _table->Add (_serial, 1, wxEXPAND);
+
+       _serial->Bind (wxEVT_TEXT, boost::bind (&DownloadCertificateDialog::setup_sensitivity, _dialog));
+
        _overall_sizer->Layout ();
        _overall_sizer->SetSizeHints (this);
 }
@@ -65,12 +68,18 @@ DownloadCertificatePanel::certificate () const
 }
 
 void
-DownloadCertificatePanel::download (wxStaticText* message)
+DownloadCertificatePanel::download ()
 {
-       message->SetLabel (_("Downloading certificate"));
+       _dialog->message()->SetLabel (_("Downloading certificate"));
 
        /* Hack: without this the SetLabel() above has no visible effect */
        wxMilliSleep (200);
 
-       signal_manager->when_idle (boost::bind (&DownloadCertificatePanel::do_download, this, message));
+       signal_manager->when_idle (boost::bind (&DownloadCertificatePanel::do_download, this));
+}
+
+bool
+DownloadCertificatePanel::ready_to_download () const
+{
+       return !_serial->IsEmpty ();
 }