C++11 tidying.
[dcpomatic.git] / src / wx / timeline_view.h
1 /*
2     Copyright (C) 2013-2021 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21
22 #ifndef DCPOMATIC_TIMELINE_VIEW_H
23 #define DCPOMATIC_TIMELINE_VIEW_H
24
25
26 #include "lib/rect.h"
27 #include "lib/dcpomatic_time.h"
28
29
30 class wxGraphicsContext;
31 class Timeline;
32
33
34 /** @class TimelineView
35  *  @brief Parent class for components of the timeline (e.g. a piece of content or an axis).
36  */
37 class TimelineView
38 {
39 public:
40         explicit TimelineView (Timeline& t);
41         virtual ~TimelineView () {}
42
43         TimelineView (TimelineView const&) = delete;
44         TimelineView& operator= (TimelineView const&) = delete;
45
46         void paint (wxGraphicsContext* g, std::list<dcpomatic::Rect<int>> overlaps);
47         void force_redraw ();
48
49         virtual dcpomatic::Rect<int> bbox () const = 0;
50
51 protected:
52         virtual void do_paint (wxGraphicsContext *, std::list<dcpomatic::Rect<int>> overlaps) = 0;
53
54         int time_x (dcpomatic::DCPTime t) const;
55
56         Timeline& _timeline;
57
58 private:
59         dcpomatic::Rect<int> _last_paint_bbox;
60 };
61
62
63 typedef std::vector<std::shared_ptr<TimelineView>> TimelineViewList;
64
65
66 #endif