X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Ftiming_panel.h;h=d9696a20135671a711fe27a14bc2bd5565df237a;hb=b299c1873bf23414061d551843275c77a9256a05;hp=0aaabcc659acc51fc2d66f7ccf47a41c5bec6609;hpb=eceeb0c13cdaf08204968047269b49d8d493f741;p=dcpomatic.git diff --git a/src/wx/timing_panel.h b/src/wx/timing_panel.h index 0aaabcc65..d9696a201 100644 --- a/src/wx/timing_panel.h +++ b/src/wx/timing_panel.h @@ -26,17 +26,23 @@ class TimingPanel : public FilmEditorPanel public: TimingPanel (FilmEditor *); - void film_content_changed ( - boost::shared_ptr, - boost::shared_ptr, - boost::shared_ptr, - boost::shared_ptr, - int); + void film_content_changed (int); + void content_selection_changed (); private: - void start_changed (); - void length_changed (); + void position_changed (); + void full_length_changed (); + void trim_start_changed (); + void trim_end_changed (); + void play_length_changed (); + void video_frame_rate_changed (); + void set_video_frame_rate (); - Timecode* _start; - Timecode* _length; + Timecode* _position; + Timecode* _full_length; + Timecode* _trim_start; + Timecode* _trim_end; + Timecode* _play_length; + wxTextCtrl* _video_frame_rate; + wxButton* _set_video_frame_rate; };