Supporters update.
[dcpomatic.git] / src / lib / content_text.h
1 /*
2     Copyright (C) 2014-2018 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_CONTENT_TEXT_H
23 #define DCPOMATIC_CONTENT_TEXT_H
24
25
26 #include "bitmap_text.h"
27 #include "dcpomatic_time.h"
28 #include "rect.h"
29 #include "string_text.h"
30 #include <dcp/subtitle_string.h>
31 #include <vector>
32
33
34 class Image;
35
36
37 class ContentText
38 {
39 public:
40         explicit ContentText (dcpomatic::ContentTime f)
41                 : _from (f)
42         {}
43
44         dcpomatic::ContentTime from () const {
45                 return _from;
46         }
47
48 private:
49         dcpomatic::ContentTime _from;
50 };
51
52
53 class ContentBitmapText : public ContentText
54 {
55 public:
56         ContentBitmapText (dcpomatic::ContentTime from)
57                 : ContentText(from)
58         {}
59
60         ContentBitmapText (dcpomatic::ContentTime f, std::shared_ptr<const Image> im, dcpomatic::Rect<double> r)
61                 : ContentText (f)
62                 , subs{ {im, r} }
63         {}
64
65         /* Our texts, with their rectangles unmodified by any offsets or scales that the content specifies */
66         std::vector<BitmapText> subs;
67 };
68
69
70 /** A text caption.  We store the time period separately (as well as in the dcp::SubtitleStrings)
71  *  as the dcp::SubtitleString timings are sometimes quite heavily quantised and this causes problems
72  *  when we want to compare the quantised periods to the unquantised ones.
73  */
74 class ContentStringText : public ContentText
75 {
76 public:
77         ContentStringText (dcpomatic::ContentTime f, std::vector<StringText> s)
78                 : ContentText (f)
79                 , subs (s)
80         {}
81
82         std::vector<StringText> subs;
83 };
84
85
86 #endif