Merge master.
[dcpomatic.git] / src / wx / timing_panel.h
index 8c519bcbe77b9520b7a152e12ac7f2278a32df96..b531db5512ed3974da1ed253878cc45dbe7d86d5 100644 (file)
 
 */
 
-#include "film_editor_panel.h"
+#include "content_sub_panel.h"
 
 class Timecode;
 
-class TimingPanel : public FilmEditorPanel
+class TimingPanel : public ContentSubPanel
 {
 public:
-       TimingPanel (FilmEditor *);
+       TimingPanel (ContentPanel *);
 
        void film_content_changed (int);
        void content_selection_changed ();
        
 private:
        void position_changed ();
-       void length_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* _position;
-       Timecode* _length;
+       Timecode* _full_length;
        Timecode* _trim_start;
        Timecode* _trim_end;
+       Timecode* _play_length;
+       wxTextCtrl* _video_frame_rate;
+       wxButton* _set_video_frame_rate;
 };