LCOV - code coverage report
Current view: top level - vcl/source/edit - textundo.cxx (source / functions) Hit Total Coverage
Test: commit e02a6cb2c3e2b23b203b422e4e0680877f232636 Lines: 0 179 0.0 %
Date: 2014-04-14 Functions: 0 70 0.0 %
Legend: Lines: hit not hit

          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 "textundo.hxx"
      21             : #include "textund2.hxx"
      22             : #include "textundo.hrc"
      23             : 
      24             : #include <vcl/texteng.hxx>
      25             : #include <vcl/textview.hxx>
      26             : #include <vcl/textdata.hxx>
      27             : #include <textdoc.hxx>
      28             : #include <textdat2.hxx>
      29             : #include <svdata.hxx>
      30             : #include <tools/resid.hxx>
      31             : 
      32           0 : TYPEINIT1( TextUndo, SfxUndoAction );
      33           0 : TYPEINIT1( TextUndoDelPara, TextUndo );
      34           0 : TYPEINIT1( TextUndoConnectParas, TextUndo );
      35           0 : TYPEINIT1( TextUndoSplitPara, TextUndo );
      36           0 : TYPEINIT1( TextUndoInsertChars, TextUndo );
      37           0 : TYPEINIT1( TextUndoRemoveChars, TextUndo );
      38             : 
      39             : namespace
      40             : {
      41             : 
      42             : // Shorten() -- inserts ellipsis (...) in the middle of a long text
      43           0 : void Shorten (OUString& rString)
      44             : {
      45           0 :     unsigned nLen = rString.getLength();
      46           0 :     if (nLen > 48)
      47             :     {
      48             :         // If possible, we don't break a word, hence first we look for a space.
      49             :         // Space before the ellipsis:
      50           0 :         int iFirst = rString.lastIndexOf(' ', 32);
      51           0 :         if (iFirst == -1 || unsigned(iFirst) < 16)
      52           0 :             iFirst = 24; // not possible
      53             :         // Space after the ellipsis:
      54           0 :         int iLast = rString.indexOf(' ', nLen - 16);
      55           0 :         if (iLast == -1 || unsigned(iLast) > nLen - 4)
      56           0 :             iLast = nLen - 8; // not possible
      57             :         // finally:
      58           0 :         rString =
      59           0 :             rString.copy(0, iFirst + 1) +
      60           0 :             "..." +
      61           0 :             rString.copy(iLast);
      62             :     }
      63           0 : }
      64             : 
      65             : } // namespace
      66             : 
      67           0 : TextUndoManager::TextUndoManager( TextEngine* p )
      68             : {
      69           0 :     mpTextEngine = p;
      70           0 : }
      71             : 
      72           0 : TextUndoManager::~TextUndoManager()
      73             : {
      74           0 : }
      75             : 
      76           0 : bool TextUndoManager::Undo()
      77             : {
      78           0 :     if ( GetUndoActionCount() == 0 )
      79           0 :         return false;
      80             : 
      81           0 :     UndoRedoStart();
      82             : 
      83           0 :     mpTextEngine->SetIsInUndo( true );
      84           0 :     bool bDone = SfxUndoManager::Undo();
      85           0 :     mpTextEngine->SetIsInUndo( false );
      86             : 
      87           0 :     UndoRedoEnd();
      88             : 
      89           0 :     return bDone;
      90             : }
      91             : 
      92           0 : bool TextUndoManager::Redo()
      93             : {
      94           0 :     if ( GetRedoActionCount() == 0 )
      95           0 :         return false;
      96             : 
      97           0 :     UndoRedoStart();
      98             : 
      99           0 :     mpTextEngine->SetIsInUndo( true );
     100           0 :     bool bDone = SfxUndoManager::Redo();
     101           0 :     mpTextEngine->SetIsInUndo( false );
     102             : 
     103           0 :     UndoRedoEnd();
     104             : 
     105           0 :     return bDone;
     106             : }
     107             : 
     108           0 : void TextUndoManager::UndoRedoStart()
     109             : {
     110             :     DBG_ASSERT( GetView(), "Undo/Redo: Active View?" );
     111           0 : }
     112             : 
     113           0 : void TextUndoManager::UndoRedoEnd()
     114             : {
     115           0 :     if ( GetView() )
     116             :     {
     117           0 :         TextSelection aNewSel( GetView()->GetSelection() );
     118           0 :         aNewSel.GetStart() = aNewSel.GetEnd();
     119           0 :         GetView()->ImpSetSelection( aNewSel );
     120             :     }
     121             : 
     122           0 :     mpTextEngine->UpdateSelections();
     123             : 
     124           0 :     mpTextEngine->FormatAndUpdate( GetView() );
     125           0 : }
     126             : 
     127           0 : TextUndo::TextUndo( TextEngine* p )
     128             : {
     129           0 :     mpTextEngine = p;
     130           0 : }
     131             : 
     132           0 : TextUndo::~TextUndo()
     133             : {
     134           0 : }
     135             : 
     136           0 : OUString TextUndo::GetComment() const
     137             : {
     138           0 :     return OUString();
     139             : }
     140             : 
     141           0 : void TextUndo::SetSelection( const TextSelection& rSel )
     142             : {
     143           0 :     if ( GetView() )
     144           0 :         GetView()->ImpSetSelection( rSel );
     145           0 : }
     146             : 
     147           0 : TextUndoDelPara::TextUndoDelPara( TextEngine* pTextEngine, TextNode* pNode, sal_uLong nPara )
     148           0 :                     : TextUndo( pTextEngine )
     149             : {
     150           0 :     mpNode = pNode;
     151           0 :     mnPara = nPara;
     152           0 :     mbDelObject = true;
     153           0 : }
     154             : 
     155           0 : TextUndoDelPara::~TextUndoDelPara()
     156             : {
     157           0 :     if ( mbDelObject )
     158           0 :         delete mpNode;
     159           0 : }
     160             : 
     161           0 : void TextUndoDelPara::Undo()
     162             : {
     163           0 :     GetTextEngine()->InsertContent( mpNode, mnPara );
     164           0 :     mbDelObject = false;    // belongs again to the engine
     165             : 
     166           0 :     if ( GetView() )
     167             :     {
     168           0 :         TextSelection aSel( TextPaM( mnPara, 0 ), TextPaM( mnPara, mpNode->GetText().getLength() ) );
     169           0 :         SetSelection( aSel );
     170             :     }
     171           0 : }
     172             : 
     173           0 : void TextUndoDelPara::Redo()
     174             : {
     175             :     // pNode is not valid anymore in case an Undo joined paragraphs
     176           0 :     mpNode = GetDoc()->GetNodes().GetObject( mnPara );
     177             : 
     178           0 :     delete GetTEParaPortions()->GetObject( mnPara );
     179           0 :     GetTEParaPortions()->Remove( mnPara );
     180             : 
     181             :     // do not delete Node because of Undo!
     182           0 :     GetDoc()->GetNodes().Remove( mnPara );
     183           0 :     GetTextEngine()->ImpParagraphRemoved( mnPara );
     184             : 
     185           0 :     mbDelObject = true; // belongs again to the Undo
     186             : 
     187           0 :     sal_uLong nParas = GetDoc()->GetNodes().Count();
     188           0 :     sal_uLong n = mnPara < nParas ? mnPara : (nParas-1);
     189           0 :     TextNode* pN = GetDoc()->GetNodes().GetObject( n );
     190           0 :     TextPaM aPaM( n, pN->GetText().getLength() );
     191           0 :     SetSelection( aPaM );
     192           0 : }
     193             : 
     194           0 : OUString TextUndoDelPara::GetComment () const
     195             : {
     196           0 :     return ResId(STR_TEXTUNDO_DELPARA, *ImplGetResMgr());
     197             : }
     198             : 
     199           0 : TextUndoConnectParas::TextUndoConnectParas( TextEngine* pTextEngine, sal_uLong nPara, sal_uInt16 nPos )
     200           0 :                     :   TextUndo( pTextEngine )
     201             : {
     202           0 :     mnPara = nPara;
     203           0 :     mnSepPos = nPos;
     204           0 : }
     205             : 
     206           0 : TextUndoConnectParas::~TextUndoConnectParas()
     207             : {
     208           0 : }
     209             : 
     210           0 : void TextUndoConnectParas::Undo()
     211             : {
     212           0 :     TextPaM aPaM = GetTextEngine()->SplitContent( mnPara, mnSepPos );
     213           0 :     SetSelection( aPaM );
     214           0 : }
     215             : 
     216           0 : void TextUndoConnectParas::Redo()
     217             : {
     218           0 :     TextPaM aPaM = GetTextEngine()->ConnectContents( mnPara );
     219           0 :     SetSelection( aPaM );
     220           0 : }
     221             : 
     222           0 : OUString TextUndoConnectParas::GetComment () const
     223             : {
     224           0 :     return ResId(STR_TEXTUNDO_CONNECTPARAS, *ImplGetResMgr()).toString();
     225             : }
     226             : 
     227           0 : TextUndoSplitPara::TextUndoSplitPara( TextEngine* pTextEngine, sal_uLong nPara, sal_uInt16 nPos )
     228           0 :                     : TextUndo( pTextEngine )
     229             : {
     230           0 :     mnPara = nPara;
     231           0 :     mnSepPos = nPos;
     232           0 : }
     233             : 
     234           0 : TextUndoSplitPara::~TextUndoSplitPara()
     235             : {
     236           0 : }
     237             : 
     238           0 : void TextUndoSplitPara::Undo()
     239             : {
     240           0 :     TextPaM aPaM = GetTextEngine()->ConnectContents( mnPara );
     241           0 :     SetSelection( aPaM );
     242           0 : }
     243             : 
     244           0 : void TextUndoSplitPara::Redo()
     245             : {
     246           0 :     TextPaM aPaM = GetTextEngine()->SplitContent( mnPara, mnSepPos );
     247           0 :     SetSelection( aPaM );
     248           0 : }
     249             : 
     250           0 : OUString TextUndoSplitPara::GetComment () const
     251             : {
     252           0 :     return ResId(STR_TEXTUNDO_SPLITPARA, *ImplGetResMgr());
     253             : }
     254             : 
     255           0 : TextUndoInsertChars::TextUndoInsertChars( TextEngine* pTextEngine, const TextPaM& rTextPaM, const OUString& rStr )
     256             :                     : TextUndo( pTextEngine ),
     257           0 :                         maTextPaM( rTextPaM ), maText( rStr )
     258             : {
     259           0 : }
     260             : 
     261           0 : void TextUndoInsertChars::Undo()
     262             : {
     263           0 :     TextSelection aSel( maTextPaM, maTextPaM );
     264           0 :     aSel.GetEnd().GetIndex() = aSel.GetEnd().GetIndex() + maText.getLength();
     265           0 :     TextPaM aPaM = GetTextEngine()->ImpDeleteText( aSel );
     266           0 :     SetSelection( aPaM );
     267           0 : }
     268             : 
     269           0 : void TextUndoInsertChars::Redo()
     270             : {
     271           0 :     TextSelection aSel( maTextPaM, maTextPaM );
     272           0 :     GetTextEngine()->ImpInsertText( aSel, maText );
     273           0 :     TextPaM aNewPaM( maTextPaM );
     274           0 :     aNewPaM.GetIndex() = aNewPaM.GetIndex() + maText.getLength();
     275           0 :     SetSelection( TextSelection( aSel.GetStart(), aNewPaM ) );
     276           0 : }
     277             : 
     278           0 : bool TextUndoInsertChars::Merge( SfxUndoAction* pNextAction )
     279             : {
     280           0 :     if ( !pNextAction->ISA( TextUndoInsertChars ) )
     281           0 :         return false;
     282             : 
     283           0 :     TextUndoInsertChars* pNext = (TextUndoInsertChars*)pNextAction;
     284             : 
     285           0 :     if ( maTextPaM.GetPara() != pNext->maTextPaM.GetPara() )
     286           0 :         return false;
     287             : 
     288           0 :     if ( ( maTextPaM.GetIndex() + maText.getLength() ) == pNext->maTextPaM.GetIndex() )
     289             :     {
     290           0 :         maText += pNext->maText;
     291           0 :         return true;
     292             :     }
     293           0 :     return false;
     294             : }
     295             : 
     296           0 : OUString TextUndoInsertChars::GetComment () const
     297             : {
     298             :     // multiple lines?
     299           0 :     OUString sText(maText);
     300           0 :     Shorten(sText);
     301           0 :     return ResId(STR_TEXTUNDO_INSERTCHARS, *ImplGetResMgr()).toString().replaceAll("$1", sText);
     302             : }
     303             : 
     304           0 : TextUndoRemoveChars::TextUndoRemoveChars( TextEngine* pTextEngine, const TextPaM& rTextPaM, const OUString& rStr )
     305             :                     : TextUndo( pTextEngine ),
     306           0 :                         maTextPaM( rTextPaM ), maText( rStr )
     307             : {
     308           0 : }
     309             : 
     310           0 : void TextUndoRemoveChars::Undo()
     311             : {
     312           0 :     TextSelection aSel( maTextPaM, maTextPaM );
     313           0 :     GetTextEngine()->ImpInsertText( aSel, maText );
     314           0 :     aSel.GetEnd().GetIndex() = aSel.GetEnd().GetIndex() + maText.getLength();
     315           0 :     SetSelection( aSel );
     316           0 : }
     317             : 
     318           0 : void TextUndoRemoveChars::Redo()
     319             : {
     320           0 :     TextSelection aSel( maTextPaM, maTextPaM );
     321           0 :     aSel.GetEnd().GetIndex() = aSel.GetEnd().GetIndex() + maText.getLength();
     322           0 :     TextPaM aPaM = GetTextEngine()->ImpDeleteText( aSel );
     323           0 :     SetSelection( aPaM );
     324           0 : }
     325             : 
     326           0 : OUString TextUndoRemoveChars::GetComment () const
     327             : {
     328             :     // multiple lines?
     329           0 :     OUString sText(maText);
     330           0 :     Shorten(sText);
     331           0 :     return OUString(ResId(STR_TEXTUNDO_REMOVECHARS, *ImplGetResMgr())).replaceAll("$1", sText);
     332             : }
     333             : 
     334             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10