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.
22 #include "enormouswin.h"
30 //static configuration data, definitions and default assignments
31 TBool CEnormousWin::iEnabled = ETrue;
32 TBool CEnormousWin::iTransparent = ETrue;
33 TBool CEnormousWin::iRandomizePenStyle = EFalse;
34 TBool CEnormousWin::iRandomizeBrushStyle = EFalse;
37 CEnormousWin* CEnormousWin::NewLC(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc)
39 CEnormousWin* self = new (ELeave) CEnormousWin(aWs, aGroup, aParent, aGc);
40 CleanupStack::PushL(self);
45 void CEnormousWin::LoadConfiguration(const MTestStepConfigurationContext* aContext)
47 aContext->GetBool(KT_WservStressParamEnabled, iEnabled);
48 aContext->GetBool(KT_WservStressParamTransparent, iTransparent);
49 aContext->GetBool(KT_WservStressParamRandomizePenStyle, iRandomizePenStyle);
50 aContext->GetBool(KT_WservStressParamRandomizeBrushStyle, iRandomizeBrushStyle);
53 CEnormousWin::CEnormousWin(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc) :
54 CCompWin(aWs, aGroup, aParent, aGc)
58 CEnormousWin::~CEnormousWin()
62 void CEnormousWin::ConstructL()
64 CCompWin::PreConstructL(iTransparent);
65 iRedrawWindow->EnableRedrawStore(EFalse);
71 size.iWidth *= EScale;
72 size.iHeight *= EScale;
74 iPenStyle = iRandomizePenStyle ? GetRandomPenStyle() : CGraphicsContext::ESolidPen;
75 iBrushStyle = iRandomizeBrushStyle ? GetRandomBrushStyle() : CGraphicsContext::ESolidBrush;
76 CCompWin::PostConstructL();
79 void CEnormousWin::DrawBitmap(CFbsBitGc* aGc, TRect& aClip, TPoint& aOrigin)
82 TPoint origin = iPos + aOrigin;
83 aGc->SetOrigin(origin);
85 TRect clip(origin, iSize);
86 clip.Intersection(aClip);
88 aGc->SetClippingRect(clip);
90 aGc->SetPenStyle(iPenStyle);
91 aGc->SetBrushStyle(iBrushStyle);
93 TInt left = clip.iTl.iX / ESegmentSize;
94 TInt top = clip.iTl.iY / ESegmentSize;
95 TInt right = clip.iBr.iX / ESegmentSize + 1;
96 TInt bottom = clip.iBr.iY / ESegmentSize + 1;
100 for (TInt y = top; y < bottom; ++y)
102 TInt g = (y * 31) & 0xFF;
103 for (TInt x = left; x < right; ++x)
105 TRect rect(x * ESegmentSize, y * ESegmentSize, (x + 1) * ESegmentSize, (y + 1) * ESegmentSize);
106 TInt r = (x * 25) & 0xFF;
107 TInt b = ((x + y) * 28) & 0xFF;
108 TInt col = ((b << 16) + (g << 8) + r) | 0x101010;
113 if (iTransparent && (x & y & 1))
118 aGc->SetPenColor(fg);
119 aGc->SetBrushColor(bg);
124 CCompWin::DrawBitmap(aGc, aClip, aOrigin);
127 void CEnormousWin::Redraw(const TRect& aRect)
129 iWsGc.Activate(*iWindow);
132 iWsGc.SetPenStyle(iPenStyle);
133 iWsGc.SetBrushStyle(iBrushStyle);
135 TInt left = aRect.iTl.iX / ESegmentSize;
136 TInt top = aRect.iTl.iY / ESegmentSize;
137 TInt right = aRect.iBr.iX / ESegmentSize + 1;
138 TInt bottom = aRect.iBr.iY / ESegmentSize + 1;
142 for (TInt y = top; y < bottom; ++y)
144 TInt g = (y * 31) & 0xFF;
145 for (TInt x = left; x < right; ++x)
147 TRect rect(x * ESegmentSize, y * ESegmentSize, (x + 1) * ESegmentSize, (y + 1) * ESegmentSize);
148 iRedrawWindow->BeginRedraw(rect);
149 TInt r = (x * 25) & 0xFF;
150 TInt b = ((x + y) * 28) & 0xFF;
151 TInt col = ((b << 16) + (g << 8) + r) | 0x101010;
156 if (iTransparent && (x & y & 1))
161 iWsGc.SetPenColor(fg);
162 iWsGc.SetBrushColor(bg);
163 iWsGc.DrawRect(rect);
164 iRedrawWindow->EndRedraw();
170 void CEnormousWin::DumpDetails(RFile& aFile, TInt aDepth)
174 for (TInt d = 0; d < aDepth; ++d)
176 buf.Append(_L8(" "));
178 buf.Append(_L8("Transparent = ["));
179 buf.AppendNum((TInt64)iTransparent);
180 buf.Append(_L8("] pen_style = ["));
181 buf.AppendNum((TInt64)iPenStyle);
182 buf.Append(_L8("] brush_style = ["));
183 buf.AppendNum((TInt64)iBrushStyle);
184 buf.Append(_L8("]\r\n"));