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 2 : inline void SwWrtShell::OpenMark()
29 : {
30 2 : StartAllAction();
31 2 : ResetCursorStack();
32 2 : KillPams();
33 2 : SetMark();
34 2 : }
35 :
36 2 : inline void SwWrtShell::CloseMark( bool bOkFlag )
37 : {
38 2 : if( bOkFlag )
39 2 : UpdateAttr();
40 : else
41 0 : SwapPam();
42 :
43 2 : ClearMark();
44 2 : EndAllAction();
45 2 : }
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 = static_cast<const SvxLRSpaceItem &>(aAttrSet.Get(RES_LR_SPACE));
56 0 : short aOldFirstLineOfst = aItem.GetTextFirstLineOfst();
57 :
58 0 : if (aOldFirstLineOfst > 0)
59 : {
60 0 : aItem.SetTextFirstLineOfst(0);
61 0 : bResult = true;
62 : }
63 0 : else if (aOldFirstLineOfst < 0)
64 : {
65 0 : aItem.SetTextFirstLineOfst(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(false);
100 0 : if( nRet )
101 0 : UpdateAttr();
102 0 : return nRet;
103 : }
104 :
105 1 : long SwWrtShell::DelToStartOfLine()
106 : {
107 1 : OpenMark();
108 1 : SwCrsrShell::LeftMargin();
109 1 : long nRet = Delete();
110 1 : CloseMark( 0 != nRet );
111 1 : 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 1 : long SwWrtShell::DelLeft()
124 : {
125 : // If it's a Fly, throw it away
126 1 : int nSelType = GetSelectionType();
127 1 : const int nCmp = nsSelectionType::SEL_FRM | nsSelectionType::SEL_GRF | nsSelectionType::SEL_OLE | nsSelectionType::SEL_DRW;
128 1 : 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 1 : 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 1 : bool bSwap = false;
180 1 : const SwTableNode * pWasInTableNd = SwCrsrShell::IsCrsrInTable();
181 :
182 1 : 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 = pWasInTableNd ?
187 0 : GetSwCrsr()->GetNode().FindTableBoxStartNode() :
188 1 : 0;
189 :
190 : // If the cursor is at the beginning of a paragraph, try to step
191 : // backwards. On failure we are done.
192 1 : 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 1 : const SwTableNode* pIsInTableNd = SwCrsrShell::IsCrsrInTable();
198 1 : if( pIsInTableNd != pWasInTableNd )
199 0 : return 0;
200 :
201 : const SwStartNode* pSNdNew = pIsInTableNd ?
202 0 : GetSwCrsr()->GetNode().FindTableBoxStartNode() :
203 1 : 0;
204 :
205 : // #i4032# Don't actually call a 'delete' if we
206 : // changed the table cell, compare DelRight().
207 1 : if ( pSNdOld != pSNdNew )
208 0 : return 0;
209 :
210 1 : OpenMark();
211 1 : SwCrsrShell::Right(1,CRSR_SKIP_CHARS);
212 1 : SwCrsrShell::SwapPam();
213 1 : bSwap = true;
214 : }
215 : else
216 : {
217 0 : OpenMark();
218 0 : SwCrsrShell::Left(1,CRSR_SKIP_CHARS);
219 : }
220 1 : long nRet = Delete();
221 1 : if( !nRet && bSwap )
222 0 : SwCrsrShell::SwapPam();
223 1 : CloseMark( 0 != nRet );
224 1 : 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 * pWasInTableNd = 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 : pWasInTableNd = IsCrsrInTable();
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 * pCurrTableNd = IsCrsrInTable();
286 0 : bDelFull = pCurrTableNd && pCurrTableNd != pWasInTableNd;
287 : }
288 :
289 : // restore cursor
290 0 : SwCrsrShell::Pop( 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().FindTableBoxStartNode();
304 :
305 0 : if ( SwCrsrShell::IsEndPara() )
306 : {
307 : // #i41424# Introduced a couple of
308 : // Push()-Pop() pairs here. The reason for this is that a
309 : // Right()-Left() combination does not make sure, that
310 : // the cursor will be in its initial state, because there
311 : // may be a numbering in front of the next paragraph.
312 0 : SwCrsrShell::Push();
313 :
314 0 : if ( SwCrsrShell::Right(1, CRSR_SKIP_CHARS) )
315 : {
316 0 : if (IsCrsrInTable() || (pWasInTableNd != IsCrsrInTable()))
317 : {
318 : /** #108049# Save the startnode of the current
319 : cell. May be different to pSNdOld as we have
320 : moved. */
321 0 : const SwStartNode * pSNdNew = GetSwCrsr()
322 0 : ->GetNode().FindTableBoxStartNode();
323 :
324 : /** #108049# Only move instead of deleting if we
325 : have moved to a different cell */
326 0 : if (pSNdOld != pSNdNew)
327 : {
328 0 : SwCrsrShell::Pop( true );
329 0 : break;
330 : }
331 : }
332 : }
333 :
334 : // restore cursor
335 0 : SwCrsrShell::Pop( false );
336 : }
337 : }
338 :
339 0 : OpenMark();
340 0 : SwCrsrShell::Right(1,CRSR_SKIP_CELLS);
341 0 : nRet = Delete();
342 0 : CloseMark( 0 != nRet );
343 0 : break;
344 :
345 : case nsSelectionType::SEL_FRM:
346 : case nsSelectionType::SEL_GRF:
347 : case nsSelectionType::SEL_OLE:
348 : case nsSelectionType::SEL_DRW:
349 : case nsSelectionType::SEL_DRW_TXT:
350 : case nsSelectionType::SEL_DRW_FORM:
351 : {
352 : // #108205# Remember object's position.
353 0 : Point aTmpPt = GetObjRect().TopLeft();
354 :
355 0 : DelSelectedObj();
356 :
357 : // #108205# Set cursor to remembered position.
358 0 : SetCrsr(&aTmpPt);
359 :
360 0 : LeaveSelFrmMode();
361 0 : UnSelectFrm();
362 : // #134369#
363 : OSL_ENSURE( !IsFrmSelected(),
364 : "<SwWrtShell::DelRight(..)> - <SwWrtShell::UnSelectFrm()> should unmark all objects" );
365 : // #134369#
366 : // leave draw mode, if necessary.
367 : {
368 0 : if (GetView().GetDrawFuncPtr())
369 : {
370 0 : GetView().GetDrawFuncPtr()->Deactivate();
371 0 : GetView().SetDrawFuncPtr(NULL);
372 : }
373 0 : if ( GetView().IsDrawMode() )
374 : {
375 0 : GetView().LeaveDrawCreate();
376 : }
377 : }
378 : }
379 :
380 : // #134369#
381 : // <IsFrmSelected()> can't be true - see above.
382 : {
383 0 : nSelection = GetSelectionType();
384 0 : if ( nsSelectionType::SEL_FRM & nSelection ||
385 0 : nsSelectionType::SEL_GRF & nSelection ||
386 0 : nsSelectionType::SEL_OLE & nSelection ||
387 0 : nsSelectionType::SEL_DRW & nSelection )
388 : {
389 0 : EnterSelFrmMode();
390 0 : GotoNextFly();
391 : }
392 : }
393 0 : nRet = 1;
394 0 : break;
395 : }
396 0 : return nRet;
397 : }
398 :
399 0 : long SwWrtShell::DelToEndOfPara()
400 : {
401 0 : SwActContext aActContext(this);
402 0 : ResetCursorStack();
403 0 : Push();
404 0 : SetMark();
405 0 : if( !MovePara(fnParaCurr,fnParaEnd))
406 : {
407 0 : Pop(false);
408 0 : return 0;
409 : }
410 0 : long nRet = Delete();
411 0 : Pop(false);
412 0 : if( nRet )
413 0 : UpdateAttr();
414 0 : return nRet;
415 : }
416 :
417 0 : long SwWrtShell::DelToStartOfPara()
418 : {
419 0 : SwActContext aActContext(this);
420 0 : ResetCursorStack();
421 0 : Push();
422 0 : SetMark();
423 0 : if( !MovePara(fnParaCurr,fnParaStart))
424 : {
425 0 : Pop(false);
426 0 : return 0;
427 : }
428 0 : long nRet = Delete();
429 0 : Pop(false);
430 0 : if( nRet )
431 0 : UpdateAttr();
432 0 : return nRet;
433 : }
434 :
435 : // All erase operations should work with Find instead with
436 : // Nxt-/PrvDelim, because the latter works with Wrap Around
437 : // -- that's probably not wished.
438 :
439 0 : long SwWrtShell::DelToStartOfSentence()
440 : {
441 0 : if(IsStartOfDoc())
442 0 : return 0;
443 0 : OpenMark();
444 0 : long nRet = _BwdSentence() ? Delete() : 0;
445 0 : CloseMark( 0 != nRet );
446 0 : return nRet;
447 : }
448 :
449 0 : long SwWrtShell::DelToEndOfSentence()
450 : {
451 0 : if(IsEndOfDoc())
452 0 : return 0;
453 0 : OpenMark();
454 0 : long nRet(0);
455 : // fdo#60967: special case that is documented in help: delete
456 : // paragraph following table if cursor is at end of last cell in table
457 0 : if (IsEndOfTable())
458 : {
459 0 : Push();
460 0 : ClearMark();
461 0 : if (SwCrsrShell::Right(1,CRSR_SKIP_CHARS))
462 : {
463 0 : SetMark();
464 0 : if (!IsEndPara()) // can only be at the end if it's empty
465 : { // for an empty paragraph this would actually select the _next_
466 0 : SwCrsrShell::MovePara(fnParaCurr, fnParaEnd);
467 : }
468 0 : if (!IsEndOfDoc()) // do not delete last paragraph in body text
469 : {
470 0 : nRet = DelFullPara() ? 1 : 0;
471 : }
472 : }
473 0 : Pop(false);
474 : }
475 : else
476 : {
477 0 : nRet = _FwdSentence() ? Delete() : 0;
478 : }
479 0 : CloseMark( 0 != nRet );
480 0 : return nRet;
481 : }
482 :
483 0 : long SwWrtShell::DelNxtWord()
484 : {
485 0 : if(IsEndOfDoc())
486 0 : return 0;
487 0 : SwActContext aActContext(this);
488 0 : ResetCursorStack();
489 0 : EnterStdMode();
490 0 : SetMark();
491 0 : if(IsEndWrd() && !IsSttWrd())
492 0 : _NxtWrdForDelete(); // #i92468#
493 0 : if(IsSttWrd() || IsEndPara())
494 0 : _NxtWrdForDelete(); // #i92468#
495 : else
496 0 : _EndWrd();
497 :
498 0 : long nRet = Delete();
499 0 : if( nRet )
500 0 : UpdateAttr();
501 : else
502 0 : SwapPam();
503 0 : ClearMark();
504 0 : return nRet;
505 : }
506 :
507 0 : long SwWrtShell::DelPrvWord()
508 : {
509 0 : if(IsStartOfDoc())
510 0 : return 0;
511 0 : SwActContext aActContext(this);
512 0 : ResetCursorStack();
513 0 : EnterStdMode();
514 0 : SetMark();
515 0 : if ( !IsSttWrd() ||
516 0 : !_PrvWrdForDelete() ) // #i92468#
517 : {
518 0 : if (IsEndWrd() || IsSttPara())
519 0 : _PrvWrdForDelete(); // #i92468#
520 : else
521 0 : _SttWrd();
522 : }
523 0 : long nRet = Delete();
524 0 : if( nRet )
525 0 : UpdateAttr();
526 : else
527 0 : SwapPam();
528 0 : ClearMark();
529 0 : return nRet;
530 177 : }
531 :
532 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|