BeagleWksSSParser.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#ifndef BEAGLE_WKS_SS_PARSER
35# define BEAGLE_WKS_SS_PARSER
36
37#include <string>
38#include <vector>
39
40#include <librevenge/librevenge.h>
41
42#include "MWAWCell.hxx"
43#include "MWAWDebug.hxx"
44#include "MWAWGraphicStyle.hxx"
45#include "MWAWInputStream.hxx"
46
47#include "MWAWParser.hxx"
48
50{
51class SubDocument;
52
53struct Cell;
54struct Chart;
55struct Spreadsheet;
56struct State;
57}
58
60
64{
67public:
69 BeagleWksSSParser(MWAWInputStreamPtr const &input, MWAWRSRCParserPtr const &rsrcParser, MWAWHeader *header);
71 ~BeagleWksSSParser() final;
72
74 bool checkHeader(MWAWHeader *header, bool strict=false) final;
75
76 // the main parse function
77 void parse(librevenge::RVNGSpreadsheetInterface *documentInterface) final;
78
79protected:
81 void init();
82
84 void createDocument(librevenge::RVNGSpreadsheetInterface *documentInterface);
85
89 void newPage(int number);
90
92 bool sendSpreadsheet();
94 bool sendText(MWAWEntry const &entry, bool headerFooter=false);
96 bool sendPageFrames();
98 bool sendFrame(BeagleWksStructManager::Frame const &frame);
100 bool sendPicture(int pId, MWAWPosition const &pos,
101 MWAWGraphicStyle const &style=MWAWGraphicStyle::emptyStyle());
102protected:
104 bool createZones();
105
107 bool readRSRCZones();
108
109 //
110 // low level
111 //
112
113 // data fork similar than in BeagleWksParser ...
114
116 bool readPrintInfo();
117
118 // data fork
119
121 bool readChartZone();
122
124 bool readChart();
125
127 bool readSpreadsheet();
128
130 bool readRowSheet(BeagleWksSSParserInternal::Spreadsheet &sheet);
131
134
136 bool readZone0();
137
139 bool readColumnWidths(BeagleWksSSParserInternal::Spreadsheet &sheet);
140
142 bool readFormula(BeagleWksSSParserInternal::Spreadsheet &sheet);
143
144 // resource fork
145
148
150 libmwaw::DebugFile &rsrcAscii();
151
153 std::shared_ptr<BeagleWksSSParserInternal::State> m_state;
154
157};
158#endif
159// vim: set filetype=cpp tabstop=2 shiftwidth=2 cindent autoindent smartindent noexpandtab:
Defines MWAWCell (cell content and format)
Internal: the subdocument of a BeagleWksSSParser.
Definition: BeagleWksSSParser.cxx:272
the main class to read a BeagleWorks spreadsheet file
Definition: BeagleWksSSParser.hxx:64
bool createZones()
finds the different objects zones
Definition: BeagleWksSSParser.cxx:457
bool readSpreadsheet()
read the spreadsheet zone
Definition: BeagleWksSSParser.cxx:943
libmwaw::DebugFile & rsrcAscii()
a DebugFile used to write what we recognize when we parse the document in rsrc
Definition: BeagleWksSSParser.cxx:348
bool sendPicture(int pId, MWAWPosition const &pos, MWAWGraphicStyle const &style=MWAWGraphicStyle::emptyStyle())
try to send a picture
Definition: BeagleWksSSParser.cxx:1446
MWAWInputStreamPtr rsrcInput()
return the input input
Definition: BeagleWksSSParser.cxx:343
bool sendText(MWAWEntry const &entry, bool headerFooter=false)
try to send a text zone
Definition: BeagleWksSSParser.cxx:1471
bool readPrintInfo()
read the print info zone
Definition: BeagleWksSSParser.cxx:580
bool readFormula(BeagleWksSSParserInternal::Spreadsheet &sheet)
read the differents formula
Definition: BeagleWksSSParser.cxx:1374
bool checkHeader(MWAWHeader *header, bool strict=false) final
checks if the document header is correct (or not)
Definition: BeagleWksSSParser.cxx:1576
bool readColumnWidths(BeagleWksSSParserInternal::Spreadsheet &sheet)
read the columns widths
Definition: BeagleWksSSParser.cxx:1326
bool readRSRCZones()
read the resource fork zone
Definition: BeagleWksSSParser.cxx:542
bool sendPageFrames()
try to send the page graphic
Definition: BeagleWksSSParser.cxx:1423
bool readCellSheet(BeagleWksSSParserInternal::Cell &cell)
read a cell row
Definition: BeagleWksSSParser.cxx:1024
MWAWVec2f getPageLeftTop() const
returns the page left top point ( in inches)
Definition: BeagleWksSSParser.cxx:356
bool sendSpreadsheet()
try to send the main spreadsheet
Definition: BeagleWksSSParser.cxx:1507
bool readChart()
read a chart
Definition: BeagleWksSSParser.cxx:670
bool readRowSheet(BeagleWksSSParserInternal::Spreadsheet &sheet)
read the spreadsheet row
Definition: BeagleWksSSParser.cxx:975
bool readChartZone()
read the chart zone
Definition: BeagleWksSSParser.cxx:636
void parse(librevenge::RVNGSpreadsheetInterface *documentInterface) final
virtual function used to parse the input
Definition: BeagleWksSSParser.cxx:381
~BeagleWksSSParser() final
destructor
Definition: BeagleWksSSParser.cxx:327
std::shared_ptr< BeagleWksStructManager > m_structureManager
the structure manager
Definition: BeagleWksSSParser.hxx:156
void newPage(int number)
adds a new page
Definition: BeagleWksSSParser.cxx:365
void init()
inits all internal variables
Definition: BeagleWksSSParser.cxx:331
std::shared_ptr< BeagleWksSSParserInternal::State > m_state
the state
Definition: BeagleWksSSParser.hxx:153
bool readZone0()
read an unknown zone ( which appears before and after the columns's width zone )
Definition: BeagleWksSSParser.cxx:1305
void createDocument(librevenge::RVNGSpreadsheetInterface *documentInterface)
creates the listener which will be associated to the document
Definition: BeagleWksSSParser.cxx:410
bool sendFrame(BeagleWksStructManager::Frame const &frame)
try to send a frame
Definition: BeagleWksSSParser.cxx:1431
the main class to read the structure shared between different BeagleWorks files
Definition: BeagleWksStructManager.hxx:57
basic class to store an entry in a file This contained :
Definition: MWAWEntry.hxx:47
a structure used to define a picture style
Definition: MWAWGraphicStyle.hxx:48
a function used by MWAWDocument to store the version of document
Definition: MWAWHeader.hxx:57
Class to define the position of an object (textbox, picture, ..) in the document.
Definition: MWAWPosition.hxx:48
virtual class which defines the ancestor of all spreadsheet zone parser
Definition: MWAWParser.hxx:283
std::shared_ptr< MWAWRSRCParser > MWAWRSRCParserPtr
a smart pointer of MWAWRSRCParser
Definition: libmwaw_internal.hxx:561
std::shared_ptr< MWAWInputStream > MWAWInputStreamPtr
a smart pointer of MWAWInputStream
Definition: libmwaw_internal.hxx:551
Internal: the structures of a BeagleWksSSParser.
Definition: BeagleWksSSParser.cxx:61
namespace used to regroup all libwpd functions, enumerations which we have redefined for internal usa...
Definition: libmwaw_internal.cxx:51
Definition: MWAWDocument.hxx:57
Internal: the chart of a BeagleWksSSParser.
Definition: BeagleWksSSParser.cxx:173

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