First public contribution.
1 // Copyright (c) 1996-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
15 // used for timing text printing
21 TInt LoadsOfText(TInt aOwningGroup)
25 CWsScreenDevice *device=new(ELeave) CWsScreenDevice(ws);
27 RWindowGroup group(ws);
28 group.Construct(ENullWsHandle);
29 group.SetOwningWindowGroup(aOwningGroup);
30 TSize scrSize(device->SizeInPixels());
33 window.Construct(group,ENullWsHandle);
34 window.SetExtent(TPoint(), scrSize);
38 device->CreateContext(gc);
43 TFontSpec fspec(KTestFontTypefaceName,200);
45 User::LeaveIfError(device->GetNearestFontToDesignHeightInTwips((CFont *&)font, fspec));
47 TBuf<100> loadsatext(_L("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890zyxwvutsrqponmlkjihgfedcba"));
48 TInt ascent=font->AscentInPixels();
49 TInt fheight=font->HeightInPixels();
50 for(TInt nTimes=0;nTimes<10;nTimes++)
53 // for(pos.iY=ascent;pos.iY<scrSize.iHeight;pos.iY+=font->HeightInPixels())
54 // gc->DrawText(loadsatext,pos);
55 for(pos.iY=0;pos.iY<scrSize.iHeight;pos.iY+=fheight)
56 gc->DrawText(loadsatext,TRect(pos,TPoint(scrSize.iWidth,pos.iY+fheight)),ascent);
63 device->ReleaseFont(font);
71 GLDEF_D TTimeTestHeader LoadsaText={_S("Loads of text"),LoadsOfText};