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 : #include <swcrsr.hxx>
23 : #include <editeng/lrspitem.hxx>
24 : // #134369#
25 : #include <view.hxx>
26 : #include <drawbase.hxx>
27 :
28 0 : inline void SwWrtShell::OpenMark()
29 : {
30 0 : StartAllAction();
31 0 : ResetCursorStack();
32 0 : KillPams();
33 0 : SetMark();
34 0 : }
35 :
36 0 : inline void SwWrtShell::CloseMark( bool bOkFlag )
37 : {
38 0 : if( bOkFlag )
39 0 : UpdateAttr();
40 : else
41 0 : SwapPam();
42 :
43 0 : ClearMark();
44 0 : EndAllAction();
45 0 : }
46 :
47 : // #i23725#
48 0 : bool SwWrtShell::TryRemoveIndent()
49 : {
50 0 : bool bResult = false;
51 :
52 0 : SfxItemSet aAttrSet(GetAttrPool(), RES_LR_SPACE, RES_LR_SPACE);
53 0 : GetCurAttr(aAttrSet);
54 :
55 0 : SvxLRSpaceItem aItem = (const SvxLRSpaceItem &)aAttrSet.Get(RES_LR_SPACE);
56 0 : short aOldFirstLineOfst = aItem.GetTxtFirstLineOfst();
57 :
58 0 : if (aOldFirstLineOfst > 0)
59 : {
60 0 : aItem.SetTxtFirstLineOfst(0);
61 0 : bResult = true;
62 : }
63 0 : else if (aOldFirstLineOfst < 0)
64 : {
65 0 : aItem.SetTxtFirstLineOfst(0);
66 0 : aItem.SetLeft(aItem.GetLeft() + aOldFirstLineOfst);
67 :
68 0 : bResult = true;
69 : }
70 0 : else if (aItem.GetLeft() != 0)
71 : {
72 0 : aItem.SetLeft(0);
73 0 : bResult = true;
74 : }
75 :
76 0 : if (bResult)
77 : {
78 0 : aAttrSet.Put(aItem);
79 0 : SetAttrSet(aAttrSet);
80 : }
81 :
82 0 : return bResult;
83 : }
84 :
85 : /** Description: Erase the line. */
86 :
87 0 : long SwWrtShell::DelLine()
88 : {
89 0 : SwActContext aActContext(this);
90 0 : ResetCursorStack();
91 : // remember the old cursor
92 0 : Push();
93 0 : ClearMark();
94 0 : SwCrsrShell::LeftMargin();
95 0 : SetMark();
96 0 : SwCrsrShell::RightMargin();
97 :
98 0 : long nRet = Delete();
99 0 : Pop(sal_False);
100 0 : if( nRet )
101 0 : UpdateAttr();
102 0 : return nRet;
103 : }
104 :
105 0 : long SwWrtShell::DelToStartOfLine()
106 : {
107 0 : OpenMark();
108 0 : SwCrsrShell::LeftMargin();
109 0 : long nRet = Delete();
110 0 : CloseMark( 0 != nRet );
111 0 : return nRet;
112 : }
113 :
114 0 : long SwWrtShell::DelToEndOfLine()
115 : {
116 0 : OpenMark();
117 0 : SwCrsrShell::RightMargin();
118 0 : long nRet = Delete();
119 0 : CloseMark( 0 != nRet );
120 0 : return 1;
121 : }
122 :
123 0 : long SwWrtShell::DelLeft()
124 : {
125 : // If it's a Fly, throw it away
126 0 : int nSelType = GetSelectionType();
127 0 : const int nCmp = nsSelectionType::SEL_FRM | nsSelectionType::SEL_GRF | nsSelectionType::SEL_OLE | nsSelectionType::SEL_DRW;
128 0 : if( nCmp & nSelType )
129 : {
130 : // #108205# Remember object's position.
131 0 : Point aTmpPt = GetObjRect().TopLeft();
132 :
133 0 : DelSelectedObj();
134 :
135 : // #108205# Set cursor to remembered position.
136 0 : SetCrsr(&aTmpPt);
137 :
138 0 : LeaveSelFrmMode();
139 0 : UnSelectFrm();
140 :
141 0 : nSelType = GetSelectionType();
142 0 : if ( nCmp & nSelType )
143 : {
144 0 : EnterSelFrmMode();
145 0 : GotoNextFly();
146 : }
147 :
148 0 : return 1L;
149 : }
150 :
151 : // If a selection exists, erase this
152 0 : if ( IsSelection() )
153 : {
154 0 : if( !IsBlockMode() || HasSelection() )
155 : {
156 : //OS: Once again Basic: SwActContext must be leaved
157 : //before EnterStdMode!
158 : {
159 0 : SwActContext aActContext(this);
160 0 : ResetCursorStack();
161 0 : Delete();
162 0 : UpdateAttr();
163 : }
164 0 : if( IsBlockMode() )
165 : {
166 0 : NormalizePam();
167 0 : ClearMark();
168 0 : EnterBlockMode();
169 : }
170 : else
171 0 : EnterStdMode();
172 0 : return 1L;
173 : }
174 : else
175 0 : EnterStdMode();
176 : }
177 :
178 : // JP 29.06.95: never erase a table standing in front of it.
179 0 : bool bSwap = false;
180 0 : const SwTableNode * pWasInTblNd = SwCrsrShell::IsCrsrInTbl();
181 :
182 0 : if( SwCrsrShell::IsSttPara())
183 : {
184 : // #i4032# Don't actually call a 'delete' if we
185 : // changed the table cell, compare DelRight().
186 : const SwStartNode * pSNdOld = pWasInTblNd ?
187 0 : GetSwCrsr()->GetNode()->FindTableBoxStartNode() :
188 0 : 0;
189 :
190 : // If the cursor is at the beginning of a paragraph, try to step
191 : // backwards. On failure we are done.
192 0 : if( !SwCrsrShell::Left(1,CRSR_SKIP_CHARS) )
193 0 : return 0;
194 :
195 : // If the cursor entered or left a table (or both) we are done. No step
196 : // back.
197 0 : const SwTableNode* pIsInTblNd = SwCrsrShell::IsCrsrInTbl();
198 0 : if( pIsInTblNd != pWasInTblNd )
199 0 : return 0;
200 :
201 : const SwStartNode* pSNdNew = pIsInTblNd ?
202 0 : GetSwCrsr()->GetNode()->FindTableBoxStartNode() :
203 0 : 0;
204 :
205 : // #i4032# Don't actually call a 'delete' if we
206 : // changed the table cell, compare DelRight().
207 0 : if ( pSNdOld != pSNdNew )
208 0 : return 0;
209 :
210 0 : OpenMark();
211 0 : SwCrsrShell::Right(1,CRSR_SKIP_CHARS);
212 0 : SwCrsrShell::SwapPam();
213 0 : bSwap = true;
214 : }
215 : else
216 : {
217 0 : OpenMark();
218 0 : SwCrsrShell::Left(1,CRSR_SKIP_CHARS);
219 : }
220 0 : long nRet = Delete();
221 0 : if( !nRet && bSwap )
222 0 : SwCrsrShell::SwapPam();
223 0 : CloseMark( 0 != nRet );
224 0 : return nRet;
225 : }
226 :
227 0 : long SwWrtShell::DelRight()
228 : {
229 : // Will be or'ed, if a tableselection exists;
230 : // will here be implemented on nsSelectionType::SEL_TBL
231 0 : long nRet = 0;
232 0 : int nSelection = GetSelectionType();
233 0 : if(nSelection & nsSelectionType::SEL_TBL_CELLS)
234 0 : nSelection = nsSelectionType::SEL_TBL;
235 0 : if(nSelection & nsSelectionType::SEL_TXT)
236 0 : nSelection = nsSelectionType::SEL_TXT;
237 :
238 0 : const SwTableNode * pWasInTblNd = NULL;
239 :
240 0 : switch( nSelection & ~(nsSelectionType::SEL_BEZ) )
241 : {
242 : case nsSelectionType::SEL_POSTIT:
243 : case nsSelectionType::SEL_TXT:
244 : case nsSelectionType::SEL_TBL:
245 : case nsSelectionType::SEL_NUM:
246 : // If a selection exists, erase it.
247 0 : if( IsSelection() )
248 : {
249 0 : if( !IsBlockMode() || HasSelection() )
250 : {
251 : //OS: And once again Basic: SwActContext must be
252 : //leaved before EnterStdMode !
253 : {
254 0 : SwActContext aActContext(this);
255 0 : ResetCursorStack();
256 0 : Delete();
257 0 : UpdateAttr();
258 : }
259 0 : if( IsBlockMode() )
260 : {
261 0 : NormalizePam();
262 0 : ClearMark();
263 0 : EnterBlockMode();
264 : }
265 : else
266 0 : EnterStdMode();
267 0 : nRet = 1L;
268 0 : break;
269 : }
270 : else
271 0 : EnterStdMode();
272 : }
273 :
274 0 : pWasInTblNd = IsCrsrInTbl();
275 :
276 0 : if( nsSelectionType::SEL_TXT & nSelection && SwCrsrShell::IsSttPara() &&
277 0 : SwCrsrShell::IsEndPara() )
278 : {
279 : // save cursor
280 0 : SwCrsrShell::Push();
281 :
282 0 : bool bDelFull = false;
283 0 : if ( SwCrsrShell::Right(1,CRSR_SKIP_CHARS) )
284 : {
285 0 : const SwTableNode * pCurrTblNd = IsCrsrInTbl();
286 0 : bDelFull = pCurrTblNd && pCurrTblNd != pWasInTblNd;
287 : }
288 :
289 : // restore cursor
290 0 : SwCrsrShell::Pop( sal_False );
291 :
292 0 : if( bDelFull )
293 : {
294 0 : DelFullPara();
295 0 : UpdateAttr();
296 0 : break;
297 : }
298 : }
299 :
300 : {
301 : // #108049# Save the startnode of the current cell
302 : const SwStartNode * pSNdOld;
303 0 : pSNdOld = GetSwCrsr()->GetNode()->
304 0 : FindTableBoxStartNode();
305 :
306 0 : if ( SwCrsrShell::IsEndPara() )
307 : {
308 : // #i41424# Introduced a couple of
309 : // Push()-Pop() pairs here. The reason for this is that a
310 : // Right()-Left() combination does not make sure, that
311 : // the cursor will be in its initial state, because there
312 : // may be a numbering in front of the next paragraph.
313 0 : SwCrsrShell::Push();
314 :
315 0 : if ( SwCrsrShell::Right(1, CRSR_SKIP_CHARS) )
316 : {
317 0 : if (IsCrsrInTbl() || (pWasInTblNd != IsCrsrInTbl()))
318 : {
319 : /** #108049# Save the startnode of the current
320 : cell. May be different to pSNdOld as we have
321 : moved. */
322 0 : const SwStartNode * pSNdNew = GetSwCrsr()
323 0 : ->GetNode()->FindTableBoxStartNode();
324 :
325 : /** #108049# Only move instead of deleting if we
326 : have moved to a different cell */
327 0 : if (pSNdOld != pSNdNew)
328 : {
329 0 : SwCrsrShell::Pop( sal_True );
330 0 : break;
331 : }
332 : }
333 : }
334 :
335 : // restore cursor
336 0 : SwCrsrShell::Pop( sal_False );
337 : }
338 : }
339 :
340 0 : OpenMark();
341 0 : SwCrsrShell::Right(1,CRSR_SKIP_CELLS);
342 0 : nRet = Delete();
343 0 : CloseMark( 0 != nRet );
344 0 : break;
345 :
346 : case nsSelectionType::SEL_FRM:
347 : case nsSelectionType::SEL_GRF:
348 : case nsSelectionType::SEL_OLE:
349 : case nsSelectionType::SEL_DRW:
350 : case nsSelectionType::SEL_DRW_TXT:
351 : case nsSelectionType::SEL_DRW_FORM:
352 : {
353 : // #108205# Remember object's position.
354 0 : Point aTmpPt = GetObjRect().TopLeft();
355 :
356 0 : DelSelectedObj();
357 :
358 : // #108205# Set cursor to remembered position.
359 0 : SetCrsr(&aTmpPt);
360 :
361 0 : LeaveSelFrmMode();
362 0 : UnSelectFrm();
363 : // #134369#
364 : OSL_ENSURE( !IsFrmSelected(),
365 : "<SwWrtShell::DelRight(..)> - <SwWrtShell::UnSelectFrm()> should unmark all objects" );
366 : // #134369#
367 : // leave draw mode, if necessary.
368 : {
369 0 : if (GetView().GetDrawFuncPtr())
370 : {
371 0 : GetView().GetDrawFuncPtr()->Deactivate();
372 0 : GetView().SetDrawFuncPtr(NULL);
373 : }
374 0 : if ( GetView().IsDrawMode() )
375 : {
376 0 : GetView().LeaveDrawCreate();
377 : }
378 : }
379 : }
380 :
381 : // #134369#
382 : // <IsFrmSelected()> can't be true - see above.
383 : {
384 0 : nSelection = GetSelectionType();
385 0 : if ( nsSelectionType::SEL_FRM & nSelection ||
386 0 : nsSelectionType::SEL_GRF & nSelection ||
387 0 : nsSelectionType::SEL_OLE & nSelection ||
388 0 : nsSelectionType::SEL_DRW & nSelection )
389 : {
390 0 : EnterSelFrmMode();
391 0 : GotoNextFly();
392 : }
393 : }
394 0 : nRet = 1;
395 0 : break;
396 : }
397 0 : return nRet;
398 : }
399 :
400 0 : long SwWrtShell::DelToEndOfPara()
401 : {
402 0 : SwActContext aActContext(this);
403 0 : ResetCursorStack();
404 0 : Push();
405 0 : SetMark();
406 0 : if( !MovePara(fnParaCurr,fnParaEnd))
407 : {
408 0 : Pop(sal_False);
409 0 : return 0;
410 : }
411 0 : long nRet = Delete();
412 0 : Pop(sal_False);
413 0 : if( nRet )
414 0 : UpdateAttr();
415 0 : return nRet;
416 : }
417 :
418 0 : long SwWrtShell::DelToStartOfPara()
419 : {
420 0 : SwActContext aActContext(this);
421 0 : ResetCursorStack();
422 0 : Push();
423 0 : SetMark();
424 0 : if( !MovePara(fnParaCurr,fnParaStart))
425 : {
426 0 : Pop(sal_False);
427 0 : return 0;
428 : }
429 0 : long nRet = Delete();
430 0 : Pop(sal_False);
431 0 : if( nRet )
432 0 : UpdateAttr();
433 0 : return nRet;
434 : }
435 :
436 : // All erase operations should work with Find instead with
437 : // Nxt-/PrvDelim, because the latter works with Wrap Around
438 : // -- that's probably not wished.
439 :
440 0 : long SwWrtShell::DelToStartOfSentence()
441 : {
442 0 : if(IsStartOfDoc())
443 0 : return 0;
444 0 : OpenMark();
445 0 : long nRet = _BwdSentence() ? Delete() : 0;
446 0 : CloseMark( 0 != nRet );
447 0 : return nRet;
448 : }
449 :
450 0 : long SwWrtShell::DelToEndOfSentence()
451 : {
452 0 : if(IsEndOfDoc())
453 0 : return 0;
454 0 : OpenMark();
455 0 : long nRet(0);
456 : // fdo#60967: special case that is documented in help: delete
457 : // paragraph following table if cursor is at end of last cell in table
458 0 : if (IsEndOfTable())
459 : {
460 0 : Push();
461 0 : ClearMark();
462 0 : if (SwCrsrShell::Right(1,CRSR_SKIP_CHARS))
463 : {
464 0 : SetMark();
465 0 : SwCrsrShell::MovePara(fnParaCurr, fnParaEnd);
466 0 : if (!IsEndOfDoc()) // do not delete last paragraph in body text
467 : {
468 0 : nRet = DelFullPara() ? 1 : 0;
469 : }
470 : }
471 0 : Pop(false);
472 : }
473 : else
474 : {
475 0 : nRet = _FwdSentence() ? Delete() : 0;
476 : }
477 0 : CloseMark( 0 != nRet );
478 0 : return nRet;
479 : }
480 :
481 0 : long SwWrtShell::DelNxtWord()
482 : {
483 0 : if(IsEndOfDoc())
484 0 : return 0;
485 0 : SwActContext aActContext(this);
486 0 : ResetCursorStack();
487 0 : EnterStdMode();
488 0 : SetMark();
489 0 : if(IsEndWrd() && !IsSttWrd())
490 0 : _NxtWrdForDelete(); // #i92468#
491 0 : if(IsSttWrd() || IsEndPara())
492 0 : _NxtWrdForDelete(); // #i92468#
493 : else
494 0 : _EndWrd();
495 :
496 0 : long nRet = Delete();
497 0 : if( nRet )
498 0 : UpdateAttr();
499 : else
500 0 : SwapPam();
501 0 : ClearMark();
502 0 : return nRet;
503 : }
504 :
505 0 : long SwWrtShell::DelPrvWord()
506 : {
507 0 : if(IsStartOfDoc())
508 0 : return 0;
509 0 : SwActContext aActContext(this);
510 0 : ResetCursorStack();
511 0 : EnterStdMode();
512 0 : SetMark();
513 0 : if ( !IsSttWrd() ||
514 0 : !_PrvWrdForDelete() ) // #i92468#
515 : {
516 0 : if( IsEndWrd() )
517 : {
518 0 : if ( _PrvWrdForDelete() ) // #i92468#
519 : {
520 : // skip over all spaces
521 0 : short n = 0;
522 0 : while( ' ' == GetChar( sal_False, n ))
523 0 : --n;
524 :
525 0 : if( ++n )
526 0 : ExtendSelection( sal_False, -n );
527 : }
528 : }
529 0 : else if( IsSttPara())
530 0 : _PrvWrdForDelete(); // #i92468#
531 : else
532 0 : _SttWrd();
533 : }
534 0 : long nRet = Delete();
535 0 : if( nRet )
536 0 : UpdateAttr();
537 : else
538 0 : SwapPam();
539 0 : ClearMark();
540 0 : return nRet;
541 : }
542 :
543 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|