sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 1997-2010 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 <txtetext.h>
|
sl@0
|
20 |
#include <txtglobl.h>
|
sl@0
|
21 |
#include <txtfmlyr.h>
|
sl@0
|
22 |
#include <s32mem.h>
|
sl@0
|
23 |
#include <s32file.h>
|
sl@0
|
24 |
#include <fldbase.h>
|
sl@0
|
25 |
#include <fldbltin.h>
|
sl@0
|
26 |
#include <flddef.h>
|
sl@0
|
27 |
#include "T_CONVS.h"
|
sl@0
|
28 |
|
sl@0
|
29 |
#define test(cond) \
|
sl@0
|
30 |
{ \
|
sl@0
|
31 |
TBool __bb = (cond); \
|
sl@0
|
32 |
TEST(__bb); \
|
sl@0
|
33 |
if (!__bb) \
|
sl@0
|
34 |
{ \
|
sl@0
|
35 |
ERR_PRINTF1(_L("ERROR: Test Failed")); \
|
sl@0
|
36 |
User::Leave(1); \
|
sl@0
|
37 |
} \
|
sl@0
|
38 |
}
|
sl@0
|
39 |
|
sl@0
|
40 |
const TInt KTestCleanupStack=0x20;
|
sl@0
|
41 |
const TInt KTestExpandSize=0x20;
|
sl@0
|
42 |
|
sl@0
|
43 |
LOCAL_D CTrapCleanup* TheTrapCleanup;
|
sl@0
|
44 |
LOCAL_D TPtrC bigBuf(_L("This is a very big buffer indeed, containing text and special characters,\
|
sl@0
|
45 |
big enough to fill a segment of an editable text component that employs segmented storage"));
|
sl@0
|
46 |
|
sl@0
|
47 |
////////////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
48 |
class TTestFieldFactoryCONVS : public MTextFieldFactory
|
sl@0
|
49 |
{
|
sl@0
|
50 |
public:
|
sl@0
|
51 |
// from MTextFieldFactory
|
sl@0
|
52 |
virtual CTextField* NewFieldL(TUid aFieldType);
|
sl@0
|
53 |
// Creates a field of the type specified
|
sl@0
|
54 |
// Returns NULL if it does not recognise/support the field type
|
sl@0
|
55 |
};
|
sl@0
|
56 |
|
sl@0
|
57 |
CTextField* TTestFieldFactoryCONVS::NewFieldL(TUid aFieldType)
|
sl@0
|
58 |
// Creates a field (in aHeader) of the type specified in aHeader
|
sl@0
|
59 |
//
|
sl@0
|
60 |
{
|
sl@0
|
61 |
CTextField* field=NULL;
|
sl@0
|
62 |
if (aFieldType==KDateTimeFieldUid)
|
sl@0
|
63 |
field = (CTextField*)new(ELeave) CDateTimeField();
|
sl@0
|
64 |
return field;
|
sl@0
|
65 |
}
|
sl@0
|
66 |
/////////////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
67 |
|
sl@0
|
68 |
template <class T>
|
sl@0
|
69 |
void CT_CONVS::testCopy(T &aCopy,const T &anOriginal)
|
sl@0
|
70 |
//
|
sl@0
|
71 |
// Copy anOriginal to aCopy using memory-based streams.
|
sl@0
|
72 |
//
|
sl@0
|
73 |
{
|
sl@0
|
74 |
CBufSeg *buf=CBufSeg::NewL(KTestExpandSize);
|
sl@0
|
75 |
if (buf==NULL)
|
sl@0
|
76 |
User::Panic(_L("Allocating buffer"), 1234);
|
sl@0
|
77 |
|
sl@0
|
78 |
// Write anOriginal out to the buffer.
|
sl@0
|
79 |
RBufWriteStream out(*buf);
|
sl@0
|
80 |
TRAPD(r,out<<anOriginal);
|
sl@0
|
81 |
test(r==KErrNone);
|
sl@0
|
82 |
TRAP(r,out.CommitL());
|
sl@0
|
83 |
if (r!=KErrNone)
|
sl@0
|
84 |
User::Panic(_L("Committing write stream"), 1234);
|
sl@0
|
85 |
|
sl@0
|
86 |
// Read anOriginal in from the buffer.
|
sl@0
|
87 |
RBufReadStream in(*buf);
|
sl@0
|
88 |
TRAP(r,in>>aCopy);
|
sl@0
|
89 |
test(r==KErrNone);
|
sl@0
|
90 |
|
sl@0
|
91 |
// See if it's consumed the lot.
|
sl@0
|
92 |
TRAP(r,in.ReadUint8L());
|
sl@0
|
93 |
test(r==KErrEof);
|
sl@0
|
94 |
//
|
sl@0
|
95 |
delete buf;
|
sl@0
|
96 |
}
|
sl@0
|
97 |
|
sl@0
|
98 |
_LIT(KOutputFile, "c:\\etext\\t_convs.tst");
|
sl@0
|
99 |
template <class T>
|
sl@0
|
100 |
void CT_CONVS::testStoreRestoreL(T& aCopy,const T& aOriginal)
|
sl@0
|
101 |
// Test document persistance.
|
sl@0
|
102 |
//
|
sl@0
|
103 |
{
|
sl@0
|
104 |
// set up the store
|
sl@0
|
105 |
RFs theFs;
|
sl@0
|
106 |
theFs.Connect();
|
sl@0
|
107 |
//
|
sl@0
|
108 |
theFs.Delete(KOutputFile);
|
sl@0
|
109 |
theFs.MkDirAll(KOutputFile);
|
sl@0
|
110 |
CFileStore* theStore=CDirectFileStore::CreateL(theFs,KOutputFile,EFileRead|EFileWrite);
|
sl@0
|
111 |
CleanupStack::PushL(theStore);
|
sl@0
|
112 |
theStore->SetTypeL(KDirectFileStoreLayoutUid);
|
sl@0
|
113 |
//
|
sl@0
|
114 |
// store the original
|
sl@0
|
115 |
TStreamId id(0);
|
sl@0
|
116 |
TRAPD(ret,id=aOriginal.StoreL(*theStore));
|
sl@0
|
117 |
test(ret==KErrNone);
|
sl@0
|
118 |
//
|
sl@0
|
119 |
// restore into the copy
|
sl@0
|
120 |
TRAP(ret,aCopy.RestoreL(*theStore,id));
|
sl@0
|
121 |
test(ret==KErrNone);
|
sl@0
|
122 |
//
|
sl@0
|
123 |
// tidy up
|
sl@0
|
124 |
CleanupStack::PopAndDestroy(); // theStore
|
sl@0
|
125 |
theFs.Close();
|
sl@0
|
126 |
}
|
sl@0
|
127 |
|
sl@0
|
128 |
|
sl@0
|
129 |
template <class T>
|
sl@0
|
130 |
void CT_CONVS::testCopyChain(T &aCopy,const T &anOriginal,TInt aExcludeCount,const CFormatLayer* aBase)
|
sl@0
|
131 |
//
|
sl@0
|
132 |
// Copy anOriginal to aCopy using memory-based streams.
|
sl@0
|
133 |
//
|
sl@0
|
134 |
{
|
sl@0
|
135 |
CBufSeg *buf=CBufSeg::NewL(KTestExpandSize);
|
sl@0
|
136 |
if (buf==NULL)
|
sl@0
|
137 |
User::Panic(_L("Allocating buffer"), 1234);
|
sl@0
|
138 |
|
sl@0
|
139 |
// Write anOriginal out to the buffer.
|
sl@0
|
140 |
RBufWriteStream out(*buf);
|
sl@0
|
141 |
TRAPD(r,anOriginal.ExternalizeChainL(out,aExcludeCount));
|
sl@0
|
142 |
test(r==KErrNone);
|
sl@0
|
143 |
TRAP(r,out.CommitL());
|
sl@0
|
144 |
if (r!=KErrNone)
|
sl@0
|
145 |
User::Panic(_L("Committing write stream"), 1234);
|
sl@0
|
146 |
|
sl@0
|
147 |
// Read anOriginal in from the buffer.
|
sl@0
|
148 |
RBufReadStream in(*buf);
|
sl@0
|
149 |
TRAP(r,aCopy.InternalizeChainL(in,aBase));
|
sl@0
|
150 |
test(r==KErrNone);
|
sl@0
|
151 |
|
sl@0
|
152 |
// See if it's consumed the lot.
|
sl@0
|
153 |
TRAP(r,in.ReadUint8L());
|
sl@0
|
154 |
test(r!=KErrNone);
|
sl@0
|
155 |
//
|
sl@0
|
156 |
delete buf;
|
sl@0
|
157 |
}
|
sl@0
|
158 |
|
sl@0
|
159 |
|
sl@0
|
160 |
TInt CT_CONVS::IsEqual(const CPlainText* aCopy,const CPlainText* aOriginal)
|
sl@0
|
161 |
//
|
sl@0
|
162 |
// Returns true if aCopy contents matches aOriginal contents.
|
sl@0
|
163 |
// Takes account of multiple segments of a segmented text component.
|
sl@0
|
164 |
//
|
sl@0
|
165 |
{
|
sl@0
|
166 |
TInt lengthOfOriginal=aOriginal->DocumentLength();
|
sl@0
|
167 |
TInt lengthOfCopy=aCopy->DocumentLength();
|
sl@0
|
168 |
test(lengthOfOriginal==lengthOfCopy);
|
sl@0
|
169 |
//
|
sl@0
|
170 |
TPtrC copy,orig;
|
sl@0
|
171 |
//
|
sl@0
|
172 |
TInt lengthRead=0;
|
sl@0
|
173 |
while(lengthRead<=lengthOfOriginal)
|
sl@0
|
174 |
{
|
sl@0
|
175 |
copy.Set((aCopy->Read(lengthRead)));
|
sl@0
|
176 |
orig.Set((aOriginal->Read(lengthRead)));
|
sl@0
|
177 |
for (TInt offset=0; offset<orig.Length(); offset++)
|
sl@0
|
178 |
test(copy[offset]==orig[offset]);
|
sl@0
|
179 |
lengthRead+=orig.Length();
|
sl@0
|
180 |
}
|
sl@0
|
181 |
test(lengthRead==lengthOfOriginal+1);
|
sl@0
|
182 |
test(aCopy->FieldCount()==aOriginal->FieldCount());
|
sl@0
|
183 |
return 1;
|
sl@0
|
184 |
}
|
sl@0
|
185 |
|
sl@0
|
186 |
|
sl@0
|
187 |
void CT_CONVS::testPlainTextL(CEditableText::TDocumentStorage aStorage)
|
sl@0
|
188 |
//
|
sl@0
|
189 |
// Test streaming CPlainText.
|
sl@0
|
190 |
//
|
sl@0
|
191 |
{// Create the plain text components.
|
sl@0
|
192 |
INFO_PRINTF1(_L("Streaming CPlainText"));
|
sl@0
|
193 |
CPlainText* copy=CPlainText::NewL(aStorage);
|
sl@0
|
194 |
CPlainText* testDoc=CPlainText::NewL(aStorage);
|
sl@0
|
195 |
//
|
sl@0
|
196 |
// Set the original - empty
|
sl@0
|
197 |
INFO_PRINTF1(_L("empty."));
|
sl@0
|
198 |
testStoreRestoreL(*copy,*testDoc);
|
sl@0
|
199 |
test(IsEqual(copy,testDoc));
|
sl@0
|
200 |
//
|
sl@0
|
201 |
INFO_PRINTF1(_L("paragraph delimiter"));
|
sl@0
|
202 |
TRAPD(r,testDoc->InsertL(0,CEditableText::EParagraphDelimiter));
|
sl@0
|
203 |
test(r==KErrNone);
|
sl@0
|
204 |
testStoreRestoreL(*copy,*testDoc);
|
sl@0
|
205 |
test(IsEqual(copy,testDoc));
|
sl@0
|
206 |
//
|
sl@0
|
207 |
// Next test with tons of text guaranteed to force segment break when using segmented storage.
|
sl@0
|
208 |
INFO_PRINTF1(_L("big text component"));
|
sl@0
|
209 |
testDoc->InsertL(0,bigBuf);
|
sl@0
|
210 |
testStoreRestoreL(*copy,*testDoc);
|
sl@0
|
211 |
test(IsEqual(copy,testDoc));
|
sl@0
|
212 |
//
|
sl@0
|
213 |
// Now test with field components.
|
sl@0
|
214 |
INFO_PRINTF1(_L("big text doc with field components."));
|
sl@0
|
215 |
TTestFieldFactoryCONVS factory;
|
sl@0
|
216 |
testDoc->SetFieldFactory(&factory);
|
sl@0
|
217 |
copy->SetFieldFactory(&factory);
|
sl@0
|
218 |
CTextField* field=NULL;
|
sl@0
|
219 |
TRAPD(ret,
|
sl@0
|
220 |
field=factory.NewFieldL(KDateTimeFieldUid));
|
sl@0
|
221 |
test(ret==KErrNone);
|
sl@0
|
222 |
TRAP(ret,
|
sl@0
|
223 |
testDoc->InsertFieldL(0,field,KDateTimeFieldUid));
|
sl@0
|
224 |
test(ret==KErrNone);
|
sl@0
|
225 |
testStoreRestoreL(*copy,*testDoc);
|
sl@0
|
226 |
test(IsEqual(copy,testDoc));
|
sl@0
|
227 |
//
|
sl@0
|
228 |
//
|
sl@0
|
229 |
delete copy;
|
sl@0
|
230 |
delete testDoc;
|
sl@0
|
231 |
}
|
sl@0
|
232 |
|
sl@0
|
233 |
|
sl@0
|
234 |
void CT_CONVS::testGlobalTextL(CEditableText::TDocumentStorage aStorage)
|
sl@0
|
235 |
//
|
sl@0
|
236 |
// Test streaming CGlobalText.
|
sl@0
|
237 |
//
|
sl@0
|
238 |
{// Create the plain text components.
|
sl@0
|
239 |
INFO_PRINTF1(_L("Streaming CGlobalText"));
|
sl@0
|
240 |
CParaFormatLayer* paraLayer=CParaFormatLayer::NewL();
|
sl@0
|
241 |
CCharFormatLayer* charLayer=CCharFormatLayer::NewL();
|
sl@0
|
242 |
// Set something interesting in the layers:
|
sl@0
|
243 |
CParaFormat* paraFormat1=CParaFormat::NewL(); TParaFormatMask paraMask1;
|
sl@0
|
244 |
TCharFormat charFormat1; TCharFormatMask charMask1;
|
sl@0
|
245 |
paraFormat1->iHorizontalAlignment=CParaFormat::ECenterAlign; paraMask1.SetAttrib(EAttAlignment);
|
sl@0
|
246 |
paraFormat1->iLeftMarginInTwips=4000; paraMask1.SetAttrib(EAttLeftMargin);
|
sl@0
|
247 |
paraLayer->SetL(paraFormat1,paraMask1);
|
sl@0
|
248 |
charFormat1.iFontSpec.iFontStyle.SetPosture(EPostureItalic); charMask1.SetAttrib(EAttFontPosture);
|
sl@0
|
249 |
charFormat1.iFontSpec.iFontStyle.SetStrokeWeight(EStrokeWeightBold); charMask1.SetAttrib(EAttFontStrokeWeight);
|
sl@0
|
250 |
charLayer->SetL(charFormat1,charMask1);
|
sl@0
|
251 |
//
|
sl@0
|
252 |
CGlobalText* copy=CGlobalText::NewL(paraLayer,charLayer,aStorage);
|
sl@0
|
253 |
CGlobalText* testDoc=CGlobalText::NewL(paraLayer,charLayer,aStorage);
|
sl@0
|
254 |
|
sl@0
|
255 |
// Set the original - empty
|
sl@0
|
256 |
INFO_PRINTF1(_L("empty."));
|
sl@0
|
257 |
testStoreRestoreL(*copy,*testDoc);
|
sl@0
|
258 |
test(IsEqual(copy,testDoc));
|
sl@0
|
259 |
//
|
sl@0
|
260 |
INFO_PRINTF1(_L("paragraph delimiter"));
|
sl@0
|
261 |
TRAPD(r,testDoc->InsertL(0,CEditableText::EParagraphDelimiter));
|
sl@0
|
262 |
test(r==KErrNone);
|
sl@0
|
263 |
testStoreRestoreL(*copy,*testDoc);
|
sl@0
|
264 |
test(IsEqual(copy,testDoc));
|
sl@0
|
265 |
|
sl@0
|
266 |
// Next test with tons of text guaranteed to force segment break when using segmented storage.
|
sl@0
|
267 |
INFO_PRINTF1(_L("big text component"));
|
sl@0
|
268 |
testDoc->InsertL(0,bigBuf);
|
sl@0
|
269 |
testStoreRestoreL(*copy,*testDoc);
|
sl@0
|
270 |
test(IsEqual(copy,testDoc));
|
sl@0
|
271 |
|
sl@0
|
272 |
delete copy;
|
sl@0
|
273 |
delete testDoc;
|
sl@0
|
274 |
delete paraLayer;
|
sl@0
|
275 |
delete charLayer;
|
sl@0
|
276 |
delete paraFormat1;
|
sl@0
|
277 |
}
|
sl@0
|
278 |
|
sl@0
|
279 |
|
sl@0
|
280 |
TInt CT_CONVS::LayerIsEqual(const CParaFormatLayer* aRestored,const CParaFormatLayer* aOriginal)
|
sl@0
|
281 |
//
|
sl@0
|
282 |
// Returns true if aRestored contents matches aOriginal contents.
|
sl@0
|
283 |
//
|
sl@0
|
284 |
{
|
sl@0
|
285 |
CParaFormat* restored=NULL; TParaFormatMask rm;
|
sl@0
|
286 |
CParaFormat* original=NULL; TParaFormatMask om;
|
sl@0
|
287 |
TRAPD(r,restored=CParaFormat::NewL()); test(r==KErrNone);
|
sl@0
|
288 |
TRAP(r,original=CParaFormat::NewL()); test(r==KErrNone);
|
sl@0
|
289 |
|
sl@0
|
290 |
aOriginal->SenseL(original,om);
|
sl@0
|
291 |
aRestored->SenseL(restored,rm);
|
sl@0
|
292 |
|
sl@0
|
293 |
test(original->IsEqual(*restored));
|
sl@0
|
294 |
|
sl@0
|
295 |
delete restored;
|
sl@0
|
296 |
delete original;
|
sl@0
|
297 |
return 1;
|
sl@0
|
298 |
}
|
sl@0
|
299 |
|
sl@0
|
300 |
|
sl@0
|
301 |
TInt CT_CONVS::LayerIsEqual(const CCharFormatLayer* aRestored,const CCharFormatLayer* aOriginal)
|
sl@0
|
302 |
//
|
sl@0
|
303 |
// Returns true if aRestored contents matches aOriginal contents.
|
sl@0
|
304 |
//
|
sl@0
|
305 |
{
|
sl@0
|
306 |
TCharFormat restored; TCharFormatMask rm;
|
sl@0
|
307 |
TCharFormat original; TCharFormatMask om;
|
sl@0
|
308 |
|
sl@0
|
309 |
aOriginal->Sense(original,om);
|
sl@0
|
310 |
aRestored->Sense(restored,rm);
|
sl@0
|
311 |
|
sl@0
|
312 |
test(original.IsEqual(restored));
|
sl@0
|
313 |
|
sl@0
|
314 |
return 1;
|
sl@0
|
315 |
}
|
sl@0
|
316 |
|
sl@0
|
317 |
|
sl@0
|
318 |
void CT_CONVS::testFmtLayerStoreL()
|
sl@0
|
319 |
//
|
sl@0
|
320 |
// Test the format layer StoreL().
|
sl@0
|
321 |
//
|
sl@0
|
322 |
{
|
sl@0
|
323 |
INFO_PRINTF1(_L("CParaFormatLayer"));
|
sl@0
|
324 |
// Create test layers.
|
sl@0
|
325 |
CParaFormatLayer* pfl1=NULL;
|
sl@0
|
326 |
CParaFormatLayer* restored=NULL;
|
sl@0
|
327 |
CParaFormat* pf1=NULL;
|
sl@0
|
328 |
TRAPD(r,restored=CParaFormatLayer::NewL()); test(r==KErrNone);
|
sl@0
|
329 |
// Force *restored* to allocate storage for iteself by storing a null layer.
|
sl@0
|
330 |
TParaFormatMask rm; rm.ClearAll(); CParaFormat* rpf=NULL;
|
sl@0
|
331 |
restored->SetL(rpf,rm);
|
sl@0
|
332 |
TRAP(r,pfl1=CParaFormatLayer::NewL()); test(r==KErrNone);
|
sl@0
|
333 |
TRAP(r,pf1=CParaFormat::NewL()); test(r==KErrNone);
|
sl@0
|
334 |
TParaFormatMask pm1;
|
sl@0
|
335 |
pm1.SetAll(); // Sets all but the compound attributes.
|
sl@0
|
336 |
// TEST ONE DEFAULT CASES
|
sl@0
|
337 |
INFO_PRINTF1(_L("Default paragraph format values."));
|
sl@0
|
338 |
TRAP(r,pfl1->SetL(pf1,pm1)); test(r==KErrNone);
|
sl@0
|
339 |
testCopy(*restored,*pfl1);
|
sl@0
|
340 |
test(LayerIsEqual(restored,pfl1));
|
sl@0
|
341 |
test(restored->SenseBase()==pfl1->SenseBase()); // Both should default to based on NULL
|
sl@0
|
342 |
// TEST TWO
|
sl@0
|
343 |
INFO_PRINTF1(_L("Setting all attributes"));
|
sl@0
|
344 |
pf1->iLeftMarginInTwips=5000; pm1.ClearAll(); pm1.SetAttrib(EAttLeftMargin);
|
sl@0
|
345 |
pf1->iRightMarginInTwips=5001; pm1.SetAttrib(EAttRightMargin);
|
sl@0
|
346 |
pf1->iIndentInTwips=5002;pm1.SetAttrib(EAttIndent);
|
sl@0
|
347 |
pf1->iHorizontalAlignment=CParaFormat::ERightAlign; pm1.SetAttrib(EAttAlignment);
|
sl@0
|
348 |
pf1->iVerticalAlignment=CParaFormat::ECenterAlign; pm1.SetAttrib(EAttVerticalAlignment);
|
sl@0
|
349 |
pf1->iLineSpacingInTwips=5003; pm1.SetAttrib(EAttLineSpacing);
|
sl@0
|
350 |
pf1->iLineSpacingControl=CParaFormat::ELineSpacingAtLeastInTwips; pm1.SetAttrib(EAttLineSpacingControl);
|
sl@0
|
351 |
pf1->iSpaceBeforeInTwips=5004; pm1.SetAttrib(EAttSpaceBefore);
|
sl@0
|
352 |
pf1->iSpaceAfterInTwips=5005; pm1.SetAttrib(EAttSpaceAfter);
|
sl@0
|
353 |
pf1->iKeepTogether=ETrue; pm1.SetAttrib(EAttKeepTogether);
|
sl@0
|
354 |
pf1->iKeepWithNext=ETrue; pm1.SetAttrib(EAttKeepWithNext);
|
sl@0
|
355 |
pf1->iStartNewPage=ETrue; pm1.SetAttrib(EAttStartNewPage);
|
sl@0
|
356 |
pf1->iWidowOrphan=ETrue; pm1.SetAttrib(EAttWidowOrphan);
|
sl@0
|
357 |
pf1->iWrap=EFalse; pm1.SetAttrib(EAttWrap);
|
sl@0
|
358 |
pf1->iBorderMarginInTwips=5006; pm1.SetAttrib(EAttBorderMargin);
|
sl@0
|
359 |
pf1->iDefaultTabWidthInTwips=5007; pm1.SetAttrib(EAttDefaultTabWidth);
|
sl@0
|
360 |
// TopBorder
|
sl@0
|
361 |
TParaBorder top;
|
sl@0
|
362 |
top.iLineStyle=TParaBorder::ESolid;
|
sl@0
|
363 |
top.iThickness=4;
|
sl@0
|
364 |
top.iAutoColor=ETrue;
|
sl@0
|
365 |
pf1->SetParaBorderL(CParaFormat::EParaBorderTop,top);
|
sl@0
|
366 |
pm1.SetAttrib(EAttTopBorder);
|
sl@0
|
367 |
// BottomBorder
|
sl@0
|
368 |
TParaBorder bottom;
|
sl@0
|
369 |
bottom.iLineStyle=TParaBorder::ESolid;
|
sl@0
|
370 |
bottom.iThickness=4;
|
sl@0
|
371 |
bottom.iAutoColor=ETrue;
|
sl@0
|
372 |
pf1->SetParaBorderL(CParaFormat::EParaBorderBottom,bottom);
|
sl@0
|
373 |
pm1.SetAttrib(EAttBottomBorder);
|
sl@0
|
374 |
// LeftBorder
|
sl@0
|
375 |
TParaBorder left;
|
sl@0
|
376 |
left.iLineStyle=TParaBorder::ESolid;
|
sl@0
|
377 |
left.iThickness=4;
|
sl@0
|
378 |
left.iAutoColor=ETrue;
|
sl@0
|
379 |
pf1->SetParaBorderL(CParaFormat::EParaBorderLeft,left);
|
sl@0
|
380 |
pm1.SetAttrib(EAttLeftBorder);
|
sl@0
|
381 |
// RightBorder
|
sl@0
|
382 |
TParaBorder right;
|
sl@0
|
383 |
right.iLineStyle=TParaBorder::ESolid;
|
sl@0
|
384 |
right.iThickness=4;
|
sl@0
|
385 |
top.iAutoColor=ETrue;
|
sl@0
|
386 |
pf1->SetParaBorderL(CParaFormat::EParaBorderRight,right);
|
sl@0
|
387 |
pm1.SetAttrib(EAttRightBorder);
|
sl@0
|
388 |
// Bullet
|
sl@0
|
389 |
pf1->iBullet=new(ELeave)TBullet;
|
sl@0
|
390 |
TUint charCode=5008;
|
sl@0
|
391 |
pf1->iBullet->iCharacterCode=(TUint8)charCode;
|
sl@0
|
392 |
pf1->iBullet->iHeightInTwips=5009;
|
sl@0
|
393 |
pf1->iBullet->iTypeface.iName=_L("Duncan");
|
sl@0
|
394 |
pf1->iBullet->iTypeface.SetIsProportional(EFalse);
|
sl@0
|
395 |
pf1->iBullet->iTypeface.SetIsSerif(EFalse);
|
sl@0
|
396 |
pm1.SetAttrib(EAttBullet);
|
sl@0
|
397 |
// 2 Tab Stops.
|
sl@0
|
398 |
TTabStop tab1,tab2;
|
sl@0
|
399 |
tab1.iTwipsPosition=5010; tab1.iType=TTabStop::ERightTab;
|
sl@0
|
400 |
tab2.iTwipsPosition=5011; tab2.iType=TTabStop::ECenteredTab;
|
sl@0
|
401 |
pf1->StoreTabL(tab1);
|
sl@0
|
402 |
pf1->StoreTabL(tab2);
|
sl@0
|
403 |
pm1.SetAttrib(EAttTabStop);
|
sl@0
|
404 |
//
|
sl@0
|
405 |
TRAP(r,pfl1->SetL(pf1,pm1));
|
sl@0
|
406 |
testCopy(*restored,*pfl1);
|
sl@0
|
407 |
test(LayerIsEqual(restored,pfl1));
|
sl@0
|
408 |
test(restored->SenseBase()==pfl1->SenseBase()); // Both should default to based on NULL
|
sl@0
|
409 |
//
|
sl@0
|
410 |
delete pf1;
|
sl@0
|
411 |
delete pfl1;
|
sl@0
|
412 |
delete restored;
|
sl@0
|
413 |
//
|
sl@0
|
414 |
// Now the CCharFormatLayer Store/Restore
|
sl@0
|
415 |
//
|
sl@0
|
416 |
INFO_PRINTF1(_L("CCharFormatLayer"));
|
sl@0
|
417 |
//
|
sl@0
|
418 |
INFO_PRINTF1(_L("Setting all attributes"));
|
sl@0
|
419 |
// Create test layers.
|
sl@0
|
420 |
CCharFormatLayer* cfl1=NULL;
|
sl@0
|
421 |
CCharFormatLayer* cRestored=NULL;
|
sl@0
|
422 |
TCharFormat cf1; TCharFormatMask cm1;
|
sl@0
|
423 |
//
|
sl@0
|
424 |
TRAP(r,cRestored=CCharFormatLayer::NewL()); test(r==KErrNone);
|
sl@0
|
425 |
// Force *restored* to allocate storage for iteself by storing a null layer.
|
sl@0
|
426 |
TCharFormatMask rcm; rcm.ClearAll(); TCharFormat rcf;
|
sl@0
|
427 |
cRestored->SetL(rcf,rcm);
|
sl@0
|
428 |
//
|
sl@0
|
429 |
TRAP(r,cfl1=CCharFormatLayer::NewL()); test(r==KErrNone);
|
sl@0
|
430 |
//
|
sl@0
|
431 |
TRgb color(20,20,20);
|
sl@0
|
432 |
cf1.iFontPresentation.iTextColor=color; cm1.SetAttrib(EAttColor);
|
sl@0
|
433 |
cf1.iFontSpec.iTypeface.iName=_L("DUNCANXZE");
|
sl@0
|
434 |
cf1.iFontSpec.iTypeface.SetIsProportional(ETrue); cm1.SetAttrib(EAttFontTypeface);
|
sl@0
|
435 |
cf1.iFontSpec.iTypeface.SetIsSerif(EFalse);
|
sl@0
|
436 |
cf1.iFontSpec.iFontStyle.SetBitmapType(EMonochromeGlyphBitmap);
|
sl@0
|
437 |
|
sl@0
|
438 |
cf1.iFontSpec.iHeight=6000; cm1.SetAttrib(EAttFontHeight);
|
sl@0
|
439 |
cf1.iFontSpec.iFontStyle.SetPosture(EPostureItalic); cm1.SetAttrib(EAttFontPosture);
|
sl@0
|
440 |
cf1.iFontSpec.iFontStyle.SetStrokeWeight(EStrokeWeightBold); cm1.SetAttrib(EAttFontStrokeWeight);
|
sl@0
|
441 |
cf1.iFontSpec.iFontStyle.SetPrintPosition(EPrintPosSuperscript); cm1.SetAttrib(EAttFontPrintPos);
|
sl@0
|
442 |
cf1.iFontPresentation.iUnderline=EUnderlineOn; cm1.SetAttrib(EAttFontUnderline);
|
sl@0
|
443 |
cf1.iFontPresentation.iStrikethrough=EStrikethroughOn; cm1.SetAttrib(EAttFontStrikethrough);
|
sl@0
|
444 |
cf1.iFontPresentation.iHighlightColor=color; cm1.SetAttrib(EAttFontHighlightColor);
|
sl@0
|
445 |
cf1.iFontPresentation.iHighlightStyle=TFontPresentation::EFontHighlightNormal; cm1.SetAttrib(EAttFontHighlightStyle);
|
sl@0
|
446 |
//
|
sl@0
|
447 |
TRAP(r,cfl1->SetL(cf1,cm1));
|
sl@0
|
448 |
test(r==KErrNone);
|
sl@0
|
449 |
testCopy(*cRestored,*cfl1);
|
sl@0
|
450 |
test(LayerIsEqual(cRestored,cfl1));
|
sl@0
|
451 |
|
sl@0
|
452 |
TCharFormat rfmt;
|
sl@0
|
453 |
TCharFormatMask rmask;
|
sl@0
|
454 |
cRestored->Sense(rfmt, rmask);
|
sl@0
|
455 |
test(rfmt.iFontSpec.iFontStyle.BitmapType() == EMonochromeGlyphBitmap);
|
sl@0
|
456 |
|
sl@0
|
457 |
//
|
sl@0
|
458 |
delete cfl1;
|
sl@0
|
459 |
delete cRestored;
|
sl@0
|
460 |
}
|
sl@0
|
461 |
|
sl@0
|
462 |
|
sl@0
|
463 |
TInt CT_CONVS::ChainIsEqual(const CParaFormatLayer* aCopy,const CParaFormatLayer* aOriginal)
|
sl@0
|
464 |
//
|
sl@0
|
465 |
// Tests that the restored chain is identical to the original chain.
|
sl@0
|
466 |
//
|
sl@0
|
467 |
{
|
sl@0
|
468 |
TInt origChainCount=aOriginal->ChainCount();
|
sl@0
|
469 |
/*TInt copyChainCount=*/aCopy->ChainCount();
|
sl@0
|
470 |
// Check the chain heads are equal.
|
sl@0
|
471 |
test(LayerIsEqual(aCopy,aOriginal));
|
sl@0
|
472 |
TInt descendantCount=origChainCount-1;
|
sl@0
|
473 |
|
sl@0
|
474 |
const CFormatLayer* nextCopyLayer=aCopy->SenseBase();
|
sl@0
|
475 |
const CFormatLayer* nextOrigLayer=aOriginal->SenseBase();
|
sl@0
|
476 |
for (TInt loop=0;loop<descendantCount;loop++)
|
sl@0
|
477 |
{
|
sl@0
|
478 |
test(LayerIsEqual((CParaFormatLayer*)nextCopyLayer,(CParaFormatLayer*)nextOrigLayer));
|
sl@0
|
479 |
|
sl@0
|
480 |
nextCopyLayer=nextCopyLayer->SenseBase();
|
sl@0
|
481 |
nextOrigLayer=nextOrigLayer->SenseBase();
|
sl@0
|
482 |
}
|
sl@0
|
483 |
return 1;
|
sl@0
|
484 |
}
|
sl@0
|
485 |
|
sl@0
|
486 |
|
sl@0
|
487 |
TInt CT_CONVS::ChainIsEqual(const CCharFormatLayer* aCopy,const CCharFormatLayer* aOriginal)
|
sl@0
|
488 |
//
|
sl@0
|
489 |
// Tests that the restored chain is identical to the original chain.
|
sl@0
|
490 |
//
|
sl@0
|
491 |
{
|
sl@0
|
492 |
TInt origChainCount=aOriginal->ChainCount();
|
sl@0
|
493 |
/*TInt copyChainCount=*/aCopy->ChainCount();
|
sl@0
|
494 |
// Check the chain heads are equal.
|
sl@0
|
495 |
test(LayerIsEqual(aCopy,aOriginal));
|
sl@0
|
496 |
TInt descendantCount=origChainCount-1;
|
sl@0
|
497 |
|
sl@0
|
498 |
const CFormatLayer* nextCopyLayer=aCopy->SenseBase();
|
sl@0
|
499 |
const CFormatLayer* nextOrigLayer=aOriginal->SenseBase();
|
sl@0
|
500 |
for (TInt loop=0;loop<descendantCount;loop++)
|
sl@0
|
501 |
{
|
sl@0
|
502 |
test(LayerIsEqual((CCharFormatLayer*)nextCopyLayer,(CCharFormatLayer*)nextOrigLayer));
|
sl@0
|
503 |
|
sl@0
|
504 |
nextCopyLayer=nextCopyLayer->SenseBase();
|
sl@0
|
505 |
nextOrigLayer=nextOrigLayer->SenseBase();
|
sl@0
|
506 |
}
|
sl@0
|
507 |
return 1;
|
sl@0
|
508 |
}
|
sl@0
|
509 |
|
sl@0
|
510 |
|
sl@0
|
511 |
void CT_CONVS::DoParaChainL()
|
sl@0
|
512 |
//
|
sl@0
|
513 |
// Tests the streaming of a chain of format layers
|
sl@0
|
514 |
//
|
sl@0
|
515 |
{
|
sl@0
|
516 |
INFO_PRINTF1(_L("Re/StoreChainL()"));
|
sl@0
|
517 |
INFO_PRINTF1(_L("CParaFormatLayer"));
|
sl@0
|
518 |
// Create the chain of para format layers.
|
sl@0
|
519 |
CParaFormatLayer* l1=CParaFormatLayer::NewL();
|
sl@0
|
520 |
CParaFormatLayer* l2=CParaFormatLayer::NewL();
|
sl@0
|
521 |
CParaFormatLayer* l3=CParaFormatLayer::NewL();
|
sl@0
|
522 |
CParaFormatLayer* l4=CParaFormatLayer::NewL();
|
sl@0
|
523 |
// Chain together.
|
sl@0
|
524 |
l1->SetBase(l2);
|
sl@0
|
525 |
l2->SetBase(l3);
|
sl@0
|
526 |
l3->SetBase(l4);
|
sl@0
|
527 |
// Create head of restored format stream, and force it to get storage.
|
sl@0
|
528 |
CParaFormatLayer* restoredChainHead=CParaFormatLayer::NewL();
|
sl@0
|
529 |
CParaFormat* restoredParaFormat=CParaFormat::NewL();
|
sl@0
|
530 |
TParaFormatMask restoredParaMask;
|
sl@0
|
531 |
restoredParaMask.ClearAll();
|
sl@0
|
532 |
restoredChainHead->SetL(restoredParaFormat,restoredParaMask);
|
sl@0
|
533 |
// General paraformat and its mask.
|
sl@0
|
534 |
CParaFormat* paraFormat=CParaFormat::NewL();
|
sl@0
|
535 |
TParaFormatMask paraMask;
|
sl@0
|
536 |
paraMask.ClearAll();
|
sl@0
|
537 |
// Set layer one stuff
|
sl@0
|
538 |
TTabStop tab1,tab2;
|
sl@0
|
539 |
tab1.iTwipsPosition=5000; tab2.iTwipsPosition=5001;
|
sl@0
|
540 |
tab1.iType=TTabStop::ERightTab; tab2.iType=TTabStop::ECenteredTab;
|
sl@0
|
541 |
paraFormat->StoreTabL(tab1);
|
sl@0
|
542 |
paraFormat->StoreTabL(tab2);
|
sl@0
|
543 |
paraMask.SetAttrib(EAttTabStop);
|
sl@0
|
544 |
l1->SetL(paraFormat,paraMask);
|
sl@0
|
545 |
paraMask.ClearAll();
|
sl@0
|
546 |
// Set layer two stuff
|
sl@0
|
547 |
TParaBorder top1;
|
sl@0
|
548 |
top1.iLineStyle=TParaBorder::ESolid;
|
sl@0
|
549 |
top1.iThickness=3;
|
sl@0
|
550 |
top1.iAutoColor=ETrue;
|
sl@0
|
551 |
paraFormat->SetParaBorderL(CParaFormat::EParaBorderTop,top1);
|
sl@0
|
552 |
paraMask.SetAttrib(EAttTopBorder);
|
sl@0
|
553 |
l2->SetL(paraFormat,paraMask);
|
sl@0
|
554 |
paraMask.ClearAll();
|
sl@0
|
555 |
// Set the layer 3 stuff.
|
sl@0
|
556 |
paraFormat->iBullet=new(ELeave)TBullet;
|
sl@0
|
557 |
paraFormat->iBullet->iTypeface.iName=_L("SKELTON");
|
sl@0
|
558 |
paraFormat->iBullet->iTypeface.SetIsProportional(EFalse);
|
sl@0
|
559 |
paraFormat->iBullet->iTypeface.SetIsSerif(EFalse);
|
sl@0
|
560 |
paraFormat->iBullet->iHeightInTwips=3003;
|
sl@0
|
561 |
paraFormat->iBullet->iCharacterCode=32;
|
sl@0
|
562 |
paraMask.SetAttrib(EAttBullet);
|
sl@0
|
563 |
l3->SetL(paraFormat,paraMask);
|
sl@0
|
564 |
paraMask.ClearAll();
|
sl@0
|
565 |
// Set the layer 4 stuff.
|
sl@0
|
566 |
paraFormat->iHorizontalAlignment=CParaFormat::EJustifiedAlign; paraMask.SetAttrib(EAttAlignment);
|
sl@0
|
567 |
paraFormat->iSpaceAfterInTwips=6000; paraMask.SetAttrib(EAttSpaceAfter);
|
sl@0
|
568 |
paraFormat->iKeepTogether=ETrue; paraMask.SetAttrib(EAttKeepTogether);
|
sl@0
|
569 |
l4->SetL(paraFormat,paraMask);
|
sl@0
|
570 |
// NOW DO IT
|
sl@0
|
571 |
testCopyChain(*restoredChainHead,*l1,0,(const CFormatLayer*)NULL);
|
sl@0
|
572 |
TInt restoredChainCount=restoredChainHead->ChainCount();
|
sl@0
|
573 |
test(ChainIsEqual(restoredChainHead,l1));
|
sl@0
|
574 |
// DESTROY STUFF
|
sl@0
|
575 |
CParaFormatLayer* current=restoredChainHead;
|
sl@0
|
576 |
CParaFormatLayer* next=(CParaFormatLayer*)restoredChainHead->SenseBase();
|
sl@0
|
577 |
delete current;
|
sl@0
|
578 |
for (TInt loop=0;loop<restoredChainCount-1;loop++)
|
sl@0
|
579 |
{
|
sl@0
|
580 |
current=next;
|
sl@0
|
581 |
next=(CParaFormatLayer*)current->SenseBase();
|
sl@0
|
582 |
delete current;
|
sl@0
|
583 |
}
|
sl@0
|
584 |
delete l1;
|
sl@0
|
585 |
delete l2;
|
sl@0
|
586 |
delete l3;
|
sl@0
|
587 |
delete l4;
|
sl@0
|
588 |
delete paraFormat;
|
sl@0
|
589 |
delete restoredParaFormat;
|
sl@0
|
590 |
}
|
sl@0
|
591 |
|
sl@0
|
592 |
|
sl@0
|
593 |
void CT_CONVS::DoCharChainL()
|
sl@0
|
594 |
//
|
sl@0
|
595 |
//
|
sl@0
|
596 |
//
|
sl@0
|
597 |
{
|
sl@0
|
598 |
INFO_PRINTF1(_L("CCharFormatLayer"));
|
sl@0
|
599 |
// Create the chain of character format layers.
|
sl@0
|
600 |
CCharFormatLayer* cl1=CCharFormatLayer::NewL();
|
sl@0
|
601 |
CCharFormatLayer* cl2=CCharFormatLayer::NewL();
|
sl@0
|
602 |
CCharFormatLayer* cl3=CCharFormatLayer::NewL();
|
sl@0
|
603 |
CCharFormatLayer* cl4=CCharFormatLayer::NewL();
|
sl@0
|
604 |
// Chain together.
|
sl@0
|
605 |
cl1->SetBase(cl2);
|
sl@0
|
606 |
cl2->SetBase(cl3);
|
sl@0
|
607 |
cl3->SetBase(cl4);
|
sl@0
|
608 |
// Create head of restored format stream, and force it to get storage.
|
sl@0
|
609 |
CCharFormatLayer* rChar=CCharFormatLayer::NewL();
|
sl@0
|
610 |
TCharFormat restoredCharFormat;
|
sl@0
|
611 |
TCharFormatMask restoredCharMask;
|
sl@0
|
612 |
restoredCharMask.ClearAll();
|
sl@0
|
613 |
rChar->SetL(restoredCharFormat,restoredCharMask);
|
sl@0
|
614 |
// General charformat and its mask.
|
sl@0
|
615 |
TCharFormat charFormat; TCharFormatMask charMask;
|
sl@0
|
616 |
charMask.ClearAll();
|
sl@0
|
617 |
// Set layer one stuff
|
sl@0
|
618 |
charFormat.iFontSpec.iFontStyle.SetStrokeWeight(EStrokeWeightBold); charMask.SetAttrib(EAttFontStrokeWeight);
|
sl@0
|
619 |
charFormat.iFontSpec.iFontStyle.SetPosture(EPostureItalic); charMask.SetAttrib(EAttFontPosture);
|
sl@0
|
620 |
charFormat.iFontPresentation.iUnderline=EUnderlineOn; charMask.SetAttrib(EAttFontUnderline);
|
sl@0
|
621 |
cl1->SetL(charFormat,charMask);
|
sl@0
|
622 |
charMask.ClearAll();
|
sl@0
|
623 |
// Set layer two stuff
|
sl@0
|
624 |
charFormat.iFontSpec.iFontStyle.SetPrintPosition(EPrintPosSubscript); charMask.SetAttrib(EAttFontPrintPos);
|
sl@0
|
625 |
cl2->SetL(charFormat,charMask);
|
sl@0
|
626 |
charMask.ClearAll();
|
sl@0
|
627 |
// Set the layer 3 stuff.
|
sl@0
|
628 |
charFormat.iFontPresentation.iStrikethrough=EStrikethroughOn; charMask.SetAttrib(EAttFontStrikethrough);
|
sl@0
|
629 |
cl3->SetL(charFormat,charMask);
|
sl@0
|
630 |
charMask.ClearAll();
|
sl@0
|
631 |
// Set the layer 4 stuff.
|
sl@0
|
632 |
charFormat.iFontSpec.iTypeface.iName=_L("Arial");
|
sl@0
|
633 |
charFormat.iFontSpec.iHeight=200;
|
sl@0
|
634 |
charMask.SetAttrib(EAttFontHeight);
|
sl@0
|
635 |
charMask.SetAttrib(EAttFontTypeface);
|
sl@0
|
636 |
cl4->SetL(charFormat,charMask);
|
sl@0
|
637 |
// NOW DO IT
|
sl@0
|
638 |
INFO_PRINTF1(_L("Chain 4 layers deep, terminating on a based on NULL"));
|
sl@0
|
639 |
testCopyChain(*rChar,*cl1,0,(const CFormatLayer*)NULL);
|
sl@0
|
640 |
TInt restoredChainCount=rChar->ChainCount();
|
sl@0
|
641 |
test(ChainIsEqual(rChar,cl1));
|
sl@0
|
642 |
// DESTROY STUFF
|
sl@0
|
643 |
CCharFormatLayer* chCurrent=rChar;
|
sl@0
|
644 |
CCharFormatLayer* chNext=(CCharFormatLayer*)rChar->SenseBase();
|
sl@0
|
645 |
delete chCurrent;
|
sl@0
|
646 |
for (TInt loop=0;loop<restoredChainCount-1;loop++)
|
sl@0
|
647 |
{
|
sl@0
|
648 |
chCurrent=chNext;
|
sl@0
|
649 |
chNext=(CCharFormatLayer*)chCurrent->SenseBase();
|
sl@0
|
650 |
delete chCurrent;
|
sl@0
|
651 |
}
|
sl@0
|
652 |
delete cl1;
|
sl@0
|
653 |
delete cl2;
|
sl@0
|
654 |
delete cl3;
|
sl@0
|
655 |
delete cl4;
|
sl@0
|
656 |
}
|
sl@0
|
657 |
|
sl@0
|
658 |
|
sl@0
|
659 |
void CT_CONVS::DoCharChainVariant1()
|
sl@0
|
660 |
//
|
sl@0
|
661 |
// Case 2: Where the chain does not terminate at a NULL link.
|
sl@0
|
662 |
//
|
sl@0
|
663 |
{
|
sl@0
|
664 |
// Create the chain of character format layers.
|
sl@0
|
665 |
CCharFormatLayer* cl1=CCharFormatLayer::NewL();
|
sl@0
|
666 |
CCharFormatLayer* cl2=CCharFormatLayer::NewL();
|
sl@0
|
667 |
CCharFormatLayer* cl3=CCharFormatLayer::NewL();
|
sl@0
|
668 |
CCharFormatLayer* cl4=CCharFormatLayer::NewL();
|
sl@0
|
669 |
// Chain together.
|
sl@0
|
670 |
cl1->SetBase(cl2);
|
sl@0
|
671 |
cl2->SetBase(cl3);
|
sl@0
|
672 |
cl3->SetBase(cl4);
|
sl@0
|
673 |
// Create head of restored format stream, and force it to get storage.
|
sl@0
|
674 |
CCharFormatLayer* rChar=CCharFormatLayer::NewL();
|
sl@0
|
675 |
TCharFormat restoredCharFormat;
|
sl@0
|
676 |
TCharFormatMask restoredCharMask;
|
sl@0
|
677 |
restoredCharMask.ClearAll();
|
sl@0
|
678 |
rChar->SetL(restoredCharFormat,restoredCharMask);
|
sl@0
|
679 |
// General charformat and its mask.
|
sl@0
|
680 |
TCharFormat charFormat; TCharFormatMask charMask;
|
sl@0
|
681 |
charMask.ClearAll();
|
sl@0
|
682 |
// Set layer one stuff
|
sl@0
|
683 |
charFormat.iFontSpec.iFontStyle.SetStrokeWeight(EStrokeWeightBold); charMask.SetAttrib(EAttFontStrokeWeight);
|
sl@0
|
684 |
charFormat.iFontSpec.iFontStyle.SetPosture(EPostureItalic); charMask.SetAttrib(EAttFontPosture);
|
sl@0
|
685 |
charFormat.iFontPresentation.iUnderline=EUnderlineOn; charMask.SetAttrib(EAttFontUnderline);
|
sl@0
|
686 |
cl1->SetL(charFormat,charMask);
|
sl@0
|
687 |
charMask.ClearAll();
|
sl@0
|
688 |
// Set layer two stuff
|
sl@0
|
689 |
charFormat.iFontSpec.iFontStyle.SetPrintPosition(EPrintPosSubscript); charMask.SetAttrib(EAttFontPrintPos);
|
sl@0
|
690 |
cl2->SetL(charFormat,charMask);
|
sl@0
|
691 |
charMask.ClearAll();
|
sl@0
|
692 |
// Set the layer 3 stuff.
|
sl@0
|
693 |
charFormat.iFontPresentation.iStrikethrough=EStrikethroughOn; charMask.SetAttrib(EAttFontStrikethrough);
|
sl@0
|
694 |
cl3->SetL(charFormat,charMask);
|
sl@0
|
695 |
charMask.ClearAll();
|
sl@0
|
696 |
// Set the layer 4 stuff.
|
sl@0
|
697 |
charFormat.iFontSpec.iTypeface.iName=_L("Arial");
|
sl@0
|
698 |
charFormat.iFontSpec.iHeight=200;
|
sl@0
|
699 |
charMask.SetAttrib(EAttFontHeight);
|
sl@0
|
700 |
charMask.SetAttrib(EAttFontTypeface);
|
sl@0
|
701 |
cl4->SetL(charFormat,charMask);
|
sl@0
|
702 |
// NOW DO IT
|
sl@0
|
703 |
INFO_PRINTF1(_L("Chain 3 layers deep, terminating on a non-NULL based-on"));
|
sl@0
|
704 |
testCopyChain(*rChar,*cl1,1,(const CFormatLayer*)cl4);
|
sl@0
|
705 |
TInt restoredChainCount=rChar->ChainCount();
|
sl@0
|
706 |
test(ChainIsEqual(rChar,cl1));
|
sl@0
|
707 |
// DESTROY STUFF
|
sl@0
|
708 |
CCharFormatLayer* chCurrent=rChar;
|
sl@0
|
709 |
CCharFormatLayer* chNext=(CCharFormatLayer*)rChar->SenseBase();
|
sl@0
|
710 |
delete chCurrent;
|
sl@0
|
711 |
for (TInt loop=0;loop<restoredChainCount-2;loop++)
|
sl@0
|
712 |
{
|
sl@0
|
713 |
chCurrent=chNext;
|
sl@0
|
714 |
chNext=(CCharFormatLayer*)chCurrent->SenseBase();
|
sl@0
|
715 |
delete chCurrent;
|
sl@0
|
716 |
}
|
sl@0
|
717 |
delete cl1;
|
sl@0
|
718 |
delete cl2;
|
sl@0
|
719 |
delete cl3;
|
sl@0
|
720 |
delete cl4;
|
sl@0
|
721 |
}
|
sl@0
|
722 |
|
sl@0
|
723 |
|
sl@0
|
724 |
void CT_CONVS::testFmtLayerStoreChainL()
|
sl@0
|
725 |
//
|
sl@0
|
726 |
// Controls the testing of the chainig stuff.
|
sl@0
|
727 |
//
|
sl@0
|
728 |
{
|
sl@0
|
729 |
DoParaChainL();
|
sl@0
|
730 |
DoCharChainL();
|
sl@0
|
731 |
DoCharChainVariant1();
|
sl@0
|
732 |
// DoCharChainVariant2(); TO BE IMPLEMENTED
|
sl@0
|
733 |
// doCharChainVariant3(); TO BE IMPLEMENTED
|
sl@0
|
734 |
}
|
sl@0
|
735 |
|
sl@0
|
736 |
|
sl@0
|
737 |
void CT_CONVS::testFmtLayerL()
|
sl@0
|
738 |
//
|
sl@0
|
739 |
// Tests the streaming of format layers.
|
sl@0
|
740 |
//
|
sl@0
|
741 |
{
|
sl@0
|
742 |
testFmtLayerStoreL();
|
sl@0
|
743 |
testFmtLayerStoreChainL();
|
sl@0
|
744 |
}
|
sl@0
|
745 |
|
sl@0
|
746 |
|
sl@0
|
747 |
void CT_CONVS::setupCleanup()
|
sl@0
|
748 |
//
|
sl@0
|
749 |
// Initialise the cleanup stack.
|
sl@0
|
750 |
//
|
sl@0
|
751 |
{
|
sl@0
|
752 |
|
sl@0
|
753 |
TheTrapCleanup=CTrapCleanup::New();
|
sl@0
|
754 |
TRAPD(r,\
|
sl@0
|
755 |
{\
|
sl@0
|
756 |
for (TInt i=KTestCleanupStack;i>0;i--)\
|
sl@0
|
757 |
CleanupStack::PushL((TAny*)1);\
|
sl@0
|
758 |
test(r==KErrNone);\
|
sl@0
|
759 |
CleanupStack::Pop(KTestCleanupStack);\
|
sl@0
|
760 |
});
|
sl@0
|
761 |
}
|
sl@0
|
762 |
|
sl@0
|
763 |
|
sl@0
|
764 |
void CT_CONVS::DeleteDataFile(const TDesC& aFullName)
|
sl@0
|
765 |
{
|
sl@0
|
766 |
RFs fsSession;
|
sl@0
|
767 |
TInt err = fsSession.Connect();
|
sl@0
|
768 |
if(err == KErrNone)
|
sl@0
|
769 |
{
|
sl@0
|
770 |
TEntry entry;
|
sl@0
|
771 |
if(fsSession.Entry(aFullName, entry) == KErrNone)
|
sl@0
|
772 |
{
|
sl@0
|
773 |
RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
|
sl@0
|
774 |
err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
|
sl@0
|
775 |
if(err != KErrNone)
|
sl@0
|
776 |
{
|
sl@0
|
777 |
RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
|
sl@0
|
778 |
}
|
sl@0
|
779 |
err = fsSession.Delete(aFullName);
|
sl@0
|
780 |
if(err != KErrNone)
|
sl@0
|
781 |
{
|
sl@0
|
782 |
RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
|
sl@0
|
783 |
}
|
sl@0
|
784 |
}
|
sl@0
|
785 |
fsSession.Close();
|
sl@0
|
786 |
}
|
sl@0
|
787 |
else
|
sl@0
|
788 |
{
|
sl@0
|
789 |
RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
|
sl@0
|
790 |
}
|
sl@0
|
791 |
}
|
sl@0
|
792 |
|
sl@0
|
793 |
CT_CONVS::CT_CONVS()
|
sl@0
|
794 |
{
|
sl@0
|
795 |
SetTestStepName(KTestStep_T_CONVS);
|
sl@0
|
796 |
}
|
sl@0
|
797 |
|
sl@0
|
798 |
TVerdict CT_CONVS::doTestStepL()
|
sl@0
|
799 |
{
|
sl@0
|
800 |
SetTestStepResult(EFail);
|
sl@0
|
801 |
|
sl@0
|
802 |
INFO_PRINTF1(_L("T_CONVS - EditableText Persistence"));
|
sl@0
|
803 |
setupCleanup();
|
sl@0
|
804 |
__UHEAP_MARK;
|
sl@0
|
805 |
|
sl@0
|
806 |
INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-ETEXT-LEGACY-T_CONVS-0001 EText components using Flat Storage "));
|
sl@0
|
807 |
TRAPD(error1, testPlainTextL(CEditableText::EFlatStorage));
|
sl@0
|
808 |
TRAPD(error2, testGlobalTextL(CEditableText::EFlatStorage));
|
sl@0
|
809 |
|
sl@0
|
810 |
INFO_PRINTF1(_L("EText components using Segmented storage"));
|
sl@0
|
811 |
TRAPD(error3, testPlainTextL(CEditableText::ESegmentedStorage));
|
sl@0
|
812 |
TRAPD(error4, testGlobalTextL(CEditableText::ESegmentedStorage));
|
sl@0
|
813 |
|
sl@0
|
814 |
INFO_PRINTF1(_L("Format Layer components"));
|
sl@0
|
815 |
TRAPD(error5, testFmtLayerL());
|
sl@0
|
816 |
|
sl@0
|
817 |
__UHEAP_MARKEND;
|
sl@0
|
818 |
DeleteDataFile(KOutputFile); //deletion of data files must be before call to End() - DEF047652
|
sl@0
|
819 |
delete TheTrapCleanup;
|
sl@0
|
820 |
|
sl@0
|
821 |
if(error1 == KErrNone && error2 == KErrNone && error3 == KErrNone && error4 == KErrNone && error5 == KErrNone)
|
sl@0
|
822 |
{
|
sl@0
|
823 |
SetTestStepResult(EPass);
|
sl@0
|
824 |
}
|
sl@0
|
825 |
|
sl@0
|
826 |
return TestStepResult();
|
sl@0
|
827 |
}
|