--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/uifw/EikStd/coctlsrc/AknCompositeInlineTextSource.cpp Tue Feb 02 01:00:49 2010 +0200
@@ -0,0 +1,148 @@
+/*
+* Copyright (c) 2003 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description: ?Description
+*
+*/
+
+
+// INCLUDE FILES
+
+#include "AknCompositeInlineTextSource.h"
+
+// MODULE TEMPLATES
+
+
+// MODULE DATA STRUCTURES
+
+_LIT( KBadCharacter, " " );
+
+// ============================ MEMBER FUNCTIONS ===============================
+
+
+CAknCompositeInlineTextSource* CAknCompositeInlineTextSource::NewL()
+ {
+ CAknCompositeInlineTextSource* self = new (ELeave) CAknCompositeInlineTextSource();
+ CleanupStack::PushL( self );
+ self->ConstructL();
+ CleanupStack::Pop();
+ return self;
+ }
+
+CAknCompositeInlineTextSource::~CAknCompositeInlineTextSource()
+ {
+ // delete the pointed-to objects because this object owns them
+ if (iInlineTextSourceArray)
+ iInlineTextSourceArray->ResetAndDestroy();
+ delete iInlineTextSourceArray;
+ }
+
+EXPORT_C void CAknCompositeInlineTextSource::InstallInlineTextSourceL( CAknInlineTextSource* aInlineTextSource )
+ {
+ if ( aInlineTextSource )
+ iInlineTextSourceArray->AppendL( aInlineTextSource );
+ }
+
+
+TInt CAknCompositeInlineTextSource::GetNextInlineTextPosition(
+ const TTmDocPos& aFrom,
+ TInt aMaxLength,
+ TTmDocPos& aNext)
+ {
+ TInt retValue = KErrNotFound;
+
+ // For now, call CheckFormattingL() at the top of each
+ TTmDocPos to( aFrom.iPos + aMaxLength - 1, EFalse );
+ TRAP_IGNORE( CheckFormattingL( aFrom, to ) );
+
+ // The individual formatters are requested and the minimum position is returned
+ TTmDocPos minDocPos(aFrom);
+ minDocPos.iPos += ( aMaxLength + 2); // Ensure it is bigger than legal
+
+ TInt count = iInlineTextSourceArray->Count();
+ for ( TInt i = 0; i < count; i++ )
+ {
+ TTmDocPos thisNextPos;
+ TInt err = iInlineTextSourceArray->At(i)
+ ->GetNextInlineTextPosition( aFrom, aMaxLength, thisNextPos );
+ if ( err == KErrNone ) // one has been found
+ {
+ if ( thisNextPos < minDocPos )
+ {
+ minDocPos = thisNextPos;
+ retValue = KErrNone;
+ }
+ }
+ }
+ if ( retValue == KErrNone )
+ aNext = minDocPos;
+ return retValue;
+ }
+
+//
+//
+TPtrC CAknCompositeInlineTextSource::GetInlineText(const TTmDocPos& aAt)
+ {
+ TInt count = iInlineTextSourceArray->Count();
+ for ( TInt i = 0; i < count; i++ )
+ {
+ TPtrC retPtr;
+ if ( iInlineTextSourceArray->At(i)->HasInlineTextAt( aAt, retPtr ) )
+ return retPtr;
+ }
+
+#ifdef _DEBUG
+ TBuf<80> buf;
+ buf.Format( _L("Bad fetch of inline text at Pos: %d Trailing/Leading: %d"),
+ aAt.iPos,
+ aAt.iLeadingEdge );
+ RDebug::Print( buf );
+
+ __ASSERT_DEBUG( EFalse, Panic( EAknInlineTextFormattingBadInlineTextFetch ) );
+#endif
+
+ return KBadCharacter();
+
+ }
+
+//
+// Formatting notification is just passed to all inline text formatters
+//
+void CAknCompositeInlineTextSource::CheckFormattingL(
+ const TTmDocPos& aFrom, const TTmDocPos& aTo )
+ {
+ TInt count = iInlineTextSourceArray->Count();
+ for ( TInt i = 0; i < count; i++ )
+ {
+ iInlineTextSourceArray->At(i)->CheckFormattingL( aFrom, aTo );
+ }
+ }
+
+CAknCompositeInlineTextSource::CAknCompositeInlineTextSource()
+ {}
+
+void CAknCompositeInlineTextSource::ConstructL()
+ {
+ iInlineTextSourceArray = new (ELeave) CAknInlineTextSourceArray(1); // Unit granularity
+ }
+
+void CAknCompositeInlineTextSource::EditObserver( TInt aStart, TInt aExtent )
+ {
+ TInt count = iInlineTextSourceArray->Count();
+ for ( TInt i = 0; i < count; i++ )
+ {
+ iInlineTextSourceArray->At(i)->EditObserver( aStart, aExtent );
+ }
+ }
+
+// End of File