Files
libreoffice/sw/source/core/inc/UndoCore.hxx

240 lines
6.8 KiB
C++
Raw Normal View History

2011-09-28 23:14:11 +01:00
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
re-base on ALv2 code. Includes: Patches contributed by Oliver-Rainer Wittmann sw34bf06: #i117783# - Writer's implementation of XPagePrintable - apply print settings to new printing routines http://svn.apache.org/viewvc?view=revision&revision=1172115 sw34bf06: #o12311627# use <rtl_random> methods to create unique ids for list styles and list ids http://svn.apache.org/viewvc?view=revision&revision=1172112 sw34bf06 #i114725#,#i115828# - method <SwDoc::ClearDoc()> - clear list structures completely http://svn.apache.org/viewvc?view=revision&revision=1172122 i#118572 - remove ui string and help content regarding usage of Java Mail in Writer's Mail Merge as Java Mail is not used. http://svn.apache.org/viewvc?view=revision&revision=1197035 Patches contributed by Mathias Bauer cws mba34issues01: #i117718#: provide filter name in case storage of medium does not allow to detect one http://svn.apache.org/viewvc?view=revision&revision=1172350 cws mba34issues01: #i117721#: directly provide parameters retrieved from SfxMedium http://svn.apache.org/viewvc?view=revision&revision=1172353 gnumake4 work variously http://svn.apache.org/viewvc?view=revision&revision=1394707 http://svn.apache.org/viewvc?view=revision&revision=1394326 http://svn.apache.org/viewvc?view=revision&revision=1396797 http://svn.apache.org/viewvc?view=revision&revision=1397315 cws mba34issues01: #i117723#: convert assertion into trace http://svn.apache.org/viewvc?view=revision&revision=1172355 cws mba34issues01: #i117699#: keep layout alive until swdoc dies http://svn.apache.org/viewvc?view=revision&revision=1172362 cws mba34issues01: #i117943#: missing color attributes in RTF clipboard http://svn.apache.org/viewvc?view=revision&revision=1172363 Patch contributed by Henning Brinkmann imported patch i#103878 http://svn.apache.org/viewvc?view=revision&revision=1172109 Patches contributed by Michael Stahl sw34bf06: #i117955#: WW8 export: disable storing of section breaks in endnotes http://svn.apache.org/viewvc?view=revision&revision=1172119 Patch contributed by imacat Fixed the Asian language work count. http://svn.apache.org/viewvc?view=revision&revision=1241345 Patch contributed by Pedro Giffuni i#20878 - Add comment with BZ issue for reference. http://svn.apache.org/viewvc?view=revision&revision=1244517 Patch contributed by Andre Fischer Do not add targets for junit tests when junit is disabled. http://svn.apache.org/viewvc?view=revision&revision=1241508 add writerperfect dependency.
2011-03-31 10:05:04 +02:00
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#ifndef SW_UNDOCORE_HXX
#define SW_UNDOCORE_HXX
#include <undobj.hxx>
#include <calbck.hxx>
class SfxItemSet;
class SwFmtColl;
class SwFmtAnchor;
class SdrMarkList;
class SwUndoDelete;
class SwRedlineSaveData;
class SwFmt;
namespace sw {
class UndoManager;
class IShellCursorSupplier;
}
class SwRedlineSaveDatas : public std::vector<SwRedlineSaveData*> {
public:
~SwRedlineSaveDatas() { DeleteAndDestroyAll(); }
void DeleteAndDestroyAll();
};
namespace sw {
class SW_DLLPRIVATE UndoRedoContext
: public SfxUndoContext
{
public:
UndoRedoContext(SwDoc & rDoc, IShellCursorSupplier & rCursorSupplier)
: m_rDoc(rDoc)
, m_rCursorSupplier(rCursorSupplier)
, m_pSelFmt(0)
, m_pMarkList(0)
{ }
SwDoc & GetDoc() const { return m_rDoc; }
IShellCursorSupplier & GetCursorSupplier() { return m_rCursorSupplier; }
void SetSelections(SwFrmFmt *const pSelFmt, SdrMarkList *const pMarkList)
{
m_pSelFmt = pSelFmt;
m_pMarkList = pMarkList;
}
void GetSelections(SwFrmFmt *& o_rpSelFmt, SdrMarkList *& o_rpMarkList)
{
o_rpSelFmt = m_pSelFmt;
o_rpMarkList = m_pMarkList;
}
private:
SwDoc & m_rDoc;
IShellCursorSupplier & m_rCursorSupplier;
SwFrmFmt * m_pSelFmt;
SdrMarkList * m_pMarkList;
};
class SW_DLLPRIVATE RepeatContext
: public SfxRepeatTarget
{
public:
RepeatContext(SwDoc & rDoc, SwPaM & rPaM)
: m_rDoc(rDoc)
, m_pCurrentPaM(& rPaM)
, m_bDeleteRepeated(false)
{ }
SwDoc & GetDoc() const { return m_rDoc; }
SwPaM & GetRepeatPaM()
{
return *m_pCurrentPaM;
}
private:
friend class ::sw::UndoManager;
friend class ::SwUndoDelete;
SwDoc & m_rDoc;
SwPaM * m_pCurrentPaM;
bool m_bDeleteRepeated; /// has a delete action been repeated?
};
} // namespace sw
class SwUndoFmtColl : public SwUndo, private SwUndRng
{
String aFmtName;
SwHistory* pHistory;
SwFmtColl* pFmtColl;
// for correct <ReDo(..)> and <Repeat(..)>
// boolean, which indicates that the attributes are reseted at the nodes
// before the format has been applied.
const bool mbReset;
// boolean, which indicates that the list attributes had been reseted at
// the nodes before the format has been applied.
const bool mbResetListAttrs;
void DoSetFmtColl(SwDoc & rDoc, SwPaM & rPaM);
public:
SwUndoFmtColl( const SwPaM&, SwFmtColl*,
const bool bReset,
const bool bResetListAttrs );
virtual ~SwUndoFmtColl();
virtual void UndoImpl( ::sw::UndoRedoContext & );
virtual void RedoImpl( ::sw::UndoRedoContext & );
virtual void RepeatImpl( ::sw::RepeatContext & );
/**
Returns the rewriter for this undo object.
The rewriter contains one rule:
$1 -> <name of format collection>
<name of format collection> is the name of the format
collection that is applied by the action recorded by this undo
object.
@return the rewriter for this undo object
*/
virtual SwRewriter GetRewriter() const;
SwHistory* GetHistory() { return pHistory; }
};
class SwUndoSetFlyFmt : public SwUndo, public SwClient
{
SwFrmFmt* pFrmFmt; // saved FlyFormat
SwFrmFmt* pOldFmt;
SwFrmFmt* pNewFmt;
SfxItemSet* pItemSet; // the re-/ set attributes
sal_uLong nOldNode, nNewNode;
xub_StrLen nOldCntnt, nNewCntnt;
sal_uInt16 nOldAnchorTyp, nNewAnchorTyp;
sal_Bool bAnchorChgd;
void PutAttr( sal_uInt16 nWhich, const SfxPoolItem* pItem );
void Modify( const SfxPoolItem*, const SfxPoolItem* );
void GetAnchor( SwFmtAnchor& rAnhor, sal_uLong nNode, xub_StrLen nCntnt );
public:
SwUndoSetFlyFmt( SwFrmFmt& rFlyFmt, SwFrmFmt& rNewFrmFmt );
virtual ~SwUndoSetFlyFmt();
virtual void UndoImpl( ::sw::UndoRedoContext & );
virtual void RedoImpl( ::sw::UndoRedoContext & );
virtual SwRewriter GetRewriter() const;
void DeRegisterFromFormat( SwFmt& );
};
class SwUndoOutlineLeftRight : public SwUndo, private SwUndRng
{
short nOffset;
public:
SwUndoOutlineLeftRight( const SwPaM& rPam, short nOffset );
virtual void UndoImpl( ::sw::UndoRedoContext & );
virtual void RedoImpl( ::sw::UndoRedoContext & );
virtual void RepeatImpl( ::sw::RepeatContext & );
};
const int nUndoStringLength = 20;
/**
Shortens a string to a maximum length.
@param rStr the string to be shortened
@param nLength the maximum length for rStr
@param rFillStr string to replace cut out characters with
If rStr has less than nLength characters it will be returned unaltered.
If rStr has more than nLength characters the following algorithm
generates the shortened string:
frontLength = (nLength - length(rFillStr)) / 2
rearLength = nLength - length(rFillStr) - frontLength
shortenedString = concat(<first frontLength characters of rStr,
rFillStr,
<last rearLength characters of rStr>)
Preconditions:
- nLength - length(rFillStr) >= 2
@return the shortened string
*/
String
ShortenString(const String & rStr, xub_StrLen nLength, const String & rFillStr);
/**
Denotes special characters in a string.
The rStr is split into parts containing special characters and
parts not containing special characters. In a part containing
special characters all characters are equal. These parts are
maximal.
@param rStr the string to denote in
The resulting string is generated by concatenating the found
parts. The parts without special characters are surrounded by
"'". The parts containing special characters are denoted as "n x",
where n is the length of the part and x is the representation of
the special character (i. e. "tab(s)").
@return the denoted string
*/
String DenoteSpecialCharacters(const String & rStr);
#endif // SW_UNDOCORE_HXX
2011-09-28 23:14:11 +01:00
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */