sl@0
|
1 |
// Copyright (c) 2008-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 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
/**
|
sl@0
|
17 |
@file
|
sl@0
|
18 |
@test
|
sl@0
|
19 |
@internalComponent
|
sl@0
|
20 |
*/
|
sl@0
|
21 |
|
sl@0
|
22 |
#include "enormouswin.h"
|
sl@0
|
23 |
#include "utils.h"
|
sl@0
|
24 |
|
sl@0
|
25 |
|
sl@0
|
26 |
/**
|
sl@0
|
27 |
ENORMOUS WIN
|
sl@0
|
28 |
*/
|
sl@0
|
29 |
|
sl@0
|
30 |
//static configuration data, definitions and default assignments
|
sl@0
|
31 |
TBool CEnormousWin::iEnabled = ETrue;
|
sl@0
|
32 |
TBool CEnormousWin::iTransparent = ETrue;
|
sl@0
|
33 |
TBool CEnormousWin::iRandomizePenStyle = EFalse;
|
sl@0
|
34 |
TBool CEnormousWin::iRandomizeBrushStyle = EFalse;
|
sl@0
|
35 |
|
sl@0
|
36 |
|
sl@0
|
37 |
CEnormousWin* CEnormousWin::NewLC(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc)
|
sl@0
|
38 |
{
|
sl@0
|
39 |
CEnormousWin* self = new (ELeave) CEnormousWin(aWs, aGroup, aParent, aGc);
|
sl@0
|
40 |
CleanupStack::PushL(self);
|
sl@0
|
41 |
self->ConstructL();
|
sl@0
|
42 |
return self;
|
sl@0
|
43 |
}
|
sl@0
|
44 |
|
sl@0
|
45 |
void CEnormousWin::LoadConfiguration(const MTestStepConfigurationContext* aContext)
|
sl@0
|
46 |
{
|
sl@0
|
47 |
aContext->GetBool(KT_WservStressParamEnabled, iEnabled);
|
sl@0
|
48 |
aContext->GetBool(KT_WservStressParamTransparent, iTransparent);
|
sl@0
|
49 |
aContext->GetBool(KT_WservStressParamRandomizePenStyle, iRandomizePenStyle);
|
sl@0
|
50 |
aContext->GetBool(KT_WservStressParamRandomizeBrushStyle, iRandomizeBrushStyle);
|
sl@0
|
51 |
}
|
sl@0
|
52 |
|
sl@0
|
53 |
CEnormousWin::CEnormousWin(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc) :
|
sl@0
|
54 |
CCompWin(aWs, aGroup, aParent, aGc)
|
sl@0
|
55 |
{
|
sl@0
|
56 |
}
|
sl@0
|
57 |
|
sl@0
|
58 |
CEnormousWin::~CEnormousWin()
|
sl@0
|
59 |
{
|
sl@0
|
60 |
}
|
sl@0
|
61 |
|
sl@0
|
62 |
void CEnormousWin::ConstructL()
|
sl@0
|
63 |
{
|
sl@0
|
64 |
CCompWin::PreConstructL(iTransparent);
|
sl@0
|
65 |
iRedrawWindow->EnableRedrawStore(EFalse);
|
sl@0
|
66 |
TPoint pos = iPos;
|
sl@0
|
67 |
pos.iX *= EScale;
|
sl@0
|
68 |
pos.iY *= EScale;
|
sl@0
|
69 |
SetPos(pos);
|
sl@0
|
70 |
TSize size = iSize;
|
sl@0
|
71 |
size.iWidth *= EScale;
|
sl@0
|
72 |
size.iHeight *= EScale;
|
sl@0
|
73 |
SetSize(size);
|
sl@0
|
74 |
iPenStyle = iRandomizePenStyle ? GetRandomPenStyle() : CGraphicsContext::ESolidPen;
|
sl@0
|
75 |
iBrushStyle = iRandomizeBrushStyle ? GetRandomBrushStyle() : CGraphicsContext::ESolidBrush;
|
sl@0
|
76 |
CCompWin::PostConstructL();
|
sl@0
|
77 |
}
|
sl@0
|
78 |
|
sl@0
|
79 |
void CEnormousWin::DrawBitmap(CFbsBitGc* aGc, TRect& aClip, TPoint& aOrigin)
|
sl@0
|
80 |
{
|
sl@0
|
81 |
aGc->Reset();
|
sl@0
|
82 |
TPoint origin = iPos + aOrigin;
|
sl@0
|
83 |
aGc->SetOrigin(origin);
|
sl@0
|
84 |
|
sl@0
|
85 |
TRect clip(origin, iSize);
|
sl@0
|
86 |
clip.Intersection(aClip);
|
sl@0
|
87 |
clip.Move(-origin);
|
sl@0
|
88 |
aGc->SetClippingRect(clip);
|
sl@0
|
89 |
|
sl@0
|
90 |
aGc->SetPenStyle(iPenStyle);
|
sl@0
|
91 |
aGc->SetBrushStyle(iBrushStyle);
|
sl@0
|
92 |
|
sl@0
|
93 |
TInt left = clip.iTl.iX / ESegmentSize;
|
sl@0
|
94 |
TInt top = clip.iTl.iY / ESegmentSize;
|
sl@0
|
95 |
TInt right = clip.iBr.iX / ESegmentSize + 1;
|
sl@0
|
96 |
TInt bottom = clip.iBr.iY / ESegmentSize + 1;
|
sl@0
|
97 |
TRgb fg;
|
sl@0
|
98 |
TRgb bg;
|
sl@0
|
99 |
|
sl@0
|
100 |
for (TInt y = top; y < bottom; ++y)
|
sl@0
|
101 |
{
|
sl@0
|
102 |
TInt g = (y * 31) & 0xFF;
|
sl@0
|
103 |
for (TInt x = left; x < right; ++x)
|
sl@0
|
104 |
{
|
sl@0
|
105 |
TRect rect(x * ESegmentSize, y * ESegmentSize, (x + 1) * ESegmentSize, (y + 1) * ESegmentSize);
|
sl@0
|
106 |
TInt r = (x * 25) & 0xFF;
|
sl@0
|
107 |
TInt b = ((x + y) * 28) & 0xFF;
|
sl@0
|
108 |
TInt col = ((b << 16) + (g << 8) + r) | 0x101010;
|
sl@0
|
109 |
bg = col;
|
sl@0
|
110 |
fg = 0xFFFFFF ^ col;
|
sl@0
|
111 |
bg.SetAlpha(0xFF);
|
sl@0
|
112 |
fg.SetAlpha(0xFF);
|
sl@0
|
113 |
if (iTransparent && (x & y & 1))
|
sl@0
|
114 |
{
|
sl@0
|
115 |
bg.SetAlpha(0x80);
|
sl@0
|
116 |
fg.SetAlpha(0x80);
|
sl@0
|
117 |
}
|
sl@0
|
118 |
aGc->SetPenColor(fg);
|
sl@0
|
119 |
aGc->SetBrushColor(bg);
|
sl@0
|
120 |
aGc->DrawRect(rect);
|
sl@0
|
121 |
}
|
sl@0
|
122 |
}
|
sl@0
|
123 |
|
sl@0
|
124 |
CCompWin::DrawBitmap(aGc, aClip, aOrigin);
|
sl@0
|
125 |
}
|
sl@0
|
126 |
|
sl@0
|
127 |
void CEnormousWin::Redraw(const TRect& aRect)
|
sl@0
|
128 |
{
|
sl@0
|
129 |
iWsGc.Activate(*iWindow);
|
sl@0
|
130 |
iWsGc.Reset();
|
sl@0
|
131 |
|
sl@0
|
132 |
iWsGc.SetPenStyle(iPenStyle);
|
sl@0
|
133 |
iWsGc.SetBrushStyle(iBrushStyle);
|
sl@0
|
134 |
|
sl@0
|
135 |
TInt left = aRect.iTl.iX / ESegmentSize;
|
sl@0
|
136 |
TInt top = aRect.iTl.iY / ESegmentSize;
|
sl@0
|
137 |
TInt right = aRect.iBr.iX / ESegmentSize + 1;
|
sl@0
|
138 |
TInt bottom = aRect.iBr.iY / ESegmentSize + 1;
|
sl@0
|
139 |
TRgb fg;
|
sl@0
|
140 |
TRgb bg;
|
sl@0
|
141 |
|
sl@0
|
142 |
for (TInt y = top; y < bottom; ++y)
|
sl@0
|
143 |
{
|
sl@0
|
144 |
TInt g = (y * 31) & 0xFF;
|
sl@0
|
145 |
for (TInt x = left; x < right; ++x)
|
sl@0
|
146 |
{
|
sl@0
|
147 |
TRect rect(x * ESegmentSize, y * ESegmentSize, (x + 1) * ESegmentSize, (y + 1) * ESegmentSize);
|
sl@0
|
148 |
iRedrawWindow->BeginRedraw(rect);
|
sl@0
|
149 |
TInt r = (x * 25) & 0xFF;
|
sl@0
|
150 |
TInt b = ((x + y) * 28) & 0xFF;
|
sl@0
|
151 |
TInt col = ((b << 16) + (g << 8) + r) | 0x101010;
|
sl@0
|
152 |
bg = col;
|
sl@0
|
153 |
fg = 0xFFFFFF ^ col;
|
sl@0
|
154 |
bg.SetAlpha(0xFF);
|
sl@0
|
155 |
fg.SetAlpha(0xFF);
|
sl@0
|
156 |
if (iTransparent && (x & y & 1))
|
sl@0
|
157 |
{
|
sl@0
|
158 |
bg.SetAlpha(0x80);
|
sl@0
|
159 |
fg.SetAlpha(0x80);
|
sl@0
|
160 |
}
|
sl@0
|
161 |
iWsGc.SetPenColor(fg);
|
sl@0
|
162 |
iWsGc.SetBrushColor(bg);
|
sl@0
|
163 |
iWsGc.DrawRect(rect);
|
sl@0
|
164 |
iRedrawWindow->EndRedraw();
|
sl@0
|
165 |
}
|
sl@0
|
166 |
}
|
sl@0
|
167 |
iWsGc.Deactivate();
|
sl@0
|
168 |
}
|
sl@0
|
169 |
|
sl@0
|
170 |
void CEnormousWin::DumpDetails(RFile& aFile, TInt aDepth)
|
sl@0
|
171 |
{
|
sl@0
|
172 |
TBuf8<256> buf;
|
sl@0
|
173 |
buf.SetLength(0);
|
sl@0
|
174 |
for (TInt d = 0; d < aDepth; ++d)
|
sl@0
|
175 |
{
|
sl@0
|
176 |
buf.Append(_L8(" "));
|
sl@0
|
177 |
}
|
sl@0
|
178 |
buf.Append(_L8("Transparent = ["));
|
sl@0
|
179 |
buf.AppendNum((TInt64)iTransparent);
|
sl@0
|
180 |
buf.Append(_L8("] pen_style = ["));
|
sl@0
|
181 |
buf.AppendNum((TInt64)iPenStyle);
|
sl@0
|
182 |
buf.Append(_L8("] brush_style = ["));
|
sl@0
|
183 |
buf.AppendNum((TInt64)iBrushStyle);
|
sl@0
|
184 |
buf.Append(_L8("]\r\n"));
|
sl@0
|
185 |
aFile.Write(buf);
|
sl@0
|
186 |
}
|