sl@0
|
1 |
// Copyright (c) 1995-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 |
// Functions to act as bench marks for various window server features
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include "TTIME.H"
|
sl@0
|
19 |
|
sl@0
|
20 |
void SetUp(RWindowTreeNode &aParent, RBlankWindow &aBlank, const TPoint &aPos, const TSize &aSize, TInt aColor)
|
sl@0
|
21 |
{
|
sl@0
|
22 |
aBlank.Construct(aParent,ENullWsHandle);
|
sl@0
|
23 |
aBlank.SetColor(TRgb::Gray256(aColor));
|
sl@0
|
24 |
aBlank.SetExtent(aPos, aSize);
|
sl@0
|
25 |
aBlank.SetShadowHeight(1);
|
sl@0
|
26 |
aBlank.Activate();
|
sl@0
|
27 |
}
|
sl@0
|
28 |
|
sl@0
|
29 |
void doMovingWindowTest(TInt aMode, TInt aOwningGroup)
|
sl@0
|
30 |
{
|
sl@0
|
31 |
RWsSession ws;
|
sl@0
|
32 |
ws.Connect();
|
sl@0
|
33 |
CWsScreenDevice *device=new(ELeave) CWsScreenDevice(ws);
|
sl@0
|
34 |
device->Construct();
|
sl@0
|
35 |
TPoint pos(10,10);
|
sl@0
|
36 |
TSize size(100,100);
|
sl@0
|
37 |
TSize scrSize(device->SizeInPixels());
|
sl@0
|
38 |
RBlankWindow blank(ws);
|
sl@0
|
39 |
RWindowGroup group(ws);
|
sl@0
|
40 |
group.Construct(ENullWsHandle);
|
sl@0
|
41 |
group.SetOwningWindowGroup(aOwningGroup);
|
sl@0
|
42 |
//
|
sl@0
|
43 |
RBlankWindow back(ws);
|
sl@0
|
44 |
SetUp(group, back, TPoint(0,0),TSize(640,240), 255);
|
sl@0
|
45 |
//
|
sl@0
|
46 |
RBlankWindow blank2(ws);
|
sl@0
|
47 |
RBlankWindow blank3(ws);
|
sl@0
|
48 |
RBlankWindow blank4(ws);
|
sl@0
|
49 |
RBlankWindow blank5(ws);
|
sl@0
|
50 |
if (aMode==1)
|
sl@0
|
51 |
{
|
sl@0
|
52 |
SetUp(group, blank2, TPoint(10,10),TSize(240,150), 128);
|
sl@0
|
53 |
SetUp(blank2, blank3, TPoint(10,10),TSize(220,130), 255);
|
sl@0
|
54 |
SetUp(group, blank4, TPoint(340,-10),TSize(200,70), 64);
|
sl@0
|
55 |
SetUp(group, blank5, TPoint(390,-10),TSize(30,250), 128);
|
sl@0
|
56 |
}
|
sl@0
|
57 |
//
|
sl@0
|
58 |
SetUp(group, blank,pos,size, 128);
|
sl@0
|
59 |
//
|
sl@0
|
60 |
for(pos.iX=10;pos.iX<(scrSize.iWidth-10-size.iWidth);pos.iX+=1)
|
sl@0
|
61 |
{
|
sl@0
|
62 |
blank.SetPosition(pos);
|
sl@0
|
63 |
// ws.Flush();
|
sl@0
|
64 |
}
|
sl@0
|
65 |
//
|
sl@0
|
66 |
if (aMode==1)
|
sl@0
|
67 |
{
|
sl@0
|
68 |
blank2.Close();
|
sl@0
|
69 |
blank3.Close();
|
sl@0
|
70 |
blank4.Close();
|
sl@0
|
71 |
blank5.Close();
|
sl@0
|
72 |
}
|
sl@0
|
73 |
blank.Close();
|
sl@0
|
74 |
back.Close();
|
sl@0
|
75 |
group.Close();
|
sl@0
|
76 |
delete device;
|
sl@0
|
77 |
ws.Close();
|
sl@0
|
78 |
}
|
sl@0
|
79 |
|
sl@0
|
80 |
TInt MovingWindowTest1Func(TInt aOwningGroup)
|
sl@0
|
81 |
{
|
sl@0
|
82 |
doMovingWindowTest(0,aOwningGroup);
|
sl@0
|
83 |
return(KErrNone);
|
sl@0
|
84 |
}
|
sl@0
|
85 |
|
sl@0
|
86 |
GLDEF_D TTimeTestHeader MovingWindowTest1={_S("Moving window test 1"),MovingWindowTest1Func};
|
sl@0
|
87 |
|
sl@0
|
88 |
TInt MovingWindowTest2Func(TInt aOwningGroup)
|
sl@0
|
89 |
{
|
sl@0
|
90 |
doMovingWindowTest(1,aOwningGroup);
|
sl@0
|
91 |
return(KErrNone);
|
sl@0
|
92 |
}
|
sl@0
|
93 |
|
sl@0
|
94 |
GLDEF_D TTimeTestHeader MovingWindowTest2={_S("Moving window test 2"),MovingWindowTest2Func};
|
sl@0
|
95 |
|
sl@0
|
96 |
TInt CreateAndDestroy(TInt aOwningGroup)
|
sl@0
|
97 |
{
|
sl@0
|
98 |
RWsSession ws;
|
sl@0
|
99 |
ws.Connect();
|
sl@0
|
100 |
CWsScreenDevice *device=new(ELeave) CWsScreenDevice(ws);
|
sl@0
|
101 |
device->Construct();
|
sl@0
|
102 |
RWindowGroup group(ws);
|
sl@0
|
103 |
group.Construct(ENullWsHandle);
|
sl@0
|
104 |
group.SetOwningWindowGroup(aOwningGroup);
|
sl@0
|
105 |
//
|
sl@0
|
106 |
for (TInt count=0;count<100;count++)
|
sl@0
|
107 |
{
|
sl@0
|
108 |
RBlankWindow blank(ws);
|
sl@0
|
109 |
blank.Construct(group,ENullWsHandle);
|
sl@0
|
110 |
blank.SetExtent(TPoint(10,10), TSize(20,20));
|
sl@0
|
111 |
blank.Activate();
|
sl@0
|
112 |
blank.Close();
|
sl@0
|
113 |
}
|
sl@0
|
114 |
group.Close();
|
sl@0
|
115 |
delete device;
|
sl@0
|
116 |
ws.Close();
|
sl@0
|
117 |
return(KErrNone);
|
sl@0
|
118 |
}
|
sl@0
|
119 |
|
sl@0
|
120 |
GLDEF_D TTimeTestHeader WindowCreateDestroy={_S("Window create destroy"),CreateAndDestroy};
|
sl@0
|
121 |
|
sl@0
|
122 |
//
|
sl@0
|
123 |
|
sl@0
|
124 |
TInt WindowCreate2(TInt aOwningGroup)
|
sl@0
|
125 |
{
|
sl@0
|
126 |
enum {KNumWindows=20};
|
sl@0
|
127 |
RWsSession ws;
|
sl@0
|
128 |
ws.Connect();
|
sl@0
|
129 |
CWsScreenDevice *device=new(ELeave) CWsScreenDevice(ws);
|
sl@0
|
130 |
device->Construct();
|
sl@0
|
131 |
RWindowGroup group(ws);
|
sl@0
|
132 |
group.Construct(ENullWsHandle);
|
sl@0
|
133 |
group.SetOwningWindowGroup(aOwningGroup);
|
sl@0
|
134 |
RBlankWindow shield(ws);
|
sl@0
|
135 |
shield.Construct(group,ENullWsHandle);
|
sl@0
|
136 |
shield.Activate();
|
sl@0
|
137 |
CWindowGc *gc=new(ELeave) CWindowGc(device);
|
sl@0
|
138 |
User::LeaveIfError(gc->Construct());
|
sl@0
|
139 |
//
|
sl@0
|
140 |
for(TInt times=0;times<2;times++)
|
sl@0
|
141 |
{
|
sl@0
|
142 |
#if 1
|
sl@0
|
143 |
TSize size(200,100);
|
sl@0
|
144 |
RBlankWindow win[KNumWindows];
|
sl@0
|
145 |
TInt count;
|
sl@0
|
146 |
for (count=0;count<KNumWindows;count++)
|
sl@0
|
147 |
{
|
sl@0
|
148 |
win[count]=RBlankWindow(ws);
|
sl@0
|
149 |
win[count].Construct(group,ENullWsHandle);
|
sl@0
|
150 |
win[count].SetExtent(TPoint(count<<2,count<<3), size);
|
sl@0
|
151 |
win[count].SetShadowHeight(1);
|
sl@0
|
152 |
win[count].SetColor(TRgb::Gray4(count&3));
|
sl@0
|
153 |
win[count].Activate();
|
sl@0
|
154 |
}
|
sl@0
|
155 |
#else
|
sl@0
|
156 |
TSize size(400,200);
|
sl@0
|
157 |
RBackedUpWindow win[KNumWindows];
|
sl@0
|
158 |
TInt count;
|
sl@0
|
159 |
for (count=0;count<KNumWindows;count++)
|
sl@0
|
160 |
{
|
sl@0
|
161 |
win[count]=RBackedUpWindow(ws);
|
sl@0
|
162 |
win[count].Construct(group,EGray2,ENullWsHandle);
|
sl@0
|
163 |
win[count].SetExtent(TPoint(count<<2,count<<3), size);
|
sl@0
|
164 |
win[count].SetShadowHeight(1);
|
sl@0
|
165 |
gc->Activate(win[count]);
|
sl@0
|
166 |
gc->SetBrushColor(TRgb::Gray4(count&3));
|
sl@0
|
167 |
gc->Clear();
|
sl@0
|
168 |
gc->Deactivate();
|
sl@0
|
169 |
win[count].Activate();
|
sl@0
|
170 |
}
|
sl@0
|
171 |
#endif
|
sl@0
|
172 |
ws.Flush();
|
sl@0
|
173 |
for (count=0;count<KNumWindows;count++)
|
sl@0
|
174 |
{
|
sl@0
|
175 |
win[count].SetOrdinalPosition(0);
|
sl@0
|
176 |
ws.Flush();
|
sl@0
|
177 |
}
|
sl@0
|
178 |
for (count=0;count<KNumWindows;count++)
|
sl@0
|
179 |
{
|
sl@0
|
180 |
win[count].Close();
|
sl@0
|
181 |
ws.Flush();
|
sl@0
|
182 |
}
|
sl@0
|
183 |
}
|
sl@0
|
184 |
shield.Close();
|
sl@0
|
185 |
group.Close();
|
sl@0
|
186 |
delete device;
|
sl@0
|
187 |
ws.Close();
|
sl@0
|
188 |
return(KErrNone);
|
sl@0
|
189 |
}
|
sl@0
|
190 |
|
sl@0
|
191 |
GLDEF_D TTimeTestHeader StackedWindowCreate={_S("Stacked window creating"),WindowCreate2};
|
sl@0
|
192 |
|
sl@0
|
193 |
TInt BackedUpWindowCreateTest(TInt aOwningGroup)
|
sl@0
|
194 |
{
|
sl@0
|
195 |
RWsSession ws;
|
sl@0
|
196 |
ws.Connect();
|
sl@0
|
197 |
CWsScreenDevice *device=new(ELeave) CWsScreenDevice(ws);
|
sl@0
|
198 |
device->Construct();
|
sl@0
|
199 |
RWindowGroup group(ws);
|
sl@0
|
200 |
group.Construct(ENullWsHandle);
|
sl@0
|
201 |
group.SetOwningWindowGroup(aOwningGroup);
|
sl@0
|
202 |
RBlankWindow shield(ws);
|
sl@0
|
203 |
shield.Construct(group,ENullWsHandle);
|
sl@0
|
204 |
shield.Activate();
|
sl@0
|
205 |
CWindowGc *gc=new(ELeave) CWindowGc(device);
|
sl@0
|
206 |
User::LeaveIfError(gc->Construct());
|
sl@0
|
207 |
//
|
sl@0
|
208 |
RWindow win;
|
sl@0
|
209 |
TInt count;
|
sl@0
|
210 |
for (count=0;count<100;count++)
|
sl@0
|
211 |
{
|
sl@0
|
212 |
win=RWindow(ws);
|
sl@0
|
213 |
win.Construct(group,ENullWsHandle);
|
sl@0
|
214 |
win.EnableBackup();
|
sl@0
|
215 |
win.SetExtent(TPoint(10,10), TSize(200,100));
|
sl@0
|
216 |
win.Activate();
|
sl@0
|
217 |
ws.Flush();
|
sl@0
|
218 |
win.Close();
|
sl@0
|
219 |
}
|
sl@0
|
220 |
shield.Close();
|
sl@0
|
221 |
group.Close();
|
sl@0
|
222 |
delete device;
|
sl@0
|
223 |
ws.Close();
|
sl@0
|
224 |
return(KErrNone);
|
sl@0
|
225 |
}
|
sl@0
|
226 |
|
sl@0
|
227 |
GLDEF_D TTimeTestHeader BackedUpWindowCreate={_S("Backed up window creating"),BackedUpWindowCreateTest};
|
sl@0
|
228 |
|
sl@0
|
229 |
TInt BackedUpWindowMenuTest(TInt aOwningGroup)
|
sl@0
|
230 |
//
|
sl@0
|
231 |
// Test designed to emulate menus
|
sl@0
|
232 |
//
|
sl@0
|
233 |
{
|
sl@0
|
234 |
RWsSession ws;
|
sl@0
|
235 |
ws.Connect();
|
sl@0
|
236 |
CWsScreenDevice *device=new(ELeave) CWsScreenDevice(ws);
|
sl@0
|
237 |
device->Construct();
|
sl@0
|
238 |
RWindowGroup group(ws);
|
sl@0
|
239 |
group.Construct(ENullWsHandle);
|
sl@0
|
240 |
group.SetOwningWindowGroup(aOwningGroup);
|
sl@0
|
241 |
RBlankWindow shield(ws);
|
sl@0
|
242 |
shield.Construct(group,ENullWsHandle);
|
sl@0
|
243 |
shield.Activate();
|
sl@0
|
244 |
CWindowGc *gc=new(ELeave) CWindowGc(device);
|
sl@0
|
245 |
User::LeaveIfError(gc->Construct());
|
sl@0
|
246 |
//
|
sl@0
|
247 |
RWindow win;
|
sl@0
|
248 |
win=RWindow(ws);
|
sl@0
|
249 |
win.Construct(group,ENullWsHandle);
|
sl@0
|
250 |
win.EnableBackup();
|
sl@0
|
251 |
win.Activate();
|
sl@0
|
252 |
TInt count;
|
sl@0
|
253 |
TInt state=0;
|
sl@0
|
254 |
for (count=0;count<200;count++)
|
sl@0
|
255 |
{
|
sl@0
|
256 |
win.SetVisible(EFalse);
|
sl@0
|
257 |
if (state==0)
|
sl@0
|
258 |
{
|
sl@0
|
259 |
state=1;
|
sl@0
|
260 |
win.SetExtent(TPoint(10,10), TSize(200,160));
|
sl@0
|
261 |
}
|
sl@0
|
262 |
else
|
sl@0
|
263 |
{
|
sl@0
|
264 |
state=0;
|
sl@0
|
265 |
win.SetExtent(TPoint(100,10), TSize(150,200));
|
sl@0
|
266 |
}
|
sl@0
|
267 |
win.SetVisible(ETrue);
|
sl@0
|
268 |
win.BeginRedraw();
|
sl@0
|
269 |
gc->Activate(win);
|
sl@0
|
270 |
gc->SetBrushStyle(CGraphicsContext::ESolidBrush);
|
sl@0
|
271 |
gc->SetBrushColor(TRgb::Gray4((state+1)));
|
sl@0
|
272 |
gc->Clear();
|
sl@0
|
273 |
gc->Deactivate();
|
sl@0
|
274 |
win.EndRedraw();
|
sl@0
|
275 |
ws.Flush();
|
sl@0
|
276 |
}
|
sl@0
|
277 |
win.Close();
|
sl@0
|
278 |
shield.Close();
|
sl@0
|
279 |
group.Close();
|
sl@0
|
280 |
delete device;
|
sl@0
|
281 |
ws.Close();
|
sl@0
|
282 |
return(KErrNone);
|
sl@0
|
283 |
}
|
sl@0
|
284 |
|
sl@0
|
285 |
GLDEF_D TTimeTestHeader MenuEmulationCreate={_S("Menu emulation"),BackedUpWindowMenuTest};
|
sl@0
|
286 |
|
sl@0
|
287 |
TInt BackedUpWindowMenuTest2(TInt aOwningGroup)
|
sl@0
|
288 |
{
|
sl@0
|
289 |
CFbsBitmap *bitmaps[1000];
|
sl@0
|
290 |
TInt index;
|
sl@0
|
291 |
for(index=0;index<1000;index++)
|
sl@0
|
292 |
{
|
sl@0
|
293 |
bitmaps[index]=new(ELeave) CFbsBitmap();
|
sl@0
|
294 |
bitmaps[index]->Create(TSize(10,10),EGray4);
|
sl@0
|
295 |
}
|
sl@0
|
296 |
BackedUpWindowMenuTest(aOwningGroup);
|
sl@0
|
297 |
for(index=0;index<1000;index++)
|
sl@0
|
298 |
delete bitmaps[index];
|
sl@0
|
299 |
return(KErrNone);
|
sl@0
|
300 |
}
|
sl@0
|
301 |
|
sl@0
|
302 |
GLDEF_D TTimeTestHeader MenuEmulationCreate2={_S("Menu emulation 2"),BackedUpWindowMenuTest2};
|