/* -*- 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 #include #include #include 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::Widget* pWin, bool bIsStart, EditView* pView); }; /** * Keeps track of misspelled ranges in paragraph. */ class WrongList { static constexpr size_t Valid = std::numeric_limits::max(); std::vector maRanges; size_t mnInvalidStart; size_t mnInvalidEnd; bool DbgIsBuggy() const; public: typedef std::vector::iterator iterator; typedef std::vector::const_iterator const_iterator; WrongList(); const std::vector& GetRanges() const { return maRanges;} void SetRanges( std::vector&& 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, bool bApply = false ) override; virtual LanguageType GetLanguage( sal_Int32 nPos ) const override; sal_Int32 GetCursor() const { return nCursor; } }; /* vim:set shiftwidth=4 softtabstop=4 expandtab: */