1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/test/ttime/TTMOVWIN.CPP Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,302 @@
1.4 +// Copyright (c) 1995-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 +// Functions to act as bench marks for various window server features
1.18 +//
1.19 +//
1.20 +
1.21 +#include "TTIME.H"
1.22 +
1.23 +void SetUp(RWindowTreeNode &aParent, RBlankWindow &aBlank, const TPoint &aPos, const TSize &aSize, TInt aColor)
1.24 + {
1.25 + aBlank.Construct(aParent,ENullWsHandle);
1.26 + aBlank.SetColor(TRgb::Gray256(aColor));
1.27 + aBlank.SetExtent(aPos, aSize);
1.28 + aBlank.SetShadowHeight(1);
1.29 + aBlank.Activate();
1.30 + }
1.31 +
1.32 +void doMovingWindowTest(TInt aMode, TInt aOwningGroup)
1.33 + {
1.34 + RWsSession ws;
1.35 + ws.Connect();
1.36 + CWsScreenDevice *device=new(ELeave) CWsScreenDevice(ws);
1.37 + device->Construct();
1.38 + TPoint pos(10,10);
1.39 + TSize size(100,100);
1.40 + TSize scrSize(device->SizeInPixels());
1.41 + RBlankWindow blank(ws);
1.42 + RWindowGroup group(ws);
1.43 + group.Construct(ENullWsHandle);
1.44 + group.SetOwningWindowGroup(aOwningGroup);
1.45 +//
1.46 + RBlankWindow back(ws);
1.47 + SetUp(group, back, TPoint(0,0),TSize(640,240), 255);
1.48 +//
1.49 + RBlankWindow blank2(ws);
1.50 + RBlankWindow blank3(ws);
1.51 + RBlankWindow blank4(ws);
1.52 + RBlankWindow blank5(ws);
1.53 + if (aMode==1)
1.54 + {
1.55 + SetUp(group, blank2, TPoint(10,10),TSize(240,150), 128);
1.56 + SetUp(blank2, blank3, TPoint(10,10),TSize(220,130), 255);
1.57 + SetUp(group, blank4, TPoint(340,-10),TSize(200,70), 64);
1.58 + SetUp(group, blank5, TPoint(390,-10),TSize(30,250), 128);
1.59 + }
1.60 +//
1.61 + SetUp(group, blank,pos,size, 128);
1.62 +//
1.63 + for(pos.iX=10;pos.iX<(scrSize.iWidth-10-size.iWidth);pos.iX+=1)
1.64 + {
1.65 + blank.SetPosition(pos);
1.66 +// ws.Flush();
1.67 + }
1.68 +//
1.69 + if (aMode==1)
1.70 + {
1.71 + blank2.Close();
1.72 + blank3.Close();
1.73 + blank4.Close();
1.74 + blank5.Close();
1.75 + }
1.76 + blank.Close();
1.77 + back.Close();
1.78 + group.Close();
1.79 + delete device;
1.80 + ws.Close();
1.81 + }
1.82 +
1.83 +TInt MovingWindowTest1Func(TInt aOwningGroup)
1.84 + {
1.85 + doMovingWindowTest(0,aOwningGroup);
1.86 + return(KErrNone);
1.87 + }
1.88 +
1.89 +GLDEF_D TTimeTestHeader MovingWindowTest1={_S("Moving window test 1"),MovingWindowTest1Func};
1.90 +
1.91 +TInt MovingWindowTest2Func(TInt aOwningGroup)
1.92 + {
1.93 + doMovingWindowTest(1,aOwningGroup);
1.94 + return(KErrNone);
1.95 + }
1.96 +
1.97 +GLDEF_D TTimeTestHeader MovingWindowTest2={_S("Moving window test 2"),MovingWindowTest2Func};
1.98 +
1.99 +TInt CreateAndDestroy(TInt aOwningGroup)
1.100 + {
1.101 + RWsSession ws;
1.102 + ws.Connect();
1.103 + CWsScreenDevice *device=new(ELeave) CWsScreenDevice(ws);
1.104 + device->Construct();
1.105 + RWindowGroup group(ws);
1.106 + group.Construct(ENullWsHandle);
1.107 + group.SetOwningWindowGroup(aOwningGroup);
1.108 +//
1.109 + for (TInt count=0;count<100;count++)
1.110 + {
1.111 + RBlankWindow blank(ws);
1.112 + blank.Construct(group,ENullWsHandle);
1.113 + blank.SetExtent(TPoint(10,10), TSize(20,20));
1.114 + blank.Activate();
1.115 + blank.Close();
1.116 + }
1.117 + group.Close();
1.118 + delete device;
1.119 + ws.Close();
1.120 + return(KErrNone);
1.121 + }
1.122 +
1.123 +GLDEF_D TTimeTestHeader WindowCreateDestroy={_S("Window create destroy"),CreateAndDestroy};
1.124 +
1.125 +//
1.126 +
1.127 +TInt WindowCreate2(TInt aOwningGroup)
1.128 + {
1.129 +enum {KNumWindows=20};
1.130 + RWsSession ws;
1.131 + ws.Connect();
1.132 + CWsScreenDevice *device=new(ELeave) CWsScreenDevice(ws);
1.133 + device->Construct();
1.134 + RWindowGroup group(ws);
1.135 + group.Construct(ENullWsHandle);
1.136 + group.SetOwningWindowGroup(aOwningGroup);
1.137 + RBlankWindow shield(ws);
1.138 + shield.Construct(group,ENullWsHandle);
1.139 + shield.Activate();
1.140 + CWindowGc *gc=new(ELeave) CWindowGc(device);
1.141 + User::LeaveIfError(gc->Construct());
1.142 +//
1.143 + for(TInt times=0;times<2;times++)
1.144 + {
1.145 +#if 1
1.146 + TSize size(200,100);
1.147 + RBlankWindow win[KNumWindows];
1.148 + TInt count;
1.149 + for (count=0;count<KNumWindows;count++)
1.150 + {
1.151 + win[count]=RBlankWindow(ws);
1.152 + win[count].Construct(group,ENullWsHandle);
1.153 + win[count].SetExtent(TPoint(count<<2,count<<3), size);
1.154 + win[count].SetShadowHeight(1);
1.155 + win[count].SetColor(TRgb::Gray4(count&3));
1.156 + win[count].Activate();
1.157 + }
1.158 +#else
1.159 + TSize size(400,200);
1.160 + RBackedUpWindow win[KNumWindows];
1.161 + TInt count;
1.162 + for (count=0;count<KNumWindows;count++)
1.163 + {
1.164 + win[count]=RBackedUpWindow(ws);
1.165 + win[count].Construct(group,EGray2,ENullWsHandle);
1.166 + win[count].SetExtent(TPoint(count<<2,count<<3), size);
1.167 + win[count].SetShadowHeight(1);
1.168 + gc->Activate(win[count]);
1.169 + gc->SetBrushColor(TRgb::Gray4(count&3));
1.170 + gc->Clear();
1.171 + gc->Deactivate();
1.172 + win[count].Activate();
1.173 + }
1.174 +#endif
1.175 + ws.Flush();
1.176 + for (count=0;count<KNumWindows;count++)
1.177 + {
1.178 + win[count].SetOrdinalPosition(0);
1.179 + ws.Flush();
1.180 + }
1.181 + for (count=0;count<KNumWindows;count++)
1.182 + {
1.183 + win[count].Close();
1.184 + ws.Flush();
1.185 + }
1.186 + }
1.187 + shield.Close();
1.188 + group.Close();
1.189 + delete device;
1.190 + ws.Close();
1.191 + return(KErrNone);
1.192 + }
1.193 +
1.194 +GLDEF_D TTimeTestHeader StackedWindowCreate={_S("Stacked window creating"),WindowCreate2};
1.195 +
1.196 +TInt BackedUpWindowCreateTest(TInt aOwningGroup)
1.197 + {
1.198 + RWsSession ws;
1.199 + ws.Connect();
1.200 + CWsScreenDevice *device=new(ELeave) CWsScreenDevice(ws);
1.201 + device->Construct();
1.202 + RWindowGroup group(ws);
1.203 + group.Construct(ENullWsHandle);
1.204 + group.SetOwningWindowGroup(aOwningGroup);
1.205 + RBlankWindow shield(ws);
1.206 + shield.Construct(group,ENullWsHandle);
1.207 + shield.Activate();
1.208 + CWindowGc *gc=new(ELeave) CWindowGc(device);
1.209 + User::LeaveIfError(gc->Construct());
1.210 +//
1.211 + RWindow win;
1.212 + TInt count;
1.213 + for (count=0;count<100;count++)
1.214 + {
1.215 + win=RWindow(ws);
1.216 + win.Construct(group,ENullWsHandle);
1.217 + win.EnableBackup();
1.218 + win.SetExtent(TPoint(10,10), TSize(200,100));
1.219 + win.Activate();
1.220 + ws.Flush();
1.221 + win.Close();
1.222 + }
1.223 + shield.Close();
1.224 + group.Close();
1.225 + delete device;
1.226 + ws.Close();
1.227 + return(KErrNone);
1.228 + }
1.229 +
1.230 +GLDEF_D TTimeTestHeader BackedUpWindowCreate={_S("Backed up window creating"),BackedUpWindowCreateTest};
1.231 +
1.232 +TInt BackedUpWindowMenuTest(TInt aOwningGroup)
1.233 +//
1.234 +// Test designed to emulate menus
1.235 +//
1.236 + {
1.237 + RWsSession ws;
1.238 + ws.Connect();
1.239 + CWsScreenDevice *device=new(ELeave) CWsScreenDevice(ws);
1.240 + device->Construct();
1.241 + RWindowGroup group(ws);
1.242 + group.Construct(ENullWsHandle);
1.243 + group.SetOwningWindowGroup(aOwningGroup);
1.244 + RBlankWindow shield(ws);
1.245 + shield.Construct(group,ENullWsHandle);
1.246 + shield.Activate();
1.247 + CWindowGc *gc=new(ELeave) CWindowGc(device);
1.248 + User::LeaveIfError(gc->Construct());
1.249 +//
1.250 + RWindow win;
1.251 + win=RWindow(ws);
1.252 + win.Construct(group,ENullWsHandle);
1.253 + win.EnableBackup();
1.254 + win.Activate();
1.255 + TInt count;
1.256 + TInt state=0;
1.257 + for (count=0;count<200;count++)
1.258 + {
1.259 + win.SetVisible(EFalse);
1.260 + if (state==0)
1.261 + {
1.262 + state=1;
1.263 + win.SetExtent(TPoint(10,10), TSize(200,160));
1.264 + }
1.265 + else
1.266 + {
1.267 + state=0;
1.268 + win.SetExtent(TPoint(100,10), TSize(150,200));
1.269 + }
1.270 + win.SetVisible(ETrue);
1.271 + win.BeginRedraw();
1.272 + gc->Activate(win);
1.273 + gc->SetBrushStyle(CGraphicsContext::ESolidBrush);
1.274 + gc->SetBrushColor(TRgb::Gray4((state+1)));
1.275 + gc->Clear();
1.276 + gc->Deactivate();
1.277 + win.EndRedraw();
1.278 + ws.Flush();
1.279 + }
1.280 + win.Close();
1.281 + shield.Close();
1.282 + group.Close();
1.283 + delete device;
1.284 + ws.Close();
1.285 + return(KErrNone);
1.286 + }
1.287 +
1.288 +GLDEF_D TTimeTestHeader MenuEmulationCreate={_S("Menu emulation"),BackedUpWindowMenuTest};
1.289 +
1.290 +TInt BackedUpWindowMenuTest2(TInt aOwningGroup)
1.291 + {
1.292 + CFbsBitmap *bitmaps[1000];
1.293 + TInt index;
1.294 + for(index=0;index<1000;index++)
1.295 + {
1.296 + bitmaps[index]=new(ELeave) CFbsBitmap();
1.297 + bitmaps[index]->Create(TSize(10,10),EGray4);
1.298 + }
1.299 + BackedUpWindowMenuTest(aOwningGroup);
1.300 + for(index=0;index<1000;index++)
1.301 + delete bitmaps[index];
1.302 + return(KErrNone);
1.303 + }
1.304 +
1.305 +GLDEF_D TTimeTestHeader MenuEmulationCreate2={_S("Menu emulation 2"),BackedUpWindowMenuTest2};