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/libwps.h"
29 
30 #include "libwps_internal.h"
31 #include "libwps_tools_win.h"
32 
33 #include "WKSParser.h"
34 
35 namespace WKS4ParserInternal
36 {
37 class SubDocument;
38 struct State;
39 }
40 
41 class WKS4Chart;
42 class WKS4Spreadsheet;
43 
48 class WKS4Parser final : public WKSParser
49 {
51  friend class WKS4Chart;
52  friend class WKS4Spreadsheet;
53 public:
57  char const *password=nullptr);
59  ~WKS4Parser() override;
61  void parse(librevenge::RVNGSpreadsheetInterface *documentInterface) final;
63  bool checkHeader(WPSHeader *header, bool strict=false);
64 
66  bool readCString(librevenge::RVNGString &string, long maxSize);
67 
68 protected:
70  bool checkFilePosition(long pos);
72  int version() const;
81 
82  //
83  // interface with WKS4Spreadsheet
84  //
85 
87  bool getColor(int id, WPSColor &color) const;
89  bool getFont(int id, WPSFont &font, libwps_tools_win::Font::Type &type) const;
91  librevenge::RVNGString getSheetName(int id) const;
92 
94  std::shared_ptr<WKSContentListener> createListener(librevenge::RVNGSpreadsheetInterface *interface);
96  void sendHeaderFooter(bool header);
97 
98  //
99  // low level
100  //
101 
103  bool parseFormatStream();
105  void resetMainInput(RVNGInputStreamPtr newInput);
106 
108  bool readZones();
110  bool readZone();
112  bool readZoneQuattro();
113 
115 
117  bool readFont();
118 
120  bool readPrnt();
121 
123  bool readPrn2();
124 
126  bool readHeaderFooter(bool header);
127 
129  bool readFieldName();
130 
132 
134  static RVNGInputStreamPtr decodeStream(RVNGInputStreamPtr input, long endPos, std::vector<uint8_t> const &key);
135 
137 
139  bool readWindowRecord();
144  bool readUnknown1();
145 
146  std::shared_ptr<WKSContentListener> m_listener;
148  std::shared_ptr<WKS4ParserInternal::State> m_state;
150  std::shared_ptr<WKS4Chart> m_chartParser;
152  std::shared_ptr<WKS4Spreadsheet> m_spreadsheetParser;
153 };
154 
155 #endif /* WPS4_H */
156 /* vim:set shiftwidth=4 softtabstop=4 noexpandtab: */
This class parses Microsoft Works chart file.
Definition: WKS4Chart.h:50
Internal: the subdocument of a WPS4Parser.
Definition: WKS4.cpp:74
This class parses Microsoft Works spreadsheet or a database file.
Definition: WKS4.h:49
bool readPrn2()
reads another printer data. Seem simillar to ZZPrnt
Definition: WKS4.cpp:1602
libwps::WPSCreator creator() const
return the file creator
Definition: WKS4.cpp:261
bool readFont()
reads a mswork font
Definition: WKS4.cpp:1410
bool readCString(librevenge::RVNGString &string, long maxSize)
try to read a basic C string, knowing the maximum size
Definition: WKS4.cpp:1388
bool readWindowRecord()
reads windows record 0:7|0:9
Definition: WKS4.cpp:1715
static RVNGInputStreamPtr decodeStream(RVNGInputStreamPtr input, long endPos, std::vector< uint8_t > const &key)
try to decode a stream, if successful, replace the stream'input by the new one
Definition: WKS4.cpp:1836
bool readZone()
reads a zone
Definition: WKS4.cpp:610
void parse(librevenge::RVNGSpreadsheetInterface *documentInterface) final
called by WPSDocument to parse the file
Definition: WKS4.cpp:324
bool readPrnt()
reads a printer data ?
Definition: WKS4.cpp:1551
bool parseFormatStream()
check for the existence of a format stream, if it exists, parse it
Definition: WKS4.cpp:538
bool readHeaderFooter(bool header)
reads the header/footer
Definition: WKS4.cpp:1503
libwps::WPSCreator getCreator() const
returns the creator
Definition: WKS4.cpp:292
libwps_tools_win::Font::Type getDefaultFontType() const
returns the default font type, ie.
Definition: WKS4.cpp:287
std::shared_ptr< WKSContentListener > createListener(librevenge::RVNGSpreadsheetInterface *interface)
creates the main listener
Definition: WKS4.cpp:388
bool readFieldName()
read a list of field name + ...
Definition: WKS4.cpp:1647
void resetMainInput(RVNGInputStreamPtr newInput)
reset the main input
Definition: WKS4.cpp:266
bool readZoneQuattro()
reads a Quattro Pro zone
Definition: WKS4.cpp:1362
WKS4Parser(RVNGInputStreamPtr &input, WPSHeaderPtr &header, libwps_tools_win::Font::Type encoding=libwps_tools_win::Font::UNKNOWN, char const *password=nullptr)
constructor
Definition: WKS4.cpp:242
bool getColor(int id, WPSColor &color) const
returns the color corresponding to an id
Definition: WKS4.cpp:300
bool checkHeader(WPSHeader *header, bool strict=false)
checks if the document header is correct (or not)
Definition: WKS4.cpp:413
int version() const
return the file version
Definition: WKS4.cpp:256
void sendHeaderFooter(bool header)
send the header/footer
Definition: WKS4.cpp:1491
std::shared_ptr< WKS4Chart > m_chartParser
the chart manager
Definition: WKS4.h:150
bool readUnknown1()
reads some unknown spreadsheet zones 0:18|0:19|0:20|0:27|0:2a
Definition: WKS4.cpp:1764
std::shared_ptr< WKS4ParserInternal::State > m_state
the listener (if set)
Definition: WKS4.h:148
bool readZones()
finds the different zones (spreadsheet, chart, print, ...)
Definition: WKS4.cpp:554
~WKS4Parser() override
destructor
Definition: WKS4.cpp:252
bool checkFilePosition(long pos)
return true if the pos is in the file, update the file size if need
Definition: WKS4.cpp:274
librevenge::RVNGString getSheetName(int id) const
returns the name of the id's spreadsheet
Definition: WKS4.cpp:318
bool getFont(int id, WPSFont &font, libwps_tools_win::Font::Type &type) const
returns the font corresponding to an id
Definition: WKS4.cpp:305
std::shared_ptr< WKSContentListener > m_listener
Definition: WKS4.h:146
std::shared_ptr< WKS4Spreadsheet > m_spreadsheetParser
the spreadsheet manager
Definition: WKS4.h:152
This class parses Microsoft Works spreadsheet file.
Definition: WKS4Spreadsheet.h:49
Definition: WKSParser.h:34
define the font properties
Definition: WPSFont.h:37
Definition: WPSHeader.h:32
Type
enum Type
Definition: libwps_tools_win.h:46
@ UNKNOWN
Definition: libwps_tools_win.h:63
std::shared_ptr< WPSHeader > WPSHeaderPtr
shared pointer to WPSHeader
Definition: libwps_internal.h:109
std::shared_ptr< librevenge::RVNGInputStream > RVNGInputStreamPtr
shared pointer to librevenge::RVNGInputStream
Definition: libwps_internal.h:87
Internal: namespace to define internal class of WKS4Parser.
Definition: WKS4.cpp:53
WPSCreator
Definition: WPSDocument.h:48
the class to store a color
Definition: libwps_internal.h:281

Generated on Sat Sep 5 2020 04:52:14 for libwps by doxygen 1.9.1