build fix
[LibreOffice.git] / sc / inc / markmulti.hxx
blob1abe250bee7d18e5ce4f2a3320b65e6758c83917
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_MARKMULTI_HXX
21 #define INCLUDED_SC_INC_MARKMULTI_HXX
23 #include "address.hxx"
24 #include "segmenttree.hxx"
25 #include "markarr.hxx"
27 #include <map>
29 class ScMultiSel
32 private:
33 typedef std::map<SCCOL, ScMarkArray> MapType;
34 MapType aMultiSelContainer;
35 ScMarkArray aRowSel;
37 friend class ScMultiSelIter;
39 public:
40 ScMultiSel();
41 ScMultiSel( const ScMultiSel& rMultiSel );
42 ~ScMultiSel();
44 ScMultiSel& operator=(const ScMultiSel& rMultiSel);
45 ScMultiSel& operator=(const ScMultiSel&& rMultiSel) = delete;
47 SCCOL size() const
49 return static_cast<SCCOL>( aMultiSelContainer.size() );
52 bool HasMarks( SCCOL nCol ) const;
53 bool HasOneMark( SCCOL nCol, SCROW& rStartRow, SCROW& rEndRow ) const;
54 bool GetMark( SCCOL nCol, SCROW nRow ) const;
55 bool IsAllMarked( SCCOL nCol, SCROW nStartRow, SCROW nEndRow ) const;
56 bool HasEqualRowsMarked( SCCOL nCol1, SCCOL nCol2 ) const;
57 SCsROW GetNextMarked( SCCOL nCol, SCsROW nRow, bool bUp ) const;
58 void SetMarkArea( SCCOL nStartCol, SCCOL nEndCol, SCROW nStartRow, SCROW nEndRow, bool bMark );
59 bool IsRowMarked( SCROW nRow ) const;
60 bool IsRowRangeMarked( SCROW nStartRow, SCROW nEndRow ) const;
61 bool IsEmpty() const { return ( !aMultiSelContainer.size() && !aRowSel.HasMarks() ); }
62 ScMarkArray GetMarkArray( SCCOL nCol ) const;
63 void Clear();
64 void MarkAllCols( SCROW nStartRow, SCROW nEndRow );
65 bool HasAnyMarks() const;
66 void ShiftCols(SCCOL nStartCol, long nColOffset);
67 void ShiftRows(SCROW nStartRow, long nRowOffset);
70 class ScMultiSelIter
73 private:
74 ScFlatBoolRowSegments aRowSegs;
75 SCROW nNextSegmentStart;
76 public:
77 ScMultiSelIter( const ScMultiSel& rMultiSel, SCCOL nCol );
78 ~ScMultiSelIter();
80 bool Next( SCROW& rTop, SCROW& rBottom );
81 const ScFlatBoolRowSegments& GetRowSegments() const { return aRowSegs; }
84 #endif
86 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */