Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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 : */
9 :
10 : #ifndef INCLUDED_SC_SOURCE_UI_INC_CELLMERGEOPTION_HXX
11 : #define INCLUDED_SC_SOURCE_UI_INC_CELLMERGEOPTION_HXX
12 :
13 : #include "address.hxx"
14 :
15 : #include <set>
16 :
17 : class ScRange;
18 :
19 22 : struct ScCellMergeOption
20 : {
21 : ::std::set<SCTAB> maTabs;
22 : SCCOL mnStartCol;
23 : SCROW mnStartRow;
24 : SCCOL mnEndCol;
25 : SCROW mnEndRow;
26 : bool mbCenter;
27 :
28 : explicit ScCellMergeOption(const ScRange& rRange);
29 : explicit ScCellMergeOption(SCCOL nStartCol, SCROW nStartRow,
30 : SCCOL nEndCol, SCROW nEndRow,
31 : bool bCenter = false);
32 : explicit ScCellMergeOption(const ScCellMergeOption& r);
33 :
34 : ScRange getSingleRange(SCTAB nTab) const;
35 : ScRange getFirstSingleRange() const;
36 : };
37 :
38 : #endif
39 :
40 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|