MacWrtProParser.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 #ifndef MAC_WRT_PRO_PARSER
36 # define MAC_WRT_PRO_PARSER
37 
38 #include <list>
39 #include <string>
40 #include <vector>
41 
42 #include "MWAWDebug.hxx"
43 #include "MWAWEntry.hxx"
44 #include "MWAWGraphicStyle.hxx"
45 #include "MWAWInputStream.hxx"
46 
47 #include "MWAWParser.hxx"
48 
50 {
51 struct State;
52 struct TextZoneData;
53 struct TextZone;
54 struct Token;
55 struct Zone;
56 class SubDocument;
57 }
58 
61 
67 class MacWrtProParser final : public MWAWTextParser
68 {
69  friend class MacWrtProStructures;
72 
73 public:
75  MacWrtProParser(MWAWInputStreamPtr const &input, MWAWRSRCParserPtr const &rsrcParser, MWAWHeader *header);
77  ~MacWrtProParser() final;
78 
80  bool checkHeader(MWAWHeader *header, bool strict=false) final;
81 
82  // the main parse function
83  void parse(librevenge::RVNGTextInterface *documentInterface) final;
84 
85 protected:
87  void init();
88 
90  void createDocument(librevenge::RVNGTextInterface *documentInterface);
91 
93  bool createZones();
94 
96  bool getZoneData(librevenge::RVNGBinaryData &data, int blockId);
97 
99  bool getFreeZoneList(int blockId, std::vector<int> &blockLists);
100 
105  bool parseDataZone(int blockId, int type);
106 
108  bool parseTextZone(std::shared_ptr<MacWrtProParserInternal::Zone> zone);
109 
111  bool readTextEntries(std::shared_ptr<MacWrtProParserInternal::Zone> zone,
112  std::vector<MWAWEntry> &res, int textLength);
114  bool readTextIds(std::shared_ptr<MacWrtProParserInternal::Zone> zone,
115  std::vector<MacWrtProParserInternal::TextZoneData> &res,
116  int textLength, int type);
118  bool readTextTokens(std::shared_ptr<MacWrtProParserInternal::Zone> zone,
119  std::vector<MacWrtProParserInternal::Token> &res,
120  int textLength);
121 
124  std::vector<int> const &getBlocksCalledByToken() const;
125 
127  float pageHeight() const;
129  int numColumns() const;
130 
132  void newPage(int number, bool softBreak=false);
133 
134  //
135  // interface with MacWrtProParserStructures
136  //
137 
139  bool sendTextZone(int blockId, bool mainZone = false);
140 
142  int findNumHardBreaks(int blockId);
143 
145  bool sendPictureZone(int blockId, MWAWPosition const &pictPos, MWAWGraphicStyle const &style=MWAWGraphicStyle::emptyStyle());
146 
148  bool sendTextBoxZone(int blockId, MWAWPosition const &pos, MWAWGraphicStyle const &style=MWAWGraphicStyle::emptyStyle());
150  bool sendEmptyFrameZone(MWAWPosition const &pos, MWAWGraphicStyle const &style);
151 
152  //
153  // low level
154  //
155 
157  bool readPrintInfo();
158 
160  bool readDocHeader();
161 
162 #ifdef DEBUG
163  void saveOriginal(MWAWInputStreamPtr input);
165 #endif
166 
168  bool sendPicture(std::shared_ptr<MacWrtProParserInternal::Zone> zone, MWAWPosition pictPos, MWAWGraphicStyle const &style=MWAWGraphicStyle::emptyStyle());
169 
171  bool sendText(std::shared_ptr<MacWrtProParserInternal::TextZone> zone, bool mainZone = false);
172 
174  int findNumHardBreaks(std::shared_ptr<MacWrtProParserInternal::TextZone> zone);
175 
177  void checkUnparsed();
178 
179 protected:
180  //
181  // data
182  //
184  std::shared_ptr<MacWrtProParserInternal::State> m_state;
185 
187  std::shared_ptr<MacWrtProStructures> m_structures;
188 };
189 #endif
190 // vim: set filetype=cpp tabstop=2 shiftwidth=2 cindent autoindent smartindent noexpandtab:
void parse(MWAWListenerPtr &listener, libmwaw::SubDocumentType type) final
the parser function
Definition: MacWrtProParser.cxx:284
a function used by MWAWDocument to store the version of document
Definition: MWAWHeader.hxx:56
the main class to read the structures part of MacWrite Pro file
Definition: MacWrtProStructures.hxx:152
Definition: MWAWDocument.hxx:56
std::shared_ptr< MacWrtProStructures > m_structures
the structures parser
Definition: MacWrtProParser.hxx:187
a structure used to define a picture style
Definition: MWAWGraphicStyle.hxx:47
Internal: the subdocument of a MacWrtProParser.
Definition: MacWrtProParser.cxx:261
std::shared_ptr< MWAWRSRCParser > MWAWRSRCParserPtr
a smart pointer of MWAWRSRCParser
Definition: libmwaw_internal.hxx:557
virtual class which defines the ancestor of all text zone parser
Definition: MWAWParser.hxx:298
std::shared_ptr< MacWrtProParserInternal::State > m_state
the state
Definition: MacWrtProParser.hxx:184
an interface to transmit the info of MacWrtProStructures to a listener
Definition: MacWrtProStructures.hxx:70
std::shared_ptr< MWAWInputStream > MWAWInputStreamPtr
a smart pointer of MWAWInputStream
Definition: libmwaw_internal.hxx:547
the main class to read a MacWrite II and MacWrite Pro file
Definition: MacWrtProParser.hxx:67
Class to define the position of an object (textbox, picture, ..) in the document. ...
Definition: MWAWPosition.hxx:47
basic class to store an entry in a file This contained :
Definition: MWAWEntry.hxx:46
Internal: the structures of a MacWrtProParser.
Definition: MacWrtProParser.cxx:59
static MWAWGraphicStyle emptyStyle()
returns an empty style.
Definition: MWAWGraphicStyle.hxx:304

Generated on Tue Apr 24 2018 17:03:49 for libmwaw by doxygen 1.8.13