Stop leaking all ScPostIt instances.
[LibreOffice.git] / sc / source / ui / inc / cellmergeoption.hxx
blobf92928b2fb26dff882e65373c20bc97d4f7e0385
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 #ifndef SC_CELLMERGEOPTION_HXX
11 #define SC_CELLMERGEOPTION_HXX
13 #include "address.hxx"
15 #include <set>
17 class ScRange;
19 struct ScCellMergeOption
21 ::std::set<SCTAB> maTabs;
22 SCCOL mnStartCol;
23 SCROW mnStartRow;
24 SCCOL mnEndCol;
25 SCROW mnEndRow;
26 bool mbCenter;
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;
39 #endif
41 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */