Update hints properly when fonts are changed.
authorCarl Hetherington <cth@carlh.net>
Tue, 9 Jun 2015 15:38:14 +0000 (16:38 +0100)
committerCarl Hetherington <cth@carlh.net>
Tue, 9 Jun 2015 15:38:14 +0000 (16:38 +0100)
src/lib/dcp_subtitle_content.cc
src/lib/font.h
src/lib/subrip_content.cc
src/lib/subtitle_content.cc
src/lib/subtitle_content.h

index 742773043a8fc931b319e9af9a8110736dfe767b..3f13f34e2b7afcdf2b991ee3dbf27109d12fb47e 100644 (file)
@@ -71,7 +71,7 @@ DCPSubtitleContent::examine (shared_ptr<Job> job)
        _length = DCPTime::from_seconds (sc->latest_subtitle_out().as_seconds ());
 
        BOOST_FOREACH (shared_ptr<dcp::LoadFontNode> i, sc->load_font_nodes ()) {
-               _fonts.push_back (shared_ptr<Font> (new Font (i->id)));
+               add_font (shared_ptr<Font> (new Font (i->id)));
        }
 }
 
index 0dedf7e493f52071b354be8309418df1f6195a83..0dd63448e7557edd089b70ed9889e8a3a8977064 100644 (file)
@@ -22,6 +22,7 @@
 
 #include <libcxml/cxml.h>
 #include <boost/optional.hpp>
+#include <boost/signals2.hpp>
 #include <boost/filesystem.hpp>
 #include <string>
 
@@ -45,8 +46,11 @@ public:
 
        void set_file (boost::filesystem::path file) {
                _file = file;
+               Changed ();
        }
 
+       boost::signals2::signal<void()> Changed;
+
 private:       
        /** Font ID, used to describe it in the subtitle content */
        std::string _id;
index 8becbc4d03b6905d53493c6139ba83823a006462..9656ec184144261c8a830de31b188bf698aac814 100644 (file)
@@ -64,7 +64,7 @@ SubRipContent::examine (boost::shared_ptr<Job> job)
 
        boost::mutex::scoped_lock lm (_mutex);
        _length = len;
-       _fonts.push_back (shared_ptr<Font> (new Font (font_id)));
+       add_font (shared_ptr<Font> (new Font (font_id)));
 }
 
 string
index f42f3db370049ec394932e9310d3d75c485d40be..f03968d91db3cfbc134bf7c54fb5277a605ff0d0 100644 (file)
@@ -24,6 +24,7 @@
 #include "font.h"
 #include "raw_convert.h"
 #include <libcxml/cxml.h>
+#include <boost/foreach.hpp>
 
 #include "i18n.h"
 
@@ -98,6 +99,8 @@ SubtitleContent::SubtitleContent (shared_ptr<const Film> f, cxml::ConstNodePtr n
        for (list<cxml::NodePtr>::const_iterator i = fonts.begin(); i != fonts.end(); ++i) {
                _fonts.push_back (shared_ptr<Font> (new Font (*i)));
        }
+
+       connect_to_fonts ();
 }
 
 SubtitleContent::SubtitleContent (shared_ptr<const Film> f, vector<shared_ptr<Content> > c)
@@ -154,6 +157,8 @@ SubtitleContent::SubtitleContent (shared_ptr<const Film> f, vector<shared_ptr<Co
        _subtitle_y_scale = ref->subtitle_y_scale ();
        _subtitle_language = ref->subtitle_language ();
        _fonts = ref_fonts;
+
+       connect_to_fonts ();
 }
 
 /** _mutex must not be held on entry */
@@ -250,3 +255,31 @@ SubtitleContent::identifier () const
 
        return s.str ();
 }
+
+void
+SubtitleContent::add_font (shared_ptr<Font> font)
+{
+       _fonts.push_back (font);
+       connect_to_fonts ();
+}
+
+void
+SubtitleContent::connect_to_fonts ()
+{
+       BOOST_FOREACH (boost::signals2::connection& i, _font_connections) {
+               i.disconnect ();
+       }
+
+       _font_connections.clear ();
+
+       BOOST_FOREACH (shared_ptr<Font> i, _fonts) {
+               _font_connections.push_back (i->Changed.connect (boost::bind (&SubtitleContent::font_changed, this)));
+       }
+}
+
+void
+SubtitleContent::font_changed ()
+{
+       signal_changed (SubtitleContentProperty::FONTS);
+}
+
index e8915fc960636ca9b0d9299613c513f3d556203d..a159d78491a3f79695560d2f2ce95dd3bc70929f 100644 (file)
@@ -55,6 +55,8 @@ public:
 
        virtual bool has_subtitles () const = 0;
 
+       void add_font (boost::shared_ptr<Font> font);
+
        void set_use_subtitles (bool);
        void set_subtitle_x_offset (double);
        void set_subtitle_y_offset (double);
@@ -100,10 +102,11 @@ public:
 protected:
        /** subtitle language (e.g. "German") or empty if it is not known */
        std::string _subtitle_language;
-       std::list<boost::shared_ptr<Font> > _fonts;
        
 private:
        friend struct ffmpeg_pts_offset_test;
+       void font_changed ();
+       void connect_to_fonts ();
 
        bool _use_subtitles;
        /** x offset for placing subtitles, as a proportion of the container width;
@@ -118,6 +121,8 @@ private:
        double _subtitle_x_scale;
        /** y scale factor to apply to subtitles */
        double _subtitle_y_scale;
+       std::list<boost::shared_ptr<Font> > _fonts;
+       std::list<boost::signals2::connection> _font_connections;
 };
 
 #endif