1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 SC_TOKENUNO_HXX
21 #define SC_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/implbase3.hxx>
30 #include <svl/lstner.hxx>
31 #include <formula/FormulaOpCodeMapperObj.hxx>
32 #include "address.hxx"
33 #include "compiler.hxx"
38 class ScTokenConversion
41 static SC_DLLPUBLIC
bool ConvertToTokenArray(
43 ScTokenArray
& rTokenArray
,
44 const com::sun::star::uno::Sequence
< com::sun::star::sheet::FormulaToken
>& rSequence
);
45 static SC_DLLPUBLIC
bool ConvertToTokenSequence(
46 const ScDocument
& rDoc
,
47 com::sun::star::uno::Sequence
< com::sun::star::sheet::FormulaToken
>& rSequence
,
48 const ScTokenArray
& rTokenArray
);
51 class ScFormulaParserObj
: public ::cppu::WeakImplHelper3
<
52 ::com::sun::star::sheet::XFormulaParser
,
53 ::com::sun::star::beans::XPropertySet
,
54 ::com::sun::star::lang::XServiceInfo
>,
58 ::com::sun::star::uno::Sequence
< const ::com::sun::star::sheet::FormulaOpCodeMapEntry
> maOpCodeMapping
;
59 ::com::sun::star::uno::Sequence
< const ::com::sun::star::sheet::ExternalLinkInfo
> maExternalLinks
;
60 ScCompiler::OpCodeMapPtr mxOpCodeMap
;
61 ScDocShell
* mpDocShell
;
67 void SetCompilerFlags( ScCompiler
& rCompiler
) const;
70 ScFormulaParserObj(ScDocShell
* pDocSh
);
71 virtual ~ScFormulaParserObj();
73 virtual void Notify( SfxBroadcaster
& rBC
, const SfxHint
& rHint
);
76 virtual ::com::sun::star::uno::Sequence
< ::com::sun::star::sheet::FormulaToken
> SAL_CALL
parseFormula(
77 const OUString
& aFormula
,
78 const ::com::sun::star::table::CellAddress
& rReferencePos
)
79 throw (::com::sun::star::uno::RuntimeException
);
80 virtual OUString SAL_CALL
printFormula( const ::com::sun::star::uno::Sequence
<
81 ::com::sun::star::sheet::FormulaToken
>& aTokens
,
82 const ::com::sun::star::table::CellAddress
& rReferencePos
)
83 throw (::com::sun::star::uno::RuntimeException
);
86 virtual ::com::sun::star::uno::Reference
< ::com::sun::star::beans::XPropertySetInfo
>
87 SAL_CALL
getPropertySetInfo()
88 throw(::com::sun::star::uno::RuntimeException
);
89 virtual void SAL_CALL
setPropertyValue( const OUString
& aPropertyName
,
90 const ::com::sun::star::uno::Any
& aValue
)
91 throw(::com::sun::star::beans::UnknownPropertyException
,
92 ::com::sun::star::beans::PropertyVetoException
,
93 ::com::sun::star::lang::IllegalArgumentException
,
94 ::com::sun::star::lang::WrappedTargetException
,
95 ::com::sun::star::uno::RuntimeException
);
96 virtual ::com::sun::star::uno::Any SAL_CALL
getPropertyValue(
97 const OUString
& PropertyName
)
98 throw(::com::sun::star::beans::UnknownPropertyException
,
99 ::com::sun::star::lang::WrappedTargetException
,
100 ::com::sun::star::uno::RuntimeException
);
101 virtual void SAL_CALL
addPropertyChangeListener( const OUString
& aPropertyName
,
102 const ::com::sun::star::uno::Reference
<
103 ::com::sun::star::beans::XPropertyChangeListener
>& xListener
)
104 throw(::com::sun::star::beans::UnknownPropertyException
,
105 ::com::sun::star::lang::WrappedTargetException
,
106 ::com::sun::star::uno::RuntimeException
);
107 virtual void SAL_CALL
removePropertyChangeListener( const OUString
& aPropertyName
,
108 const ::com::sun::star::uno::Reference
<
109 ::com::sun::star::beans::XPropertyChangeListener
>& aListener
)
110 throw(::com::sun::star::beans::UnknownPropertyException
,
111 ::com::sun::star::lang::WrappedTargetException
,
112 ::com::sun::star::uno::RuntimeException
);
113 virtual void SAL_CALL
addVetoableChangeListener( const OUString
& PropertyName
,
114 const ::com::sun::star::uno::Reference
<
115 ::com::sun::star::beans::XVetoableChangeListener
>& aListener
)
116 throw(::com::sun::star::beans::UnknownPropertyException
,
117 ::com::sun::star::lang::WrappedTargetException
,
118 ::com::sun::star::uno::RuntimeException
);
119 virtual void SAL_CALL
removeVetoableChangeListener( const OUString
& PropertyName
,
120 const ::com::sun::star::uno::Reference
<
121 ::com::sun::star::beans::XVetoableChangeListener
>& aListener
)
122 throw(::com::sun::star::beans::UnknownPropertyException
,
123 ::com::sun::star::lang::WrappedTargetException
,
124 ::com::sun::star::uno::RuntimeException
);
127 virtual OUString SAL_CALL
getImplementationName()
128 throw(::com::sun::star::uno::RuntimeException
);
129 virtual sal_Bool SAL_CALL
supportsService( const OUString
& ServiceName
)
130 throw(::com::sun::star::uno::RuntimeException
);
131 virtual ::com::sun::star::uno::Sequence
< OUString
> SAL_CALL
getSupportedServiceNames()
132 throw(::com::sun::star::uno::RuntimeException
);
135 class ScFormulaOpCodeMapperObj
: public formula::FormulaOpCodeMapperObj
138 SAL_WNODEPRECATED_DECLARATIONS_PUSH
139 ScFormulaOpCodeMapperObj(::std::auto_ptr
<formula::FormulaCompiler
> _pCompiler
);
140 SAL_WNODEPRECATED_DECLARATIONS_POP
145 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */