sl@0: /* sl@0: * Copyright (c) 2007 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of the License "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * Base classes used for holding inline text for the Form MTmInlineTextSource interface. sl@0: * sl@0: */ sl@0: sl@0: sl@0: #ifndef INLINETEXTBASE_H sl@0: #define INLINETEXTBASE_H sl@0: sl@0: // INCLUDES sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: // CONSTANTS sl@0: enum TInlineTextPanic sl@0: { sl@0: EInlineTextBadInlineTextFetch, sl@0: EInlineTextStoreCorrupted sl@0: }; sl@0: sl@0: #define KInlineTextParagraphDelimiter 0x2029 sl@0: sl@0: GLREF_C void Panic(TInlineTextPanic aPanic); sl@0: sl@0: // CLASS DECLARATION sl@0: sl@0: class TTmDocPos; sl@0: sl@0: /** sl@0: * This class is used to hold text that is being formatted into text via the inline text sl@0: * interface. sl@0: * sl@0: * @lib InlineText sl@0: * @since 3.2 sl@0: */ sl@0: NONSHARABLE_CLASS(CInlineTextPositionedText): public CBase sl@0: { sl@0: public: // 2stage constructor and descructor sl@0: /** sl@0: * Fully constructs the object given position and text. A copy of the passed-in text is made sl@0: * on the heap, owned by the constructed object. sl@0: * sl@0: * @param aPosition TTmDocPos at which text is to be reported sl@0: * @param aInlineText Text to be returned at this position sl@0: * sl@0: * @return pointer to fully constructed object sl@0: */ sl@0: static CInlineTextPositionedText* NewL( const TTmDocPos& aPosition, const TDesC& aInlineText ); sl@0: sl@0: /** sl@0: * Destructor sl@0: */ sl@0: ~CInlineTextPositionedText(); sl@0: sl@0: public: sl@0: sl@0: /** sl@0: * Access method to the position in the document of the inline text sl@0: * @return TTmDocPos of the inline text sl@0: */ sl@0: const TTmDocPos& DocPos() const; sl@0: sl@0: /** sl@0: * Access method to the text for the inline edit sl@0: * @return reference to an unmodifiable descriptor for the text held in this object sl@0: */ sl@0: const TDesC& InlineText() const; sl@0: sl@0: private: sl@0: /** sl@0: * C++ constructor sl@0: */ sl@0: CInlineTextPositionedText( const TTmDocPos& aPosition ); sl@0: sl@0: /** sl@0: * This method completes the construction by allocating the text storage.. sl@0: */ sl@0: void ConstructL( const TDesC& aInlineText ); sl@0: sl@0: private: sl@0: TTmDocPos iDocPos; sl@0: HBufC* iText; // owned sl@0: }; sl@0: sl@0: /** sl@0: * Class to hold an array of inline texts for access sl@0: * sl@0: * @lib InlineText sl@0: * @since 3.2 sl@0: */ sl@0: NONSHARABLE_CLASS(CInlineTextStore) : public CArrayPtrFlat sl@0: { sl@0: public: // 2-stage constructor and destructor sl@0: static CInlineTextStore* NewL(); sl@0: ~CInlineTextStore(); sl@0: sl@0: public: sl@0: /** sl@0: * Clears and destroys all inline texts sl@0: */ sl@0: void Clear(); sl@0: sl@0: /** sl@0: * Clears and destroys inline texts in a range of document positions. Range is taken sl@0: * to be inclusive. sl@0: * @param aStart First position from which and including inline texts are removed sl@0: * @param aEnd Final position up to which and including inline texts are removed sl@0: */ sl@0: void ClearRange( const TTmDocPos& aStart, const TTmDocPos& aEnd ); sl@0: sl@0: /** sl@0: * Insert the inline text object into the store sl@0: * @param aInlineText object to add sl@0: */ sl@0: void InsertInlineTextL( CInlineTextPositionedText* aInlineText ); sl@0: sl@0: /** sl@0: * Returns the pointer to the document position closest after or including the passed-in sl@0: * position. sl@0: * @param aDocPos position from which to look for inline texts sl@0: * @return pointer to document position at or closest after input position sl@0: * NULL if none is found sl@0: */ sl@0: const TTmDocPos* NextInlineTextDocPos( const TTmDocPos& aDocPos ) const; sl@0: sl@0: /** sl@0: * Searches for the input document position and returns the index in the Store sl@0: * @param aDocPos input document position sl@0: * @return index at which the input position is found sl@0: * -1 if the document position is not in the store sl@0: */ sl@0: TInt IndexFromDocPos( const TTmDocPos& aDocPos ) const; sl@0: sl@0: private: sl@0: /** sl@0: * Private constructor; no derivation permitted sl@0: */ sl@0: CInlineTextStore(); sl@0: sl@0: /** sl@0: * Internal method for determining index of the position later or including sl@0: * the passed-in position sl@0: */ sl@0: TInt NextIndexStartingAtDocPos( const TTmDocPos& aDocPos ) const; sl@0: sl@0: private: // data members sl@0: sl@0: }; sl@0: sl@0: /** sl@0: * Concrete implementation of MTmInlineTextSource, adding an edit observation interface sl@0: * and common infrastructure for managing inline texts sl@0: * sl@0: * @lib InlineText sl@0: * @since 3.2 sl@0: */ sl@0: NONSHARABLE_CLASS(CInlineTextSource) : public CBase, public MTmInlineTextSource, public MEditObserver sl@0: { sl@0: public: // C++ constructor and destructor sl@0: CInlineTextSource(); // Class is intended for derivation sl@0: ~CInlineTextSource(); sl@0: sl@0: /** sl@0: * 2nd state constructor sl@0: */ sl@0: void ConstructL(); sl@0: sl@0: public: // From MTmInlineTextSource sl@0: sl@0: /** sl@0: * Reports the next position into which inline text should be inserted sl@0: * sl@0: * See inlinetext.h sl@0: */ sl@0: virtual TInt GetNextInlineTextPosition(const TTmDocPos& aFrom, TInt aMaxLength, TTmDocPos& aNext); sl@0: sl@0: /** sl@0: * Gets a view of the text to be inserted at aAt. sl@0: * sl@0: * See inlinetext.h sl@0: */ sl@0: virtual TPtrC GetInlineText(const TTmDocPos& aAt); sl@0: sl@0: public: // From MEditObserver sl@0: sl@0: /** sl@0: * See medobsrv.h sl@0: * sl@0: * This class implements an empty implementation of this method. Implement in subclass only if sl@0: * action is to be taken upon edit - and if edit event is actually going to be supplied, which sl@0: * is only available in the context of CEikRichTextEditor sl@0: */ sl@0: virtual void EditObserver(TInt aStart, TInt aExtent); sl@0: sl@0: public: sl@0: // New methods sl@0: sl@0: /** sl@0: * Framework method to inform subclasses what part of the document is currently being interrogated sl@0: * for inline edits. sl@0: * Currently this will be where formatting is performed and the store of inline texts updated. sl@0: * (In future, an edit observer interface of some kind will be used to trigger that) sl@0: * sl@0: * @param aFrom position from which to re-consider the formatting sl@0: * @param aTo position up to which to re-consider the formatting sl@0: */ sl@0: virtual void CheckFormattingL(const TTmDocPos& aFrom, const TTmDocPos& aTo ); sl@0: sl@0: /** sl@0: * Non-virtual method for checking for inline text. Similar behaviour to GetInlineText, except sl@0: * that is it const, and will not panic (but just return EFalse) if there is no inline text sl@0: * at the input TTmDocPos. sl@0: * sl@0: * @param aAt Position at which to access inline text sl@0: * @param aPtrFound This contains the inline text if ETrue is returned sl@0: * @return EFalse if there is no inline text at the input position sl@0: */ sl@0: TBool HasInlineTextAt( const TTmDocPos& aAt, TPtrC& aPtrFound ) const; sl@0: sl@0: protected: sl@0: sl@0: /** sl@0: * Access to the inline text store for derived classes sl@0: */ sl@0: CInlineTextStore* InlineTextStore() const; sl@0: sl@0: private: sl@0: CInlineTextStore* iInlineTextStore; // owned sl@0: }; sl@0: sl@0: #endif sl@0: sl@0: // End of File