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 FORMULA_FORMULA_HELPER_HXX
21 #define FORMULA_FORMULA_HELPER_HXX
23 #include "formula/IFunctionDescription.hxx"
25 #include <tools/string.hxx>
27 #include "formula/formuladllapi.h"
34 class FORMULA_DLLPUBLIC FormulaHelper
36 ::std::auto_ptr
<SvtSysLocale
> m_pSysLocale
;
37 const CharClass
* m_pCharClass
;
38 const IFunctionManager
* m_pFunctionManager
;
39 const sal_Unicode open
;
40 const sal_Unicode close
;
41 const sal_Unicode sep
;
42 const sal_Unicode arrayOpen
;
43 const sal_Unicode arrayClose
;
45 FormulaHelper(const IFunctionManager
* _pFunctionManager
);
47 inline const CharClass
* GetCharClass() const { return m_pCharClass
; }
49 sal_Bool
GetNextFunc( const String
& rFormula
,
51 xub_StrLen
& rFStart
, // Ein- und Ausgabe
52 xub_StrLen
* pFEnd
= NULL
,
53 const IFunctionDescription
** ppFDesc
= NULL
,
54 ::std::vector
< OUString
>* pArgs
= NULL
) const;
56 xub_StrLen
GetFunctionStart( const String
& rFormula
, xub_StrLen nStart
,
57 sal_Bool bBack
, String
* pFuncName
= NULL
) const;
59 xub_StrLen
GetFunctionEnd ( const String
& rFormula
, xub_StrLen nStart
) const;
61 xub_StrLen
GetArgStart ( const String
& rFormula
, xub_StrLen nStart
,
62 sal_uInt16 nArg
) const;
64 void GetArgStrings ( ::std::vector
< OUString
>& _rArgs
,
65 const String
& rFormula
,
67 sal_uInt16 nArgs
) const;
69 void FillArgStrings ( const String
& rFormula
,
72 ::std::vector
< OUString
>& _rArgs
) const;
74 // =============================================================================
76 // =============================================================================
78 #endif //FORMULA_FORMULA_HELPER_HXX
80 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */