X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Ftiming_panel.h;h=d9696a20135671a711fe27a14bc2bd5565df237a;hb=e385ef84b198d9ec51c3d2a117d8ef8cfb7292d1;hp=7fea45eb5c4982ead55940d3cced32f83a978053;hpb=de68adffc0311511568484e9ab713bee8826ec2d;p=dcpomatic.git diff --git a/src/wx/timing_panel.h b/src/wx/timing_panel.h index 7fea45eb5..d9696a201 100644 --- a/src/wx/timing_panel.h +++ b/src/wx/timing_panel.h @@ -19,7 +19,7 @@ #include "film_editor_panel.h" -class DCPTimecode; +class Timecode; class TimingPanel : public FilmEditorPanel { @@ -35,10 +35,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; };