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 .
22 #include "address.hxx"
30 struct ScComplexRefData
;
32 namespace ScRefTokenHelper
35 * Compile an array of reference tokens from a data source range string.
36 * The source range may consist of multiple ranges separated by ';'s.
38 void compileRangeRepresentation(
39 ::std::vector
<ScTokenRef
>& rRefTokens
, const OUString
& rRangeStr
, ScDocument
& rDoc
,
40 const sal_Unicode cSep
, ::formula::FormulaGrammar::Grammar eGrammar
, bool bOnly3DRef
= false);
42 bool getRangeFromToken(const ScDocument
* pDoc
, ScRange
& rRange
, const ScTokenRef
& pToken
, const ScAddress
& rPos
, bool bExternal
= false);
44 void getRangeListFromTokens(const ScDocument
* pDoc
, ScRangeList
& rRangeList
, const ::std::vector
<ScTokenRef
>& pTokens
, const ScAddress
& rPos
);
47 * Create a double reference token from a range object.
49 void getTokenFromRange(const ScDocument
* pDoc
, ScTokenRef
& pToken
, const ScRange
& rRange
);
51 void getTokensFromRangeList(const ScDocument
* pDoc
, ::std::vector
<ScTokenRef
>& pTokens
, const ScRangeList
& rRanges
);
53 bool SC_DLLPUBLIC
isRef(const ScTokenRef
& pToken
);
54 bool SC_DLLPUBLIC
isExternalRef(const ScTokenRef
& pToken
);
56 bool SC_DLLPUBLIC
intersects(const ScDocument
* pDoc
,
57 const ::std::vector
<ScTokenRef
>& rTokens
, const ScTokenRef
& pToken
, const ScAddress
& rPos
);
59 void SC_DLLPUBLIC
join(const ScDocument
* pDoc
, ::std::vector
<ScTokenRef
>& rTokens
, const ScTokenRef
& pToken
, const ScAddress
& rPos
);
61 bool getDoubleRefDataFromToken(ScComplexRefData
& rData
, const ScTokenRef
& pToken
);
63 ScTokenRef
createRefToken(const ScDocument
& rDoc
, const ScAddress
& rAddr
);
64 ScTokenRef
createRefToken(const ScDocument
& rDoc
, const ScRange
& rRange
);
67 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */