First public contribution.
2 * Copyright (c) 1997-2010 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
27 #include "../incp/T_PMLPAR.H"
32 TBool __bb = (cond); \
36 ERR_PRINTF1(_L("ERROR: Test Failed")); \
42 LOCAL_D CRichText* ComponentText;
43 LOCAL_D CParaFormatLayer* GlobalParaFormatLayer;
44 LOCAL_D CCharFormatLayer* GlobalCharFormatLayer;
45 LOCAL_D CTrapCleanup* TheTrapCleanup;
46 LOCAL_D CParser* TheParser;
48 const TInt KTestCleanupStack=0x500;
51 CRichText* CT_TRTCOPY::LoadIntoTextL(TFileName& aFileName)
55 TheParser=CParser::NewL());
58 text=TheParser->ParseL(aFileName));
59 GlobalParaFormatLayer=(CParaFormatLayer*)text->GlobalParaFormatLayer();
60 GlobalCharFormatLayer=(CCharFormatLayer*)text->GlobalCharFormatLayer();
67 CStyleList* CT_TRTCOPY::CreatePopulatedStyleList()
71 // Create style aswell.
72 CStyleList* list=CStyleList::NewL();
73 CParagraphStyle* style1=CParagraphStyle::NewL(*GlobalParaFormatLayer,*GlobalCharFormatLayer);
74 CParagraphStyle* style2=CParagraphStyle::NewL(*GlobalParaFormatLayer,*GlobalCharFormatLayer);
75 CParagraphStyle* style3=CParagraphStyle::NewL(*GlobalParaFormatLayer,*GlobalCharFormatLayer);
76 list->AppendL(*style1);
77 list->AppendL(*style2);
78 list->AppendL(*style3);
83 void CT_TRTCOPY::CreateAggregateTextL()
86 TFileName theFileName=_L("z:\\test\\app-framework\\etext\\aggregat.pml");
87 // AggregateText=LoadIntoTextL(theFileName);
89 theFileName=_L("z:\\test\\app-framework\\etext\\componnt.pml");
90 ComponentText=LoadIntoTextL(theFileName);
91 // Insert a picture or two
92 CXzePicture* pic1=CXzePicture::NewL('x');
93 CleanupStack::PushL(pic1);
94 CXzePicture* pic2=CXzePicture::NewL('z');
95 CleanupStack::PushL(pic2);
96 // Create the picture headers
99 hdr1.iPictureType=KUidXzePictureType;
101 hdr2.iPictureType=KUidXzePictureType;
103 ComponentText->InsertL(0,hdr1);
104 ComponentText->InsertL(ComponentText->DocumentLength(),hdr2);
105 CleanupStack::Pop(2); // pic1,pic2
107 // Now do the insert.
108 // AggregateText->InsertL(10,ComponentText);
109 // delete AggregateText;
110 delete ComponentText;
111 delete GlobalParaFormatLayer;
112 delete GlobalCharFormatLayer;
116 void CT_TRTCOPY::doMainL()
118 CreateAggregateTextL();
122 void CT_TRTCOPY::setupCleanup()
124 // Initialise the cleanup stack.
127 TheTrapCleanup=CTrapCleanup::New();
128 test(TheTrapCleanup!=NULL);
131 for (TInt i=KTestCleanupStack;i>0;i--)\
132 CleanupStack::PushL((TAny*)0);\
133 CleanupStack::Pop(KTestCleanupStack);\
138 CT_TRTCOPY::CT_TRTCOPY()
140 SetTestStepName(KTestStep_T_TRTCOPY);
143 TVerdict CT_TRTCOPY::doTestStepL()
145 SetTestStepResult(EFail);
147 INFO_PRINTF1(_L("TRTCOPY"));
151 INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-TTEXT-LEGACY-T_TRTCOPY-0001 RichText Copy Testing "));
152 TRAPD(error1, doMainL());
155 delete TheTrapCleanup;
157 if(error1 == KErrNone)
159 SetTestStepResult(EPass);
162 return TestStepResult();