sl@0
|
1 |
// Copyright (c) 1996-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// LOADSTXT.CPP
|
sl@0
|
15 |
// used for timing text printing
|
sl@0
|
16 |
//
|
sl@0
|
17 |
//
|
sl@0
|
18 |
|
sl@0
|
19 |
#include "TTIME.H"
|
sl@0
|
20 |
|
sl@0
|
21 |
TInt LoadsOfText(TInt aOwningGroup)
|
sl@0
|
22 |
{
|
sl@0
|
23 |
RWsSession ws;
|
sl@0
|
24 |
ws.Connect();
|
sl@0
|
25 |
CWsScreenDevice *device=new(ELeave) CWsScreenDevice(ws);
|
sl@0
|
26 |
device->Construct();
|
sl@0
|
27 |
RWindowGroup group(ws);
|
sl@0
|
28 |
group.Construct(ENullWsHandle);
|
sl@0
|
29 |
group.SetOwningWindowGroup(aOwningGroup);
|
sl@0
|
30 |
TSize scrSize(device->SizeInPixels());
|
sl@0
|
31 |
//
|
sl@0
|
32 |
RWindow window(ws);
|
sl@0
|
33 |
window.Construct(group,ENullWsHandle);
|
sl@0
|
34 |
window.SetExtent(TPoint(), scrSize);
|
sl@0
|
35 |
window.Activate();
|
sl@0
|
36 |
//
|
sl@0
|
37 |
CWindowGc *gc;
|
sl@0
|
38 |
device->CreateContext(gc);
|
sl@0
|
39 |
window.BeginRedraw();
|
sl@0
|
40 |
gc->Activate(window);
|
sl@0
|
41 |
gc->Clear();
|
sl@0
|
42 |
window.EndRedraw();
|
sl@0
|
43 |
TFontSpec fspec(KTestFontTypefaceName,200);
|
sl@0
|
44 |
CFbsFont *font;
|
sl@0
|
45 |
User::LeaveIfError(device->GetNearestFontToDesignHeightInTwips((CFont *&)font, fspec));
|
sl@0
|
46 |
gc->UseFont(font);
|
sl@0
|
47 |
TBuf<100> loadsatext(_L("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890zyxwvutsrqponmlkjihgfedcba"));
|
sl@0
|
48 |
TInt ascent=font->AscentInPixels();
|
sl@0
|
49 |
TInt fheight=font->HeightInPixels();
|
sl@0
|
50 |
for(TInt nTimes=0;nTimes<10;nTimes++)
|
sl@0
|
51 |
{
|
sl@0
|
52 |
TPoint pos;
|
sl@0
|
53 |
// for(pos.iY=ascent;pos.iY<scrSize.iHeight;pos.iY+=font->HeightInPixels())
|
sl@0
|
54 |
// gc->DrawText(loadsatext,pos);
|
sl@0
|
55 |
for(pos.iY=0;pos.iY<scrSize.iHeight;pos.iY+=fheight)
|
sl@0
|
56 |
gc->DrawText(loadsatext,TRect(pos,TPoint(scrSize.iWidth,pos.iY+fheight)),ascent);
|
sl@0
|
57 |
gc->Clear();
|
sl@0
|
58 |
}
|
sl@0
|
59 |
gc->Deactivate();
|
sl@0
|
60 |
//
|
sl@0
|
61 |
ws.Flush();
|
sl@0
|
62 |
delete gc;
|
sl@0
|
63 |
device->ReleaseFont(font);
|
sl@0
|
64 |
window.Close();
|
sl@0
|
65 |
group.Close();
|
sl@0
|
66 |
delete device;
|
sl@0
|
67 |
ws.Close();
|
sl@0
|
68 |
return(KErrNone);
|
sl@0
|
69 |
}
|
sl@0
|
70 |
|
sl@0
|
71 |
GLDEF_D TTimeTestHeader LoadsaText={_S("Loads of text"),LoadsOfText};
|