LibreOffice Module sc (master) 1
tokenuno.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
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 * This file incorporates work covered by the following license notice:
10 *
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 */
19
20#pragma once
21
22#include <memory>
23#include <com/sun/star/lang/XServiceInfo.hpp>
24#include <com/sun/star/beans/XPropertySet.hpp>
25#include <com/sun/star/sheet/XFormulaParser.hpp>
27#include <svl/lstner.hxx>
29#include "compiler.hxx"
30
31namespace com::sun::star::sheet { struct FormulaOpCodeMapEntry; }
32namespace com::sun::star::sheet { struct FormulaToken; }
33
34class ScTokenArray;
35class ScDocShell;
36
38{
39public:
41 ScDocument& rDoc,
42 ScTokenArray& rTokenArray,
43 const css::uno::Sequence< css::sheet::FormulaToken >& rSequence );
45 const ScDocument& rDoc,
46 css::uno::Sequence< css::sheet::FormulaToken >& rSequence,
47 const ScTokenArray& rTokenArray );
48};
49
50class ScFormulaParserObj final : public ::cppu::WeakImplHelper<
51 css::sheet::XFormulaParser,
52 css::beans::XPropertySet,
53 css::lang::XServiceInfo >,
54 public SfxListener
55{
56private:
57 css::uno::Sequence< const css::sheet::FormulaOpCodeMapEntry > maOpCodeMapping;
58 css::uno::Sequence<css::sheet::ExternalLinkInfo> maExternalLinks;
61 sal_Int16 mnConv;
66
67 void SetCompilerFlags( ScCompiler& rCompiler ) const;
68
69public:
71 virtual ~ScFormulaParserObj() override;
72
73 virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint ) override;
74
75 // XFormulaParser
76 virtual css::uno::Sequence< css::sheet::FormulaToken > SAL_CALL parseFormula(
77 const OUString& aFormula,
78 const css::table::CellAddress& rReferencePos ) override;
79 virtual OUString SAL_CALL printFormula( const css::uno::Sequence< css::sheet::FormulaToken >& aTokens,
80 const css::table::CellAddress& rReferencePos ) override;
81
82 // XPropertySet
83 virtual css::uno::Reference< css::beans::XPropertySetInfo >
84 SAL_CALL getPropertySetInfo() override;
85 virtual void SAL_CALL setPropertyValue( const OUString& aPropertyName,
86 const css::uno::Any& aValue ) override;
87 virtual css::uno::Any SAL_CALL getPropertyValue( const OUString& PropertyName ) override;
88 virtual void SAL_CALL addPropertyChangeListener( const OUString& aPropertyName,
89 const css::uno::Reference< css::beans::XPropertyChangeListener >& xListener ) override;
90 virtual void SAL_CALL removePropertyChangeListener( const OUString& aPropertyName,
91 const css::uno::Reference< css::beans::XPropertyChangeListener >& aListener ) override;
92 virtual void SAL_CALL addVetoableChangeListener( const OUString& PropertyName,
93 const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener ) override;
94 virtual void SAL_CALL removeVetoableChangeListener( const OUString& PropertyName,
95 const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener ) override;
96
97 // XServiceInfo
98 virtual OUString SAL_CALL getImplementationName() override;
99 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override;
100 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
101};
102
104{
105public:
106 ScFormulaOpCodeMapperObj(::std::unique_ptr<formula::FormulaCompiler> && _pCompiler);
107};
108
109/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
ScFormulaOpCodeMapperObj(::std::unique_ptr< formula::FormulaCompiler > &&_pCompiler)
Definition: tokenuno.cxx:515
virtual sal_Bool SAL_CALL supportsService(const OUString &ServiceName) override
ScDocShell * mpDocShell
Definition: tokenuno.hxx:60
virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override
virtual void SAL_CALL removePropertyChangeListener(const OUString &aPropertyName, const css::uno::Reference< css::beans::XPropertyChangeListener > &aListener) override
virtual css::uno::Any SAL_CALL getPropertyValue(const OUString &PropertyName) override
Definition: tokenuno.cxx:255
virtual void Notify(SfxBroadcaster &rBC, const SfxHint &rHint) override
Definition: tokenuno.cxx:94
css::uno::Sequence< const css::sheet::FormulaOpCodeMapEntry > maOpCodeMapping
Definition: tokenuno.hxx:57
ScCompiler::OpCodeMapPtr mxOpCodeMap
Definition: tokenuno.hxx:59
virtual OUString SAL_CALL getImplementationName() override
virtual void SAL_CALL removeVetoableChangeListener(const OUString &PropertyName, const css::uno::Reference< css::beans::XVetoableChangeListener > &aListener) override
ScFormulaParserObj(ScDocShell *pDocSh)
Definition: tokenuno.cxx:75
virtual OUString SAL_CALL printFormula(const css::uno::Sequence< css::sheet::FormulaToken > &aTokens, const css::table::CellAddress &rReferencePos) override
Definition: tokenuno.cxx:152
virtual void SAL_CALL addVetoableChangeListener(const OUString &PropertyName, const css::uno::Reference< css::beans::XVetoableChangeListener > &aListener) override
css::uno::Sequence< css::sheet::ExternalLinkInfo > maExternalLinks
Definition: tokenuno.hxx:58
void SetCompilerFlags(ScCompiler &rCompiler) const
Definition: tokenuno.cxx:102
bool mbRefConventionChartOOXML
Definition: tokenuno.hxx:65
virtual ~ScFormulaParserObj() override
Definition: tokenuno.cxx:86
virtual css::uno::Sequence< css::sheet::FormulaToken > SAL_CALL parseFormula(const OUString &aFormula, const css::table::CellAddress &rReferencePos) override
Definition: tokenuno.cxx:129
virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo() override
Definition: tokenuno.cxx:178
virtual void SAL_CALL addPropertyChangeListener(const OUString &aPropertyName, const css::uno::Reference< css::beans::XPropertyChangeListener > &xListener) override
sal_Int16 mnConv
Definition: tokenuno.hxx:61
virtual void SAL_CALL setPropertyValue(const OUString &aPropertyName, const css::uno::Any &aValue) override
Definition: tokenuno.cxx:184
static SC_DLLPUBLIC void ConvertToTokenSequence(const ScDocument &rDoc, css::uno::Sequence< css::sheet::FormulaToken > &rSequence, const ScTokenArray &rTokenArray)
Definition: tokenuno.cxx:380
static SC_DLLPUBLIC bool ConvertToTokenArray(ScDocument &rDoc, ScTokenArray &rTokenArray, const css::uno::Sequence< css::sheet::FormulaToken > &rSequence)
Definition: tokenuno.cxx:374
std::shared_ptr< const OpCodeMap > OpCodeMapPtr
#define SC_DLLPUBLIC
Definition: scdllapi.h:27
unsigned char sal_Bool