Update contrib.
2 * Copyright (c) 1997-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.
28 #include "OstTraceDefinitions.h"
29 #ifdef OST_TRACE_COMPILER_IN_USE
30 #include "TXTRTFLDTraces.h"
33 #ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
34 #include "TXTETEXT_INTERNAL.H"
37 EXPORT_C void CRichText::UpdateFieldL(TInt aPos)
38 // Updates the field at aPos, adjusting the rich text index by the required amount.
40 /** Re-evaluates the field which covers the document position specified. Re-evaluating
41 a field means calculating the field's new value, then inserting that value
42 into the text object, replacing the previous value.
46 fields have a maximum length of 20 characters
48 the first time a field is updated, the position specified should be the position
49 at which the field was inserted
51 @param aPos A document position in the field to be updated. Must be a valid
52 position, or a panic occurs. */
55 if (aPos < 0 || aPos > DocumentLength())
57 OstTrace0( TRACE_DUMP, CRICHTEXT_UPDATEFIELDL, "ECharPosBeyondDocument" );
59 __ASSERT_ALWAYS(aPos >= 0 && aPos <= DocumentLength(), Panic(ECharPosBeyondDocument));
61 TFindFieldInfo fieldInfo;
62 if (iFieldSet->FindFields(fieldInfo, aPos))
63 {// a field exists at aPos, so update it.
64 HBufC* valueBuf = HBufC::NewL(KMaxFieldBufferSize); // will hold the new value
67 Calculate new field value and insert it.
68 Don't put valueBuf on the cleanup stack before calling NewFieldValueL because NewFieldValueL
69 sometimes changes valueBuf, in which case it itself puts it on the cleanup stack.
71 iFieldSet->NewFieldValueL(valueBuf, fieldInfo.iFirstFieldPos); // get the new value
72 CleanupStack::PushL(valueBuf);
73 DoPtInsertL(fieldInfo.iFirstFieldPos, *valueBuf); // insert the new text into the document
74 TBool indexPresent = IndexPresent();
77 TRAPD(ret, iIndex->InsertL(aPos, valueBuf->Des(), *iGlobalParaFormatLayer));
80 DoPtDelete(fieldInfo.iFirstFieldPos, valueBuf->Length());
85 // Now delete the old field value from the text.
86 TIndexDeleteInfo indexInfo;
89 TRAPD(ret, iIndex->SetForDeleteL(indexInfo, fieldInfo.iFirstFieldPos + valueBuf->Length(), fieldInfo.iFirstFieldLen));
91 {// Maintain rich text invariant. Both old&new values now make up the current field value.
92 iFieldSet->NotifyFieldUpdate(aPos, valueBuf->Length() + fieldInfo.iFirstFieldLen);
94 }// Not the greatest but at least the text stream is consistent with the rich text index.
95 iIndex->DeleteNow(indexInfo);
97 DoPtDelete(fieldInfo.iFirstFieldPos + valueBuf->Length(), fieldInfo.iFirstFieldLen); // delete the old text of the field
98 iFieldSet->NotifyFieldUpdate(aPos, valueBuf->Length()); // inform the field set
100 iParserData->MergeRange(aPos,fieldInfo.iFirstFieldLen,valueBuf->Length());
101 CallEditObserver(aPos, valueBuf->Length() - fieldInfo.iFirstFieldLen);
102 CleanupStack::PopAndDestroy(); // valueBuf