No-op; fix GPL address and use the explicit-program-name version.
[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 "timeline_view.h"
25 #include <wx/wx.h>
26 #include <boost/signals2.hpp>
27
28 class Content;
29
30 /** @class TimelineContentView
31  *  @brief Parent class for views of pieces of content.
32  */
33 class TimelineContentView : public TimelineView
34 {
35 public:
36         TimelineContentView (Timeline& tl, boost::shared_ptr<Content> c);
37
38         dcpomatic::Rect<int> bbox () const;
39
40         void set_selected (bool s);
41         bool selected () const;
42         boost::shared_ptr<Content> content () const;
43         void set_track (int t);
44         void unset_track ();
45         boost::optional<int> track () const;
46
47         virtual bool active () const = 0;
48         virtual wxColour background_colour () const = 0;
49         virtual wxColour foreground_colour () const = 0;
50
51 protected:
52
53         boost::weak_ptr<Content> _content;
54
55 private:
56
57         void do_paint (wxGraphicsContext* gc, std::list<dcpomatic::Rect<int> > overlaps);
58         int y_pos (int t) const;
59         void content_changed (int p);
60
61         boost::optional<int> _track;
62         bool _selected;
63
64         boost::signals2::scoped_connection _content_connection;
65 };
66
67 typedef std::vector<boost::shared_ptr<TimelineContentView> > TimelineContentViewList;
68
69 #endif