2796d979fa
Change-Id: I015616d7a008692b63586cd5d2ae9cc5586ead4b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/176135 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
594 lines
14 KiB
C++
594 lines
14 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/*
|
|
* This file is part of the LibreOffice project.
|
|
*
|
|
* 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/.
|
|
*
|
|
* This file incorporates work covered by the following license notice:
|
|
*
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
* with this work for additional information regarding copyright
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
* License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 .
|
|
*/
|
|
|
|
|
|
#include <editeng/editeng.hxx>
|
|
#include <editeng/editview.hxx>
|
|
#include <editeng/editdata.hxx>
|
|
#include <editeng/editund2.hxx>
|
|
|
|
#include <svl/style.hxx>
|
|
#include <vcl/mapmod.hxx>
|
|
|
|
#include <editeng/forbiddencharacterstable.hxx>
|
|
|
|
#include <editeng/outliner.hxx>
|
|
#include "paralist.hxx"
|
|
#include <outleeng.hxx>
|
|
#include <editeng/editstat.hxx>
|
|
|
|
|
|
using namespace ::com::sun::star::uno;
|
|
using namespace ::com::sun::star::linguistic2;
|
|
|
|
|
|
// ====================== Simple pass-through =======================
|
|
|
|
|
|
bool Outliner::SetUpdateLayout( bool bUpdate )
|
|
{
|
|
return pEditEngine->SetUpdateLayout( bUpdate );
|
|
}
|
|
|
|
|
|
bool Outliner::IsUpdateLayout() const
|
|
{
|
|
return pEditEngine->IsUpdateLayout();
|
|
}
|
|
|
|
const SfxItemSet& Outliner::GetEmptyItemSet() const
|
|
{
|
|
return pEditEngine->GetEmptyItemSet();
|
|
}
|
|
|
|
void Outliner::EnableUndo( bool bEnable )
|
|
{
|
|
pEditEngine->EnableUndo( bEnable );
|
|
}
|
|
|
|
bool Outliner::IsUndoEnabled() const
|
|
{
|
|
return pEditEngine->IsUndoEnabled();
|
|
}
|
|
|
|
MapMode const & Outliner::GetRefMapMode() const
|
|
{
|
|
return pEditEngine->GetRefMapMode();
|
|
}
|
|
|
|
void Outliner::SetRefMapMode( const MapMode& rMMode )
|
|
{
|
|
pEditEngine->SetRefMapMode( rMMode );
|
|
}
|
|
|
|
void Outliner::SetBackgroundColor( const Color& rColor )
|
|
{
|
|
pEditEngine->SetBackgroundColor( rColor );
|
|
}
|
|
|
|
Color const & Outliner::GetBackgroundColor() const
|
|
{
|
|
return pEditEngine->GetBackgroundColor();
|
|
}
|
|
|
|
|
|
void Outliner::ClearModifyFlag()
|
|
{
|
|
pEditEngine->ClearModifyFlag();
|
|
}
|
|
|
|
bool Outliner::IsModified() const
|
|
{
|
|
return pEditEngine->IsModified();
|
|
}
|
|
|
|
sal_uInt32 Outliner::GetTextHeight() const
|
|
{
|
|
return pEditEngine->GetTextHeight();
|
|
}
|
|
|
|
void Outliner::SetModifyHdl( const Link<LinkParamNone*,void>& rLink )
|
|
{
|
|
pEditEngine->SetModifyHdl( rLink );
|
|
}
|
|
|
|
void Outliner::SetNotifyHdl( const Link<EENotify&,void>& rLink )
|
|
{
|
|
pEditEngine->aOutlinerNotifyHdl = rLink;
|
|
|
|
if ( rLink.IsSet() )
|
|
pEditEngine->SetNotifyHdl( LINK( this, Outliner, EditEngineNotifyHdl ) );
|
|
else
|
|
pEditEngine->SetNotifyHdl( Link<EENotify&,void>() );
|
|
}
|
|
|
|
void Outliner::SetStatusEventHdl( const Link<EditStatus&, void>& rLink )
|
|
{
|
|
pEditEngine->SetStatusEventHdl( rLink );
|
|
}
|
|
|
|
Link<EditStatus&, void> const & Outliner::GetStatusEventHdl() const
|
|
{
|
|
return pEditEngine->GetStatusEventHdl();
|
|
}
|
|
|
|
void Outliner::SetDefTab( sal_uInt16 nTab )
|
|
{
|
|
pEditEngine->SetDefTab( nTab );
|
|
}
|
|
|
|
bool Outliner::IsFlatMode() const
|
|
{
|
|
return pEditEngine->IsFlatMode();
|
|
}
|
|
|
|
bool Outliner::UpdateFields()
|
|
{
|
|
return pEditEngine->UpdateFields();
|
|
}
|
|
|
|
void Outliner::RemoveFields( const std::function<bool ( const SvxFieldData* )>& isFieldData )
|
|
{
|
|
pEditEngine->RemoveFields( isFieldData );
|
|
}
|
|
|
|
void Outliner::SetWordDelimiters( const OUString& rDelimiters )
|
|
{
|
|
pEditEngine->SetWordDelimiters( rDelimiters );
|
|
}
|
|
|
|
OUString const & Outliner::GetWordDelimiters() const
|
|
{
|
|
return pEditEngine->GetWordDelimiters();
|
|
}
|
|
|
|
OUString Outliner::GetWord( sal_Int32 nPara, sal_Int32 nIndex )
|
|
{
|
|
return pEditEngine->GetWord( nPara, nIndex );
|
|
}
|
|
|
|
void Outliner::Draw( OutputDevice& rOutDev, const tools::Rectangle& rOutRect )
|
|
{
|
|
pEditEngine->Draw( rOutDev, rOutRect );
|
|
}
|
|
|
|
void Outliner::Draw( OutputDevice& rOutDev, const Point& rStartPos )
|
|
{
|
|
pEditEngine->Draw( rOutDev, rStartPos );
|
|
}
|
|
|
|
void Outliner::SetPaperSize( const Size& rSize )
|
|
{
|
|
pEditEngine->SetPaperSize( rSize );
|
|
}
|
|
|
|
const Size& Outliner::GetPaperSize() const
|
|
{
|
|
return pEditEngine->GetPaperSize();
|
|
}
|
|
|
|
void Outliner::SetPolygon( const basegfx::B2DPolyPolygon& rPolyPolygon )
|
|
{
|
|
pEditEngine->SetPolygon( rPolyPolygon );
|
|
}
|
|
|
|
void Outliner::SetPolygon( const basegfx::B2DPolyPolygon& rPolyPolygon, const basegfx::B2DPolyPolygon* pLinePolyPolygon)
|
|
{
|
|
pEditEngine->SetPolygon( rPolyPolygon, pLinePolyPolygon);
|
|
}
|
|
|
|
void Outliner::ClearPolygon()
|
|
{
|
|
pEditEngine->ClearPolygon();
|
|
}
|
|
|
|
const Size& Outliner::GetMinAutoPaperSize() const
|
|
{
|
|
return pEditEngine->GetMinAutoPaperSize();
|
|
}
|
|
|
|
void Outliner::SetMinAutoPaperSize( const Size& rSz )
|
|
{
|
|
pEditEngine->SetMinAutoPaperSize( rSz );
|
|
}
|
|
|
|
const Size& Outliner::GetMaxAutoPaperSize() const
|
|
{
|
|
return pEditEngine->GetMaxAutoPaperSize();
|
|
}
|
|
|
|
void Outliner::SetMaxAutoPaperSize( const Size& rSz )
|
|
{
|
|
pEditEngine->SetMaxAutoPaperSize( rSz );
|
|
}
|
|
|
|
void Outliner::SetMinColumnWrapHeight(tools::Long nVal)
|
|
{
|
|
pEditEngine->SetMinColumnWrapHeight(nVal);
|
|
}
|
|
|
|
bool Outliner::IsExpanded( Paragraph const * pPara ) const
|
|
{
|
|
return pParaList->HasVisibleChildren( pPara );
|
|
}
|
|
|
|
Paragraph* Outliner::GetParent( Paragraph const * pParagraph ) const
|
|
{
|
|
return pParaList->GetParent( pParagraph );
|
|
}
|
|
|
|
sal_Int32 Outliner::GetChildCount( Paragraph const * pParent ) const
|
|
{
|
|
return pParaList->GetChildCount( pParent );
|
|
}
|
|
|
|
Size Outliner::CalcTextSize()
|
|
{
|
|
return Size(pEditEngine->CalcTextWidth(),pEditEngine->GetTextHeight());
|
|
}
|
|
|
|
void Outliner::SetStyleSheetPool( SfxStyleSheetPool* pSPool )
|
|
{
|
|
pEditEngine->SetStyleSheetPool( pSPool );
|
|
}
|
|
|
|
SfxStyleSheetPool* Outliner::GetStyleSheetPool()
|
|
{
|
|
return pEditEngine->GetStyleSheetPool();
|
|
}
|
|
|
|
SfxStyleSheet* Outliner::GetStyleSheet( sal_Int32 nPara )
|
|
{
|
|
return pEditEngine->GetStyleSheet( nPara );
|
|
}
|
|
|
|
bool Outliner::IsInSelectionMode() const
|
|
{
|
|
return pEditEngine->IsInSelectionMode();
|
|
}
|
|
|
|
void Outliner::SetControlWord( EEControlBits nWord )
|
|
{
|
|
pEditEngine->SetControlWord( nWord );
|
|
}
|
|
|
|
EEControlBits Outliner::GetControlWord() const
|
|
{
|
|
return pEditEngine->GetControlWord();
|
|
}
|
|
|
|
void Outliner::SetAsianCompressionMode( CharCompressType n )
|
|
{
|
|
pEditEngine->SetAsianCompressionMode( n );
|
|
}
|
|
|
|
void Outliner::SetKernAsianPunctuation( bool b )
|
|
{
|
|
pEditEngine->SetKernAsianPunctuation( b );
|
|
}
|
|
|
|
void Outliner::SetAddExtLeading( bool bExtLeading )
|
|
{
|
|
pEditEngine->SetAddExtLeading( bExtLeading );
|
|
}
|
|
|
|
void Outliner::UndoActionStart( sal_uInt16 nId )
|
|
{
|
|
pEditEngine->UndoActionStart( nId );
|
|
}
|
|
|
|
void Outliner::UndoActionEnd()
|
|
{
|
|
pEditEngine->UndoActionEnd();
|
|
}
|
|
|
|
void Outliner::InsertUndo( std::unique_ptr<EditUndo> pUndo )
|
|
{
|
|
pEditEngine->GetUndoManager().AddUndoAction( std::move(pUndo) );
|
|
}
|
|
|
|
bool Outliner::IsInUndo() const
|
|
{
|
|
return pEditEngine->IsInUndo();
|
|
}
|
|
|
|
sal_uInt32 Outliner::GetLineCount( sal_Int32 nParagraph ) const
|
|
{
|
|
return pEditEngine->GetLineCount( nParagraph );
|
|
}
|
|
|
|
sal_Int32 Outliner::GetLineLen( sal_Int32 nParagraph, sal_Int32 nLine ) const
|
|
{
|
|
return pEditEngine->GetLineLen( nParagraph, nLine );
|
|
}
|
|
|
|
sal_uInt32 Outliner::GetLineHeight( sal_Int32 nParagraph )
|
|
{
|
|
return pEditEngine->GetLineHeight( nParagraph );
|
|
}
|
|
|
|
void Outliner::RemoveCharAttribs( sal_Int32 nPara, sal_uInt16 nWhich )
|
|
{
|
|
pEditEngine->RemoveCharAttribs( nPara, nWhich );
|
|
}
|
|
|
|
EESpellState Outliner::HasSpellErrors()
|
|
{
|
|
return pEditEngine->HasSpellErrors();
|
|
}
|
|
|
|
bool Outliner::HasConvertibleTextPortion( LanguageType nLang )
|
|
{
|
|
return pEditEngine->HasConvertibleTextPortion( nLang );
|
|
}
|
|
|
|
bool Outliner::ConvertNextDocument()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
void Outliner::SetDefaultLanguage( LanguageType eLang )
|
|
{
|
|
pEditEngine->SetDefaultLanguage( eLang );
|
|
}
|
|
|
|
void Outliner::CompleteOnlineSpelling()
|
|
{
|
|
pEditEngine->CompleteOnlineSpelling();
|
|
}
|
|
|
|
bool Outliner::HasText( const SvxSearchItem& rSearchItem )
|
|
{
|
|
return pEditEngine->HasText( rSearchItem );
|
|
}
|
|
|
|
void Outliner::SetEditTextObjectPool( SfxItemPool* pPool )
|
|
{
|
|
pEditEngine->SetEditTextObjectPool( pPool );
|
|
}
|
|
|
|
SfxItemPool* Outliner::GetEditTextObjectPool() const
|
|
{
|
|
return pEditEngine->GetEditTextObjectPool();
|
|
}
|
|
|
|
bool Outliner::SpellNextDocument()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
|
|
void Outliner::SetSpeller( Reference< XSpellChecker1 > const &xSpeller )
|
|
{
|
|
pEditEngine->SetSpeller( xSpeller );
|
|
}
|
|
|
|
Reference< XSpellChecker1 > const & Outliner::GetSpeller()
|
|
{
|
|
return pEditEngine->GetSpeller();
|
|
}
|
|
|
|
void Outliner::SetForbiddenCharsTable(const std::shared_ptr<SvxForbiddenCharactersTable>& xForbiddenChars)
|
|
{
|
|
EditEngine::SetForbiddenCharsTable(xForbiddenChars);
|
|
}
|
|
|
|
void Outliner::SetHyphenator( Reference< XHyphenator > const & xHyph )
|
|
{
|
|
pEditEngine->SetHyphenator( xHyph );
|
|
}
|
|
|
|
OutputDevice* Outliner::GetRefDevice() const
|
|
{
|
|
return pEditEngine->GetRefDevice();
|
|
}
|
|
|
|
tools::Rectangle Outliner::GetParaBounds( sal_Int32 nParagraph ) const
|
|
{
|
|
return pEditEngine->GetParaBounds(nParagraph );
|
|
}
|
|
|
|
Point Outliner::GetDocPos( const Point& rPaperPos ) const
|
|
{
|
|
return pEditEngine->GetDocPos( rPaperPos );
|
|
}
|
|
|
|
bool Outliner::IsTextPos( const Point& rPaperPos, sal_uInt16 nBorder )
|
|
{
|
|
return IsTextPos( rPaperPos, nBorder, nullptr );
|
|
}
|
|
|
|
bool Outliner::IsTextPos( const Point& rPaperPos, sal_uInt16 nBorder, bool* pbBullet )
|
|
{
|
|
if ( pbBullet)
|
|
*pbBullet = false;
|
|
bool bTextPos = pEditEngine->IsTextPos( rPaperPos, nBorder );
|
|
if ( !bTextPos )
|
|
{
|
|
Point aDocPos = GetDocPos( rPaperPos );
|
|
sal_Int32 nPara = pEditEngine->FindParagraph( aDocPos.Y() );
|
|
if ( ( nPara != EE_PARA_NOT_FOUND ) && ImplHasNumberFormat( nPara ) )
|
|
{
|
|
tools::Rectangle aBulArea = ImpCalcBulletArea( nPara, true, true );
|
|
if ( aBulArea.Contains( rPaperPos ) )
|
|
{
|
|
bTextPos = true;
|
|
if ( pbBullet)
|
|
*pbBullet = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
return bTextPos;
|
|
}
|
|
|
|
void Outliner::QuickSetAttribs( const SfxItemSet& rSet, const ESelection& rSel )
|
|
{
|
|
pEditEngine->QuickSetAttribs( rSet, rSel );
|
|
}
|
|
|
|
void Outliner::QuickInsertText( const OUString& 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 )
|
|
{
|
|
bFirstParaIsEmpty = false;
|
|
pEditEngine->QuickInsertField( rFld, rSel );
|
|
}
|
|
|
|
void Outliner::QuickInsertLineBreak( const ESelection& rSel )
|
|
{
|
|
bFirstParaIsEmpty = false;
|
|
pEditEngine->QuickInsertLineBreak( rSel );
|
|
}
|
|
|
|
void Outliner::QuickFormatDoc()
|
|
{
|
|
pEditEngine->QuickFormatDoc();
|
|
}
|
|
|
|
const ScalingParameters & Outliner::getScalingParameters() const
|
|
{
|
|
return pEditEngine->getScalingParameters();
|
|
}
|
|
|
|
void Outliner::setScalingParameters(ScalingParameters const& rScalingParameters)
|
|
{
|
|
// reset bullet size
|
|
sal_Int32 nParagraphs = pParaList->GetParagraphCount();
|
|
for ( sal_Int32 nPara = 0; nPara < nParagraphs; nPara++ )
|
|
{
|
|
Paragraph* pPara = pParaList->GetParagraph( nPara );
|
|
if ( pPara )
|
|
pPara->aBulSize.setWidth( -1 );
|
|
}
|
|
|
|
pEditEngine->setScalingParameters(rScalingParameters);
|
|
}
|
|
|
|
void Outliner::setRoundFontSizeToPt(bool bRound) const
|
|
{
|
|
pEditEngine->setRoundFontSizeToPt(bRound);
|
|
}
|
|
|
|
void Outliner::EraseVirtualDevice()
|
|
{
|
|
pEditEngine->EraseVirtualDevice();
|
|
}
|
|
|
|
bool Outliner::ShouldCreateBigTextObject() const
|
|
{
|
|
return pEditEngine->ShouldCreateBigTextObject();
|
|
}
|
|
|
|
const EditEngine& Outliner::GetEditEngine() const
|
|
{
|
|
return *pEditEngine;
|
|
}
|
|
|
|
void Outliner::SetVertical(bool bVertical)
|
|
{
|
|
pEditEngine->SetVertical(bVertical);
|
|
}
|
|
|
|
void Outliner::SetRotation(TextRotation nRotation)
|
|
{
|
|
pEditEngine->SetRotation(nRotation);
|
|
}
|
|
|
|
bool Outliner::IsVertical() const
|
|
{
|
|
return pEditEngine->IsEffectivelyVertical();
|
|
}
|
|
|
|
bool Outliner::IsTopToBottom() const
|
|
{
|
|
return pEditEngine->IsTopToBottom();
|
|
}
|
|
|
|
void Outliner::SetTextColumns(sal_Int16 nColumns, sal_Int32 nSpacing)
|
|
{
|
|
pEditEngine->SetTextColumns(nColumns, nSpacing);
|
|
}
|
|
|
|
void Outliner::SetFixedCellHeight( bool bUseFixedCellHeight )
|
|
{
|
|
pEditEngine->SetFixedCellHeight( bUseFixedCellHeight );
|
|
}
|
|
|
|
void Outliner::SetDefaultHorizontalTextDirection( EEHorizontalTextDirection eHTextDir )
|
|
{
|
|
pEditEngine->SetDefaultHorizontalTextDirection( eHTextDir );
|
|
}
|
|
|
|
EEHorizontalTextDirection Outliner::GetDefaultHorizontalTextDirection() const
|
|
{
|
|
return pEditEngine->GetDefaultHorizontalTextDirection();
|
|
}
|
|
|
|
LanguageType Outliner::GetLanguage( sal_Int32 nPara, sal_Int32 nPos ) const
|
|
{
|
|
return pEditEngine->GetLanguage( nPara, nPos ).nLang;
|
|
}
|
|
|
|
void Outliner::RemoveAttribs( const ESelection& rSelection, bool bRemoveParaAttribs, sal_uInt16 nWhich )
|
|
{
|
|
pEditEngine->RemoveAttribs( rSelection, bRemoveParaAttribs, nWhich );
|
|
}
|
|
|
|
void Outliner::EnableAutoColor( bool b )
|
|
{
|
|
pEditEngine->EnableAutoColor( b );
|
|
}
|
|
|
|
void Outliner::ForceAutoColor( bool b )
|
|
{
|
|
pEditEngine->ForceAutoColor( b );
|
|
}
|
|
|
|
bool Outliner::IsForceAutoColor() const
|
|
{
|
|
return pEditEngine->IsForceAutoColor();
|
|
}
|
|
|
|
bool Outliner::SpellSentence(EditView const & rEditView, svx::SpellPortions& rToFill )
|
|
{
|
|
return pEditEngine->SpellSentence(rEditView, rToFill );
|
|
}
|
|
|
|
void Outliner::PutSpellingToSentenceStart( EditView const & rEditView )
|
|
{
|
|
pEditEngine->PutSpellingToSentenceStart( rEditView );
|
|
}
|
|
|
|
void Outliner::ApplyChangedSentence(EditView const & rEditView, const svx::SpellPortions& rNewPortions, bool bRecheck )
|
|
{
|
|
pEditEngine->ApplyChangedSentence( rEditView, rNewPortions, bRecheck );
|
|
}
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|