1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/textandloc/textrendering/texthandling/tpml/T_PML1.CPP Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,100 @@
1.4 +/*
1.5 +* Copyright (c) 1997-2009 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 <e32test.h>
1.23 +#include <richtext.h>
1.24 +#include <t_pmlpar.h>
1.25 +#include <t_rtpar.h>
1.26 +
1.27 +
1.28 +
1.29 +
1.30 +TInt E32Main()
1.31 + {
1.32 + __UHEAP_MARK;
1.33 + CTrapCleanup* cleanup=CTrapCleanup::New();
1.34 + // create console
1.35 + RConsole theConsole;
1.36 + TSize consSize(KConsFullScreen, KConsFullScreen);
1.37 + TInt err;
1.38 + err = theConsole.Create();
1.39 + err = theConsole.Control(_L("-Visibility"));
1.40 + err = theConsole.Set(_L("The Epoc RichText Parser (c)"), consSize);
1.41 + err = theConsole.Control(_L("Visibility Newline Max_win_size"));
1.42 +
1.43 + // Parse PML
1.44 + CParser* myParser;
1.45 + CRichText* richTextDoc;
1.46 + TRAPD(ret, myParser=CParser::NewL());
1.47 + TRAP(ret, richTextDoc = myParser->ParseL(theConsole));
1.48 +
1.49 +/* enable this bit for a pause before executing test code
1.50 + // wait for keypress
1.51 + theConsole.Write(_L("\n\nPress space to execute test code & parse back to PML\n"));
1.52 + TConsoleKey keystroke;
1.53 + while (keystroke.Code() != EKeySpace)
1.54 + theConsole.Read(keystroke);
1.55 +
1.56 +// *********** insert test code here ****************
1.57 + TInt para=richTextDoc->CountParas();
1.58 + TInt length=richTextDoc->DocumentLength();
1.59 + CParaFormat* myformat;
1.60 + TRAP(ret,myformat=CParaFormat::NewL());
1.61 + TCharFormat charFormat; CPicture* picture; TPtrC view;
1.62 + TRAP(ret,richTextDoc->SenseParaFormatL(length,myformat));
1.63 + TRAP(ret,richTextDoc->SenseChars(0,view,charFormat,picture));
1.64 + TRAP(ret,richTextDoc->SenseChars(10,view,charFormat,picture));
1.65 + richTextDoc->Delete(4,6);
1.66 +// TRAP(ret,richTextDoc->InsertL(richTextDoc->DocumentLength(),EParagraphDelimiter));
1.67 +*/
1.68 +
1.69 + // make rich text reader & read rich text doc & parse back to PML
1.70 + CRichTextReader* myRTReader;
1.71 + CBufSeg* returnedPmlDoc;
1.72 + TRAP(ret, myRTReader = CRichTextReader::NewL());
1.73 + TRAP(ret, returnedPmlDoc = myRTReader->ConvertRichText(richTextDoc,theConsole));
1.74 +
1.75 + // save to disc
1.76 + CFileApp* myFileApp;
1.77 + TRAP(ret, myFileApp = CFileApp::NewL());
1.78 + TInt errorLevel = myFileApp->SaveFile(returnedPmlDoc,myParser->iFileName);
1.79 + if (errorLevel == 0)
1.80 + theConsole.Write(_L("\n\nFile Saved"));
1.81 + else
1.82 + theConsole.Write(_L("\n\nFile Save unsuccessful!!"));
1.83 +
1.84 + // wait for keypress
1.85 + theConsole.Write(_L("\n\nPress space to quit\n"));
1.86 + TConsoleKey keystroke;
1.87 + while (keystroke.Code() != EKeySpace)
1.88 + theConsole.Read(keystroke);
1.89 +
1.90 + // finish up
1.91 + Adt::Destroy(myFileApp);
1.92 + Adt::Destroy(myRTReader);
1.93 + Adt::Destroy(myParser);
1.94 + theConsole.Destroy();
1.95 + Adt::Destroy(cleanup);
1.96 + __UHEAP_MARKEND;
1.97 + return 0;
1.98 + }
1.99 +
1.100 +
1.101 +
1.102 +
1.103 +