X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fcontrols.cc;h=700769a50c7543cdaee030223128facda4541323;hb=92933c13e9233149e4e80244d92da81b70072214;hp=86329efb39425f8f4ff40b88cf52751df7f5d4f5;hpb=1a7c50245309bb0b99001940b2203a267de942ca;p=dcpomatic.git diff --git a/src/wx/controls.cc b/src/wx/controls.cc index 86329efb3..700769a50 100644 --- a/src/wx/controls.cc +++ b/src/wx/controls.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2018-2019 Carl Hetherington + Copyright (C) 2018-2021 Carl Hetherington This file is part of DCP-o-matic. @@ -18,6 +18,7 @@ */ + #include "controls.h" #include "film_viewer.h" #include "wx_util.h" @@ -43,15 +44,16 @@ #include #include + using std::string; using std::list; using std::cout; using std::make_pair; using std::exception; using boost::optional; -using boost::shared_ptr; -using boost::weak_ptr; -using boost::dynamic_pointer_cast; +using std::shared_ptr; +using std::weak_ptr; +using std::dynamic_pointer_cast; #if BOOST_VERSION >= 106100 using namespace boost::placeholders; #endif @@ -60,23 +62,23 @@ using namespace dcpomatic; Controls::Controls (wxWindow* parent, shared_ptr viewer, bool editor_controls) : wxPanel (parent) - , _slider (new wxSlider (this, wxID_ANY, 0, 0, 4096)) + , _slider (new wxSlider(this, wxID_ANY, 0, 0, 4096)) , _viewer (viewer) , _slider_being_moved (false) , _outline_content (0) , _eye (0) , _jump_to_selected (0) - , _rewind_button (new Button (this, wxT("|<"))) - , _back_button (new Button (this, wxT("<"))) - , _forward_button (new Button (this, wxT(">"))) - , _frame_number (new StaticText (this, wxT(""))) - , _timecode (new StaticText (this, wxT(""))) + , _rewind_button (new Button(this, wxT("|<"))) + , _back_button (new Button(this, wxT("<"))) + , _forward_button (new Button(this, wxT(">"))) + , _frame_number (new StaticText(this, wxT(""))) + , _timecode (new StaticText(this, wxT(""))) , _timer (this) { _v_sizer = new wxBoxSizer (wxVERTICAL); SetSizer (_v_sizer); - wxBoxSizer* view_options = new wxBoxSizer (wxHORIZONTAL); + auto view_options = new wxBoxSizer (wxHORIZONTAL); if (editor_controls) { _outline_content = new CheckBox (this, _("Outline content")); view_options->Add (_outline_content, 0, wxRIGHT | wxALIGN_CENTER_VERTICAL, DCPOMATIC_SIZER_GAP); @@ -91,16 +93,16 @@ Controls::Controls (wxWindow* parent, shared_ptr viewer, bool editor _v_sizer->Add (view_options, 0, wxALL, DCPOMATIC_SIZER_GAP); - wxBoxSizer* h_sizer = new wxBoxSizer (wxHORIZONTAL); + auto h_sizer = new wxBoxSizer (wxHORIZONTAL); - wxBoxSizer* time_sizer = new wxBoxSizer (wxVERTICAL); + auto time_sizer = new wxBoxSizer (wxVERTICAL); time_sizer->Add (_frame_number, 0, wxEXPAND); time_sizer->Add (_timecode, 0, wxEXPAND); - h_sizer->Add (_rewind_button, 0, wxALL, 2); + h_sizer->Add (_rewind_button, 0, wxALL | wxALIGN_CENTER_VERTICAL, 2); h_sizer->Add (time_sizer, 0, wxEXPAND); - h_sizer->Add (_back_button, 0, wxALL, 2); - h_sizer->Add (_forward_button, 0, wxALL, 2); + h_sizer->Add (_back_button, 0, wxALL | wxALIGN_CENTER_VERTICAL, 2); + h_sizer->Add (_forward_button, 0, wxALL | wxALIGN_CENTER_VERTICAL, 2); _button_sizer = new wxBoxSizer (wxHORIZONTAL); h_sizer->Add (_button_sizer, 0, wxEXPAND); @@ -166,18 +168,21 @@ Controls::config_changed (int) setup_sensitivity (); } + void Controls::started () { setup_sensitivity (); } + void Controls::stopped () { setup_sensitivity (); } + void Controls::update_position () { @@ -187,18 +192,21 @@ Controls::update_position () } } + void Controls::eye_changed () { - _viewer->set_eyes (_eye->GetSelection() == 0 ? EYES_LEFT : EYES_RIGHT); + _viewer->set_eyes (_eye->GetSelection() == 0 ? Eyes::LEFT : Eyes::RIGHT); } + void Controls::outline_content_changed () { _viewer->set_outline_content (_outline_content->GetValue()); } + /** @param page true if this was a PAGEUP/PAGEDOWN event for which we won't receive a THUMBRELEASE */ void Controls::slider_moved (bool page) @@ -233,6 +241,7 @@ Controls::slider_moved (bool page) ); } + void Controls::slider_released () { @@ -241,6 +250,7 @@ Controls::slider_released () _slider_being_moved = false; } + void Controls::update_position_slider () { @@ -249,7 +259,7 @@ Controls::update_position_slider () return; } - DCPTime const len = _film->length (); + auto const len = _film->length (); if (len.get ()) { int const new_slider_position = 4096 * _viewer->position().get() / len.get(); @@ -259,6 +269,7 @@ Controls::update_position_slider () } } + void Controls::update_position_label () { @@ -274,6 +285,7 @@ Controls::update_position_label () checked_set (_timecode, time_to_timecode (_viewer->position(), fps)); } + void Controls::active_jobs_changed (optional j) { @@ -281,10 +293,11 @@ Controls::active_jobs_changed (optional j) setup_sensitivity (); } + DCPTime Controls::nudge_amount (wxKeyboardState& ev) { - DCPTime amount = _viewer->one_video_frame (); + auto amount = _viewer->one_video_frame (); if (ev.ShiftDown() && !ev.ControlDown()) { amount = DCPTime::from_seconds (1); @@ -297,6 +310,7 @@ Controls::nudge_amount (wxKeyboardState& ev) return amount; } + void Controls::rewind_clicked (wxMouseEvent& ev) { @@ -304,30 +318,35 @@ Controls::rewind_clicked (wxMouseEvent& ev) ev.Skip(); } + void Controls::back_frame () { _viewer->seek_by (-_viewer->one_video_frame(), true); } + void Controls::forward_frame () { _viewer->seek_by (_viewer->one_video_frame(), true); } + void Controls::back_clicked (wxKeyboardState& ev) { _viewer->seek_by (-nudge_amount(ev), true); } + void Controls::forward_clicked (wxKeyboardState& ev) { _viewer->seek_by (nudge_amount(ev), true); } + void Controls::setup_sensitivity () { @@ -353,32 +372,36 @@ Controls::setup_sensitivity () } } + void Controls::timecode_clicked () { - PlayheadToTimecodeDialog* dialog = new PlayheadToTimecodeDialog (this, _viewer->position(), _film->video_frame_rate()); + auto dialog = new PlayheadToTimecodeDialog (this, _viewer->position(), _film->video_frame_rate()); if (dialog->ShowModal() == wxID_OK) { _viewer->seek (dialog->get(), true); } dialog->Destroy (); } + void Controls::frame_number_clicked () { - PlayheadToFrameDialog* dialog = new PlayheadToFrameDialog (this, _viewer->position(), _film->video_frame_rate()); + auto dialog = new PlayheadToFrameDialog (this, _viewer->position(), _film->video_frame_rate()); if (dialog->ShowModal() == wxID_OK) { _viewer->seek (dialog->get(), true); } dialog->Destroy (); } + void Controls::jump_to_selected_clicked () { Config::instance()->set_jump_to_selected (_jump_to_selected->GetValue ()); } + void Controls::set_film (shared_ptr film) { @@ -398,26 +421,29 @@ Controls::set_film (shared_ptr film) update_position_label (); } + shared_ptr Controls::film () const { return _film; } + void Controls::film_change (ChangeType type, Film::Property p) { - if (type == CHANGE_TYPE_DONE) { - if (p == Film::CONTENT) { + if (type == ChangeType::DONE) { + if (p == Film::Property::CONTENT) { setup_sensitivity (); update_position_label (); update_position_slider (); - } else if (p == Film::THREE_D) { + } else if (p == Film::Property::THREE_D) { setup_sensitivity (); } } } + void Controls::seek (int slider) {