summaryrefslogtreecommitdiff
path: root/src/lib/content_subtitle.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-07-19 13:44:59 +0100
committerCarl Hetherington <cth@carlh.net>2018-07-19 23:45:23 +0100
commit491176352b80bea000564e6662738722185be721 (patch)
tree34211a43cefdec49f43b4a990897fdb4102a5aa2 /src/lib/content_subtitle.h
parent0fb9916d6734dbea4cb55b6d42923468aee45a40 (diff)
Remove old content_subtitle.
Diffstat (limited to 'src/lib/content_subtitle.h')
-rw-r--r--src/lib/content_subtitle.h74
1 files changed, 0 insertions, 74 deletions
diff --git a/src/lib/content_subtitle.h b/src/lib/content_subtitle.h
deleted file mode 100644
index 5a3e8157c..000000000
--- a/src/lib/content_subtitle.h
+++ /dev/null
@@ -1,74 +0,0 @@
-/*
- Copyright (C) 2014 Carl Hetherington <cth@carlh.net>
-
- This file is part of DCP-o-matic.
-
- DCP-o-matic is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
-
- DCP-o-matic is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with DCP-o-matic. If not, see <http://www.gnu.org/licenses/>.
-
-*/
-
-#ifndef DCPOMATIC_CONTENT_SUBTITLE_H
-#define DCPOMATIC_CONTENT_SUBTITLE_H
-
-#include "dcpomatic_time.h"
-#include "rect.h"
-#include "bitmap_text.h"
-#include <dcp/subtitle_string.h>
-#include <list>
-
-class Image;
-
-class ContentSubtitle
-{
-public:
- explicit ContentSubtitle (ContentTime f)
- : _from (f)
- {}
-
- ContentTime from () const {
- return _from;
- }
-
-private:
- ContentTime _from;
-};
-
-class ContentBitmapText : public ContentSubtitle
-{
-public:
- ContentBitmapText (ContentTime f, boost::shared_ptr<Image> im, dcpomatic::Rect<double> r)
- : ContentSubtitle (f)
- , sub (im, r)
- {}
-
- /* Our subtitle, with its rectangle unmodified by any offsets or scales that the content specifies */
- BitmapText sub;
-};
-
-/** A text subtitle. We store the time period separately (as well as in the dcp::SubtitleStrings)
- * as the dcp::SubtitleString timings are sometimes quite heavily quantised and this causes problems
- * when we want to compare the quantised periods to the unquantised ones.
- */
-class ContentTextSubtitle : public ContentSubtitle
-{
-public:
- ContentTextSubtitle (ContentTime f, std::list<dcp::SubtitleString> s)
- : ContentSubtitle (f)
- , subs (s)
- {}
-
- std::list<dcp::SubtitleString> subs;
-};
-
-#endif