summaryrefslogtreecommitdiff
path: root/src/wx/timing_panel.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-09-30 09:33:33 +0100
committerCarl Hetherington <cth@carlh.net>2014-09-30 20:38:12 +0100
commita4d8e5d24beddb719180e75f1047ae317bef85a4 (patch)
tree9884019a61aabfc0658d16e29cfd6a4b4a21c485 /src/wx/timing_panel.h
parent391d85619ac19a2a93696ddc35c222eb9bb5d9d6 (diff)
Basic video fade support.
Diffstat (limited to 'src/wx/timing_panel.h')
-rw-r--r--src/wx/timing_panel.h13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/wx/timing_panel.h b/src/wx/timing_panel.h
index b531db551..00b7f84e7 100644
--- a/src/wx/timing_panel.h
+++ b/src/wx/timing_panel.h
@@ -18,8 +18,7 @@
*/
#include "content_sub_panel.h"
-
-class Timecode;
+#include "timecode.h"
class TimingPanel : public ContentSubPanel
{
@@ -38,11 +37,11 @@ private:
void video_frame_rate_changed ();
void set_video_frame_rate ();
- Timecode* _position;
- Timecode* _full_length;
- Timecode* _trim_start;
- Timecode* _trim_end;
- Timecode* _play_length;
+ Timecode<DCPTime>* _position;
+ Timecode<DCPTime>* _full_length;
+ Timecode<DCPTime>* _trim_start;
+ Timecode<DCPTime>* _trim_end;
+ Timecode<DCPTime>* _play_length;
wxTextCtrl* _video_frame_rate;
wxButton* _set_video_frame_rate;
};