Files
libreoffice/sw/source/core/crsr/unocrsr.cxx
Rüdiger Timm cf7b8dbeea INTEGRATION: CWS tune03 (1.7.28); FILE MERGED
2004/07/19 19:10:51 mhu 1.7.28.1: #i29979# Added SW_DLLPUBLIC/PRIVATE (see swdllapi.h) to exported symbols/classes.
2004-08-23 07:44:16 +00:00

310 lines
9.5 KiB
C++
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*************************************************************************
*
* $RCSfile: unocrsr.cxx,v $
*
* $Revision: 1.8 $
*
* last change: $Author: rt $ $Date: 2004-08-23 08:44:16 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
*
* - GNU Lesser General Public License Version 2.1
* - Sun Industry Standards Source License Version 1.1
*
* Sun Microsystems Inc., October, 2000
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2000 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
*
* This library 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 for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
*
* Sun Industry Standards Source License Version 1.1
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source License Version 1.1 (the "License"); You may not use this file
* except in compliance with the License. You may obtain a copy of the
* License at http://www.openoffice.org/license.html.
*
* Software provided under this License is provided on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
*
* Copyright: 2000 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
* Contributor(s): _______________________________________
*
*
************************************************************************/
#pragma hdrstop
#ifndef _UNOCRSR_HXX
#include <unocrsr.hxx>
#endif
#ifndef _DOC_HXX
#include <doc.hxx>
#endif
#ifndef _NODE_HXX
#include <node.hxx>
#endif
#ifndef _SWTABLE_HXX
#include <swtable.hxx>
#endif
#ifndef _DOCARY_HXX
#include <docary.hxx>
#endif
#ifndef _ROOTFRM_HXX
#include <rootfrm.hxx>
#endif
SV_IMPL_PTRARR( SwUnoCrsrTbl, SwUnoCrsrPtr )
IMPL_FIXEDMEMPOOL_NEWDEL( SwUnoCrsr, 10, 10 )
SwUnoCrsr::SwUnoCrsr( const SwPosition &rPos, SwPaM* pRing )
: SwCursor( rPos, pRing ), SwModify( 0 ),
bRemainInSection( TRUE ),
bSkipOverHiddenSections( FALSE ),
bSkipOverProtectSections( FALSE )
{}
// @@@ semantic: no copy ctor.
SwUnoCrsr::SwUnoCrsr( SwUnoCrsr& rICrsr )
: SwCursor( rICrsr ), SwModify( 0 ),
bRemainInSection( rICrsr.bRemainInSection ),
bSkipOverHiddenSections( rICrsr.bSkipOverHiddenSections ),
bSkipOverProtectSections( rICrsr.bSkipOverProtectSections )
{}
SwUnoCrsr::~SwUnoCrsr()
{
SwDoc* pDoc = GetDoc();
if( !pDoc->IsInDtor() )
{
// dann muss der Cursor aus dem Array ausgetragen werden
SwUnoCrsrTbl& rTbl = (SwUnoCrsrTbl&)pDoc->GetUnoCrsrTbl();
USHORT nDelPos = rTbl.GetPos( this );
if( USHRT_MAX != nDelPos )
rTbl.Remove( nDelPos );
else
ASSERT( !this, "UNO Cursor nicht mehr im Array" );
}
// den gesamten Ring loeschen!
while( GetNext() != this )
{
Ring* pNxt = GetNext();
pNxt->MoveTo( 0 ); // ausketten
delete pNxt; // und loeschen
}
}
SwUnoCrsr::operator SwUnoCrsr* () { return this; }
/*
SwCursor* SwUnoCrsr::Create( SwPaM* pRing ) const
{
return new SwUnoCrsr( *GetPoint(), pRing );
}
*/
FASTBOOL SwUnoCrsr::IsSelOvr( int eFlags )
{
if( bRemainInSection )
{
SwDoc* pDoc = GetDoc();
SwNodeIndex aOldIdx( *pDoc->GetNodes()[ GetSavePos()->nNode ] );
SwNodeIndex& rPtIdx = GetPoint()->nNode;
SwStartNode *pOldSttNd = aOldIdx.GetNode().FindStartNode(),
*pNewSttNd = rPtIdx.GetNode().FindStartNode();
if( pOldSttNd != pNewSttNd )
{
BOOL bMoveDown = GetSavePos()->nNode < rPtIdx.GetIndex();
BOOL bValidPos = FALSE;
// search the correct surrounded start node - which the index
// can't leave.
while( pOldSttNd->IsSectionNode() )
pOldSttNd = pOldSttNd->StartOfSectionNode();
// is the new index inside this surrounded section?
if( rPtIdx > *pOldSttNd &&
rPtIdx < pOldSttNd->EndOfSectionIndex() )
{
// check if it a valid move inside this section
// (only over SwSection's !)
const SwStartNode* pInvalidNode;
do {
pInvalidNode = 0;
pNewSttNd = rPtIdx.GetNode().FindStartNode();
const SwStartNode *pSttNd = pNewSttNd, *pEndNd = pOldSttNd;
if( pSttNd->EndOfSectionIndex() >
pEndNd->EndOfSectionIndex() )
{
pEndNd = pNewSttNd;
pSttNd = pOldSttNd;
}
while( pSttNd->GetIndex() > pEndNd->GetIndex() )
{
if( !pSttNd->IsSectionNode() )
pInvalidNode = pSttNd;
pSttNd = pSttNd->StartOfSectionNode();
}
if( pInvalidNode )
{
if( bMoveDown )
{
rPtIdx.Assign( *pInvalidNode->EndOfSectionNode(), 1 );
if( !rPtIdx.GetNode().IsCntntNode() &&
!pDoc->GetNodes().GoNextSection( &rPtIdx ))
break;
}
else
{
rPtIdx.Assign( *pInvalidNode, -1 );
if( !rPtIdx.GetNode().IsCntntNode() &&
!pDoc->GetNodes().GoPrevSection( &rPtIdx ))
break;
}
}
else
bValidPos = TRUE;
} while ( pInvalidNode );
}
if( bValidPos )
{
SwCntntNode* pCNd = GetCntntNode();
USHORT nCnt = 0;
if( pCNd && !bMoveDown )
nCnt = pCNd->Len();
GetPoint()->nContent.Assign( pCNd, nCnt );
}
else
{
rPtIdx = GetSavePos()->nNode;
GetPoint()->nContent.Assign( GetCntntNode(), GetSavePos()->nCntnt );
return TRUE;
}
}
}
return SwCursor::IsSelOvr( eFlags );
}
/* */
SwUnoTableCrsr::SwUnoTableCrsr(const SwPosition& rPos)
: SwCursor(rPos), SwUnoCrsr(rPos), SwTableCursor(rPos), aTblSel(rPos)
{
SetRemainInSection(FALSE);
}
SwUnoTableCrsr::~SwUnoTableCrsr()
{
while( aTblSel.GetNext() != &aTblSel )
delete aTblSel.GetNext(); // und loeschen
}
SwUnoTableCrsr::operator SwUnoCrsr* () { return this; }
SwUnoTableCrsr::operator SwTableCursor* () { return this; }
SwUnoTableCrsr::operator SwUnoTableCrsr* () { return this; }
/*
SwCursor* SwUnoTableCrsr::Create( SwPaM* pRing ) const
{
return SwUnoCrsr::Create( pRing );
}
*/
FASTBOOL SwUnoTableCrsr::IsSelOvr( int eFlags )
{
FASTBOOL bRet = SwUnoCrsr::IsSelOvr( eFlags );
if( !bRet )
{
const SwTableNode* pTNd = GetPoint()->nNode.GetNode().FindTableNode();
bRet = !(pTNd == GetDoc()->GetNodes()[ GetSavePos()->nNode ]->
FindTableNode() && (!HasMark() ||
pTNd == GetMark()->nNode.GetNode().FindTableNode() ));
}
return bRet;
}
void SwUnoTableCrsr::MakeBoxSels()
{
const SwCntntNode* pCNd;
bool bMakeTblCrsrs = true;
if( GetPoint()->nNode.GetIndex() && GetMark()->nNode.GetIndex() &&
0 != ( pCNd = GetCntntNode() ) && pCNd->GetFrm() &&
0 != ( pCNd = GetCntntNode(FALSE) ) && pCNd->GetFrm() )
bMakeTblCrsrs = GetDoc()->GetRootFrm()->MakeTblCrsrs( *this );
if ( !bMakeTblCrsrs )
{
SwSelBoxes& rTmpBoxes = (SwSelBoxes&)GetBoxes();
USHORT nCount = 0;
while( nCount < rTmpBoxes.Count() )
DeleteBox( nCount );
}
if( IsChgd() )
{
SwTableCursor::MakeBoxSels( &aTblSel );
if( !GetBoxesCount() )
{
const SwTableBox* pBox;
const SwNode* pBoxNd = GetPoint()->nNode.GetNode().FindTableBoxStartNode();
const SwTableNode* pTblNd = pBoxNd ? pBoxNd->FindTableNode() : 0;
if( pTblNd && 0 != ( pBox = pTblNd->GetTable().GetTblBox( pBoxNd->GetIndex() )) )
InsertBox( *pBox );
}
}
}
/* */
SwUnoCrsr* SwDoc::CreateUnoCrsr( const SwPosition& rPos, BOOL bTblCrsr )
{
SwUnoCrsr* pNew;
if( bTblCrsr )
pNew = new SwUnoTableCrsr( rPos );
else
pNew = new SwUnoCrsr( rPos );
pUnoCrsrTbl->Insert( pNew, pUnoCrsrTbl->Count() );
return pNew;
}