Merge branch '1.0' of ssh://carlh.dnsalias.org/home/carl/git/dvdomatic into 1.0
[dcpomatic.git] / src / lib / subtitle_content.cc
1 /*
2     Copyright (C) 2013 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <libcxml/cxml.h>
21 #include "subtitle_content.h"
22
23 using std::string;
24 using boost::shared_ptr;
25 using boost::lexical_cast;
26
27 int const SubtitleContentProperty::SUBTITLE_OFFSET = 500;
28 int const SubtitleContentProperty::SUBTITLE_SCALE = 501;
29
30 SubtitleContent::SubtitleContent (shared_ptr<const Film> f, boost::filesystem::path p)
31         : Content (f, p)
32         , _subtitle_offset (0)
33         , _subtitle_scale (1)
34 {
35
36 }
37
38 SubtitleContent::SubtitleContent (shared_ptr<const Film> f, shared_ptr<const cxml::Node> node)
39         : Content (f, node)
40         , _subtitle_offset (0)
41         , _subtitle_scale (1)
42 {
43         _subtitle_offset = node->number_child<float> ("SubtitleOffset");
44         _subtitle_scale = node->number_child<float> ("SubtitleScale");
45 }
46
47 void
48 SubtitleContent::as_xml (xmlpp::Node* root) const
49 {
50         root->add_child("SubtitleOffset")->add_child_text (lexical_cast<string> (_subtitle_offset));
51         root->add_child("SubtitleScale")->add_child_text (lexical_cast<string> (_subtitle_scale));
52 }
53
54 void
55 SubtitleContent::set_subtitle_offset (int o)
56 {
57         {
58                 boost::mutex::scoped_lock lm (_mutex);
59                 _subtitle_offset = o;
60         }
61         signal_changed (SubtitleContentProperty::SUBTITLE_OFFSET);
62 }
63
64 void
65 SubtitleContent::set_subtitle_scale (float s)
66 {
67         {
68                 boost::mutex::scoped_lock lm (_mutex);
69                 _subtitle_scale = s;
70         }
71         signal_changed (SubtitleContentProperty::SUBTITLE_SCALE);
72 }