Accessor for ClosedCaptionsDialog.
[dcpomatic.git] / src / wx / timeline_labels_view.h
index 87b3cc90284a734f923a660f785a8878a67f7867..f26c9762b879abed4f73e1347b513489c183336f 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2016 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2016-2018 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
@@ -25,12 +25,13 @@ class wxWindow;
 class TimelineLabelsView : public TimelineView
 {
 public:
-       TimelineLabelsView (Timeline& tl);
+       explicit TimelineLabelsView (Timeline& tl);
 
        dcpomatic::Rect<int> bbox () const;
 
        void set_3d (bool s);
-       void set_subtitle_tracks (int n);
+       void set_audio_tracks (int n);
+       void set_text_tracks (int n);
        void set_atmos (bool s);
 
 private:
@@ -38,6 +39,7 @@ private:
 
        int _width;
        bool _threed;
-       int _subtitle_tracks;
+       int _audio_tracks;
+       int _text_tracks;
        bool _atmos;
 };