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.
21 #ifndef __UNIFIED_EDITOR_H__
22 #define __UNIFIED_EDITOR_H__ 1
26 #ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
27 #include <tagma_internal.h>
31 The header file for MUnifiedEditor, an interface that unifies editing operations on backing text and layout,
32 which are traditionally separated between ETEXT (backing text) and FORM (layout). It is not dependent
33 on FORM or ETEXT, although there is an implementation (TFormAndTextEditor) using those components.
37 Base class for optional interfaces
40 class MTmOptionalInterface
46 UIDs for standard optional interfaces
49 const TUint KUidMUnifiedEditorStyleSupport = 0x100092B6;
50 const TUint KUidMUnifiedEditorPictureSupport = 0x100092B7;
51 const TUint KUidMUnifiedEditorFieldSupport = 0x100092B8;
52 const TUint KUidMUnifiedEditorClipboardSupport = 0x100095EF;
55 An interface class for text editing.
57 An object that supports text editing has some backing text - zero or more Unicode characters - and
58 character and paragraph formats applicable to ranges of these characters. A paragraph is a sequence of characters
59 terminating either at the end of the document or after the next paragraph separator, whichever comes first.
61 The format for a given position is derived from up to three formatting layers. The base layer is the lowest and
62 provides default attributes. These may be optionally overridden by attributes from a named style, and these in
63 turn may be overridden by specific formatting. Text editing objects may support any or none of these layers; they
64 may in fact ignore all attempts to set format attributes.
72 * constants used when getting formats
76 ESpecific, // format applied by the user
77 EEffective // the actual format: a combination of base and specific formats
79 class MStyleSupport : public MTmOptionalInterface
81 An optional interface to support styles
89 virtual TInt CreateStyleL(const RTmStyle& /*aStyle*/) { return KErrNotSupported; }
91 * Sets the attributes of a style.
93 virtual TInt ChangeStyleL(const RTmStyle& /*aStyle*/) { return KErrNotSupported; }
95 * Applies the named style to the specified run of text.
97 virtual TInt SetStyleL(TInt aPos, TInt aLength, const TDesC& aName) = 0;
101 virtual TInt RenameStyleL(const TDesC& /*aOldName*/,const TDesC& /*aNewName*/) { return KErrNotSupported; }
103 * Deletes the named style.
105 virtual TInt DeleteStyleL(const TDesC& /*aName*/) { return KErrNotSupported; }
107 * Get the number of named styles.
109 virtual TInt StyleCount() const = 0;
111 * Gets the style set at the document position aPos. If no style is set
112 * there return an empty string and the run length over which no style
115 virtual void GetStyle(TInt aPos, TPtrC& aName, TInt& aRunLength) const = 0;
117 * Gets the attributes of a named style by completing aStyle from its
120 virtual TInt GetStyleByNameL(const TDesC& aName, RTmStyle& aStyle) const = 0;
122 * Gets the name and attributes of a style by index; use this in
123 * conjunction with StyleCount to enumerate existing styles.
125 virtual TInt GetStyleByIndexL(TInt aIndex, RTmStyle& aStyle) const = 0;
129 An optional interface to support embedded pictures
132 class MPictureSupport : public MTmOptionalInterface
137 * Inserts a picture, passing ownership in.
139 virtual void InsertPictureL(TInt aPos, const TPictureHeader& aPictureIn) = 0;
141 * Deletes picture character in the text at aPos, if any. Ownership of
142 * any picture is passed to the caller, therefore Picture(aPos,
143 * aPictureOut) must have been called previously, and
144 * aPictureOut.DeletePicture() must be called in the future to avoid a
146 * If the character at aPos is a picture character, it will be deleted,
147 * regardless of whether or not a picture was actually attatched.
149 virtual void DropPictureL(TInt aPos) = 0;
151 * Gets the picture if any at aPos. No picture is indicated by
152 * aPictureOut.iPictureType containing KUidNull.
153 * Ownership of the picture is retained. Note that aPictureOut is
154 * merely overwritten by this function: aPictureOut.DeletePicture() is
157 virtual void Picture(TInt aPos, TPictureHeader& aPictureOut) const = 0;
161 An optional interface to support clipboard operations
164 class MClipboardSupport : public MTmOptionalInterface
169 * Copy the text and formatting specified to the stream, updating
170 * the dictionary as appropriate.
172 virtual void CopyToStoreL(CStreamStore& aStore, CStreamDictionary& aDictionary,
173 TInt aPos, TInt aLength) const = 0;
175 * Insert text and formatting from the stream at aPos.
177 virtual void PasteFromStoreL(const CStreamStore& aStore,
178 const CStreamDictionary& aDictionary, TInt aPos) = 0;
186 * Returns the optional interface with the specified UID, or 0 if it is not
189 virtual MTmOptionalInterface* Interface(TUint /*aId*/) { return NULL; }
191 * Returns the length of the document in characters, not including any
192 * notional final paragraph separator.
194 virtual TInt DocumentLength() const = 0;
196 * Gets some text starting at aPos. The amount of text returned may be as
197 * much or as little as is convenient to the implementation, but must be
198 * at least one character. The text is raw Unicode text including any
199 * paragraph separators.
201 virtual void GetText(TInt aPos,TPtrC& aText) const = 0;
203 * Gets the base character and paragraph formats
205 virtual void GetBaseFormatL(TTmCharFormat& aCharFormat,RTmParFormat& aParFormat) const = 0;
207 * Gets the specific or effective character format and the run over which
208 * that format applies.
210 virtual void GetCharFormat(TInt aPos,TFormatLevel aLevel,
211 TTmCharFormatLayer& aFormat,TInt& aRunLength) const = 0;
213 * Gets the specific or effective paragraph format and the run over which
214 * that format applies.
216 virtual void GetParFormatL(TInt aPos,TFormatLevel aLevel,
217 RTmParFormatLayer& aFormat,TInt& aRunLength) const = 0;
222 * Inserts text at aPos, optionally applying the specified character and
223 * paragraph formats. Unspecified attributes take the format at the
224 * insertion point; what this means in detail is implementation-dependent.
226 virtual void InsertTextL(TInt aPos,const TDesC& aText,
227 const TDesC* aStyle = NULL,
228 const TTmCharFormatLayer* aCharFormat = NULL,
229 const RTmParFormatLayer* aParFormat = NULL) = 0;
231 * Deletes aLength characters starting at aPos.
233 virtual void DeleteTextL(TInt aPos,TInt aLength) = 0;
235 * Sets the base character and paragraph formats
237 virtual void SetBaseFormatL(const TTmCharFormat& aCharFormat,const RTmParFormat& aParFormat) = 0;
239 * Sets specific character attributes beginning at aPos for aLength characters.
241 virtual void SetCharFormatL(TInt aPos,TInt aLength,const TTmCharFormatLayer& aFormat) = 0;
243 * Sets specific paragraph attributes beginning at aPos for aLength characters.
245 virtual void SetParFormatL(TInt aPos,TInt aLength,const RTmParFormatLayer& aFormat) = 0;
247 * Deletes specific character attributes beginning at aPos for aLength characters.
249 virtual void DeleteCharFormatL(TInt aPos,TInt aLength) = 0;
251 * Deletes specific paragraph attributes beginning at aPos for aLength characters.
253 virtual void DeleteParFormatL(TInt aPos,TInt aLength) = 0;
255 // NON-VIRTUAL FUNCTIONS
257 * Reads text into a writable descriptor.
259 * @see GetText(TInt, TPtrC) const
261 IMPORT_C void GetText(TInt aPos, TDes& aText) const;
263 * Returns the interface for manipulating styles, if applicable.
265 inline MStyleSupport* StyleSupport();
266 inline const MStyleSupport* StyleSupport() const;
268 * Returns the interface for manipulating pictures, if applicable.
270 inline MPictureSupport* PictureSupport();
271 inline const MPictureSupport* PictureSupport() const;
273 * Returns the interface for clipboard operations, if applicable.
275 inline MClipboardSupport* ClipboardSupport();
276 inline const MClipboardSupport* ClipboardSupport() const;
281 MUnifiedEditor::MStyleSupport* MUnifiedEditor::StyleSupport()
283 return static_cast<MStyleSupport*>(Interface(KUidMUnifiedEditorStyleSupport));
286 const MUnifiedEditor::MStyleSupport* MUnifiedEditor::StyleSupport() const
288 return static_cast<MStyleSupport*>(
289 const_cast<MUnifiedEditor*>(this)->Interface(KUidMUnifiedEditorStyleSupport));
292 MUnifiedEditor::MPictureSupport* MUnifiedEditor::PictureSupport()
294 return static_cast<MPictureSupport*>(Interface(KUidMUnifiedEditorPictureSupport));
297 const MUnifiedEditor::MPictureSupport* MUnifiedEditor::PictureSupport() const
299 return static_cast<MPictureSupport*>(
300 const_cast<MUnifiedEditor*>(this)->Interface(KUidMUnifiedEditorPictureSupport));
303 MUnifiedEditor::MClipboardSupport* MUnifiedEditor::ClipboardSupport()
305 return static_cast<MClipboardSupport*>(Interface(KUidMUnifiedEditorClipboardSupport));
308 const MUnifiedEditor::MClipboardSupport* MUnifiedEditor::ClipboardSupport() const
310 return static_cast<MClipboardSupport*>(
311 const_cast<MUnifiedEditor*>(this)->Interface(KUidMUnifiedEditorClipboardSupport));
314 #endif // __UNIFIED_EDITOR_H__