1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/test/ttime/TTTEXT.CPP Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,71 @@
1.4 +// Copyright (c) 1996-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// LOADSTXT.CPP
1.18 +// used for timing text printing
1.19 +//
1.20 +//
1.21 +
1.22 +#include "TTIME.H"
1.23 +
1.24 +TInt LoadsOfText(TInt aOwningGroup)
1.25 + {
1.26 + RWsSession ws;
1.27 + ws.Connect();
1.28 + CWsScreenDevice *device=new(ELeave) CWsScreenDevice(ws);
1.29 + device->Construct();
1.30 + RWindowGroup group(ws);
1.31 + group.Construct(ENullWsHandle);
1.32 + group.SetOwningWindowGroup(aOwningGroup);
1.33 + TSize scrSize(device->SizeInPixels());
1.34 +//
1.35 + RWindow window(ws);
1.36 + window.Construct(group,ENullWsHandle);
1.37 + window.SetExtent(TPoint(), scrSize);
1.38 + window.Activate();
1.39 +//
1.40 + CWindowGc *gc;
1.41 + device->CreateContext(gc);
1.42 + window.BeginRedraw();
1.43 + gc->Activate(window);
1.44 + gc->Clear();
1.45 + window.EndRedraw();
1.46 + TFontSpec fspec(KTestFontTypefaceName,200);
1.47 + CFbsFont *font;
1.48 + User::LeaveIfError(device->GetNearestFontToDesignHeightInTwips((CFont *&)font, fspec));
1.49 + gc->UseFont(font);
1.50 + TBuf<100> loadsatext(_L("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890zyxwvutsrqponmlkjihgfedcba"));
1.51 + TInt ascent=font->AscentInPixels();
1.52 + TInt fheight=font->HeightInPixels();
1.53 + for(TInt nTimes=0;nTimes<10;nTimes++)
1.54 + {
1.55 + TPoint pos;
1.56 +// for(pos.iY=ascent;pos.iY<scrSize.iHeight;pos.iY+=font->HeightInPixels())
1.57 +// gc->DrawText(loadsatext,pos);
1.58 + for(pos.iY=0;pos.iY<scrSize.iHeight;pos.iY+=fheight)
1.59 + gc->DrawText(loadsatext,TRect(pos,TPoint(scrSize.iWidth,pos.iY+fheight)),ascent);
1.60 + gc->Clear();
1.61 + }
1.62 + gc->Deactivate();
1.63 +//
1.64 + ws.Flush();
1.65 + delete gc;
1.66 + device->ReleaseFont(font);
1.67 + window.Close();
1.68 + group.Close();
1.69 + delete device;
1.70 + ws.Close();
1.71 + return(KErrNone);
1.72 + }
1.73 +
1.74 +GLDEF_D TTimeTestHeader LoadsaText={_S("Loads of text"),LoadsOfText};