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 <wrtsh.hxx>
21 : #include <crsskip.hxx>
22 :
23 :
24 : /*
25 : * private Methoden, die den Cursor ueber Suchen bewegen. Das
26 : * Aufheben der Selektion muss auf der Ebene darueber erfolgen.
27 : */
28 :
29 : /*
30 : * Der Anfang eines Wortes ist das Folgen eines nicht-
31 : * Trennzeichens auf Trennzeichen. Ferner das Folgen von
32 : * nicht-Satztrennern auf Satztrenner. Der Absatzanfang ist
33 : * ebenfalls Wortanfang.
34 : */
35 :
36 :
37 0 : sal_Bool SwWrtShell::_SttWrd()
38 : {
39 0 : if ( IsSttPara() )
40 0 : return 1;
41 : /*
42 : * temporaeren Cursor ohne Selektion erzeugen
43 : */
44 0 : Push();
45 0 : ClearMark();
46 0 : if( !GoStartWord() )
47 : // nicht gefunden --> an den Absatzanfang
48 0 : SwCrsrShell::MovePara( fnParaCurr, fnParaStart );
49 0 : ClearMark();
50 : // falls vorher Mark gesetzt war, zusammenfassen
51 0 : Combine();
52 0 : return 1;
53 : }
54 : /*
55 : * Das Ende eines Wortes ist das Folgen von Trennzeichen auf
56 : * nicht-Trennzeichen. Unter dem Ende eines Wortes wird
57 : * ebenfalls die Folge von Worttrennzeichen auf Interpunktions-
58 : * zeichen verstanden. Das Absatzende ist ebenfalls Wortende.
59 : */
60 :
61 :
62 :
63 0 : sal_Bool SwWrtShell::_EndWrd()
64 : {
65 0 : if ( IsEndWrd() )
66 0 : return 1;
67 : // temporaeren Cursor ohne Selektion erzeugen
68 0 : Push();
69 0 : ClearMark();
70 0 : if( !GoEndWord() )
71 : // nicht gefunden --> an das Absatz Ende
72 0 : SwCrsrShell::MovePara(fnParaCurr, fnParaEnd);
73 0 : ClearMark();
74 : // falls vorher Mark gesetzt war, zusammenfassen
75 0 : Combine();
76 0 : return 1;
77 : }
78 :
79 :
80 :
81 0 : sal_Bool SwWrtShell::_NxtWrd()
82 : {
83 0 : sal_Bool bRet = sal_False;
84 0 : while( IsEndPara() ) // wenn schon am Ende, dann naechsten ???
85 : {
86 0 : if(!SwCrsrShell::Right(1,CRSR_SKIP_CHARS)) // Document - Ende ??
87 : {
88 0 : Pop( sal_False );
89 0 : return bRet;
90 : }
91 0 : bRet = IsStartWord();
92 : }
93 0 : Push();
94 0 : ClearMark();
95 0 : while( !bRet )
96 : {
97 0 : if( !GoNextWord() )
98 : {
99 0 : if( (!IsEndPara() && !SwCrsrShell::MovePara( fnParaCurr, fnParaEnd ) )
100 0 : || !SwCrsrShell::Right(1,CRSR_SKIP_CHARS) )
101 0 : break;
102 0 : bRet = IsStartWord();
103 : }
104 : else
105 0 : bRet = sal_True;
106 : }
107 0 : ClearMark();
108 0 : Combine();
109 0 : return bRet;
110 : }
111 :
112 0 : sal_Bool SwWrtShell::_PrvWrd()
113 : {
114 0 : sal_Bool bRet = sal_False;
115 0 : while( IsSttPara() )
116 : { // wenn schon am Anfang, dann naechsten ???
117 0 : if(!SwCrsrShell::Left(1,CRSR_SKIP_CHARS))
118 : { // Document - Anfang ??
119 0 : Pop( sal_False );
120 0 : return bRet;
121 : }
122 0 : bRet = IsStartWord();
123 : }
124 0 : Push();
125 0 : ClearMark();
126 0 : while( !bRet )
127 : {
128 0 : if( !GoPrevWord() )
129 : {
130 0 : if( (!IsSttPara() && !SwCrsrShell::MovePara( fnParaCurr, fnParaStart ) )
131 0 : || !SwCrsrShell::Left(1,CRSR_SKIP_CHARS) )
132 0 : break;
133 0 : bRet = IsStartWord();
134 : }
135 : else
136 0 : bRet = sal_True;
137 : }
138 0 : ClearMark();
139 0 : Combine();
140 0 : return bRet;
141 : }
142 :
143 : // #i92468#
144 : // method code of <SwWrtShell::_NxtWrd()> before fix for issue i72162
145 0 : sal_Bool SwWrtShell::_NxtWrdForDelete()
146 : {
147 0 : if ( IsEndPara() )
148 : {
149 0 : if ( !SwCrsrShell::Right(1,CRSR_SKIP_CHARS) )
150 : {
151 0 : Pop( sal_False );
152 0 : return sal_False;
153 : }
154 0 : return sal_True;
155 : }
156 0 : Push();
157 0 : ClearMark();
158 0 : if ( !GoNextWord() )
159 : {
160 0 : SwCrsrShell::MovePara( fnParaCurr, fnParaEnd );
161 : }
162 0 : ClearMark();
163 0 : Combine();
164 0 : return sal_True;
165 : }
166 :
167 : // method code of <SwWrtShell::_PrvWrd()> before fix for issue i72162
168 0 : sal_Bool SwWrtShell::_PrvWrdForDelete()
169 : {
170 0 : if ( IsSttPara() )
171 : {
172 0 : if ( !SwCrsrShell::Left(1,CRSR_SKIP_CHARS) )
173 : {
174 0 : Pop( sal_False );
175 0 : return sal_False;
176 : }
177 0 : return sal_True;
178 : }
179 0 : Push();
180 0 : ClearMark();
181 0 : if( !GoPrevWord() )
182 : {
183 0 : SwCrsrShell::MovePara( fnParaCurr, fnParaStart );
184 : }
185 0 : ClearMark();
186 0 : Combine();
187 0 : return sal_True;
188 : }
189 :
190 0 : sal_Bool SwWrtShell::_FwdSentence()
191 : {
192 0 : Push();
193 0 : ClearMark();
194 0 : if(!SwCrsrShell::Right(1,CRSR_SKIP_CHARS))
195 : {
196 0 : Pop(sal_False);
197 0 : return 0;
198 : }
199 0 : if( !GoNextSentence() && !IsEndPara() )
200 0 : SwCrsrShell::MovePara(fnParaCurr, fnParaEnd);
201 :
202 0 : ClearMark();
203 0 : Combine();
204 0 : return 1;
205 : }
206 :
207 0 : sal_Bool SwWrtShell::_BwdSentence()
208 : {
209 0 : Push();
210 0 : ClearMark();
211 0 : if(!SwCrsrShell::Left(1,CRSR_SKIP_CHARS))
212 : {
213 0 : Pop(sal_False);
214 0 : return 0;
215 : }
216 0 : if( !GoStartSentence() && !IsSttPara() )
217 : // nicht gefunden --> an den Absatz Anfang
218 0 : SwCrsrShell::MovePara( fnParaCurr, fnParaStart );
219 0 : ClearMark();
220 0 : Combine();
221 0 : return 1;
222 : }
223 :
224 0 : sal_Bool SwWrtShell::_FwdPara()
225 : {
226 0 : Push();
227 0 : ClearMark();
228 0 : sal_Bool bRet = SwCrsrShell::MovePara(fnParaNext, fnParaStart);
229 :
230 0 : ClearMark();
231 0 : Combine();
232 0 : return bRet;
233 : }
234 :
235 :
236 0 : sal_Bool SwWrtShell::_BwdPara()
237 : {
238 0 : Push();
239 0 : ClearMark();
240 :
241 0 : sal_Bool bRet = SwCrsrShell::MovePara(fnParaPrev, fnParaStart);
242 0 : if ( !bRet && !IsSttOfPara() )
243 : {
244 0 : SttPara();
245 : }
246 :
247 0 : ClearMark();
248 0 : Combine();
249 0 : return bRet;
250 : }
251 :
252 :
253 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|