Files
libreoffice/svx/source/outliner/outlin2.cxx

757 lines
18 KiB
C++
Raw Normal View History

2000-09-18 16:07:07 +00:00
/*************************************************************************
*
* $RCSfile: outlin2.cxx,v $
*
2001-03-09 17:10:20 +00:00
* $Revision: 1.7 $
2000-09-18 16:07:07 +00:00
*
2001-03-09 17:10:20 +00:00
* last change: $Author: mt $ $Date: 2001-03-09 18:10:04 $
2000-09-18 16:07:07 +00:00
*
* 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): _______________________________________
*
*
************************************************************************/
#include <outl_pch.hxx>
#pragma hdrstop
#include <tools/list.hxx>
#ifndef _SFXSTYLE_HXX //autogen
#include <svtools/style.hxx>
#endif
#ifndef _SV_MAPMOD_HXX
#include <vcl/mapmod.hxx>
#endif
2001-03-09 17:10:20 +00:00
#include <forbiddencharacterstable.hxx>
2000-09-18 16:07:07 +00:00
#define _OUTLINER_CXX
#include <outliner.hxx>
#include <paralist.hxx>
#include <outlobj.hxx>
#include <outleeng.hxx>
#include <outlundo.hxx>
#include <eeitem.hxx>
#include <editstat.hxx>
DBG_NAMEEX(Outliner);
using namespace ::com::sun::star::uno;
2000-10-27 09:45:26 +00:00
using namespace ::com::sun::star::linguistic2;
2000-09-18 16:07:07 +00:00
// =====================================================================
// ====================== Einfache Durchreicher =======================
// ======================================================================
void Outliner::SetUpdateMode( BOOL bUpdate )
{
DBG_CHKTHIS(Outliner,0);
pEditEngine->SetUpdateMode( bUpdate );
}
BOOL Outliner::GetUpdateMode() const
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->GetUpdateMode();
}
const SfxItemSet& Outliner::GetEmptyItemSet() const
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->GetEmptyItemSet();
}
void Outliner::EnableUndo( BOOL bEnable )
{
DBG_CHKTHIS(Outliner,0);
pEditEngine->EnableUndo( bEnable );
}
BOOL Outliner::IsUndoEnabled() const
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->IsUndoEnabled();
}
MapMode Outliner::GetRefMapMode() const
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->GetRefMapMode();
}
void Outliner::SetRefMapMode( const MapMode& rMMode )
{
DBG_CHKTHIS(Outliner,0);
pEditEngine->SetRefMapMode( rMMode );
}
void Outliner::ClearModifyFlag()
{
DBG_CHKTHIS(Outliner,0);
pEditEngine->ClearModifyFlag();
}
BOOL Outliner::IsModified() const
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->IsModified();
}
ULONG Outliner::GetTextHeight() const
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->GetTextHeight();
}
void Outliner::SetStatusEventHdl( const Link& rLink )
{
DBG_CHKTHIS(Outliner,0);
pEditEngine->SetStatusEventHdl( rLink );
}
Link Outliner::GetStatusEventHdl() const
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->GetStatusEventHdl();
}
void Outliner::SetDefTab( USHORT nTab )
{
DBG_CHKTHIS(Outliner,0);
pEditEngine->SetDefTab( nTab );
}
USHORT Outliner::GetDefTab() const
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->GetDefTab();
}
BOOL Outliner::IsFlatMode() const
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->IsFlatMode();
}
BOOL Outliner::UpdateFields()
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->UpdateFields();
}
void Outliner::RemoveFields( BOOL bKeepFieldText, TypeId aType )
{
DBG_CHKTHIS(Outliner,0);
pEditEngine->RemoveFields( bKeepFieldText, aType );
}
void Outliner::SetWordDelimiters( const String& rDelimiters )
{
DBG_CHKTHIS(Outliner,0);
pEditEngine->SetWordDelimiters( rDelimiters );
}
String Outliner::GetWordDelimiters() const
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->GetWordDelimiters();
}
String Outliner::GetWord( USHORT nPara, USHORT nIndex )
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->GetWord( nPara, nIndex );
}
BOOL Outliner::CopyClipboard() const
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->CopyClipboard();
}
BOOL Outliner::CopyClipboard( const ESelection& rSelection ) const
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->CopyClipboard( rSelection );
}
BOOL Outliner::PasteClipboard()
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->PasteClipboard();
}
BOOL Outliner::CopyDragServer() const
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->CopyDragServer();
}
BOOL Outliner::CopyDragServer( const ESelection& rSelection ) const
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->CopyDragServer( rSelection );
}
BOOL Outliner::PasteDragServer( USHORT nItem )
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->PasteDragServer( nItem );
}
void Outliner::Draw( OutputDevice* pOutDev, const Rectangle& rOutRect )
{
DBG_CHKTHIS(Outliner,0);
pEditEngine->Draw( pOutDev, rOutRect );
}
void Outliner::Draw( OutputDevice* pOutDev, const Rectangle& rOutRect, const Point& rStartDocPos )
{
DBG_CHKTHIS(Outliner,0);
pEditEngine->Draw( pOutDev, rOutRect, rStartDocPos );
}
void Outliner::Draw( OutputDevice* pOutDev, const Point& rStartPos, short nOrientation )
{
DBG_CHKTHIS(Outliner,0);
pEditEngine->Draw( pOutDev, rStartPos, nOrientation );
}
void Outliner::SetPaperSize( const Size& rSize )
{
DBG_CHKTHIS(Outliner,0);
pEditEngine->SetPaperSize( rSize );
}
const Size& Outliner::GetPaperSize() const
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->GetPaperSize();
}
void Outliner::SetPolygon( const XPolyPolygon& rPoly )
{
DBG_CHKTHIS( Outliner, 0 );
pEditEngine->SetPolygon( rPoly );
}
void Outliner::SetPolygon( const XPolyPolygon& rPoly, const XPolyPolygon* pXorPoly )
{
DBG_CHKTHIS( Outliner, 0 );
pEditEngine->SetPolygon( rPoly, pXorPoly );
}
void Outliner::ClearPolygon()
{
DBG_CHKTHIS( Outliner, 0 );
pEditEngine->ClearPolygon();
}
const PolyPolygon* Outliner::GetPolygon()
{
DBG_CHKTHIS( Outliner, 0 );
return pEditEngine->GetPolygon();
}
const Size& Outliner::GetMinAutoPaperSize() const
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->GetMinAutoPaperSize();
}
void Outliner::SetMinAutoPaperSize( const Size& rSz )
{
DBG_CHKTHIS(Outliner,0);
pEditEngine->SetMinAutoPaperSize( rSz );
}
const Size& Outliner::GetMaxAutoPaperSize() const
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->GetMaxAutoPaperSize();
}
void Outliner::SetMaxAutoPaperSize( const Size& rSz )
{
DBG_CHKTHIS(Outliner,0);
pEditEngine->SetMaxAutoPaperSize( rSz );
}
BOOL Outliner::IsExpanded( Paragraph* pPara ) const
{
DBG_CHKTHIS(Outliner,0);
return pParaList->HasVisibleChilds( pPara );
}
Paragraph* Outliner::GetParent( Paragraph* pParagraph ) const
{
DBG_CHKTHIS(Outliner,0);
USHORT nRelPos;
return pParaList->GetParent( pParagraph, nRelPos );
}
ULONG Outliner::GetChildCount( Paragraph* pParent ) const
{
DBG_CHKTHIS(Outliner,0);
return pParaList->GetChildCount( pParent );
}
Size Outliner::CalcTextSize()
{
DBG_CHKTHIS(Outliner,0);
return Size(pEditEngine->CalcTextWidth(),pEditEngine->GetTextHeight());
}
Point Outliner::GetDocPos( Paragraph* pPara )
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->GetDocPosTopLeft( (USHORT)pParaList->GetAbsPos( pPara ) );
}
void Outliner::SetStyleSheetPool( SfxStyleSheetPool* pSPool )
{
DBG_CHKTHIS(Outliner,0);
pEditEngine->SetStyleSheetPool( pSPool );
}
SfxStyleSheetPool* Outliner::GetStyleSheetPool()
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->GetStyleSheetPool();
}
SfxStyleSheet* Outliner::GetStyleSheet( ULONG nPara )
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->GetStyleSheet( (USHORT)nPara );
}
BOOL Outliner::IsInSelectionMode() const
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->IsInSelectionMode();
}
void Outliner::SetControlWord( ULONG nWord )
{
DBG_CHKTHIS(Outliner,0);
pEditEngine->SetControlWord( nWord );
}
ULONG Outliner::GetControlWord() const
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->GetControlWord();
}
void Outliner::UndoActionStart( USHORT nId )
{
DBG_CHKTHIS(Outliner,0);
pEditEngine->UndoActionStart( nId );
}
void Outliner::UndoActionEnd( USHORT nId )
{
DBG_CHKTHIS(Outliner,0);
pEditEngine->UndoActionEnd( nId );
}
void Outliner::InsertUndo( EditUndo* pUndo )
{
DBG_CHKTHIS(Outliner,0);
pEditEngine->GetUndoManager().AddUndoAction( pUndo, FALSE );
}
BOOL Outliner::IsInUndo()
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->IsInUndo();
}
ULONG Outliner::GetLineCount( ULONG nParagraph ) const
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->GetLineCount( (USHORT)nParagraph );
}
USHORT Outliner::GetLineLen( ULONG nParagraph, USHORT nLine ) const
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->GetLineLen( (USHORT)nParagraph, nLine );
}
ULONG Outliner::GetLineHeight( ULONG nParagraph, ULONG nLine )
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->GetLineHeight( (USHORT)nParagraph, (USHORT)nLine );
}
void Outliner::QuickRemoveCharAttribs( USHORT nPara, USHORT nWhich )
{
DBG_CHKTHIS(Outliner,0);
pEditEngine->QuickRemoveCharAttribs( nPara, nWhich );
}
EESpellState Outliner::HasSpellErrors( LanguageType eLang )
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->HasSpellErrors( eLang );
}
EESpellState Outliner::HasSpellErrors()
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->HasSpellErrors();
}
2000-09-18 16:07:07 +00:00
void Outliner::SetDefaultLanguage( LanguageType eLang )
{
DBG_CHKTHIS(Outliner,0);
pEditEngine->SetDefaultLanguage( eLang );
}
LanguageType Outliner::GetDefaultLanguage() const
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->GetDefaultLanguage();
}
BOOL Outliner::HasOnlineSpellErrors() const
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->HasOnlineSpellErrors();
}
void Outliner::CompleteOnlineSpelling()
{
DBG_CHKTHIS(Outliner,0);
pEditEngine->CompleteOnlineSpelling();
}
BOOL Outliner::HasText( const SvxSearchItem& rSearchItem )
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->HasText( rSearchItem );
}
void Outliner::SetEditTextObjectPool( SfxItemPool* pPool )
{
DBG_CHKTHIS(Outliner,0);
pEditEngine->SetEditTextObjectPool( pPool );
}
SfxItemPool* Outliner::GetEditTextObjectPool() const
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->GetEditTextObjectPool();
}
BOOL Outliner::SpellNextDocument()
{
DBG_CHKTHIS(Outliner,0);
return FALSE;
}
void Outliner::SetSpeller( Reference< XSpellChecker1 > &xSpeller )
{
DBG_CHKTHIS(Outliner,0);
pEditEngine->SetSpeller( xSpeller );
}
Reference< XSpellChecker1 > Outliner::GetSpeller()
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->GetSpeller();
}
2001-03-09 17:10:20 +00:00
void Outliner::SetForbiddenCharsTable( vos::ORef<SvxForbiddenCharactersTable> xForbiddenChars )
{
DBG_CHKTHIS(Outliner,0);
pEditEngine->SetForbiddenCharsTable( xForbiddenChars );
}
vos::ORef<SvxForbiddenCharactersTable> Outliner::GetForbiddenCharsTable() const
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->GetForbiddenCharsTable();
}
2000-09-18 16:07:07 +00:00
Reference< XHyphenator > Outliner::GetHyphenator() const
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->GetHyphenator();
}
void Outliner::SetHyphenator( Reference< XHyphenator >& xHyph )
{
DBG_CHKTHIS(Outliner,0);
pEditEngine->SetHyphenator( xHyph );
}
OutputDevice* Outliner::GetRefDevice() const
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->GetRefDevice();
}
USHORT Outliner::GetFirstLineOffset( ULONG nParagraph )
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->GetFirstLineOffset( (USHORT)nParagraph );
}
ULONG Outliner::GetTextHeight( ULONG nParagraph ) const
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->GetTextHeight((USHORT)nParagraph );
}
Point Outliner::GetDocPos( const Point& rPaperPos ) const
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->GetDocPos( rPaperPos );
}
2000-09-18 16:07:07 +00:00
Point Outliner::GetDocPosTopLeft( ULONG nParagraph )
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->GetDocPosTopLeft( (USHORT)nParagraph );
}
BOOL Outliner::IsTextPos( const Point& rPaperPos, USHORT nBorder )
2000-09-18 16:07:07 +00:00
{
DBG_CHKTHIS(Outliner,0);
BOOL bTextPos = pEditEngine->IsTextPos( rPaperPos, nBorder );
2000-09-18 16:07:07 +00:00
if ( !bTextPos )
{
// MT: Dieser Code ist doppelt (OutlinerView::ImpCheckMousePos)
// => Mal eine Methode anbieten, jetzt muesste ich daf<61>r aber branchen => spaeter
// Bullet?
Point aDocPos = GetDocPos( rPaperPos );
USHORT nPara = pEditEngine->FindParagraph( aDocPos.Y() );
2000-09-18 16:07:07 +00:00
if ( ( nPara != EE_PARA_NOT_FOUND ) && ImplHasBullet( nPara ) )
{
Rectangle aBulArea = ImpCalcBulletArea( nPara, TRUE );
Point aParaXY = pEditEngine->GetDocPosTopLeft( nPara );
aBulArea.Top() += aParaXY.Y();
aBulArea.Bottom() += aParaXY.Y();
if ( aBulArea.IsInside( aDocPos ) )
2000-09-18 16:07:07 +00:00
{
bTextPos = TRUE;
}
}
}
return bTextPos;
}
void Outliner::QuickSetAttribs( const SfxItemSet& rSet, const ESelection& rSel )
{
DBG_CHKTHIS(Outliner,0);
pEditEngine->QuickSetAttribs( rSet, rSel );
}
void Outliner::QuickInsertText( const XubString& rText, const ESelection& rSel )
{
bFirstParaIsEmpty = FALSE;
pEditEngine->QuickInsertText( rText, rSel );
}
void Outliner::QuickDelete( const ESelection& rSel )
{
bFirstParaIsEmpty = FALSE;
pEditEngine->QuickDelete( rSel );
}
void Outliner::QuickInsertField( const SvxFieldItem& rFld, const ESelection& rSel )
{
DBG_CHKTHIS(Outliner,0);
bFirstParaIsEmpty = FALSE;
pEditEngine->QuickInsertField( rFld, rSel );
}
void Outliner::QuickInsertLineBreak( const ESelection& rSel )
{
DBG_CHKTHIS(Outliner,0);
bFirstParaIsEmpty = FALSE;
pEditEngine->QuickInsertLineBreak( rSel );
}
void Outliner::QuickFormatDoc( BOOL bFull )
{
DBG_CHKTHIS(Outliner,0);
pEditEngine->QuickFormatDoc( bFull );
}
void Outliner::SetGlobalCharStretching( USHORT nX, USHORT nY )
{
DBG_CHKTHIS(Outliner,0);
pEditEngine->SetGlobalCharStretching( nX, nY );
}
void Outliner::GetGlobalCharStretching( USHORT& rX, USHORT& rY )
{
DBG_CHKTHIS(Outliner,0);
pEditEngine->GetGlobalCharStretching( rX, rY );
}
void Outliner::DoStretchChars( USHORT nX, USHORT nY )
{
DBG_CHKTHIS(Outliner,0);
pEditEngine->DoStretchChars( nX, nY );
}
void Outliner::EraseVirtualDevice()
{
DBG_CHKTHIS(Outliner,0);
pEditEngine->EraseVirtualDevice();
}
void Outliner::SetBigTextObjectStart( USHORT nStartAtPortionCount )
{
DBG_CHKTHIS(Outliner,0);
pEditEngine->SetBigTextObjectStart( nStartAtPortionCount );
}
USHORT Outliner::GetBigTextObjectStart() const
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->GetBigTextObjectStart();
}
BOOL Outliner::ShouldCreateBigTextObject() const
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->ShouldCreateBigTextObject();
}
2000-11-20 11:17:53 +00:00
void Outliner::SetVertical( BOOL b )
{
DBG_CHKTHIS(Outliner,0);
pEditEngine->SetVertical( b );
}
BOOL Outliner::IsVertical() const
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->IsVertical();
}
USHORT Outliner::GetScriptType( const ESelection& rSelection ) const
{
DBG_CHKTHIS(Outliner,0);
return pEditEngine->GetScriptType( rSelection );
}
2000-09-18 16:07:07 +00:00
// Hilfsfunktionen fuers Undo
XubString** Outliner::ImpCreateBulletArray()
{
DBG_CHKTHIS(Outliner,0);
ULONG nCount = pParaList->GetParagraphCount();
XubString** ppBulletTexts = new XubString*[ nCount ];
for( ULONG nAbsPos = 0; nAbsPos < nCount; nAbsPos++ )
{
Paragraph* pPara = pParaList->GetParagraph( nAbsPos );
ppBulletTexts[ nAbsPos ] = new XubString( pPara->GetText() );
}
return ppBulletTexts;
}
void Outliner::ImpSetBulletArray( XubString** ppBullets )
{
DBG_CHKTHIS(Outliner,0);
ULONG nCount = pParaList->GetParagraphCount();
for( ULONG nAbsPos = 0; nAbsPos < nCount; nAbsPos++ )
{
Paragraph* pPara = pParaList->GetParagraph( nAbsPos );
XubString aStr( *(ppBullets[nAbsPos]) );
pPara->SetText( aStr );
}
}
USHORT* Outliner::ImpCreateDepthArray()
{
DBG_CHKTHIS(Outliner,0);
ULONG nCount = pParaList->GetParagraphCount();
DBG_ASSERT(nCount,"Bad paralist");
USHORT* pDepths = new USHORT[ nCount ];
USHORT* pCur = pDepths;
for( ULONG nAbsPos = 0; nAbsPos < nCount; nAbsPos++, pCur++ )
{
Paragraph* pPara = pParaList->GetParagraph( nAbsPos );
*pCur = pPara->GetDepth();
}
return pDepths;
}
void Outliner::ImpSetDepthArray( USHORT* pDepths )
{
DBG_CHKTHIS(Outliner,0);
ULONG nCount = pParaList->GetParagraphCount();
for( ULONG nAbsPos = 0; nAbsPos < nCount; nAbsPos++, pDepths++ )
{
Paragraph* pPara = pParaList->GetParagraph( nAbsPos );
pPara->SetDepth( *pDepths );
}
}