First public contribution.
2 * Copyright (c) 1997-2009 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.
30 CTrapCleanup* cleanup=CTrapCleanup::New();
33 TSize consSize(KConsFullScreen, KConsFullScreen);
35 err = theConsole.Create();
36 err = theConsole.Control(_L("-Visibility"));
37 err = theConsole.Set(_L("The Epoc RichText Parser (c)"), consSize);
38 err = theConsole.Control(_L("Visibility Newline Max_win_size"));
42 CRichText* richTextDoc;
43 TRAPD(ret, myParser=CParser::NewL());
44 TRAP(ret, richTextDoc = myParser->ParseL(theConsole));
46 /* enable this bit for a pause before executing test code
48 theConsole.Write(_L("\n\nPress space to execute test code & parse back to PML\n"));
49 TConsoleKey keystroke;
50 while (keystroke.Code() != EKeySpace)
51 theConsole.Read(keystroke);
53 // *********** insert test code here ****************
54 TInt para=richTextDoc->CountParas();
55 TInt length=richTextDoc->DocumentLength();
56 CParaFormat* myformat;
57 TRAP(ret,myformat=CParaFormat::NewL());
58 TCharFormat charFormat; CPicture* picture; TPtrC view;
59 TRAP(ret,richTextDoc->SenseParaFormatL(length,myformat));
60 TRAP(ret,richTextDoc->SenseChars(0,view,charFormat,picture));
61 TRAP(ret,richTextDoc->SenseChars(10,view,charFormat,picture));
62 richTextDoc->Delete(4,6);
63 // TRAP(ret,richTextDoc->InsertL(richTextDoc->DocumentLength(),EParagraphDelimiter));
66 // make rich text reader & read rich text doc & parse back to PML
67 CRichTextReader* myRTReader;
68 CBufSeg* returnedPmlDoc;
69 TRAP(ret, myRTReader = CRichTextReader::NewL());
70 TRAP(ret, returnedPmlDoc = myRTReader->ConvertRichText(richTextDoc,theConsole));
74 TRAP(ret, myFileApp = CFileApp::NewL());
75 TInt errorLevel = myFileApp->SaveFile(returnedPmlDoc,myParser->iFileName);
77 theConsole.Write(_L("\n\nFile Saved"));
79 theConsole.Write(_L("\n\nFile Save unsuccessful!!"));
82 theConsole.Write(_L("\n\nPress space to quit\n"));
83 TConsoleKey keystroke;
84 while (keystroke.Code() != EKeySpace)
85 theConsole.Read(keystroke);
88 Adt::Destroy(myFileApp);
89 Adt::Destroy(myRTReader);
90 Adt::Destroy(myParser);
92 Adt::Destroy(cleanup);