Update contrib.
2 * Copyright (c) 2003-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 * Classes used combining several MTmInlineTextSource interfaces into one.
20 #ifndef INLINETEXTCOMPOSITESOURCE_H
21 #define INLINETEXTCOMPOSITESOURCE_H
24 #include "InlineTextBase.h"
30 // This array holds all the individual implementations of CAknInlineTextSource
31 typedef CArrayPtrFlat<CInlineTextSource> CInlineTextSourceArray;
34 * This class is the implementation of MFormInlineTextSource that is actually accessed by
35 * Tagma. It delegates its functionality to the installed formatters
40 NONSHARABLE_CLASS(CInlineTextCompositeSource) : public CInlineTextSource
42 public: // 2-stage constructor and the destructor
43 IMPORT_C static CInlineTextCompositeSource* NewL();
44 ~CInlineTextCompositeSource();
48 * Adds the inline text source to the array. Ownership is taken by this object
50 * @param aNewSource formatter to add
52 IMPORT_C void InstallInlineTextSourceL( CInlineTextSource* aNewSource);
54 public: // From MTmInlineTextSource. Documented in header
56 virtual TInt GetNextInlineTextPosition(const TTmDocPos& aFrom, TInt aMaxLength, TTmDocPos& aNext);
57 virtual TPtrC GetInlineText(const TTmDocPos& aAt);
59 public: // From CAknInlineTextSource
63 virtual void CheckFormattingL(const TTmDocPos& aFrom, const TTmDocPos& aTo);
65 public: // From MEditObserver
69 virtual void EditObserver(TInt aStart, TInt aExtent);
75 CInlineTextCompositeSource();
78 * 2nd stage construction
83 CInlineTextSourceArray* iInlineTextSourceArray;