Disambiguate the word 'Custom' in translations.
[dcpomatic.git] / src / wx / video_panel.cc
index dd9bb58489dfadac1a6f93ac610c3c416db36fa2..bf452a29242ce62acd15ae145e94ecc444e7e897 100644 (file)
@@ -81,7 +81,7 @@ VideoPanel::VideoPanel (ContentPanel* p)
        grid->Add (_reference, wxGBPosition (r, 0), wxGBSpan (1, 2));
        ++r;
 
-       add_label_to_grid_bag_sizer (grid, this, _("Type"), true, wxGBPosition (r, 0));
+       add_label_to_sizer (grid, this, _("Type"), true, wxGBPosition (r, 0));
        _frame_type = new ContentChoice<VideoContent, VideoFrameType> (
                this,
                new wxChoice (this, wxID_ANY),
@@ -94,12 +94,12 @@ VideoPanel::VideoPanel (ContentPanel* p)
        _frame_type->add (grid, wxGBPosition (r, 1), wxGBSpan (1, 2));
        ++r;
 
-       add_label_to_grid_bag_sizer (grid, this, _("Crop"), true, wxGBPosition (r, 0));
+       add_label_to_sizer (grid, this, _("Crop"), true, wxGBPosition (r, 0));
 
        int cr = 0;
        wxGridBagSizer* crop = new wxGridBagSizer (DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
 
-       add_label_to_grid_bag_sizer (crop, this, _("Left"), true, wxGBPosition (cr, 0));
+       add_label_to_sizer (crop, this, _("Left"), true, wxGBPosition (cr, 0));
        _left_crop = new ContentSpinCtrl<VideoContent> (
                this,
                new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (64, -1)),
@@ -109,7 +109,7 @@ VideoPanel::VideoPanel (ContentPanel* p)
                );
        _left_crop->add (crop, wxGBPosition (cr, 1));
 
-       add_label_to_grid_bag_sizer (crop, this, _("Right"), true, wxGBPosition (cr, 2));
+       add_label_to_sizer (crop, this, _("Right"), true, wxGBPosition (cr, 2));
        _right_crop = new ContentSpinCtrl<VideoContent> (
                this,
                new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (64, -1)),
@@ -121,7 +121,7 @@ VideoPanel::VideoPanel (ContentPanel* p)
 
        ++cr;
 
-       add_label_to_grid_bag_sizer (crop, this, _("Top"), true, wxGBPosition (cr, 0));
+       add_label_to_sizer (crop, this, _("Top"), true, wxGBPosition (cr, 0));
        _top_crop = new ContentSpinCtrl<VideoContent> (
                this,
                new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (64, -1)),
@@ -131,7 +131,7 @@ VideoPanel::VideoPanel (ContentPanel* p)
                );
        _top_crop->add (crop, wxGBPosition (cr, 1));
 
-       add_label_to_grid_bag_sizer (crop, this, _("Bottom"), true, wxGBPosition (cr, 2));
+       add_label_to_sizer (crop, this, _("Bottom"), true, wxGBPosition (cr, 2));
        _bottom_crop = new ContentSpinCtrl<VideoContent> (
                this,
                new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (64, -1)),
@@ -144,17 +144,17 @@ VideoPanel::VideoPanel (ContentPanel* p)
        grid->Add (crop, wxGBPosition (r, 1), wxGBSpan (2, 3));
        r += 2;
 
-       add_label_to_grid_bag_sizer (grid, this, _("Fade in"), true, wxGBPosition (r, 0));
+       add_label_to_sizer (grid, this, _("Fade in"), true, wxGBPosition (r, 0));
        _fade_in = new Timecode<ContentTime> (this);
        grid->Add (_fade_in, wxGBPosition (r, 1), wxGBSpan (1, 3));
        ++r;
 
-       add_label_to_grid_bag_sizer (grid, this, _("Fade out"), true, wxGBPosition (r, 0));
+       add_label_to_sizer (grid, this, _("Fade out"), true, wxGBPosition (r, 0));
        _fade_out = new Timecode<ContentTime> (this);
        grid->Add (_fade_out, wxGBPosition (r, 1), wxGBSpan (1, 3));
        ++r;
 
