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 : // Private methods, which move the cursor over search.
24 : // The removal of the selection must be made on the level above.
25 :
26 : // The beginning of a word is the follow of a
27 : // non-delimiter to delimiter. Furthermore, the follow of
28 : // non-sentence separators on sentence separator.
29 : // The begin of paragraph is also the word beginning.
30 :
31 0 : bool SwWrtShell::_SttWrd()
32 : {
33 0 : if ( IsSttPara() )
34 0 : return true;
35 : // Create temporary cursor without selection.
36 0 : Push();
37 0 : ClearMark();
38 0 : if( !GoStartWord() )
39 : // not found --> go to the beginning of the paragraph.
40 0 : SwCrsrShell::MovePara( fnParaCurr, fnParaStart );
41 0 : ClearMark();
42 : // If Mark was previously set, summarize.
43 0 : Combine();
44 0 : return true;
45 : }
46 :
47 : // The end of a word is the follow of separator to nonseparator.
48 : // The end of a word is also the sequence of wordseparators to
49 : // punctuation marks.
50 : // The end of a paragraph is also the end of a word.
51 :
52 0 : bool SwWrtShell::_EndWrd()
53 : {
54 0 : if ( IsEndWrd() )
55 0 : return true;
56 : // Create temporary cursor without selection.
57 0 : Push();
58 0 : ClearMark();
59 0 : if( !GoEndWord() )
60 : // not found --> go to the end of the paragraph.
61 0 : SwCrsrShell::MovePara(fnParaCurr, fnParaEnd);
62 0 : ClearMark();
63 : // If Mark was previously set, summarize.
64 0 : Combine();
65 0 : return true;
66 : }
67 :
68 0 : sal_Bool SwWrtShell::_NxtWrd()
69 : {
70 0 : sal_Bool bRet = sal_False;
71 0 : while( IsEndPara() ) // If already at the end, then the next???
72 : {
73 0 : if(!SwCrsrShell::Right(1,CRSR_SKIP_CHARS)) // Document - end ??
74 : {
75 0 : Pop( sal_False );
76 0 : return bRet;
77 : }
78 0 : bRet = IsStartWord();
79 : }
80 0 : Push();
81 0 : ClearMark();
82 0 : while( !bRet )
83 : {
84 0 : if( !GoNextWord() )
85 : {
86 0 : if( (!IsEndPara() && !SwCrsrShell::MovePara( fnParaCurr, fnParaEnd ) )
87 0 : || !SwCrsrShell::Right(1,CRSR_SKIP_CHARS) )
88 0 : break;
89 0 : bRet = IsStartWord();
90 : }
91 : else
92 0 : bRet = sal_True;
93 : }
94 0 : ClearMark();
95 0 : Combine();
96 0 : return bRet;
97 : }
98 :
99 0 : sal_Bool SwWrtShell::_PrvWrd()
100 : {
101 0 : sal_Bool bRet = sal_False;
102 0 : while( IsSttPara() )
103 : { // if already at the beginning, then the next???
104 0 : if(!SwCrsrShell::Left(1,CRSR_SKIP_CHARS))
105 : { // Document - beginning ??
106 0 : Pop( sal_False );
107 0 : return bRet;
108 : }
109 0 : bRet = IsStartWord();
110 : }
111 0 : Push();
112 0 : ClearMark();
113 0 : while( !bRet )
114 : {
115 0 : if( !GoPrevWord() )
116 : {
117 0 : if( (!IsSttPara() && !SwCrsrShell::MovePara( fnParaCurr, fnParaStart ) )
118 0 : || !SwCrsrShell::Left(1,CRSR_SKIP_CHARS) )
119 0 : break;
120 0 : bRet = IsStartWord();
121 : }
122 : else
123 0 : bRet = sal_True;
124 : }
125 0 : ClearMark();
126 0 : Combine();
127 0 : return bRet;
128 : }
129 :
130 : // #i92468#
131 : // method code of <SwWrtShell::_NxtWrd()> before fix for issue i72162
132 0 : sal_Bool SwWrtShell::_NxtWrdForDelete()
133 : {
134 0 : if ( IsEndPara() )
135 : {
136 0 : if ( !SwCrsrShell::Right(1,CRSR_SKIP_CHARS) )
137 : {
138 0 : Pop( sal_False );
139 0 : return sal_False;
140 : }
141 0 : return sal_True;
142 : }
143 0 : Push();
144 0 : ClearMark();
145 0 : if ( !GoNextWord() )
146 : {
147 0 : SwCrsrShell::MovePara( fnParaCurr, fnParaEnd );
148 : }
149 0 : ClearMark();
150 0 : Combine();
151 0 : return sal_True;
152 : }
153 :
154 : // method code of <SwWrtShell::_PrvWrd()> before fix for issue i72162
155 0 : sal_Bool SwWrtShell::_PrvWrdForDelete()
156 : {
157 0 : if ( IsSttPara() )
158 : {
159 0 : if ( !SwCrsrShell::Left(1,CRSR_SKIP_CHARS) )
160 : {
161 0 : Pop( sal_False );
162 0 : return sal_False;
163 : }
164 0 : return sal_True;
165 : }
166 0 : Push();
167 0 : ClearMark();
168 0 : if( !GoPrevWord() )
169 : {
170 0 : SwCrsrShell::MovePara( fnParaCurr, fnParaStart );
171 : }
172 0 : ClearMark();
173 0 : Combine();
174 0 : return sal_True;
175 : }
176 :
177 0 : sal_Bool SwWrtShell::_FwdSentence()
178 : {
179 0 : Push();
180 0 : ClearMark();
181 0 : if(!SwCrsrShell::Right(1,CRSR_SKIP_CHARS))
182 : {
183 0 : Pop(sal_False);
184 0 : return 0;
185 : }
186 0 : if( !GoNextSentence() && !IsEndPara() )
187 0 : SwCrsrShell::MovePara(fnParaCurr, fnParaEnd);
188 :
189 0 : ClearMark();
190 0 : Combine();
191 0 : return 1;
192 : }
193 :
194 0 : sal_Bool SwWrtShell::_BwdSentence()
195 : {
196 0 : Push();
197 0 : ClearMark();
198 0 : if(!SwCrsrShell::Left(1,CRSR_SKIP_CHARS))
199 : {
200 0 : Pop(sal_False);
201 0 : return 0;
202 : }
203 0 : if( !GoStartSentence() && !IsSttPara() )
204 : // not found --> go to the beginning of the paragraph
205 0 : SwCrsrShell::MovePara( fnParaCurr, fnParaStart );
206 0 : ClearMark();
207 0 : Combine();
208 0 : return 1;
209 : }
210 :
211 0 : sal_Bool SwWrtShell::_FwdPara()
212 : {
213 0 : Push();
214 0 : ClearMark();
215 0 : sal_Bool bRet = SwCrsrShell::MovePara(fnParaNext, fnParaStart);
216 :
217 0 : ClearMark();
218 0 : Combine();
219 0 : return bRet;
220 : }
221 :
222 0 : sal_Bool SwWrtShell::_BwdPara()
223 : {
224 0 : Push();
225 0 : ClearMark();
226 :
227 0 : sal_Bool bRet = SwCrsrShell::MovePara(fnParaPrev, fnParaStart);
228 0 : if ( !bRet && !IsSttOfPara() )
229 : {
230 0 : SttPara();
231 : }
232 :
233 0 : ClearMark();
234 0 : Combine();
235 0 : return bRet;
236 : }
237 :
238 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|