Fix warning.
[dcpomatic.git] / src / lib / active_text.h
1 /*
2     Copyright (C) 2017-2018 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 /** @file  src/lib/active_text.h
22  *  @brief ActiveText class.
23  */
24
25 #include "dcpomatic_time.h"
26 #include "player_text.h"
27 #include <boost/noncopyable.hpp>
28 #include <list>
29 #include <map>
30
31 class Piece;
32
33 /** @class ActiveText
34  *  @brief A class to maintain information on active subtitles for Player.
35  */
36 class ActiveText : public boost::noncopyable
37 {
38 public:
39         std::list<PlayerText> get_burnt (DCPTimePeriod period, bool always_burn_subtitles) const;
40         void clear_before (DCPTime time);
41         void clear ();
42         void add_from (boost::weak_ptr<Piece> piece, PlayerText ps, DCPTime from);
43         std::pair<PlayerText, DCPTime> add_to (boost::weak_ptr<Piece> piece, DCPTime to);
44         bool have (boost::weak_ptr<Piece> piece) const;
45
46 private:
47         class Period
48         {
49         public:
50                 Period () {}
51
52                 Period (PlayerText s, DCPTime f)
53                         : subs (s)
54                         , from (f)
55                 {}
56
57                 PlayerText subs;
58                 DCPTime from;
59                 boost::optional<DCPTime> to;
60         };
61
62         typedef std::map<boost::weak_ptr<Piece>, std::list<Period> > Map;
63
64         Map _data;
65 };