LCOV - code coverage report
Current view: top level - vcl/source/edit - textundo.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 0 178 0.0 %
Date: 2015-06-13 12:38:46 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->FormatAndUpdate( GetView() );
     123           0 : }
     124             : 
     125           0 : TextUndo::TextUndo( TextEngine* p )
     126             : {
     127           0 :     mpTextEngine = p;
     128           0 : }
     129             : 
     130           0 : TextUndo::~TextUndo()
     131             : {
     132           0 : }
     133             : 
     134           0 : OUString TextUndo::GetComment() const
     135             : {
     136           0 :     return OUString();
     137             : }
     138             : 
     139           0 : void TextUndo::SetSelection( const TextSelection& rSel )
     140             : {
     141           0 :     if ( GetView() )
     142           0 :         GetView()->ImpSetSelection( rSel );
     143           0 : }
     144             : 
     145           0 : TextUndoDelPara::TextUndoDelPara( TextEngine* pTextEngine, TextNode* pNode, sal_uLong nPara )
     146           0 :                     : TextUndo( pTextEngine )
     147             : {
     148           0 :     mpNode = pNode;
     149           0 :     mnPara = nPara;
     150           0 :     mbDelObject = true;
     151           0 : }
     152             : 
     153           0 : TextUndoDelPara::~TextUndoDelPara()
     154             : {
     155           0 :     if ( mbDelObject )
     156           0 :         delete mpNode;
     157           0 : }
     158             : 
     159           0 : void TextUndoDelPara::Undo()
     160             : {
     161           0 :     GetTextEngine()->InsertContent( mpNode, mnPara );
     162           0 :     mbDelObject = false;    // belongs again to the engine
     163             : 
     164           0 :     if ( GetView() )
     165             :     {
     166           0 :         TextSelection aSel( TextPaM( mnPara, 0 ), TextPaM( mnPara, mpNode->GetText().getLength() ) );
     167           0 :         SetSelection( aSel );
     168             :     }
     169           0 : }
     170             : 
     171           0 : void TextUndoDelPara::Redo()
     172             : {
     173             :     // pNode is not valid anymore in case an Undo joined paragraphs
     174           0 :     mpNode = GetDoc()->GetNodes()[ mnPara ];
     175             : 
     176           0 :     delete GetTEParaPortions()->GetObject( mnPara );
     177           0 :     GetTEParaPortions()->Remove( mnPara );
     178             : 
     179             :     // do not delete Node because of Undo!
     180           0 :     GetDoc()->GetNodes().erase( ::std::find( GetDoc()->GetNodes().begin(), GetDoc()->GetNodes().end(), mpNode ) );
     181           0 :     GetTextEngine()->ImpParagraphRemoved( mnPara );
     182             : 
     183           0 :     mbDelObject = true; // belongs again to the Undo
     184             : 
     185           0 :     sal_uLong nParas = GetDoc()->GetNodes().size();
     186           0 :     sal_uLong n = mnPara < nParas ? mnPara : (nParas-1);
     187           0 :     TextNode* pN = GetDoc()->GetNodes()[ n ];
     188           0 :     TextPaM aPaM( n, pN->GetText().getLength() );
     189           0 :     SetSelection( aPaM );
     190           0 : }
     191             : 
     192           0 : OUString TextUndoDelPara::GetComment () const
     193             : {
     194           0 :     return ResId(STR_TEXTUNDO_DELPARA, *ImplGetResMgr());
     195             : }
     196             : 
     197           0 : TextUndoConnectParas::TextUndoConnectParas( TextEngine* pTextEngine, sal_uLong nPara, sal_uInt16 nPos )
     198           0 :                     :   TextUndo( pTextEngine )
     199             : {
     200           0 :     mnPara = nPara;
     201           0 :     mnSepPos = nPos;
     202           0 : }
     203             : 
     204           0 : TextUndoConnectParas::~TextUndoConnectParas()
     205             : {
     206           0 : }
     207             : 
     208           0 : void TextUndoConnectParas::Undo()
     209             : {
     210           0 :     TextPaM aPaM = GetTextEngine()->SplitContent( mnPara, mnSepPos );
     211           0 :     SetSelection( aPaM );
     212           0 : }
     213             : 
     214           0 : void TextUndoConnectParas::Redo()
     215             : {
     216           0 :     TextPaM aPaM = GetTextEngine()->ConnectContents( mnPara );
     217           0 :     SetSelection( aPaM );
     218           0 : }
     219             : 
     220           0 : OUString TextUndoConnectParas::GetComment () const
     221             : {
     222           0 :     return ResId(STR_TEXTUNDO_CONNECTPARAS, *ImplGetResMgr()).toString();
     223             : }
     224             : 
     225           0 : TextUndoSplitPara::TextUndoSplitPara( TextEngine* pTextEngine, sal_uLong nPara, sal_uInt16 nPos )
     226           0 :                     : TextUndo( pTextEngine )
     227             : {
     228           0 :     mnPara = nPara;
     229           0 :     mnSepPos = nPos;
     230           0 : }
     231             : 
     232           0 : TextUndoSplitPara::~TextUndoSplitPara()
     233             : {
     234           0 : }
     235             : 
     236           0 : void TextUndoSplitPara::Undo()
     237             : {
     238           0 :     TextPaM aPaM = GetTextEngine()->ConnectContents( mnPara );
     239           0 :     SetSelection( aPaM );
     240           0 : }
     241             : 
     242           0 : void TextUndoSplitPara::Redo()
     243             : {
     244           0 :     TextPaM aPaM = GetTextEngine()->SplitContent( mnPara, mnSepPos );
     245           0 :     SetSelection( aPaM );
     246           0 : }
     247             : 
     248           0 : OUString TextUndoSplitPara::GetComment () const
     249             : {
     250           0 :     return ResId(STR_TEXTUNDO_SPLITPARA, *ImplGetResMgr());
     251             : }
     252             : 
     253           0 : TextUndoInsertChars::TextUndoInsertChars( TextEngine* pTextEngine, const TextPaM& rTextPaM, const OUString& rStr )
     254             :                     : TextUndo( pTextEngine ),
     255           0 :                         maTextPaM( rTextPaM ), maText( rStr )
     256             : {
     257           0 : }
     258             : 
     259           0 : void TextUndoInsertChars::Undo()
     260             : {
     261           0 :     TextSelection aSel( maTextPaM, maTextPaM );
     262           0 :     aSel.GetEnd().GetIndex() = aSel.GetEnd().GetIndex() + maText.getLength();
     263           0 :     TextPaM aPaM = GetTextEngine()->ImpDeleteText( aSel );
     264           0 :     SetSelection( aPaM );
     265           0 : }
     266             : 
     267           0 : void TextUndoInsertChars::Redo()
     268             : {
     269           0 :     TextSelection aSel( maTextPaM, maTextPaM );
     270           0 :     GetTextEngine()->ImpInsertText( aSel, maText );
     271           0 :     TextPaM aNewPaM( maTextPaM );
     272           0 :     aNewPaM.GetIndex() = aNewPaM.GetIndex() + maText.getLength();
     273           0 :     SetSelection( TextSelection( aSel.GetStart(), aNewPaM ) );
     274           0 : }
     275             : 
     276           0 : bool TextUndoInsertChars::Merge( SfxUndoAction* pNextAction )
     277             : {
     278           0 :     if ( !pNextAction->ISA( TextUndoInsertChars ) )
     279           0 :         return false;
     280             : 
     281           0 :     TextUndoInsertChars* pNext = static_cast<TextUndoInsertChars*>(pNextAction);
     282             : 
     283           0 :     if ( maTextPaM.GetPara() != pNext->maTextPaM.GetPara() )
     284           0 :         return false;
     285             : 
     286           0 :     if ( ( maTextPaM.GetIndex() + maText.getLength() ) == pNext->maTextPaM.GetIndex() )
     287             :     {
     288           0 :         maText += pNext->maText;
     289           0 :         return true;
     290             :     }
     291           0 :     return false;
     292             : }
     293             : 
     294           0 : OUString TextUndoInsertChars::GetComment () const
     295             : {
     296             :     // multiple lines?
     297           0 :     OUString sText(maText);
     298           0 :     Shorten(sText);
     299           0 :     return ResId(STR_TEXTUNDO_INSERTCHARS, *ImplGetResMgr()).toString().replaceAll("$1", sText);
     300             : }
     301             : 
     302           0 : TextUndoRemoveChars::TextUndoRemoveChars( TextEngine* pTextEngine, const TextPaM& rTextPaM, const OUString& rStr )
     303             :                     : TextUndo( pTextEngine ),
     304           0 :                         maTextPaM( rTextPaM ), maText( rStr )
     305             : {
     306           0 : }
     307             : 
     308           0 : void TextUndoRemoveChars::Undo()
     309             : {
     310           0 :     TextSelection aSel( maTextPaM, maTextPaM );
     311           0 :     GetTextEngine()->ImpInsertText( aSel, maText );
     312           0 :     aSel.GetEnd().GetIndex() = aSel.GetEnd().GetIndex() + maText.getLength();
     313           0 :     SetSelection( aSel );
     314           0 : }
     315             : 
     316           0 : void TextUndoRemoveChars::Redo()
     317             : {
     318           0 :     TextSelection aSel( maTextPaM, maTextPaM );
     319           0 :     aSel.GetEnd().GetIndex() = aSel.GetEnd().GetIndex() + maText.getLength();
     320           0 :     TextPaM aPaM = GetTextEngine()->ImpDeleteText( aSel );
     321           0 :     SetSelection( aPaM );
     322           0 : }
     323             : 
     324           0 : OUString TextUndoRemoveChars::GetComment () const
     325             : {
     326             :     // multiple lines?
     327           0 :     OUString sText(maText);
     328           0 :     Shorten(sText);
     329           0 :     return OUString(ResId(STR_TEXTUNDO_REMOVECHARS, *ImplGetResMgr())).replaceAll("$1", sText);
     330             : }
     331             : 
     332             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11