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 <txtfmlyr.h>
|
sl@0
|
20 |
#include <txtrich.h>
|
sl@0
|
21 |
#include <txtfrmat.h>
|
sl@0
|
22 |
#include <gdi.h>
|
sl@0
|
23 |
#include "T_FMT.h"
|
sl@0
|
24 |
|
sl@0
|
25 |
LOCAL_D CTestStep *pTestStep = NULL;
|
sl@0
|
26 |
#define test(cond) \
|
sl@0
|
27 |
{ \
|
sl@0
|
28 |
TBool __bb = (cond); \
|
sl@0
|
29 |
pTestStep->TEST(__bb); \
|
sl@0
|
30 |
if (!__bb) \
|
sl@0
|
31 |
{ \
|
sl@0
|
32 |
pTestStep->ERR_PRINTF1(_L("ERROR: Test Failed")); \
|
sl@0
|
33 |
User::Leave(1); \
|
sl@0
|
34 |
} \
|
sl@0
|
35 |
}
|
sl@0
|
36 |
#undef INFO_PRINTF1
|
sl@0
|
37 |
#undef INFO_PRINTF2
|
sl@0
|
38 |
// copy from tefexportconst.h
|
sl@0
|
39 |
#define INFO_PRINTF1(p1) pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1))
|
sl@0
|
40 |
#define INFO_PRINTF2(p1, p2) pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1), (p2))
|
sl@0
|
41 |
|
sl@0
|
42 |
template<class S>
|
sl@0
|
43 |
class TestFormat
|
sl@0
|
44 |
{
|
sl@0
|
45 |
public:
|
sl@0
|
46 |
void CheckAllClassesL();
|
sl@0
|
47 |
void CheckTTabStop();
|
sl@0
|
48 |
void CheckTParaBorder();
|
sl@0
|
49 |
void CheckTBullet();
|
sl@0
|
50 |
void CheckCParaFormatL();
|
sl@0
|
51 |
void CheckCParaFormatSpecialL();
|
sl@0
|
52 |
void CheckCParaFormatTabsEqual(TTabStop& aChecl,TTabStop& aControl);
|
sl@0
|
53 |
void CheckTParaFormatMask();
|
sl@0
|
54 |
void CheckCParaFormatLayerL();
|
sl@0
|
55 |
void CheckCParaFormatLayerRestL();
|
sl@0
|
56 |
void CheckTCharFormat();
|
sl@0
|
57 |
void CheckTCharFormatMask();
|
sl@0
|
58 |
void CheckCCharFormatLayerL();
|
sl@0
|
59 |
void CheckFormatsEqual(CParaFormat* aControl,CParaFormat* aCheck);
|
sl@0
|
60 |
void CheckFormatsEqual(TCharFormat& aControl,TCharFormatMask& aControlMask,TCharFormat& aCheck,TCharFormatMask& aMask);
|
sl@0
|
61 |
void CheckFormatsEqual(TParaFormatMask& aControl,TParaFormatMask& aCheck);
|
sl@0
|
62 |
void CheckFormatsEqual(TCharFormatMask& aControl,TCharFormatMask& aCheck);
|
sl@0
|
63 |
};
|
sl@0
|
64 |
|
sl@0
|
65 |
|
sl@0
|
66 |
template<class S>
|
sl@0
|
67 |
void TestFormat<S>::CheckTTabStop()
|
sl@0
|
68 |
//
|
sl@0
|
69 |
// Checks TTabStop construction and methods.
|
sl@0
|
70 |
//
|
sl@0
|
71 |
{
|
sl@0
|
72 |
INFO_PRINTF1(_L("Checking all methods"));
|
sl@0
|
73 |
|
sl@0
|
74 |
// Default constructor.
|
sl@0
|
75 |
TTabStop tab1;
|
sl@0
|
76 |
// Assignment operator.
|
sl@0
|
77 |
TTabStop tab3;
|
sl@0
|
78 |
tab3=tab1;
|
sl@0
|
79 |
|
sl@0
|
80 |
INFO_PRINTF1(_L("Default constructor"));
|
sl@0
|
81 |
test(tab1.iTwipsPosition==0);
|
sl@0
|
82 |
if (tab1.iType==TTabStop::ELeftTab)
|
sl@0
|
83 |
INFO_PRINTF2(_L("\nleft tab - %d\n"),tab1.iType);
|
sl@0
|
84 |
else if (tab1.iType==TTabStop::ECenteredTab)
|
sl@0
|
85 |
INFO_PRINTF2(_L("\ncentered tab - %d\n"),tab1.iType);
|
sl@0
|
86 |
else if (tab1.iType==TTabStop::ERightTab)
|
sl@0
|
87 |
INFO_PRINTF2(_L("\nright tab - %d\n"),tab1.iType);
|
sl@0
|
88 |
else if (tab1.iType==TTabStop::ENullTab)
|
sl@0
|
89 |
INFO_PRINTF2(_L("\nnull tab - %d\n"),tab1.iType);
|
sl@0
|
90 |
else
|
sl@0
|
91 |
INFO_PRINTF2(_L("\nsomething completely different - %d \n"),tab1.iType);
|
sl@0
|
92 |
test(tab1.iType==TTabStop::ELeftTab);
|
sl@0
|
93 |
// test.Getch();
|
sl@0
|
94 |
|
sl@0
|
95 |
INFO_PRINTF1(_L("Copy constructor"));
|
sl@0
|
96 |
TTabStop tab4;
|
sl@0
|
97 |
tab4.iTwipsPosition=1440;
|
sl@0
|
98 |
tab4.iType=TTabStop::ERightTab;
|
sl@0
|
99 |
TTabStop tab5(tab4);
|
sl@0
|
100 |
test(tab5.iTwipsPosition==tab4.iTwipsPosition);
|
sl@0
|
101 |
test(tab5.iType==tab4.iType);
|
sl@0
|
102 |
|
sl@0
|
103 |
INFO_PRINTF1(_L("Assignment operator"));
|
sl@0
|
104 |
tab1=tab5;;
|
sl@0
|
105 |
test(tab1.iTwipsPosition==tab5.iTwipsPosition);
|
sl@0
|
106 |
test(tab1.iType==tab5.iType);
|
sl@0
|
107 |
|
sl@0
|
108 |
INFO_PRINTF1(_L("Equality operator"));
|
sl@0
|
109 |
test(tab1==tab5);
|
sl@0
|
110 |
|
sl@0
|
111 |
INFO_PRINTF1(_L("Inequality operator"));
|
sl@0
|
112 |
tab1.iTwipsPosition=2;
|
sl@0
|
113 |
test(tab1!=tab5);
|
sl@0
|
114 |
}
|
sl@0
|
115 |
|
sl@0
|
116 |
|
sl@0
|
117 |
template<class S>
|
sl@0
|
118 |
void TestFormat<S>::CheckTParaBorder()
|
sl@0
|
119 |
//
|
sl@0
|
120 |
// Checks TParaBorder construction.
|
sl@0
|
121 |
//
|
sl@0
|
122 |
{
|
sl@0
|
123 |
INFO_PRINTF1(_L("Checking all methods"));
|
sl@0
|
124 |
// Default Constructor.
|
sl@0
|
125 |
TParaBorder border1;
|
sl@0
|
126 |
|
sl@0
|
127 |
INFO_PRINTF1(_L("Default constructor"));
|
sl@0
|
128 |
test(border1.iLineStyle==TParaBorder::ENullLineStyle);
|
sl@0
|
129 |
test(border1.iAutoColor);
|
sl@0
|
130 |
TLogicalRgb c(TLogicalRgb::ESystemForegroundColor);
|
sl@0
|
131 |
test(border1.iColor == c);
|
sl@0
|
132 |
|
sl@0
|
133 |
TParaBorder border2;
|
sl@0
|
134 |
INFO_PRINTF1(_L("Equality operator"));
|
sl@0
|
135 |
test(border2==border1);
|
sl@0
|
136 |
|
sl@0
|
137 |
INFO_PRINTF1(_L("Inequality operator"));
|
sl@0
|
138 |
border2.iLineStyle=TParaBorder::ESolid;
|
sl@0
|
139 |
border2.iThickness=2;
|
sl@0
|
140 |
test(border2!=border1);
|
sl@0
|
141 |
|
sl@0
|
142 |
border1.iLineStyle=TParaBorder::ESolid;
|
sl@0
|
143 |
border1.iThickness=2;
|
sl@0
|
144 |
test(border2==border1);
|
sl@0
|
145 |
}
|
sl@0
|
146 |
|
sl@0
|
147 |
|
sl@0
|
148 |
template<class S>
|
sl@0
|
149 |
void TestFormat<S>::CheckTBullet()
|
sl@0
|
150 |
//
|
sl@0
|
151 |
// Checks TBullet construction.
|
sl@0
|
152 |
//
|
sl@0
|
153 |
{
|
sl@0
|
154 |
INFO_PRINTF1(_L("Checking all methods"));
|
sl@0
|
155 |
// Default constructor.
|
sl@0
|
156 |
TBullet bullet;
|
sl@0
|
157 |
|
sl@0
|
158 |
INFO_PRINTF1(_L("Default constructor"));
|
sl@0
|
159 |
test(0x2022==bullet.iCharacterCode);
|
sl@0
|
160 |
test(bullet.iHeightInTwips==0);
|
sl@0
|
161 |
|
sl@0
|
162 |
INFO_PRINTF1(_L("==/!="));
|
sl@0
|
163 |
TBullet bullet2;
|
sl@0
|
164 |
test(bullet==bullet2);
|
sl@0
|
165 |
test(!(bullet!=bullet2));
|
sl@0
|
166 |
|
sl@0
|
167 |
TBullet bullet3;
|
sl@0
|
168 |
bullet3.iCharacterCode=45;
|
sl@0
|
169 |
test(bullet!=bullet3);
|
sl@0
|
170 |
test(!(bullet==bullet3));
|
sl@0
|
171 |
}
|
sl@0
|
172 |
|
sl@0
|
173 |
|
sl@0
|
174 |
template<class S>
|
sl@0
|
175 |
void TestFormat<S>::CheckCParaFormatTabsEqual(TTabStop& aCheck,TTabStop& aControl)
|
sl@0
|
176 |
//
|
sl@0
|
177 |
// Check the 2 TTabStop structs are equal.
|
sl@0
|
178 |
//
|
sl@0
|
179 |
{test(aCheck==aControl);}
|
sl@0
|
180 |
|
sl@0
|
181 |
|
sl@0
|
182 |
template<class S>
|
sl@0
|
183 |
void TestFormat<S>::CheckCParaFormatL()
|
sl@0
|
184 |
//
|
sl@0
|
185 |
// Checks CParaFormat construction and methods.
|
sl@0
|
186 |
//
|
sl@0
|
187 |
{
|
sl@0
|
188 |
INFO_PRINTF1(_L("Checking all methods"));
|
sl@0
|
189 |
CheckCParaFormatSpecialL();
|
sl@0
|
190 |
__UHEAP_MARK;
|
sl@0
|
191 |
|
sl@0
|
192 |
TInt failRate;
|
sl@0
|
193 |
CParaFormat* pp=NULL;
|
sl@0
|
194 |
for (failRate=1;;failRate++)
|
sl@0
|
195 |
{
|
sl@0
|
196 |
__UHEAP_RESET;
|
sl@0
|
197 |
__UHEAP_SETFAIL(RHeap::EDeterministic,failRate);
|
sl@0
|
198 |
__UHEAP_MARK;
|
sl@0
|
199 |
TRAPD(ret,pp=CParaFormat::NewL());
|
sl@0
|
200 |
if (ret!=KErrNone)
|
sl@0
|
201 |
{
|
sl@0
|
202 |
__UHEAP_MARKEND;
|
sl@0
|
203 |
test(pp==NULL);
|
sl@0
|
204 |
}
|
sl@0
|
205 |
else
|
sl@0
|
206 |
{
|
sl@0
|
207 |
test(pp!=NULL);
|
sl@0
|
208 |
delete pp;
|
sl@0
|
209 |
__UHEAP_MARKEND;
|
sl@0
|
210 |
break;
|
sl@0
|
211 |
}
|
sl@0
|
212 |
}
|
sl@0
|
213 |
__UHEAP_RESET;
|
sl@0
|
214 |
|
sl@0
|
215 |
|
sl@0
|
216 |
|
sl@0
|
217 |
|
sl@0
|
218 |
CParaFormat* format=CParaFormat::NewL();
|
sl@0
|
219 |
|
sl@0
|
220 |
INFO_PRINTF1(_L("Tab methods"));
|
sl@0
|
221 |
TTabStop control[5];
|
sl@0
|
222 |
control[4].iTwipsPosition=KMaxTUint32;
|
sl@0
|
223 |
control[3].iTwipsPosition=8640;
|
sl@0
|
224 |
control[2].iTwipsPosition=5760;
|
sl@0
|
225 |
control[1].iTwipsPosition=2880;
|
sl@0
|
226 |
control[0].iTwipsPosition=1;
|
sl@0
|
227 |
|
sl@0
|
228 |
control[0].iType=TTabStop::ERightTab;
|
sl@0
|
229 |
control[1].iType=TTabStop::ECenteredTab;
|
sl@0
|
230 |
|
sl@0
|
231 |
// Store the tabs.
|
sl@0
|
232 |
test(format->TabCount()==0);
|
sl@0
|
233 |
format->StoreTabL(control[4]);
|
sl@0
|
234 |
test(format->TabCount()==1);
|
sl@0
|
235 |
format->StoreTabL(control[2]);
|
sl@0
|
236 |
test(format->TabCount()==2);
|
sl@0
|
237 |
format->StoreTabL(control[1]);
|
sl@0
|
238 |
test(format->TabCount()==3);
|
sl@0
|
239 |
format->StoreTabL(control[3]);
|
sl@0
|
240 |
test(format->TabCount()==4);
|
sl@0
|
241 |
format->StoreTabL(control[0]);
|
sl@0
|
242 |
test(format->TabCount()==5);
|
sl@0
|
243 |
|
sl@0
|
244 |
// Read the tabs.
|
sl@0
|
245 |
TTabStop buf;
|
sl@0
|
246 |
TInt tc1=format->TabCount();
|
sl@0
|
247 |
for (TInt count=0;count<tc1;count++)
|
sl@0
|
248 |
{
|
sl@0
|
249 |
buf=format->TabStop(count);
|
sl@0
|
250 |
CheckCParaFormatTabsEqual(buf,control[count]);
|
sl@0
|
251 |
}
|
sl@0
|
252 |
|
sl@0
|
253 |
// RemoveAllTabs
|
sl@0
|
254 |
format->RemoveAllTabs();
|
sl@0
|
255 |
TInt tabCount=format->TabCount();
|
sl@0
|
256 |
test(tabCount==0);
|
sl@0
|
257 |
|
sl@0
|
258 |
// Remove the tabs.
|
sl@0
|
259 |
format->RemoveTab(5760);
|
sl@0
|
260 |
test(format->TabCount()==0);
|
sl@0
|
261 |
format->RemoveTab(2880);
|
sl@0
|
262 |
test(format->TabCount()==0);
|
sl@0
|
263 |
format->RemoveTab(8640);
|
sl@0
|
264 |
test(format->TabCount()==0);
|
sl@0
|
265 |
format->RemoveTab(1);
|
sl@0
|
266 |
test(format->TabCount()==0);
|
sl@0
|
267 |
format->RemoveTab(KMaxTUint32);
|
sl@0
|
268 |
test(format->TabCount()==0);
|
sl@0
|
269 |
|
sl@0
|
270 |
delete format;
|
sl@0
|
271 |
format=NULL;
|
sl@0
|
272 |
__UHEAP_MARKEND;
|
sl@0
|
273 |
}
|
sl@0
|
274 |
|
sl@0
|
275 |
|
sl@0
|
276 |
template<class S>
|
sl@0
|
277 |
void TestFormat<S>::CheckCParaFormatSpecialL()
|
sl@0
|
278 |
//
|
sl@0
|
279 |
// Checks CParaFormat construction and methods.
|
sl@0
|
280 |
//
|
sl@0
|
281 |
{
|
sl@0
|
282 |
__UHEAP_MARK;
|
sl@0
|
283 |
CParaFormat* format=CParaFormat::NewLC();
|
sl@0
|
284 |
CParaFormat* newFormat=CParaFormat::NewLC();
|
sl@0
|
285 |
// Tab functions
|
sl@0
|
286 |
format->TabCount();
|
sl@0
|
287 |
TTabStop tab;
|
sl@0
|
288 |
format->StoreTabL(tab);
|
sl@0
|
289 |
format->TabStop(0);
|
sl@0
|
290 |
format->RemoveTab(0);
|
sl@0
|
291 |
format->RemoveAllTabs();
|
sl@0
|
292 |
// Border functions
|
sl@0
|
293 |
TParaBorder testBorder;
|
sl@0
|
294 |
format->RemoveAllBorders();
|
sl@0
|
295 |
format->BordersPresent();
|
sl@0
|
296 |
format->AllBordersEqual(*newFormat);
|
sl@0
|
297 |
format->SetParaBorderL(CParaFormat::EParaBorderTop,testBorder);
|
sl@0
|
298 |
format->IsBorderEqual(CParaFormat::EParaBorderBottom,*newFormat);
|
sl@0
|
299 |
CleanupStack::PopAndDestroy(2);
|
sl@0
|
300 |
format=NULL;
|
sl@0
|
301 |
__UHEAP_MARKEND;
|
sl@0
|
302 |
TInt ret;
|
sl@0
|
303 |
TInt check=0;
|
sl@0
|
304 |
#ifdef _DEBUG
|
sl@0
|
305 |
__UHEAP_MARK;
|
sl@0
|
306 |
// Construction.
|
sl@0
|
307 |
INFO_PRINTF1(_L("Construction failing on OOM"));
|
sl@0
|
308 |
__UHEAP_FAILNEXT(1);
|
sl@0
|
309 |
TRAP(ret,format=CParaFormat::NewL());
|
sl@0
|
310 |
if (ret!=KErrNone)
|
sl@0
|
311 |
check=1;
|
sl@0
|
312 |
// seems __UHEAP_FAILNEXT does not work well in platsim.
|
sl@0
|
313 |
// below test does not pass in platsim.
|
sl@0
|
314 |
// test(check==1);
|
sl@0
|
315 |
#endif
|
sl@0
|
316 |
INFO_PRINTF1(_L("Construction succeeding"));
|
sl@0
|
317 |
check=0;
|
sl@0
|
318 |
TRAP(ret,format=CParaFormat::NewL());
|
sl@0
|
319 |
if (ret!=KErrNone)
|
sl@0
|
320 |
check++;
|
sl@0
|
321 |
test(check==0);
|
sl@0
|
322 |
//
|
sl@0
|
323 |
TLogicalRgb fillColor(TLogicalRgb::ESystemBackgroundColor);
|
sl@0
|
324 |
test(format->iFillColor==fillColor);
|
sl@0
|
325 |
test(format->iLanguage==0);
|
sl@0
|
326 |
test(format->iLeftMarginInTwips==0);
|
sl@0
|
327 |
test(format->iRightMarginInTwips==0);
|
sl@0
|
328 |
test(format->iIndentInTwips==0);
|
sl@0
|
329 |
test(format->iBorderMarginInTwips==0);
|
sl@0
|
330 |
test(format->iSpaceBeforeInTwips==0);
|
sl@0
|
331 |
test(format->iSpaceAfterInTwips==0);
|
sl@0
|
332 |
test(format->iHorizontalAlignment==CParaFormat::ELeftAlign);
|
sl@0
|
333 |
test(format->iVerticalAlignment==CParaFormat::EUnspecifiedAlign);
|
sl@0
|
334 |
test(format->iKeepTogether==EFalse);
|
sl@0
|
335 |
test(format->iKeepWithNext==EFalse);
|
sl@0
|
336 |
test(format->iStartNewPage==EFalse);
|
sl@0
|
337 |
test(format->iWidowOrphan==EFalse);
|
sl@0
|
338 |
test(format->iWrap);
|
sl@0
|
339 |
test(!format->BordersPresent());
|
sl@0
|
340 |
test(format->iBullet==NULL);
|
sl@0
|
341 |
test(format->iLineSpacingInTwips==200);
|
sl@0
|
342 |
test(format->iLineSpacingControl==CParaFormat::ELineSpacingAtLeastInTwips);
|
sl@0
|
343 |
test(format->iDefaultTabWidthInTwips==360);
|
sl@0
|
344 |
|
sl@0
|
345 |
INFO_PRINTF1(_L("Equality operator"));
|
sl@0
|
346 |
CParaFormat* two=CParaFormat::NewL();
|
sl@0
|
347 |
test(two->IsEqual(*format));
|
sl@0
|
348 |
delete two;
|
sl@0
|
349 |
|
sl@0
|
350 |
INFO_PRINTF1(_L("Copy constructor"));
|
sl@0
|
351 |
CParaFormat* three=CParaFormat::NewL(*two);
|
sl@0
|
352 |
test(three->IsEqual(*two));
|
sl@0
|
353 |
delete three;
|
sl@0
|
354 |
|
sl@0
|
355 |
|
sl@0
|
356 |
// Destroy()
|
sl@0
|
357 |
INFO_PRINTF1(_L("Destroy()"));
|
sl@0
|
358 |
delete format;
|
sl@0
|
359 |
format=NULL;
|
sl@0
|
360 |
__UHEAP_MARKEND;
|
sl@0
|
361 |
}
|
sl@0
|
362 |
|
sl@0
|
363 |
|
sl@0
|
364 |
template<class S>
|
sl@0
|
365 |
void TestFormat<S>::CheckTParaFormatMask()
|
sl@0
|
366 |
//
|
sl@0
|
367 |
// Checks TParaFormatMask construction and methods.
|
sl@0
|
368 |
//
|
sl@0
|
369 |
{
|
sl@0
|
370 |
__UHEAP_MARK;
|
sl@0
|
371 |
TInt count=0;
|
sl@0
|
372 |
// All methods.
|
sl@0
|
373 |
INFO_PRINTF1(_L("Checking all methods"));
|
sl@0
|
374 |
TParaFormatMask mask;
|
sl@0
|
375 |
mask.SetAttrib(EAttLeftMargin);
|
sl@0
|
376 |
mask.AttribIsSet(EAttLeftMargin);
|
sl@0
|
377 |
mask.ClearAttrib(EAttLeftMargin);
|
sl@0
|
378 |
TParaFormatMask maskTemp;
|
sl@0
|
379 |
test(maskTemp==mask);
|
sl@0
|
380 |
test(!(maskTemp!=mask));
|
sl@0
|
381 |
|
sl@0
|
382 |
// Construction.
|
sl@0
|
383 |
INFO_PRINTF1(_L("Construction"));
|
sl@0
|
384 |
TParaFormatMask mask1;
|
sl@0
|
385 |
for (count=EAttParaLanguage;count<ETextFormatAttributeCount;count++)
|
sl@0
|
386 |
{
|
sl@0
|
387 |
test(mask1.AttribIsSet((TTextFormatAttribute)count)==EFalse);
|
sl@0
|
388 |
}
|
sl@0
|
389 |
|
sl@0
|
390 |
|
sl@0
|
391 |
// SetAttrib()
|
sl@0
|
392 |
INFO_PRINTF1(_L("SetAttrib()"));
|
sl@0
|
393 |
for (count=EAttParaLanguage;count<ETextFormatAttributeCount;count++)
|
sl@0
|
394 |
{
|
sl@0
|
395 |
mask1.SetAttrib((TTextFormatAttribute)count);
|
sl@0
|
396 |
}
|
sl@0
|
397 |
|
sl@0
|
398 |
// ClearAttrib()
|
sl@0
|
399 |
INFO_PRINTF1(_L("ClearAttrib()"));
|
sl@0
|
400 |
for (count=EAttParaLanguage;count<ETextFormatAttributeCount;count++)
|
sl@0
|
401 |
{
|
sl@0
|
402 |
mask1.ClearAttrib((TTextFormatAttribute)count);
|
sl@0
|
403 |
}
|
sl@0
|
404 |
for (count=EAttParaLanguage;count<ETextFormatAttributeCount;count++)
|
sl@0
|
405 |
{
|
sl@0
|
406 |
test(mask1.AttribIsSet((TTextFormatAttribute)count)==EFalse);
|
sl@0
|
407 |
}
|
sl@0
|
408 |
// AttribIsSet()
|
sl@0
|
409 |
INFO_PRINTF1(_L("AttribIsSet()"));
|
sl@0
|
410 |
// Already tested in the above.
|
sl@0
|
411 |
|
sl@0
|
412 |
INFO_PRINTF1(_L("SetAll()"));
|
sl@0
|
413 |
TParaFormatMask mask2;
|
sl@0
|
414 |
mask2.SetAll(); // sets border container but not individual borders.
|
sl@0
|
415 |
for (count=EAttParaLanguage;count<EAttTabStop;count++)
|
sl@0
|
416 |
{
|
sl@0
|
417 |
test(mask2.AttribIsSet((TTextFormatAttribute)count));
|
sl@0
|
418 |
}
|
sl@0
|
419 |
|
sl@0
|
420 |
INFO_PRINTF1(_L("ClearAll()"));
|
sl@0
|
421 |
mask2.ClearAll();
|
sl@0
|
422 |
for (count=EAttParaLanguage;count<EAttTabStop;count++)
|
sl@0
|
423 |
{
|
sl@0
|
424 |
test(mask2.AttribIsSet((TTextFormatAttribute)count)==EFalse);
|
sl@0
|
425 |
}
|
sl@0
|
426 |
mask2.SetAttrib(EAttLeftMargin);
|
sl@0
|
427 |
test(mask2.AttribIsSet(EAttLeftMargin));
|
sl@0
|
428 |
|
sl@0
|
429 |
__UHEAP_MARKEND;
|
sl@0
|
430 |
}
|
sl@0
|
431 |
|
sl@0
|
432 |
|
sl@0
|
433 |
template<class S>
|
sl@0
|
434 |
void TestFormat<S>::CheckFormatsEqual(TCharFormat& aControl,TCharFormatMask& aControlMask,TCharFormat& aCheck,TCharFormatMask& aMask)
|
sl@0
|
435 |
//
|
sl@0
|
436 |
// Checks that 2 TCharFormats are exactly equal.
|
sl@0
|
437 |
//
|
sl@0
|
438 |
{
|
sl@0
|
439 |
test(aControlMask==aMask);
|
sl@0
|
440 |
test(aControl.IsEqual(aCheck,aMask));
|
sl@0
|
441 |
}
|
sl@0
|
442 |
|
sl@0
|
443 |
|
sl@0
|
444 |
template<class S>
|
sl@0
|
445 |
void TestFormat<S>::CheckFormatsEqual(CParaFormat* aControl,CParaFormat* aCheck)
|
sl@0
|
446 |
//
|
sl@0
|
447 |
// Checks 2 CParaFormats are exactly equal.
|
sl@0
|
448 |
//
|
sl@0
|
449 |
{test(aControl->IsEqual(*aCheck));}
|
sl@0
|
450 |
|
sl@0
|
451 |
|
sl@0
|
452 |
template<class S>
|
sl@0
|
453 |
void TestFormat<S>::CheckFormatsEqual(TParaFormatMask& aControl,TParaFormatMask& aCheck)
|
sl@0
|
454 |
//
|
sl@0
|
455 |
// Checks the guards are exactly the same.
|
sl@0
|
456 |
//
|
sl@0
|
457 |
{test(aControl==aCheck);}
|
sl@0
|
458 |
|
sl@0
|
459 |
|
sl@0
|
460 |
template<class S>
|
sl@0
|
461 |
void TestFormat<S>::CheckCCharFormatLayerL()
|
sl@0
|
462 |
//
|
sl@0
|
463 |
// Checks CCharFormatLayer constructor and methods.
|
sl@0
|
464 |
//
|
sl@0
|
465 |
{
|
sl@0
|
466 |
__UHEAP_MARK;
|
sl@0
|
467 |
|
sl@0
|
468 |
TParaFormatMask mmm;
|
sl@0
|
469 |
CParaFormatLayer* pL=CParaFormatLayer::NewL();
|
sl@0
|
470 |
CParaFormatLayer* pL1=CParaFormatLayer::NewL(NULL,mmm);
|
sl@0
|
471 |
mmm.SetAttrib(EAttLeftMargin);
|
sl@0
|
472 |
CParaFormat ppp;
|
sl@0
|
473 |
ppp.iLeftMarginInTwips=1000;
|
sl@0
|
474 |
CParaFormatLayer* pL2=CParaFormatLayer::NewL(&ppp,mmm);
|
sl@0
|
475 |
|
sl@0
|
476 |
test(pL->IsEmpty());
|
sl@0
|
477 |
test(pL1->IsEmpty());
|
sl@0
|
478 |
test(!(pL2->IsEmpty()));
|
sl@0
|
479 |
|
sl@0
|
480 |
delete pL2;
|
sl@0
|
481 |
delete pL1;
|
sl@0
|
482 |
delete pL;
|
sl@0
|
483 |
|
sl@0
|
484 |
TCharFormat format1,format2,format3,formatCmp;
|
sl@0
|
485 |
TCharFormatMask f1,f2,f3,fCmp;
|
sl@0
|
486 |
|
sl@0
|
487 |
TRgb Color1(10,10,10);
|
sl@0
|
488 |
TRgb Color2(50,50,50);
|
sl@0
|
489 |
TRgb hlColor1(3,4,5);
|
sl@0
|
490 |
|
sl@0
|
491 |
// Setup layer 1 values
|
sl@0
|
492 |
format1.iFontPresentation.iTextColor=Color1; f1.SetAttrib(EAttColor);
|
sl@0
|
493 |
format1.iFontSpec.iHeight=1400; f1.SetAttrib(EAttFontHeight);
|
sl@0
|
494 |
format1.iFontSpec.iFontStyle.SetPosture(EPostureItalic); f1.SetAttrib(EAttFontPosture);
|
sl@0
|
495 |
format1.iFontSpec.iFontStyle.SetPrintPosition(EPrintPosSubscript); f1.SetAttrib(EAttFontPrintPos);
|
sl@0
|
496 |
// Setup layer 2 values
|
sl@0
|
497 |
format2.iFontPresentation.iHighlightColor=hlColor1; f2.SetAttrib(EAttFontHighlightColor);
|
sl@0
|
498 |
format2.iFontPresentation.iHighlightStyle=TFontPresentation::EFontHighlightRounded; f2.SetAttrib(EAttFontHighlightStyle);
|
sl@0
|
499 |
format2.iFontPresentation.iStrikethrough=EStrikethroughOn; f2.SetAttrib(EAttFontStrikethrough);
|
sl@0
|
500 |
format2.iFontSpec.iFontStyle.SetStrokeWeight(EStrokeWeightBold); f2.SetAttrib(EAttFontStrokeWeight);
|
sl@0
|
501 |
format2.iFontPresentation.iUnderline=EUnderlineOn; f2.SetAttrib(EAttFontUnderline);
|
sl@0
|
502 |
format2.iFontSpec.iTypeface.iName=(_L("Moffat"));
|
sl@0
|
503 |
format2.iFontSpec.iTypeface.SetIsProportional(ETrue);
|
sl@0
|
504 |
format2.iFontSpec.iTypeface.SetIsSerif(ETrue);
|
sl@0
|
505 |
format2.iFontSpec.iFontStyle.SetBitmapType(EAntiAliasedGlyphBitmap);
|
sl@0
|
506 |
f2.SetAttrib(EAttFontTypeface);
|
sl@0
|
507 |
// Setup layer 3 values - should be ignored cos they're already present.
|
sl@0
|
508 |
format3.iFontPresentation.iTextColor=Color2; f3.SetAttrib(EAttColor);
|
sl@0
|
509 |
format3.iFontPresentation.iHighlightStyle=TFontPresentation::EFontHighlightNormal; f3.SetAttrib(EAttFontHighlightStyle);
|
sl@0
|
510 |
format3.iFontSpec.iHeight=2800; f3.SetAttrib(EAttFontHeight);
|
sl@0
|
511 |
format3.iFontSpec.iFontStyle.SetPosture(EPostureUpright); f3.SetAttrib(EAttFontPosture);
|
sl@0
|
512 |
format3.iFontSpec.iFontStyle.SetPrintPosition(EPrintPosSuperscript); f3.SetAttrib(EAttFontPrintPos);
|
sl@0
|
513 |
format3.iFontPresentation.iStrikethrough=EStrikethroughOff; f3.SetAttrib(EAttFontStrikethrough);
|
sl@0
|
514 |
format3.iFontSpec.iFontStyle.SetStrokeWeight(EStrokeWeightNormal); f3.SetAttrib(EAttFontStrokeWeight);
|
sl@0
|
515 |
format3.iFontPresentation.iUnderline=EUnderlineOff; f3.SetAttrib(EAttFontUnderline);
|
sl@0
|
516 |
format3.iFontSpec.iTypeface.iName=(_L("Moon"));
|
sl@0
|
517 |
format3.iFontSpec.iTypeface.SetIsProportional(EFalse);
|
sl@0
|
518 |
format3.iFontSpec.iTypeface.SetIsSerif(EFalse);
|
sl@0
|
519 |
f3.SetAttrib(EAttFontTypeface);
|
sl@0
|
520 |
// Setup formatCmp values - the expected result of format layering.
|
sl@0
|
521 |
formatCmp.iFontPresentation.iTextColor=Color1; fCmp.SetAttrib(EAttColor);
|
sl@0
|
522 |
formatCmp.iFontPresentation.iHighlightColor=hlColor1; fCmp.SetAttrib(EAttFontHighlightColor);
|
sl@0
|
523 |
formatCmp.iFontPresentation.iHighlightStyle=TFontPresentation::EFontHighlightRounded; fCmp.SetAttrib(EAttFontHighlightStyle);
|
sl@0
|
524 |
formatCmp.iFontSpec.iHeight=1400; fCmp.SetAttrib(EAttFontHeight);
|
sl@0
|
525 |
formatCmp.iFontSpec.iFontStyle.SetPosture(EPostureItalic); fCmp.SetAttrib(EAttFontPosture);
|
sl@0
|
526 |
formatCmp.iFontSpec.iFontStyle.SetPrintPosition(EPrintPosSubscript); fCmp.SetAttrib(EAttFontPrintPos);
|
sl@0
|
527 |
formatCmp.iFontPresentation.iStrikethrough=EStrikethroughOn; fCmp.SetAttrib(EAttFontStrikethrough);
|
sl@0
|
528 |
formatCmp.iFontSpec.iFontStyle.SetStrokeWeight(EStrokeWeightBold); fCmp.SetAttrib(EAttFontStrokeWeight);
|
sl@0
|
529 |
formatCmp.iFontPresentation.iUnderline=EUnderlineOn; fCmp.SetAttrib(EAttFontUnderline);
|
sl@0
|
530 |
formatCmp.iFontSpec.iTypeface.iName=(_L("Moffat"));
|
sl@0
|
531 |
formatCmp.iFontSpec.iTypeface.SetIsProportional(ETrue);
|
sl@0
|
532 |
formatCmp.iFontSpec.iTypeface.SetIsSerif(ETrue);
|
sl@0
|
533 |
formatCmp.iFontSpec.iFontStyle.SetBitmapType(EAntiAliasedGlyphBitmap);
|
sl@0
|
534 |
fCmp.SetAttrib(EAttFontTypeface);
|
sl@0
|
535 |
// Store the formats in char format layers
|
sl@0
|
536 |
CCharFormatLayer* formatLayer3=CCharFormatLayer::NewL(format3,f3);
|
sl@0
|
537 |
CCharFormatLayer* formatLayer2=CCharFormatLayer::NewL(format2,f2);
|
sl@0
|
538 |
CCharFormatLayer* formatLayer1=CCharFormatLayer::NewL(format1,f1);
|
sl@0
|
539 |
formatLayer1->SetBase(formatLayer2);
|
sl@0
|
540 |
INFO_PRINTF1(_L("ChainCount()"));
|
sl@0
|
541 |
test(formatLayer1->ChainCount()==2);
|
sl@0
|
542 |
// Now read them in and compare them:
|
sl@0
|
543 |
// First just the layers.
|
sl@0
|
544 |
INFO_PRINTF1(_L("SenseL() - Sensing this layer only"));
|
sl@0
|
545 |
TCharFormat result1;
|
sl@0
|
546 |
TCharFormatMask result1Mask;
|
sl@0
|
547 |
formatLayer1->Sense(result1,result1Mask);
|
sl@0
|
548 |
CheckFormatsEqual(format1,f1,result1,result1Mask);
|
sl@0
|
549 |
|
sl@0
|
550 |
TCharFormat result2;
|
sl@0
|
551 |
TCharFormatMask result2Mask;
|
sl@0
|
552 |
formatLayer2->Sense(result2,result2Mask);
|
sl@0
|
553 |
CheckFormatsEqual(format2,f2,result2,result2Mask);
|
sl@0
|
554 |
test(result2.iFontSpec.iFontStyle.BitmapType() == format2.iFontSpec.iFontStyle.BitmapType());
|
sl@0
|
555 |
test(result2.iFontSpec.iFontStyle.BitmapType() == EAntiAliasedGlyphBitmap);
|
sl@0
|
556 |
|
sl@0
|
557 |
// Now check the effective formats are correct
|
sl@0
|
558 |
INFO_PRINTF1(_L("SenseEffectiveL() - utilising basedOn"));
|
sl@0
|
559 |
TCharFormatMask dummy;
|
sl@0
|
560 |
TCharFormat result3;
|
sl@0
|
561 |
formatLayer1->SenseEffective(result3);
|
sl@0
|
562 |
CheckFormatsEqual(format3,dummy,result3,dummy);
|
sl@0
|
563 |
|
sl@0
|
564 |
// Now check the effective formats are correct
|
sl@0
|
565 |
// The result should be the same as above,
|
sl@0
|
566 |
// since all these values are present in the resultant TCharFormat.
|
sl@0
|
567 |
// Ie, checking that overlapping attributes in a lower layer are not taken.
|
sl@0
|
568 |
INFO_PRINTF1(_L("SenseEffectiveL() - checking overlapping attributes are ignored"));
|
sl@0
|
569 |
// Add another layer of formatting by implementing the next based on link.
|
sl@0
|
570 |
formatLayer2->SetBase(formatLayer3);
|
sl@0
|
571 |
INFO_PRINTF1(_L("ChainCount()"));
|
sl@0
|
572 |
test(formatLayer1->ChainCount()==3);
|
sl@0
|
573 |
test(formatLayer2->ChainCount()==2);
|
sl@0
|
574 |
test(formatLayer3->ChainCount()==1);
|
sl@0
|
575 |
TCharFormat result4;
|
sl@0
|
576 |
formatLayer1->SenseEffective(result4);
|
sl@0
|
577 |
CheckFormatsEqual(format3,dummy,result4,dummy);
|
sl@0
|
578 |
|
sl@0
|
579 |
delete formatLayer1;
|
sl@0
|
580 |
delete formatLayer2;
|
sl@0
|
581 |
delete formatLayer3;
|
sl@0
|
582 |
__UHEAP_MARKEND;
|
sl@0
|
583 |
}
|
sl@0
|
584 |
|
sl@0
|
585 |
|
sl@0
|
586 |
template<class S>
|
sl@0
|
587 |
void TestFormat<S>::CheckCParaFormatLayerRestL()
|
sl@0
|
588 |
//
|
sl@0
|
589 |
// Checks combinations of set and sense with format layering.
|
sl@0
|
590 |
//
|
sl@0
|
591 |
{
|
sl@0
|
592 |
__UHEAP_MARK;
|
sl@0
|
593 |
CParaFormat* format1=CParaFormat::NewL();
|
sl@0
|
594 |
TParaFormatMask format1Mask;
|
sl@0
|
595 |
|
sl@0
|
596 |
CParaFormat* format2=CParaFormat::NewL();
|
sl@0
|
597 |
TParaFormatMask format2Mask;
|
sl@0
|
598 |
|
sl@0
|
599 |
CParaFormat* format3=CParaFormat::NewL();
|
sl@0
|
600 |
|
sl@0
|
601 |
CParaFormat* format4=CParaFormat::NewL();
|
sl@0
|
602 |
TParaFormatMask format4Mask;
|
sl@0
|
603 |
|
sl@0
|
604 |
TRgb Color1(10,10,10);
|
sl@0
|
605 |
TRgb Color2(50,50,50);
|
sl@0
|
606 |
TRgb Color3(100,100,100);
|
sl@0
|
607 |
TRgb Color4(150,150,150);
|
sl@0
|
608 |
|
sl@0
|
609 |
TTabStop tab1layer1,tab2layer1,tab3layer1;
|
sl@0
|
610 |
tab1layer1.iTwipsPosition=2520; tab1layer1.iType=TTabStop::ECenteredTab;
|
sl@0
|
611 |
tab2layer1.iTwipsPosition=3960; tab2layer1.iType=TTabStop::ERightTab;
|
sl@0
|
612 |
tab3layer1.iTwipsPosition=11160;tab3layer1.iType=TTabStop::ELeftTab;
|
sl@0
|
613 |
TTabStop tab1layer2,tab2layer2,tab3layer2;
|
sl@0
|
614 |
tab1layer2.iTwipsPosition=2160; tab1layer2.iType=TTabStop::ENullTab;
|
sl@0
|
615 |
tab2layer2.iTwipsPosition=3600; tab2layer2.iType=TTabStop::ENullTab;
|
sl@0
|
616 |
tab3layer2.iTwipsPosition=10080;tab3layer2.iType=TTabStop::ENullTab;
|
sl@0
|
617 |
TTabStop tab1layer3,tab2layer3,tab3layer3;
|
sl@0
|
618 |
tab1layer3.iTwipsPosition=2160; tab1layer3.iType=TTabStop::ECenteredTab;
|
sl@0
|
619 |
tab2layer3.iTwipsPosition=3600; tab2layer3.iType=TTabStop::ERightTab;
|
sl@0
|
620 |
tab3layer3.iTwipsPosition=10080;tab3layer3.iType=TTabStop::ELeftTab;
|
sl@0
|
621 |
// Setup layer 1 values.
|
sl@0
|
622 |
format1->iFillColor=Color1; format1Mask.SetAttrib(EAttFillColor);
|
sl@0
|
623 |
format1->iLeftMarginInTwips=1440; format1Mask.SetAttrib(EAttLeftMargin);
|
sl@0
|
624 |
format1->iRightMarginInTwips=7000; format1Mask.SetAttrib(EAttRightMargin);
|
sl@0
|
625 |
format1->iIndentInTwips=1500; format1Mask.SetAttrib(EAttIndent);
|
sl@0
|
626 |
format1->iHorizontalAlignment=CParaFormat::ERightAlign; format1Mask.SetAttrib(EAttAlignment);
|
sl@0
|
627 |
format1->iVerticalAlignment=CParaFormat::EBottomAlign; format1Mask.SetAttrib(EAttVerticalAlignment);
|
sl@0
|
628 |
format1->iLineSpacingInTwips=12; format1Mask.SetAttrib(EAttLineSpacing);
|
sl@0
|
629 |
format1->iSpaceBeforeInTwips=6; format1Mask.SetAttrib(EAttSpaceBefore);
|
sl@0
|
630 |
format1->iSpaceAfterInTwips=7; format1Mask.SetAttrib(EAttSpaceAfter);
|
sl@0
|
631 |
format1->iKeepTogether=ETrue; format1Mask.SetAttrib(EAttKeepTogether);
|
sl@0
|
632 |
format1->iKeepWithNext=ETrue; format1Mask.SetAttrib(EAttKeepWithNext);
|
sl@0
|
633 |
format1->iStartNewPage=ETrue; format1Mask.SetAttrib(EAttStartNewPage);
|
sl@0
|
634 |
format1->iWidowOrphan=ETrue; format1Mask.SetAttrib(EAttWidowOrphan);
|
sl@0
|
635 |
format1->iWrap=EFalse; format1Mask.SetAttrib(EAttWrap);
|
sl@0
|
636 |
format1->iDefaultTabWidthInTwips=2880; format1Mask.SetAttrib(EAttDefaultTabWidth);
|
sl@0
|
637 |
format1->StoreTabL(tab1layer1); format1->StoreTabL(tab2layer1); format1->StoreTabL(tab3layer1);
|
sl@0
|
638 |
format1Mask.SetAttrib(EAttTabStop);
|
sl@0
|
639 |
// Setup format 2 values.
|
sl@0
|
640 |
TParaBorder topBorder;
|
sl@0
|
641 |
topBorder.iLineStyle=TParaBorder::ESolid;
|
sl@0
|
642 |
topBorder.iThickness=1;
|
sl@0
|
643 |
topBorder.iAutoColor=ETrue;
|
sl@0
|
644 |
topBorder.iColor=Color1;
|
sl@0
|
645 |
format2->SetParaBorderL(CParaFormat::EParaBorderTop,topBorder);
|
sl@0
|
646 |
format2Mask.SetAttrib(EAttTopBorder);
|
sl@0
|
647 |
//
|
sl@0
|
648 |
TParaBorder bottomBorder;
|
sl@0
|
649 |
bottomBorder.iLineStyle=TParaBorder::ESolid;
|
sl@0
|
650 |
bottomBorder.iThickness=1;
|
sl@0
|
651 |
bottomBorder.iAutoColor=ETrue;
|
sl@0
|
652 |
bottomBorder.iColor=Color2;
|
sl@0
|
653 |
format2->SetParaBorderL(CParaFormat::EParaBorderBottom,bottomBorder);
|
sl@0
|
654 |
format2Mask.SetAttrib(EAttBottomBorder);
|
sl@0
|
655 |
//
|
sl@0
|
656 |
TParaBorder leftBorder;
|
sl@0
|
657 |
leftBorder.iLineStyle=TParaBorder::ESolid;
|
sl@0
|
658 |
leftBorder.iThickness=1;
|
sl@0
|
659 |
leftBorder.iAutoColor=ETrue;
|
sl@0
|
660 |
leftBorder.iColor=Color3;
|
sl@0
|
661 |
format2->SetParaBorderL(CParaFormat::EParaBorderLeft,leftBorder);
|
sl@0
|
662 |
format2Mask.SetAttrib(EAttLeftBorder);
|
sl@0
|
663 |
//
|
sl@0
|
664 |
TParaBorder rightBorder;
|
sl@0
|
665 |
rightBorder.iLineStyle=TParaBorder::ESolid;
|
sl@0
|
666 |
rightBorder.iThickness=1;
|
sl@0
|
667 |
rightBorder.iAutoColor=ETrue;
|
sl@0
|
668 |
rightBorder.iColor=Color4;
|
sl@0
|
669 |
format2->SetParaBorderL(CParaFormat::EParaBorderRight,rightBorder);
|
sl@0
|
670 |
format2Mask.SetAttrib(EAttRightBorder);
|
sl@0
|
671 |
//
|
sl@0
|
672 |
format2->StoreTabL(tab1layer2); format2->StoreTabL(tab2layer2); format2->StoreTabL(tab3layer2);
|
sl@0
|
673 |
format2Mask.SetAttrib(EAttTabStop);
|
sl@0
|
674 |
format2->iBullet=new(ELeave)TBullet; format2Mask.SetAttrib(EAttBullet);
|
sl@0
|
675 |
format2->iBullet->iHeightInTwips=200;
|
sl@0
|
676 |
format2->iBullet->iCharacterCode=202;
|
sl@0
|
677 |
format2->iBullet->iTypeface.iName=(_L("Symbol"));
|
sl@0
|
678 |
format2->iBullet->iTypeface.SetIsProportional(ETrue);
|
sl@0
|
679 |
format2->iBullet->iTypeface.SetIsSerif(ETrue);
|
sl@0
|
680 |
// Setup format 3 values - The resulting format after hunting based on links.
|
sl@0
|
681 |
format3->iFillColor=Color1;
|
sl@0
|
682 |
format3->iLeftMarginInTwips=1440;
|
sl@0
|
683 |
format3->iRightMarginInTwips=7000;
|
sl@0
|
684 |
format3->iIndentInTwips=1500;
|
sl@0
|
685 |
format3->iHorizontalAlignment=CParaFormat::ERightAlign;
|
sl@0
|
686 |
format3->iVerticalAlignment=CParaFormat::EBottomAlign;
|
sl@0
|
687 |
format3->iLineSpacingInTwips=12;
|
sl@0
|
688 |
format3->iSpaceBeforeInTwips=6;
|
sl@0
|
689 |
format3->iSpaceAfterInTwips=7;
|
sl@0
|
690 |
format3->iKeepTogether=ETrue;
|
sl@0
|
691 |
format3->iKeepWithNext=ETrue;
|
sl@0
|
692 |
format3->iStartNewPage=ETrue;
|
sl@0
|
693 |
format3->iWidowOrphan=ETrue;
|
sl@0
|
694 |
format3->iWrap=EFalse;
|
sl@0
|
695 |
format3->iDefaultTabWidthInTwips=2880;
|
sl@0
|
696 |
TParaBorder top;
|
sl@0
|
697 |
top.iLineStyle=TParaBorder::ESolid;
|
sl@0
|
698 |
top.iThickness=1;
|
sl@0
|
699 |
top.iAutoColor=ETrue;
|
sl@0
|
700 |
top.iColor=Color1;
|
sl@0
|
701 |
TParaBorder bottom;
|
sl@0
|
702 |
bottom.iLineStyle=TParaBorder::ESolid;
|
sl@0
|
703 |
bottom.iThickness=1;
|
sl@0
|
704 |
bottom.iAutoColor=ETrue;
|
sl@0
|
705 |
bottom.iColor=Color2;
|
sl@0
|
706 |
TParaBorder left;
|
sl@0
|
707 |
left.iLineStyle=TParaBorder::ESolid;
|
sl@0
|
708 |
left.iThickness=1;
|
sl@0
|
709 |
left.iAutoColor=ETrue;
|
sl@0
|
710 |
left.iColor=Color3;
|
sl@0
|
711 |
TParaBorder right;
|
sl@0
|
712 |
right.iThickness=1;
|
sl@0
|
713 |
right.iLineStyle=TParaBorder::ESolid;
|
sl@0
|
714 |
right.iAutoColor=ETrue;
|
sl@0
|
715 |
right.iColor=Color4;
|
sl@0
|
716 |
format3->SetParaBorderL(CParaFormat::EParaBorderTop,top);
|
sl@0
|
717 |
format3->SetParaBorderL(CParaFormat::EParaBorderBottom,bottom);
|
sl@0
|
718 |
format3->SetParaBorderL(CParaFormat::EParaBorderLeft,left);
|
sl@0
|
719 |
format3->SetParaBorderL(CParaFormat::EParaBorderRight,right);
|
sl@0
|
720 |
//
|
sl@0
|
721 |
format3->StoreTabL(tab1layer1); format3->StoreTabL(tab2layer1); format3->StoreTabL(tab3layer1);
|
sl@0
|
722 |
// format3->StoreTabL(tab1layer2); format3->StoreTabL(tab2layer2); format3->StoreTabL(tab3layer2);
|
sl@0
|
723 |
format3->iBullet=new(ELeave)TBullet;
|
sl@0
|
724 |
format3->iBullet->iHeightInTwips=200;
|
sl@0
|
725 |
format3->iBullet->iCharacterCode=202;
|
sl@0
|
726 |
format3->iBullet->iTypeface.iName=(_L("Symbol"));
|
sl@0
|
727 |
format3->iBullet->iTypeface.SetIsProportional(ETrue);
|
sl@0
|
728 |
format3->iBullet->iTypeface.SetIsSerif(ETrue);
|
sl@0
|
729 |
// Setup format 4 values - The resulting format after hunting based on links.
|
sl@0
|
730 |
// and ignoring all these attributes since they are already set in the CParaFormat.
|
sl@0
|
731 |
format4->iLeftMarginInTwips=6666; format4Mask.SetAttrib(EAttLeftMargin);
|
sl@0
|
732 |
format4->iRightMarginInTwips=6666; format4Mask.SetAttrib(EAttRightMargin);
|
sl@0
|
733 |
format4->iIndentInTwips=6666; format4Mask.SetAttrib(EAttIndent);
|
sl@0
|
734 |
format4->iHorizontalAlignment=CParaFormat::ERightAlign; format4Mask.SetAttrib(EAttAlignment);
|
sl@0
|
735 |
format4->iLineSpacingInTwips=6666; format4Mask.SetAttrib(EAttLineSpacing);
|
sl@0
|
736 |
format4->iSpaceBeforeInTwips=6666; format4Mask.SetAttrib(EAttSpaceBefore);
|
sl@0
|
737 |
format4->iSpaceAfterInTwips=6666; format4Mask.SetAttrib(EAttSpaceAfter);
|
sl@0
|
738 |
format4->iKeepTogether=EFalse; format4Mask.SetAttrib(EAttKeepTogether);
|
sl@0
|
739 |
format4->iKeepWithNext=EFalse; format4Mask.SetAttrib(EAttKeepWithNext);
|
sl@0
|
740 |
format4->iStartNewPage=EFalse; format4Mask.SetAttrib(EAttStartNewPage);
|
sl@0
|
741 |
format4->iWidowOrphan=EFalse; format4Mask.SetAttrib(EAttWidowOrphan);
|
sl@0
|
742 |
format4->iDefaultTabWidthInTwips=6666; format4Mask.SetAttrib(EAttDefaultTabWidth);
|
sl@0
|
743 |
TParaBorder zTop;
|
sl@0
|
744 |
zTop.iLineStyle=TParaBorder::EDashed;
|
sl@0
|
745 |
format4Mask.SetAttrib(EAttTopBorder);
|
sl@0
|
746 |
zTop.iAutoColor=EFalse;
|
sl@0
|
747 |
TParaBorder zBottom;
|
sl@0
|
748 |
zBottom.iLineStyle=TParaBorder::EDashed;
|
sl@0
|
749 |
format4Mask.SetAttrib(EAttBottomBorder);
|
sl@0
|
750 |
zBottom.iAutoColor=EFalse;
|
sl@0
|
751 |
TParaBorder zLeft;
|
sl@0
|
752 |
zLeft.iLineStyle=TParaBorder::EDashed;
|
sl@0
|
753 |
format4Mask.SetAttrib(EAttLeftBorder);
|
sl@0
|
754 |
zLeft.iAutoColor=EFalse;
|
sl@0
|
755 |
TParaBorder zRight;
|
sl@0
|
756 |
zRight.iLineStyle=TParaBorder::EDashed;
|
sl@0
|
757 |
format4Mask.SetAttrib(EAttRightBorder);
|
sl@0
|
758 |
zRight.iAutoColor=EFalse;
|
sl@0
|
759 |
format4->SetParaBorderL(CParaFormat::EParaBorderTop,zTop);
|
sl@0
|
760 |
format4->SetParaBorderL(CParaFormat::EParaBorderBottom,zBottom);
|
sl@0
|
761 |
format4->SetParaBorderL(CParaFormat::EParaBorderLeft,zLeft);
|
sl@0
|
762 |
format4->SetParaBorderL(CParaFormat::EParaBorderRight,zRight);
|
sl@0
|
763 |
//
|
sl@0
|
764 |
format4->StoreTabL(tab1layer3); format4->StoreTabL(tab2layer3); format4->StoreTabL(tab3layer3);
|
sl@0
|
765 |
format4Mask.SetAttrib(EAttTabStop);
|
sl@0
|
766 |
format4->iBullet=new(ELeave)TBullet; format4Mask.SetAttrib(EAttBullet);
|
sl@0
|
767 |
format4->iBullet->iHeightInTwips=240;
|
sl@0
|
768 |
format4->iBullet->iCharacterCode=201;
|
sl@0
|
769 |
format4->iBullet->iTypeface.iName=(_L("Windings"));
|
sl@0
|
770 |
format4->iBullet->iTypeface.SetIsSerif(ETrue);
|
sl@0
|
771 |
format4->iBullet->iTypeface.SetIsProportional(EFalse);
|
sl@0
|
772 |
// Store the formats in para format layers
|
sl@0
|
773 |
CParaFormatLayer* formatLayer4=CParaFormatLayer::NewL(format4,format4Mask);
|
sl@0
|
774 |
|
sl@0
|
775 |
CParaFormatLayer* formatLayer2=CParaFormatLayer::NewL(format2,format2Mask);
|
sl@0
|
776 |
|
sl@0
|
777 |
CParaFormatLayer* formatLayer=CParaFormatLayer::NewL(format1,format1Mask);
|
sl@0
|
778 |
formatLayer->SetBase(formatLayer2);
|
sl@0
|
779 |
|
sl@0
|
780 |
// Now read them in and compare them:
|
sl@0
|
781 |
// First just the layers.
|
sl@0
|
782 |
INFO_PRINTF1(_L("SenseL() - Sensing this layer only"));
|
sl@0
|
783 |
CParaFormat* formatResult1=CParaFormat::NewL();
|
sl@0
|
784 |
TParaFormatMask formatResult1Mask;
|
sl@0
|
785 |
formatLayer->SenseL(formatResult1,formatResult1Mask);
|
sl@0
|
786 |
CheckFormatsEqual(format1,formatResult1);
|
sl@0
|
787 |
CheckFormatsEqual(format1Mask,formatResult1Mask);
|
sl@0
|
788 |
delete formatResult1;
|
sl@0
|
789 |
|
sl@0
|
790 |
formatResult1=CParaFormat::NewL();
|
sl@0
|
791 |
formatResult1Mask.ClearAll();
|
sl@0
|
792 |
formatLayer2->SenseL(formatResult1,formatResult1Mask);
|
sl@0
|
793 |
CheckFormatsEqual(format2,formatResult1);
|
sl@0
|
794 |
CheckFormatsEqual(format2Mask,formatResult1Mask);
|
sl@0
|
795 |
delete formatResult1;
|
sl@0
|
796 |
|
sl@0
|
797 |
// Now check the effective formats are correct
|
sl@0
|
798 |
INFO_PRINTF1(_L("SenseEffectiveL() - utilising basedOn"));
|
sl@0
|
799 |
CParaFormat* formatResult2=CParaFormat::NewL();
|
sl@0
|
800 |
formatLayer->SenseEffectiveL(formatResult2);
|
sl@0
|
801 |
CheckFormatsEqual(format3,formatResult2);
|
sl@0
|
802 |
delete formatResult2;
|
sl@0
|
803 |
|
sl@0
|
804 |
// Now check the effective formats are correct
|
sl@0
|
805 |
// The result should be the same as above,
|
sl@0
|
806 |
// since all these values are present in the resultant CParaFormat.
|
sl@0
|
807 |
// Ie, checking that overlapping attributes in a lower layer are not taken.
|
sl@0
|
808 |
INFO_PRINTF1(_L("SenseEffectiveL() - checking overlapping attributes are ignored"));
|
sl@0
|
809 |
// Add another layer of formatting by implementing the next based on link.
|
sl@0
|
810 |
formatLayer2->SetBase(formatLayer4);
|
sl@0
|
811 |
formatResult2=CParaFormat::NewL();
|
sl@0
|
812 |
formatLayer->SenseEffectiveL(formatResult2);
|
sl@0
|
813 |
CheckFormatsEqual(format3,formatResult2);
|
sl@0
|
814 |
delete formatResult2;
|
sl@0
|
815 |
|
sl@0
|
816 |
// Test ChainCount() method
|
sl@0
|
817 |
INFO_PRINTF1(_L("ChainCount()"));
|
sl@0
|
818 |
test(formatLayer4->ChainCount()==1);
|
sl@0
|
819 |
test(formatLayer2->ChainCount()==2);
|
sl@0
|
820 |
test(formatLayer->ChainCount()==3);
|
sl@0
|
821 |
|
sl@0
|
822 |
// Now clean up.
|
sl@0
|
823 |
delete formatLayer;
|
sl@0
|
824 |
delete formatLayer2;
|
sl@0
|
825 |
delete formatLayer4;
|
sl@0
|
826 |
//formatLayer3 does not exist, so each can use it's own same numbered format.
|
sl@0
|
827 |
delete format1;
|
sl@0
|
828 |
delete format2;
|
sl@0
|
829 |
delete format3;
|
sl@0
|
830 |
delete format4;
|
sl@0
|
831 |
__UHEAP_MARKEND;
|
sl@0
|
832 |
}
|
sl@0
|
833 |
|
sl@0
|
834 |
|
sl@0
|
835 |
LOCAL_C void CheckBulletInheritance()
|
sl@0
|
836 |
//
|
sl@0
|
837 |
// Checks correct inheritance of bullets.
|
sl@0
|
838 |
//
|
sl@0
|
839 |
{
|
sl@0
|
840 |
INFO_PRINTF1(_L("Testing bullet inheritance"));
|
sl@0
|
841 |
__UHEAP_MARK;
|
sl@0
|
842 |
|
sl@0
|
843 |
CParaFormatLayer* baseLayer=CParaFormatLayer::NewL();
|
sl@0
|
844 |
CParaFormatLayer* specificLayer=CParaFormatLayer::NewL();
|
sl@0
|
845 |
specificLayer->SetBase(baseLayer);
|
sl@0
|
846 |
CParaFormat* paraFormat=CParaFormat::NewLC();
|
sl@0
|
847 |
paraFormat->iBullet=new(ELeave) TBullet;
|
sl@0
|
848 |
paraFormat->iBullet->iHeightInTwips=200;
|
sl@0
|
849 |
paraFormat->iBullet->iCharacterCode=202;
|
sl@0
|
850 |
TParaFormatMask paraMask;
|
sl@0
|
851 |
paraMask.SetAttrib(EAttBullet);
|
sl@0
|
852 |
specificLayer->SetL(paraFormat,paraMask);
|
sl@0
|
853 |
//
|
sl@0
|
854 |
// specific bullet over null inherited
|
sl@0
|
855 |
INFO_PRINTF1(_L("Specific bullet over null inherited"));
|
sl@0
|
856 |
CParaFormat* sensed=CParaFormat::NewLC();
|
sl@0
|
857 |
specificLayer->SenseEffectiveL(sensed);
|
sl@0
|
858 |
test(sensed->iBullet!=NULL);
|
sl@0
|
859 |
test(sensed->iBullet->iHeightInTwips==200);
|
sl@0
|
860 |
CleanupStack::PopAndDestroy(); // sensed
|
sl@0
|
861 |
//
|
sl@0
|
862 |
// null bullet over inherited
|
sl@0
|
863 |
INFO_PRINTF1(_L("Null bullet over inherited"));
|
sl@0
|
864 |
baseLayer->Reset();
|
sl@0
|
865 |
specificLayer->Reset();
|
sl@0
|
866 |
baseLayer->SetL(paraFormat,paraMask);
|
sl@0
|
867 |
CParaFormat* empty=CParaFormat::NewLC();
|
sl@0
|
868 |
TParaFormatMask temp;
|
sl@0
|
869 |
temp.SetAttrib(EAttBullet);
|
sl@0
|
870 |
specificLayer->SetL(empty,temp);
|
sl@0
|
871 |
CleanupStack::PopAndDestroy(); // empty
|
sl@0
|
872 |
sensed=CParaFormat::NewLC();
|
sl@0
|
873 |
specificLayer->SenseEffectiveL(sensed);
|
sl@0
|
874 |
CleanupStack::PopAndDestroy(); // sensed
|
sl@0
|
875 |
// test(sensed->iBullet==NULL);
|
sl@0
|
876 |
//
|
sl@0
|
877 |
// non-null bullet over inherited bullet
|
sl@0
|
878 |
INFO_PRINTF1(_L("Non-Null bullet over inherited"));
|
sl@0
|
879 |
specificLayer->Reset();
|
sl@0
|
880 |
paraFormat->iBullet->iHeightInTwips=1000;
|
sl@0
|
881 |
specificLayer->SetL(paraFormat,paraMask);
|
sl@0
|
882 |
sensed=CParaFormat::NewLC();
|
sl@0
|
883 |
specificLayer->SenseEffectiveL(sensed);
|
sl@0
|
884 |
test(sensed->iBullet!=NULL);
|
sl@0
|
885 |
test(sensed->iBullet->iHeightInTwips==1000);
|
sl@0
|
886 |
CleanupStack::PopAndDestroy(); // sensed
|
sl@0
|
887 |
|
sl@0
|
888 |
CleanupStack::PopAndDestroy(); // paraFormat.
|
sl@0
|
889 |
delete specificLayer;
|
sl@0
|
890 |
delete baseLayer;
|
sl@0
|
891 |
|
sl@0
|
892 |
__UHEAP_MARKEND;
|
sl@0
|
893 |
}
|
sl@0
|
894 |
|
sl@0
|
895 |
|
sl@0
|
896 |
template<class S>
|
sl@0
|
897 |
void TestFormat<S>::CheckCParaFormatLayerL()
|
sl@0
|
898 |
//
|
sl@0
|
899 |
// Checks CParaFormatLayer construction and methods.
|
sl@0
|
900 |
//
|
sl@0
|
901 |
{
|
sl@0
|
902 |
__UHEAP_MARK;
|
sl@0
|
903 |
|
sl@0
|
904 |
|
sl@0
|
905 |
TInt ret=0;
|
sl@0
|
906 |
TInt check=0;
|
sl@0
|
907 |
CParaFormatLayer* layer0=NULL;
|
sl@0
|
908 |
|
sl@0
|
909 |
INFO_PRINTF1(_L("Constructor"));
|
sl@0
|
910 |
#ifdef _DEBUG
|
sl@0
|
911 |
INFO_PRINTF1(_L("Failing on OOM"));
|
sl@0
|
912 |
__UHEAP_FAILNEXT(1);
|
sl@0
|
913 |
TRAP(ret,layer0=CParaFormatLayer::NewL());
|
sl@0
|
914 |
if (ret!=KErrNone)
|
sl@0
|
915 |
check++;
|
sl@0
|
916 |
// seems __UHEAP_FAILNEXT does not work well in platsim.
|
sl@0
|
917 |
// below test does not pass in platsim.
|
sl@0
|
918 |
// test(check>0);
|
sl@0
|
919 |
#endif
|
sl@0
|
920 |
|
sl@0
|
921 |
INFO_PRINTF1(_L("Succeeding"));
|
sl@0
|
922 |
check=0;
|
sl@0
|
923 |
TRAP(ret,layer0=CParaFormatLayer::NewL());
|
sl@0
|
924 |
if (ret!=KErrNone)
|
sl@0
|
925 |
check++;
|
sl@0
|
926 |
test(check==0);
|
sl@0
|
927 |
delete layer0;
|
sl@0
|
928 |
|
sl@0
|
929 |
// Set/Sense Default Para Format.
|
sl@0
|
930 |
INFO_PRINTF1(_L("Set/Sense Default ParaFormat"));
|
sl@0
|
931 |
CParaFormat* defaultFormat=CParaFormat::NewL();
|
sl@0
|
932 |
|
sl@0
|
933 |
//to test EAttParaLanguageX
|
sl@0
|
934 |
defaultFormat->iLanguage |= 0x100;
|
sl@0
|
935 |
|
sl@0
|
936 |
//set iBullet as a valid bullet to test EAttBullet and EAttBulletX
|
sl@0
|
937 |
defaultFormat->iBullet=new(ELeave)TBullet;
|
sl@0
|
938 |
defaultFormat->iBullet->iStyle = TBullet::EBulletStyle;
|
sl@0
|
939 |
defaultFormat->iBullet->iHeightInTwips = 1;
|
sl@0
|
940 |
|
sl@0
|
941 |
TParaFormatMask defaultGuard;
|
sl@0
|
942 |
defaultGuard.SetAttrib(EAttParaLanguage);
|
sl@0
|
943 |
defaultGuard.SetAttrib(EAttBullet);
|
sl@0
|
944 |
defaultGuard.SetAttrib(EAttLeftMargin);
|
sl@0
|
945 |
defaultGuard.SetAttrib(EAttRightMargin);
|
sl@0
|
946 |
defaultGuard.SetAttrib(EAttIndent);
|
sl@0
|
947 |
defaultGuard.SetAttrib(EAttAlignment);
|
sl@0
|
948 |
defaultGuard.SetAttrib(EAttLineSpacing);
|
sl@0
|
949 |
defaultGuard.SetAttrib(EAttLineSpacingControl);
|
sl@0
|
950 |
defaultGuard.SetAttrib(EAttSpaceBefore);
|
sl@0
|
951 |
defaultGuard.SetAttrib(EAttSpaceAfter);
|
sl@0
|
952 |
defaultGuard.SetAttrib(EAttKeepTogether);
|
sl@0
|
953 |
defaultGuard.SetAttrib(EAttKeepWithNext);
|
sl@0
|
954 |
defaultGuard.SetAttrib(EAttStartNewPage);
|
sl@0
|
955 |
defaultGuard.SetAttrib(EAttWidowOrphan);
|
sl@0
|
956 |
defaultGuard.SetAttrib(EAttBorderMargin);
|
sl@0
|
957 |
defaultGuard.SetAttrib(EAttDefaultTabWidth);
|
sl@0
|
958 |
|
sl@0
|
959 |
CParaFormat* buffer1=CParaFormat::NewL();
|
sl@0
|
960 |
TParaFormatMask bufferGuard1;
|
sl@0
|
961 |
CParaFormat* buffer2=CParaFormat::NewL();
|
sl@0
|
962 |
|
sl@0
|
963 |
CParaFormatLayer* testing1=CParaFormatLayer::NewL();
|
sl@0
|
964 |
testing1->SetL(defaultFormat,defaultGuard);
|
sl@0
|
965 |
testing1->SenseL(buffer1,bufferGuard1);
|
sl@0
|
966 |
testing1->SenseEffectiveL(buffer2);
|
sl@0
|
967 |
|
sl@0
|
968 |
test(defaultFormat->IsEqual(*buffer1));
|
sl@0
|
969 |
test(defaultFormat->IsEqual(*buffer2));
|
sl@0
|
970 |
CheckFormatsEqual(defaultGuard,bufferGuard1);
|
sl@0
|
971 |
|
sl@0
|
972 |
delete testing1;
|
sl@0
|
973 |
|
sl@0
|
974 |
delete defaultFormat;
|
sl@0
|
975 |
delete buffer1;
|
sl@0
|
976 |
delete buffer2;
|
sl@0
|
977 |
|
sl@0
|
978 |
CheckCParaFormatLayerRestL();
|
sl@0
|
979 |
__UHEAP_MARKEND;
|
sl@0
|
980 |
}
|
sl@0
|
981 |
|
sl@0
|
982 |
|
sl@0
|
983 |
template<class S>
|
sl@0
|
984 |
void TestFormat<S>::CheckTCharFormat()
|
sl@0
|
985 |
//
|
sl@0
|
986 |
// Checks the TCharFormat construction.
|
sl@0
|
987 |
//
|
sl@0
|
988 |
{
|
sl@0
|
989 |
__UHEAP_MARK;
|
sl@0
|
990 |
// All methods
|
sl@0
|
991 |
INFO_PRINTF1(_L("Constructor"));
|
sl@0
|
992 |
TCharFormat format;
|
sl@0
|
993 |
test(format.iLanguage==0);
|
sl@0
|
994 |
|
sl@0
|
995 |
INFO_PRINTF1(_L("Constructor with arguments"));
|
sl@0
|
996 |
TInt height=240;
|
sl@0
|
997 |
TBuf<32> name=_S("arial");
|
sl@0
|
998 |
TCharFormat format1(name,height);
|
sl@0
|
999 |
format1.iFontSpec.iTypeface.SetAttributes(TTypeface::EProportional|TTypeface::ESerif);
|
sl@0
|
1000 |
TCharFormat control;
|
sl@0
|
1001 |
control.iFontSpec.iHeight=240;
|
sl@0
|
1002 |
control.iFontSpec.iTypeface.iName=_S("arial");
|
sl@0
|
1003 |
test(format1.IsEqual(control));
|
sl@0
|
1004 |
|
sl@0
|
1005 |
__UHEAP_MARKEND;
|
sl@0
|
1006 |
}
|
sl@0
|
1007 |
|
sl@0
|
1008 |
|
sl@0
|
1009 |
template<class S>
|
sl@0
|
1010 |
void TestFormat<S>::CheckTCharFormatMask()
|
sl@0
|
1011 |
//
|
sl@0
|
1012 |
// Checks TCharFormatMask construction and methods.
|
sl@0
|
1013 |
//
|
sl@0
|
1014 |
{
|
sl@0
|
1015 |
__UHEAP_MARK;
|
sl@0
|
1016 |
// All methods.
|
sl@0
|
1017 |
TInt count=0;
|
sl@0
|
1018 |
INFO_PRINTF1(_L("Checking all methods"));
|
sl@0
|
1019 |
TCharFormatMask mask;
|
sl@0
|
1020 |
mask.SetAttrib(EAttFontHeight);
|
sl@0
|
1021 |
mask.AttribIsSet(EAttFontHeight);
|
sl@0
|
1022 |
mask.ClearAttrib(EAttFontHeight);
|
sl@0
|
1023 |
// Construction.
|
sl@0
|
1024 |
INFO_PRINTF1(_L("Construction"));
|
sl@0
|
1025 |
TCharFormatMask mask1;
|
sl@0
|
1026 |
for (count=EAttCharLanguage;count<ETextFormatAttributeCount;count++)
|
sl@0
|
1027 |
{
|
sl@0
|
1028 |
test(mask1.AttribIsSet((TTextFormatAttribute)count)==EFalse);
|
sl@0
|
1029 |
}
|
sl@0
|
1030 |
// SetAttrib()
|
sl@0
|
1031 |
INFO_PRINTF1(_L("SetAttrib()"));
|
sl@0
|
1032 |
for (count=EAttCharLanguage;count<ETextFormatAttributeCount;count++)
|
sl@0
|
1033 |
{
|
sl@0
|
1034 |
mask1.SetAttrib((TTextFormatAttribute)count);
|
sl@0
|
1035 |
}
|
sl@0
|
1036 |
for (count=EAttCharLanguage;count<ETextFormatAttributeCount;count++)
|
sl@0
|
1037 |
{
|
sl@0
|
1038 |
test(mask1.AttribIsSet((TTextFormatAttribute)count));
|
sl@0
|
1039 |
}
|
sl@0
|
1040 |
// ClearAttrib()
|
sl@0
|
1041 |
INFO_PRINTF1(_L("ClearAttrib()"));
|
sl@0
|
1042 |
for (count=EAttCharLanguage;count<ETextFormatAttributeCount;count++)
|
sl@0
|
1043 |
{
|
sl@0
|
1044 |
mask1.ClearAttrib((TTextFormatAttribute)count);
|
sl@0
|
1045 |
}
|
sl@0
|
1046 |
for (count=EAttCharLanguage;count<ETextFormatAttributeCount;count++)
|
sl@0
|
1047 |
{
|
sl@0
|
1048 |
test(mask1.AttribIsSet((TTextFormatAttribute)count)==EFalse);
|
sl@0
|
1049 |
}
|
sl@0
|
1050 |
// AttribIsSet()
|
sl@0
|
1051 |
INFO_PRINTF1(_L("AttribIsSet()"));
|
sl@0
|
1052 |
// Already tested in the above.
|
sl@0
|
1053 |
INFO_PRINTF1(_L("SetAll()"));
|
sl@0
|
1054 |
TCharFormatMask mask2;
|
sl@0
|
1055 |
mask2.SetAll();
|
sl@0
|
1056 |
for (count=EAttCharLanguage;count<ETextFormatAttributeCount;count++)
|
sl@0
|
1057 |
{
|
sl@0
|
1058 |
test(mask2.AttribIsSet((TTextFormatAttribute)count));
|
sl@0
|
1059 |
}
|
sl@0
|
1060 |
INFO_PRINTF1(_L("ClearAll()"));
|
sl@0
|
1061 |
mask2.ClearAll();
|
sl@0
|
1062 |
for (count=EAttCharLanguage;count<ETextFormatAttributeCount;count++)
|
sl@0
|
1063 |
{
|
sl@0
|
1064 |
test(mask2.AttribIsSet((TTextFormatAttribute)count)==EFalse);
|
sl@0
|
1065 |
}
|
sl@0
|
1066 |
__UHEAP_MARKEND;
|
sl@0
|
1067 |
}
|
sl@0
|
1068 |
|
sl@0
|
1069 |
|
sl@0
|
1070 |
template<class S>
|
sl@0
|
1071 |
void TestFormat<S>::CheckAllClassesL()
|
sl@0
|
1072 |
//
|
sl@0
|
1073 |
// Check all classes and structs exist.
|
sl@0
|
1074 |
//
|
sl@0
|
1075 |
{
|
sl@0
|
1076 |
INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-ETEXT-LEGACY-T_FMT-0001 TTabStop "));
|
sl@0
|
1077 |
CheckTTabStop();
|
sl@0
|
1078 |
|
sl@0
|
1079 |
INFO_PRINTF1(_L("TParaBorder"));
|
sl@0
|
1080 |
CheckTParaBorder();
|
sl@0
|
1081 |
|
sl@0
|
1082 |
INFO_PRINTF1(_L("TBullet"));
|
sl@0
|
1083 |
CheckTBullet();
|
sl@0
|
1084 |
|
sl@0
|
1085 |
INFO_PRINTF1(_L("CParaFormat"));
|
sl@0
|
1086 |
CheckCParaFormatL();
|
sl@0
|
1087 |
|
sl@0
|
1088 |
INFO_PRINTF1(_L("TParaFormatMask"));
|
sl@0
|
1089 |
CheckTParaFormatMask();
|
sl@0
|
1090 |
|
sl@0
|
1091 |
INFO_PRINTF1(_L("CParaFormatLayer"));
|
sl@0
|
1092 |
CheckCParaFormatLayerL();
|
sl@0
|
1093 |
|
sl@0
|
1094 |
INFO_PRINTF1(_L("TCharFormat"));
|
sl@0
|
1095 |
CheckTCharFormat();
|
sl@0
|
1096 |
|
sl@0
|
1097 |
INFO_PRINTF1(_L("TCharFormatMask"));
|
sl@0
|
1098 |
CheckTCharFormatMask();
|
sl@0
|
1099 |
|
sl@0
|
1100 |
INFO_PRINTF1(_L("CCharFormatLayer"));
|
sl@0
|
1101 |
CheckCCharFormatLayerL();
|
sl@0
|
1102 |
|
sl@0
|
1103 |
}
|
sl@0
|
1104 |
|
sl@0
|
1105 |
|
sl@0
|
1106 |
LOCAL_C void TestSettingNullTabsL()
|
sl@0
|
1107 |
// Tests setting null tabs into a para format with tab stops.
|
sl@0
|
1108 |
//
|
sl@0
|
1109 |
{
|
sl@0
|
1110 |
INFO_PRINTF1(_L("Setting Null Tabs"));
|
sl@0
|
1111 |
|
sl@0
|
1112 |
CCharFormatLayer* charLayer=CCharFormatLayer::NewL();
|
sl@0
|
1113 |
CParaFormatLayer* paraLayer=CParaFormatLayer::NewL();
|
sl@0
|
1114 |
//
|
sl@0
|
1115 |
CRichText* text=CRichText::NewL(paraLayer,charLayer);
|
sl@0
|
1116 |
//
|
sl@0
|
1117 |
// Set tabs in the first paragraph.
|
sl@0
|
1118 |
CParaFormat* paraFormat=CParaFormat::NewLC();
|
sl@0
|
1119 |
TTabStop tabA;
|
sl@0
|
1120 |
tabA.iTwipsPosition=100;
|
sl@0
|
1121 |
tabA.iType=TTabStop::ELeftTab;
|
sl@0
|
1122 |
TTabStop tabB;
|
sl@0
|
1123 |
tabB.iTwipsPosition=200;
|
sl@0
|
1124 |
tabB.iType=TTabStop::ELeftTab;
|
sl@0
|
1125 |
TTabStop tabC;
|
sl@0
|
1126 |
tabC.iTwipsPosition=300;
|
sl@0
|
1127 |
tabC.iType=TTabStop::ERightTab;
|
sl@0
|
1128 |
paraFormat->StoreTabL(tabA);
|
sl@0
|
1129 |
paraFormat->StoreTabL(tabB);
|
sl@0
|
1130 |
paraFormat->StoreTabL(tabC);
|
sl@0
|
1131 |
TParaFormatMask paraMask;
|
sl@0
|
1132 |
paraMask.SetAttrib(EAttTabStop);
|
sl@0
|
1133 |
text->ApplyParaFormatL(paraFormat,paraMask,0,0);
|
sl@0
|
1134 |
CleanupStack::PopAndDestroy(); // paraFormat
|
sl@0
|
1135 |
//
|
sl@0
|
1136 |
// Test that the tabs have been stored.
|
sl@0
|
1137 |
CParaFormat* result=CParaFormat::NewLC();
|
sl@0
|
1138 |
TParaFormatMask resultMask;
|
sl@0
|
1139 |
text->GetParagraphFormatL(result,0);
|
sl@0
|
1140 |
test(result->TabCount()==3);
|
sl@0
|
1141 |
//
|
sl@0
|
1142 |
// Now set zero tabs
|
sl@0
|
1143 |
text->InsertL(0,CEditableText::EParagraphDelimiter);
|
sl@0
|
1144 |
CParaFormat* newFormat=CParaFormat::NewLC();
|
sl@0
|
1145 |
TParaFormatMask newMask;
|
sl@0
|
1146 |
newMask.SetAttrib(EAttTabStop);
|
sl@0
|
1147 |
text->ApplyParaFormatL(newFormat,newMask,1,0);
|
sl@0
|
1148 |
CleanupStack::PopAndDestroy(); // newFormat
|
sl@0
|
1149 |
//
|
sl@0
|
1150 |
// Test how many tabs we have in the new paragraph
|
sl@0
|
1151 |
CleanupStack::PopAndDestroy(); // result
|
sl@0
|
1152 |
result=CParaFormat::NewLC();
|
sl@0
|
1153 |
resultMask.ClearAll();
|
sl@0
|
1154 |
text->GetParagraphFormatL(result,1);
|
sl@0
|
1155 |
test(result->TabCount()==0);
|
sl@0
|
1156 |
CleanupStack::PopAndDestroy(); // result
|
sl@0
|
1157 |
//
|
sl@0
|
1158 |
// Cleanup
|
sl@0
|
1159 |
delete text;
|
sl@0
|
1160 |
delete paraLayer;
|
sl@0
|
1161 |
delete charLayer;
|
sl@0
|
1162 |
}
|
sl@0
|
1163 |
|
sl@0
|
1164 |
|
sl@0
|
1165 |
LOCAL_C void TestFormatLayerResetL()
|
sl@0
|
1166 |
// Test CFormatLayer::Reset();
|
sl@0
|
1167 |
//
|
sl@0
|
1168 |
{
|
sl@0
|
1169 |
INFO_PRINTF1(_L("CFormatLayer::Reset()"));
|
sl@0
|
1170 |
|
sl@0
|
1171 |
CCharFormatLayer* charLayer=CCharFormatLayer::NewL();
|
sl@0
|
1172 |
TCharFormat charFormat;
|
sl@0
|
1173 |
TCharFormatMask charFormatMask;
|
sl@0
|
1174 |
charFormat.iFontSpec.iFontStyle.SetStrokeWeight(EStrokeWeightBold);
|
sl@0
|
1175 |
charFormat.iFontSpec.iFontStyle.SetPosture(EPostureItalic);
|
sl@0
|
1176 |
charFormat.iFontPresentation.iStrikethrough=EStrikethroughOn;
|
sl@0
|
1177 |
charFormat.iFontPresentation.iUnderline=EUnderlineOn;
|
sl@0
|
1178 |
charFormatMask.SetAll();
|
sl@0
|
1179 |
charLayer->SetL(charFormat,charFormatMask);
|
sl@0
|
1180 |
//
|
sl@0
|
1181 |
TCharFormat formatOne;
|
sl@0
|
1182 |
TCharFormatMask formatOneMask;
|
sl@0
|
1183 |
charLayer->Sense(formatOne,formatOneMask);
|
sl@0
|
1184 |
test(formatOne.iFontSpec.iFontStyle.StrokeWeight()==EStrokeWeightBold);
|
sl@0
|
1185 |
//
|
sl@0
|
1186 |
charLayer->Reset();
|
sl@0
|
1187 |
//
|
sl@0
|
1188 |
TCharFormat result;
|
sl@0
|
1189 |
TCharFormatMask resultMask;
|
sl@0
|
1190 |
charLayer->Sense(result,resultMask);
|
sl@0
|
1191 |
//
|
sl@0
|
1192 |
TCharFormat comparator;
|
sl@0
|
1193 |
test(result.IsEqual(comparator));
|
sl@0
|
1194 |
//
|
sl@0
|
1195 |
delete charLayer;
|
sl@0
|
1196 |
}
|
sl@0
|
1197 |
|
sl@0
|
1198 |
CT_FMT::CT_FMT()
|
sl@0
|
1199 |
{
|
sl@0
|
1200 |
SetTestStepName(KTestStep_T_FMT);
|
sl@0
|
1201 |
pTestStep = this;
|
sl@0
|
1202 |
}
|
sl@0
|
1203 |
|
sl@0
|
1204 |
TVerdict CT_FMT::doTestStepL()
|
sl@0
|
1205 |
{
|
sl@0
|
1206 |
SetTestStepResult(EFail);
|
sl@0
|
1207 |
|
sl@0
|
1208 |
CTrapCleanup* cleanup=CTrapCleanup::New();
|
sl@0
|
1209 |
INFO_PRINTF1(_L("TFormat Test Code"));
|
sl@0
|
1210 |
TestFormat<TText>* fmt=new(ELeave) TestFormat<TText>;
|
sl@0
|
1211 |
TRAPD(ret1, fmt->CheckAllClassesL());
|
sl@0
|
1212 |
TRAPD(ret2, TestFormatLayerResetL());
|
sl@0
|
1213 |
TRAPD(ret3, TestSettingNullTabsL());
|
sl@0
|
1214 |
TRAPD(ret4, CheckBulletInheritance());
|
sl@0
|
1215 |
|
sl@0
|
1216 |
__UHEAP_MARK;
|
sl@0
|
1217 |
delete(fmt);
|
sl@0
|
1218 |
fmt=NULL;
|
sl@0
|
1219 |
__UHEAP_MARKEND;
|
sl@0
|
1220 |
|
sl@0
|
1221 |
delete cleanup;
|
sl@0
|
1222 |
|
sl@0
|
1223 |
if (ret1 == KErrNone && ret2 == KErrNone && ret3 == KErrNone && ret4 == KErrNone)
|
sl@0
|
1224 |
{
|
sl@0
|
1225 |
SetTestStepResult(EPass);
|
sl@0
|
1226 |
}
|
sl@0
|
1227 |
|
sl@0
|
1228 |
return TestStepResult();
|
sl@0
|
1229 |
}
|