QuattroFormula.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_FORMULA_H
23#define QUATTRO_FORMULA_H
24
25#include <functional>
26#include <ostream>
27#include <string>
28#include <vector>
29
30#include <librevenge-stream/librevenge-stream.h>
31
32#include "libwps_internal.h"
33
34#include "WPSDebug.h"
35#include "WKSContentListener.h"
36
38{
39struct State;
40
43{
44public:
47 : m_cells()
48 {
49 }
52 {
53 if (!m_cells.empty() && instr.m_type!=instr.F_Operator && m_cells.back().m_type!=instr.F_Operator)
54 {
56 sep.m_type=sep.F_Operator;
57 sep.m_content=";";
58 m_cells.push_back(sep);
59 }
60 m_cells.push_back(instr);
61 }
63 bool empty() const
64 {
65 return m_cells.empty();
66 }
71};
72
73}
74
96#endif /* QUATTRO_FORMULA_H */
97/* vim:set shiftwidth=4 softtabstop=4 noexpandtab: */
small class use to store Quattro Pro cell reference (.wb1-3 and qpw)
Definition QuattroFormula.h:43
bool empty() const
return true if we have not read any reference
Definition QuattroFormula.h:63
void addInstruction(WKSContentListener::FormulaInstruction const &instr)
add an instruction
Definition QuattroFormula.h:51
std::vector< WKSContentListener::FormulaInstruction > m_cells
the list of instruction coding each cell's block
Definition QuattroFormula.h:70
CellReference()
constructor
Definition QuattroFormula.h:46
friend std::ostream & operator<<(std::ostream &o, CellReference const &ref)
friend operator<<
Definition QuattroFormula.cpp:569
a class to read formula in a wb1-wb3, qpw file
Definition QuattroFormula.h:77
std::shared_ptr< QuattroFormulaInternal::State > m_state
the formula state
Definition QuattroFormula.h:94
void addDLLIdName(int id, librevenge::RVNGString const &name, bool func1)
add a dll's correspondance between an id and a name
Definition QuattroFormula.cpp:81
std::function< bool(std::shared_ptr< WPSStream > const &stream, long endPos, QuattroFormulaInternal::CellReference &ref, Vec2i const &cPos, int cSheet)> CellReferenceFunction
Definition QuattroFormula.h:81
bool readFormula(std::shared_ptr< WPSStream > const &stream, long endPos, Vec2i const &pos, int sheetId, std::vector< WKSContentListener::FormulaInstruction > &formula, std::string &error) const
reads a formula
Definition QuattroFormula.cpp:189
small class which defines a vector with 2 elements
Definition libwps_internal.h:535
Vec2(T xx=0, T yy=0)
constructor
Definition libwps_internal.h:538
namespace to regroup data used to read QuattroPro .wb1-3, .qpw formula
Definition Quattro.h:46
small class use to define a formula instruction
Definition WKSContentListener.h:58

Generated on Sat May 6 2023 13:09:45 for libwps by doxygen 1.9.8