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> // #i23725#
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( sal_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 : sal_Bool SwWrtShell::TryRemoveIndent()
49 : {
50 0 : sal_Bool bResult = sal_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 = sal_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 = sal_True;
69 : }
70 0 : else if (aItem.GetLeft() != 0)
71 : {
72 0 : aItem.SetLeft(0);
73 0 : bResult = sal_True;
74 : }
75 :
76 0 : if (bResult)
77 : {
78 0 : aAttrSet.Put(aItem);
79 0 : SetAttr(aAttrSet);
80 : }
81 :
82 0 : return bResult;
83 : }
84 :
85 : /*------------------------------------------------------------------------
86 : Beschreibung: Zeile loeschen
87 : ------------------------------------------------------------------------*/
88 :
89 :
90 :
91 0 : long SwWrtShell::DelLine()
92 : {
93 0 : SwActContext aActContext(this);
94 0 : ResetCursorStack();
95 : // alten Cursor merken
96 0 : Push();
97 0 : ClearMark();
98 0 : SwCrsrShell::LeftMargin();
99 0 : SetMark();
100 0 : SwCrsrShell::RightMargin();
101 :
102 0 : long nRet = Delete();
103 0 : Pop(sal_False);
104 0 : if( nRet )
105 0 : UpdateAttr();
106 0 : return nRet;
107 : }
108 :
109 :
110 :
111 0 : long SwWrtShell::DelToStartOfLine()
112 : {
113 0 : OpenMark();
114 0 : SwCrsrShell::LeftMargin();
115 0 : long nRet = Delete();
116 0 : CloseMark( 0 != nRet );
117 0 : return nRet;
118 : }
119 :
120 :
121 :
122 0 : long SwWrtShell::DelToEndOfLine()
123 : {
124 0 : OpenMark();
125 0 : SwCrsrShell::RightMargin();
126 0 : long nRet = Delete();
127 0 : CloseMark( 0 != nRet );
128 0 : return 1;
129 : }
130 :
131 0 : long SwWrtShell::DelLeft()
132 : {
133 : // wenns denn ein Fly ist, wech damit
134 0 : int nSelType = GetSelectionType();
135 0 : const int nCmp = nsSelectionType::SEL_FRM | nsSelectionType::SEL_GRF | nsSelectionType::SEL_OLE | nsSelectionType::SEL_DRW;
136 0 : if( nCmp & nSelType )
137 : {
138 : /* #108205# Remember object's position. */
139 0 : Point aTmpPt = GetObjRect().TopLeft();
140 :
141 0 : DelSelectedObj();
142 :
143 : /* #108205# Set cursor to remembered position. */
144 0 : SetCrsr(&aTmpPt);
145 :
146 0 : LeaveSelFrmMode();
147 0 : UnSelectFrm();
148 :
149 0 : nSelType = GetSelectionType();
150 0 : if ( nCmp & nSelType )
151 : {
152 0 : EnterSelFrmMode();
153 0 : GotoNextFly();
154 : }
155 :
156 0 : return 1L;
157 : }
158 :
159 : // wenn eine Selektion existiert, diese loeschen.
160 0 : if ( IsSelection() )
161 : {
162 0 : if( !IsBlockMode() || HasSelection() )
163 : {
164 : //OS: wieder einmal Basic: SwActContext muss vor
165 : //EnterStdMode verlassen werden!
166 : {
167 0 : SwActContext aActContext(this);
168 0 : ResetCursorStack();
169 0 : Delete();
170 0 : UpdateAttr();
171 : }
172 0 : if( IsBlockMode() )
173 : {
174 0 : NormalizePam();
175 0 : ClearMark();
176 0 : EnterBlockMode();
177 : }
178 : else
179 0 : EnterStdMode();
180 0 : return 1L;
181 : }
182 : else
183 0 : EnterStdMode();
184 : }
185 :
186 : // JP 29.06.95: nie eine davor stehende Tabelle loeschen.
187 0 : sal_Bool bSwap = sal_False;
188 0 : const SwTableNode * pWasInTblNd = SwCrsrShell::IsCrsrInTbl();
189 :
190 0 : if( SwCrsrShell::IsSttPara())
191 : {
192 : // #i4032# Don't actually call a 'delete' if we
193 : // changed the table cell, compare DelRight().
194 : const SwStartNode * pSNdOld = pWasInTblNd ?
195 0 : GetSwCrsr()->GetNode()->FindTableBoxStartNode() :
196 0 : 0;
197 :
198 : /* If the cursor is at the beginning of a paragraph, try to step
199 : backwards. On failure we are done. */
200 0 : if( !SwCrsrShell::Left(1,CRSR_SKIP_CHARS) )
201 0 : return 0;
202 :
203 : /* If the cursor entered or left a table (or both) we are done. No step
204 : back. */
205 0 : const SwTableNode* pIsInTblNd = SwCrsrShell::IsCrsrInTbl();
206 0 : if( pIsInTblNd != pWasInTblNd )
207 0 : return 0;
208 :
209 : const SwStartNode* pSNdNew = pIsInTblNd ?
210 0 : GetSwCrsr()->GetNode()->FindTableBoxStartNode() :
211 0 : 0;
212 :
213 : // #i4032# Don't actually call a 'delete' if we
214 : // changed the table cell, compare DelRight().
215 0 : if ( pSNdOld != pSNdNew )
216 0 : return 0;
217 :
218 0 : OpenMark();
219 0 : SwCrsrShell::Right(1,CRSR_SKIP_CHARS);
220 0 : SwCrsrShell::SwapPam();
221 0 : bSwap = sal_True;
222 : }
223 : else
224 : {
225 0 : OpenMark();
226 0 : SwCrsrShell::Left(1,CRSR_SKIP_CHARS);
227 : }
228 0 : long nRet = Delete();
229 0 : if( !nRet && bSwap )
230 0 : SwCrsrShell::SwapPam();
231 0 : CloseMark( 0 != nRet );
232 0 : return nRet;
233 : }
234 :
235 0 : long SwWrtShell::DelRight()
236 : {
237 : // werden verodert, wenn Tabellenselektion vorliegt;
238 : // wird hier auf nsSelectionType::SEL_TBL umgesetzt.
239 0 : long nRet = 0;
240 0 : int nSelection = GetSelectionType();
241 0 : if(nSelection & nsSelectionType::SEL_TBL_CELLS)
242 0 : nSelection = nsSelectionType::SEL_TBL;
243 0 : if(nSelection & nsSelectionType::SEL_TXT)
244 0 : nSelection = nsSelectionType::SEL_TXT;
245 :
246 0 : const SwTableNode * pWasInTblNd = NULL;
247 :
248 0 : switch( nSelection & ~(nsSelectionType::SEL_BEZ) )
249 : {
250 : case nsSelectionType::SEL_POSTIT:
251 : case nsSelectionType::SEL_TXT:
252 : case nsSelectionType::SEL_TBL:
253 : case nsSelectionType::SEL_NUM:
254 : // wenn eine Selektion existiert, diese loeschen.
255 0 : if( IsSelection() )
256 : {
257 0 : if( !IsBlockMode() || HasSelection() )
258 : {
259 : //OS: wieder einmal Basic: SwActContext muss vor
260 : //EnterStdMode verlassen werden!
261 : {
262 0 : SwActContext aActContext(this);
263 0 : ResetCursorStack();
264 0 : Delete();
265 0 : UpdateAttr();
266 : }
267 0 : if( IsBlockMode() )
268 : {
269 0 : NormalizePam();
270 0 : ClearMark();
271 0 : EnterBlockMode();
272 : }
273 : else
274 0 : EnterStdMode();
275 0 : nRet = 1L;
276 0 : break;
277 : }
278 : else
279 0 : EnterStdMode();
280 : }
281 :
282 0 : pWasInTblNd = IsCrsrInTbl();
283 :
284 0 : if( nsSelectionType::SEL_TXT & nSelection && SwCrsrShell::IsSttPara() &&
285 0 : SwCrsrShell::IsEndPara() )
286 : {
287 : // save cursor
288 0 : SwCrsrShell::Push();
289 :
290 0 : bool bDelFull = false;
291 0 : if ( SwCrsrShell::Right(1,CRSR_SKIP_CHARS) )
292 : {
293 0 : const SwTableNode * pCurrTblNd = IsCrsrInTbl();
294 0 : bDelFull = pCurrTblNd && pCurrTblNd != pWasInTblNd;
295 : }
296 :
297 : // restore cursor
298 0 : SwCrsrShell::Pop( sal_False );
299 :
300 0 : if( bDelFull )
301 : {
302 0 : DelFullPara();
303 0 : UpdateAttr();
304 0 : break;
305 : }
306 : }
307 :
308 : {
309 : /* #108049# Save the startnode of the current cell */
310 : const SwStartNode * pSNdOld;
311 0 : pSNdOld = GetSwCrsr()->GetNode()->
312 0 : FindTableBoxStartNode();
313 :
314 0 : if ( SwCrsrShell::IsEndPara() )
315 : {
316 : // #i41424# Introduced a couple of
317 : // Push()-Pop() pairs here. The reason for this is that a
318 : // Right()-Left() combination does not make sure, that
319 : // the cursor will be in its initial state, because there
320 : // may be a numbering in front of the next paragraph.
321 0 : SwCrsrShell::Push();
322 :
323 0 : if ( SwCrsrShell::Right(1, CRSR_SKIP_CHARS) )
324 : {
325 0 : if (IsCrsrInTbl() || (pWasInTblNd != IsCrsrInTbl()))
326 : {
327 : /* #108049# Save the startnode of the current
328 : cell. May be different to pSNdOld as we have
329 : moved. */
330 0 : const SwStartNode * pSNdNew = GetSwCrsr()
331 0 : ->GetNode()->FindTableBoxStartNode();
332 :
333 : /* #108049# Only move instead of deleting if we
334 : have moved to a different cell */
335 0 : if (pSNdOld != pSNdNew)
336 : {
337 0 : SwCrsrShell::Pop( sal_True );
338 0 : break;
339 : }
340 : }
341 : }
342 :
343 : // restore cursor
344 0 : SwCrsrShell::Pop( sal_False );
345 : }
346 : }
347 :
348 0 : OpenMark();
349 0 : SwCrsrShell::Right(1,CRSR_SKIP_CELLS);
350 0 : nRet = Delete();
351 0 : CloseMark( 0 != nRet );
352 0 : break;
353 :
354 : case nsSelectionType::SEL_FRM:
355 : case nsSelectionType::SEL_GRF:
356 : case nsSelectionType::SEL_OLE:
357 : case nsSelectionType::SEL_DRW:
358 : case nsSelectionType::SEL_DRW_TXT:
359 : case nsSelectionType::SEL_DRW_FORM:
360 : {
361 : /* #108205# Remember object's position. */
362 0 : Point aTmpPt = GetObjRect().TopLeft();
363 :
364 0 : DelSelectedObj();
365 :
366 : /* #108205# Set cursor to remembered position. */
367 0 : SetCrsr(&aTmpPt);
368 :
369 0 : LeaveSelFrmMode();
370 0 : UnSelectFrm();
371 : // #134369#
372 : OSL_ENSURE( !IsFrmSelected(),
373 : "<SwWrtShell::DelRight(..)> - <SwWrtShell::UnSelectFrm()> should unmark all objects" );
374 : // #134369#
375 : // leave draw mode, if necessary.
376 : {
377 0 : if (GetView().GetDrawFuncPtr())
378 : {
379 0 : GetView().GetDrawFuncPtr()->Deactivate();
380 0 : GetView().SetDrawFuncPtr(NULL);
381 : }
382 0 : if ( GetView().IsDrawMode() )
383 : {
384 0 : GetView().LeaveDrawCreate();
385 : }
386 : }
387 : }
388 :
389 : // #134369#
390 : // <IsFrmSelected()> can't be true - see above.
391 : {
392 0 : nSelection = GetSelectionType();
393 0 : if ( nsSelectionType::SEL_FRM & nSelection ||
394 : nsSelectionType::SEL_GRF & nSelection ||
395 : nsSelectionType::SEL_OLE & nSelection ||
396 : nsSelectionType::SEL_DRW & nSelection )
397 : {
398 0 : EnterSelFrmMode();
399 0 : GotoNextFly();
400 : }
401 : }
402 0 : nRet = 1;
403 0 : break;
404 : }
405 0 : return nRet;
406 : }
407 :
408 :
409 :
410 0 : long SwWrtShell::DelToEndOfPara()
411 : {
412 0 : SwActContext aActContext(this);
413 0 : ResetCursorStack();
414 0 : Push();
415 0 : SetMark();
416 0 : if( !MovePara(fnParaCurr,fnParaEnd))
417 : {
418 0 : Pop(sal_False);
419 0 : return 0;
420 : }
421 0 : long nRet = Delete();
422 0 : Pop(sal_False);
423 0 : if( nRet )
424 0 : UpdateAttr();
425 0 : return nRet;
426 : }
427 :
428 :
429 :
430 0 : long SwWrtShell::DelToStartOfPara()
431 : {
432 0 : SwActContext aActContext(this);
433 0 : ResetCursorStack();
434 0 : Push();
435 0 : SetMark();
436 0 : if( !MovePara(fnParaCurr,fnParaStart))
437 : {
438 0 : Pop(sal_False);
439 0 : return 0;
440 : }
441 0 : long nRet = Delete();
442 0 : Pop(sal_False);
443 0 : if( nRet )
444 0 : UpdateAttr();
445 0 : return nRet;
446 : }
447 : /*
448 : * alle Loeschoperationen sollten mit Find statt mit
449 : * Nxt-/PrvDelim arbeiten, da letzteren mit Wrap Around arbeiten
450 : * -- das ist wohl nicht gewuenscht.
451 : */
452 :
453 :
454 :
455 0 : long SwWrtShell::DelToStartOfSentence()
456 : {
457 0 : if(IsStartOfDoc())
458 0 : return 0;
459 0 : OpenMark();
460 0 : long nRet = _BwdSentence() ? Delete() : 0;
461 0 : CloseMark( 0 != nRet );
462 0 : return nRet;
463 : }
464 :
465 :
466 :
467 0 : long SwWrtShell::DelToEndOfSentence()
468 : {
469 0 : if(IsEndOfDoc())
470 0 : return 0;
471 0 : OpenMark();
472 0 : long nRet = _FwdSentence() ? Delete() : 0;
473 0 : CloseMark( 0 != nRet );
474 0 : return nRet;
475 : }
476 :
477 :
478 :
479 0 : long SwWrtShell::DelNxtWord()
480 : {
481 0 : if(IsEndOfDoc())
482 0 : return 0;
483 0 : SwActContext aActContext(this);
484 0 : ResetCursorStack();
485 0 : EnterStdMode();
486 0 : SetMark();
487 0 : if(IsEndWrd() && !IsSttWrd())
488 0 : _NxtWrdForDelete(); // #i92468#
489 0 : if(IsSttWrd() || IsEndPara())
490 0 : _NxtWrdForDelete(); // #i92468#
491 : else
492 0 : _EndWrd();
493 :
494 0 : long nRet = Delete();
495 0 : if( nRet )
496 0 : UpdateAttr();
497 : else
498 0 : SwapPam();
499 0 : ClearMark();
500 0 : return nRet;
501 : }
502 :
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-1 spaces
521 0 : short n = -1;
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 :
544 :
545 :
546 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|