QuattroDos.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_DOS_H
23 #define QUATTRO_DOS_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 
36 {
37 class SubDocument;
38 struct State;
39 }
40 
41 class QuattroDosChart;
43 
48 class QuattroDosParser final : public WKSParser
49 {
51  friend class QuattroDosChart;
52  friend class QuattroDosSpreadsheet;
53 public:
58  ~QuattroDosParser() final;
60  void parse(librevenge::RVNGSpreadsheetInterface *documentInterface) final;
62  bool checkHeader(WPSHeader *header, bool strict=false);
63 
64 protected:
66  bool checkFilePosition(long pos);
68  int version() const;
72  libwps_tools_win::Font::Type getDefaultFontType() const;
74  bool hasLICSCharacters() const;
76  librevenge::RVNGString getFileName(int fId) const;
77 
78  //
79  // interface with QuattroDosSpreadsheet
80  //
81 
83  bool getColor(int id, WPSColor &color) const;
85  bool getFont(int id, WPSFont &font, libwps_tools_win::Font::Type &type) const;
87  librevenge::RVNGString getSheetName(int id) const;
88 
89  //
90  // interface with QuattroDosChart
91  //
92 
94  bool sendChart(int sheetId, Vec2i const &cell, Vec2f const &chartSize);
95 
97  std::shared_ptr<WKSContentListener> createListener(librevenge::RVNGSpreadsheetInterface *interface);
99  void sendHeaderFooter(bool header);
100 
101  //
102  // low level
103  //
104 
106  bool readZones();
108  bool readZone();
109 
111 
113  bool readUserFonts();
115  bool readFont(WPSFont &font, libwps_tools_win::Font::Type &type);
117  bool readHeaderFooter(bool header);
118 
120  bool readFieldName();
122  bool readFileName();
123 
125  bool readPString(librevenge::RVNGString &string, long maxSize);
127 
129  bool readWindowRecord();
134  bool readUnknown1();
135 
136  std::shared_ptr<WKSContentListener> m_listener;
137  std::shared_ptr<QuattroDosParserInternal::State> m_state;
142  std::shared_ptr<QuattroDosChart> m_chartParser;
143 };
144 
145 #endif /* WPS4_H */
146 /* vim:set shiftwidth=4 softtabstop=4 noexpandtab: */
This class parses Quattro Pro DOS chart file.
Definition: QuattroDosChart.h:49
void parse(librevenge::RVNGSpreadsheetInterface *documentInterface) final
called by WPSDocument to parse the file
Definition: QuattroDos.cpp:285
bool readUnknown1()
reads some unknown spreadsheet zones 0:18|0:19|0:20|0:27|0:2a
Definition: QuattroDos.cpp:1169
bool readUserFonts()
reads the user fonts
Definition: QuattroDos.cpp:889
libwps_tools_win::Font::Type getDefaultFontType() const
returns the default font type, ie.
Definition: QuattroDos.cpp:229
Definition: WPSOLEStream.h:33
bool hasLICSCharacters() const
returns the true if the file has LICS characters
Definition: QuattroDos.cpp:268
Internal: namespace to define internal class of QuattroDosParser.
Definition: QuattroDos.cpp:51
This class parses Quattro Pro spreadsheet: .wq1 and wq2.
Definition: QuattroDos.h:48
define the font properties
Definition: WPSFont.h:36
int version() const
return the file version
Definition: QuattroDos.cpp:211
std::shared_ptr< QuattroDosSpreadsheet > m_spreadsheetParser
the spreadsheet manager
Definition: QuattroDos.h:140
Internal: the subdocument of a WPS4Parser.
Definition: QuattroDos.cpp:65
Type
enum Type
Definition: libwps_tools_win.h:46
librevenge::RVNGString getSheetName(int id) const
returns the name of the id&#39;s spreadsheet
Definition: QuattroDos.cpp:245
std::shared_ptr< QuattroDosParserInternal::State > m_state
the listener (if set)
Definition: QuattroDos.h:138
std::shared_ptr< QuattroDosChart > m_chartParser
the chart manager
Definition: QuattroDos.h:142
bool readFileName()
read a file name
Definition: QuattroDos.cpp:817
bool readZone()
reads a zone
Definition: QuattroDos.cpp:468
bool getFont(int id, WPSFont &font, libwps_tools_win::Font::Type &type) const
returns the font corresponding to an id
Definition: QuattroDos.cpp:255
bool checkHeader(WPSHeader *header, bool strict=false)
checks if the document header is correct (or not)
Definition: QuattroDos.cpp:360
Definition: WPSHeader.h:31
bool readFont(WPSFont &font, libwps_tools_win::Font::Type &type)
try to read a font
Definition: QuattroDos.cpp:937
This class parses Quattro Pro DOS spreadsheet file.
Definition: QuattroDosSpreadsheet.h:49
Definition: libwps_tools_win.h:61
std::shared_ptr< librevenge::RVNGInputStream > RVNGInputStreamPtr
shared pointer to librevenge::RVNGInputStream
Definition: libwps_internal.h:87
QuattroDosParser(RVNGInputStreamPtr &input, WPSHeaderPtr &header, libwps_tools_win::Font::Type encoding=libwps_tools_win::Font::UNKNOWN)
constructor
Definition: QuattroDos.cpp:197
std::shared_ptr< WKSContentListener > createListener(librevenge::RVNGSpreadsheetInterface *interface)
creates the main listener
Definition: QuattroDos.cpp:335
bool readWindowRecord()
reads windows record 0:7|0:9
Definition: QuattroDos.cpp:1120
bool readFieldName()
read a list of field name + ...
Definition: QuattroDos.cpp:1060
bool sendChart(int sheetId, Vec2i const &cell, Vec2f const &chartSize)
try to send the chart corresponding to sheetId and a position
Definition: QuattroDos.cpp:237
librevenge::RVNGString getFileName(int fId) const
returns the name of the fId file
Definition: QuattroDos.cpp:275
the class to store a color
Definition: libwps_internal.h:280
bool getColor(int id, WPSColor &color) const
returns the color corresponding to an id
Definition: QuattroDos.cpp:250
bool checkFilePosition(long pos)
return true if the pos is in the file, update the file size if need
Definition: QuattroDos.cpp:216
void sendHeaderFooter(bool header)
send the header/footer
Definition: QuattroDos.cpp:980
some Windows© classes and tools
Definition: libwps_tools_win.cpp:31
bool readPString(librevenge::RVNGString &string, long maxSize)
try to read a basic pascal string, knowing the maximum size(excluding string size) ...
Definition: QuattroDos.cpp:862
~QuattroDosParser() final
destructor
Definition: QuattroDos.cpp:207
std::shared_ptr< WKSContentListener > m_listener
Definition: QuattroDos.h:136
bool readZones()
finds the different zones (spreadsheet, chart, print, ...)
Definition: QuattroDos.cpp:431
std::shared_ptr< WPSHeader > WPSHeaderPtr
shared pointer to WPSHeader
Definition: libwps_internal.h:109
Definition: WKSParser.h:33
Definition: WKSContentListener.h:53
bool readHeaderFooter(bool header)
reads the header/footer
Definition: QuattroDos.cpp:1008

Generated on Fri May 27 2022 03:07:00 for libwps by doxygen 1.8.14