sl@0: // Copyright (c) 1996-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // LOADSTXT.CPP sl@0: // used for timing text printing sl@0: // sl@0: // sl@0: sl@0: #include "TTIME.H" sl@0: sl@0: TInt LoadsOfText(TInt aOwningGroup) sl@0: { sl@0: RWsSession ws; sl@0: ws.Connect(); sl@0: CWsScreenDevice *device=new(ELeave) CWsScreenDevice(ws); sl@0: device->Construct(); sl@0: RWindowGroup group(ws); sl@0: group.Construct(ENullWsHandle); sl@0: group.SetOwningWindowGroup(aOwningGroup); sl@0: TSize scrSize(device->SizeInPixels()); sl@0: // sl@0: RWindow window(ws); sl@0: window.Construct(group,ENullWsHandle); sl@0: window.SetExtent(TPoint(), scrSize); sl@0: window.Activate(); sl@0: // sl@0: CWindowGc *gc; sl@0: device->CreateContext(gc); sl@0: window.BeginRedraw(); sl@0: gc->Activate(window); sl@0: gc->Clear(); sl@0: window.EndRedraw(); sl@0: TFontSpec fspec(KTestFontTypefaceName,200); sl@0: CFbsFont *font; sl@0: User::LeaveIfError(device->GetNearestFontToDesignHeightInTwips((CFont *&)font, fspec)); sl@0: gc->UseFont(font); sl@0: TBuf<100> loadsatext(_L("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890zyxwvutsrqponmlkjihgfedcba")); sl@0: TInt ascent=font->AscentInPixels(); sl@0: TInt fheight=font->HeightInPixels(); sl@0: for(TInt nTimes=0;nTimes<10;nTimes++) sl@0: { sl@0: TPoint pos; sl@0: // for(pos.iY=ascent;pos.iYHeightInPixels()) sl@0: // gc->DrawText(loadsatext,pos); sl@0: for(pos.iY=0;pos.iYDrawText(loadsatext,TRect(pos,TPoint(scrSize.iWidth,pos.iY+fheight)),ascent); sl@0: gc->Clear(); sl@0: } sl@0: gc->Deactivate(); sl@0: // sl@0: ws.Flush(); sl@0: delete gc; sl@0: device->ReleaseFont(font); sl@0: window.Close(); sl@0: group.Close(); sl@0: delete device; sl@0: ws.Close(); sl@0: return(KErrNone); sl@0: } sl@0: sl@0: GLDEF_D TTimeTestHeader LoadsaText={_S("Loads of text"),LoadsOfText};