WKS4.h
Go to the documentation of this file.
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
2 /* libwps
3  * Version: MPL 2.0 / LGPLv2.1+
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8  *
9  * Major Contributor(s):
10  * Copyright (C) 2006, 2007 Andrew Ziem
11  * Copyright (C) 2003-2005 William Lachance (william.lachance@sympatico.ca)
12  * Copyright (C) 2003 Marc Maurer (uwog@uwog.net)
13  *
14  * For minor contributions see the git repository.
15  *
16  * Alternatively, the contents of this file may be used under the terms
17  * of the GNU Lesser General Public License Version 2.1 or later
18  * (LGPLv2.1+), in which case the provisions of the LGPLv2.1+ are
19  * applicable instead of those above.
20  */
21 
22 #ifndef WKS4_H
23 #define WKS4_H
24 
25 #include <vector>
26 
27 #include <librevenge-stream/librevenge-stream.h>
28 #include "libwps_internal.h"
29 #include "libwps_tools_win.h"
30 
31 #include "WKSParser.h"
32 
33 namespace WKS4ParserInternal
34 {
35 class SubDocument;
36 struct State;
37 }
38 
39 class WKS4Spreadsheet;
40 
45 class WKS4Parser : public WKSParser
46 {
48  friend class WKS4Spreadsheet;
49 public:
53  ~WKS4Parser();
55  void parse(librevenge::RVNGSpreadsheetInterface *documentInterface);
57  bool checkHeader(WPSHeader *header, bool strict=false);
58 
59 protected:
61  bool checkFilePosition(long pos);
63  int version() const;
64 
65  //
66  // interface with WKS4Spreadsheet
67  //
68 
70  bool getColor(int id, uint32_t &color) const;
72  bool getFont(int id, WPSFont &font, libwps_tools_win::Font::Type &type) const;
73 
74 
76  shared_ptr<WKSContentListener> createListener(librevenge::RVNGSpreadsheetInterface *interface);
78  void sendHeaderFooter(bool header);
79 
80  //
81  // low level
82  //
83 
85  bool readZones();
87  bool readZone();
88 
90 
92  bool readFont();
93 
95  bool readPrnt();
96 
98  bool readPrn2();
99 
101  bool readHeaderFooter(bool header);
102 
104  bool readFieldName();
105 
107 
109  bool readChartName();
110 
112  bool readChartDef();
113 
115  bool readChartFont();
116 
118  bool readChart2Font();
119 
121  bool readChartLimit();
122 
124  bool readChartList();
125 
127  bool readChartUnknown();
128 
130 
132  bool readUnknown0();
137  bool readUnknown1();
138 
139  shared_ptr<WKSContentListener> m_listener;
140  shared_ptr<WKS4ParserInternal::State> m_state;
143  shared_ptr<WKS4Spreadsheet> m_spreadsheetParser;
144 };
145 
146 #endif /* WPS4_H */
147 /* vim:set shiftwidth=4 softtabstop=4 noexpandtab: */
WKS4Parser(RVNGInputStreamPtr &input, WPSHeaderPtr &header)
constructor
Definition: WKS4.cpp:189
Internal: namespace to define internal class of WKS4Parser.
Definition: WKS4.cpp:49
bool checkFilePosition(long pos)
return true if the pos is in the file, update the file size if need
Definition: WKS4.cpp:206
bool readChart2Font()
reads a structure which seems to define four chart font (only present in windows file) ...
Definition: WKS4.cpp:1564
bool readPrn2()
reads another printer data. Seem simillar to ZZPrnt
Definition: WKS4.cpp:1292
shared_ptr< WKSContentListener > m_listener
Definition: WKS4.h:139
bool readUnknown0()
reads some unknown zones 0:7|0:9
Definition: WKS4.cpp:1768
bool readChartDef()
reads a structure which seems to define a chart
Definition: WKS4.cpp:1391
void parse(librevenge::RVNGSpreadsheetInterface *documentInterface)
called by WPSDocument to parse the file
Definition: WKS4.cpp:241
Internal: the subdocument of a WPS4Parser.
Definition: WKS4.cpp:63
define the font properties
Definition: WPSFont.h:37
bool readChartList()
reads a list of int/cellule which seems relative to a chart : CHECKME
Definition: WKS4.cpp:1717
bool readChartFont()
reads a structure which seems to define two chart font (only present in windows file) ...
Definition: WKS4.cpp:1515
Type
enum Type
Definition: libwps_tools_win.h:47
This class parses Microsoft Works spreadsheet or a database file.
Definition: WKS4.h:45
bool readHeaderFooter(bool header)
reads the header/footer
Definition: WKS4.cpp:1202
shared_ptr< WPSHeader > WPSHeaderPtr
shared pointer to WPSHeader
Definition: libwps_internal.h:102
bool readFont()
reads the fonts
Definition: WKS4.cpp:1099
bool readFieldName()
read a list of field name + ...
Definition: WKS4.cpp:1337
~WKS4Parser()
destructor
Definition: WKS4.cpp:197
bool readChartUnknown()
reads an unknown structure which seems relative to a chart : CHECKME
Definition: WKS4.cpp:1638
bool checkHeader(WPSHeader *header, bool strict=false)
checks if the document header is correct (or not)
Definition: WKS4.cpp:307
bool readChartName()
reads the chart name or title
Definition: WKS4.cpp:1478
void sendHeaderFooter(bool header)
send the header/footer
Definition: WKS4.cpp:1179
Definition: WPSHeader.h:31
shared_ptr< WKS4Spreadsheet > m_spreadsheetParser
the spreadsheet manager
Definition: WKS4.h:143
int version() const
return the file version
Definition: WKS4.cpp:201
bool readPrnt()
reads a printer data ?
Definition: WKS4.cpp:1245
bool readChartLimit()
reads end/begin of chart (only present in windows file)
Definition: WKS4.cpp:1615
shared_ptr< librevenge::RVNGInputStream > RVNGInputStreamPtr
shared pointer to librevenge::RVNGInputStream
Definition: libwps_internal.h:81
shared_ptr< WKSContentListener > createListener(librevenge::RVNGSpreadsheetInterface *interface)
creates the main listener
Definition: WKS4.cpp:282
bool readZones()
finds the different zones (spreadsheet, chart, print, ...)
Definition: WKS4.cpp:380
bool readUnknown1()
reads some unknown spreadsheet zones 0:18|0:19|0:20|0:27|0:2a
Definition: WKS4.cpp:1817
bool readZone()
reads a zone
Definition: WKS4.cpp:416
This class parses Microsoft Works spreadsheet file.
Definition: WKS4Spreadsheet.h:48
bool getColor(int id, uint32_t &color) const
returns the color corresponding to an id
Definition: WKS4.cpp:222
bool getFont(int id, WPSFont &font, libwps_tools_win::Font::Type &type) const
returns the font corresponding to an id
Definition: WKS4.cpp:227
shared_ptr< WKS4ParserInternal::State > m_state
the listener (if set)
Definition: WKS4.h:141
Definition: WKSParser.h:33

Generated on Thu Oct 9 2014 14:30:03 for libwps by doxygen 1.8.8