Rename video/audio/subtitle part methods.
[dcpomatic.git] / src / wx / video_panel.cc
index a2c35ec764e0094559da4241ecca952d352416ee..28a26ce087612ab95db476cf11e52e4f3e25c067 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2012-2016 Carl Hetherington <cth@carlh.net>
 
     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
@@ -31,6 +31,7 @@
 #include "lib/ratio.h"
 #include "lib/frame_rate_change.h"
 #include "lib/dcp_content.h"
+#include "lib/video_content.h"
 #include <wx/spinctrl.h>
 #include <boost/foreach.hpp>
 #include <set>
@@ -85,9 +86,10 @@ VideoPanel::VideoPanel (ContentPanel* p)
        _frame_type = new ContentChoice<VideoContent, VideoFrameType> (
                this,
                new wxChoice (this, wxID_ANY),
-               VideoContentProperty::VIDEO_FRAME_TYPE,
-               boost::mem_fn (&VideoContent::video_frame_type),
-               boost::mem_fn (&VideoContent::set_video_frame_type),
+               VideoContentProperty::FRAME_TYPE,
+               &Content::video,
+               boost::mem_fn (&VideoContent::frame_type),
+               boost::mem_fn (&VideoContent::set_frame_type),
                &caster<int, VideoFrameType>,
                &caster<VideoFrameType, int>
                );
@@ -103,7 +105,8 @@ VideoPanel::VideoPanel (ContentPanel* p)
        _left_crop = new ContentSpinCtrl<VideoContent> (
                this,
                new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (64, -1)),
-               VideoContentProperty::VIDEO_CROP,
+               VideoContentProperty::CROP,
+               &Content::video,
                boost::mem_fn (&VideoContent::left_crop),
                boost::mem_fn (&VideoContent::set_left_crop)
                );
@@ -113,7 +116,8 @@ VideoPanel::VideoPanel (ContentPanel* p)
        _right_crop = new ContentSpinCtrl<VideoContent> (
                this,
                new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (64, -1)),
-               VideoContentProperty::VIDEO_CROP,
+               VideoContentProperty::CROP,
+               &Content::video,
                boost::mem_fn (&VideoContent::right_crop),
                boost::mem_fn (&VideoContent::set_right_crop)
                );
@@ -125,7 +129,8 @@ VideoPanel::VideoPanel (ContentPanel* p)
        _top_crop = new ContentSpinCtrl<VideoContent> (
                this,
                new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (64, -1)),
-               VideoContentProperty::VIDEO_CROP,
+               VideoContentProperty::CROP,
+               &Content::video,
                boost::mem_fn (&VideoContent::top_crop),
                boost::mem_fn (&VideoContent::set_top_crop)
                );
@@ -135,7 +140,8 @@ VideoPanel::VideoPanel (ContentPanel* p)
        _bottom_crop = new ContentSpinCtrl<VideoContent> (
                this,
                new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (64, -1)),
-               VideoContentProperty::VIDEO_CROP,
+               VideoContentProperty::CROP,
+               &Content::video,
                boost::mem_fn (&VideoContent::bottom_crop),
                boost::mem_fn (&VideoContent::set_bottom_crop)
                );
