1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/textandloc/textrendering/texthandling/ttext/TRTCOPY.CPP Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,163 @@
1.4 +/*
1.5 +* Copyright (c) 1997-2010 Nokia Corporation and/or its subsidiary(-ies).
1.6 +* All rights reserved.
1.7 +* This component and the accompanying materials are made available
1.8 +* under the terms of "Eclipse Public License v1.0"
1.9 +* which accompanies this distribution, and is available
1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.11 +*
1.12 +* Initial Contributors:
1.13 +* Nokia Corporation - initial contribution.
1.14 +*
1.15 +* Contributors:
1.16 +*
1.17 +* Description:
1.18 +*
1.19 +*/
1.20 +
1.21 +
1.22 +#include <txtrich.h>
1.23 +#include <txtstyle.h>
1.24 +#include <flddef.h>
1.25 +#include <fldbltin.h>
1.26 +#include <gdi.h>
1.27 +#include <conpics.h>
1.28 +#include <s32mem.h>
1.29 +#include <s32file.h>
1.30 +#include "../incp/T_PMLPAR.H"
1.31 +#include "TRTCOPY.h"
1.32 +
1.33 +#define test(cond) \
1.34 + { \
1.35 + TBool __bb = (cond); \
1.36 + TEST(__bb); \
1.37 + if (!__bb) \
1.38 + { \
1.39 + ERR_PRINTF1(_L("ERROR: Test Failed")); \
1.40 + User::Leave(1); \
1.41 + } \
1.42 + }
1.43 +
1.44 +LOCAL_D RFs theFs;
1.45 +LOCAL_D CRichText* ComponentText;
1.46 +LOCAL_D CParaFormatLayer* GlobalParaFormatLayer;
1.47 +LOCAL_D CCharFormatLayer* GlobalCharFormatLayer;
1.48 +LOCAL_D CTrapCleanup* TheTrapCleanup;
1.49 +LOCAL_D CParser* TheParser;
1.50 +
1.51 +const TInt KTestCleanupStack=0x500;
1.52 +
1.53 +
1.54 +CRichText* CT_TRTCOPY::LoadIntoTextL(TFileName& aFileName)
1.55 +//
1.56 + {
1.57 + TRAPD(ret,
1.58 + TheParser=CParser::NewL());
1.59 + CRichText* text=NULL;
1.60 + TRAP(ret,
1.61 + text=TheParser->ParseL(aFileName));
1.62 + GlobalParaFormatLayer=(CParaFormatLayer*)text->GlobalParaFormatLayer();
1.63 + GlobalCharFormatLayer=(CCharFormatLayer*)text->GlobalCharFormatLayer();
1.64 + delete TheParser;
1.65 + TheParser=NULL;
1.66 + return text;
1.67 + }
1.68 +
1.69 +/*
1.70 +CStyleList* CT_TRTCOPY::CreatePopulatedStyleList()
1.71 +//
1.72 + {
1.73 + //
1.74 + // Create style aswell.
1.75 + CStyleList* list=CStyleList::NewL();
1.76 + CParagraphStyle* style1=CParagraphStyle::NewL(*GlobalParaFormatLayer,*GlobalCharFormatLayer);
1.77 + CParagraphStyle* style2=CParagraphStyle::NewL(*GlobalParaFormatLayer,*GlobalCharFormatLayer);
1.78 + CParagraphStyle* style3=CParagraphStyle::NewL(*GlobalParaFormatLayer,*GlobalCharFormatLayer);
1.79 + list->AppendL(*style1);
1.80 + list->AppendL(*style2);
1.81 + list->AppendL(*style3);
1.82 + return list;
1.83 + }
1.84 +*/
1.85 +
1.86 +void CT_TRTCOPY::CreateAggregateTextL()
1.87 +//
1.88 + {
1.89 + TFileName theFileName=_L("z:\\test\\app-framework\\etext\\aggregat.pml");
1.90 +// AggregateText=LoadIntoTextL(theFileName);
1.91 + //
1.92 + theFileName=_L("z:\\test\\app-framework\\etext\\componnt.pml");
1.93 + ComponentText=LoadIntoTextL(theFileName);
1.94 + // Insert a picture or two
1.95 + CXzePicture* pic1=CXzePicture::NewL('x');
1.96 + CleanupStack::PushL(pic1);
1.97 + CXzePicture* pic2=CXzePicture::NewL('z');
1.98 + CleanupStack::PushL(pic2);
1.99 + // Create the picture headers
1.100 + TPictureHeader hdr1;
1.101 + TPictureHeader hdr2;
1.102 + hdr1.iPictureType=KUidXzePictureType;
1.103 + hdr1.iPicture=pic1;
1.104 + hdr2.iPictureType=KUidXzePictureType;
1.105 + hdr2.iPicture=pic2;
1.106 + ComponentText->InsertL(0,hdr1);
1.107 + ComponentText->InsertL(ComponentText->DocumentLength(),hdr2);
1.108 + CleanupStack::Pop(2); // pic1,pic2
1.109 + //
1.110 + // Now do the insert.
1.111 +// AggregateText->InsertL(10,ComponentText);
1.112 +// delete AggregateText;
1.113 + delete ComponentText;
1.114 + delete GlobalParaFormatLayer;
1.115 + delete GlobalCharFormatLayer;
1.116 + }
1.117 +
1.118 +
1.119 +void CT_TRTCOPY::doMainL()
1.120 + {
1.121 + CreateAggregateTextL();
1.122 + }
1.123 +
1.124 +
1.125 +void CT_TRTCOPY::setupCleanup()
1.126 +//
1.127 +// Initialise the cleanup stack.
1.128 +//
1.129 + {
1.130 + TheTrapCleanup=CTrapCleanup::New();
1.131 + test(TheTrapCleanup!=NULL);
1.132 + TRAPD(r,\
1.133 + {\
1.134 + for (TInt i=KTestCleanupStack;i>0;i--)\
1.135 + CleanupStack::PushL((TAny*)0);\
1.136 + CleanupStack::Pop(KTestCleanupStack);\
1.137 + });
1.138 + test(r==KErrNone);
1.139 + }
1.140 +
1.141 +CT_TRTCOPY::CT_TRTCOPY()
1.142 + {
1.143 + SetTestStepName(KTestStep_T_TRTCOPY);
1.144 + }
1.145 +
1.146 +TVerdict CT_TRTCOPY::doTestStepL()
1.147 + {
1.148 + SetTestStepResult(EFail);
1.149 +
1.150 + INFO_PRINTF1(_L("TRTCOPY"));
1.151 + setupCleanup();
1.152 + __UHEAP_MARK;
1.153 +
1.154 + INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-TTEXT-LEGACY-T_TRTCOPY-0001 RichText Copy Testing "));
1.155 + TRAPD(error1, doMainL());
1.156 +
1.157 + __UHEAP_MARKEND;
1.158 + delete TheTrapCleanup;
1.159 +
1.160 + if(error1 == KErrNone)
1.161 + {
1.162 + SetTestStepResult(EPass);
1.163 + }
1.164 +
1.165 + return TestStepResult();
1.166 + }