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