1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* 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 INCLUDED_SW_SOURCE_CORE_INC_UNDOCORE_HXX
#define INCLUDED_SW_SOURCE_CORE_INC_UNDOCORE_HXX
#include <undobj.hxx>
#include <calbck.hxx>
#include <rtl/ustring.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 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 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
{
OUString 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 & ) SAL_OVERRIDE;
virtual void RedoImpl( ::sw::UndoRedoContext & ) SAL_OVERRIDE;
virtual void RepeatImpl( ::sw::RepeatContext & ) SAL_OVERRIDE;
/**
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 SAL_OVERRIDE;
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;
sal_Int32 nOldCntnt, nNewCntnt;
sal_uInt16 nOldAnchorTyp, nNewAnchorTyp;
bool bAnchorChgd;
void PutAttr( sal_uInt16 nWhich, const SfxPoolItem* pItem );
void Modify( const SfxPoolItem*, const SfxPoolItem* ) SAL_OVERRIDE;
void GetAnchor( SwFmtAnchor& rAnhor, sal_uLong nNode, sal_Int32 nCntnt );
public:
SwUndoSetFlyFmt( SwFrmFmt& rFlyFmt, SwFrmFmt& rNewFrmFmt );
virtual ~SwUndoSetFlyFmt();
virtual void UndoImpl( ::sw::UndoRedoContext & ) SAL_OVERRIDE;
virtual void RedoImpl( ::sw::UndoRedoContext & ) SAL_OVERRIDE;
virtual SwRewriter GetRewriter() const SAL_OVERRIDE;
void DeRegisterFromFormat( SwFmt& );
};
class SwUndoOutlineLeftRight : public SwUndo, private SwUndRng
{
short nOffset;
public:
SwUndoOutlineLeftRight( const SwPaM& rPam, short nOffset );
virtual void UndoImpl( ::sw::UndoRedoContext & ) SAL_OVERRIDE;
virtual void RedoImpl( ::sw::UndoRedoContext & ) SAL_OVERRIDE;
virtual void RepeatImpl( ::sw::RepeatContext & ) SAL_OVERRIDE;
};
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
*/
OUString
ShortenString(const OUString & rStr, sal_Int32 nLength, const OUString & 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
*/
OUString DenoteSpecialCharacters(const OUString & rStr);
#endif // INCLUDED_SW_SOURCE_CORE_INC_UNDOCORE_HXX
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|