summaryrefslogtreecommitdiff
path: root/binfilter/bf_svx/source/editeng/svx_editundo.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'binfilter/bf_svx/source/editeng/svx_editundo.cxx')
-rw-r--r--binfilter/bf_svx/source/editeng/svx_editundo.cxx265
1 files changed, 265 insertions, 0 deletions
diff --git a/binfilter/bf_svx/source/editeng/svx_editundo.cxx b/binfilter/bf_svx/source/editeng/svx_editundo.cxx
new file mode 100644
index 000000000000..9cbb22fed8f4
--- /dev/null
+++ b/binfilter/bf_svx/source/editeng/svx_editundo.cxx
@@ -0,0 +1,265 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*************************************************************************
+ *
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * This file is part of OpenOffice.org.
+ *
+ * OpenOffice.org is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License version 3
+ * only, as published by the Free Software Foundation.
+ *
+ * OpenOffice.org is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License version 3 for more details
+ * (a copy is included in the LICENSE file that accompanied this code).
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * version 3 along with OpenOffice.org. If not, see
+ * <http://www.openoffice.org/license.html>
+ * for a copy of the LGPLv3 License.
+ *
+ ************************************************************************/
+
+
+#ifdef _MSC_VER
+#pragma hdrstop
+#endif
+
+
+#include <vcl/window.hxx>
+
+#include <impedit.hxx>
+#include <editeng.hxx>
+namespace binfilter {
+
+DBG_NAME( EditUndo )
+
+#define MAX_UNDOS 100 // ab dieser Menge darf geloescht werden....
+#define MIN_UNDOS 50 // soviel muss stehen bleiben...
+
+#define NO_UNDO 0xFFFF
+#define GROUP_NOTFOUND 0xFFFF
+
+/*N*/ TYPEINIT1( EditUndoInsertChars, EditUndo );
+
+
+ // -----------------------------------------------------------------------
+// EditUndoManager
+// ------------------------------------------------------------------------
+/*N*/ EditUndoManager::EditUndoManager( ImpEditEngine* p )
+/*N*/ {
+/*N*/ pImpEE = p;
+/*N*/ }
+
+
+
+ // -----------------------------------------------------------------------
+// EditUndo
+// ------------------------------------------------------------------------
+/*N*/ EditUndo::EditUndo( USHORT nI, ImpEditEngine* p )
+/*N*/ {
+/*N*/ DBG_CTOR( EditUndo, 0 );
+/*N*/ nId = nI;
+/*N*/ pImpEE = p;
+/*N*/ }
+
+/*N*/ EditUndo::~EditUndo()
+/*N*/ {
+/*N*/ DBG_DTOR( EditUndo, 0 );
+/*N*/ }
+
+/*N*/ USHORT __EXPORT EditUndo::GetId() const
+/*N*/ {
+/*N*/ DBG_CHKTHIS( EditUndo, 0 );
+/*N*/ return nId;
+/*N*/ }
+
+
+/*N*/ XubString __EXPORT EditUndo::GetComment() const
+/*N*/ {
+/*N*/ XubString aComment;
+/*N*/ if ( pImpEE )
+/*N*/ {
+/*N*/ EditEngine* pEditEng = pImpEE->GetEditEnginePtr();
+/*N*/ aComment = pEditEng->GetUndoComment( GetId() );
+/*N*/ }
+/*N*/ return aComment;
+/*N*/ }
+
+ // -----------------------------------------------------------------------
+// EditUndoInsertChars
+// ------------------------------------------------------------------------
+/*N*/ EditUndoInsertChars::EditUndoInsertChars( ImpEditEngine* pImpEE, const EPaM& rEPaM, const XubString& rStr )
+/*N*/ : EditUndo( EDITUNDO_INSERTCHARS, pImpEE ),
+/*N*/ aEPaM( rEPaM ), aText( rStr )
+/*N*/ {
+/*N*/ }
+
+/*N*/ void __EXPORT EditUndoInsertChars::Undo()
+/*N*/ {DBG_BF_ASSERT(0, "STRIP"); //STRIP001
+/*N*/ }
+
+/*N*/ void __EXPORT EditUndoInsertChars::Redo()
+/*N*/ {DBG_BF_ASSERT(0, "STRIP"); //STRIP001
+/*N*/ }
+
+/*N*/ BOOL __EXPORT EditUndoInsertChars::Merge( SfxUndoAction* pNextAction )
+/*N*/ {
+/*N*/ if ( !pNextAction->ISA( EditUndoInsertChars ) )
+/*N*/ return FALSE;
+/*N*/
+/*N*/ EditUndoInsertChars* pNext = (EditUndoInsertChars*)pNextAction;
+/*N*/
+/*N*/ if ( aEPaM.nPara != pNext->aEPaM.nPara )
+/*N*/ return FALSE;
+/*N*/
+/*N*/ if ( ( aEPaM.nIndex + aText.Len() ) == pNext->aEPaM.nIndex )
+/*N*/ {
+/*N*/ aText += pNext->aText;
+/*N*/ return TRUE;
+/*N*/ }
+/*N*/ return FALSE;
+/*N*/ }
+
+/*N*/ void __EXPORT EditUndoInsertChars::Repeat()
+/*N*/ {
+/*N*/ DBG_ERROR( "EditUndoInsertChars::Repeat nicht implementiert!" );
+/*N*/ }
+
+ // -----------------------------------------------------------------------
+// EditUndoRemoveChars
+// ------------------------------------------------------------------------
+
+
+
+
+ // -----------------------------------------------------------------------
+// EditUndoInsertFeature
+// ------------------------------------------------------------------------
+/*N*/ EditUndoInsertFeature::EditUndoInsertFeature( ImpEditEngine* pImpEE, const EPaM& rEPaM, const SfxPoolItem& rFeature)
+/*N*/ : EditUndo( EDITUNDO_INSERTFEATURE, pImpEE ), aEPaM( rEPaM )
+/*N*/ {
+/*N*/ pFeature = rFeature.Clone();
+/*N*/ DBG_ASSERT( pFeature, "Feature konnte nicht dupliziert werden: EditUndoInsertFeature" );
+/*N*/ }
+
+/*N*/ EditUndoInsertFeature::~EditUndoInsertFeature()
+/*N*/ {
+/*N*/ delete pFeature;
+/*N*/ }
+
+/*N*/ void __EXPORT EditUndoInsertFeature::Undo()
+/*N*/ {DBG_BF_ASSERT(0, "STRIP"); //STRIP001
+/*N*/ }
+
+/*N*/ void __EXPORT EditUndoInsertFeature::Redo()
+/*N*/ {DBG_BF_ASSERT(0, "STRIP"); //STRIP001
+/*N*/ }
+
+/*N*/ void __EXPORT EditUndoInsertFeature::Repeat()
+/*N*/ {
+/*N*/ DBG_ERROR( "EditUndoInsertFeature::Repeat nicht implementiert!" );
+/*N*/ }
+
+ // -----------------------------------------------------------------------
+// EditUndoMoveParagraphs
+// ------------------------------------------------------------------------
+
+
+
+
+
+ // -----------------------------------------------------------------------
+// EditUndoSetStyleSheet
+// ------------------------------------------------------------------------
+/*N*/ EditUndoSetStyleSheet::EditUndoSetStyleSheet( ImpEditEngine* pImpEE, USHORT nP,
+/*N*/ const XubString& rPrevName, SfxStyleFamily ePrevFam,
+/*N*/ const XubString& rNewName, SfxStyleFamily eNewFam,
+/*N*/ const SfxItemSet& rPrevParaAttribs )
+/*N*/ : EditUndo( EDITUNDO_STYLESHEET, pImpEE ), aPrevName( rPrevName ), aNewName( rNewName ),
+/*N*/ aPrevParaAttribs( rPrevParaAttribs )
+/*N*/ {
+/*N*/ ePrevFamily = ePrevFam;
+/*N*/ eNewFamily = eNewFam;
+/*N*/ nPara = nP;
+/*N*/ }
+
+/*N*/ EditUndoSetStyleSheet::~EditUndoSetStyleSheet()
+/*N*/ {
+/*N*/ }
+
+/*N*/ void __EXPORT EditUndoSetStyleSheet::Undo()
+/*N*/ {DBG_BF_ASSERT(0, "STRIP"); //STRIP001
+/*N*/ }
+
+/*N*/ void __EXPORT EditUndoSetStyleSheet::Redo()
+/*N*/ {DBG_BF_ASSERT(0, "STRIP"); //STRIP001
+/*N*/ }
+
+/*N*/ void __EXPORT EditUndoSetStyleSheet::Repeat()
+/*N*/ {
+/*N*/ DBG_ERROR( "EditUndoSetStyleSheet::Repeat nicht implementiert!" );
+/*N*/ }
+
+ // -----------------------------------------------------------------------
+// EditUndoSetParaAttribs
+// ------------------------------------------------------------------------
+/*N*/ EditUndoSetParaAttribs::EditUndoSetParaAttribs( ImpEditEngine* pImpEE, USHORT nP, const SfxItemSet& rPrevItems, const SfxItemSet& rNewItems )
+/*N*/ : EditUndo( EDITUNDO_PARAATTRIBS, pImpEE ),
+/*N*/ aPrevItems( rPrevItems ),
+/*N*/ aNewItems(rNewItems )
+/*N*/ {
+/*N*/ nPara = nP;
+/*N*/ }
+
+/*N*/ EditUndoSetParaAttribs::~EditUndoSetParaAttribs()
+/*N*/ {
+/*N*/ }
+
+/*N*/ void __EXPORT EditUndoSetParaAttribs::Undo()
+/*N*/ {DBG_BF_ASSERT(0, "STRIP"); //STRIP001
+/*N*/ }
+
+/*N*/ void __EXPORT EditUndoSetParaAttribs::Redo()
+/*N*/ {DBG_BF_ASSERT(0, "STRIP"); //STRIP001
+/*N*/ }
+
+/*N*/ void __EXPORT EditUndoSetParaAttribs::Repeat()
+/*N*/ {
+/*N*/ DBG_ERROR( "EditUndoSetParaAttribs::Repeat nicht implementiert!" );
+/*N*/ }
+
+ // -----------------------------------------------------------------------
+// EditUndoSetAttribs
+// ------------------------------------------------------------------------
+
+
+
+
+
+
+ // -----------------------------------------------------------------------
+// EditUndoTransliteration
+// ------------------------------------------------------------------------
+
+
+
+
+
+ // -----------------------------------------------------------------------
+// EditUndoMarkSelection
+// ------------------------------------------------------------------------
+
+
+
+
+
+}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */