Line data Source code
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 : #include <vcl/xtextedt.hxx>
21 : #include <vcl/svapp.hxx>
22 : #include <vcl/settings.hxx>
23 : #include <unotools/textsearch.hxx>
24 : #include <com/sun/star/util/SearchOptions.hpp>
25 : #include <com/sun/star/util/SearchFlags.hpp>
26 :
27 : using namespace ::com::sun::star;
28 :
29 0 : ExtTextEngine::ExtTextEngine() : maGroupChars(OUString("(){}[]"))
30 : {
31 0 : }
32 :
33 0 : ExtTextEngine::~ExtTextEngine()
34 : {
35 0 : }
36 :
37 0 : TextSelection ExtTextEngine::MatchGroup( const TextPaM& rCursor ) const
38 : {
39 0 : TextSelection aSel( rCursor );
40 0 : sal_uInt16 nPos = rCursor.GetIndex();
41 0 : sal_uLong nPara = rCursor.GetPara();
42 0 : sal_uLong nParas = GetParagraphCount();
43 0 : if ( ( nPara < nParas ) && ( nPos < GetTextLen( nPara ) ) )
44 : {
45 0 : sal_Int32 nMatchIndex = maGroupChars.indexOf( GetText( rCursor.GetPara() )[ nPos ] );
46 0 : if ( nMatchIndex != -1 )
47 : {
48 0 : if ( ( nMatchIndex % 2 ) == 0 )
49 : {
50 : // search forwards
51 0 : sal_Unicode nSC = maGroupChars[ nMatchIndex ];
52 0 : sal_Unicode nEC = maGroupChars[ nMatchIndex+1 ];
53 :
54 0 : sal_uInt16 nCur = nPos+1;
55 0 : sal_uInt16 nLevel = 1;
56 0 : while ( nLevel && ( nPara < nParas ) )
57 : {
58 0 : OUString aStr = GetText( nPara );
59 0 : while ( nCur < aStr.getLength() )
60 : {
61 0 : if ( aStr[nCur] == nSC )
62 0 : nLevel++;
63 0 : else if ( aStr[nCur] == nEC )
64 : {
65 0 : nLevel--;
66 0 : if ( !nLevel )
67 0 : break; // while nCur...
68 : }
69 0 : nCur++;
70 : }
71 :
72 0 : if ( nLevel )
73 : {
74 0 : nPara++;
75 0 : nCur = 0;
76 : }
77 0 : }
78 0 : if ( nLevel == 0 ) // found
79 : {
80 0 : aSel.GetStart() = rCursor;
81 0 : aSel.GetEnd() = TextPaM( nPara, nCur+1 );
82 : }
83 : }
84 : else
85 : {
86 : // search backwards
87 0 : sal_Unicode nEC = maGroupChars[ nMatchIndex ];
88 0 : sal_Unicode nSC = maGroupChars[ nMatchIndex-1 ];
89 :
90 0 : sal_uInt16 nCur = rCursor.GetIndex()-1;
91 0 : sal_uInt16 nLevel = 1;
92 0 : while ( nLevel )
93 : {
94 0 : if ( GetTextLen( nPara ) )
95 : {
96 0 : OUString aStr = GetText( nPara );
97 0 : while ( nCur )
98 : {
99 0 : if ( aStr[nCur] == nSC )
100 : {
101 0 : nLevel--;
102 0 : if ( !nLevel )
103 0 : break; // while nCur...
104 : }
105 0 : else if ( aStr[nCur] == nEC )
106 0 : nLevel++;
107 :
108 0 : nCur--;
109 0 : }
110 : }
111 :
112 0 : if ( nLevel )
113 : {
114 0 : if ( nPara )
115 : {
116 0 : nPara--;
117 0 : nCur = GetTextLen( nPara )-1; // no matter if negativ, as if Len()
118 : }
119 : else
120 0 : break;
121 : }
122 : }
123 :
124 0 : if ( nLevel == 0 ) // found
125 : {
126 0 : aSel.GetStart() = rCursor;
127 0 : aSel.GetStart().GetIndex()++; // behind the char
128 0 : aSel.GetEnd() = TextPaM( nPara, nCur );
129 : }
130 : }
131 : }
132 : }
133 0 : return aSel;
134 : }
135 :
136 0 : bool ExtTextEngine::Search( TextSelection& rSel, const util::SearchOptions& rSearchOptions, bool bForward )
137 : {
138 0 : TextSelection aSel( rSel );
139 0 : aSel.Justify();
140 :
141 0 : bool bSearchInSelection = (0 != (rSearchOptions.searchFlag & util::SearchFlags::REG_NOT_BEGINOFLINE) );
142 :
143 0 : TextPaM aStartPaM( aSel.GetEnd() );
144 0 : if ( aSel.HasRange() && ( ( bSearchInSelection && bForward ) || ( !bSearchInSelection && !bForward ) ) )
145 : {
146 0 : aStartPaM = aSel.GetStart();
147 : }
148 :
149 0 : bool bFound = false;
150 : sal_uLong nStartNode, nEndNode;
151 :
152 0 : if ( bSearchInSelection )
153 0 : nEndNode = bForward ? aSel.GetEnd().GetPara() : aSel.GetStart().GetPara();
154 : else
155 0 : nEndNode = bForward ? (GetParagraphCount()-1) : 0;
156 :
157 0 : nStartNode = aStartPaM.GetPara();
158 :
159 0 : util::SearchOptions aOptions( rSearchOptions );
160 0 : aOptions.Locale = Application::GetSettings().GetLanguageTag().getLocale();
161 0 : utl::TextSearch aSearcher( rSearchOptions );
162 :
163 : // iterate over the paragraphs
164 0 : for ( sal_uLong nNode = nStartNode;
165 : bForward ? ( nNode <= nEndNode) : ( nNode >= nEndNode );
166 : bForward ? nNode++ : nNode-- )
167 : {
168 0 : OUString aText = GetText( nNode );
169 0 : sal_Int32 nStartPos = 0;
170 0 : sal_Int32 nEndPos = aText.getLength();
171 0 : if ( nNode == nStartNode )
172 : {
173 0 : if ( bForward )
174 0 : nStartPos = aStartPaM.GetIndex();
175 : else
176 0 : nEndPos = aStartPaM.GetIndex();
177 : }
178 0 : if ( ( nNode == nEndNode ) && bSearchInSelection )
179 : {
180 0 : if ( bForward )
181 0 : nEndPos = aSel.GetEnd().GetIndex();
182 : else
183 0 : nStartPos = aSel.GetStart().GetIndex();
184 : }
185 :
186 0 : if ( bForward )
187 0 : bFound = aSearcher.SearchForward( aText, &nStartPos, &nEndPos );
188 : else
189 0 : bFound = aSearcher.SearchBackward( aText, &nEndPos, &nStartPos );
190 :
191 0 : if ( bFound )
192 : {
193 0 : rSel.GetStart().GetPara() = nNode;
194 0 : rSel.GetStart().GetIndex() = nStartPos;
195 0 : rSel.GetEnd().GetPara() = nNode;
196 0 : rSel.GetEnd().GetIndex() = nEndPos;
197 : // Select over the paragraph?
198 : // FIXME This should be max long...
199 0 : if( nEndPos == -1)
200 : {
201 0 : if ( (rSel.GetEnd().GetPara()+1) < GetParagraphCount() )
202 : {
203 0 : rSel.GetEnd().GetPara()++;
204 0 : rSel.GetEnd().GetIndex() = 0;
205 : }
206 : else
207 : {
208 0 : rSel.GetEnd().GetIndex() = nStartPos;
209 0 : bFound = false;
210 : }
211 : }
212 :
213 0 : break;
214 : }
215 :
216 0 : if ( !bForward && !nNode ) // if searching backwards, if nEndNode == 0:
217 0 : break;
218 0 : }
219 :
220 0 : return bFound;
221 : }
222 :
223 : // class ExtTextView
224 :
225 0 : ExtTextView::ExtTextView( ExtTextEngine* pEng, Window* pWindow )
226 0 : : TextView( pEng, pWindow )
227 : {
228 0 : }
229 :
230 0 : ExtTextView::~ExtTextView()
231 : {
232 0 : }
233 :
234 0 : bool ExtTextView::MatchGroup()
235 : {
236 0 : TextSelection aTmpSel( GetSelection() );
237 0 : aTmpSel.Justify();
238 0 : if ( ( aTmpSel.GetStart().GetPara() != aTmpSel.GetEnd().GetPara() ) ||
239 0 : ( ( aTmpSel.GetEnd().GetIndex() - aTmpSel.GetStart().GetIndex() ) > 1 ) )
240 : {
241 0 : return false;
242 : }
243 :
244 0 : TextSelection aMatchSel = ((ExtTextEngine*)GetTextEngine())->MatchGroup( aTmpSel.GetStart() );
245 0 : if ( aMatchSel.HasRange() )
246 0 : SetSelection( aMatchSel );
247 :
248 0 : return aMatchSel.HasRange() ? true : false;
249 : }
250 :
251 0 : bool ExtTextView::Search( const util::SearchOptions& rSearchOptions, bool bForward )
252 : {
253 0 : bool bFound = false;
254 0 : TextSelection aSel( GetSelection() );
255 0 : if ( ((ExtTextEngine*)GetTextEngine())->Search( aSel, rSearchOptions, bForward ) )
256 : {
257 0 : bFound = true;
258 : // First add the beginning of the word to the selection,
259 : // so that the whole word is in the visible region.
260 0 : SetSelection( aSel.GetStart() );
261 0 : ShowCursor( true, false );
262 : }
263 : else
264 : {
265 0 : aSel = GetSelection().GetEnd();
266 : }
267 :
268 0 : SetSelection( aSel );
269 0 : ShowCursor();
270 :
271 0 : return bFound;
272 : }
273 :
274 0 : sal_uInt16 ExtTextView::Replace( const util::SearchOptions& rSearchOptions, bool bAll, bool bForward )
275 : {
276 0 : sal_uInt16 nFound = 0;
277 :
278 0 : if ( !bAll )
279 : {
280 0 : if ( GetSelection().HasRange() )
281 : {
282 0 : InsertText( rSearchOptions.replaceString );
283 0 : nFound = 1;
284 0 : Search( rSearchOptions, bForward ); // right away to the next
285 : }
286 : else
287 : {
288 0 : if( Search( rSearchOptions, bForward ) )
289 0 : nFound = 1;
290 : }
291 : }
292 : else
293 : {
294 : // the writer replaces all, from beginning to end
295 :
296 0 : ExtTextEngine* pTextEngine = (ExtTextEngine*)GetTextEngine();
297 :
298 : // HideSelection();
299 0 : TextSelection aSel;
300 :
301 0 : bool bSearchInSelection = (0 != (rSearchOptions.searchFlag & util::SearchFlags::REG_NOT_BEGINOFLINE) );
302 0 : if ( bSearchInSelection )
303 : {
304 0 : aSel = GetSelection();
305 0 : aSel.Justify();
306 : }
307 :
308 0 : TextSelection aSearchSel( aSel );
309 :
310 0 : bool bFound = pTextEngine->Search( aSel, rSearchOptions, true );
311 0 : if ( bFound )
312 0 : pTextEngine->UndoActionStart();
313 0 : while ( bFound )
314 : {
315 0 : nFound++;
316 :
317 0 : TextPaM aNewStart = pTextEngine->ImpInsertText( aSel, rSearchOptions.replaceString );
318 0 : aSel = aSearchSel;
319 0 : aSel.GetStart() = aNewStart;
320 0 : bFound = pTextEngine->Search( aSel, rSearchOptions, true );
321 : }
322 0 : if ( nFound )
323 : {
324 0 : SetSelection( aSel.GetStart() );
325 0 : pTextEngine->FormatAndUpdate( this );
326 0 : pTextEngine->UndoActionEnd();
327 : }
328 : }
329 0 : return nFound;
330 : }
331 :
332 0 : bool ExtTextView::ImpIndentBlock( bool bRight )
333 : {
334 0 : bool bDone = false;
335 :
336 0 : TextSelection aSel = GetSelection();
337 0 : aSel.Justify();
338 :
339 0 : HideSelection();
340 0 : GetTextEngine()->UndoActionStart();
341 :
342 0 : sal_uLong nStartPara = aSel.GetStart().GetPara();
343 0 : sal_uLong nEndPara = aSel.GetEnd().GetPara();
344 0 : if ( aSel.HasRange() && !aSel.GetEnd().GetIndex() )
345 : {
346 0 : nEndPara--; // do not indent
347 : }
348 :
349 0 : for ( sal_uLong nPara = nStartPara; nPara <= nEndPara; nPara++ )
350 : {
351 0 : if ( bRight )
352 : {
353 : // add tabs
354 0 : GetTextEngine()->ImpInsertText( TextPaM( nPara, 0 ), '\t' );
355 0 : bDone = true;
356 : }
357 : else
358 : {
359 : // remove Tabs/Blanks
360 0 : OUString aText = GetTextEngine()->GetText( nPara );
361 0 : if ( !aText.isEmpty() && (
362 0 : ( aText[ 0 ] == '\t' ) ||
363 0 : ( aText[ 0 ] == ' ' ) ) )
364 : {
365 0 : GetTextEngine()->ImpDeleteText( TextSelection( TextPaM( nPara, 0 ), TextPaM( nPara, 1 ) ) );
366 0 : bDone = true;
367 0 : }
368 : }
369 : }
370 :
371 0 : GetTextEngine()->UndoActionEnd();
372 :
373 0 : bool bRange = aSel.HasRange();
374 0 : if ( bRight )
375 : {
376 0 : aSel.GetStart().GetIndex()++;
377 0 : if ( bRange && ( aSel.GetEnd().GetPara() == nEndPara ) )
378 0 : aSel.GetEnd().GetIndex()++;
379 : }
380 : else
381 : {
382 0 : if ( aSel.GetStart().GetIndex() )
383 0 : aSel.GetStart().GetIndex()--;
384 0 : if ( bRange && aSel.GetEnd().GetIndex() )
385 0 : aSel.GetEnd().GetIndex()--;
386 : }
387 :
388 0 : ImpSetSelection( aSel );
389 0 : GetTextEngine()->FormatAndUpdate( this );
390 :
391 0 : return bDone;
392 : }
393 :
394 0 : bool ExtTextView::IndentBlock()
395 : {
396 0 : return ImpIndentBlock( true );
397 : }
398 :
399 0 : bool ExtTextView::UnindentBlock()
400 : {
401 0 : return ImpIndentBlock( false );
402 : }
403 :
404 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|