1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: edundo.cxx,v $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 // MARKER(update_precomp.py): autogen include statement, do not remove
32 #include "precompiled_sw.hxx"
35 #include <svx/svdview.hxx>
42 #include <dcontact.hxx>
45 #include <viewimp.hxx>
48 /** helper function to select all objects in an SdrMarkList;
49 * implementation: see below */
50 void lcl_SelectSdrMarkList( SwEditShell
* pShell
,
51 const SdrMarkList
* pSdrMarkList
);
54 BOOL
SwEditShell::Undo( SwUndoId nUndoId
, USHORT nCnt
)
56 SET_CURR_SHELL( this );
58 // #105332# current undo state was not saved
60 BOOL bSaveDoesUndo
= GetDoc()->DoesUndo();
62 GetDoc()->DoUndo( FALSE
);
65 // eigentlich muesste ja nur der aktuelle Cursor berarbeitet
66 // werden, d.H. falls ein Ring besteht, diesen temporaer aufheben,
67 // damit nicht bei Einfuge-Operationen innerhalb von Undo
68 // an allen Bereichen eingefuegt wird.
70 SetMark(); // Bound1 und Bound2 in den gleichen Node
73 // JP 02.04.98: Cursor merken - beim Auto-Format/-Korrektur
74 // soll dieser wieder an die Position
75 SwUndoId nLastUndoId
= GetDoc()->GetUndoIds(NULL
, NULL
);
76 BOOL bRestoreCrsr
= 1 == nCnt
&& ( UNDO_AUTOFORMAT
== nLastUndoId
||
77 UNDO_AUTOCORRECT
== nLastUndoId
);
80 //JP 18.09.97: gesicherten TabellenBoxPtr zerstoeren, eine autom.
81 // Erkennung darf nur noch fuer die neue "Box" erfolgen!
84 RedlineMode_t eOld
= GetDoc()->GetRedlineMode();
86 SwUndoIter
aUndoIter( GetCrsr(), nUndoId
);
91 bRet
= GetDoc()->Undo( aUndoIter
) || bRet
;
93 if( !aUndoIter
.IsNextUndo() )
96 // es geht weiter, also erzeuge einen neuen Cursor wenn
97 // der alte schon eine Selection hat
98 // JP 02.04.98: aber nicht wenns ein Autoformat ist
99 if( !bRestoreCrsr
&& HasSelection() )
102 aUndoIter
.pAktPam
= GetCrsr();
107 Pop( !bRestoreCrsr
);
109 if( aUndoIter
.pSelFmt
) // dann erzeuge eine Rahmen-Selection
111 if( RES_DRAWFRMFMT
== aUndoIter
.pSelFmt
->Which() )
113 SdrObject
* pSObj
= aUndoIter
.pSelFmt
->FindSdrObject();
114 ((SwFEShell
*)this)->SelectObj( pSObj
->GetCurrentBoundRect().Center() );
119 SwFlyFrm
* pFly
= ((SwFlyFrmFmt
*)aUndoIter
.pSelFmt
)->GetFrm(
122 ((SwFEShell
*)this)->SelectFlyFrm( *pFly
, TRUE
);
125 else if( aUndoIter
.pMarkList
)
127 lcl_SelectSdrMarkList( this, aUndoIter
.pMarkList
);
129 else if( GetCrsr()->GetNext() != GetCrsr() ) // gehe nach einem
130 GoNextCrsr(); // Undo zur alten Undo-Position !!
132 GetDoc()->SetRedlineMode( eOld
);
133 GetDoc()->CompressRedlines();
135 //JP 18.09.97: autom. Erkennung fuer die neue "Box"
140 // #105332# undo state was not restored but set to FALSE everytime
141 GetDoc()->DoUndo( bSaveDoesUndo
);
145 USHORT
SwEditShell::Redo( USHORT nCnt
)
147 SET_CURR_SHELL( this );
151 // #105332# undo state was not saved
152 BOOL bSaveDoesUndo
= GetDoc()->DoesUndo();
154 GetDoc()->DoUndo( FALSE
);
158 // eigentlich muesste ja nur der aktuelle Cursor berarbeitet
159 // werden, d.H. falls ein Ring besteht, diesen temporaer aufheben,
160 // damit nicht bei Einfuge-Operationen innerhalb von Undo
161 // an allen Bereichen eingefuegt wird.
163 SetMark(); // Bound1 und Bound2 in den gleichen Node
166 //JP 18.09.97: gesicherten TabellenBoxPtr zerstoeren, eine autom.
167 // Erkennung darf nur noch fuer die neue "Box" erfolgen!
170 RedlineMode_t eOld
= GetDoc()->GetRedlineMode();
172 SwUndoIter
aUndoIter( GetCrsr(), UNDO_EMPTY
);
177 bRet
= GetDoc()->Redo( aUndoIter
) || bRet
;
179 if( !aUndoIter
.IsNextUndo() )
182 // es geht weiter, also erzeugen einen neuen Cursor wenn
183 // der alte schon eine SSelection hat
187 aUndoIter
.pAktPam
= GetCrsr();
192 if( aUndoIter
.IsUpdateAttr() )
195 if( aUndoIter
.pSelFmt
) // dann erzeuge eine Rahmen-Selection
197 if( RES_DRAWFRMFMT
== aUndoIter
.pSelFmt
->Which() )
199 SdrObject
* pSObj
= aUndoIter
.pSelFmt
->FindSdrObject();
200 ((SwFEShell
*)this)->SelectObj( pSObj
->GetCurrentBoundRect().Center() );
205 SwFlyFrm
* pFly
= ((SwFlyFrmFmt
*)aUndoIter
.pSelFmt
)->GetFrm(
208 ((SwFEShell
*)this)->SelectFlyFrm( *pFly
, TRUE
);
211 else if( aUndoIter
.pMarkList
)
213 lcl_SelectSdrMarkList( this, aUndoIter
.pMarkList
);
215 else if( GetCrsr()->GetNext() != GetCrsr() ) // gehe nach einem
216 GoNextCrsr(); // Redo zur alten Undo-Position !!
218 GetDoc()->SetRedlineMode( eOld
);
219 GetDoc()->CompressRedlines();
221 //JP 18.09.97: autom. Erkennung fuer die neue "Box"
227 // #105332# undo state was not restored but set FALSE everytime
228 GetDoc()->DoUndo( bSaveDoesUndo
);
233 USHORT
SwEditShell::Repeat( USHORT nCount
)
235 SET_CURR_SHELL( this );
240 SwUndoIter
aUndoIter( GetCrsr(), UNDO_EMPTY
);
241 bRet
= GetDoc()->Repeat( aUndoIter
, nCount
) || bRet
;
247 // abfragen/setzen der Anzahl von wiederherstellbaren Undo-Actions
249 USHORT
SwEditShell::GetUndoActionCount()
251 return SwDoc::GetUndoActionCount();
255 void SwEditShell::SetUndoActionCount( USHORT nNew
)
257 SwDoc::SetUndoActionCount( nNew
);
263 void lcl_SelectSdrMarkList( SwEditShell
* pShell
,
264 const SdrMarkList
* pSdrMarkList
)
266 ASSERT( pShell
!= NULL
, "need shell!" );
267 ASSERT( pSdrMarkList
!= NULL
, "need mark list" );
269 if( pShell
->ISA( SwFEShell
) )
271 SwFEShell
* pFEShell
= static_cast<SwFEShell
*>( pShell
);
272 for( USHORT i
= 0; i
< pSdrMarkList
->GetMarkCount(); ++i
)
273 pFEShell
->SelectObj( Point(),
274 (i
==0) ? 0 : SW_ADD_SELECT
,
275 pSdrMarkList
->GetMark( i
)->GetMarkedSdrObj() );
277 // the old implementation would always unselect
278 // objects, even if no new ones were selected. If this
279 // is a problem, we need to re-work this a little.
280 ASSERT( pSdrMarkList
->GetMarkCount() != 0, "empty mark list" );