MsWrdParser.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 for Microsoft Word ( version 3.0-5.1 )
36  */
37 #ifndef MS_WRD_MWAW_PARSER
38 # define MS_WRD_MWAW_PARSER
39 
40 #include <list>
41 #include <map>
42 #include <string>
43 #include <vector>
44 
45 #include "MWAWDebug.hxx"
46 #include "MWAWEntry.hxx"
47 #include "MWAWInputStream.hxx"
48 #include "MWAWPosition.hxx"
49 
50 #include "MWAWParser.hxx"
51 
52 namespace MsWrdParserInternal
53 {
54 struct Object;
55 struct State;
56 class SubDocument;
57 }
58 
59 class MsWrdText;
60 class MsWrdTextStyles;
61 
63 struct MsWrdEntry final : public MWAWEntry {
66  : MWAWEntry()
67  , m_pictType(-1)
68  {
69  }
70  MsWrdEntry(MsWrdEntry const &)=default;
72  ~MsWrdEntry() final;
77  int pictType() const
78  {
79  return m_pictType;
80  }
82  void setPictType(int newId)
83  {
84  m_pictType = newId;
85  }
87  friend std::ostream &operator<<(std::ostream &o, MsWrdEntry const &entry);
90 };
91 
97 class MsWrdParser final : public MWAWTextParser
98 {
99  friend class MsWrdText;
100  friend class MsWrdTextStyles;
102 
103 public:
105  MsWrdParser(MWAWInputStreamPtr const &input, MWAWRSRCParserPtr const &rsrcParser, MWAWHeader *header);
107  ~MsWrdParser() final;
108 
110  bool checkHeader(MWAWHeader *header, bool strict=false) final;
111 
113  void parse(librevenge::RVNGTextInterface *documentInterface) final;
114 
115 protected:
117  void init();
118 
120  void createDocument(librevenge::RVNGTextInterface *documentInterface);
121 
123  bool createZones();
124 
126  bool readHeaderEndV3();
127 
129  bool readZoneList();
130 
132  bool readPrintInfo(MsWrdEntry &entry);
133 
135  bool readPrinter(MsWrdEntry &entry);
136 
138  bool readDocSum(MsWrdEntry &entry);
139 
141  bool readStringsZone(MsWrdEntry &entry, std::vector<std::string> &list);
142 
144  bool readObjects();
145 
147  bool readObjectList(MsWrdEntry &entry);
148 
150  bool readObjectFlags(MsWrdEntry &entry);
151 
153  bool readObject(MsWrdParserInternal::Object &obj);
154 
156  bool readDocumentInfo(MsWrdEntry &entry);
157 
159  bool readZone17(MsWrdEntry &entry);
160 
162  bool checkPicturePos(long pos, int type);
163 
165  bool readPicture(MsWrdEntry &entry);
167  void sendPicture(long fPos, int cPos, MWAWPosition::AnchorTo anchor=MWAWPosition::Char);
168 
170  bool getColor(int id, MWAWColor &col) const;
171 
173  void newPage(int number);
174 
175  /*
176  * interface with subdocument
177  */
179  void sendFootnote(int id);
180 
182  void sendFieldComment(int id);
183 
185  void send(int id, libmwaw::SubDocumentType type);
187  void send(MWAWEntry const &entry);
189  void sendSimpleTextZone(MWAWListenerPtr &listener, MWAWEntry const &entry);
190 
191  //
192  // low level
193  //
194 
196  MsWrdEntry readEntry(std::string type, int id=-1);
197 
198 protected:
199  //
200  // data
201  //
203  std::shared_ptr<MsWrdParserInternal::State> m_state;
204 
206  std::multimap<std::string, MsWrdEntry> m_entryMap;
207 
209  std::shared_ptr<MsWrdText> m_textParser;
210 };
211 #endif
212 // 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
std::ostream & operator<<(std::ostream &o, Shape const &shape)
Definition: BeagleWksDRParser.cxx:107
Definition: MWAWDocument.hxx:56
std::shared_ptr< MWAWListener > MWAWListenerPtr
a smart pointer of MWAWListener
Definition: libmwaw_internal.hxx:553
int pictType() const
returns the text id
Definition: MsWrdParser.hxx:77
the entry of MsWrdParser
Definition: MsWrdParser.hxx:63
SubDocumentType
Definition: libmwaw_internal.hxx:188
void parse(MWAWListenerPtr &listener, libmwaw::SubDocumentType type) final
the parser function
Definition: MsWrdParser.cxx:281
void setPictType(int newId)
sets the picture id
Definition: MsWrdParser.hxx:82
namespace used to regroup all libwpd functions, enumerations which we have redefined for internal usa...
Definition: libmwaw_internal.cxx:50
the class to store a color
Definition: libmwaw_internal.hxx:192
std::shared_ptr< MWAWRSRCParser > MWAWRSRCParserPtr
a smart pointer of MWAWRSRCParser
Definition: libmwaw_internal.hxx:561
virtual class which defines the ancestor of all text zone parser
Definition: MWAWParser.hxx:298
the main class to read a Microsoft Word file
Definition: MsWrdParser.hxx:97
std::shared_ptr< MWAWInputStream > MWAWInputStreamPtr
a smart pointer of MWAWInputStream
Definition: libmwaw_internal.hxx:551
Internal: the subdocument of a MsWrdParser.
Definition: MsWrdParser.cxx:230
bool getColor(int color, MWAWColor &col)
try to convert a file data to a color
Definition: FullWrtStruct.cxx:45
the main class to read the text part of Microsoft Word file
Definition: MsWrdText.hxx:64
int m_pictType
the picture identificator
Definition: MsWrdParser.hxx:89
the main class to read/store the text font, paragraph, section stylesread
Definition: MsWrdTextStyles.hxx:66
Internal: the structures of a MsWrdParser.
Definition: MsWrdParser.cxx:58
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
MsWrdEntry()
constructor
Definition: MsWrdParser.hxx:65

Generated on Sat Sep 24 2022 13:42:42 for libmwaw by doxygen 1.8.13