Update contrib.
1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
26 #include "coordinatewin.h"
27 #include "backedupwin.h"
28 #include "enormouswin.h"
29 #include "spritewin.h"
30 #include "animatedwin.h"
32 #include "test_step_logger.h"
33 #include "test_step_comparison.h"
34 #include "stresslet.h"
35 #include "comparison.h"
37 //static configuration data, definitions and default assignments
38 TInt CCompWin::sBackgroundAlpha = 0;
40 //configuration parameter names
41 _LIT(KT_WservStressParamBackgroundAlpha, "background_alpha");
45 BASE COMPARISON WINDOW
47 CCompWin* CCompWin::NewLC(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc)
49 typedef CCompWin* (*TPtrNewLC)(RWsSession&, RWindowGroup*, CCompWin*, CWindowGc&);
50 TPtrNewLC winFactory[8];
51 TInt numEnabledWindows = 0;
53 //setup an array of factory functions, one for each enabled window type
54 if (CAnimatedWin::IsEnabled())
56 winFactory[numEnabledWindows++] = TPtrNewLC(CAnimatedWin::NewLC);
58 if (CCoordinateWin::IsEnabled())
60 winFactory[numEnabledWindows++] = TPtrNewLC(CCoordinateWin::NewLC);
62 if (CBackedupWin::IsEnabled())
64 winFactory[numEnabledWindows++] = TPtrNewLC(CBackedupWin::NewLC);
66 if (CEnormousWin::IsEnabled())
68 winFactory[numEnabledWindows++] = TPtrNewLC(CEnormousWin::NewLC);
70 if (CCrpWin::IsEnabled())
72 winFactory[numEnabledWindows++] = TPtrNewLC(CCrpWin::NewLC);
74 if (CEdgedWin::IsEnabled())
76 winFactory[numEnabledWindows++] = TPtrNewLC(CEdgedWin::NewLC);
78 if (CSpritedWin::IsEnabled())
80 winFactory[numEnabledWindows++] = TPtrNewLC(CSpritedWin::NewLC);
83 if (numEnabledWindows == 0)
85 aWs.LogMessage(_L("Error: No window-type is enabled(see ini file)"));
86 User::Leave(KErrNotFound);
89 TInt winType = TRnd::rnd(numEnabledWindows);
90 CCompWin* self = winFactory[ winType ](aWs, aGroup, aParent, aGc);
94 void CCompWin::LoadConfiguration(const MTestStepConfigurationContext* aContext)
96 aContext->GetInt(KT_WservStressParamBackgroundAlpha, sBackgroundAlpha);
100 Get a random TDrawMode value.
102 CGraphicsContext::TDrawMode CCompWin::GetRandomDrawMode()
104 static CGraphicsContext::TDrawMode modes[] =
106 CGraphicsContext::EDrawModeAND, CGraphicsContext::EDrawModeNOTAND,
107 CGraphicsContext::EDrawModePEN, CGraphicsContext::EDrawModeANDNOT,
108 CGraphicsContext::EDrawModeXOR, CGraphicsContext::EDrawModeOR,
109 CGraphicsContext::EDrawModeNOTANDNOT, CGraphicsContext::EDrawModeNOTXOR,
110 CGraphicsContext::EDrawModeNOTSCREEN, CGraphicsContext::EDrawModeNOTOR,
111 CGraphicsContext::EDrawModeNOTPEN, CGraphicsContext::EDrawModeORNOT,
112 CGraphicsContext::EDrawModeNOTORNOT, CGraphicsContext::EDrawModeWriteAlpha
114 return modes[TRnd::rnd(sizeof(modes)/sizeof(CGraphicsContext::TDrawMode))];
117 CGraphicsContext::TPenStyle CCompWin::GetRandomPenStyle()
119 static CGraphicsContext::TPenStyle styles[] =
121 CGraphicsContext::ENullPen,
122 CGraphicsContext::ESolidPen,
123 CGraphicsContext::EDottedPen,
124 CGraphicsContext::EDashedPen,
125 CGraphicsContext::EDotDashPen,
126 CGraphicsContext::EDotDotDashPen
128 return styles[TRnd::rnd(sizeof(styles)/sizeof(CGraphicsContext::TPenStyle))];
131 CGraphicsContext::TBrushStyle CCompWin::GetRandomBrushStyle()
133 //CGraphicsContext::EPatternedBrush is not joined in the test in current version.
134 static CGraphicsContext::TBrushStyle styles[] =
136 CGraphicsContext::ENullBrush,
137 CGraphicsContext::ESolidBrush,
138 CGraphicsContext::EVerticalHatchBrush,
139 CGraphicsContext::EForwardDiagonalHatchBrush,
140 CGraphicsContext::EHorizontalHatchBrush,
141 CGraphicsContext::ERearwardDiagonalHatchBrush,
142 CGraphicsContext::ESquareCrossHatchBrush,
143 CGraphicsContext::EDiamondCrossHatchBrush
145 return styles[TRnd::rnd(sizeof(styles)/sizeof(CGraphicsContext::TBrushStyle))];
148 CCompWin::CCompWin(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc) :
156 CCompWin::~CCompWin()
158 iChildren.ResetAndDestroy();
162 iParent->RemoveChild(this);
172 void CCompWin::PreConstructL(TBool aTransparency, TBool aBackedup)
176 iWindow = iBackedupWindow = new(ELeave) RBackedUpWindow(iWs);
179 User::LeaveIfError(iBackedupWindow->Construct(*iParent->Window(), EColor64K, (TUint32)(this)));
180 iParent->AddChildL(this);
184 User::LeaveIfError(iBackedupWindow->Construct(*iGroup, EColor64K, (TUint32)(this)));
189 iWindow = iRedrawWindow = new(ELeave) RWindow(iWs);
192 User::LeaveIfError(iRedrawWindow->Construct(*iParent->Window(), (TUint32)(this)));
193 iParent->AddChildL(this);
197 User::LeaveIfError(iRedrawWindow->Construct(*iGroup, (TUint32)(this)));
204 iRedrawWindow->SetTransparencyAlphaChannel();
206 /* Note: if background color is set to include a transparent background
207 * and AUTOCLEAR is set to 1 in wsini.ini, window's background will not be
210 iRedrawWindow->SetBackgroundColor(BackgroundColor());
213 iPos.iX = TRnd::rnd(KPosLimit);
214 iPos.iY = TRnd::rnd(KPosLimit);
215 iSize.iWidth = TRnd::rnd(KPosLimit);
216 iSize.iHeight = TRnd::rnd(KPosLimit);
217 iPos.iX -= iSize.iWidth / 2;
218 iPos.iY -= iSize.iHeight / 2;
221 iWindow->SetOrdinalPosition(0);
224 void CCompWin::PostConstructL()
230 void CCompWin::SetPos(const TPoint & aPos)
233 iWindow->SetPosition(iPos);
236 void CCompWin::SetSize(const TSize & aSize)
239 TInt err = iWindow->SetSizeErr(iSize);
246 iRedrawWindow->Invalidate();
248 else if (iBackedupWindow)
255 void CCompWin::BringToFrontL()
259 iParent->RemoveChild(this);
260 iParent->AddChildL(this);
262 iWindow->SetOrdinalPosition(0);
265 void CCompWin::SendToBackL()
269 iParent->RemoveChild(this);
270 iParent->iChildren.Insert(this, 0);
271 iWindow->SetOrdinalPosition(-1);
275 void CCompWin::RemoveChild(CCompWin* aChild)
277 TInt num = iChildren.Find(aChild);
278 if (num != KErrNotFound)
280 iChildren.Remove(num);
284 void CCompWin::AddChildL(CCompWin* aChild)
286 CleanupStack::PushL(aChild);
287 User::LeaveIfError(iChildren.Append(aChild));
288 CleanupStack::Pop(aChild);
291 CCompWin * CCompWin::RandomWindow()
293 TInt num = TRnd::rnd(iChildren.Count() + 1);
295 if (num == iChildren.Count())
301 return iChildren[num]->RandomWindow();
305 void CCompWin::ToggleVisible()
307 iVisible = !iVisible;
308 iWindow->SetVisible(iVisible);
311 void CCompWin::Dump(RFile& aFile, TPoint& aOrigin, TInt aDepth, CCompWin * aMark)
313 TPoint abs = aOrigin + iPos;
314 static TBuf8<256> buf;
316 for (TInt d = 0; d < aDepth; ++d)
318 buf.Append(_L8(" "));
320 buf.Append(_L8("rel ["));
321 buf.AppendNum((TInt64)iPos.iX);
322 buf.Append(_L8(","));
323 buf.AppendNum((TInt64)iPos.iY);
324 buf.Append(_L8("] abs ["));
325 buf.AppendNum((TInt64)abs.iX);
326 buf.Append(_L8(","));
327 buf.AppendNum((TInt64)abs.iY);
328 buf.Append(_L8("] size ["));
329 buf.AppendNum((TInt64)iSize.iWidth);
330 buf.Append(_L8(","));
331 buf.AppendNum((TInt64)iSize.iHeight);
332 buf.Append(_L8("] "));
335 buf.Append(_L8("visible "));
339 buf.Append(_L8("invisible "));
341 buf.Append(TypeName());
344 buf.Append(_L8(" <active>"));
346 buf.Append(_L8("\r\n"));
349 DumpDetails(aFile, aDepth);
351 for (TInt num = 0; num < iChildren.Count(); ++num)
353 iChildren[num]->Dump(aFile, abs, aDepth + 1, aMark);
357 void CCompWin::DumpDetails(RFile&, TInt)
361 void CCompWin::HandleRedraw(TWsRedrawEvent& aEvent)
363 Redraw(aEvent.Rect());
366 void CCompWin::DrawBitmap(CFbsBitGc* aGc, TRect& aClip, TPoint& aOrigin)
368 if (aClip.Width() > 0 && aClip.Height() > 0)
370 TPoint origin = iPos + aOrigin;
371 TRect clip(origin, iSize);
372 clip.Intersection(aClip);
374 for (TInt num = 0; num < iChildren.Count(); ++num)
376 if (iChildren[num]->iVisible)
378 iChildren[num]->DrawBitmap(aGc, clip, origin);
385 Fills window's background with it's background color,
386 then iterates visible children
388 void CCompWin::ClearBitmapBackground(CFbsBitGc* aGc, TRect& aClip, TPoint& aOrigin)
390 if (aClip.Width() > 0 && aClip.Height() > 0)
392 TPoint origin = iPos + aOrigin;
393 TRect clip(origin, iSize);
394 clip.Intersection(aClip);
397 aGc->SetOrigin(TPoint(0,0));
398 aGc->SetPenColor(BackgroundColor());
399 aGc->SetBrushColor(BackgroundColor());
400 aGc->SetPenStyle(CGraphicsContext::ESolidPen);
401 aGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
404 for (TInt num = 0; num < iChildren.Count(); ++num)
406 if (iChildren[num]->iVisible)
408 iChildren[num]->ClearBitmapBackground(aGc, clip, origin);
414 TBool CCompWin::QueryReadyForVerification()
420 while ( idx < iChildren.Count() && res )
422 res = iChildren[ idx ]->QueryReadyForVerification();
430 Subtracts window region from the supplied region
431 then calls all children to subtract themsleves
432 @param aRegion region from which current window are should be subtructed
433 @param aClip clipping area provided by the parent window
434 @param aOrigin absolute origin of parent
436 void CCompWin::SubSelfFromRegion(TRegion& aRegion, const TRect& aClip, const TPoint& aOrigin)
442 TPoint origin = iPos + aOrigin;
443 TRect clip(origin, iSize);
444 clip.Intersection(aClip);
445 aRegion.SubRect(clip);
446 for (TInt num = 0; num < iChildren.Count(); ++num)
448 if (iChildren[num]->iVisible)
450 iChildren[num]->SubSelfFromRegion(aRegion, clip, origin);
455 void CCompWin::SetVerifyTick(TUint32 aTick)
458 for (TInt num = 0; num < iChildren.Count(); ++num)
460 if (iChildren[num]->iVisible)
462 iChildren[num]->SetVerifyTick(aTick);