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