Update contrib.
2 * Copyright (c) 2007 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "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.
15 * Base classes used for holding inline text for the Form MTmInlineTextSource interface.
20 #ifndef INLINETEXTBASE_H
21 #define INLINETEXTBASE_H
27 #include <inlinetext.h>
32 EInlineTextBadInlineTextFetch,
33 EInlineTextStoreCorrupted
36 #define KInlineTextParagraphDelimiter 0x2029
38 GLREF_C void Panic(TInlineTextPanic aPanic);
45 * This class is used to hold text that is being formatted into text via the inline text
51 NONSHARABLE_CLASS(CInlineTextPositionedText): public CBase
53 public: // 2stage constructor and descructor
55 * Fully constructs the object given position and text. A copy of the passed-in text is made
56 * on the heap, owned by the constructed object.
58 * @param aPosition TTmDocPos at which text is to be reported
59 * @param aInlineText Text to be returned at this position
61 * @return pointer to fully constructed object
63 static CInlineTextPositionedText* NewL( const TTmDocPos& aPosition, const TDesC& aInlineText );
68 ~CInlineTextPositionedText();
73 * Access method to the position in the document of the inline text
74 * @return TTmDocPos of the inline text
76 const TTmDocPos& DocPos() const;
79 * Access method to the text for the inline edit
80 * @return reference to an unmodifiable descriptor for the text held in this object
82 const TDesC& InlineText() const;
88 CInlineTextPositionedText( const TTmDocPos& aPosition );
91 * This method completes the construction by allocating the text storage..
93 void ConstructL( const TDesC& aInlineText );
97 HBufC* iText; // owned
101 * Class to hold an array of inline texts for access
106 NONSHARABLE_CLASS(CInlineTextStore) : public CArrayPtrFlat<CInlineTextPositionedText>
108 public: // 2-stage constructor and destructor
109 static CInlineTextStore* NewL();
114 * Clears and destroys all inline texts
119 * Clears and destroys inline texts in a range of document positions. Range is taken
121 * @param aStart First position from which and including inline texts are removed
122 * @param aEnd Final position up to which and including inline texts are removed
124 void ClearRange( const TTmDocPos& aStart, const TTmDocPos& aEnd );
127 * Insert the inline text object into the store
128 * @param aInlineText object to add
130 void InsertInlineTextL( CInlineTextPositionedText* aInlineText );
133 * Returns the pointer to the document position closest after or including the passed-in
135 * @param aDocPos position from which to look for inline texts
136 * @return pointer to document position at or closest after input position
137 * NULL if none is found
139 const TTmDocPos* NextInlineTextDocPos( const TTmDocPos& aDocPos ) const;
142 * Searches for the input document position and returns the index in the Store
143 * @param aDocPos input document position
144 * @return index at which the input position is found
145 * -1 if the document position is not in the store
147 TInt IndexFromDocPos( const TTmDocPos& aDocPos ) const;
151 * Private constructor; no derivation permitted
156 * Internal method for determining index of the position later or including
157 * the passed-in position
159 TInt NextIndexStartingAtDocPos( const TTmDocPos& aDocPos ) const;
161 private: // data members
166 * Concrete implementation of MTmInlineTextSource, adding an edit observation interface
167 * and common infrastructure for managing inline texts
172 NONSHARABLE_CLASS(CInlineTextSource) : public CBase, public MTmInlineTextSource, public MEditObserver
174 public: // C++ constructor and destructor
175 CInlineTextSource(); // Class is intended for derivation
176 ~CInlineTextSource();
179 * 2nd state constructor
183 public: // From MTmInlineTextSource
186 * Reports the next position into which inline text should be inserted
190 virtual TInt GetNextInlineTextPosition(const TTmDocPos& aFrom, TInt aMaxLength, TTmDocPos& aNext);
193 * Gets a view of the text to be inserted at aAt.
197 virtual TPtrC GetInlineText(const TTmDocPos& aAt);
199 public: // From MEditObserver
204 * This class implements an empty implementation of this method. Implement in subclass only if
205 * action is to be taken upon edit - and if edit event is actually going to be supplied, which
206 * is only available in the context of CEikRichTextEditor
208 virtual void EditObserver(TInt aStart, TInt aExtent);
214 * Framework method to inform subclasses what part of the document is currently being interrogated
216 * Currently this will be where formatting is performed and the store of inline texts updated.
217 * (In future, an edit observer interface of some kind will be used to trigger that)
219 * @param aFrom position from which to re-consider the formatting
220 * @param aTo position up to which to re-consider the formatting
222 virtual void CheckFormattingL(const TTmDocPos& aFrom, const TTmDocPos& aTo );
225 * Non-virtual method for checking for inline text. Similar behaviour to GetInlineText, except
226 * that is it const, and will not panic (but just return EFalse) if there is no inline text
227 * at the input TTmDocPos.
229 * @param aAt Position at which to access inline text
230 * @param aPtrFound This contains the inline text if ETrue is returned
231 * @return EFalse if there is no inline text at the input position
233 TBool HasInlineTextAt( const TTmDocPos& aAt, TPtrC& aPtrFound ) const;
238 * Access to the inline text store for derived classes
240 CInlineTextStore* InlineTextStore() const;
243 CInlineTextStore* iInlineTextStore; // owned