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/.
10 #ifndef SC_LISTENERQUERY_HXX
11 #define SC_LISTENERQUERY_HXX
13 #include "address.hxx"
14 #include "rangelst.hxx"
15 #include <svl/listener.hxx>
17 #include <unordered_map>
23 * Used to collect positions of formula cells that belong to a formula
26 class RefQueryFormulaGroup final
: public SvtListener::QueryBase
29 typedef std::vector
<SCROW
> ColType
;
30 typedef std::unordered_map
<SCCOL
, ColType
> ColsType
;
31 typedef std::unordered_map
<SCTAB
, ColsType
> TabsType
;
33 RefQueryFormulaGroup();
34 virtual ~RefQueryFormulaGroup() override
;
36 void setSkipRange(const ScRange
& rRange
);
37 void add(const ScAddress
& rPos
);
40 * Row positions in each column may contain duplicates. Caller must
41 * remove duplicates if necessary.
43 const TabsType
& getAllPositions() const;
50 class QueryRange final
: public SvtListener::QueryBase
54 QueryRange(const QueryRange
&) = delete;
55 QueryRange
& operator=(const QueryRange
&) = delete;
59 virtual ~QueryRange() override
;
61 void add(const ScRange
& rRange
);
63 void swapRanges(ScRangeList
& rRanges
);
69 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */