1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
|
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
************************************************************************/
#ifndef _SVX_SPLWRAP_HXX
#define _SVX_SPLWRAP_HXX
// include ---------------------------------------------------------------
#include <svx/svxenum.hxx>
#include <tools/string.hxx>
#include <com/sun/star/uno/Reference.hxx>
#include "svx/svxdllapi.h"
// forward ---------------------------------------------------------------
namespace com { namespace sun { namespace star { namespace linguistic2 {
class XDictionary;
class XSpellChecker1;
class XHyphenator;
}}}}
class Window;
// misc functions ---------------------------------------------------------------
void SVX_DLLPUBLIC SvxPrepareAutoCorrect( String &rOldText, String &rNewText );
/*--------------------------------------------------------------------
Beschreibung: Der SpellWrapper
--------------------------------------------------------------------*/
class SVX_DLLPUBLIC SvxSpellWrapper {
private:
friend class SvxSpellCheckDialog;
friend class SvxHyphenWordDialog;
Window* pWin;
::com::sun::star::uno::Reference<
::com::sun::star::uno::XInterface > xLast; // result of last spelling/hyphenation attempt
::com::sun::star::uno::Reference<
::com::sun::star::linguistic2::XSpellChecker1 > xSpell;
::com::sun::star::uno::Reference<
::com::sun::star::linguistic2::XHyphenator > xHyph;
sal_uInt16 nOldLang; // Sprache merken, nur bei Aenderung SetLanguage rufen
sal_Bool bOtherCntnt : 1; // gesetzt => Sonderbereiche zunaechst pruefen
sal_Bool bDialog : 1; // Ist pWin der Svx...Dialog?
sal_Bool bHyphen : 1; // Trennen statt Spellen
sal_Bool bAuto : 1; // Autokorrektur vorhanden?
sal_Bool bReverse : 1; // Rueckwaerts Spellen
sal_Bool bStartDone : 1; // Vorderen Teil bereits korrigiert
sal_Bool bEndDone : 1; // Hinteren Teil bereits korrigiert
sal_Bool bStartChk : 1; // Vorderen Teil pruefen
sal_Bool bRevAllowed : 1; // Niemals rueckwaerts spellen
sal_Bool bAllRight : 1; // falsche Woerter in geignetes Woerterbuch
// aufnehmen und nicht den Dialog starten.
SVX_DLLPRIVATE sal_Bool SpellNext(); // naechsten Bereich anwaehlen
SVX_DLLPRIVATE sal_Bool FindSpellError(); // Suche nach Fehlern ( ueber Bereiche hinweg )
public:
SvxSpellWrapper( Window* pWn,
::com::sun::star::uno::Reference<
::com::sun::star::linguistic2::XSpellChecker1 > &xSpellChecker,
const sal_Bool bStart = sal_False, const sal_Bool bIsAllRight = sal_False,
const sal_Bool bOther = sal_False, const sal_Bool bRevAllow = sal_True );
SvxSpellWrapper( Window* pWn,
::com::sun::star::uno::Reference<
::com::sun::star::linguistic2::XHyphenator > &xHyphenator,
const sal_Bool bStart = sal_False, const sal_Bool bOther = sal_False );
virtual ~SvxSpellWrapper();
static sal_Int16 CheckSpellLang(
::com::sun::star::uno::Reference<
::com::sun::star::linguistic2::XSpellChecker1 > xSpell,
sal_Int16 nLang );
static sal_Int16 CheckHyphLang(
::com::sun::star::uno::Reference<
::com::sun::star::linguistic2::XHyphenator > xHyph,
sal_Int16 nLang );
static void ShowLanguageErrors();
void SpellDocument(); // Rechtschreibpruefung durchfuehren
inline sal_Bool IsStartDone(){ return bStartDone; }
inline sal_Bool IsEndDone(){ return bEndDone; }
inline sal_Bool IsReverse(){ return bReverse; }
inline sal_Bool IsDialog(){ return bDialog; } // SvxSpellCheckDialog OnScreen
inline sal_Bool IsHyphen(){ return bHyphen; } // Trennen statt Spellen
inline void SetHyphen( const sal_Bool bNew = sal_True ){ bHyphen = bNew; }
inline ::com::sun::star::uno::Reference<
::com::sun::star::linguistic2::XSpellChecker1 >
GetXSpellChecker() { return xSpell; }
inline ::com::sun::star::uno::Reference<
::com::sun::star::linguistic2::XHyphenator >
GetXHyphenator() { return xHyph; }
inline sal_Bool IsAllRight() { return bAllRight; }
inline Window* GetWin() { return pWin; }
// kann evtl entfallen in ONE_LINGU:
inline void SetOldLang( const sal_uInt16 nNew ){ nOldLang = nNew; }
// kann evtl entfallen in ONE_LINGU:
inline void ChangeLanguage( const sal_uInt16 nNew ) // rufe ggf. SetLanguage
{ if ( nNew != nOldLang ) { SetLanguage( nNew ); nOldLang = nNew; } }
inline void EnableAutoCorrect() { bAuto = sal_True; }
protected:
::com::sun::star::uno::Reference<
::com::sun::star::uno::XInterface >
GetLast() { return xLast; }
void SetLast(const ::com::sun::star::uno::Reference<
::com::sun::star::uno::XInterface > &xNewLast)
{ xLast = xNewLast; }
virtual sal_Bool SpellMore(); // weitere Dokumente pruefen?
virtual sal_Bool HasOtherCnt(); // gibt es ueberhaupt Sonderbereiche
virtual void SpellStart( SvxSpellArea eSpell ); // Bereich vorbereiten
virtual sal_Bool SpellContinue(); // Bereich pruefen
// Ergebnis mit GetLast verfuegbar
virtual void ReplaceAll( const String &rNewText, sal_Int16 nLanguage ); // Wort aus Replace-Liste ersetzen
virtual void StartThesaurus( const String &rWord, sal_uInt16 nLang ); // Thesaurus starten
virtual ::com::sun::star::uno::Reference<
::com::sun::star::linguistic2::XDictionary >
GetAllRightDic() const;
virtual void SpellEnd(); // Bereich abschliessen
virtual void ScrollArea(); // ScrollArea einstellen
// Wort ersetzen
virtual void ChangeWord( const String& rNewWord, const sal_uInt16 nLang );
virtual String GetThesWord();
// Wort via Thesaurus ersetzen
virtual void ChangeThesWord( const String& rNewWord );
virtual void SetLanguage( const sal_uInt16 nLang ); // Sprache aendern
virtual void AutoCorrect( const String& rAktStr, const String& rNewStr );
virtual void InsertHyphen( const sal_uInt16 nPos ); // Hyphen einfuegen
};
#endif
|