-       add_label_to_grid_bag_sizer (grid, this, _("Scale to"), true, wxGBPosition (r, 0));
+       add_label_to_sizer (grid, this, _("Scale to"), true, wxGBPosition (r, 0));
        _scale = new ContentChoice<VideoContent, VideoContentScale> (
                this,
                new wxChoice (this, wxID_ANY),
@@ -171,7 +171,7 @@ VideoPanel::VideoPanel (ContentPanel* p)
        wxSize size = dc.GetTextExtent (wxT ("A quite long name"));
        size.SetHeight (-1);
 
-       add_label_to_grid_bag_sizer (grid, this, _("Filters"), true, wxGBPosition (r, 0));
+       add_label_to_sizer (grid, this, _("Filters"), true, wxGBPosition (r, 0));
        {
                wxSizer* s = new wxBoxSizer (wxHORIZONTAL);
 
@@ -184,7 +184,7 @@ VideoPanel::VideoPanel (ContentPanel* p)
        }
        ++r;
 
-       add_label_to_grid_bag_sizer (grid, this, _("Colour conversion"), true, wxGBPosition (r, 0));
+       add_label_to_sizer (grid, this, _("Colour conversion"), true, wxGBPosition (r, 0));
        {
                wxSizer* s = new wxBoxSizer (wxHORIZONTAL);
 
@@ -193,7 +193,7 @@ VideoPanel::VideoPanel (ContentPanel* p)
                BOOST_FOREACH (PresetColourConversion const & i, PresetColourConversion::all()) {
                        _colour_conversion->Append (std_to_wx (i.name));
                }
-               _colour_conversion->Append (_("Custom"));
+               _colour_conversion->Append (_("Colour|Custom"));
                s->Add (_colour_conversion, 1, wxEXPAND | wxALIGN_CENTER_VERTICAL | wxTOP | wxBOTTOM | wxRIGHT, 6);
 
                _edit_colour_conversion_button = new wxButton (this, wxID_ANY, _("Edit..."));
@@ -204,7 +204,7 @@ VideoPanel::VideoPanel (ContentPanel* p)
        ++r;
 
        _description = new wxStaticText (this, wxID_ANY, wxT ("\n \n \n \n \n"), wxDefaultPosition, wxDefaultSize);
-       grid->Add (_description, wxGBPosition (r, 0), wxGBSpan (1, 4), wxEXPAND | wxALIGN_CENTER_VERTICAL | wxALL, 6);
+       grid->Add (_description, wxGBPosition (r, 0), wxGBSpan (1, 4), wxEXPAND | wxALIGN_CENTER_VERTICAL, 6);
        wxFont font = _description->GetFont();
        font.SetStyle(wxFONTSTYLE_ITALIC);
        font.SetPointSize(font.GetPointSize() - 1);
@@ -246,6 +246,8 @@ VideoPanel::film_changed (Film::Property property)
        case Film::RESOLUTION:
                setup_description ();
                break;
+       case Film::REEL_TYPE:
+               setup_sensitivity ();
        default:
                break;
        }
@@ -271,23 +273,20 @@ VideoPanel::film_content_changed (int property)
        } else if (property == VideoContentProperty::VIDEO_FRAME_RATE) {
                setup_description ();
        } else if (property == VideoContentProperty::COLOUR_CONVERSION) {
-               if (!vcs) {
-                       checked_set (_colour_conversion, 0);
-                       _edit_colour_conversion_button->Enable (false);
-               } else if (vcs->colour_conversion ()) {
+               if (vcs && vcs->colour_conversion ()) {
                        optional<size_t> preset = vcs->colour_conversion().get().preset ();
                        vector<PresetColourConversion> cc = PresetColourConversion::all ();
                        if (preset) {
                                checked_set (_colour_conversion, preset.get() + 1);
-                               _edit_colour_conversion_button->Enable (false);
                        } else {
                                checked_set (_colour_conversion, cc.size() + 1);
-                               _edit_colour_conversion_button->Enable (true);
                        }
                } else {
                        checked_set (_colour_conversion, 0);
-                       _edit_colour_conversion_button->Enable (false);
                }
+
+               setup_sensitivity ();
+
        } else if (property == FFmpegContentProperty::FILTERS) {
                if (fcs) {
                        string p = Filter::ffmpeg_string (fcs->filters ());
@@ -400,7 +399,7 @@ VideoPanel::edit_colour_conversion_clicked ()
                return;
        }
 
-       ContentColourConversionDialog* d = new ContentColourConversionDialog (this);
+       ContentColourConversionDialog* d = new ContentColourConversionDialog (this, vc.front()->yuv ());
        d->set (vc.front()->colour_conversion().get_value_or (PresetColourConversion::all().front ().conversion));
        d->ShowModal ();
        vc.front()->set_colour_conversion (d->get ());
@@ -434,7 +433,15 @@ void
 VideoPanel::setup_sensitivity ()
 {
        ContentList sel = _parent->selected ();
-       _reference->Enable (sel.size() == 1 && dynamic_pointer_cast<DCPContent> (sel.front ()));
+
+       shared_ptr<DCPContent> dcp;
+       if (sel.size() == 1) {
+               dcp = dynamic_pointer_cast<DCPContent> (sel.front ());
+       }
+
+       list<string> why_not;
+       bool const can_reference = dcp && dcp->can_reference_video (why_not);
+       setup_refer_button (_reference, dcp, can_reference, why_not);
 
        if (_reference->GetValue ()) {
                _frame_type->wrapped()->Enable (false);
@@ -449,7 +456,6 @@ VideoPanel::setup_sensitivity ()
                _filters->Enable (false);
                _filters_button->Enable (false);
                _colour_conversion->Enable (false);
-               _edit_colour_conversion_button->Enable (false);
        } else {
                VideoContentList video_sel = _parent->selected_video ();
                FFmpegContentList ffmpeg_sel = _parent->selected_ffmpeg ();
@@ -467,7 +473,18 @@ VideoPanel::setup_sensitivity ()
                _filters->Enable (true);
                _filters_button->Enable (single && !ffmpeg_sel.empty ());
                _colour_conversion->Enable (single && !video_sel.empty ());
-               _edit_colour_conversion_button->Enable (true);
+       }
+
+       VideoContentList vc = _parent->selected_video ();
+       shared_ptr<VideoContent> vcs;
+       if (!vc.empty ()) {
+               vcs = vc.front ();
+       }
+
+       if (vcs && vcs->colour_conversion ()) {
+               _edit_colour_conversion_button->Enable (!vcs->colour_conversion().get().preset());
+       } else {
+               _edit_colour_conversion_button->Enable (false);
        }
 }