os/textandloc/textrendering/texthandling/ttext/TRTCOPY.CPP
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     1 /*
     2 * Copyright (c) 1997-2010 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     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".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description: 
    15 *
    16 */
    17 
    18 
    19 #include <txtrich.h>
    20 #include <txtstyle.h>
    21 #include <flddef.h>
    22 #include <fldbltin.h>
    23 #include <gdi.h>
    24 #include <conpics.h>											   						 
    25 #include <s32mem.h>
    26 #include <s32file.h>
    27 #include "../incp/T_PMLPAR.H"
    28 #include "TRTCOPY.h"
    29 
    30 #define test(cond)											\
    31 	{														\
    32 	TBool __bb = (cond);									\
    33 	TEST(__bb);												\
    34 	if (!__bb)												\
    35 		{													\
    36 		ERR_PRINTF1(_L("ERROR: Test Failed"));				\
    37 		User::Leave(1);										\
    38 		}													\
    39 	}
    40 
    41 LOCAL_D RFs theFs;
    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;
    47 
    48 const TInt KTestCleanupStack=0x500;
    49 
    50 
    51 CRichText* CT_TRTCOPY::LoadIntoTextL(TFileName& aFileName)
    52 //
    53 	{
    54 	TRAPD(ret,
    55 	TheParser=CParser::NewL());
    56 	CRichText* text=NULL;
    57 	TRAP(ret,
    58 	text=TheParser->ParseL(aFileName));
    59 	GlobalParaFormatLayer=(CParaFormatLayer*)text->GlobalParaFormatLayer();
    60 	GlobalCharFormatLayer=(CCharFormatLayer*)text->GlobalCharFormatLayer();
    61 	delete TheParser;
    62 	TheParser=NULL;
    63 	return text;
    64 	}
    65 
    66 /*
    67 CStyleList* CT_TRTCOPY::CreatePopulatedStyleList()
    68 //
    69 	{
    70 	//
    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);
    79 	return list;
    80 	}
    81 */
    82 
    83 void CT_TRTCOPY::CreateAggregateTextL()
    84 //
    85 	{
    86 	TFileName theFileName=_L("z:\\test\\app-framework\\etext\\aggregat.pml");
    87 //	AggregateText=LoadIntoTextL(theFileName);
    88 	//
    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
    97 	TPictureHeader hdr1;
    98 	TPictureHeader hdr2;
    99 	hdr1.iPictureType=KUidXzePictureType;
   100 	hdr1.iPicture=pic1;
   101 	hdr2.iPictureType=KUidXzePictureType;
   102 	hdr2.iPicture=pic2;
   103 	ComponentText->InsertL(0,hdr1);
   104 	ComponentText->InsertL(ComponentText->DocumentLength(),hdr2);
   105 	CleanupStack::Pop(2);  // pic1,pic2
   106 	//
   107 	// Now do the insert.
   108 //	AggregateText->InsertL(10,ComponentText);
   109 //	delete AggregateText;
   110 	delete ComponentText;
   111 	delete GlobalParaFormatLayer;
   112 	delete GlobalCharFormatLayer;
   113 	}
   114 
   115 
   116 void CT_TRTCOPY::doMainL()
   117 	{
   118 	CreateAggregateTextL();
   119 	}
   120 
   121 
   122 void CT_TRTCOPY::setupCleanup()
   123 //
   124 // Initialise the cleanup stack.
   125 //
   126     {
   127 	TheTrapCleanup=CTrapCleanup::New();
   128 	test(TheTrapCleanup!=NULL);
   129 	TRAPD(r,\
   130 		{\
   131 		for (TInt i=KTestCleanupStack;i>0;i--)\
   132 			CleanupStack::PushL((TAny*)0);\
   133 		CleanupStack::Pop(KTestCleanupStack);\
   134 		});
   135 	test(r==KErrNone);
   136 	}
   137 
   138 CT_TRTCOPY::CT_TRTCOPY()
   139     {
   140     SetTestStepName(KTestStep_T_TRTCOPY);
   141     }
   142 
   143 TVerdict CT_TRTCOPY::doTestStepL()
   144     {
   145     SetTestStepResult(EFail);
   146 
   147     INFO_PRINTF1(_L("TRTCOPY"));
   148     setupCleanup();
   149     __UHEAP_MARK;
   150 
   151     INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-TTEXT-LEGACY-T_TRTCOPY-0001 RichText Copy Testing "));
   152     TRAPD(error1, doMainL());
   153 
   154     __UHEAP_MARKEND;
   155     delete TheTrapCleanup;
   156 
   157     if(error1 == KErrNone)
   158         {
   159         SetTestStepResult(EPass);
   160         }
   161 
   162     return TestStepResult();
   163     }