From 02d5b8c73ca3d8d18397658425b0e8f2d5e4e90a Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 10 Sep 2020 23:37:23 +0200 Subject: Add font_filenames() --- src/subtitle_asset.cc | 14 ++++++++++++++ src/subtitle_asset.h | 1 + 2 files changed, 15 insertions(+) (limited to 'src') diff --git a/src/subtitle_asset.cc b/src/subtitle_asset.cc index 4c042974..02350f00 100644 --- a/src/subtitle_asset.cc +++ b/src/subtitle_asset.cc @@ -657,6 +657,20 @@ SubtitleAsset::font_data () const return out; } + +map +SubtitleAsset::font_filenames () const +{ + map out; + BOOST_FOREACH (Font const& i, _fonts) { + if (i.file) { + out[i.load_id] = *i.file; + } + } + return out; +} + + /** Replace empty IDs in any and tags with * a dummy string. Some systems give errors with empty font IDs * (see DCP-o-matic bug #1689). diff --git a/src/subtitle_asset.h b/src/subtitle_asset.h index 50f723da..b66e88b1 100644 --- a/src/subtitle_asset.h +++ b/src/subtitle_asset.h @@ -95,6 +95,7 @@ public: virtual void add (boost::shared_ptr); virtual void add_font (std::string id, boost::filesystem::path file) = 0; std::map font_data () const; + std::map font_filenames () const; virtual void write (boost::filesystem::path) const = 0; virtual std::string xml_as_string () const = 0; -- cgit v1.2.3