@@ -158,7 +164,8 @@ VideoPanel::VideoPanel (ContentPanel* p)
        _scale = new ContentChoice<VideoContent, VideoContentScale> (
                this,
                new wxChoice (this, wxID_ANY),
-               VideoContentProperty::VIDEO_SCALE,
+               VideoContentProperty::SCALE,
+               &Content::video,
                boost::mem_fn (&VideoContent::scale),
                boost::mem_fn (&VideoContent::set_scale),
                &index_to_scale,
@@ -193,7 +200,9 @@ VideoPanel::VideoPanel (ContentPanel* p)
                BOOST_FOREACH (PresetColourConversion const & i, PresetColourConversion::all()) {
                        _colour_conversion->Append (std_to_wx (i.name));
                }
-               _colour_conversion->Append (_("Custom"));
+
+               /// TRANSLATORS: translate the word "Custom" here; do not include the "Colour|" prefix
+               _colour_conversion->Append (S_("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 +213,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);
@@ -256,40 +265,37 @@ VideoPanel::film_changed (Film::Property property)
 void
 VideoPanel::film_content_changed (int property)
 {
-       VideoContentList vc = _parent->selected_video ();
-       shared_ptr<VideoContent> vcs;
+       ContentList vc = _parent->selected_video ();
+       shared_ptr<Content> vcs;
        shared_ptr<FFmpegContent> fcs;
        if (!vc.empty ()) {
                vcs = vc.front ();
                fcs = dynamic_pointer_cast<FFmpegContent> (vcs);
        }
 
-       if (property == VideoContentProperty::VIDEO_FRAME_TYPE) {
+       if (property == VideoContentProperty::FRAME_TYPE) {
                setup_description ();
-       } else if (property == VideoContentProperty::VIDEO_CROP) {
+       } else if (property == VideoContentProperty::CROP) {
                setup_description ();
-       } else if (property == VideoContentProperty::VIDEO_SCALE) {
+       } else if (property == VideoContentProperty::SCALE) {
                setup_description ();
-       } else if (property == VideoContentProperty::VIDEO_FRAME_RATE) {
+       } else if (property == VideoContentProperty::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 ()) {
-                       optional<size_t> preset = vcs->colour_conversion().get().preset ();
+               if (vcs && vcs->video->colour_conversion ()) {
+                       optional<size_t> preset = vcs->video->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 ());
@@ -302,25 +308,31 @@ VideoPanel::film_content_changed (int property)
                                checked_set (_filters, p);
                        }
                }
-       } else if (property == VideoContentProperty::VIDEO_FADE_IN) {
+       } else if (property == VideoContentProperty::FADE_IN) {
                set<Frame> check;
-               BOOST_FOREACH (shared_ptr<const VideoContent> i, vc) {
-                       check.insert (i->fade_in ());
+               BOOST_FOREACH (shared_ptr<const Content> i, vc) {
+                       check.insert (i->video->fade_in ());
                }
 
                if (check.size() == 1) {
-                       _fade_in->set (ContentTime::from_frames (vc.front()->fade_in (), vc.front()->video_frame_rate ()), vc.front()->video_frame_rate ());
+                       _fade_in->set (
+                               ContentTime::from_frames (vc.front()->video->fade_in (), vc.front()->video->frame_rate ()),
+                               vc.front()->video->frame_rate ()
+                               );
                } else {
                        _fade_in->clear ();
                }
-       } else if (property == VideoContentProperty::VIDEO_FADE_OUT) {
+       } else if (property == VideoContentProperty::FADE_OUT) {
                set<Frame> check;
-               BOOST_FOREACH (shared_ptr<const VideoContent> i, vc) {
-                       check.insert (i->fade_out ());
+               BOOST_FOREACH (shared_ptr<const Content> i, vc) {
+                       check.insert (i->video->fade_out ());
                }
 
                if (check.size() == 1) {
-                       _fade_out->set (ContentTime::from_frames (vc.front()->fade_out (), vc.front()->video_frame_rate ()), vc.front()->video_frame_rate ());
+                       _fade_out->set (
+                               ContentTime::from_frames (vc.front()->video->fade_out (), vc.front()->video->frame_rate ()),
+                               vc.front()->video->frame_rate ()
+                               );
                } else {
                        _fade_out->clear ();
                }
@@ -354,7 +366,7 @@ VideoPanel::edit_filters_clicked ()
 void
 VideoPanel::setup_description ()
 {
-       VideoContentList vc = _parent->selected_video ();
+       ContentList vc = _parent->selected_video ();
        if (vc.empty ()) {
                checked_set (_description, wxT (""));
                return;
@@ -363,7 +375,7 @@ VideoPanel::setup_description ()
                return;
        }
 
-       string d = vc.front()->processing_description ();
+       string d = vc.front()->video->processing_description ();
        size_t lines = count (d.begin(), d.end(), '\n');
 
        for (int i = lines; i < 6; ++i) {
@@ -377,7 +389,7 @@ VideoPanel::setup_description ()
 void
 VideoPanel::colour_conversion_changed ()
 {
-       VideoContentList vc = _parent->selected_video ();
+       ContentList vc = _parent->selected_video ();
        if (vc.size() != 1) {
                return;
        }
@@ -386,33 +398,33 @@ VideoPanel::colour_conversion_changed ()
        vector<PresetColourConversion> all = PresetColourConversion::all ();
 
        if (s == 0) {
-               vc.front()->unset_colour_conversion ();
+               vc.front()->video->unset_colour_conversion ();
        } else if (s == int (all.size() + 1)) {
                edit_colour_conversion_clicked ();
        } else {
-               vc.front()->set_colour_conversion (all[s - 1].conversion);
+               vc.front()->video->set_colour_conversion (all[s - 1].conversion);
        }
 }
 
 void
 VideoPanel::edit_colour_conversion_clicked ()
 {
-       VideoContentList vc = _parent->selected_video ();
+       ContentList vc = _parent->selected_video ();
        if (vc.size() != 1) {
                return;
        }
 
-       ContentColourConversionDialog* d = new ContentColourConversionDialog (this, vc.front()->yuv ());
-       d->set (vc.front()->colour_conversion().get_value_or (PresetColourConversion::all().front ().conversion));
+       ContentColourConversionDialog* d = new ContentColourConversionDialog (this, vc.front()->video->yuv ());
+       d->set (vc.front()->video->colour_conversion().get_value_or (PresetColourConversion::all().front ().conversion));
        d->ShowModal ();
-       vc.front()->set_colour_conversion (d->get ());
+       vc.front()->video->set_colour_conversion (d->get ());
        d->Destroy ();
 }
 
 void
 VideoPanel::content_selection_changed ()
 {
-       VideoContentList video_sel = _parent->selected_video ();
+       ContentList video_sel = _parent->selected_video ();
 
        _frame_type->set_content (video_sel);
        _left_crop->set_content (video_sel);
@@ -421,11 +433,11 @@ VideoPanel::content_selection_changed ()
        _bottom_crop->set_content (video_sel);
        _scale->set_content (video_sel);
 
-       film_content_changed (VideoContentProperty::VIDEO_CROP);
-       film_content_changed (VideoContentProperty::VIDEO_FRAME_RATE);
+       film_content_changed (VideoContentProperty::CROP);
+       film_content_changed (VideoContentProperty::FRAME_RATE);
        film_content_changed (VideoContentProperty::COLOUR_CONVERSION);
-       film_content_changed (VideoContentProperty::VIDEO_FADE_IN);
-       film_content_changed (VideoContentProperty::VIDEO_FADE_OUT);
+       film_content_changed (VideoContentProperty::FADE_IN);
+       film_content_changed (VideoContentProperty::FADE_OUT);
        film_content_changed (FFmpegContentProperty::FILTERS);
        film_content_changed (DCPContentProperty::REFERENCE_VIDEO);
 
@@ -443,17 +455,8 @@ VideoPanel::setup_sensitivity ()
        }
 
        list<string> why_not;
-       bool const can_reference = dcp && dcp->can_reference_video(why_not);
-       _reference->Enable (can_reference);
-
-       wxString s;
-       if (!can_reference) {
-               s = _("Cannot reference this DCP.  ");
-               BOOST_FOREACH (string i, why_not) {
-                       s += std_to_wx(i) + wxT("  ");
-               }
-       }
-       _reference->SetToolTip (s);
+       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);
@@ -468,9 +471,8 @@ 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 ();
+               ContentList video_sel = _parent->selected_video ();
                FFmpegContentList ffmpeg_sel = _parent->selected_ffmpeg ();
                bool const single = video_sel.size() == 1;
 
@@ -486,25 +488,36 @@ 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);
+       }
+
+       ContentList vc = _parent->selected_video ();
+       shared_ptr<Content> vcs;
+       if (!vc.empty ()) {
+               vcs = vc.front ();
+       }
+
+       if (vcs && vcs->video->colour_conversion ()) {
+               _edit_colour_conversion_button->Enable (!vcs->video->colour_conversion().get().preset());
+       } else {
+               _edit_colour_conversion_button->Enable (false);
        }
 }
 
 void
 VideoPanel::fade_in_changed ()
 {
-       BOOST_FOREACH (shared_ptr<VideoContent> i, _parent->selected_video ()) {
+       BOOST_FOREACH (shared_ptr<Content> i, _parent->selected_video ()) {
                int const vfr = _parent->film()->video_frame_rate ();
-               i->set_fade_in (_fade_in->get (vfr).frames_round (vfr));
+               i->video->set_fade_in (_fade_in->get (vfr).frames_round (vfr));
        }
 }
 
 void
 VideoPanel::fade_out_changed ()
 {
-       BOOST_FOREACH (shared_ptr<VideoContent> i, _parent->selected_video ()) {
+       BOOST_FOREACH (shared_ptr<Content> i, _parent->selected_video ()) {
                int const vfr = _parent->film()->video_frame_rate ();
-               i->set_fade_out (_fade_out->get (vfr).frames_round (vfr));
+               i->video->set_fade_out (_fade_out->get (vfr).frames_round (vfr));
        }
 }