summaryrefslogtreecommitdiff
path: root/src/wx/timeline_labels_view.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-05-25 16:55:42 +0100
committerCarl Hetherington <cth@carlh.net>2016-05-25 16:55:42 +0100
commit48e51965d74cf2a2f2f6f4c5e9c349f1b1103e66 (patch)
tree544effa2cf914f1bcc5b98c05cd6c9473f10ed06 /src/wx/timeline_labels_view.h
parentf79a483c937dad8a89410b5aed97c11d8a715443 (diff)
Basics of Atmos content support; can be added to project and appears in timeline.
Diffstat (limited to 'src/wx/timeline_labels_view.h')
-rw-r--r--src/wx/timeline_labels_view.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/wx/timeline_labels_view.h b/src/wx/timeline_labels_view.h
index 96dd692af..846184a92 100644
--- a/src/wx/timeline_labels_view.h
+++ b/src/wx/timeline_labels_view.h
@@ -28,8 +28,15 @@ public:
dcpomatic::Rect<int> bbox () const;
+ void set_3d (bool s);
+ void set_subtitle (bool s);
+ void set_atmos (bool s);
+
private:
void do_paint (wxGraphicsContext* gc, std::list<dcpomatic::Rect<int> > overlaps);
int _width;
+ bool _threed;
+ bool _subtitle;
+ bool _atmos;
};