C++11 tidying.
[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 #ifndef DCPOMATIC_CONTENT_TEXT_H
22 #define DCPOMATIC_CONTENT_TEXT_H
23
24 #include "dcpomatic_time.h"
25 #include "rect.h"
26 #include "types.h"
27 #include "bitmap_text.h"
28 #include <dcp/subtitle_string.h>
29 #include <list>
30
31 class Image;
32
33 class ContentText
34 {
35 public:
36         explicit ContentText (dcpomatic::ContentTime f)
37                 : _from (f)
38         {}
39
40         dcpomatic::ContentTime from () const {
41                 return _from;
42         }
43
44 private:
45         dcpomatic::ContentTime _from;
46 };
47
48 class ContentBitmapText : public ContentText
49 {
50 public:
51         ContentBitmapText (dcpomatic::ContentTime f, std::shared_ptr<Image> im, dcpomatic::Rect<double> r)
52                 : ContentText (f)
53                 , sub (im, r)
54         {}
55
56         /* Our text, with its rectangle unmodified by any offsets or scales that the content specifies */
57         BitmapText sub;
58 };
59
60 /** A text caption.  We store the time period separately (as well as in the dcp::SubtitleStrings)
61  *  as the dcp::SubtitleString timings are sometimes quite heavily quantised and this causes problems
62  *  when we want to compare the quantised periods to the unquantised ones.
63  */
64 class ContentStringText : public ContentText
65 {
66 public:
67         ContentStringText (dcpomatic::ContentTime f, std::list<dcp::SubtitleString> s)
68                 : ContentText (f)
69                 , subs (s)
70         {}
71
72         std::list<dcp::SubtitleString> subs;
73 };
74
75 #endif