X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fwx%2Ftimeline_labels_view.h;h=88094f2c4068cd64cc4110eb165dc80d24a582ac;hb=14a9755762cf1d1e33877dec4a02b627dfa400cb;hp=3b71533440f383f3fb71b782ea4648ff2da74e38;hpb=3828baf56467224f5d44049bf1e7a7ed11f43a05;p=dcpomatic.git diff --git a/src/wx/timeline_labels_view.h b/src/wx/timeline_labels_view.h index 3b7153344..88094f2c4 100644 --- a/src/wx/timeline_labels_view.h +++ b/src/wx/timeline_labels_view.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2016 Carl Hetherington + Copyright (C) 2016-2018 Carl Hetherington This file is part of DCP-o-matic. @@ -25,19 +25,21 @@ class wxWindow; class TimelineLabelsView : public TimelineView { public: - TimelineLabelsView (Timeline& tl); + explicit TimelineLabelsView (Timeline& tl); dcpomatic::Rect bbox () const; - void set_3d (bool s); - void set_subtitle (bool s); + void set_video_tracks (int n); + void set_audio_tracks (int n); + void set_text_tracks (int n); void set_atmos (bool s); private: void do_paint (wxGraphicsContext* gc, std::list > overlaps); - int _width; - bool _threed; - bool _subtitle; - bool _atmos; + int _width = 0; + int _video_tracks = 0; + int _audio_tracks = 0; + int _text_tracks = 0; + bool _atmos = true; };