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/.
12 #include "address.hxx"
13 #include "rangelst.hxx"
14 #include <svl/listener.hxx>
16 #include <unordered_map>
22 * Used to collect positions of formula cells that belong to a formula
25 class RefQueryFormulaGroup final
: public SvtListener::QueryBase
28 typedef std::vector
<SCROW
> ColType
;
29 typedef std::unordered_map
<SCCOL
, ColType
> ColsType
;
30 typedef std::unordered_map
<SCTAB
, ColsType
> TabsType
;
32 RefQueryFormulaGroup();
33 virtual ~RefQueryFormulaGroup() override
;
35 void setSkipRange(const ScRange
& rRange
);
36 void add(const ScAddress
& rPos
);
39 * Row positions in each column may contain duplicates. Caller must
40 * remove duplicates if necessary.
42 const TabsType
& getAllPositions() const;
49 class QueryRange final
: public SvtListener::QueryBase
53 QueryRange(const QueryRange
&) = delete;
54 QueryRange
& operator=(const QueryRange
&) = delete;
58 virtual ~QueryRange() override
;
60 void add(const ScRange
& rRange
);
62 void swapRanges(ScRangeList
& rRanges
);
66 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */