Quattro.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 QUATTRO_H
23 #define QUATTRO_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 QuattroParserInternal
36 {
37 class SubDocument;
38 struct State;
39 }
40 
41 class QuattroSpreadsheet;
42 
47 class QuattroParser : public WKSParser
48 {
50  friend class QuattroSpreadsheet;
51 public:
58  void parse(librevenge::RVNGSpreadsheetInterface *documentInterface);
60  bool checkHeader(WPSHeader *header, bool strict=false);
61 
62 protected:
64  bool checkFilePosition(long pos);
66  int version() const;
72  bool hasLICSCharacters() const;
73 
74  //
75  // interface with QuattroSpreadsheet
76  //
77 
79  bool getColor(int id, WPSColor &color) const;
81  bool getFont(int id, WPSFont &font, libwps_tools_win::Font::Type &type) const;
82 
84  shared_ptr<WKSContentListener> createListener(librevenge::RVNGSpreadsheetInterface *interface);
86  void sendHeaderFooter(bool header);
87 
88  //
89  // low level
90  //
91 
93  bool readZones();
95  bool readZone();
96 
98 
100  bool readUserFonts();
101 
103  bool readHeaderFooter(bool header);
104 
106  bool readFieldName();
107 
109 
111  bool readChartName();
112 
114  bool readChartDef();
115 
117 
119  bool readWindowRecord();
124  bool readUnknown1();
125 
126  shared_ptr<WKSContentListener> m_listener;
127  shared_ptr<QuattroParserInternal::State> m_state;
130  shared_ptr<QuattroSpreadsheet> m_spreadsheetParser;
131 };
132 
133 #endif /* WPS4_H */
134 /* vim:set shiftwidth=4 softtabstop=4 noexpandtab: */
bool readChartDef()
reads a structure which seems to define a chart
Definition: Quattro.cpp:981
shared_ptr< QuattroSpreadsheet > m_spreadsheetParser
the spreadsheet manager
Definition: Quattro.h:130
define the font properties
Definition: WPSFont.h:36
bool readWindowRecord()
reads windows record 0:7|0:9
Definition: Quattro.cpp:1111
Type
enum Type
Definition: libwps_tools_win.h:46
void parse(librevenge::RVNGSpreadsheetInterface *documentInterface)
called by WPSDocument to parse the file
Definition: Quattro.cpp:248
bool readUserFonts()
reads the user fonts
Definition: Quattro.cpp:764
bool hasLICSCharacters() const
returns the true if the file has LICS characters
Definition: Quattro.cpp:240
bool getFont(int id, WPSFont &font, libwps_tools_win::Font::Type &type) const
returns the font corresponding to an id
Definition: Quattro.cpp:227
shared_ptr< WPSHeader > WPSHeaderPtr
shared pointer to WPSHeader
Definition: libwps_internal.h:124
bool readZones()
finds the different zones (spreadsheet, chart, print, ...)
Definition: Quattro.cpp:388
shared_ptr< WKSContentListener > createListener(librevenge::RVNGSpreadsheetInterface *interface)
creates the main listener
Definition: Quattro.cpp:292
bool readChartName()
reads the chart name or title
Definition: Quattro.cpp:1068
QuattroParser(RVNGInputStreamPtr &input, WPSHeaderPtr &header, libwps_tools_win::Font::Type encoding=libwps_tools_win::Font::UNKNOWN)
constructor
Definition: Quattro.cpp:183
shared_ptr< QuattroParserInternal::State > m_state
the listener (if set)
Definition: Quattro.h:128
int version() const
return the file version
Definition: Quattro.cpp:196
Definition: WPSHeader.h:31
Definition: libwps_tools_win.h:61
libwps_tools_win::Font::Type getDefaultFontType() const
returns the default font type, ie.
Definition: Quattro.cpp:214
This class parses Quattro Pro spreadsheet: .wq1 and wq2.
Definition: Quattro.h:47
shared_ptr< WKSContentListener > m_listener
Definition: Quattro.h:126
bool checkFilePosition(long pos)
return true if the pos is in the file, update the file size if need
Definition: Quattro.cpp:201
This class parses Quattro Pro DOS spreadsheet file.
Definition: QuattroSpreadsheet.h:48
bool readFieldName()
read a list of field name + ...
Definition: Quattro.cpp:914
shared_ptr< librevenge::RVNGInputStream > RVNGInputStreamPtr
shared pointer to librevenge::RVNGInputStream
Definition: libwps_internal.h:102
the class to store a color
Definition: libwps_internal.h:287
Internal: the subdocument of a WPS4Parser.
Definition: Quattro.cpp:63
bool checkHeader(WPSHeader *header, bool strict=false)
checks if the document header is correct (or not)
Definition: Quattro.cpp:317
~QuattroParser()
destructor
Definition: Quattro.cpp:192
bool readUnknown1()
reads some unknown spreadsheet zones 0:18|0:19|0:20|0:27|0:2a
Definition: Quattro.cpp:1160
bool getColor(int id, WPSColor &color) const
returns the color corresponding to an id
Definition: Quattro.cpp:222
bool readHeaderFooter(bool header)
reads the header/footer
Definition: Quattro.cpp:862
Definition: WKSParser.h:33
bool readZone()
reads a zone
Definition: Quattro.cpp:425
Internal: namespace to define internal class of QuattroParser.
Definition: Quattro.cpp:49
void sendHeaderFooter(bool header)
send the header/footer
Definition: Quattro.cpp:834

Generated on Sat Jul 29 2017 15:32:22 for libwps by doxygen 1.8.8