Extract common code out into kdm_for_screen()
[dcpomatic.git] / src / wx / timeline_view.h
1 /*
2     Copyright (C) 2013-2015 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 #ifndef DCPOMATIC_TIMELINE_VIEW_H
22 #define DCPOMATIC_TIMELINE_VIEW_H
23
24 #include "lib/rect.h"
25 #include "lib/dcpomatic_time.h"
26 #include <boost/noncopyable.hpp>
27
28 class wxGraphicsContext;
29 class Timeline;
30
31 /** @class TimelineView
32  *  @brief Parent class for components of the timeline (e.g. a piece of content or an axis).
33  */
34 class TimelineView : public boost::noncopyable
35 {
36 public:
37         explicit TimelineView (Timeline& t);
38         virtual ~TimelineView () {}
39
40         void paint (wxGraphicsContext* g, std::list<dcpomatic::Rect<int> > overlaps);
41         void force_redraw ();
42
43         virtual dcpomatic::Rect<int> bbox () const = 0;
44
45 protected:
46         virtual void do_paint (wxGraphicsContext *, std::list<dcpomatic::Rect<int> > overlaps) = 0;
47
48         int time_x (dcpomatic::DCPTime t) const;
49
50         Timeline& _timeline;
51
52 private:
53         dcpomatic::Rect<int> _last_paint_bbox;
54 };
55
56 typedef std::vector<boost::shared_ptr<TimelineView> > TimelineViewList;
57
58 #endif