forked from amazingfate/loongoffice
Enhanced EditEngine to be able to hold more than 64k paragraphs. Used
also in RTF import Calc and Writer, so that could benefit as well.
* changed all EditEngine,Outliner,... related paragraph index/count
variables from sal_uInt16 to sal_Int32
* sal_Int32 instead of sal_uInt32 to match accessibility API
* matched some Outliner methods' paragraph parameters from sal_uLong
to sal_Int32
* containers capable to hold size_t nevertheless are limited to a
maximum of sal_Int32
* changed definition of EE_PARA_NOT_FOUND and EE_PARA_ALL to
SAL_MAX_INT32
+ added EE_PARA_MAX_COUNT and EE_TEXTPOS_MAX_COUNT to initialize
ESelection with what previously were hard coded 0xFFFF all over the
place
+ for similar reason added EE_TEXTPOS_ALL corresponding to EE_PARA_ALL
to initialize an ESelection spanning all available text like
aSel(0,0,EE_PARA_ALL,EE_TEXTPOS_ALL)
Change-Id: I62d1b9c399cd709a4f93dbac31b219a61c46ec00
Reviewed-on: https://gerrit.libreoffice.org/3838
Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org>
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Eike Rathke <erack@redhat.com>
94 lines
4.9 KiB
C++
94 lines
4.9 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 .
|
|
*/
|
|
|
|
#ifndef _SVX_UNOFORED_HXX
|
|
#define _SVX_UNOFORED_HXX
|
|
|
|
#include <editeng/editeng.hxx>
|
|
#include <editeng/unoedsrc.hxx>
|
|
#include "editeng/editengdllapi.h"
|
|
|
|
// SvxEditEngineForwarder - SvxTextForwarder for EditEngine
|
|
|
|
class EDITENG_DLLPUBLIC SvxEditEngineForwarder : public SvxTextForwarder
|
|
{
|
|
private:
|
|
EditEngine& rEditEngine;
|
|
|
|
public:
|
|
SvxEditEngineForwarder( EditEngine& rEngine );
|
|
virtual ~SvxEditEngineForwarder();
|
|
|
|
virtual sal_Int32 GetParagraphCount() const;
|
|
virtual sal_uInt16 GetTextLen( sal_Int32 nParagraph ) const;
|
|
virtual String GetText( const ESelection& rSel ) const;
|
|
virtual SfxItemSet GetAttribs( const ESelection& rSel, sal_Bool bOnlyHardAttrib = EditEngineAttribs_All ) const;
|
|
virtual SfxItemSet GetParaAttribs( sal_Int32 nPara ) const;
|
|
virtual void SetParaAttribs( sal_Int32 nPara, const SfxItemSet& rSet );
|
|
virtual void RemoveAttribs( const ESelection& rSelection, sal_Bool bRemoveParaAttribs, sal_uInt16 nWhich );
|
|
virtual void GetPortions( sal_Int32 nPara, std::vector<sal_uInt16>& rList ) const;
|
|
|
|
virtual sal_uInt16 GetItemState( const ESelection& rSel, sal_uInt16 nWhich ) const;
|
|
virtual sal_uInt16 GetItemState( sal_Int32 nPara, sal_uInt16 nWhich ) const;
|
|
|
|
virtual void QuickInsertText( const String& rText, const ESelection& rSel );
|
|
virtual void QuickInsertField( const SvxFieldItem& rFld, const ESelection& rSel );
|
|
virtual void QuickSetAttribs( const SfxItemSet& rSet, const ESelection& rSel );
|
|
virtual void QuickInsertLineBreak( const ESelection& rSel );
|
|
|
|
virtual SfxItemPool* GetPool() const;
|
|
|
|
virtual OUString CalcFieldValue( const SvxFieldItem& rField, sal_Int32 nPara, sal_uInt16 nPos, Color*& rpTxtColor, Color*& rpFldColor );
|
|
virtual void FieldClicked( const SvxFieldItem& rField, sal_Int32 nPara, xub_StrLen nPos );
|
|
virtual sal_Bool IsValid() const;
|
|
|
|
virtual LanguageType GetLanguage( sal_Int32, sal_uInt16 ) const;
|
|
virtual sal_uInt16 GetFieldCount( sal_Int32 nPara ) const;
|
|
virtual EFieldInfo GetFieldInfo( sal_Int32 nPara, sal_uInt16 nField ) const;
|
|
virtual EBulletInfo GetBulletInfo( sal_Int32 nPara ) const;
|
|
virtual Rectangle GetCharBounds( sal_Int32 nPara, sal_uInt16 nIndex ) const;
|
|
virtual Rectangle GetParaBounds( sal_Int32 nPara ) const;
|
|
virtual MapMode GetMapMode() const;
|
|
virtual OutputDevice* GetRefDevice() const;
|
|
virtual sal_Bool GetIndexAtPoint( const Point&, sal_Int32& nPara, sal_uInt16& nIndex ) const;
|
|
virtual sal_Bool GetWordIndices( sal_Int32 nPara, sal_uInt16 nIndex, sal_uInt16& nStart, sal_uInt16& nEnd ) const;
|
|
virtual sal_Bool GetAttributeRun( sal_uInt16& nStartIndex, sal_uInt16& nEndIndex, sal_Int32 nPara, sal_uInt16 nIndex ) const;
|
|
virtual sal_uInt16 GetLineCount( sal_Int32 nPara ) const;
|
|
virtual sal_uInt16 GetLineLen( sal_Int32 nPara, sal_uInt16 nLine ) const;
|
|
virtual void GetLineBoundaries( /*out*/sal_uInt16 &rStart, /*out*/sal_uInt16 &rEnd, sal_Int32 nParagraph, sal_uInt16 nLine ) const;
|
|
virtual sal_uInt16 GetLineNumberAtIndex( sal_Int32 nPara, sal_uInt16 nIndex ) const;
|
|
virtual sal_Bool Delete( const ESelection& );
|
|
virtual sal_Bool InsertText( const String&, const ESelection& );
|
|
virtual sal_Bool QuickFormatDoc( sal_Bool bFull=sal_False );
|
|
virtual sal_Int16 GetDepth( sal_Int32 nPara ) const;
|
|
virtual sal_Bool SetDepth( sal_Int32 nPara, sal_Int16 nNewDepth );
|
|
|
|
virtual const SfxItemSet* GetEmptyItemSetPtr();
|
|
|
|
// implementation functions for XParagraphAppend and XTextPortionAppend
|
|
virtual void AppendParagraph();
|
|
virtual xub_StrLen AppendTextPortion( sal_Int32 nPara, const String &rText, const SfxItemSet &rSet );
|
|
//XTextCopy
|
|
virtual void CopyText(const SvxTextForwarder& rSource);
|
|
};
|
|
|
|
#endif
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|