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