summaryrefslogtreecommitdiff
path: root/src/wx/timeline_view.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-02-25 17:06:44 +0000
committerCarl Hetherington <cth@carlh.net>2016-02-25 17:06:44 +0000
commitd2e8a683eed6fb82d4d255fffaf571ff27057132 (patch)
treebea3ed6db13ab6d5a72673aa2c30a55d9e188f03 /src/wx/timeline_view.h
parent03356464b29ff84f72d252efb22502754f55cfce (diff)
Plot video and subtitle on one track and audio on the rest in the timeline.
Diffstat (limited to 'src/wx/timeline_view.h')
-rw-r--r--src/wx/timeline_view.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/timeline_view.h b/src/wx/timeline_view.h
index 55fd64d51..01f1ca23d 100644
--- a/src/wx/timeline_view.h
+++ b/src/wx/timeline_view.h
@@ -36,13 +36,13 @@ public:
TimelineView (Timeline& t);
virtual ~TimelineView () {}
- void paint (wxGraphicsContext* g);
+ void paint (wxGraphicsContext* g, std::list<dcpomatic::Rect<int> > overlaps);
void force_redraw ();
virtual dcpomatic::Rect<int> bbox () const = 0;
protected:
- virtual void do_paint (wxGraphicsContext *) = 0;
+ virtual void do_paint (wxGraphicsContext *, std::list<dcpomatic::Rect<int> > overlaps) = 0;
int time_x (DCPTime t) const;