LanguageTool: don't crash if REST protocol isn't set
[LibreOffice.git] / sc / inc / columnspanset.hxx
blobd95ac9c82fc1aeeb8fb5d60421af75ac10cfcb25
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/.
8 */
10 #pragma once
12 #include "address.hxx"
14 #include <vector>
15 #include <mdds/flat_segment_tree.hpp>
17 class ScDocument;
18 class ScColumn;
19 class ScMarkData;
20 class ScRangeList;
21 struct ScSheetLimits;
23 namespace sc {
25 struct ColumnBlockConstPosition;
26 class SingleColumnSpanSet;
28 struct RowSpan
30 SCROW mnRow1;
31 SCROW mnRow2;
33 RowSpan(SCROW nRow1, SCROW nRow2);
36 struct SC_DLLPUBLIC ColRowSpan
38 SCCOLROW mnStart;
39 SCCOLROW mnEnd;
41 ColRowSpan(SCCOLROW nStart, SCCOLROW nEnd);
44 /**
45 * Structure that stores segments of boolean flags per column, and perform
46 * custom action on those segments.
48 class ColumnSpanSet
50 public:
51 typedef mdds::flat_segment_tree<SCROW, bool> ColumnSpansType;
53 private:
54 struct ColumnType
56 ColumnSpansType maSpans;
57 ColumnSpansType::const_iterator miPos;
59 ColumnType(SCROW nStart, SCROW nEnd, bool bInit);
62 typedef std::vector<std::unique_ptr<ColumnType>> TableType;
64 std::vector<TableType> maTables;
66 ColumnType& getColumn(const ScDocument& rDoc, SCTAB nTab, SCCOL nCol);
68 public:
69 class Action
71 public:
72 virtual ~Action() = 0;
73 virtual void startColumn(SCTAB nTab, SCCOL nCol);
74 virtual void execute(const ScAddress& rPos, SCROW nLength, bool bVal) = 0;
77 class ColumnAction
79 public:
80 virtual ~ColumnAction() = 0;
81 virtual void startColumn(ScColumn* pCol) = 0;
82 virtual void execute(SCROW nRow1, SCROW nRow2, bool bVal) = 0;
85 ColumnSpanSet();
86 ColumnSpanSet(const ColumnSpanSet&) = delete;
87 ColumnSpanSet& operator=(const ColumnSpanSet&) = delete;
88 ColumnSpanSet(ColumnSpanSet&&) = default;
89 ColumnSpanSet& operator=(ColumnSpanSet&&) = default;
90 ~ColumnSpanSet();
92 void set(const ScDocument& rDoc, SCTAB nTab, SCCOL nCol, SCROW nRow, bool bVal);
93 void set(const ScDocument& rDoc, SCTAB nTab, SCCOL nCol, SCROW nRow1, SCROW nRow2, bool bVal);
94 void set(const ScDocument& rDoc, const ScRange& rRange, bool bVal);
96 void set(const ScDocument& rDoc, SCTAB nTab, SCCOL nCol, const SingleColumnSpanSet& rSingleSet, bool bVal );
98 /**
99 * Scan specified range in a specified sheet and mark all non-empty cells
100 * with specified boolean value.
102 void scan(const ScDocument& rDoc, SCTAB nTab, SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2, bool bVal);
104 void executeAction(ScDocument& rDoc, Action& ac) const;
105 void executeColumnAction(ScDocument& rDoc, ColumnAction& ac) const;
109 * Keep track of spans in a single column only.
111 class SingleColumnSpanSet
113 public:
114 typedef mdds::flat_segment_tree<SCROW, bool> ColumnSpansType;
116 typedef std::vector<RowSpan> SpansType;
118 SingleColumnSpanSet(ScSheetLimits const &);
121 * Scan an entire column and tag all non-empty cell positions.
123 void scan(const ScColumn& rColumn);
126 * Scan a column between specified range, and tag all non-empty cell
127 * positions.
129 void scan(const ScColumn& rColumn, SCROW nStart, SCROW nEnd);
131 void scan(
132 ColumnBlockConstPosition& rBlockPos, const ScColumn& rColumn, SCROW nStart, SCROW nEnd);
135 * Scan all marked data and tag all marked segments in specified column.
137 void scan(const ScMarkData& rMark, SCTAB nTab, SCCOL nCol);
139 void scan(const ScRangeList& rRanges, SCTAB nTab, SCCOL nCol);
141 void set(SCROW nRow1, SCROW nRow2, bool bVal);
143 void getRows(std::vector<SCROW> &rRows) const;
145 void getSpans(SpansType& rSpans) const;
147 void swap( SingleColumnSpanSet& r );
149 /** Whether there isn't any row tagged. */
150 bool empty() const;
152 private:
153 ScSheetLimits const & mrSheetLimits;
154 ColumnSpansType maSpans;
158 * Optimized ColumnSpanSet version that operates on a single ScRange.
160 class RangeColumnSpanSet
162 public:
163 RangeColumnSpanSet( const ScRange& spanRange )
164 : range( spanRange ) {}
165 void executeColumnAction(ScDocument& rDoc, sc::ColumnSpanSet::ColumnAction& ac) const;
166 private:
167 ScRange range;
173 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */