Move _state_timer into VideoView.
[dcpomatic.git] / src / wx / timeline_content_view.h
1 /*
2     Copyright (C) 2013-2016 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_CONTENT_VIEW_H
22 #define DCPOMATIC_TIMELINE_CONTENT_VIEW_H
23
24 #include "lib/types.h"
25 #include "timeline_view.h"
26 #include <wx/wx.h>
27 #include <boost/signals2.hpp>
28
29 class Content;
30
31 /** @class TimelineContentView
32  *  @brief Parent class for views of pieces of content.
33  */
34 class TimelineContentView : public TimelineView
35 {
36 public:
37         TimelineContentView (Timeline& tl, boost::shared_ptr<Content> c);
38
39         dcpomatic::Rect<int> bbox () const;
40
41         void set_selected (bool s);
42         bool selected () const;
43         boost::shared_ptr<Content> content () const;
44         void set_track (int t);
45         void unset_track ();
46         boost::optional<int> track () const;
47
48         virtual bool active () const = 0;
49         virtual wxColour background_colour () const = 0;
50         virtual wxColour foreground_colour () const = 0;
51         virtual wxString label () const;
52
53 protected:
54
55         boost::weak_ptr<Content> _content;
56
57 private:
58
59         void do_paint (wxGraphicsContext* gc, std::list<dcpomatic::Rect<int> > overlaps);
60         int y_pos (int t) const;
61         void content_change (ChangeType type, int p);
62
63         boost::optional<int> _track;
64         bool _selected;
65
66         boost::signals2::scoped_connection _content_connection;
67 };
68
69 typedef std::vector<boost::shared_ptr<TimelineContentView> > TimelineContentViewList;
70
71 #endif