2010-10-12 15:59:00 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2010-11-30 14:10:25 -05:00
|
|
|
/*
|
2013-04-19 21:10:42 +01:00
|
|
|
* This file is part of the LibreOffice project.
|
2010-11-30 14:10:25 -05:00
|
|
|
*
|
2013-04-19 21:10:42 +01:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2010-11-30 14:10:25 -05:00
|
|
|
*/
|
2010-09-16 11:43:15 +02:00
|
|
|
|
|
|
|
#include "cellmergeoption.hxx"
|
|
|
|
#include "address.hxx"
|
|
|
|
|
2010-11-30 13:55:00 -05:00
|
|
|
ScCellMergeOption::ScCellMergeOption(const ScRange& rRange) :
|
|
|
|
mnStartCol(rRange.aStart.Col()),
|
|
|
|
mnStartRow(rRange.aStart.Row()),
|
|
|
|
mnEndCol(rRange.aEnd.Col()),
|
|
|
|
mnEndRow(rRange.aEnd.Row()),
|
|
|
|
mbCenter(false)
|
|
|
|
{
|
|
|
|
SCTAB nTab1 = rRange.aStart.Tab();
|
|
|
|
SCTAB nTab2 = rRange.aEnd.Tab();
|
|
|
|
for (SCTAB i = nTab1; i <= nTab2; ++i)
|
|
|
|
maTabs.insert(i);
|
|
|
|
}
|
|
|
|
|
2010-09-16 11:43:15 +02:00
|
|
|
ScCellMergeOption::ScCellMergeOption(SCCOL nStartCol, SCROW nStartRow, SCCOL nEndCol, SCROW nEndRow, bool bCenter) :
|
|
|
|
mnStartCol(nStartCol),
|
|
|
|
mnStartRow(nStartRow),
|
|
|
|
mnEndCol(nEndCol),
|
|
|
|
mnEndRow(nEndRow),
|
|
|
|
mbCenter(bCenter)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ScCellMergeOption::ScCellMergeOption(const ScCellMergeOption& r) :
|
|
|
|
maTabs(r.maTabs),
|
|
|
|
mnStartCol(r.mnStartCol),
|
|
|
|
mnStartRow(r.mnStartRow),
|
|
|
|
mnEndCol(r.mnEndCol),
|
|
|
|
mnEndRow(r.mnEndRow),
|
|
|
|
mbCenter(r.mbCenter)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ScRange ScCellMergeOption::getSingleRange(SCTAB nTab) const
|
|
|
|
{
|
|
|
|
return ScRange(mnStartCol, mnStartRow, nTab, mnEndCol, mnEndRow, nTab);
|
|
|
|
}
|
|
|
|
|
|
|
|
ScRange ScCellMergeOption::getFirstSingleRange() const
|
|
|
|
{
|
|
|
|
SCTAB nTab = 0;
|
|
|
|
if (!maTabs.empty())
|
|
|
|
nTab = *maTabs.begin();
|
|
|
|
|
|
|
|
return getSingleRange(nTab);
|
|
|
|
}
|
2010-10-12 15:59:00 +02:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|