X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Ftiming_panel.h;h=00b7f84e75f63e09b13a38a8afa1cfc8bc2f1971;hb=fe47588e80b35c07fc25b1d9e79bc13b6e439ff0;hp=7fea45eb5c4982ead55940d3cced32f83a978053;hpb=b8fb440b93ff5ee835249204bd5642cf95a4ac99;p=dcpomatic.git diff --git a/src/wx/timing_panel.h b/src/wx/timing_panel.h index 7fea45eb5..00b7f84e7 100644 --- a/src/wx/timing_panel.h +++ b/src/wx/timing_panel.h @@ -17,14 +17,13 @@ */ -#include "film_editor_panel.h" +#include "content_sub_panel.h" +#include "timecode.h" -class DCPTimecode; - -class TimingPanel : public FilmEditorPanel +class TimingPanel : public ContentSubPanel { public: - TimingPanel (FilmEditor *); + TimingPanel (ContentPanel *); void film_content_changed (int); void content_selection_changed (); @@ -35,10 +34,14 @@ private: void trim_start_changed (); void trim_end_changed (); void play_length_changed (); + void video_frame_rate_changed (); + void set_video_frame_rate (); - DCPTimecode* _position; - DCPTimecode* _full_length; - DCPTimecode* _trim_start; - DCPTimecode* _trim_end; - DCPTimecode* _play_length; + Timecode* _position; + Timecode* _full_length; + Timecode* _trim_start; + Timecode* _trim_end; + Timecode* _play_length; + wxTextCtrl* _video_frame_rate; + wxButton* _set_video_frame_rate; };