ClarisWksDocument.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 * Document data used by the Claris Works parser
36 *
37 */
38#ifndef CLARIS_WKS_DOCUMENT
39# define CLARIS_WKS_DOCUMENT
40
41#include <vector>
42
43#include "libmwaw_internal.hxx"
44
45#include "MWAWParser.hxx"
46#include "MWAWPosition.hxx"
47
48#include "ClarisWksStruct.hxx"
49
50class MWAWSection;
51
53{
54class SubDocument;
55
56struct State;
57}
58
59class ClarisWksParser;
63
65class ClarisWksGraph;
69class ClarisWksTable;
70class ClarisWksText;
71
74{
75public:
76 friend class ClarisWksParser;
77 friend class ClarisWksBMParser;
78 friend class ClarisWksPRParser;
79 friend class ClarisWksSSParser;
82 explicit ClarisWksDocument(MWAWParser &parser);
85
87 bool checkHeader(MWAWHeader *header, bool strict=false);
88
90 bool createZones();
91
93 int numPages() const;
97 librevenge::RVNGPropertyList const &getDocumentMetaData() const;
99 double getTextHeight() const;
103 void updatePageSpanList(std::vector<MWAWPageSpan> &spanList);
105 void updatePageSpanList(std::vector<MWAWPageSpan> &spanList, MWAWPageSpan &master);
106
110 std::shared_ptr<ClarisWksStruct::DSET> getZone(int zId) const;
114 void newPage(int page, bool softBreak=false);
116 std::vector<int> const &getMainZonesList() const;
118 void forceParsed(int zoneId);
120 bool canSendZoneAsGraphic(int number) const;
122 bool sendZone(int zoneId, MWAWListenerPtr listener=MWAWListenerPtr(), MWAWPosition pos=MWAWPosition());
126 void sendFootnote(int zoneId);
127
130 {
131 return *m_parser;
132 }
134 std::shared_ptr<ClarisWksStyleManager> getStyleManager()
135 {
136 return m_styleManager;
137 }
139 std::shared_ptr<ClarisWksDatabase> getDatabaseParser()
140 {
141 return m_databaseParser;
142 }
144 std::shared_ptr<ClarisWksGraph> getGraphParser()
145 {
146 return m_graphParser;
147 }
149 std::shared_ptr<ClarisWksPresentation> getPresentationParser()
150 {
152 }
154 std::shared_ptr<ClarisWksSpreadsheet> getSpreadsheetParser()
155 {
156 return m_spreadsheetParser;
157 }
159 std::shared_ptr<ClarisWksTable> getTableParser()
160 {
161 return m_tableParser;
162 }
164 std::shared_ptr<ClarisWksText> getTextParser()
165 {
166 return m_textParser;
167 }
168
170 bool readZone();
172 bool readDocHeader();
174 bool readDocInfo();
176 bool readPrintInfo();
177
178 // THE NAMED ENTRY
179
181 bool readEndTable(long &eof);
182
183 /* sequence of plist of printer : in v6 */
184 bool readCPRT(MWAWEntry const &entry);
185
186 /* read the list of mark */
187 bool readMARKList(MWAWEntry const &entry);
188 /* read a URL mark */
189 bool readURL(long endPos);
190 /* read a bookmark mark */
191 bool readBookmark(long endPos);
192 /* read a document mark */
193 bool readDocumentMark(long endPos);
194 /* read a end mark */
195 bool readEndMark(long endPos);
196
197 /* read the document summary */
198 bool readDSUM(MWAWEntry const &entry, bool inHeader);
199 /* SNAP (in v6) : size[4]/size[2] picture... */
200 bool readSNAP(MWAWEntry const &entry);
201 /* read the temporary file name ? */
202 bool readTNAM(MWAWEntry const &entry);
203
204 //
205 // low level
206 //
207
211 std::shared_ptr<ClarisWksStruct::DSET> readDSET(bool &complete);
213 void typeMainZones();
215 int typeMainZonesRec(int zId, ClarisWksStruct::DSET::Position type, int maxHeight);
217 bool exploreZonesGraph();
219 bool exploreZonesGraphRec(int zId, std::set<int> &notDoneList);
221 void cleanZonesGraph();
222
224 bool readStructCellZone(char const *zoneName, bool hasEntete, std::vector<MWAWVec2i> &res);
225 /* read a list of string zone */
226 bool readStringList(char const *zoneName, bool hasEntete, std::vector<std::string> &res);
228 bool readDataLinkList();
229
231 bool readZoneA();
233 void checkOrdering(std::vector<int16_t> &vec16, std::vector<int32_t> &vec32) const;
234
235protected:
239 std::shared_ptr<ClarisWksDocumentInternal::State> m_state;
240public:
242 std::shared_ptr<MWAWParserState> m_parserState;
243
244protected:
248 std::shared_ptr<ClarisWksStyleManager> m_styleManager;
249
251 std::shared_ptr<ClarisWksDatabase> m_databaseParser;
253 std::shared_ptr<ClarisWksGraph> m_graphParser;
255 std::shared_ptr<ClarisWksPresentation> m_presentationParser;
257 std::shared_ptr<ClarisWksSpreadsheet> m_spreadsheetParser;
259 std::shared_ptr<ClarisWksTable> m_tableParser;
261 std::shared_ptr<ClarisWksText> m_textParser;
262
263 //
264 // the callback
265 //
266
268 typedef void (MWAWParser::* NewPage)(int page, bool softBreak);
270 typedef void (MWAWParser::* SendFootnote)(int zoneId);
271
276
277private:
280};
281
282#endif
283// vim: set filetype=cpp tabstop=2 shiftwidth=2 cindent autoindent smartindent noexpandtab:
the main class to read a bitmap AppleWorks/ClarisWorks file
Definition: ClarisWksBMParser.hxx:66
the main class to read the text part of Claris Works file
Definition: ClarisWksDatabase.hxx:72
Internal: the subdocument of a ClarisWksDocument.
Definition: ClarisWksDocument.cxx:141
main document information used to create a ClarisWorks file
Definition: ClarisWksDocument.hxx:74
~ClarisWksDocument()
virtual destructor
Definition: ClarisWksDocument.cxx:215
std::shared_ptr< ClarisWksPresentation > m_presentationParser
the spreadsheet parser
Definition: ClarisWksDocument.hxx:255
std::shared_ptr< ClarisWksText > getTextParser()
returns the text parser
Definition: ClarisWksDocument.hxx:164
int typeMainZonesRec(int zId, ClarisWksStruct::DSET::Position type, int maxHeight)
try to type the main zones recursif, returns the father id
Definition: ClarisWksDocument.cxx:2784
std::shared_ptr< ClarisWksGraph > m_graphParser
the graph parser
Definition: ClarisWksDocument.hxx:253
bool readBookmark(long endPos)
Definition: ClarisWksDocument.cxx:1898
NewPage m_newPage
the new page callback
Definition: ClarisWksDocument.hxx:273
bool readEndTable(long &eof)
reads the end table ( appears in v3.0 : file version ? )
Definition: ClarisWksDocument.cxx:1460
std::shared_ptr< ClarisWksSpreadsheet > m_spreadsheetParser
the spreadsheet parser
Definition: ClarisWksDocument.hxx:257
std::vector< int > const & getMainZonesList() const
returns the list of the main zones
Definition: ClarisWksDocument.cxx:410
std::shared_ptr< ClarisWksDatabase > getDatabaseParser()
returns the database parser
Definition: ClarisWksDocument.hxx:139
bool readCPRT(MWAWEntry const &entry)
Definition: ClarisWksDocument.cxx:1566
std::shared_ptr< ClarisWksTable > m_tableParser
the table parser
Definition: ClarisWksDocument.hxx:259
void cleanZonesGraph()
remove uneeded edge (mainly header/footer edges in main graph)
Definition: ClarisWksDocument.cxx:2808
bool readStructCellZone(char const *zoneName, bool hasEntete, std::vector< MWAWVec2i > &res)
try to read a structured zone list of cells
Definition: ClarisWksDocument.cxx:2379
double getTextHeight() const
returns the page height, ie. paper size less margin (in inches) less header/footer size
Definition: ClarisWksDocument.cxx:312
std::shared_ptr< ClarisWksSpreadsheet > getSpreadsheetParser()
returns the spreadsheet parser
Definition: ClarisWksDocument.hxx:154
bool readEndMark(long endPos)
Definition: ClarisWksDocument.cxx:1951
MWAWVec2f getPageLeftTop() const
returns the page left top point ( in inches)
Definition: ClarisWksDocument.cxx:317
std::shared_ptr< ClarisWksStyleManager > getStyleManager()
returns the style manager
Definition: ClarisWksDocument.hxx:134
void forceParsed(int zoneId)
indicates that a zone is parser
Definition: ClarisWksDocument.cxx:2580
std::shared_ptr< ClarisWksDocumentInternal::State > m_state
the state
Definition: ClarisWksDocument.hxx:239
std::shared_ptr< MWAWParserState > m_parserState
the parser state
Definition: ClarisWksDocument.hxx:242
void updatePageSpanList(std::vector< MWAWPageSpan > &spanList)
updates the page span list
Definition: ClarisWksDocument.cxx:268
int numPages() const
returns the document number of page
Definition: ClarisWksDocument.cxx:245
bool readDocumentMark(long endPos)
Definition: ClarisWksDocument.cxx:1837
bool readDocHeader()
reads the document header
Definition: ClarisWksDocument.cxx:1083
std::shared_ptr< ClarisWksPresentation > getPresentationParser()
returns the presentation parser
Definition: ClarisWksDocument.hxx:149
std::shared_ptr< ClarisWksDatabase > m_databaseParser
the database parser
Definition: ClarisWksDocument.hxx:251
std::shared_ptr< ClarisWksStruct::DSET > readDSET(bool &complete)
reads the zone DSET
Definition: ClarisWksDocument.cxx:854
bool readSNAP(MWAWEntry const &entry)
Definition: ClarisWksDocument.cxx:2253
bool readPrintInfo()
read the print info zone
Definition: ClarisWksDocument.cxx:2309
MWAWParser * m_parser
the main parser
Definition: ClarisWksDocument.hxx:246
bool readDataLinkList()
try to read a structured zone list of picture definition: v5-v6
Definition: ClarisWksDocument.cxx:2146
librevenge::RVNGPropertyList const & getDocumentMetaData() const
returns the document meta data
Definition: ClarisWksDocument.cxx:263
bool readDSUM(MWAWEntry const &entry, bool inHeader)
Definition: ClarisWksDocument.cxx:2038
void(MWAWParser::* SendFootnote)(int zoneId)
callback used to send a footnote
Definition: ClarisWksDocument.hxx:270
SendFootnote m_sendFootnote
the send footnote callback
Definition: ClarisWksDocument.hxx:275
bool canSendZoneAsGraphic(int number) const
check if we can send a zone as a graphic
Definition: ClarisWksDocument.cxx:423
bool readZone()
read a zone
Definition: ClarisWksDocument.cxx:746
std::shared_ptr< ClarisWksStyleManager > m_styleManager
the style manager
Definition: ClarisWksDocument.hxx:248
std::shared_ptr< ClarisWksText > m_textParser
the text parser
Definition: ClarisWksDocument.hxx:261
bool readDocInfo()
reads the document info part ( end of the header)
Definition: ClarisWksDocument.cxx:1010
bool exploreZonesGraph()
try to find the zone dags structure...
Definition: ClarisWksDocument.cxx:2586
MWAWSection getMainSection() const
returns the main document section
Definition: ClarisWksDocument.cxx:335
std::shared_ptr< ClarisWksStruct::DSET > getZone(int zId) const
return the zone corresponding to an id ( low level)
Definition: ClarisWksDocument.cxx:415
bool readURL(long endPos)
Definition: ClarisWksDocument.cxx:1782
bool createZones()
finds the different objects zones
Definition: ClarisWksDocument.cxx:519
void(MWAWParser::* NewPage)(int page, bool softBreak)
callback used to send a page break
Definition: ClarisWksDocument.hxx:268
std::shared_ptr< ClarisWksTable > getTableParser()
returns the table parser
Definition: ClarisWksDocument.hxx:159
bool checkHeader(MWAWHeader *header, bool strict=false)
checks if the document header is correct (or not)
Definition: ClarisWksDocument.cxx:642
bool sendZone(int zoneId, MWAWListenerPtr listener=MWAWListenerPtr(), MWAWPosition pos=MWAWPosition())
try to send a zone
Definition: ClarisWksDocument.cxx:453
bool exploreZonesGraphRec(int zId, std::set< int > &notDoneList)
try to find the zone tree graph ( DSF) function
Definition: ClarisWksDocument.cxx:2653
MWAWVec2i getDocumentPages()
returns the number of expected pages ( accross pages x down page)
Definition: ClarisWksDocument.cxx:222
void typeMainZones()
try to type the main zones
Definition: ClarisWksDocument.cxx:2703
ClarisWksDocument operator=(ClarisWksDocument const &orig)=delete
void newPage(int page, bool softBreak=false)
send a page break
Definition: ClarisWksDocument.cxx:326
void updateChildPositions()
try to update the child page of each zone
Definition: ClarisWksDocument.cxx:2524
MWAWPageSpan getFinalPageSpan() const
returns the final page span to use for the document
Definition: ClarisWksDocument.cxx:297
bool readTNAM(MWAWEntry const &entry)
Definition: ClarisWksDocument.cxx:1993
bool sendDatabasePictZone(int pictId, MWAWListenerPtr listener=MWAWListenerPtr(), MWAWPosition pos=MWAWPosition())
try to send a database picture
Definition: ClarisWksDocument.cxx:504
void sendFootnote(int zoneId)
ask the main parser to create a document to send a footnote
Definition: ClarisWksDocument.cxx:367
std::shared_ptr< ClarisWksGraph > getGraphParser()
returns the graph parser
Definition: ClarisWksDocument.hxx:144
ClarisWksDocument(ClarisWksDocument const &orig)=delete
bool readZoneA()
try to read a unknown zone which appear to be filled at least in some v2 database file
Definition: ClarisWksDocument.cxx:2432
void checkOrdering(std::vector< int16_t > &vec16, std::vector< int32_t > &vec32) const
small fonction used to check unusual endian ordering of a list of int16_t, int32_t
Definition: ClarisWksDocument.cxx:376
bool readStringList(char const *zoneName, bool hasEntete, std::vector< std::string > &res)
Definition: ClarisWksDocument.cxx:2095
MWAWParser & getMainParser()
returns the main parser
Definition: ClarisWksDocument.hxx:129
bool readMARKList(MWAWEntry const &entry)
Definition: ClarisWksDocument.cxx:1619
the main class to read the graphic part of Claris Works file
Definition: ClarisWksGraph.hxx:78
the main class to create presentation Claris Works file
Definition: ClarisWksPRParser.hxx:68
the main class to read a Claris Works file
Definition: ClarisWksParser.hxx:68
the main class to read the text part of Claris Works file
Definition: ClarisWksPresentation.hxx:71
the main class to read a AppleWorks/ClarisWorks spreadsheet file
Definition: ClarisWksSSParser.hxx:68
the main class to read the text part of Claris Works file
Definition: ClarisWksSpreadsheet.hxx:71
a structure to store the style list and the lookup zone
Definition: ClarisWksStyleManager.hxx:61
the main class to read the text part of Claris Works file
Definition: ClarisWksTable.hxx:70
the main class to read the text part of Claris Works file
Definition: ClarisWksText.hxx:76
basic class to store an entry in a file This contained :
Definition: MWAWEntry.hxx:47
a function used by MWAWDocument to store the version of document
Definition: MWAWHeader.hxx:57
A class which defines the page properties.
Definition: MWAWPageSpan.hxx:99
virtual class which defines the ancestor of all main zone parser
Definition: MWAWParser.hxx:100
Class to define the position of an object (textbox, picture, ..) in the document.
Definition: MWAWPosition.hxx:48
a class which stores section properties
Definition: MWAWSection.hxx:46
std::shared_ptr< MWAWListener > MWAWListenerPtr
a smart pointer of MWAWListener
Definition: libmwaw_internal.hxx:553
Internal: the structures of a ClarisWksDocument.
Definition: ClarisWksDocument.cxx:68
Position
the zone position
Definition: ClarisWksStruct.hxx:91

Generated on Thu Jan 19 2023 00:00:00 for libmwaw by doxygen 1.9.6