X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fsubtitle_content.cc;h=f839a56d0f6b60b008090b7d1d6756c1b06f34d5;hb=dc1c279211773ad68cb0348eb802cf5c9594d8dd;hp=4c6e601926d2ebf096450a443ee7560bda152fba;hpb=79ce26d031d109177ba4b0f637fa2960345a37a3;p=dcpomatic.git diff --git a/src/lib/subtitle_content.cc b/src/lib/subtitle_content.cc index 4c6e60192..f839a56d0 100644 --- a/src/lib/subtitle_content.cc +++ b/src/lib/subtitle_content.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2013 Carl Hetherington + Copyright (C) 2013-2014 Carl Hetherington This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -18,6 +18,7 @@ */ #include +#include #include "subtitle_content.h" #include "util.h" #include "exceptions.h" @@ -28,15 +29,17 @@ using std::string; using std::vector; using std::cout; using boost::shared_ptr; -using boost::lexical_cast; using boost::dynamic_pointer_cast; +using dcp::raw_convert; int const SubtitleContentProperty::SUBTITLE_X_OFFSET = 500; int const SubtitleContentProperty::SUBTITLE_Y_OFFSET = 501; int const SubtitleContentProperty::SUBTITLE_SCALE = 502; +int const SubtitleContentProperty::SUBTITLE_USE = 503; SubtitleContent::SubtitleContent (shared_ptr f, boost::filesystem::path p) : Content (f, p) + , _subtitle_use (false) , _subtitle_x_offset (0) , _subtitle_y_offset (0) , _subtitle_scale (1) @@ -44,15 +47,15 @@ SubtitleContent::SubtitleContent (shared_ptr f, boost::filesystem::p } -SubtitleContent::SubtitleContent (shared_ptr f, shared_ptr node, int version) +SubtitleContent::SubtitleContent (shared_ptr f, cxml::ConstNodePtr node, int version) : Content (f, node) + , _subtitle_use (false) , _subtitle_x_offset (0) , _subtitle_y_offset (0) , _subtitle_scale (1) { - LocaleGuard lg; - if (version >= 7) { + _subtitle_use = node->bool_child ("SubtitleUse"); _subtitle_x_offset = node->number_child ("SubtitleXOffset"); _subtitle_y_offset = node->number_child ("SubtitleYOffset"); } else { @@ -71,6 +74,10 @@ SubtitleContent::SubtitleContent (shared_ptr f, vector sc = dynamic_pointer_cast (c[i]); + if (sc->subtitle_use() != ref->subtitle_use()) { + throw JoinError (_("Content to be joined must have the same 'use subtitles' setting.")); + } + if (sc->subtitle_x_offset() != ref->subtitle_x_offset()) { throw JoinError (_("Content to be joined must have the same subtitle X offset.")); } @@ -84,6 +91,7 @@ SubtitleContent::SubtitleContent (shared_ptr f, vectorsubtitle_use (); _subtitle_x_offset = ref->subtitle_x_offset (); _subtitle_y_offset = ref->subtitle_y_offset (); _subtitle_scale = ref->subtitle_scale (); @@ -92,13 +100,22 @@ SubtitleContent::SubtitleContent (shared_ptr f, vectoradd_child("SubtitleXOffset")->add_child_text (lexical_cast (_subtitle_x_offset)); - root->add_child("SubtitleYOffset")->add_child_text (lexical_cast (_subtitle_y_offset)); - root->add_child("SubtitleScale")->add_child_text (lexical_cast (_subtitle_scale)); + root->add_child("SubtitleUse")->add_child_text (raw_convert (_subtitle_use)); + root->add_child("SubtitleXOffset")->add_child_text (raw_convert (_subtitle_x_offset)); + root->add_child("SubtitleYOffset")->add_child_text (raw_convert (_subtitle_y_offset)); + root->add_child("SubtitleScale")->add_child_text (raw_convert (_subtitle_scale)); } +void +SubtitleContent::set_subtitle_use (bool u) +{ + { + boost::mutex::scoped_lock lm (_mutex); + _subtitle_use = u; + } + signal_changed (SubtitleContentProperty::SUBTITLE_USE); +} + void SubtitleContent::set_subtitle_x_offset (double o) {