Header guard.
[libsub.git] / src / dcp_reader.h
1 /*
2     Copyright (C) 2014 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifndef LIBSUB_DCP_READER_H
21 #define LIBSUB_DCP_READER_H
22
23 #include "reader.h"
24 #include <boost/shared_ptr.hpp>
25
26 namespace cxml {
27         class Node;
28 }
29
30 namespace sub {
31
32 class DCPFont;  
33 class DCPText;
34 class DCPSubtitle;
35 class DCPLoadFont;
36
37 /** @class DCPReader
38  *  @brief A class which reads DCP subtitles.
39  */
40 class DCPReader : public Reader
41 {
42 public:
43         DCPReader (std::istream &);
44
45 private:
46
47         struct ParseState;
48         
49         void maybe_add_subtitle (std::string text, ParseState& parse_state);
50         
51         void examine_font_nodes (
52                 boost::shared_ptr<const cxml::Node> xml,
53                 std::list<boost::shared_ptr<DCPFont> > const & font_nodes,
54                 ParseState& parse_state
55                 );
56         
57         void examine_text_nodes (
58                 boost::shared_ptr<const cxml::Node> xml,
59                 std::list<boost::shared_ptr<DCPText> > const & text_nodes,
60                 ParseState& parse_state
61                 );
62
63         std::string font_id_to_name (std::string id) const;
64
65         std::list<boost::shared_ptr<DCPLoadFont> > _load_font_nodes;
66 };
67
68 }
69
70 #endif