sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <e32std.h>
|
sl@0
|
20 |
#include "FLDINFO.H"
|
sl@0
|
21 |
#include "FLDSET.H"
|
sl@0
|
22 |
#include "TXTRICH.H"
|
sl@0
|
23 |
|
sl@0
|
24 |
#include "TXTSTD.H"
|
sl@0
|
25 |
#include "TXTINDEX.H"
|
sl@0
|
26 |
#include "ParseLst.h"
|
sl@0
|
27 |
|
sl@0
|
28 |
#include "OstTraceDefinitions.h"
|
sl@0
|
29 |
#ifdef OST_TRACE_COMPILER_IN_USE
|
sl@0
|
30 |
#include "TXTRTFLDTraces.h"
|
sl@0
|
31 |
#endif
|
sl@0
|
32 |
|
sl@0
|
33 |
#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
|
sl@0
|
34 |
#include "TXTETEXT_INTERNAL.H"
|
sl@0
|
35 |
#endif
|
sl@0
|
36 |
|
sl@0
|
37 |
EXPORT_C void CRichText::UpdateFieldL(TInt aPos)
|
sl@0
|
38 |
// Updates the field at aPos, adjusting the rich text index by the required amount.
|
sl@0
|
39 |
//
|
sl@0
|
40 |
/** Re-evaluates the field which covers the document position specified. Re-evaluating
|
sl@0
|
41 |
a field means calculating the field's new value, then inserting that value
|
sl@0
|
42 |
into the text object, replacing the previous value.
|
sl@0
|
43 |
|
sl@0
|
44 |
Notes:
|
sl@0
|
45 |
|
sl@0
|
46 |
fields have a maximum length of 20 characters
|
sl@0
|
47 |
|
sl@0
|
48 |
the first time a field is updated, the position specified should be the position
|
sl@0
|
49 |
at which the field was inserted
|
sl@0
|
50 |
|
sl@0
|
51 |
@param aPos A document position in the field to be updated. Must be a valid
|
sl@0
|
52 |
position, or a panic occurs. */
|
sl@0
|
53 |
{
|
sl@0
|
54 |
__TEST_INVARIANT;
|
sl@0
|
55 |
if (aPos < 0 || aPos > DocumentLength())
|
sl@0
|
56 |
{
|
sl@0
|
57 |
OstTrace0( TRACE_DUMP, CRICHTEXT_UPDATEFIELDL, "ECharPosBeyondDocument" );
|
sl@0
|
58 |
}
|
sl@0
|
59 |
__ASSERT_ALWAYS(aPos >= 0 && aPos <= DocumentLength(), Panic(ECharPosBeyondDocument));
|
sl@0
|
60 |
|
sl@0
|
61 |
TFindFieldInfo fieldInfo;
|
sl@0
|
62 |
if (iFieldSet->FindFields(fieldInfo, aPos))
|
sl@0
|
63 |
{// a field exists at aPos, so update it.
|
sl@0
|
64 |
HBufC* valueBuf = HBufC::NewL(KMaxFieldBufferSize); // will hold the new value
|
sl@0
|
65 |
|
sl@0
|
66 |
/*
|
sl@0
|
67 |
Calculate new field value and insert it.
|
sl@0
|
68 |
Don't put valueBuf on the cleanup stack before calling NewFieldValueL because NewFieldValueL
|
sl@0
|
69 |
sometimes changes valueBuf, in which case it itself puts it on the cleanup stack.
|
sl@0
|
70 |
*/
|
sl@0
|
71 |
iFieldSet->NewFieldValueL(valueBuf, fieldInfo.iFirstFieldPos); // get the new value
|
sl@0
|
72 |
CleanupStack::PushL(valueBuf);
|
sl@0
|
73 |
DoPtInsertL(fieldInfo.iFirstFieldPos, *valueBuf); // insert the new text into the document
|
sl@0
|
74 |
TBool indexPresent = IndexPresent();
|
sl@0
|
75 |
if (indexPresent)
|
sl@0
|
76 |
{
|
sl@0
|
77 |
TRAPD(ret, iIndex->InsertL(aPos, valueBuf->Des(), *iGlobalParaFormatLayer));
|
sl@0
|
78 |
if (ret != KErrNone)
|
sl@0
|
79 |
{
|
sl@0
|
80 |
DoPtDelete(fieldInfo.iFirstFieldPos, valueBuf->Length());
|
sl@0
|
81 |
User::Leave(ret);
|
sl@0
|
82 |
}
|
sl@0
|
83 |
}
|
sl@0
|
84 |
//
|
sl@0
|
85 |
// Now delete the old field value from the text.
|
sl@0
|
86 |
TIndexDeleteInfo indexInfo;
|
sl@0
|
87 |
if (indexPresent)
|
sl@0
|
88 |
{
|
sl@0
|
89 |
TRAPD(ret, iIndex->SetForDeleteL(indexInfo, fieldInfo.iFirstFieldPos + valueBuf->Length(), fieldInfo.iFirstFieldLen));
|
sl@0
|
90 |
if (ret != KErrNone)
|
sl@0
|
91 |
{// Maintain rich text invariant. Both old&new values now make up the current field value.
|
sl@0
|
92 |
iFieldSet->NotifyFieldUpdate(aPos, valueBuf->Length() + fieldInfo.iFirstFieldLen);
|
sl@0
|
93 |
User::Leave(ret);
|
sl@0
|
94 |
}// Not the greatest but at least the text stream is consistent with the rich text index.
|
sl@0
|
95 |
iIndex->DeleteNow(indexInfo);
|
sl@0
|
96 |
}
|
sl@0
|
97 |
DoPtDelete(fieldInfo.iFirstFieldPos + valueBuf->Length(), fieldInfo.iFirstFieldLen); // delete the old text of the field
|
sl@0
|
98 |
iFieldSet->NotifyFieldUpdate(aPos, valueBuf->Length()); // inform the field set
|
sl@0
|
99 |
//
|
sl@0
|
100 |
iParserData->MergeRange(aPos,fieldInfo.iFirstFieldLen,valueBuf->Length());
|
sl@0
|
101 |
CallEditObserver(aPos, valueBuf->Length() - fieldInfo.iFirstFieldLen);
|
sl@0
|
102 |
CleanupStack::PopAndDestroy(); // valueBuf
|
sl@0
|
103 |
}
|
sl@0
|
104 |
|
sl@0
|
105 |
__TEST_INVARIANT;
|
sl@0
|
106 |
}
|