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 #ifndef INCLUDED_FORMULA_FORMULAOPCODEMAPPEROBJ_HXX
21 #define INCLUDED_FORMULA_FORMULAOPCODEMAPPEROBJ_HXX
22 
23 #include <memory>
24 
25 #include <com/sun/star/lang/XServiceInfo.hpp>
26 #include <com/sun/star/uno/Sequence.hxx>
27 #include <com/sun/star/sheet/XFormulaOpCodeMapper.hpp>
28 #include <cppuhelper/implbase.hxx>
29 #include <formula/formuladllapi.h>
30 #include <rtl/ustring.hxx>
31 #include <sal/types.h>
32 
33 namespace com::sun::star {
34     namespace sheet { struct FormulaOpCodeMapEntry; }
35     namespace sheet { struct FormulaToken; }
36     namespace uno { class XComponentContext; }
37     namespace uno { class XInterface; }
38 }
39 
40 namespace formula
41 {
42 
43 class FormulaCompiler;
44 
45 class FORMULA_DLLPUBLIC FormulaOpCodeMapperObj : public cppu::WeakImplHelper<
46                             css::sheet::XFormulaOpCodeMapper,
47                             css::lang::XServiceInfo >
48 {
49     ::std::unique_ptr<FormulaCompiler> m_pCompiler;
50 
51 public:
52                             FormulaOpCodeMapperObj(::std::unique_ptr<FormulaCompiler> && _pCompiler);
53     virtual                 ~FormulaOpCodeMapperObj() override;
54 
55 private:
56                             // XFormulaOpCodeMapper
57                             // Attributes
58     virtual ::sal_Int32 SAL_CALL getOpCodeExternal() override;
59     virtual ::sal_Int32 SAL_CALL getOpCodeUnknown() override;
60                             // Methods
61     virtual css::uno::Sequence< css::sheet::FormulaToken > SAL_CALL getMappings(
62                                     const css::uno::Sequence< OUString >& rNames,
63                                     sal_Int32 nLanguage ) override;
64     virtual css::uno::Sequence< css::sheet::FormulaOpCodeMapEntry > SAL_CALL getAvailableMappings(
65                                     sal_Int32 nLanguage, sal_Int32 nGroups ) override;
66 
67                             // XServiceInfo
68     virtual OUString SAL_CALL getImplementationName() override;
69     virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override;
70     virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
71 
72 };
73 
74 } // formula
75 
76 
77 #endif // INCLUDED_FORMULA_FORMULAOPCODEMAPPEROBJ_HXX
78 
79 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
80