sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2000-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
#ifndef EDITORUNDO_H_
|
sl@0
|
20 |
#define EDITORUNDO_H_
|
sl@0
|
21 |
|
sl@0
|
22 |
#include "unified_editor.h"
|
sl@0
|
23 |
|
sl@0
|
24 |
namespace UndoSystem
|
sl@0
|
25 |
/**
|
sl@0
|
26 |
@internalTechnology
|
sl@0
|
27 |
*/
|
sl@0
|
28 |
{
|
sl@0
|
29 |
class CCommandManager;
|
sl@0
|
30 |
class MNotUndoableGatekeeper;
|
sl@0
|
31 |
}
|
sl@0
|
32 |
|
sl@0
|
33 |
class CEditorCommandFactory;
|
sl@0
|
34 |
|
sl@0
|
35 |
/**
|
sl@0
|
36 |
MUnifiedEditor decorator that adds undo functionality.
|
sl@0
|
37 |
It passes commands transparently to the editor it is constructed upon, while
|
sl@0
|
38 |
storing the operations so that they can be undone and redone. Calling a
|
sl@0
|
39 |
non-const method of MUnifiedEditor wipes all 'Redo' operations.
|
sl@0
|
40 |
The undo and redo operations are only guaranteed to be accurate if the
|
sl@0
|
41 |
underlying editor satisfies certain conditions.
|
sl@0
|
42 |
|
sl@0
|
43 |
@since App-frameworks6.1
|
sl@0
|
44 |
@internalAll
|
sl@0
|
45 |
*/
|
sl@0
|
46 |
class CEditorWithUndo : public CBase,
|
sl@0
|
47 |
public MUnifiedEditor,
|
sl@0
|
48 |
private MUnifiedEditor::MStyleSupport,
|
sl@0
|
49 |
private MUnifiedEditor::MPictureSupport,
|
sl@0
|
50 |
private MUnifiedEditor::MClipboardSupport
|
sl@0
|
51 |
|
sl@0
|
52 |
{
|
sl@0
|
53 |
public:
|
sl@0
|
54 |
~CEditorWithUndo();
|
sl@0
|
55 |
|
sl@0
|
56 |
/**
|
sl@0
|
57 |
* Creates a CEditorWithUndo. It does not own the aEditor.
|
sl@0
|
58 |
*/
|
sl@0
|
59 |
IMPORT_C static CEditorWithUndo* NewL(MUnifiedEditor& aEditor);
|
sl@0
|
60 |
/**
|
sl@0
|
61 |
* Creates a CEditorWithUndo, using the aSharedUndoSystem. This allows
|
sl@0
|
62 |
* many objects to stay in synchronization when each is accessed
|
sl@0
|
63 |
* seperately.
|
sl@0
|
64 |
* The aEditor is not owned.
|
sl@0
|
65 |
*/
|
sl@0
|
66 |
IMPORT_C static CEditorWithUndo* NewL(MUnifiedEditor& aEditor,
|
sl@0
|
67 |
UndoSystem::CCommandManager* aSharedUndoSystem);
|
sl@0
|
68 |
/**
|
sl@0
|
69 |
* Undoes one operation or batch of operations. If one operation in the
|
sl@0
|
70 |
* middle of a batch leaves, this function will leave, but the underlying
|
sl@0
|
71 |
* editor will not necessarily be in the same state as it was in before
|
sl@0
|
72 |
* the call. However, all operations will still be stored, and so the
|
sl@0
|
73 |
* previous state is still recoverable with a call to RedoL() or a
|
sl@0
|
74 |
* further call to UndoL will complete the operation (resource acquisition
|
sl@0
|
75 |
* permitting).
|
sl@0
|
76 |
*/
|
sl@0
|
77 |
IMPORT_C void UndoL();
|
sl@0
|
78 |
/**
|
sl@0
|
79 |
* Redoes one operation or batch of operations. If one operation in the
|
sl@0
|
80 |
* middle of a batch leaves, this function will leave, but the underlying
|
sl@0
|
81 |
* editor will not necessarily be in the same state as it was in before
|
sl@0
|
82 |
* the call. However, all operations will still be stored, and so the
|
sl@0
|
83 |
* previous state is still recoverable with a call to UndoL() or a
|
sl@0
|
84 |
* further call to RedoL will complete the operation (resource acquisition
|
sl@0
|
85 |
* permitting).
|
sl@0
|
86 |
*/
|
sl@0
|
87 |
IMPORT_C void RedoL();
|
sl@0
|
88 |
/**
|
sl@0
|
89 |
* Returns ETrue iff UndoL() would have an effect
|
sl@0
|
90 |
*/
|
sl@0
|
91 |
IMPORT_C TBool CanUndo() const;
|
sl@0
|
92 |
/**
|
sl@0
|
93 |
* Returns ETrue iff RedoL() would have an effect
|
sl@0
|
94 |
*/
|
sl@0
|
95 |
IMPORT_C TBool CanRedo() const;
|
sl@0
|
96 |
/**
|
sl@0
|
97 |
* Wipes all undo and redo operations
|
sl@0
|
98 |
*/
|
sl@0
|
99 |
IMPORT_C void ResetUndo();
|
sl@0
|
100 |
/**
|
sl@0
|
101 |
* Sets limits on the 'undo depth'. This is the numbet of times that
|
sl@0
|
102 |
* successive calls to UndoL() have an effect. When a depth of
|
sl@0
|
103 |
* aMaxItems is reached, the undo depth is reset to aMinItems.
|
sl@0
|
104 |
*/
|
sl@0
|
105 |
IMPORT_C void SetMaxItems(TInt aMaxItems);
|
sl@0
|
106 |
/**
|
sl@0
|
107 |
* Sets a gatekeper for the undo system. This will be called whenever an
|
sl@0
|
108 |
* operation is attempted that cannot be undone for any reason.
|
sl@0
|
109 |
* The gatekeeper therefore has an oportunity to suppress execution and
|
sl@0
|
110 |
* keep the current undo operations stored.
|
sl@0
|
111 |
* NULL may be passed to restore default behaviour.
|
sl@0
|
112 |
* Returns the old gatekeeper.
|
sl@0
|
113 |
*/
|
sl@0
|
114 |
IMPORT_C UndoSystem::MNotUndoableGatekeeper*
|
sl@0
|
115 |
SetGatekeeper(UndoSystem::MNotUndoableGatekeeper*);
|
sl@0
|
116 |
|
sl@0
|
117 |
// From MUnifiedEditor
|
sl@0
|
118 |
MTmOptionalInterface* Interface(TUint aId);
|
sl@0
|
119 |
void InsertTextL(TInt aPos, const TDesC& aText, const TDesC* aStyle,
|
sl@0
|
120 |
const TTmCharFormatLayer*, const RTmParFormatLayer*);
|
sl@0
|
121 |
void DeleteTextL(TInt aPos,TInt aLength);
|
sl@0
|
122 |
void SetBaseFormatL(const TTmCharFormat&, const RTmParFormat&);
|
sl@0
|
123 |
void SetCharFormatL(TInt aPos, TInt aLength, const TTmCharFormatLayer&);
|
sl@0
|
124 |
void SetParFormatL(TInt aPos, TInt aLength, const RTmParFormatLayer&);
|
sl@0
|
125 |
void DeleteCharFormatL(TInt aPos, TInt aLength);
|
sl@0
|
126 |
void DeleteParFormatL(TInt aPos, TInt aLength);
|
sl@0
|
127 |
TInt DocumentLength() const;
|
sl@0
|
128 |
void GetText(TInt aPos, TPtrC& aText) const;
|
sl@0
|
129 |
void GetBaseFormatL(TTmCharFormat&, RTmParFormat&) const;
|
sl@0
|
130 |
void GetCharFormat(TInt aPos, TFormatLevel aLevel,
|
sl@0
|
131 |
TTmCharFormatLayer& aFormat,TInt& aRunLength) const;
|
sl@0
|
132 |
void GetParFormatL(TInt aPos, TFormatLevel aLevel,
|
sl@0
|
133 |
RTmParFormatLayer& aFormat, TInt& aRunLength) const;
|
sl@0
|
134 |
|
sl@0
|
135 |
private:
|
sl@0
|
136 |
// from MStyleSupport
|
sl@0
|
137 |
TInt CreateStyleL(const RTmStyle&);
|
sl@0
|
138 |
TInt ChangeStyleL(const RTmStyle&);
|
sl@0
|
139 |
TInt SetStyleL(TInt aPos, TInt aLength, const TDesC&);
|
sl@0
|
140 |
TInt RenameStyleL(const TDesC& aOldName, const TDesC& aNewName);
|
sl@0
|
141 |
TInt DeleteStyleL(const TDesC& aName);
|
sl@0
|
142 |
TInt StyleCount() const;
|
sl@0
|
143 |
void GetStyle(TInt aPos, TPtrC& aName, TInt& aRunLength) const;
|
sl@0
|
144 |
TInt GetStyleByNameL(const TDesC& aName, RTmStyle&) const;
|
sl@0
|
145 |
TInt GetStyleByIndexL(TInt aIndex, RTmStyle&) const;
|
sl@0
|
146 |
|
sl@0
|
147 |
// from MPictureSupport
|
sl@0
|
148 |
void InsertPictureL(TInt aPos, const TPictureHeader&);
|
sl@0
|
149 |
void DropPictureL(TInt aPos);
|
sl@0
|
150 |
void Picture(TInt aPos, TPictureHeader&) const;
|
sl@0
|
151 |
|
sl@0
|
152 |
// from MClipboardSupport
|
sl@0
|
153 |
void CopyToStoreL(CStreamStore& aStore, CStreamDictionary& aDictionary,
|
sl@0
|
154 |
TInt aPos, TInt aLength) const;
|
sl@0
|
155 |
void PasteFromStoreL(const CStreamStore& aStore,
|
sl@0
|
156 |
const CStreamDictionary& aDictionary, TInt aPos);
|
sl@0
|
157 |
|
sl@0
|
158 |
CEditorWithUndo();
|
sl@0
|
159 |
void ConstructL(MUnifiedEditor& aEditorBasedOn,
|
sl@0
|
160 |
UndoSystem::CCommandManager* aSharedUndoSystem);
|
sl@0
|
161 |
|
sl@0
|
162 |
CEditorCommandFactory* iFactory;
|
sl@0
|
163 |
MUnifiedEditor* iBaseEditor;
|
sl@0
|
164 |
UndoSystem::CCommandManager* iCommandManager;
|
sl@0
|
165 |
};
|
sl@0
|
166 |
|
sl@0
|
167 |
#endif // EDITORUNDO_H_
|