LOK: tilebench improvements
[LibreOffice.git] / sc / inc / tokenuno.hxx
blob4b5ddab038a11df4cd170727e8dc78829e99bdc7
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #ifndef INCLUDED_SC_INC_TOKENUNO_HXX
21 #define INCLUDED_SC_INC_TOKENUNO_HXX
23 #include <memory>
24 #include <com/sun/star/uno/Sequence.hxx>
25 #include <com/sun/star/lang/XServiceInfo.hpp>
26 #include <com/sun/star/beans/XPropertySet.hpp>
27 #include <com/sun/star/sheet/FormulaOpCodeMapEntry.hpp>
28 #include <com/sun/star/sheet/FormulaToken.hpp>
29 #include <com/sun/star/sheet/XFormulaParser.hpp>
30 #include <cppuhelper/implbase.hxx>
31 #include <svl/lstner.hxx>
32 #include <formula/FormulaOpCodeMapperObj.hxx>
33 #include "address.hxx"
34 #include "compiler.hxx"
36 class ScTokenArray;
37 class ScDocShell;
39 class ScTokenConversion
41 public:
42 static SC_DLLPUBLIC bool ConvertToTokenArray(
43 ScDocument& rDoc,
44 ScTokenArray& rTokenArray,
45 const css::uno::Sequence< css::sheet::FormulaToken >& rSequence );
46 static SC_DLLPUBLIC bool ConvertToTokenSequence(
47 const ScDocument& rDoc,
48 css::uno::Sequence< css::sheet::FormulaToken >& rSequence,
49 const ScTokenArray& rTokenArray );
52 class ScFormulaParserObj : public ::cppu::WeakImplHelper<
53 css::sheet::XFormulaParser,
54 css::beans::XPropertySet,
55 css::lang::XServiceInfo >,
56 public SfxListener
58 private:
59 css::uno::Sequence< const css::sheet::FormulaOpCodeMapEntry > maOpCodeMapping;
60 css::uno::Sequence<css::sheet::ExternalLinkInfo> maExternalLinks;
61 ScCompiler::OpCodeMapPtr mxOpCodeMap;
62 ScDocShell* mpDocShell;
63 sal_Int16 mnConv;
64 bool mbEnglish;
65 bool mbIgnoreSpaces;
66 bool mbCompileFAP;
68 void SetCompilerFlags( ScCompiler& rCompiler ) const;
70 public:
71 ScFormulaParserObj(ScDocShell* pDocSh);
72 virtual ~ScFormulaParserObj() override;
74 virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint ) override;
76 // XFormulaParser
77 virtual css::uno::Sequence< css::sheet::FormulaToken > SAL_CALL parseFormula(
78 const OUString& aFormula,
79 const css::table::CellAddress& rReferencePos ) override;
80 virtual OUString SAL_CALL printFormula( const css::uno::Sequence< css::sheet::FormulaToken >& aTokens,
81 const css::table::CellAddress& rReferencePos ) override;
83 // XPropertySet
84 virtual css::uno::Reference< css::beans::XPropertySetInfo >
85 SAL_CALL getPropertySetInfo() override;
86 virtual void SAL_CALL setPropertyValue( const OUString& aPropertyName,
87 const css::uno::Any& aValue ) override;
88 virtual css::uno::Any SAL_CALL getPropertyValue( const OUString& PropertyName ) override;
89 virtual void SAL_CALL addPropertyChangeListener( const OUString& aPropertyName,
90 const css::uno::Reference< css::beans::XPropertyChangeListener >& xListener ) override;
91 virtual void SAL_CALL removePropertyChangeListener( const OUString& aPropertyName,
92 const css::uno::Reference< css::beans::XPropertyChangeListener >& aListener ) override;
93 virtual void SAL_CALL addVetoableChangeListener( const OUString& PropertyName,
94 const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener ) override;
95 virtual void SAL_CALL removeVetoableChangeListener( const OUString& PropertyName,
96 const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener ) override;
98 // XServiceInfo
99 virtual OUString SAL_CALL getImplementationName() override;
100 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override;
101 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
104 class ScFormulaOpCodeMapperObj : public formula::FormulaOpCodeMapperObj
106 public:
107 ScFormulaOpCodeMapperObj(::std::unique_ptr<formula::FormulaCompiler> && _pCompiler);
110 #endif
112 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */