r969: Render format selector: Do not change the path name when the format is changed.
[cinelerra_cv/ct.git] / cinelerra / vtracking.h
blobe2eee9b15f04f5a974b0e431748fc9e7448f6a83
1 #ifndef VPLAYBACKCURSOR_H
2 #define VPLAYBACKCURSOR_H
4 #include "mwindow.inc"
5 #include "tracking.h"
6 #include "playbackengine.inc"
7 #include "vwindow.inc"
9 class VTracking : public Tracking
11 public:
12 VTracking(MWindow *mwindow, VWindow *vwindow);
13 ~VTracking();
15 PlaybackEngine* get_playback_engine();
16 void update_tracker(double position);
17 void update_meters(int64_t position);
18 void stop_meters();
19 void draw();
21 VWindow *vwindow;
24 #endif