MindWrtParser.hxx
Go to the documentation of this file.
1 /* -*- Mode: C++; c-default-style: "k&r"; indent-tabs-mode: nil; tab-width: 2; c-basic-offset: 2 -*- */
2 
3 /* libmwaw
4 * Version: MPL 2.0 / LGPLv2+
5 *
6 * The contents of this file are subject to the Mozilla Public License Version
7 * 2.0 (the "License"); you may not use this file except in compliance with
8 * the License or as specified alternatively below. You may obtain a copy of
9 * the License at http://www.mozilla.org/MPL/
10 *
11 * Software distributed under the License is distributed on an "AS IS" basis,
12 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
13 * for the specific language governing rights and limitations under the
14 * License.
15 *
16 * Major Contributor(s):
17 * Copyright (C) 2002 William Lachance (wrlach@gmail.com)
18 * Copyright (C) 2002,2004 Marc Maurer (uwog@uwog.net)
19 * Copyright (C) 2004-2006 Fridrich Strba (fridrich.strba@bluewin.ch)
20 * Copyright (C) 2006, 2007 Andrew Ziem
21 * Copyright (C) 2011, 2012 Alonso Laurent (alonso@loria.fr)
22 *
23 *
24 * All Rights Reserved.
25 *
26 * For minor contributions see the git repository.
27 *
28 * Alternatively, the contents of this file may be used under the terms of
29 * the GNU Lesser General Public License Version 2 or later (the "LGPLv2+"),
30 * in which case the provisions of the LGPLv2+ are applicable
31 * instead of those above.
32 */
33 
34 /*
35  * Parser to convert MindWrite document
36  */
37 #ifndef MIND_WRT_PARSER
38 # define MIND_WRT_PARSER
39 
40 #include <string>
41 #include <vector>
42 
43 #include "MWAWDebug.hxx"
44 #include "MWAWInputStream.hxx"
45 
46 #include "MWAWParser.hxx"
47 
48 namespace MindWrtParserInternal
49 {
50 struct LineInfo;
51 struct State;
52 class SubDocument;
53 }
54 
61 {
63 
64 public:
68  virtual ~MindWrtParser();
69 
71  bool checkHeader(MWAWHeader *header, bool strict=false);
72 
73  // the main parse function
74  void parse(librevenge::RVNGTextInterface *documentInterface);
75 
76 protected:
78  void init();
79 
81  void createDocument(librevenge::RVNGTextInterface *documentInterface);
82 
84  bool createZones();
85 
87  bool sendZone(int i);
88 
90  bool readGraphic(MindWrtParserInternal::LineInfo const &line);
91 
93  bool readRuler(MindWrtParserInternal::LineInfo &line);
94 
96  bool readCompressedText(MindWrtParserInternal::LineInfo const &line);
97 
99  bool readText(MindWrtParserInternal::LineInfo const &line);
100 
102  void sendText(std::string const &text, std::vector<MWAWFont> const &fonts, std::vector<int> const &textPos);
104  void sendHeaderFooter(bool header);
106  void sendHeaderFooterFields(bool header);
108  bool readFonts(MWAWEntry const &entry, std::vector<MWAWFont> &fonts, std::vector<int> &textPos);
109 
111  bool readPrintInfo(MWAWEntry &entry);
112 
114  bool readLinesInfo(MWAWEntry &entry);
115 
117  bool readLastZone(MWAWEntry &entry);
118 
120  bool readZone8(MWAWEntry &entry);
122  bool readHeadingStates(MWAWEntry &entry);
124  bool readHeadingFields(MWAWEntry &entry);
126  bool readHeadingProperties(MWAWEntry &entry);
128  bool readHeadingCustom(MWAWEntry &entry);
129 
131  void setProperty(MWAWParagraph const &para);
132 
134  void newPage(int number);
135 
136  //
137  // low level
138  //
139 
141  MWAWEntry readEntry();
142 
143 protected:
144  //
145  // data
146  //
148  shared_ptr<MindWrtParserInternal::State> m_state;
149 };
150 #endif
151 // vim: set filetype=cpp tabstop=2 shiftwidth=2 cindent autoindent smartindent noexpandtab:
a function used by MWAWDocument to store the version of document
Definition: MWAWHeader.hxx:56
shared_ptr< MindWrtParserInternal::State > m_state
the state
Definition: MindWrtParser.hxx:148
Internal: the structures of a MindWrtParser.
Definition: MindWrtParser.cxx:59
shared_ptr< MWAWRSRCParser > MWAWRSRCParserPtr
a smart pointer of MWAWRSRCParser
Definition: libmwaw_internal.hxx:513
void parse(MWAWListenerPtr &listener, libmwaw::SubDocumentType type)
the parser function
Definition: MindWrtParser.cxx:539
virtual class which defines the ancestor of all text zone parser
Definition: MWAWParser.hxx:295
shared_ptr< MWAWInputStream > MWAWInputStreamPtr
a smart pointer of MWAWInputStream
Definition: libmwaw_internal.hxx:503
class to store the paragraph properties
Definition: MWAWParagraph.hxx:81
the main class to read a MindWrite file
Definition: MindWrtParser.hxx:60
Internal: a line information of a MindWrtParser.
Definition: MindWrtParser.cxx:245
basic class to store an entry in a file This contained :
Definition: MWAWEntry.hxx:46
Internal: the subdocument of a MindWrtParser.
Definition: MindWrtParser.cxx:503

Generated on Sat May 6 2017 16:35:08 for libmwaw by doxygen 1.8.13