Merge branch '1.0' into 1.0-seek
[dcpomatic.git] / src / wx / timing_panel.h
index 8c519bcbe77b9520b7a152e12ac7f2278a32df96..7fea45eb5c4982ead55940d3cced32f83a978053 100644 (file)
@@ -19,7 +19,7 @@
 
 #include "film_editor_panel.h"
 
-class Timecode;
+class DCPTimecode;
 
 class TimingPanel : public FilmEditorPanel
 {
@@ -31,12 +31,14 @@ public:
        
 private:
        void position_changed ();
-       void length_changed ();
+       void full_length_changed ();
        void trim_start_changed ();
        void trim_end_changed ();
+       void play_length_changed ();
        
-       Timecode* _position;
-       Timecode* _length;
-       Timecode* _trim_start;
-       Timecode* _trim_end;
+       DCPTimecode* _position;
+       DCPTimecode* _full_length;
+       DCPTimecode* _trim_start;
+       DCPTimecode* _trim_end;
+       DCPTimecode* _play_length;
 };