X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Ftiming_panel.cc;h=df77a2ef1a5b38006fae2c31e60c0a5341e7dbd9;hb=4616b19fb5241a54c9d57f7a91bb975f41aed14b;hp=3fcb9b1753eeecc41d808ef2d27f7777196d1bbe;hpb=e6f28e7cda23c1ba3c49cc1bf2dc1491c2f87160;p=dcpomatic.git diff --git a/src/wx/timing_panel.cc b/src/wx/timing_panel.cc index 3fcb9b175..df77a2ef1 100644 --- a/src/wx/timing_panel.cc +++ b/src/wx/timing_panel.cc @@ -17,6 +17,7 @@ */ +#include #include "lib/content.h" #include "lib/image_content.h" #include "timing_panel.h" @@ -28,10 +29,11 @@ using std::cout; using std::string; using boost::shared_ptr; using boost::dynamic_pointer_cast; -using boost::lexical_cast; +using dcp::raw_convert; TimingPanel::TimingPanel (FilmEditor* e) - : FilmEditorPanel (e, _("Timing")) + /* horrid hack for apparent lack of context support with wxWidgets i18n code */ + : FilmEditorPanel (e, S_("Timing|Timing")) { wxFlexGridSizer* grid = new wxFlexGridSizer (2, 4, 4); _sizer->Add (grid, 0, wxALL, 8); @@ -80,10 +82,12 @@ TimingPanel::film_content_changed (int property) if (cl.size() == 1) { content = cl.front (); } + + int const film_video_frame_rate = _editor->film()->video_frame_rate (); if (property == ContentProperty::POSITION) { if (content) { - _position->set (content->position (), _editor->film()->video_frame_rate ()); + _position->set (content->position (), film_video_frame_rate); } else { _position->set (DCPTime () , 24); } @@ -93,24 +97,24 @@ TimingPanel::film_content_changed (int property) property == VideoContentProperty::VIDEO_FRAME_TYPE ) { if (content) { - _full_length->set (content->full_length (), _editor->film()->video_frame_rate ()); - _play_length->set (content->length_after_trim (), _editor->film()->video_frame_rate ()); + _full_length->set (content->full_length (), film_video_frame_rate); + _play_length->set (content->length_after_trim (), film_video_frame_rate); } else { _full_length->set (DCPTime (), 24); _play_length->set (DCPTime (), 24); } } else if (property == ContentProperty::TRIM_START) { if (content) { - _trim_start->set (content->trim_start (), _editor->film()->video_frame_rate ()); - _play_length->set (content->length_after_trim (), _editor->film()->video_frame_rate ()); + _trim_start->set (content->trim_start (), film_video_frame_rate); + _play_length->set (content->length_after_trim (), film_video_frame_rate); } else { _trim_start->set (DCPTime (), 24); _play_length->set (DCPTime (), 24); } } else if (property == ContentProperty::TRIM_END) { if (content) { - _trim_end->set (content->trim_end (), _editor->film()->video_frame_rate ()); - _play_length->set (content->length_after_trim (), _editor->film()->video_frame_rate ()); + _trim_end->set (content->trim_end (), film_video_frame_rate); + _play_length->set (content->length_after_trim (), film_video_frame_rate); } else { _trim_end->set (DCPTime (), 24); _play_length->set (DCPTime (), 24); @@ -121,7 +125,7 @@ TimingPanel::film_content_changed (int property) if (content) { shared_ptr vc = dynamic_pointer_cast (content); if (vc) { - _video_frame_rate->SetValue (std_to_wx (lexical_cast (vc->video_frame_rate ()))); + _video_frame_rate->SetValue (std_to_wx (raw_convert (vc->video_frame_rate (), 5))); } else { _video_frame_rate->SetValue ("24"); } @@ -130,10 +134,11 @@ TimingPanel::film_content_changed (int property) } } + shared_ptr vc = dynamic_pointer_cast (content); shared_ptr ic = dynamic_pointer_cast (content); _full_length->set_editable (ic && ic->still ()); _play_length->set_editable (!ic || !ic->still ()); - _video_frame_rate->Enable (ic && !ic->still ()); + _video_frame_rate->Enable (vc); _set_video_frame_rate->Enable (false); } @@ -198,11 +203,11 @@ TimingPanel::set_video_frame_rate () { ContentList c = _editor->selected_content (); if (c.size() == 1) { - shared_ptr ic = dynamic_pointer_cast (c.front ()); - if (ic) { - ic->set_video_frame_rate (lexical_cast (wx_to_std (_video_frame_rate->GetValue ()))); - _set_video_frame_rate->Enable (false); + shared_ptr vc = dynamic_pointer_cast (c.front ()); + if (vc) { + vc->set_video_frame_rate (raw_convert (wx_to_std (_video_frame_rate->GetValue ()))); } + _set_video_frame_rate->Enable (false); } }