Revert "tdf#110987: type detection, binary Office formats > templates"
[LibreOffice.git] / sc / inc / reftokenhelper.hxx
blobcf71b2309bad7c1266e10d0a20444103a18611ae
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 INCLUDED_SC_INC_REFTOKENHELPER_HXX
21 #define INCLUDED_SC_INC_REFTOKENHELPER_HXX
23 #include "address.hxx"
24 #include "types.hxx"
25 #include "scdllapi.h"
27 #include <vector>
29 class ScDocument;
30 class ScRangeList;
31 struct ScComplexRefData;
33 namespace ScRefTokenHelper
35 /**
36 * Compile an array of reference tokens from a data source range string.
37 * The source range may consist of multiple ranges separated by ';'s.
39 void compileRangeRepresentation(
40 ::std::vector<ScTokenRef>& rRefTokens, const OUString& rRangeStr, ScDocument* pDoc,
41 const sal_Unicode cSep, ::formula::FormulaGrammar::Grammar eGrammar, bool bOnly3DRef = false);
43 bool getRangeFromToken(ScRange& rRange, const ScTokenRef& pToken, const ScAddress& rPos, bool bExternal = false);
45 void getRangeListFromTokens(ScRangeList& rRangeList, const ::std::vector<ScTokenRef>& pTokens, const ScAddress& rPos);
47 /**
48 * Create a double reference token from a range object.
50 void getTokenFromRange(ScTokenRef& pToken, const ScRange& rRange);
52 void getTokensFromRangeList(::std::vector<ScTokenRef>& pTokens, const ScRangeList& rRanges);
54 bool SC_DLLPUBLIC isRef(const ScTokenRef& pToken);
55 bool SC_DLLPUBLIC isExternalRef(const ScTokenRef& pToken);
57 bool SC_DLLPUBLIC intersects(
58 const ::std::vector<ScTokenRef>& rTokens, const ScTokenRef& pToken, const ScAddress& rPos);
60 void SC_DLLPUBLIC join(::std::vector<ScTokenRef>& rTokens, const ScTokenRef& pToken, const ScAddress& rPos);
62 bool getDoubleRefDataFromToken(ScComplexRefData& rData, const ScTokenRef& pToken);
64 ScTokenRef createRefToken(const ScAddress& rAddr);
65 ScTokenRef createRefToken(const ScRange& rRange);
68 #endif
70 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */