LibreOffice Module sw (master) 1
swscanner.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 */
19
20#ifndef INCLUDED_SW_INC_SWSCANNER_HXX
21#define INCLUDED_SW_INC_SWSCANNER_HXX
22
23#include <i18nlangtag/lang.h>
24#include "modeltoviewhelper.hxx"
25
26#include <functional>
27
28class SwTextNode;
29
30// Helper class that provides consecutively the words of a selected area
31// during spell check
33{
34 std::function<LanguageType (sal_Int32, sal_Int32, bool)> m_pGetLangOfChar;
35 OUString m_aWord;
36 OUString m_aPrevWord;
38 OUString m_aText;
41 sal_Int32 m_nStartPos;
42 sal_Int32 m_nEndPos;
43 sal_Int32 m_nBegin;
44 sal_Int32 m_nLength;
47 sal_uInt16 m_nWordType;
48 bool m_bClip;
49
50public:
51 SwScanner(std::function<LanguageType(sal_Int32, sal_Int32, bool)> pGetLangOfChar,
52 OUString aText, const LanguageType* pLang, ModelToViewHelper aConvMap,
53 sal_uInt16 nWordType, sal_Int32 nStart, sal_Int32 nEnd, bool bClip = false);
54 SwScanner( const SwTextNode& rNd, const OUString& rText,
55 const LanguageType* pLang,
56 const ModelToViewHelper& rConvMap,
57 sal_uInt16 nWordType,
58 sal_Int32 nStart, sal_Int32 nEnd, bool bClip = false );
59
60 // This next word function tries to find the language for the next word
61 // It should currently _not_ be used for spell checking, and works only for
62 // ! bReverse
63 bool NextWord();
64
65 const OUString& GetWord() const { return m_aWord; }
66 const OUString& GetPrevWord() const { return m_aPrevWord; }
67
68 sal_Int32 GetBegin() const { return m_nBegin; }
69 sal_Int32 GetEnd() const { return m_nBegin + m_nLength; }
70 sal_Int32 GetLen() const { return m_nLength; }
71
73
75};
76
77#endif
78
79/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
const LanguageType * m_pLanguage
Definition: swscanner.hxx:39
sal_uInt16 m_nWordType
Definition: swscanner.hxx:47
sal_Int32 m_nLength
Definition: swscanner.hxx:44
const ModelToViewHelper m_ModelToView
Definition: swscanner.hxx:40
bool m_bClip
Definition: swscanner.hxx:48
const OUString m_aPreDashReplacementText
Definition: swscanner.hxx:37
LanguageType m_aCurrentLang
Definition: swscanner.hxx:46
sal_Int32 m_nEndPos
Definition: swscanner.hxx:42
sal_Int32 GetBegin() const
Definition: swscanner.hxx:68
OUString m_aText
Definition: swscanner.hxx:38
sal_Int32 GetLen() const
Definition: swscanner.hxx:70
const OUString & GetWord() const
Definition: swscanner.hxx:65
OUString m_aPrevWord
Definition: swscanner.hxx:36
sal_Int32 getOverriddenDashCount() const
Definition: swscanner.hxx:74
sal_Int32 m_nStartPos
Definition: swscanner.hxx:41
sal_Int32 GetEnd() const
Definition: swscanner.hxx:69
std::function< LanguageType(sal_Int32, sal_Int32, bool)> m_pGetLangOfChar
Definition: swscanner.hxx:34
sal_Int32 m_nBegin
Definition: swscanner.hxx:43
OUString m_aWord
Definition: swscanner.hxx:35
bool NextWord()
Definition: txtedt.cxx:831
SwScanner(std::function< LanguageType(sal_Int32, sal_Int32, bool)> pGetLangOfChar, OUString aText, const LanguageType *pLang, ModelToViewHelper aConvMap, sal_uInt16 nWordType, sal_Int32 nStart, sal_Int32 nEnd, bool bClip=false)
Definition: txtedt.cxx:738
sal_Int32 m_nOverriddenDashCount
Definition: swscanner.hxx:45
const OUString & GetPrevWord() const
Definition: swscanner.hxx:66
LanguageType GetCurrentLanguage() const
Definition: swscanner.hxx:72
SwTextNode is a paragraph in the document model.
Definition: ndtxt.hxx:112