fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / sc / source / ui / inc / cellmergeoption.hxx
blobb838ddf0377242dfd893a2fc1f547038168404a2
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 INCLUDED_SC_SOURCE_UI_INC_CELLMERGEOPTION_HXX
11 #define INCLUDED_SC_SOURCE_UI_INC_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;
38 #endif
40 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */