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_CELLMERGEOPTION_HXX
11 #define SC_CELLMERGEOPTION_HXX
13 #include "address.hxx"
19 struct ScCellMergeOption
21 ::std::set
<SCTAB
> maTabs
;
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
);
34 ScRange
getSingleRange(SCTAB nTab
) const;
35 ScRange
getFirstSingleRange() const;
41 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */