lok: Hide file linking in section
[LibreOffice.git] / sw / inc / swscanner.hxx
blob05115ed10b27211961632be377e4b739fb5f96fa
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #ifndef INCLUDED_SW_INC_SWSCANNER_HXX
21 #define INCLUDED_SW_INC_SWSCANNER_HXX
23 #include <i18nlangtag/lang.h>
24 #include "modeltoviewhelper.hxx"
26 #include <functional>
28 class SwTextNode;
30 // Helper class that provides consecutively the words of a selected area
31 // during spell check
32 class SwScanner
34 std::function<LanguageType (sal_Int32, sal_Int32, bool)> const m_pGetLangOfChar;
35 OUString m_aWord;
36 const OUString m_aPreDashReplacementText;
37 OUString m_aText;
38 const LanguageType* m_pLanguage;
39 const ModelToViewHelper m_ModelToView;
40 sal_Int32 m_nStartPos;
41 sal_Int32 m_nEndPos;
42 sal_Int32 m_nBegin;
43 sal_Int32 m_nLength;
44 sal_Int32 m_nOverriddenDashCount;
45 LanguageType m_aCurrentLang;
46 sal_uInt16 const m_nWordType;
47 bool const m_bClip;
49 public:
50 SwScanner(const std::function<LanguageType(sal_Int32, sal_Int32, bool)>& pGetLangOfChar,
51 const OUString& rText, const LanguageType* pLang, const ModelToViewHelper& rConvMap,
52 sal_uInt16 nWordType, sal_Int32 nStart, sal_Int32 nEnde, bool bClip = false);
53 SwScanner( const SwTextNode& rNd, const OUString& rText,
54 const LanguageType* pLang,
55 const ModelToViewHelper& rConvMap,
56 sal_uInt16 nWordType,
57 sal_Int32 nStart, sal_Int32 nEnde, bool bClip = false );
59 // This next word function tries to find the language for the next word
60 // It should currently _not_ be used for spell checking, and works only for
61 // ! bReverse
62 bool NextWord();
64 const OUString& GetWord() const { return m_aWord; }
66 sal_Int32 GetBegin() const { return m_nBegin; }
67 sal_Int32 GetEnd() const { return m_nBegin + m_nLength; }
68 sal_Int32 GetLen() const { return m_nLength; }
70 LanguageType GetCurrentLanguage() const {return m_aCurrentLang;}
72 sal_Int32 getOverriddenDashCount() const {return m_nOverriddenDashCount; }
75 #endif
77 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */