66253cace2
This commit was carried out by a Python script, source of which is at https://bugs.documentfoundation.org/show_bug.cgi?id=124176#c97. Change-Id: Ib435cc551e1fa301bf4ee3e796241e6b9219dc87 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/102576 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
143 lines
4.8 KiB
C++
143 lines
4.8 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 .
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <editeng/splwrap.hxx>
|
|
#include <editeng/svxacorr.hxx>
|
|
#include <editeng/svxenum.hxx>
|
|
#include <editeng/misspellrange.hxx>
|
|
|
|
namespace com::sun::star::linguistic2 {
|
|
class XSpellChecker1;
|
|
}
|
|
|
|
|
|
class EditView;
|
|
class EditEngine;
|
|
class ContentNode;
|
|
|
|
class EditSpellWrapper final : public SvxSpellWrapper
|
|
{
|
|
private:
|
|
EditView* pEditView;
|
|
void CheckSpellTo();
|
|
|
|
virtual void SpellStart( SvxSpellArea eArea ) override;
|
|
virtual void SpellContinue() override; // Check area
|
|
virtual void ReplaceAll( const OUString &rNewText ) override;
|
|
virtual bool SpellMore() override;
|
|
|
|
public:
|
|
EditSpellWrapper(weld::Window* pWin, bool bIsStart, EditView* pView);
|
|
};
|
|
|
|
/**
|
|
* Keeps track of misspelled ranges in paragraph.
|
|
*/
|
|
class WrongList
|
|
{
|
|
static constexpr size_t Valid = std::numeric_limits<size_t>::max();
|
|
|
|
std::vector<editeng::MisspellRange> maRanges;
|
|
size_t mnInvalidStart;
|
|
size_t mnInvalidEnd;
|
|
|
|
bool DbgIsBuggy() const;
|
|
|
|
public:
|
|
typedef std::vector<editeng::MisspellRange>::iterator iterator;
|
|
typedef std::vector<editeng::MisspellRange>::const_iterator const_iterator;
|
|
|
|
WrongList();
|
|
|
|
const std::vector<editeng::MisspellRange>& GetRanges() const { return maRanges;}
|
|
void SetRanges( const std::vector<editeng::MisspellRange>& rRanges );
|
|
|
|
bool IsValid() const;
|
|
void SetValid();
|
|
void SetInvalidRange( size_t nStart, size_t nEnd );
|
|
void ResetInvalidRange( size_t nStart, size_t nEnd );
|
|
|
|
size_t GetInvalidStart() const { return mnInvalidStart; }
|
|
size_t GetInvalidEnd() const { return mnInvalidEnd; }
|
|
|
|
void TextInserted( size_t nPos, size_t nLength, bool bPosIsSep );
|
|
void TextDeleted( size_t nPos, size_t nLength );
|
|
|
|
void InsertWrong( size_t nStart, size_t nEnd );
|
|
bool NextWrong( size_t& rnStart, size_t& rnEnd ) const;
|
|
bool HasWrong( size_t nStart, size_t nEnd ) const;
|
|
bool HasAnyWrong( size_t nStart, size_t nEnd ) const;
|
|
void ClearWrongs( size_t nStart, size_t nEnd, const ContentNode* pNode );
|
|
void MarkWrongsInvalid();
|
|
|
|
WrongList* Clone() const;
|
|
|
|
// #i102062#
|
|
bool operator==(const WrongList& rCompare) const;
|
|
|
|
bool empty() const;
|
|
void push_back(const editeng::MisspellRange& rRange);
|
|
editeng::MisspellRange& back();
|
|
const editeng::MisspellRange& back() const;
|
|
|
|
iterator begin();
|
|
iterator end();
|
|
const_iterator begin() const;
|
|
const_iterator end() const;
|
|
};
|
|
|
|
class EdtAutoCorrDoc final : public SvxAutoCorrDoc
|
|
{
|
|
EditEngine* mpEditEngine;
|
|
ContentNode* pCurNode;
|
|
sal_Int32 nCursor;
|
|
|
|
bool bAllowUndoAction;
|
|
bool bUndoAction;
|
|
|
|
void ImplStartUndoAction();
|
|
|
|
public:
|
|
EdtAutoCorrDoc(EditEngine* pE, ContentNode* pCurNode, sal_Int32 nCrsr, sal_Unicode cIns);
|
|
virtual ~EdtAutoCorrDoc() override;
|
|
|
|
virtual bool Delete( sal_Int32 nStt, sal_Int32 nEnd ) override;
|
|
virtual bool Insert( sal_Int32 nPos, const OUString& rTxt ) override;
|
|
virtual bool Replace( sal_Int32 nPos, const OUString& rTxt ) override;
|
|
virtual bool ReplaceRange( sal_Int32 nPos, sal_Int32 nLen, const OUString& rTxt ) override;
|
|
|
|
virtual void SetAttr( sal_Int32 nStt, sal_Int32 nEnd, sal_uInt16 nSlotId, SfxPoolItem& ) override;
|
|
virtual bool SetINetAttr( sal_Int32 nStt, sal_Int32 nEnd, const OUString& rURL ) override;
|
|
|
|
virtual OUString const* GetPrevPara(bool bAtNormalPos) override;
|
|
|
|
virtual bool ChgAutoCorrWord( sal_Int32& rSttPos, sal_Int32 nEndPos,
|
|
SvxAutoCorrect& rACorrect, OUString* pPara ) override;
|
|
virtual bool TransliterateRTLWord( sal_Int32& rSttPos, sal_Int32 nEndPos ) override;
|
|
|
|
|
|
virtual LanguageType GetLanguage( sal_Int32 nPos ) const override;
|
|
|
|
sal_Int32 GetCursor() const { return nCursor; }
|
|
|
|
};
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|