Update contrib.
2 * Copyright (c) 2000-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
19 #ifndef EDITORPLAINTEXTUNDO_H_
20 #define EDITORPLAINTEXTUNDO_H_
22 #include "unified_editor.h"
26 class CCommandManager;
27 class MNotUndoableGatekeeper;
30 class CEditorPlainTextCommandFactory;
33 MUnifiedEditor decorator that adds undo functionality to plain text editors.
34 It passes commands transparently to the editor it is constructed upon, while
35 storing the operations so that they can be undone and redone. Calling a
36 non-const method of MUnifiedEditor wipes all 'Redo' operations.
37 The undo and redo operations are only guaranteed to be accurate if the
38 underlying editor satisfies certain conditions.
40 @since App-frameworks6.1
43 class CEditorPlainTextWithUndo : public CBase, public MUnifiedEditor,
44 private MUnifiedEditor::MClipboardSupport
47 ~CEditorPlainTextWithUndo();
50 * Creates a CEditorPlainTextWithUndo, using the aSharedUndoSystem.
51 * This allows many objects to stay in synchronization when each is
52 * accessed seperately.
53 * The aEditor is not owned.
54 * Undo functionality is accessed only via the aSharedUndoSystem
57 IMPORT_C static CEditorPlainTextWithUndo* NewL(MUnifiedEditor& aEditor,
58 UndoSystem::CCommandManager* aSharedUndoSystem);
60 // From MUnifiedEditor
61 void InsertTextL(TInt aPos, const TDesC& aText, const TDesC* aStyle,
62 const TTmCharFormatLayer*, const RTmParFormatLayer*);
63 void DeleteTextL(TInt aPos,TInt aLength);
64 MTmOptionalInterface* Interface(TUint aId);
66 // The following methods are forwarded to the base editor
67 TInt DocumentLength() const;
68 void GetText(TInt aPos, TPtrC& aText) const;
69 void GetBaseFormatL(TTmCharFormat&, RTmParFormat&) const;
70 void GetCharFormat(TInt aPos, TFormatLevel aLevel,
71 TTmCharFormatLayer& aFormat,TInt& aRunLength) const;
72 void GetParFormatL(TInt aPos, TFormatLevel aLevel,
73 RTmParFormatLayer& aFormat, TInt& aRunLength) const;
74 void SetBaseFormatL(const TTmCharFormat&, const RTmParFormat&);
75 void SetCharFormatL(TInt aPos, TInt aLength, const TTmCharFormatLayer&);
76 void SetParFormatL(TInt aPos, TInt aLength, const RTmParFormatLayer&);
77 void DeleteCharFormatL(TInt aPos, TInt aLength);
78 void DeleteParFormatL(TInt aPos, TInt aLength);
81 CEditorPlainTextWithUndo();
82 void ConstructL(MUnifiedEditor& aEditorBasedOn,
83 UndoSystem::CCommandManager& aSharedUndoSystem);
85 // from MUnifiedEditor::MClipboardSupport
86 void CopyToStoreL(CStreamStore&, CStreamDictionary&, TInt, TInt) const;
87 void PasteFromStoreL(const CStreamStore&, const CStreamDictionary&, TInt);
89 CEditorPlainTextCommandFactory* iFactory;
90 MUnifiedEditor* iBaseEditor;
91 UndoSystem::CCommandManager* iCommandManager;
94 #endif // EDITORPLAINTEXTUNDO_H_