sl@0: // Copyright (c) 1995-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: // Functions to act as bench marks for various window server features sl@0: // sl@0: // sl@0: sl@0: #include "TTIME.H" sl@0: sl@0: void SetUp(RWindowTreeNode &aParent, RBlankWindow &aBlank, const TPoint &aPos, const TSize &aSize, TInt aColor) sl@0: { sl@0: aBlank.Construct(aParent,ENullWsHandle); sl@0: aBlank.SetColor(TRgb::Gray256(aColor)); sl@0: aBlank.SetExtent(aPos, aSize); sl@0: aBlank.SetShadowHeight(1); sl@0: aBlank.Activate(); sl@0: } sl@0: sl@0: void doMovingWindowTest(TInt aMode, 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: TPoint pos(10,10); sl@0: TSize size(100,100); sl@0: TSize scrSize(device->SizeInPixels()); sl@0: RBlankWindow blank(ws); sl@0: RWindowGroup group(ws); sl@0: group.Construct(ENullWsHandle); sl@0: group.SetOwningWindowGroup(aOwningGroup); sl@0: // sl@0: RBlankWindow back(ws); sl@0: SetUp(group, back, TPoint(0,0),TSize(640,240), 255); sl@0: // sl@0: RBlankWindow blank2(ws); sl@0: RBlankWindow blank3(ws); sl@0: RBlankWindow blank4(ws); sl@0: RBlankWindow blank5(ws); sl@0: if (aMode==1) sl@0: { sl@0: SetUp(group, blank2, TPoint(10,10),TSize(240,150), 128); sl@0: SetUp(blank2, blank3, TPoint(10,10),TSize(220,130), 255); sl@0: SetUp(group, blank4, TPoint(340,-10),TSize(200,70), 64); sl@0: SetUp(group, blank5, TPoint(390,-10),TSize(30,250), 128); sl@0: } sl@0: // sl@0: SetUp(group, blank,pos,size, 128); sl@0: // sl@0: for(pos.iX=10;pos.iX<(scrSize.iWidth-10-size.iWidth);pos.iX+=1) sl@0: { sl@0: blank.SetPosition(pos); sl@0: // ws.Flush(); sl@0: } sl@0: // sl@0: if (aMode==1) sl@0: { sl@0: blank2.Close(); sl@0: blank3.Close(); sl@0: blank4.Close(); sl@0: blank5.Close(); sl@0: } sl@0: blank.Close(); sl@0: back.Close(); sl@0: group.Close(); sl@0: delete device; sl@0: ws.Close(); sl@0: } sl@0: sl@0: TInt MovingWindowTest1Func(TInt aOwningGroup) sl@0: { sl@0: doMovingWindowTest(0,aOwningGroup); sl@0: return(KErrNone); sl@0: } sl@0: sl@0: GLDEF_D TTimeTestHeader MovingWindowTest1={_S("Moving window test 1"),MovingWindowTest1Func}; sl@0: sl@0: TInt MovingWindowTest2Func(TInt aOwningGroup) sl@0: { sl@0: doMovingWindowTest(1,aOwningGroup); sl@0: return(KErrNone); sl@0: } sl@0: sl@0: GLDEF_D TTimeTestHeader MovingWindowTest2={_S("Moving window test 2"),MovingWindowTest2Func}; sl@0: sl@0: TInt CreateAndDestroy(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: // sl@0: for (TInt count=0;count<100;count++) sl@0: { sl@0: RBlankWindow blank(ws); sl@0: blank.Construct(group,ENullWsHandle); sl@0: blank.SetExtent(TPoint(10,10), TSize(20,20)); sl@0: blank.Activate(); sl@0: blank.Close(); sl@0: } 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 WindowCreateDestroy={_S("Window create destroy"),CreateAndDestroy}; sl@0: sl@0: // sl@0: sl@0: TInt WindowCreate2(TInt aOwningGroup) sl@0: { sl@0: enum {KNumWindows=20}; 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: RBlankWindow shield(ws); sl@0: shield.Construct(group,ENullWsHandle); sl@0: shield.Activate(); sl@0: CWindowGc *gc=new(ELeave) CWindowGc(device); sl@0: User::LeaveIfError(gc->Construct()); sl@0: // sl@0: for(TInt times=0;times<2;times++) sl@0: { sl@0: #if 1 sl@0: TSize size(200,100); sl@0: RBlankWindow win[KNumWindows]; sl@0: TInt count; sl@0: for (count=0;countActivate(win[count]); sl@0: gc->SetBrushColor(TRgb::Gray4(count&3)); sl@0: gc->Clear(); sl@0: gc->Deactivate(); sl@0: win[count].Activate(); sl@0: } sl@0: #endif sl@0: ws.Flush(); sl@0: for (count=0;countConstruct(); sl@0: RWindowGroup group(ws); sl@0: group.Construct(ENullWsHandle); sl@0: group.SetOwningWindowGroup(aOwningGroup); sl@0: RBlankWindow shield(ws); sl@0: shield.Construct(group,ENullWsHandle); sl@0: shield.Activate(); sl@0: CWindowGc *gc=new(ELeave) CWindowGc(device); sl@0: User::LeaveIfError(gc->Construct()); sl@0: // sl@0: RWindow win; sl@0: TInt count; sl@0: for (count=0;count<100;count++) sl@0: { sl@0: win=RWindow(ws); sl@0: win.Construct(group,ENullWsHandle); sl@0: win.EnableBackup(); sl@0: win.SetExtent(TPoint(10,10), TSize(200,100)); sl@0: win.Activate(); sl@0: ws.Flush(); sl@0: win.Close(); sl@0: } sl@0: shield.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 BackedUpWindowCreate={_S("Backed up window creating"),BackedUpWindowCreateTest}; sl@0: sl@0: TInt BackedUpWindowMenuTest(TInt aOwningGroup) sl@0: // sl@0: // Test designed to emulate menus sl@0: // 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: RBlankWindow shield(ws); sl@0: shield.Construct(group,ENullWsHandle); sl@0: shield.Activate(); sl@0: CWindowGc *gc=new(ELeave) CWindowGc(device); sl@0: User::LeaveIfError(gc->Construct()); sl@0: // sl@0: RWindow win; sl@0: win=RWindow(ws); sl@0: win.Construct(group,ENullWsHandle); sl@0: win.EnableBackup(); sl@0: win.Activate(); sl@0: TInt count; sl@0: TInt state=0; sl@0: for (count=0;count<200;count++) sl@0: { sl@0: win.SetVisible(EFalse); sl@0: if (state==0) sl@0: { sl@0: state=1; sl@0: win.SetExtent(TPoint(10,10), TSize(200,160)); sl@0: } sl@0: else sl@0: { sl@0: state=0; sl@0: win.SetExtent(TPoint(100,10), TSize(150,200)); sl@0: } sl@0: win.SetVisible(ETrue); sl@0: win.BeginRedraw(); sl@0: gc->Activate(win); sl@0: gc->SetBrushStyle(CGraphicsContext::ESolidBrush); sl@0: gc->SetBrushColor(TRgb::Gray4((state+1))); sl@0: gc->Clear(); sl@0: gc->Deactivate(); sl@0: win.EndRedraw(); sl@0: ws.Flush(); sl@0: } sl@0: win.Close(); sl@0: shield.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 MenuEmulationCreate={_S("Menu emulation"),BackedUpWindowMenuTest}; sl@0: sl@0: TInt BackedUpWindowMenuTest2(TInt aOwningGroup) sl@0: { sl@0: CFbsBitmap *bitmaps[1000]; sl@0: TInt index; sl@0: for(index=0;index<1000;index++) sl@0: { sl@0: bitmaps[index]=new(ELeave) CFbsBitmap(); sl@0: bitmaps[index]->Create(TSize(10,10),EGray4); sl@0: } sl@0: BackedUpWindowMenuTest(aOwningGroup); sl@0: for(index=0;index<1000;index++) sl@0: delete bitmaps[index]; sl@0: return(KErrNone); sl@0: } sl@0: sl@0: GLDEF_D TTimeTestHeader MenuEmulationCreate2={_S("Menu emulation 2"),BackedUpWindowMenuTest2};