2010-10-14 08:30:41 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2000-09-18 23:08:29 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 12:29:34 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2000-09-18 23:08:29 +00:00
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2000-09-18 23:08:29 +00:00
|
|
|
*
|
2008-04-10 12:29:34 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 23:08:29 +00:00
|
|
|
*
|
2008-04-10 12:29:34 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2000-09-18 23:08:29 +00:00
|
|
|
*
|
2008-04-10 12:29:34 +00:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2000-09-18 23:08:29 +00:00
|
|
|
*
|
2008-04-10 12:29:34 +00:00
|
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2000-09-18 23:08:29 +00:00
|
|
|
*
|
2008-04-10 12:29:34 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2000-09-18 23:08:29 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#include <hintids.hxx>
|
|
|
|
|
2009-10-16 00:05:16 +02:00
|
|
|
#include <svl/zforlist.hxx>
|
2000-09-18 23:08:29 +00:00
|
|
|
#include <frmfmt.hxx>
|
|
|
|
#include <doc.hxx>
|
2010-11-25 14:31:08 +01:00
|
|
|
#include <IDocumentUndoRedo.hxx>
|
2000-09-18 23:08:29 +00:00
|
|
|
#include <cntfrm.hxx>
|
|
|
|
#include <pam.hxx>
|
|
|
|
#include <swtable.hxx>
|
|
|
|
#include <ndtxt.hxx>
|
|
|
|
#include <fldbas.hxx>
|
|
|
|
#include <tblsel.hxx>
|
|
|
|
#include <tabfrm.hxx>
|
|
|
|
#include <poolfmt.hxx>
|
|
|
|
#include <cellatr.hxx>
|
|
|
|
#include <mvsave.hxx>
|
|
|
|
#include <docary.hxx>
|
|
|
|
#include <fmtanchr.hxx>
|
2010-12-15 09:14:15 +01:00
|
|
|
#include <hints.hxx>
|
|
|
|
#include <UndoTable.hxx>
|
2006-04-19 13:18:30 +00:00
|
|
|
#include <redline.hxx>
|
2007-02-28 14:41:43 +00:00
|
|
|
#include <fmtfsize.hxx>
|
|
|
|
#include <list>
|
2000-09-18 23:08:29 +00:00
|
|
|
|
2012-05-05 10:25:52 +01:00
|
|
|
sal_Bool _FndCntntLine( const SwTableLine*& rpLine, void* pPara );
|
|
|
|
sal_Bool _FndCntntBox( const SwTableBox*& rpBox, void* pPara );
|
2007-02-28 14:41:43 +00:00
|
|
|
void lcl_CpyBox( const SwTable& rCpyTbl, const SwTableBox* pCpyBox,
|
|
|
|
SwTable& rDstTbl, SwTableBox* pDstBox,
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_Bool bDelCntnt, SwUndoTblCpyTbl* pUndo );
|
2007-02-28 14:41:43 +00:00
|
|
|
|
|
|
|
// The following type will be used by table copy functions to describe
|
|
|
|
// the structure of tables (or parts of tables).
|
|
|
|
// It's for new table model only.
|
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
|
|
|
struct BoxSpanInfo
|
|
|
|
{
|
|
|
|
SwTableBox* mpBox;
|
|
|
|
SwTableBox* mpCopy;
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_uInt16 mnColSpan;
|
2007-02-28 14:41:43 +00:00
|
|
|
bool mbSelected;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef std::vector< BoxSpanInfo > BoxStructure;
|
|
|
|
typedef std::vector< BoxStructure > LineStructure;
|
2011-01-17 15:06:54 +01:00
|
|
|
typedef std::list< sal_uLong > ColumnStructure;
|
2007-02-28 14:41:43 +00:00
|
|
|
|
|
|
|
struct SubBox
|
|
|
|
{
|
|
|
|
SwTableBox *mpBox;
|
|
|
|
bool mbCovered;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef std::list< SubBox > SubLine;
|
|
|
|
typedef std::list< SubLine > SubTable;
|
|
|
|
|
|
|
|
class TableStructure
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
LineStructure maLines;
|
|
|
|
ColumnStructure maCols;
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_uInt16 mnStartCol;
|
|
|
|
sal_uInt16 mnAddLine;
|
|
|
|
void addLine( sal_uInt16 &rLine, const SwTableBoxes&, const SwSelBoxes*,
|
2007-02-28 14:41:43 +00:00
|
|
|
bool bNewModel );
|
2011-01-17 15:06:54 +01:00
|
|
|
void addBox( sal_uInt16 nLine, const SwSelBoxes*, SwTableBox *pBox,
|
|
|
|
sal_uLong &rnB, sal_uInt16 &rnC, ColumnStructure::iterator& rpCl,
|
2007-02-28 14:41:43 +00:00
|
|
|
BoxStructure::iterator& rpSel, bool &rbSel, bool bCover );
|
2011-01-17 15:06:54 +01:00
|
|
|
void incColSpan( sal_uInt16 nLine, sal_uInt16 nCol );
|
2007-02-28 14:41:43 +00:00
|
|
|
TableStructure( const SwTable& rTable );
|
|
|
|
TableStructure( const SwTable& rTable, _FndBox &rFndBox,
|
|
|
|
const SwSelBoxes& rSelBoxes,
|
|
|
|
LineStructure::size_type nMinSize );
|
|
|
|
LineStructure::size_type getLineCount() const
|
|
|
|
{ return maLines.size(); }
|
|
|
|
void moreLines( const SwTable& rTable );
|
|
|
|
void assignBoxes( const TableStructure &rSource );
|
|
|
|
void copyBoxes( const SwTable& rSource, SwTable& rDstTbl,
|
|
|
|
SwUndoTblCpyTbl* pUndo ) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
SubTable::iterator insertSubLine( SubTable& rSubTable, SwTableLine& rLine,
|
|
|
|
SubTable::iterator pStartLn );
|
|
|
|
|
|
|
|
SubTable::iterator insertSubBox( SubTable& rSubTable, SwTableBox& rBox,
|
|
|
|
SubTable::iterator pStartLn, SubTable::iterator pEndLn )
|
|
|
|
{
|
|
|
|
if( rBox.GetTabLines().Count() )
|
|
|
|
{
|
|
|
|
SubTable::difference_type nSize = std::distance( pStartLn, pEndLn );
|
|
|
|
if( nSize < rBox.GetTabLines().Count() )
|
|
|
|
{
|
|
|
|
SubLine aSubLine;
|
|
|
|
SubLine::iterator pBox = pStartLn->begin();
|
|
|
|
SubLine::iterator pEnd = pStartLn->end();
|
|
|
|
while( pBox != pEnd )
|
|
|
|
{
|
|
|
|
SubBox aSub;
|
|
|
|
aSub.mpBox = pBox->mpBox;
|
|
|
|
aSub.mbCovered = true;
|
|
|
|
aSubLine.push_back( aSub );
|
|
|
|
++pBox;
|
|
|
|
}
|
|
|
|
do
|
|
|
|
{
|
|
|
|
rSubTable.insert( pEndLn, aSubLine );
|
|
|
|
} while( ++nSize < rBox.GetTabLines().Count() );
|
|
|
|
}
|
2011-01-17 15:06:54 +01:00
|
|
|
for( sal_uInt16 nLine = 0; nLine < rBox.GetTabLines().Count(); ++nLine )
|
2007-02-28 14:41:43 +00:00
|
|
|
pStartLn = insertSubLine( rSubTable, *rBox.GetTabLines()[nLine],
|
|
|
|
pStartLn );
|
2010-11-25 17:08:45 +01:00
|
|
|
OSL_ENSURE( pStartLn == pEndLn, "Sub line confusion" );
|
2007-02-28 14:41:43 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
SubBox aSub;
|
|
|
|
aSub.mpBox = &rBox;
|
|
|
|
aSub.mbCovered = false;
|
|
|
|
while( pStartLn != pEndLn )
|
|
|
|
{
|
|
|
|
pStartLn->push_back( aSub );
|
|
|
|
aSub.mbCovered = true;
|
|
|
|
++pStartLn;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return pStartLn;
|
|
|
|
}
|
|
|
|
|
|
|
|
SubTable::iterator insertSubLine( SubTable& rSubTable, SwTableLine& rLine,
|
|
|
|
SubTable::iterator pStartLn )
|
|
|
|
{
|
|
|
|
SubTable::iterator pMax = pStartLn;
|
|
|
|
++pMax;
|
|
|
|
SubTable::difference_type nMax = 1;
|
2012-05-10 17:42:10 +02:00
|
|
|
for( sal_uInt16 nBox = 0; nBox < rLine.GetTabBoxes().size(); ++nBox )
|
2007-02-28 14:41:43 +00:00
|
|
|
{
|
|
|
|
SubTable::iterator pTmp = insertSubBox( rSubTable,
|
|
|
|
*rLine.GetTabBoxes()[nBox], pStartLn, pMax );
|
|
|
|
SubTable::difference_type nTmp = std::distance( pStartLn, pTmp );
|
|
|
|
if( nTmp > nMax )
|
|
|
|
{
|
|
|
|
pMax = pTmp;
|
|
|
|
nMax = nTmp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return pMax;
|
|
|
|
}
|
|
|
|
|
|
|
|
TableStructure::TableStructure( const SwTable& rTable ) :
|
|
|
|
maLines( rTable.GetTabLines().Count() ), mnStartCol(USHRT_MAX),
|
|
|
|
mnAddLine(0)
|
|
|
|
{
|
|
|
|
maCols.push_front(0);
|
|
|
|
const SwTableLines &rLines = rTable.GetTabLines();
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_uInt16 nCnt = 0;
|
|
|
|
for( sal_uInt16 nLine = 0; nLine < rLines.Count(); ++nLine )
|
2007-02-28 14:41:43 +00:00
|
|
|
addLine( nCnt, rLines[nLine]->GetTabBoxes(), 0, rTable.IsNewModel() );
|
|
|
|
}
|
|
|
|
|
|
|
|
TableStructure::TableStructure( const SwTable& rTable,
|
|
|
|
_FndBox &rFndBox, const SwSelBoxes& rSelBoxes,
|
|
|
|
LineStructure::size_type nMinSize )
|
|
|
|
: mnStartCol(USHRT_MAX), mnAddLine(0)
|
|
|
|
{
|
2012-04-19 17:56:35 +02:00
|
|
|
if( !rFndBox.GetLines().empty() )
|
2007-02-28 14:41:43 +00:00
|
|
|
{
|
2012-05-05 10:25:52 +01:00
|
|
|
bool bNoSelection = rSelBoxes.Count() < 2;
|
2007-02-28 14:41:43 +00:00
|
|
|
_FndLines &rFndLines = rFndBox.GetLines();
|
|
|
|
maCols.push_front(0);
|
2012-04-19 17:56:35 +02:00
|
|
|
const SwTableLine* pLine = rFndLines.front().GetLine();
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_uInt16 nStartLn = rTable.GetTabLines().C40_GETPOS( SwTableLine, pLine );
|
|
|
|
sal_uInt16 nEndLn = nStartLn;
|
2012-04-19 17:56:35 +02:00
|
|
|
if( rFndLines.size() > 1 )
|
2007-02-28 14:41:43 +00:00
|
|
|
{
|
2012-04-19 17:56:35 +02:00
|
|
|
pLine = rFndLines.back().GetLine();
|
2007-02-28 14:41:43 +00:00
|
|
|
nEndLn = rTable.GetTabLines().C40_GETPOS( SwTableLine, pLine );
|
|
|
|
}
|
|
|
|
if( nStartLn < USHRT_MAX && nEndLn < USHRT_MAX )
|
|
|
|
{
|
|
|
|
const SwTableLines &rLines = rTable.GetTabLines();
|
|
|
|
if( bNoSelection &&
|
2011-01-17 15:06:54 +01:00
|
|
|
(sal_uInt16)nMinSize > nEndLn - nStartLn + 1 )
|
2007-02-28 14:41:43 +00:00
|
|
|
{
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_uInt16 nNewEndLn = nStartLn + (sal_uInt16)nMinSize - 1;
|
2007-02-28 14:41:43 +00:00
|
|
|
if( nNewEndLn >= rLines.Count() )
|
|
|
|
{
|
|
|
|
mnAddLine = nNewEndLn - rLines.Count() + 1;
|
|
|
|
nNewEndLn = rLines.Count() - 1;
|
|
|
|
}
|
|
|
|
while( nEndLn < nNewEndLn )
|
|
|
|
{
|
2007-09-27 07:40:12 +00:00
|
|
|
SwTableLine *pLine2 = rLines[ ++nEndLn ];
|
|
|
|
SwTableBox *pTmpBox = pLine2->GetTabBoxes()[0];
|
|
|
|
_FndLine *pInsLine = new _FndLine( pLine2, &rFndBox );
|
2007-02-28 14:41:43 +00:00
|
|
|
_FndBox *pFndBox = new _FndBox( pTmpBox, pInsLine );
|
2012-04-19 14:12:05 +02:00
|
|
|
pInsLine->GetBoxes().insert(pInsLine->GetBoxes().begin(), pFndBox);
|
2012-04-19 17:56:35 +02:00
|
|
|
rFndLines.push_back( pInsLine );
|
2007-02-28 14:41:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
maLines.resize( nEndLn - nStartLn + 1 );
|
|
|
|
const SwSelBoxes* pSelBoxes = &rSelBoxes;
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_uInt16 nCnt = 0;
|
|
|
|
for( sal_uInt16 nLine = nStartLn; nLine <= nEndLn; ++nLine )
|
2007-02-28 14:41:43 +00:00
|
|
|
{
|
|
|
|
addLine( nCnt, rLines[nLine]->GetTabBoxes(),
|
|
|
|
pSelBoxes, rTable.IsNewModel() );
|
|
|
|
if( bNoSelection )
|
|
|
|
pSelBoxes = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if( bNoSelection && mnStartCol < USHRT_MAX )
|
|
|
|
{
|
|
|
|
BoxStructure::iterator pC = maLines[0].begin();
|
|
|
|
BoxStructure::iterator pEnd = maLines[0].end();
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_uInt16 nIdx = mnStartCol;
|
2007-02-28 14:41:43 +00:00
|
|
|
mnStartCol = 0;
|
|
|
|
while( nIdx && pC != pEnd )
|
|
|
|
{
|
2007-09-27 07:40:12 +00:00
|
|
|
mnStartCol = mnStartCol + pC->mnColSpan;
|
2007-02-28 14:41:43 +00:00
|
|
|
--nIdx;
|
|
|
|
++pC;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
mnStartCol = USHRT_MAX;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-17 15:06:54 +01:00
|
|
|
void TableStructure::addLine( sal_uInt16 &rLine, const SwTableBoxes& rBoxes,
|
2007-02-28 14:41:43 +00:00
|
|
|
const SwSelBoxes* pSelBoxes, bool bNewModel )
|
|
|
|
{
|
|
|
|
bool bComplex = false;
|
|
|
|
if( !bNewModel )
|
2012-05-10 17:42:10 +02:00
|
|
|
for( sal_uInt16 nBox = 0; !bComplex && nBox < rBoxes.size(); ++nBox )
|
2007-02-28 14:41:43 +00:00
|
|
|
bComplex = rBoxes[nBox]->GetTabLines().Count() > 0;
|
|
|
|
if( bComplex )
|
|
|
|
{
|
|
|
|
SubTable aSubTable;
|
|
|
|
SubLine aSubLine;
|
|
|
|
aSubTable.push_back( aSubLine );
|
|
|
|
SubTable::iterator pStartLn = aSubTable.begin();
|
|
|
|
SubTable::iterator pEndLn = aSubTable.end();
|
2012-05-10 17:42:10 +02:00
|
|
|
for( sal_uInt16 nBox = 0; nBox < rBoxes.size(); ++nBox )
|
2007-02-28 14:41:43 +00:00
|
|
|
insertSubBox( aSubTable, *rBoxes[nBox], pStartLn, pEndLn );
|
|
|
|
SubTable::size_type nSize = aSubTable.size();
|
|
|
|
if( nSize )
|
|
|
|
{
|
|
|
|
maLines.resize( maLines.size() + nSize - 1 );
|
|
|
|
while( pStartLn != pEndLn )
|
|
|
|
{
|
|
|
|
bool bSelected = false;
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_uLong nBorder = 0;
|
|
|
|
sal_uInt16 nCol = 0;
|
2007-02-28 14:41:43 +00:00
|
|
|
maLines[rLine].reserve( pStartLn->size() );
|
|
|
|
BoxStructure::iterator pSel = maLines[rLine].end();
|
|
|
|
ColumnStructure::iterator pCol = maCols.begin();
|
|
|
|
SubLine::iterator pBox = pStartLn->begin();
|
|
|
|
SubLine::iterator pEnd = pStartLn->end();
|
|
|
|
while( pBox != pEnd )
|
|
|
|
{
|
|
|
|
addBox( rLine, pSelBoxes, pBox->mpBox, nBorder, nCol,
|
|
|
|
pCol, pSel, bSelected, pBox->mbCovered );
|
|
|
|
++pBox;
|
|
|
|
}
|
|
|
|
++rLine;
|
|
|
|
++pStartLn;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
bool bSelected = false;
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_uLong nBorder = 0;
|
|
|
|
sal_uInt16 nCol = 0;
|
2012-05-10 17:42:10 +02:00
|
|
|
maLines[rLine].reserve( rBoxes.size() );
|
2007-02-28 14:41:43 +00:00
|
|
|
ColumnStructure::iterator pCol = maCols.begin();
|
|
|
|
BoxStructure::iterator pSel = maLines[rLine].end();
|
2012-05-10 17:42:10 +02:00
|
|
|
for( sal_uInt16 nBox = 0; nBox < rBoxes.size(); ++nBox )
|
2007-02-28 14:41:43 +00:00
|
|
|
addBox( rLine, pSelBoxes, rBoxes[nBox], nBorder, nCol,
|
|
|
|
pCol, pSel, bSelected, false );
|
|
|
|
++rLine;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-17 15:06:54 +01:00
|
|
|
void TableStructure::addBox( sal_uInt16 nLine, const SwSelBoxes* pSelBoxes,
|
|
|
|
SwTableBox *pBox, sal_uLong &rnBorder, sal_uInt16 &rnCol,
|
2007-02-28 14:41:43 +00:00
|
|
|
ColumnStructure::iterator& rpCol, BoxStructure::iterator& rpSel,
|
|
|
|
bool &rbSelected, bool bCovered )
|
|
|
|
{
|
|
|
|
BoxSpanInfo aInfo;
|
|
|
|
if( pSelBoxes &&
|
2012-05-05 10:25:52 +01:00
|
|
|
USHRT_MAX != pSelBoxes->GetPos( pBox ) )
|
2007-02-28 14:41:43 +00:00
|
|
|
{
|
|
|
|
aInfo.mbSelected = true;
|
|
|
|
if( mnStartCol == USHRT_MAX )
|
|
|
|
{
|
2011-01-17 15:06:54 +01:00
|
|
|
mnStartCol = (sal_uInt16)maLines[nLine].size();
|
2012-05-05 10:25:52 +01:00
|
|
|
if( pSelBoxes->Count() < 2 )
|
2007-02-28 14:41:43 +00:00
|
|
|
{
|
|
|
|
pSelBoxes = 0;
|
|
|
|
aInfo.mbSelected = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
aInfo.mbSelected = false;
|
|
|
|
rnBorder += pBox->GetFrmFmt()->GetFrmSize().GetWidth();
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_uInt16 nLeftCol = rnCol;
|
2007-02-28 14:41:43 +00:00
|
|
|
while( rpCol != maCols.end() && *rpCol < rnBorder )
|
|
|
|
{
|
|
|
|
++rnCol;
|
|
|
|
++rpCol;
|
|
|
|
}
|
|
|
|
if( rpCol == maCols.end() || *rpCol > rnBorder )
|
|
|
|
{
|
|
|
|
maCols.insert( rpCol, rnBorder );
|
|
|
|
--rpCol;
|
|
|
|
incColSpan( nLine, rnCol );
|
|
|
|
}
|
|
|
|
aInfo.mnColSpan = rnCol - nLeftCol;
|
|
|
|
aInfo.mpCopy = 0;
|
|
|
|
aInfo.mpBox = bCovered ? 0 : pBox;
|
|
|
|
maLines[nLine].push_back( aInfo );
|
|
|
|
if( aInfo.mbSelected )
|
|
|
|
{
|
|
|
|
if( rbSelected )
|
|
|
|
{
|
|
|
|
while( rpSel != maLines[nLine].end() )
|
|
|
|
{
|
|
|
|
rpSel->mbSelected = true;
|
|
|
|
++rpSel;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
rpSel = maLines[nLine].end();
|
|
|
|
rbSelected = true;
|
|
|
|
}
|
|
|
|
--rpSel;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void TableStructure::moreLines( const SwTable& rTable )
|
|
|
|
{
|
|
|
|
if( mnAddLine )
|
|
|
|
{
|
|
|
|
const SwTableLines &rLines = rTable.GetTabLines();
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_uInt16 nLineCount = rLines.Count();
|
2007-02-28 14:41:43 +00:00
|
|
|
if( nLineCount < mnAddLine )
|
|
|
|
mnAddLine = nLineCount;
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_uInt16 nLine = (sal_uInt16)maLines.size();
|
2007-02-28 14:41:43 +00:00
|
|
|
maLines.resize( nLine + mnAddLine );
|
|
|
|
while( mnAddLine )
|
|
|
|
{
|
|
|
|
SwTableLine *pLine = rLines[ nLineCount - mnAddLine ];
|
|
|
|
addLine( nLine, pLine->GetTabBoxes(), 0, rTable.IsNewModel() );
|
|
|
|
--mnAddLine;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-17 15:06:54 +01:00
|
|
|
void TableStructure::incColSpan( sal_uInt16 nLineMax, sal_uInt16 nNewCol )
|
2007-02-28 14:41:43 +00:00
|
|
|
{
|
2011-01-17 15:06:54 +01:00
|
|
|
for( sal_uInt16 nLine = 0; nLine < nLineMax; ++nLine )
|
2007-02-28 14:41:43 +00:00
|
|
|
{
|
|
|
|
BoxStructure::iterator pInfo = maLines[nLine].begin();
|
|
|
|
BoxStructure::iterator pEnd = maLines[nLine].end();
|
|
|
|
long nCol = pInfo->mnColSpan;
|
|
|
|
while( nNewCol > nCol && ++pInfo != pEnd )
|
|
|
|
nCol += pInfo->mnColSpan;
|
|
|
|
if( pInfo != pEnd )
|
|
|
|
++(pInfo->mnColSpan);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void TableStructure::assignBoxes( const TableStructure &rSource )
|
|
|
|
{
|
|
|
|
LineStructure::const_iterator pFirstLine = rSource.maLines.begin();
|
|
|
|
LineStructure::const_iterator pLastLine = rSource.maLines.end();
|
|
|
|
if( pFirstLine == pLastLine )
|
|
|
|
return;
|
|
|
|
LineStructure::const_iterator pCurrLine = pFirstLine;
|
|
|
|
LineStructure::size_type nLineCount = maLines.size();
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_uInt16 nFirstStartCol = 0;
|
2007-02-28 14:41:43 +00:00
|
|
|
{
|
|
|
|
BoxStructure::const_iterator pFirstBox = pFirstLine->begin();
|
|
|
|
if( pFirstBox != pFirstLine->end() && pFirstBox->mpBox &&
|
|
|
|
pFirstBox->mpBox->getDummyFlag() )
|
|
|
|
nFirstStartCol = pFirstBox->mnColSpan;
|
|
|
|
}
|
|
|
|
for( LineStructure::size_type nLine = 0; nLine < nLineCount; ++nLine )
|
|
|
|
{
|
|
|
|
BoxStructure::const_iterator pFirstBox = pCurrLine->begin();
|
|
|
|
BoxStructure::const_iterator pLastBox = pCurrLine->end();
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_uInt16 nCurrStartCol = mnStartCol;
|
2007-02-28 14:41:43 +00:00
|
|
|
if( pFirstBox != pLastBox )
|
|
|
|
{
|
|
|
|
BoxStructure::const_iterator pTmpBox = pLastBox;
|
|
|
|
--pTmpBox;
|
|
|
|
if( pTmpBox->mpBox && pTmpBox->mpBox->getDummyFlag() )
|
|
|
|
--pLastBox;
|
|
|
|
if( pFirstBox != pLastBox && pFirstBox->mpBox &&
|
|
|
|
pFirstBox->mpBox->getDummyFlag() )
|
|
|
|
{
|
|
|
|
if( nCurrStartCol < USHRT_MAX )
|
|
|
|
{
|
|
|
|
if( pFirstBox->mnColSpan > nFirstStartCol )
|
|
|
|
nCurrStartCol = pFirstBox->mnColSpan - nFirstStartCol
|
|
|
|
+ nCurrStartCol;
|
|
|
|
}
|
|
|
|
++pFirstBox;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if( pFirstBox != pLastBox )
|
|
|
|
{
|
|
|
|
BoxStructure::const_iterator pCurrBox = pFirstBox;
|
|
|
|
BoxStructure &rBox = maLines[nLine];
|
|
|
|
BoxStructure::size_type nBoxCount = rBox.size();
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_uInt16 nCol = 0;
|
2007-02-28 14:41:43 +00:00
|
|
|
for( BoxStructure::size_type nBox = 0; nBox < nBoxCount; ++nBox )
|
|
|
|
{
|
|
|
|
BoxSpanInfo& rInfo = rBox[nBox];
|
|
|
|
nCol = nCol + rInfo.mnColSpan;
|
|
|
|
if( rInfo.mbSelected || nCol > nCurrStartCol )
|
|
|
|
{
|
|
|
|
rInfo.mpCopy = pCurrBox->mpBox;
|
|
|
|
if( rInfo.mbSelected && rInfo.mpCopy->getDummyFlag() )
|
|
|
|
{
|
|
|
|
++pCurrBox;
|
|
|
|
if( pCurrBox == pLastBox )
|
|
|
|
{
|
|
|
|
pCurrBox = pFirstBox;
|
|
|
|
if( pCurrBox->mpBox->getDummyFlag() )
|
|
|
|
++pCurrBox;
|
|
|
|
}
|
|
|
|
rInfo.mpCopy = pCurrBox->mpBox;
|
|
|
|
}
|
|
|
|
++pCurrBox;
|
|
|
|
if( pCurrBox == pLastBox )
|
|
|
|
{
|
|
|
|
if( rInfo.mbSelected )
|
|
|
|
pCurrBox = pFirstBox;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
rInfo.mbSelected = rInfo.mpCopy == 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
rInfo.mbSelected = rInfo.mpCopy == 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
++pCurrLine;
|
|
|
|
if( pCurrLine == pLastLine )
|
|
|
|
pCurrLine = pFirstLine;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void TableStructure::copyBoxes( const SwTable& rSource, SwTable& rDstTbl,
|
|
|
|
SwUndoTblCpyTbl* pUndo ) const
|
|
|
|
{
|
|
|
|
LineStructure::size_type nLineCount = maLines.size();
|
|
|
|
for( LineStructure::size_type nLine = 0; nLine < nLineCount; ++nLine )
|
|
|
|
{
|
|
|
|
const BoxStructure &rBox = maLines[nLine];
|
|
|
|
BoxStructure::size_type nBoxCount = rBox.size();
|
|
|
|
for( BoxStructure::size_type nBox = 0; nBox < nBoxCount; ++nBox )
|
|
|
|
{
|
|
|
|
const BoxSpanInfo& rInfo = rBox[nBox];
|
|
|
|
if( ( rInfo.mpCopy && !rInfo.mpCopy->getDummyFlag() )
|
|
|
|
|| rInfo.mbSelected )
|
|
|
|
{
|
|
|
|
SwTableBox *pBox = rInfo.mpBox;
|
|
|
|
if( pBox && pBox->getRowSpan() > 0 )
|
|
|
|
lcl_CpyBox( rSource, rInfo.mpCopy, rDstTbl, pBox,
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_True, pUndo );
|
2007-02-28 14:41:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-09-27 07:40:12 +00:00
|
|
|
}
|
2000-09-18 23:08:29 +00:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------
|
|
|
|
|
2012-01-20 13:16:01 +01:00
|
|
|
// Copy Table into this Box.
|
|
|
|
// Copy all Boxes of a Line into the corresponding Boxes. The old
|
|
|
|
// content is deleted by doing this.
|
|
|
|
// If no Box is left the remaining content goes to the Box of
|
|
|
|
// a "BaseLine".
|
|
|
|
// If there's no Line anymore, put it also into the last Box
|
|
|
|
// of a "BaseLine".
|
2000-09-18 23:08:29 +00:00
|
|
|
void lcl_CpyBox( const SwTable& rCpyTbl, const SwTableBox* pCpyBox,
|
|
|
|
SwTable& rDstTbl, SwTableBox* pDstBox,
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_Bool bDelCntnt, SwUndoTblCpyTbl* pUndo )
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
2010-11-25 17:08:45 +01:00
|
|
|
OSL_ENSURE( ( !pCpyBox || pCpyBox->GetSttNd() ) && pDstBox->GetSttNd(),
|
2012-01-20 13:16:01 +01:00
|
|
|
"No content in this Box" );
|
2000-09-18 23:08:29 +00:00
|
|
|
|
|
|
|
SwDoc* pCpyDoc = rCpyTbl.GetFrmFmt()->GetDoc();
|
|
|
|
SwDoc* pDoc = rDstTbl.GetFrmFmt()->GetDoc();
|
|
|
|
|
2012-01-20 13:16:01 +01:00
|
|
|
// First copy the new content and then delete the old one.
|
|
|
|
// Do not create empty Sections, otherwise they will be deleted!
|
2007-02-28 14:41:43 +00:00
|
|
|
std::auto_ptr< SwNodeRange > pRg( pCpyBox ?
|
|
|
|
new SwNodeRange ( *pCpyBox->GetSttNd(), 1,
|
|
|
|
*pCpyBox->GetSttNd()->EndOfSectionNode() ) : 0 );
|
2000-09-18 23:08:29 +00:00
|
|
|
|
|
|
|
SwNodeIndex aInsIdx( *pDstBox->GetSttNd(), bDelCntnt ? 1 :
|
|
|
|
pDstBox->GetSttNd()->EndOfSectionIndex() -
|
|
|
|
pDstBox->GetSttIdx() );
|
|
|
|
|
|
|
|
if( pUndo )
|
|
|
|
pUndo->AddBoxBefore( *pDstBox, bDelCntnt );
|
|
|
|
|
2006-04-19 13:18:30 +00:00
|
|
|
bool bUndoRedline = pUndo && pDoc->IsRedlineOn();
|
2010-11-25 14:31:10 +01:00
|
|
|
::sw::UndoGuard const undoGuard(pDoc->GetIDocumentUndoRedo());
|
2000-09-18 23:08:29 +00:00
|
|
|
|
|
|
|
SwNodeIndex aSavePos( aInsIdx, -1 );
|
2007-02-28 14:41:43 +00:00
|
|
|
if( pRg.get() )
|
2011-01-17 15:06:54 +01:00
|
|
|
pCpyDoc->CopyWithFlyInFly( *pRg, 0, aInsIdx, sal_False );
|
2007-02-28 14:41:43 +00:00
|
|
|
else
|
|
|
|
pDoc->GetNodes().MakeTxtNode( aInsIdx, (SwTxtFmtColl*)pDoc->GetDfltTxtFmtColl() );
|
2000-09-18 23:08:29 +00:00
|
|
|
aSavePos++;
|
|
|
|
|
|
|
|
SwTableLine* pLine = pDstBox->GetUpper();
|
|
|
|
while( pLine->GetUpper() )
|
|
|
|
pLine = pLine->GetUpper()->GetUpper();
|
|
|
|
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_Bool bReplaceColl = sal_True;
|
2006-04-19 13:18:30 +00:00
|
|
|
if( bDelCntnt && !bUndoRedline )
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
2012-01-20 13:16:01 +01:00
|
|
|
// Delete the Fly first, then the corresponding Nodes
|
2000-09-18 23:08:29 +00:00
|
|
|
SwNodeIndex aEndNdIdx( *aInsIdx.GetNode().EndOfSectionNode() );
|
|
|
|
|
2012-01-20 13:16:01 +01:00
|
|
|
// Move Bookmarks
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
|
|
|
SwPosition aMvPos( aInsIdx );
|
|
|
|
SwCntntNode* pCNd = pDoc->GetNodes().GoPrevious( &aMvPos.nNode );
|
|
|
|
aMvPos.nContent.Assign( pCNd, pCNd->Len() );
|
2011-01-17 15:06:54 +01:00
|
|
|
pDoc->CorrAbs( aInsIdx, aEndNdIdx, aMvPos, /*sal_True*/sal_False );
|
2000-09-18 23:08:29 +00:00
|
|
|
}
|
|
|
|
|
2012-01-20 13:16:01 +01:00
|
|
|
// If we still have FlyFrames hanging around, delete them too
|
2012-06-20 16:36:51 +02:00
|
|
|
for( sal_uInt16 n = 0; n < pDoc->GetSpzFrmFmts()->size(); ++n )
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
2010-01-05 16:37:41 +01:00
|
|
|
SwFrmFmt *const pFly = (*pDoc->GetSpzFrmFmts())[n];
|
|
|
|
SwFmtAnchor const*const pAnchor = &pFly->GetAnchor();
|
|
|
|
SwPosition const*const pAPos = pAnchor->GetCntntAnchor();
|
|
|
|
if (pAPos &&
|
|
|
|
((FLY_AT_PARA == pAnchor->GetAnchorId()) ||
|
|
|
|
(FLY_AT_CHAR == pAnchor->GetAnchorId())) &&
|
2000-09-18 23:08:29 +00:00
|
|
|
aInsIdx <= pAPos->nNode && pAPos->nNode <= aEndNdIdx )
|
|
|
|
{
|
|
|
|
pDoc->DelLayoutFmt( pFly );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-20 21:43:05 +01:00
|
|
|
// If DestBox is a Headline Box and has Table style set, then
|
|
|
|
// DO NOT automatically set the TableHeadline style!
|
2000-09-18 23:08:29 +00:00
|
|
|
if( 1 < rDstTbl.GetTabLines().Count() &&
|
|
|
|
pLine == rDstTbl.GetTabLines()[0] )
|
|
|
|
{
|
|
|
|
SwCntntNode* pCNd = aInsIdx.GetNode().GetCntntNode();
|
|
|
|
if( !pCNd )
|
|
|
|
{
|
|
|
|
SwNodeIndex aTmp( aInsIdx );
|
|
|
|
pCNd = pDoc->GetNodes().GoNext( &aTmp );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( pCNd &&
|
|
|
|
RES_POOLCOLL_TABLE_HDLN !=
|
|
|
|
pCNd->GetFmtColl()->GetPoolFmtId() )
|
2011-01-17 15:06:54 +01:00
|
|
|
bReplaceColl = sal_False;
|
2000-09-18 23:08:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pDoc->GetNodes().Delete( aInsIdx, aEndNdIdx.GetIndex() - aInsIdx.GetIndex() );
|
|
|
|
}
|
|
|
|
|
2006-04-19 13:18:30 +00:00
|
|
|
//b6341295: Table copy redlining will be managed by AddBoxAfter()
|
2000-09-18 23:08:29 +00:00
|
|
|
if( pUndo )
|
2006-04-19 13:18:30 +00:00
|
|
|
pUndo->AddBoxAfter( *pDstBox, aInsIdx, bDelCntnt );
|
2000-09-18 23:08:29 +00:00
|
|
|
|
2010-12-15 09:13:59 +01:00
|
|
|
// heading
|
|
|
|
SwTxtNode *const pTxtNd = aSavePos.GetNode().GetTxtNode();
|
2000-09-18 23:08:29 +00:00
|
|
|
if( pTxtNd )
|
|
|
|
{
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_uInt16 nPoolId = pTxtNd->GetTxtColl()->GetPoolFmtId();
|
2000-09-18 23:08:29 +00:00
|
|
|
if( bReplaceColl &&
|
|
|
|
(( 1 < rDstTbl.GetTabLines().Count() &&
|
|
|
|
pLine == rDstTbl.GetTabLines()[0] )
|
2012-01-20 13:16:01 +01:00
|
|
|
// Is the Table's content sill valid?
|
2000-09-18 23:08:29 +00:00
|
|
|
? RES_POOLCOLL_TABLE == nPoolId
|
|
|
|
: RES_POOLCOLL_TABLE_HDLN == nPoolId ) )
|
|
|
|
{
|
|
|
|
SwTxtFmtColl* pColl = pDoc->GetTxtCollFromPool(
|
2007-09-27 07:40:12 +00:00
|
|
|
static_cast<sal_uInt16>(
|
2000-09-18 23:08:29 +00:00
|
|
|
RES_POOLCOLL_TABLE == nPoolId
|
|
|
|
? RES_POOLCOLL_TABLE_HDLN
|
2007-09-27 07:40:12 +00:00
|
|
|
: RES_POOLCOLL_TABLE ) );
|
2012-01-20 21:43:05 +01:00
|
|
|
if( pColl ) // Apply style
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
|
|
|
SwPaM aPam( aSavePos );
|
|
|
|
aPam.SetMark();
|
|
|
|
aPam.Move( fnMoveForward, fnGoSection );
|
|
|
|
pDoc->SetTxtFmtColl( aPam, pColl );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-20 13:16:01 +01:00
|
|
|
// Delete the current Formula/Format/Value values
|
2000-09-18 23:08:29 +00:00
|
|
|
if( SFX_ITEM_SET == pDstBox->GetFrmFmt()->GetItemState( RES_BOXATR_FORMAT ) ||
|
|
|
|
SFX_ITEM_SET == pDstBox->GetFrmFmt()->GetItemState( RES_BOXATR_FORMULA ) ||
|
|
|
|
SFX_ITEM_SET == pDstBox->GetFrmFmt()->GetItemState( RES_BOXATR_VALUE ) )
|
|
|
|
{
|
2008-06-13 08:39:25 +00:00
|
|
|
pDstBox->ClaimFrmFmt()->ResetFmtAttr( RES_BOXATR_FORMAT,
|
2000-09-18 23:08:29 +00:00
|
|
|
RES_BOXATR_VALUE );
|
|
|
|
}
|
|
|
|
|
2012-01-20 13:16:01 +01:00
|
|
|
// Copy the TableBoxAttributes - Formula/Format/Value
|
2007-02-28 14:41:43 +00:00
|
|
|
if( pCpyBox )
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
2007-02-28 14:41:43 +00:00
|
|
|
SfxItemSet aBoxAttrSet( pCpyDoc->GetAttrPool(), RES_BOXATR_FORMAT,
|
|
|
|
RES_BOXATR_VALUE );
|
|
|
|
aBoxAttrSet.Put( pCpyBox->GetFrmFmt()->GetAttrSet() );
|
|
|
|
if( aBoxAttrSet.Count() )
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
2007-02-28 14:41:43 +00:00
|
|
|
const SfxPoolItem* pItem;
|
2011-01-17 15:06:54 +01:00
|
|
|
SvNumberFormatter* pN = pDoc->GetNumberFormatter( sal_False );
|
2007-02-28 14:41:43 +00:00
|
|
|
if( pN && pN->HasMergeFmtTbl() && SFX_ITEM_SET == aBoxAttrSet.
|
2011-01-17 15:06:54 +01:00
|
|
|
GetItemState( RES_BOXATR_FORMAT, sal_False, &pItem ) )
|
2007-02-28 14:41:43 +00:00
|
|
|
{
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_uLong nOldIdx = ((SwTblBoxNumFormat*)pItem)->GetValue();
|
|
|
|
sal_uLong nNewIdx = pN->GetMergeFmtIndex( nOldIdx );
|
2007-02-28 14:41:43 +00:00
|
|
|
if( nNewIdx != nOldIdx )
|
|
|
|
aBoxAttrSet.Put( SwTblBoxNumFormat( nNewIdx ));
|
|
|
|
}
|
2008-06-13 08:39:25 +00:00
|
|
|
pDstBox->ClaimFrmFmt()->SetFmtAttr( aBoxAttrSet );
|
2000-09-18 23:08:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_Bool SwTable::InsNewTable( const SwTable& rCpyTbl, const SwSelBoxes& rSelBoxes,
|
2007-02-28 14:41:43 +00:00
|
|
|
SwUndoTblCpyTbl* pUndo )
|
|
|
|
{
|
|
|
|
SwDoc* pDoc = GetFrmFmt()->GetDoc();
|
|
|
|
SwDoc* pCpyDoc = rCpyTbl.GetFrmFmt()->GetDoc();
|
|
|
|
|
|
|
|
SwTblNumFmtMerge aTNFM( *pCpyDoc, *pDoc );
|
|
|
|
|
2012-01-20 13:16:01 +01:00
|
|
|
// Analyze source structure
|
2007-02-28 14:41:43 +00:00
|
|
|
TableStructure aCopyStruct( rCpyTbl );
|
|
|
|
|
2012-01-20 13:16:01 +01:00
|
|
|
// Analyze target structure (from start box) and selected substructure
|
2007-02-28 14:41:43 +00:00
|
|
|
_FndBox aFndBox( 0, 0 );
|
|
|
|
{ // get all boxes/lines
|
|
|
|
_FndPara aPara( rSelBoxes, &aFndBox );
|
|
|
|
GetTabLines().ForEach( &_FndLineCopyCol, &aPara );
|
|
|
|
}
|
|
|
|
TableStructure aTarget( *this, aFndBox, rSelBoxes, aCopyStruct.getLineCount() );
|
|
|
|
|
|
|
|
bool bClear = false;
|
|
|
|
if( aTarget.mnAddLine && IsNewModel() )
|
|
|
|
{
|
|
|
|
SwSelBoxes aBoxes;
|
2012-05-05 10:25:52 +01:00
|
|
|
aBoxes.Insert( GetTabLines()[ GetTabLines().Count()-1 ]->GetTabBoxes()[0] );
|
2007-02-28 14:41:43 +00:00
|
|
|
if( pUndo )
|
|
|
|
pUndo->InsertRow( *this, aBoxes, aTarget.mnAddLine );
|
|
|
|
else
|
2011-01-17 15:06:54 +01:00
|
|
|
InsertRow( pDoc, aBoxes, aTarget.mnAddLine, sal_True );
|
2007-02-28 14:41:43 +00:00
|
|
|
|
|
|
|
aTarget.moreLines( *this );
|
|
|
|
bClear = true;
|
|
|
|
}
|
|
|
|
|
2012-01-20 13:16:01 +01:00
|
|
|
// Find mapping, if needed extend target table and/or selection
|
2007-02-28 14:41:43 +00:00
|
|
|
aTarget.assignBoxes( aCopyStruct );
|
|
|
|
|
|
|
|
{
|
|
|
|
// Change table formulas into relative representation
|
|
|
|
SwTableFmlUpdate aMsgHnt( &rCpyTbl );
|
|
|
|
aMsgHnt.eFlags = TBL_RELBOXNAME;
|
|
|
|
pCpyDoc->UpdateTblFlds( &aMsgHnt );
|
|
|
|
}
|
|
|
|
|
|
|
|
// delete frames
|
|
|
|
aFndBox.SetTableLines( *this );
|
|
|
|
if( bClear )
|
|
|
|
aFndBox.ClearLineBehind();
|
|
|
|
aFndBox.DelFrms( *this );
|
|
|
|
|
|
|
|
// copy boxes
|
|
|
|
aTarget.copyBoxes( rCpyTbl, *this, pUndo );
|
|
|
|
|
|
|
|
// adjust row span attributes accordingly
|
|
|
|
|
|
|
|
// make frames
|
|
|
|
aFndBox.MakeFrms( *this );
|
|
|
|
|
2011-01-17 15:06:54 +01:00
|
|
|
return sal_True;
|
2007-02-28 14:41:43 +00:00
|
|
|
}
|
|
|
|
|
2012-01-20 13:16:01 +01:00
|
|
|
// Copy Table into this Box.
|
|
|
|
// Copy all Boxes of a Line into the corresponding Boxes. The old
|
|
|
|
// content is deleted by doing this.
|
|
|
|
// If no Box is left the remaining content goes to the Box of
|
|
|
|
// a "BaseLine".
|
|
|
|
// If there's no Line anymore, put it also into the last Box
|
|
|
|
// of a "BaseLine".
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_Bool SwTable::InsTable( const SwTable& rCpyTbl, const SwNodeIndex& rSttBox,
|
2000-09-18 23:08:29 +00:00
|
|
|
SwUndoTblCpyTbl* pUndo )
|
|
|
|
{
|
2012-01-20 13:16:01 +01:00
|
|
|
SetHTMLTableLayout( 0 ); // Delete HTML Layout
|
2000-09-18 23:08:29 +00:00
|
|
|
|
|
|
|
SwDoc* pDoc = GetFrmFmt()->GetDoc();
|
|
|
|
|
|
|
|
SwTableNode* pTblNd = pDoc->IsIdxInTbl( rSttBox );
|
|
|
|
|
2012-01-20 13:16:01 +01:00
|
|
|
// Find the Box, to which should be copied:
|
2000-09-18 23:08:29 +00:00
|
|
|
SwTableBox* pMyBox = (SwTableBox*)GetTblBox(
|
|
|
|
rSttBox.GetNode().FindTableBoxStartNode()->GetIndex() );
|
|
|
|
|
2012-01-20 13:16:01 +01:00
|
|
|
OSL_ENSURE( pMyBox, "Index is not in a Box in this Table" );
|
2000-09-18 23:08:29 +00:00
|
|
|
|
2012-01-20 13:16:01 +01:00
|
|
|
// First delete the Table's Frames
|
2000-09-18 23:08:29 +00:00
|
|
|
_FndBox aFndBox( 0, 0 );
|
|
|
|
aFndBox.DelFrms( pTblNd->GetTable() );
|
|
|
|
|
|
|
|
SwDoc* pCpyDoc = rCpyTbl.GetFrmFmt()->GetDoc();
|
|
|
|
|
|
|
|
{
|
2012-01-20 13:16:01 +01:00
|
|
|
// Convert Table formulas to their relative representation
|
2000-09-18 23:08:29 +00:00
|
|
|
SwTableFmlUpdate aMsgHnt( &rCpyTbl );
|
|
|
|
aMsgHnt.eFlags = TBL_RELBOXNAME;
|
|
|
|
pCpyDoc->UpdateTblFlds( &aMsgHnt );
|
|
|
|
}
|
|
|
|
|
|
|
|
SwTblNumFmtMerge aTNFM( *pCpyDoc, *pDoc );
|
|
|
|
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_Bool bDelCntnt = sal_True;
|
2000-09-18 23:08:29 +00:00
|
|
|
const SwTableBox* pTmp;
|
|
|
|
|
2011-01-17 15:06:54 +01:00
|
|
|
for( sal_uInt16 nLines = 0; nLines < rCpyTbl.GetTabLines().Count(); ++nLines )
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
2012-01-20 13:16:01 +01:00
|
|
|
// Get the first from the CopyLine
|
2000-09-18 23:08:29 +00:00
|
|
|
const SwTableBox* pCpyBox = rCpyTbl.GetTabLines()[nLines]
|
|
|
|
->GetTabBoxes()[0];
|
|
|
|
while( pCpyBox->GetTabLines().Count() )
|
|
|
|
pCpyBox = pCpyBox->GetTabLines()[0]->GetTabBoxes()[0];
|
|
|
|
|
|
|
|
do {
|
2012-01-20 13:16:01 +01:00
|
|
|
// First copy the new content and then delete the old one.
|
|
|
|
// Do not create empty Sections, otherwise they will be deleted!
|
2000-09-18 23:08:29 +00:00
|
|
|
lcl_CpyBox( rCpyTbl, pCpyBox, *this, pMyBox, bDelCntnt, pUndo );
|
|
|
|
|
2011-01-17 15:06:54 +01:00
|
|
|
if( 0 == (pTmp = pCpyBox->FindNextBox( rCpyTbl, pCpyBox, sal_False )))
|
2012-01-20 13:16:01 +01:00
|
|
|
break; // no more Boxes
|
2000-09-18 23:08:29 +00:00
|
|
|
pCpyBox = pTmp;
|
|
|
|
|
2011-01-17 15:06:54 +01:00
|
|
|
if( 0 == ( pTmp = pMyBox->FindNextBox( *this, pMyBox, sal_False )))
|
2012-01-20 13:16:01 +01:00
|
|
|
bDelCntnt = sal_False; // No space left?
|
2000-09-18 23:08:29 +00:00
|
|
|
else
|
|
|
|
pMyBox = (SwTableBox*)pTmp;
|
|
|
|
|
2011-01-17 15:06:54 +01:00
|
|
|
} while( sal_True );
|
2000-09-18 23:08:29 +00:00
|
|
|
|
2012-01-20 13:16:01 +01:00
|
|
|
// Find the topmost Line
|
2000-09-18 23:08:29 +00:00
|
|
|
SwTableLine* pNxtLine = pMyBox->GetUpper();
|
|
|
|
while( pNxtLine->GetUpper() )
|
|
|
|
pNxtLine = pNxtLine->GetUpper()->GetUpper();
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_uInt16 nPos = GetTabLines().C40_GETPOS( SwTableLine, pNxtLine );
|
2012-01-20 13:16:01 +01:00
|
|
|
// Is there a next?
|
2000-09-18 23:08:29 +00:00
|
|
|
if( nPos + 1 >= GetTabLines().Count() )
|
2012-01-20 13:16:01 +01:00
|
|
|
bDelCntnt = sal_False; // there is none, all goes into the last Box
|
2000-09-18 23:08:29 +00:00
|
|
|
else
|
|
|
|
{
|
2012-01-20 13:16:01 +01:00
|
|
|
// Find the next Box with content
|
2000-09-18 23:08:29 +00:00
|
|
|
pNxtLine = GetTabLines()[ nPos+1 ];
|
|
|
|
pMyBox = pNxtLine->GetTabBoxes()[0];
|
|
|
|
while( pMyBox->GetTabLines().Count() )
|
|
|
|
pMyBox = pMyBox->GetTabLines()[0]->GetTabBoxes()[0];
|
2011-01-17 15:06:54 +01:00
|
|
|
bDelCntnt = sal_True;
|
2000-09-18 23:08:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-20 13:16:01 +01:00
|
|
|
aFndBox.MakeFrms( pTblNd->GetTable() ); // Create the Frames anew
|
2011-01-17 15:06:54 +01:00
|
|
|
return sal_True;
|
2000-09-18 23:08:29 +00:00
|
|
|
}
|
|
|
|
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_Bool SwTable::InsTable( const SwTable& rCpyTbl, const SwSelBoxes& rSelBoxes,
|
2000-09-18 23:08:29 +00:00
|
|
|
SwUndoTblCpyTbl* pUndo )
|
|
|
|
{
|
2012-05-05 10:25:52 +01:00
|
|
|
OSL_ENSURE( rSelBoxes.Count(), "Missing selection" );
|
2000-09-18 23:08:29 +00:00
|
|
|
|
2012-01-20 13:16:01 +01:00
|
|
|
SetHTMLTableLayout( 0 ); // Delete HTML Layout
|
2000-09-18 23:08:29 +00:00
|
|
|
|
2007-02-28 14:41:43 +00:00
|
|
|
if( IsNewModel() || rCpyTbl.IsNewModel() )
|
|
|
|
return InsNewTable( rCpyTbl, rSelBoxes, pUndo );
|
|
|
|
|
2010-11-25 17:08:45 +01:00
|
|
|
OSL_ENSURE( !rCpyTbl.IsTblComplex(), "Table too complex" );
|
2007-02-28 14:41:43 +00:00
|
|
|
|
2012-05-10 17:42:10 +02:00
|
|
|
SwDoc* pDoc = GetFrmFmt()->GetDoc();
|
2000-09-18 23:08:29 +00:00
|
|
|
SwDoc* pCpyDoc = rCpyTbl.GetFrmFmt()->GetDoc();
|
|
|
|
|
|
|
|
SwTblNumFmtMerge aTNFM( *pCpyDoc, *pDoc );
|
|
|
|
|
2012-05-05 10:25:52 +01:00
|
|
|
SwTableBox *pTmpBox, *pSttBox = (SwTableBox*)rSelBoxes[0];
|
2000-09-18 23:08:29 +00:00
|
|
|
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_uInt16 nLn, nBx;
|
2000-09-18 23:08:29 +00:00
|
|
|
_FndLine *pFLine, *pInsFLine = 0;
|
2003-03-27 14:45:43 +00:00
|
|
|
_FndBox aFndBox( 0, 0 );
|
2012-01-20 13:16:01 +01:00
|
|
|
// Find all Boxes/Lines
|
2003-03-27 14:45:43 +00:00
|
|
|
{
|
|
|
|
_FndPara aPara( rSelBoxes, &aFndBox );
|
|
|
|
((SwTableLines&)GetTabLines()).ForEach( &_FndLineCopyCol, &aPara );
|
|
|
|
}
|
2000-09-18 23:08:29 +00:00
|
|
|
|
2012-01-20 13:16:01 +01:00
|
|
|
// Special case: If a Box is located in a Table, copy it to all selected
|
|
|
|
// Boxes!
|
2000-09-18 23:08:29 +00:00
|
|
|
if( 1 != rCpyTbl.GetTabSortBoxes().Count() )
|
|
|
|
{
|
|
|
|
SwTableLine* pSttLine = pSttBox->GetUpper();
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_uInt16 nSttLine = GetTabLines().C40_GETPOS( SwTableLine, pSttLine );
|
2000-09-18 23:08:29 +00:00
|
|
|
_FndBox* pFndBox;
|
|
|
|
|
2012-04-19 17:56:35 +02:00
|
|
|
sal_uInt16 nFndCnt = aFndBox.GetLines().size();
|
2000-09-18 23:08:29 +00:00
|
|
|
if( !nFndCnt )
|
2011-01-17 15:06:54 +01:00
|
|
|
return sal_False;
|
2000-09-18 23:08:29 +00:00
|
|
|
|
2012-01-20 13:16:01 +01:00
|
|
|
// Check if we have enough space for all Lines and Boxes
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_uInt16 nTstLns = 0;
|
2012-04-19 17:56:35 +02:00
|
|
|
pFLine = &aFndBox.GetLines().front();
|
2000-09-18 23:08:29 +00:00
|
|
|
pSttLine = pFLine->GetLine();
|
|
|
|
nSttLine = GetTabLines().C40_GETPOS( SwTableLine, pSttLine );
|
2012-01-20 13:16:01 +01:00
|
|
|
// Do we have as many rows, actually?
|
2000-09-18 23:08:29 +00:00
|
|
|
if( 1 == nFndCnt )
|
|
|
|
{
|
2012-01-20 13:16:01 +01:00
|
|
|
// Is there still enough space in the Table?
|
2000-09-18 23:08:29 +00:00
|
|
|
if( (GetTabLines().Count() - nSttLine ) <
|
|
|
|
rCpyTbl.GetTabLines().Count() )
|
|
|
|
{
|
2012-01-20 13:16:01 +01:00
|
|
|
// If we don't have enough Lines, then see if we can insert
|
|
|
|
// new ones to reach our goal. But only if the SSelection
|
|
|
|
// contains a Box!
|
2012-05-05 10:25:52 +01:00
|
|
|
if( 1 < rSelBoxes.Count() )
|
2011-01-17 15:06:54 +01:00
|
|
|
return sal_False;
|
2000-09-18 23:08:29 +00:00
|
|
|
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_uInt16 nNewLns = rCpyTbl.GetTabLines().Count() -
|
2000-09-18 23:08:29 +00:00
|
|
|
(GetTabLines().Count() - nSttLine );
|
|
|
|
|
2012-01-20 13:16:01 +01:00
|
|
|
// See if the Box count is high enough for the Lines
|
2000-09-18 23:08:29 +00:00
|
|
|
SwTableLine* pLastLn = GetTabLines()[ GetTabLines().Count()-1 ];
|
|
|
|
|
2012-04-25 11:29:29 +02:00
|
|
|
pSttBox = pFLine->GetBoxes()[0].GetBox();
|
2012-05-10 17:42:10 +02:00
|
|
|
sal_uInt16 nSttBox = pFLine->GetLine()->GetTabBoxes().GetPos( pSttBox );
|
2011-01-17 15:06:54 +01:00
|
|
|
for( sal_uInt16 n = rCpyTbl.GetTabLines().Count() - nNewLns;
|
2000-09-18 23:08:29 +00:00
|
|
|
n < rCpyTbl.GetTabLines().Count(); ++n )
|
|
|
|
{
|
|
|
|
SwTableLine* pCpyLn = rCpyTbl.GetTabLines()[ n ];
|
|
|
|
|
2012-05-10 17:42:10 +02:00
|
|
|
if( pLastLn->GetTabBoxes().size() < nSttBox ||
|
|
|
|
( pLastLn->GetTabBoxes().size() - nSttBox ) <
|
|
|
|
pCpyLn->GetTabBoxes().size() )
|
2011-01-17 15:06:54 +01:00
|
|
|
return sal_False;
|
2000-09-18 23:08:29 +00:00
|
|
|
|
2012-01-20 13:16:01 +01:00
|
|
|
// Test for nesting
|
2012-05-10 17:42:10 +02:00
|
|
|
for( nBx = 0; nBx < pCpyLn->GetTabBoxes().size(); ++nBx )
|
2000-09-18 23:08:29 +00:00
|
|
|
if( !( pTmpBox = pLastLn->GetTabBoxes()[ nSttBox + nBx ])
|
|
|
|
->GetSttNd() )
|
2011-01-17 15:06:54 +01:00
|
|
|
return sal_False;
|
2000-09-18 23:08:29 +00:00
|
|
|
}
|
2012-01-20 13:16:01 +01:00
|
|
|
// We have enough space for the to-be-copied, so insert new
|
|
|
|
// rows accordingly.
|
2000-09-18 23:08:29 +00:00
|
|
|
SwTableBox* pInsBox = pLastLn->GetTabBoxes()[ nSttBox ];
|
2010-11-25 17:08:45 +01:00
|
|
|
OSL_ENSURE( pInsBox && pInsBox->GetSttNd(),
|
2012-01-20 13:16:01 +01:00
|
|
|
"no CntntBox or it's not in this Table" );
|
2000-09-18 23:08:29 +00:00
|
|
|
SwSelBoxes aBoxes;
|
|
|
|
|
|
|
|
if( pUndo
|
|
|
|
? !pUndo->InsertRow( *this, SelLineFromBox( pInsBox,
|
2011-01-17 15:06:54 +01:00
|
|
|
aBoxes, sal_True ), nNewLns )
|
2000-09-18 23:08:29 +00:00
|
|
|
: !InsertRow( pDoc, SelLineFromBox( pInsBox,
|
2011-01-17 15:06:54 +01:00
|
|
|
aBoxes, sal_True ), nNewLns, sal_True ) )
|
|
|
|
return sal_False;
|
2000-09-18 23:08:29 +00:00
|
|
|
}
|
|
|
|
|
2012-01-20 13:16:01 +01:00
|
|
|
nTstLns = rCpyTbl.GetTabLines().Count(); // copy this many
|
2000-09-18 23:08:29 +00:00
|
|
|
}
|
|
|
|
else if( 0 == (nFndCnt % rCpyTbl.GetTabLines().Count()) )
|
|
|
|
nTstLns = nFndCnt;
|
|
|
|
else
|
2012-01-20 13:16:01 +01:00
|
|
|
return sal_False; // not enough space for the rows
|
2000-09-18 23:08:29 +00:00
|
|
|
|
|
|
|
for( nLn = 0; nLn < nTstLns; ++nLn )
|
|
|
|
{
|
2012-01-20 13:16:01 +01:00
|
|
|
// We have enough rows, so check the Boxes per row
|
2012-04-19 17:56:35 +02:00
|
|
|
pFLine = &aFndBox.GetLines()[ nLn % nFndCnt ];
|
2000-09-18 23:08:29 +00:00
|
|
|
SwTableLine* pLine = pFLine->GetLine();
|
2012-04-25 11:29:29 +02:00
|
|
|
pSttBox = pFLine->GetBoxes()[0].GetBox();
|
2012-05-10 17:42:10 +02:00
|
|
|
sal_uInt16 nSttBox = pLine->GetTabBoxes().GetPos( pSttBox );
|
2000-09-18 23:08:29 +00:00
|
|
|
if( nLn >= nFndCnt )
|
|
|
|
{
|
2012-01-20 13:16:01 +01:00
|
|
|
// We have more rows in the ClipBoard than we have selected
|
2000-09-18 23:08:29 +00:00
|
|
|
pInsFLine = new _FndLine( GetTabLines()[ nSttLine + nLn ],
|
|
|
|
&aFndBox );
|
|
|
|
pLine = pInsFLine->GetLine();
|
|
|
|
}
|
|
|
|
SwTableLine* pCpyLn = rCpyTbl.GetTabLines()[ nLn %
|
|
|
|
rCpyTbl.GetTabLines().Count() ];
|
|
|
|
|
2012-01-20 21:43:05 +01:00
|
|
|
// Selected too few rows?
|
2000-09-18 23:08:29 +00:00
|
|
|
if( pInsFLine )
|
|
|
|
{
|
2012-01-20 13:16:01 +01:00
|
|
|
// We insert a new row into the FndBox
|
2012-05-10 17:42:10 +02:00
|
|
|
if( pLine->GetTabBoxes().size() < nSttBox ||
|
2012-04-25 15:19:51 +02:00
|
|
|
sal::static_int_cast< sal_uInt16 >(
|
2012-05-10 17:42:10 +02:00
|
|
|
pLine->GetTabBoxes().size() - nSttBox ) <
|
2012-04-19 14:12:05 +02:00
|
|
|
pFLine->GetBoxes().size() )
|
2011-01-17 15:06:54 +01:00
|
|
|
return sal_False;
|
2000-09-18 23:08:29 +00:00
|
|
|
|
2012-01-20 13:16:01 +01:00
|
|
|
// Test for nesting
|
2012-04-19 14:12:05 +02:00
|
|
|
for( nBx = 0; nBx < pFLine->GetBoxes().size(); ++nBx )
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
|
|
|
if( !( pTmpBox = pLine->GetTabBoxes()[ nSttBox + nBx ])
|
|
|
|
->GetSttNd() )
|
2011-01-17 15:06:54 +01:00
|
|
|
return sal_False;
|
2012-01-20 13:16:01 +01:00
|
|
|
// if Ok, insert the Box into the FndLine
|
2000-09-18 23:08:29 +00:00
|
|
|
pFndBox = new _FndBox( pTmpBox, pInsFLine );
|
2012-04-19 14:12:05 +02:00
|
|
|
pInsFLine->GetBoxes().insert( pInsFLine->GetBoxes().begin() + nBx, pFndBox );
|
2000-09-18 23:08:29 +00:00
|
|
|
}
|
2012-04-19 17:56:35 +02:00
|
|
|
aFndBox.GetLines().insert( aFndBox.GetLines().begin() + nLn, pInsFLine );
|
2000-09-18 23:08:29 +00:00
|
|
|
}
|
2012-04-19 14:12:05 +02:00
|
|
|
else if( pFLine->GetBoxes().size() == 1 )
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
2012-05-10 17:42:10 +02:00
|
|
|
if( pLine->GetTabBoxes().size() < nSttBox ||
|
|
|
|
( pLine->GetTabBoxes().size() - nSttBox ) <
|
|
|
|
pCpyLn->GetTabBoxes().size() )
|
2011-01-17 15:06:54 +01:00
|
|
|
return sal_False;
|
2000-09-18 23:08:29 +00:00
|
|
|
|
2012-01-20 13:16:01 +01:00
|
|
|
// Test for nesting
|
2012-05-10 17:42:10 +02:00
|
|
|
for( nBx = 0; nBx < pCpyLn->GetTabBoxes().size(); ++nBx )
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
|
|
|
if( !( pTmpBox = pLine->GetTabBoxes()[ nSttBox + nBx ])
|
|
|
|
->GetSttNd() )
|
2011-01-17 15:06:54 +01:00
|
|
|
return sal_False;
|
2012-01-20 13:16:01 +01:00
|
|
|
// if Ok, insert the Box into the FndLine
|
2012-04-19 14:12:05 +02:00
|
|
|
if( nBx == pFLine->GetBoxes().size() )
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
|
|
|
pFndBox = new _FndBox( pTmpBox, pFLine );
|
2012-04-19 14:12:05 +02:00
|
|
|
pFLine->GetBoxes().insert( pFLine->GetBoxes().begin() + nBx, pFndBox );
|
2000-09-18 23:08:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-01-20 13:16:01 +01:00
|
|
|
// Match the selected Boxes with the ones in the Clipboard
|
|
|
|
// (n times)
|
2012-04-19 14:12:05 +02:00
|
|
|
if( 0 != ( pFLine->GetBoxes().size() %
|
2012-05-10 17:42:10 +02:00
|
|
|
pCpyLn->GetTabBoxes().size() ))
|
2011-01-17 15:06:54 +01:00
|
|
|
return sal_False;
|
2000-09-18 23:08:29 +00:00
|
|
|
|
2012-01-20 13:16:01 +01:00
|
|
|
// Test for nesting
|
2012-04-19 14:12:05 +02:00
|
|
|
for( nBx = 0; nBx < pFLine->GetBoxes().size(); ++nBx )
|
2012-04-25 11:29:29 +02:00
|
|
|
if (!pFLine->GetBoxes()[nBx].GetBox()->GetSttNd())
|
2011-01-17 15:06:54 +01:00
|
|
|
return sal_False;
|
2000-09-18 23:08:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-19 17:56:35 +02:00
|
|
|
if( aFndBox.GetLines().empty() )
|
2011-01-17 15:06:54 +01:00
|
|
|
return sal_False;
|
2000-09-18 23:08:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2012-01-20 13:16:01 +01:00
|
|
|
// Convert Table formulas to their relative representation
|
2000-09-18 23:08:29 +00:00
|
|
|
SwTableFmlUpdate aMsgHnt( &rCpyTbl );
|
|
|
|
aMsgHnt.eFlags = TBL_RELBOXNAME;
|
|
|
|
pCpyDoc->UpdateTblFlds( &aMsgHnt );
|
|
|
|
}
|
|
|
|
|
2012-01-20 13:16:01 +01:00
|
|
|
// Delete the Frames
|
2000-09-18 23:08:29 +00:00
|
|
|
aFndBox.SetTableLines( *this );
|
|
|
|
aFndBox.DelFrms( *this );
|
|
|
|
|
|
|
|
if( 1 == rCpyTbl.GetTabSortBoxes().Count() )
|
|
|
|
{
|
2007-09-27 07:40:12 +00:00
|
|
|
SwTableBox *pTmpBx = rCpyTbl.GetTabSortBoxes()[0];
|
2012-05-05 10:25:52 +01:00
|
|
|
for( sal_uInt16 n = 0; n < rSelBoxes.Count(); ++n )
|
2007-09-27 07:40:12 +00:00
|
|
|
lcl_CpyBox( rCpyTbl, pTmpBx, *this,
|
2012-05-05 10:25:52 +01:00
|
|
|
(SwTableBox*)rSelBoxes[n], sal_True, pUndo );
|
2000-09-18 23:08:29 +00:00
|
|
|
}
|
|
|
|
else
|
2012-04-19 17:56:35 +02:00
|
|
|
for( nLn = 0; nLn < aFndBox.GetLines().size(); ++nLn )
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
2012-04-19 17:56:35 +02:00
|
|
|
pFLine = &aFndBox.GetLines()[ nLn ];
|
2000-09-18 23:08:29 +00:00
|
|
|
SwTableLine* pCpyLn = rCpyTbl.GetTabLines()[
|
|
|
|
nLn % rCpyTbl.GetTabLines().Count() ];
|
2012-04-19 14:12:05 +02:00
|
|
|
for( nBx = 0; nBx < pFLine->GetBoxes().size(); ++nBx )
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
2012-01-20 13:16:01 +01:00
|
|
|
// Copy the pCpyBox into pMyBox
|
2000-09-18 23:08:29 +00:00
|
|
|
lcl_CpyBox( rCpyTbl, pCpyLn->GetTabBoxes()[
|
2012-05-10 17:42:10 +02:00
|
|
|
nBx % pCpyLn->GetTabBoxes().size() ],
|
2012-04-25 11:29:29 +02:00
|
|
|
*this, pFLine->GetBoxes()[nBx].GetBox(), sal_True, pUndo );
|
2000-09-18 23:08:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
aFndBox.MakeFrms( *this );
|
2011-01-17 15:06:54 +01:00
|
|
|
return sal_True;
|
2000-09-18 23:08:29 +00:00
|
|
|
}
|
|
|
|
|
2012-05-10 17:42:10 +02:00
|
|
|
static sal_Bool _FndCntntBox( SwTableBox* pBox, void* pPara )
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
2012-05-10 17:42:10 +02:00
|
|
|
if( pBox->GetTabLines().Count() )
|
2000-09-18 23:08:29 +00:00
|
|
|
pBox->GetTabLines().ForEach( &_FndCntntLine, pPara );
|
|
|
|
else
|
2012-05-05 10:25:52 +01:00
|
|
|
((SwSelBoxes*)pPara)->Insert( pBox );
|
2011-01-17 15:06:54 +01:00
|
|
|
return sal_True;
|
2000-09-18 23:08:29 +00:00
|
|
|
}
|
|
|
|
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_Bool _FndCntntLine( const SwTableLine*& rpLine, void* pPara )
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
2012-05-10 17:42:10 +02:00
|
|
|
for( SwTableBoxes::iterator it = ((SwTableLine*)rpLine)->GetTabBoxes().begin();
|
|
|
|
it != ((SwTableLine*)rpLine)->GetTabBoxes().end(); ++it)
|
|
|
|
_FndCntntBox(*it, pPara );
|
2011-01-17 15:06:54 +01:00
|
|
|
return sal_True;
|
2000-09-18 23:08:29 +00:00
|
|
|
}
|
|
|
|
|
2012-01-20 13:16:01 +01:00
|
|
|
// Find all Boxes with content in this Box
|
2000-09-18 23:08:29 +00:00
|
|
|
SwSelBoxes& SwTable::SelLineFromBox( const SwTableBox* pBox,
|
2011-01-17 15:06:54 +01:00
|
|
|
SwSelBoxes& rBoxes, sal_Bool bToTop ) const
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
|
|
|
SwTableLine* pLine = (SwTableLine*)pBox->GetUpper();
|
|
|
|
if( bToTop )
|
|
|
|
while( pLine->GetUpper() )
|
|
|
|
pLine = pLine->GetUpper()->GetUpper();
|
|
|
|
|
2012-01-20 13:16:01 +01:00
|
|
|
// Delete all old ones
|
2012-05-05 10:25:52 +01:00
|
|
|
rBoxes.Remove( sal_uInt16(0), rBoxes.Count() );
|
2012-05-10 17:42:10 +02:00
|
|
|
for( SwTableBoxes::iterator it = pLine->GetTabBoxes().begin();
|
|
|
|
it != pLine->GetTabBoxes().end(); ++it)
|
|
|
|
_FndCntntBox(*it, &rBoxes );
|
2000-09-18 23:08:29 +00:00
|
|
|
return rBoxes;
|
|
|
|
}
|
2010-10-14 08:30:41 +02:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|