Version 5.2.6.1, tag libreoffice-5.2.6.1
[LibreOffice.git] / sc / inc / tokenuno.hxx
blobf28d24eada644ff01460d35a8bd5450cc3581d54
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 <com/sun/star/uno/Sequence.hxx>
24 #include <com/sun/star/lang/XServiceInfo.hpp>
25 #include <com/sun/star/beans/XPropertySet.hpp>
26 #include <com/sun/star/sheet/FormulaOpCodeMapEntry.hpp>
27 #include <com/sun/star/sheet/FormulaToken.hpp>
28 #include <com/sun/star/sheet/XFormulaParser.hpp>
29 #include <cppuhelper/implbase.hxx>
30 #include <svl/lstner.hxx>
31 #include <formula/FormulaOpCodeMapperObj.hxx>
32 #include "address.hxx"
33 #include "compiler.hxx"
35 class ScTokenArray;
36 class ScDocShell;
38 class ScTokenConversion
40 public:
41 static SC_DLLPUBLIC bool ConvertToTokenArray(
42 ScDocument& rDoc,
43 ScTokenArray& rTokenArray,
44 const css::uno::Sequence< css::sheet::FormulaToken >& rSequence );
45 static SC_DLLPUBLIC bool ConvertToTokenSequence(
46 const ScDocument& rDoc,
47 css::uno::Sequence< css::sheet::FormulaToken >& rSequence,
48 const ScTokenArray& rTokenArray );
51 class ScFormulaParserObj : public ::cppu::WeakImplHelper<
52 css::sheet::XFormulaParser,
53 css::beans::XPropertySet,
54 css::lang::XServiceInfo >,
55 public SfxListener
57 private:
58 css::uno::Sequence< const css::sheet::FormulaOpCodeMapEntry > maOpCodeMapping;
59 css::uno::Sequence<css::sheet::ExternalLinkInfo> maExternalLinks;
60 ScCompiler::OpCodeMapPtr mxOpCodeMap;
61 ScDocShell* mpDocShell;
62 sal_Int16 mnConv;
63 bool mbEnglish;
64 bool mbIgnoreSpaces;
65 bool mbCompileFAP;
67 void SetCompilerFlags( ScCompiler& rCompiler ) const;
69 public:
70 ScFormulaParserObj(ScDocShell* pDocSh);
71 virtual ~ScFormulaParserObj();
73 virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint ) override;
75 // XFormulaParser
76 virtual css::uno::Sequence< css::sheet::FormulaToken > SAL_CALL parseFormula(
77 const OUString& aFormula,
78 const css::table::CellAddress& rReferencePos )
79 throw (css::uno::RuntimeException,
80 std::exception) override;
81 virtual OUString SAL_CALL printFormula( const css::uno::Sequence< css::sheet::FormulaToken >& aTokens,
82 const css::table::CellAddress& rReferencePos )
83 throw (css::uno::RuntimeException, std::exception) override;
85 // XPropertySet
86 virtual css::uno::Reference< css::beans::XPropertySetInfo >
87 SAL_CALL getPropertySetInfo()
88 throw(css::uno::RuntimeException, std::exception) override;
89 virtual void SAL_CALL setPropertyValue( const OUString& aPropertyName,
90 const css::uno::Any& aValue )
91 throw(css::beans::UnknownPropertyException,
92 css::beans::PropertyVetoException,
93 css::lang::IllegalArgumentException,
94 css::lang::WrappedTargetException,
95 css::uno::RuntimeException, std::exception) override;
96 virtual css::uno::Any SAL_CALL getPropertyValue( const OUString& PropertyName )
97 throw(css::beans::UnknownPropertyException,
98 css::lang::WrappedTargetException,
99 css::uno::RuntimeException, std::exception) override;
100 virtual void SAL_CALL addPropertyChangeListener( const OUString& aPropertyName,
101 const css::uno::Reference< css::beans::XPropertyChangeListener >& xListener )
102 throw(css::beans::UnknownPropertyException,
103 css::lang::WrappedTargetException,
104 css::uno::RuntimeException, std::exception) override;
105 virtual void SAL_CALL removePropertyChangeListener( const OUString& aPropertyName,
106 const css::uno::Reference< css::beans::XPropertyChangeListener >& aListener )
107 throw(css::beans::UnknownPropertyException,
108 css::lang::WrappedTargetException,
109 css::uno::RuntimeException, std::exception) override;
110 virtual void SAL_CALL addVetoableChangeListener( const OUString& PropertyName,
111 const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener )
112 throw(css::beans::UnknownPropertyException,
113 css::lang::WrappedTargetException,
114 css::uno::RuntimeException, std::exception) override;
115 virtual void SAL_CALL removeVetoableChangeListener( const OUString& PropertyName,
116 const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener )
117 throw(css::beans::UnknownPropertyException,
118 css::lang::WrappedTargetException,
119 css::uno::RuntimeException, std::exception) override;
121 // XServiceInfo
122 virtual OUString SAL_CALL getImplementationName()
123 throw(css::uno::RuntimeException, std::exception) override;
124 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName )
125 throw(css::uno::RuntimeException, std::exception) override;
126 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames()
127 throw(css::uno::RuntimeException, std::exception) override;
130 class ScFormulaOpCodeMapperObj : public formula::FormulaOpCodeMapperObj
132 public:
133 ScFormulaOpCodeMapperObj(::std::unique_ptr<formula::FormulaCompiler> && _pCompiler);
136 #endif
138 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */