Updated nl_NL translation from Rob van Nieuwkerk.
[dcpomatic.git] / src / wx / dcp_panel.cc
index 9d16b8c8fae764a67b27cda1d47210edcefce3b6..5d0756b3edb0fcbdad643ce1e57d323cfe9e8f2b 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2012-2016 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2012-2018 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 #include "isdcf_metadata_dialog.h"
 #include "audio_dialog.h"
 #include "focus_manager.h"
+#include "check_box.h"
+#include "static_text.h"
+#include "check_box.h"
+#include "dcpomatic_button.h"
 #include "lib/ratio.h"
 #include "lib/config.h"
 #include "lib/dcp_content_type.h"
@@ -54,6 +58,9 @@ using std::max;
 using std::make_pair;
 using boost::lexical_cast;
 using boost::shared_ptr;
+#if BOOST_VERSION >= 106100
+using namespace boost::placeholders;
+#endif
 using dcp::locale_convert;
 
 DCPPanel::DCPPanel (wxNotebook* n, boost::shared_ptr<Film> film)
@@ -72,31 +79,31 @@ DCPPanel::DCPPanel (wxNotebook* n, boost::shared_ptr<Film> film)
        _name = new wxTextCtrl (_panel, wxID_ANY);
        FocusManager::instance()->add(_name);
 
-       _use_isdcf_name = new wxCheckBox (_panel, wxID_ANY, _("Use ISDCF name"));
-       _edit_isdcf_button = new wxButton (_panel, wxID_ANY, _("Details..."));
-       _copy_isdcf_name_button = new wxButton (_panel, wxID_ANY, _("Copy as name"));
+       _use_isdcf_name = new CheckBox (_panel, _("Use ISDCF name"));
+       _edit_isdcf_button = new Button (_panel, _("Details..."));
+       _copy_isdcf_name_button = new Button (_panel, _("Copy as name"));
 
        /* wxST_ELLIPSIZE_MIDDLE works around a bug in GTK2 and/or wxWidgets, see
           http://trac.wxwidgets.org/ticket/12539
        */
-       _dcp_name = new wxStaticText (
-               _panel, wxID_ANY, wxT (""), wxDefaultPosition, wxDefaultSize,
+       _dcp_name = new StaticText (
+               _panel, wxT (""), wxDefaultPosition, wxDefaultSize,
                wxALIGN_CENTRE_HORIZONTAL | wxST_NO_AUTORESIZE | wxST_ELLIPSIZE_MIDDLE
                );
 
        _dcp_content_type_label = create_label (_panel, _("Content Type"), true);
        _dcp_content_type = new wxChoice (_panel, wxID_ANY);
 
-       _signed = new wxCheckBox (_panel, wxID_ANY, _("Signed"));
-       _encrypted = new wxCheckBox (_panel, wxID_ANY, _("Encrypted"));
+       _signed = new CheckBox (_panel, _("Signed"));
+       _encrypted = new CheckBox (_panel, _("Encrypted"));
 
         wxClientDC dc (_panel);
         wxSize size = dc.GetTextExtent (wxT ("GGGGGGGG..."));
         size.SetHeight (-1);
 
        _key_label = create_label (_panel, _("Key"), true);
-       _key = new wxStaticText (_panel, wxID_ANY, "", wxDefaultPosition, size);
-       _edit_key = new wxButton (_panel, wxID_ANY, _("Edit..."));
+       _key = new StaticText (_panel, "", wxDefaultPosition, size);
+       _edit_key = new Button (_panel, _("Edit..."));
 
        _reels_label = create_label (_panel, _("Reels"), true);
        _reel_type = new wxChoice (_panel, wxID_ANY);
@@ -108,7 +115,7 @@ DCPPanel::DCPPanel (wxNotebook* n, boost::shared_ptr<Film> film)
        _standard_label = create_label (_panel, _("Standard"), true);
        _standard = new wxChoice (_panel, wxID_ANY);
 
-       _upload_after_make_dcp = new wxCheckBox (_panel, wxID_ANY, _("Upload DCP to TMS after it is made"));
+       _upload_after_make_dcp = new CheckBox (_panel, _("Upload DCP to TMS after it is made"));
 
        _notebook = new wxNotebook (_panel, wxID_ANY);
        _sizer->Add (_notebook, 1, wxEXPAND | wxTOP, 6);
@@ -164,11 +171,13 @@ DCPPanel::add_to_grid ()
        flags |= wxALIGN_RIGHT;
 #endif
 
-       _use_isdcf_name->Show (interface == Config::INTERFACE_FULL);
-       _edit_isdcf_button->Show (interface == Config::INTERFACE_FULL);
-       _copy_isdcf_name_button->Show (interface == Config::INTERFACE_FULL);
+       bool const full = interface == Config::INTERFACE_FULL;
+
+       _use_isdcf_name->Show (full);
+       _edit_isdcf_button->Show (full);
+       _copy_isdcf_name_button->Show (full);
 
-       if (interface == Config::INTERFACE_FULL) {
+       if (full) {
                _grid->Add (_use_isdcf_name, wxGBPosition (r, 0), wxDefaultSpan, flags);
                {
                        wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL);
@@ -186,8 +195,8 @@ DCPPanel::add_to_grid ()
        _grid->Add (_dcp_content_type, wxGBPosition (r, 1));
        ++r;
 
-       _signed->Show (interface == Config::INTERFACE_FULL);
-       if (interface == Config::INTERFACE_FULL) {
+       _signed->Show (full);
+       if (full) {
                _grid->Add (_signed, wxGBPosition (r, 0), wxGBSpan (1, 2));
                ++r;
        }
@@ -195,19 +204,22 @@ DCPPanel::add_to_grid ()
        _grid->Add (_encrypted, wxGBPosition (r, 0), wxGBSpan (1, 2));
        ++r;
 
-       _key_label->Show (interface == Config::INTERFACE_FULL);
-       _key->Show (interface == Config::INTERFACE_FULL);
-       _edit_key->Show (interface == Config::INTERFACE_FULL);
-       _reels_label->Show (interface == Config::INTERFACE_FULL);
-       _reel_type->Show (interface == Config::INTERFACE_FULL);
-       _reel_length_label->Show (interface == Config::INTERFACE_FULL);
-       _reel_length->Show (interface == Config::INTERFACE_FULL);
-       _reel_length_gb_label->Show (interface == Config::INTERFACE_FULL);
-       _standard_label->Show (interface == Config::INTERFACE_FULL);
-       _standard->Show (interface == Config::INTERFACE_FULL);
-       _upload_after_make_dcp->Show (interface == Config::INTERFACE_FULL);
-
-       if (interface == Config::INTERFACE_FULL) {
+
+       _key_label->Show (full);
+       _key->Show (full);
+       _edit_key->Show (full);
+       _reels_label->Show (full);
+       _reel_type->Show (full);
+       _reel_length_label->Show (full);
+       _reel_length->Show (full);
+       _reel_length_gb_label->Show (full);
+       _standard_label->Show (full);
+       _standard->Show (full);
+       _upload_after_make_dcp->Show (full);
+       _reencode_j2k->Show (full);
+       _encrypted->Show (full);
+
+       if (full) {
                add_label_to_sizer (_grid, _key_label, true, wxGBPosition (r, 0));
                {
                        wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL);
@@ -298,9 +310,10 @@ DCPPanel::frame_rate_choice_changed ()
        }
 
        _film->set_video_frame_rate (
-               boost::lexical_cast<int> (
-                       wx_to_std (_frame_rate_choice->GetString (_frame_rate_choice->GetSelection ()))
-                       )
+               boost::lexical_cast<int>(
+                       wx_to_std(_frame_rate_choice->GetString(_frame_rate_choice->GetSelection()))
+                       ),
+               true
                );
 }
 
@@ -556,6 +569,13 @@ DCPPanel::set_film (shared_ptr<Film> film)
 
        _film = film;
 
+       if (!_film) {
+               /* Really should all the film_changed below but this might be enough */
+               checked_set (_dcp_name, wxT(""));
+               set_general_sensitivity (false);
+               return;
+       }
+
        film_changed (Film::NAME);
        film_changed (Film::USE_ISDCF_NAME);
        film_changed (Film::CONTENT);
@@ -619,6 +639,8 @@ DCPPanel::setup_sensitivity ()
        _resolution->Enable             (_generally_sensitive && _film && !_film->references_dcp_video());
        _three_d->Enable                (_generally_sensitive && _film && !_film->references_dcp_video());
        _standard->Enable               (_generally_sensitive && _film && !_film->references_dcp_video() && !_film->references_dcp_audio());
+       _reencode_j2k->Enable           (_generally_sensitive && _film);
+       _show_audio->Enable             (_generally_sensitive && _film);
 }
 
 void
@@ -713,8 +735,6 @@ DCPPanel::setup_frame_rate_widget ()
                _frame_rate_choice->Show ();
                _frame_rate_spin->Hide ();
        }
-
-       _frame_rate_sizer->Layout ();
 }
 
 wxPanel *
@@ -728,28 +748,24 @@ DCPPanel::make_video_panel ()
 
        _container_label = create_label (panel, _("Container"), true);
        _container = new wxChoice (panel, wxID_ANY);
-       _container_size = new wxStaticText (panel, wxID_ANY, wxT (""));
+       _container_size = new StaticText (panel, wxT (""));
 
        _resolution_label = create_label (panel, _("Resolution"), true);
        _resolution = new wxChoice (panel, wxID_ANY);
 
        _frame_rate_label = create_label (panel, _("Frame Rate"), true);
        _frame_rate_choice = new wxChoice (panel, wxID_ANY);
-       _frame_rate_sizer = new wxBoxSizer (wxHORIZONTAL);
-       _frame_rate_sizer->Add (_frame_rate_choice, 1, wxALIGN_CENTER_VERTICAL);
        _frame_rate_spin = new wxSpinCtrl (panel, wxID_ANY);
-       _frame_rate_sizer->Add (_frame_rate_spin, 1, wxALIGN_CENTER_VERTICAL);
        setup_frame_rate_widget ();
-       _best_frame_rate = new wxButton (panel, wxID_ANY, _("Use best"));
-       _frame_rate_sizer->Add (_best_frame_rate, 1, wxALIGN_CENTER_VERTICAL);
+       _best_frame_rate = new Button (panel, _("Use best"));
 
-       _three_d = new wxCheckBox (panel, wxID_ANY, _("3D"));
+       _three_d = new CheckBox (panel, _("3D"));
 
        _j2k_bandwidth_label = create_label (panel, _("JPEG2000 bandwidth\nfor newly-encoded data"), true);
        _j2k_bandwidth = new wxSpinCtrl (panel, wxID_ANY);
        _mbits_label = create_label (panel, _("Mbit/s"), false);
 
-       _reencode_j2k = new wxCheckBox (panel, wxID_ANY, _("Re-encode JPEG2000 data from input"));
+       _reencode_j2k = new CheckBox (panel, _("Re-encode JPEG2000 data from input"));
 
        _container->Bind         (wxEVT_CHOICE,   boost::bind(&DCPPanel::container_changed, this));
        _frame_rate_choice->Bind (wxEVT_CHOICE,   boost::bind(&DCPPanel::frame_rate_choice_changed, this));
@@ -864,7 +880,7 @@ DCPPanel::make_audio_panel ()
                _audio_processor->Append (std_to_wx (ap->name ()), new wxStringClientData (std_to_wx (ap->id ())));
        }
 
-       _show_audio = new wxButton (panel, wxID_ANY, _("Show audio..."));
+       _show_audio = new Button (panel, _("Show audio..."));
 
        _audio_channels->Bind (wxEVT_CHOICE, boost::bind (&DCPPanel::audio_channels_changed, this));
        _audio_processor->Bind (wxEVT_CHOICE, boost::bind (&DCPPanel::audio_processor_changed, this));