1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 _SWSCANNER_HXX
21 #define _SWSCANNER_HXX
23 #include <i18nlangtag/lang.h>
24 #include <modeltoviewhelper.hxx>
28 /*************************************************************************
30 * Helper class that provides consecutively the words of a selected area
32 *************************************************************************/
37 const SwTxtNode
& rNode
;
38 const OUString aPreDashReplacementText
;
40 const LanguageType
* pLanguage
;
41 const ModelToViewHelper rConversionMap
;
46 sal_Int32 nOverriddenDashCount
;
47 LanguageType aCurrLang
;
52 SwScanner( const SwTxtNode
& rNd
, const OUString
& rTxt
,
53 const LanguageType
* pLang
,
54 const ModelToViewHelper
& rConvMap
,
56 sal_Int32 nStart
, sal_Int32 nEnde
, sal_Bool bClip
= sal_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
64 const OUString
& GetWord() const { return aWord
; }
66 sal_Int32
GetBegin() const { return nBegin
; }
67 sal_Int32
GetEnd() const { return nBegin
+ nLen
; }
68 sal_Int32
GetLen() const { return nLen
; }
70 LanguageType
GetCurrentLanguage() const {return aCurrLang
;}
72 sal_Int32
getOverriddenDashCount() const {return nOverriddenDashCount
; }
77 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */