os/textandloc/textrendering/texthandling/stext/TXTRTFLD.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     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".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description: 
    15 *
    16 */
    17 
    18 
    19 #include <e32std.h>
    20 #include "FLDINFO.H"
    21 #include "FLDSET.H"
    22 #include "TXTRICH.H"
    23 
    24 #include "TXTSTD.H"
    25 #include "TXTINDEX.H"
    26 #include "ParseLst.h"
    27 
    28 #include "OstTraceDefinitions.h"
    29 #ifdef OST_TRACE_COMPILER_IN_USE
    30 #include "TXTRTFLDTraces.h"
    31 #endif
    32 
    33 #ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
    34 #include "TXTETEXT_INTERNAL.H"
    35 #endif 
    36 
    37 EXPORT_C void CRichText::UpdateFieldL(TInt aPos)
    38 // Updates the field at aPos, adjusting the rich text index by the required amount.
    39 //
    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.
    43 
    44 Notes:
    45 
    46 fields have a maximum length of 20 characters
    47 
    48 the first time a field is updated, the position specified should be the position 
    49 at which the field was inserted
    50 
    51 @param aPos A document position in the field to be updated. Must be a valid 
    52 position, or a panic occurs. */
    53 	{
    54 	__TEST_INVARIANT;
    55 	if (aPos < 0 || aPos > DocumentLength())
    56 	    {
    57 	    OstTrace0( TRACE_DUMP, CRICHTEXT_UPDATEFIELDL, "ECharPosBeyondDocument" );
    58 	    }
    59 	__ASSERT_ALWAYS(aPos >= 0 && aPos <= DocumentLength(), Panic(ECharPosBeyondDocument));
    60 
    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
    65 
    66 		/*
    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.
    70 		*/
    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();
    75 		if (indexPresent)
    76 			{
    77 			TRAPD(ret, iIndex->InsertL(aPos, valueBuf->Des(), *iGlobalParaFormatLayer));
    78 			if (ret != KErrNone)
    79 				{
    80 				DoPtDelete(fieldInfo.iFirstFieldPos, valueBuf->Length());
    81 				User::Leave(ret);
    82 				}
    83 			}
    84 		//
    85 		// Now delete the old field value from the text.
    86 		TIndexDeleteInfo indexInfo;
    87 		if (indexPresent)
    88 			{
    89 			TRAPD(ret, iIndex->SetForDeleteL(indexInfo, fieldInfo.iFirstFieldPos + valueBuf->Length(), fieldInfo.iFirstFieldLen));
    90 			if (ret != KErrNone)
    91 				{// Maintain rich text invariant.  Both old&new values now make up the current field value.
    92 				iFieldSet->NotifyFieldUpdate(aPos, valueBuf->Length() + fieldInfo.iFirstFieldLen);
    93 				User::Leave(ret);
    94 				}// Not the greatest but at least the text stream is consistent with the rich text index.
    95 			iIndex->DeleteNow(indexInfo);
    96 			}
    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
    99 		//
   100 		iParserData->MergeRange(aPos,fieldInfo.iFirstFieldLen,valueBuf->Length());
   101 		CallEditObserver(aPos, valueBuf->Length() - fieldInfo.iFirstFieldLen);
   102 		CleanupStack::PopAndDestroy(); // valueBuf
   103 		}
   104 
   105 	__TEST_INVARIANT;
   106 	}