Version 5.2.6.1, tag libreoffice-5.2.6.1
[LibreOffice.git] / offapi / com / sun / star / sheet / FormulaParser.idl
blob2c1145ec1369066cdbba91270b973af9be1f2abc
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 __com_sun_star_sheet_FormulaParser_idl__
21 #define __com_sun_star_sheet_FormulaParser_idl__
23 #include <com/sun/star/beans/PropertySet.idl>
24 #include <com/sun/star/sheet/XFormulaParser.idl>
25 #include <com/sun/star/sheet/FormulaOpCodeMapEntry.idl>
26 #include <com/sun/star/sheet/ExternalLinkInfo.idl>
29 module com { module sun { module star { module sheet {
32 service FormulaParser
35 service com::sun::star::beans::PropertySet;
38 interface XFormulaParser;
41 /** specifies whether to use English parser and formatter.
43 <p>Note: When changing this, an already existing #OpCodeMap
44 needs to be recreated internally, so for performance reasons
45 set this <em>before</em> setting the #OpCodeMap.
47 [property] boolean CompileEnglish;
50 /** specifies which address reference style convention to use when
51 parsing a formula string.
53 @see AddressConvention
55 [property] short FormulaConvention;
58 [property] boolean IgnoreLeadingSpaces;
61 [property] string ParameterSeparator;
64 /** contains the complete mapping of names to op-codes.
66 <p>Names and symbols not defined here lead to a parser/print error.</p>
68 [property] sequence< FormulaOpCodeMapEntry > OpCodeMap;
71 /** contains a list of external links referenced in formulas.
73 <p>Use of this property depends on the FormulaConvention
74 in use. It is relevant only for
75 AddressConvention::XL_OOX to map indices to external
76 documents. The sequence must be in the order of indices used. Note
77 that indices are 1-based, the sequence must start with an empty
78 element.</p>
80 @since OOo 3.1
82 [property] sequence< ExternalLinkInfo > ExternalLinks;
87 }; }; }; };
89 #endif
91 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */