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 "edgedwin.h"
|
sl@0
|
23 |
#include "utils.h"
|
sl@0
|
24 |
|
sl@0
|
25 |
|
sl@0
|
26 |
/**
|
sl@0
|
27 |
EDGED WIN
|
sl@0
|
28 |
*/
|
sl@0
|
29 |
|
sl@0
|
30 |
//static configuration data, definitions and default assignments
|
sl@0
|
31 |
TBool CEdgedWin::iEnabled = ETrue;
|
sl@0
|
32 |
TBool CEdgedWin::iTransparent = ETrue;
|
sl@0
|
33 |
TBool CEdgedWin::iRandomizeAlpha = EFalse;
|
sl@0
|
34 |
TBool CEdgedWin::iRandomizePenStyle = EFalse;
|
sl@0
|
35 |
TBool CEdgedWin::iRandomizeBrushStyle = EFalse;
|
sl@0
|
36 |
|
sl@0
|
37 |
|
sl@0
|
38 |
CEdgedWin* CEdgedWin::NewLC(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc)
|
sl@0
|
39 |
{
|
sl@0
|
40 |
CEdgedWin* self = new (ELeave) CEdgedWin(aWs, aGroup, aParent, aGc);
|
sl@0
|
41 |
CleanupStack::PushL(self);
|
sl@0
|
42 |
self->ConstructL();
|
sl@0
|
43 |
return self;
|
sl@0
|
44 |
}
|
sl@0
|
45 |
|
sl@0
|
46 |
void CEdgedWin::LoadConfiguration(const MTestStepConfigurationContext* aContext)
|
sl@0
|
47 |
{
|
sl@0
|
48 |
aContext->GetBool(KT_WservStressParamEnabled, iEnabled);
|
sl@0
|
49 |
aContext->GetBool(KT_WservStressParamTransparent, iTransparent);
|
sl@0
|
50 |
aContext->GetBool(KT_WservStressParamRandomizeAlpha, iRandomizeAlpha);
|
sl@0
|
51 |
aContext->GetBool(KT_WservStressParamRandomizePenStyle, iRandomizePenStyle);
|
sl@0
|
52 |
aContext->GetBool(KT_WservStressParamRandomizeBrushStyle, iRandomizeBrushStyle);
|
sl@0
|
53 |
}
|
sl@0
|
54 |
|
sl@0
|
55 |
CEdgedWin::CEdgedWin(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc) :
|
sl@0
|
56 |
CCompWin(aWs, aGroup, aParent, aGc)
|
sl@0
|
57 |
{
|
sl@0
|
58 |
}
|
sl@0
|
59 |
|
sl@0
|
60 |
CEdgedWin::~CEdgedWin()
|
sl@0
|
61 |
{
|
sl@0
|
62 |
}
|
sl@0
|
63 |
|
sl@0
|
64 |
void CEdgedWin::ConstructL()
|
sl@0
|
65 |
{
|
sl@0
|
66 |
CCompWin::PreConstructL(iTransparent);
|
sl@0
|
67 |
iTransBgColor = TRnd::rnd();
|
sl@0
|
68 |
iTransFgColor = TRnd::rnd();
|
sl@0
|
69 |
iBgColor = TRnd::rnd();
|
sl@0
|
70 |
iFgColor = TRnd::rnd();
|
sl@0
|
71 |
if (!iTransparent || !iRandomizeAlpha) //randomizing the alpha will cause bitmap differences
|
sl@0
|
72 |
{
|
sl@0
|
73 |
iTransBgColor.SetAlpha(0xFF);
|
sl@0
|
74 |
iTransFgColor.SetAlpha(0xFF);
|
sl@0
|
75 |
}
|
sl@0
|
76 |
iBgColor.SetAlpha(0xFF); //inner rectangle should not be transparent
|
sl@0
|
77 |
iFgColor.SetAlpha(0xFF); //inner rectangle should not be transparent
|
sl@0
|
78 |
|
sl@0
|
79 |
iPenStyle = iRandomizePenStyle ? GetRandomPenStyle() : CGraphicsContext::ESolidPen;
|
sl@0
|
80 |
iBrushStyle = iRandomizeBrushStyle ? GetRandomBrushStyle() : CGraphicsContext::ESolidBrush;
|
sl@0
|
81 |
CCompWin::PostConstructL();
|
sl@0
|
82 |
}
|
sl@0
|
83 |
|
sl@0
|
84 |
void CEdgedWin::SetSize(const TSize & aSize)
|
sl@0
|
85 |
{
|
sl@0
|
86 |
CCompWin::SetSize(aSize);
|
sl@0
|
87 |
|
sl@0
|
88 |
iOpaqueRect.iTl.iX = 10;
|
sl@0
|
89 |
iOpaqueRect.iTl.iY = 10;
|
sl@0
|
90 |
iOpaqueRect.iBr.iX = iSize.iWidth - 10;
|
sl@0
|
91 |
iOpaqueRect.iBr.iY = iSize.iHeight - 10;
|
sl@0
|
92 |
if (iTransparent)
|
sl@0
|
93 |
{
|
sl@0
|
94 |
iTransparentRegion.Clear();
|
sl@0
|
95 |
iTransparentRegion.AddRect(TRect(TPoint(0,0), iSize));
|
sl@0
|
96 |
iTransparentRegion.SubRect(iOpaqueRect);
|
sl@0
|
97 |
iRedrawWindow->SetTransparentRegion(iTransparentRegion); //TRANSPARENCY must be defined in wsini.ini
|
sl@0
|
98 |
}
|
sl@0
|
99 |
}
|
sl@0
|
100 |
|
sl@0
|
101 |
void CEdgedWin::DrawBitmap(CFbsBitGc* aGc, TRect& aClip, TPoint& aOrigin)
|
sl@0
|
102 |
{
|
sl@0
|
103 |
aGc->Reset();
|
sl@0
|
104 |
TPoint origin = iPos + aOrigin;
|
sl@0
|
105 |
aGc->SetOrigin(origin);
|
sl@0
|
106 |
|
sl@0
|
107 |
TRect clip(origin, iSize);
|
sl@0
|
108 |
clip.Intersection(aClip);
|
sl@0
|
109 |
clip.Move(-origin);
|
sl@0
|
110 |
|
sl@0
|
111 |
aGc->SetClippingRect(clip);
|
sl@0
|
112 |
aGc->SetPenStyle(iPenStyle);
|
sl@0
|
113 |
aGc->SetBrushStyle(iBrushStyle);
|
sl@0
|
114 |
//draw outer rectangle
|
sl@0
|
115 |
aGc->SetPenColor(iTransFgColor);
|
sl@0
|
116 |
aGc->SetBrushColor(iTransBgColor);
|
sl@0
|
117 |
aGc->DrawRect(TRect(TPoint(0,0), iSize));
|
sl@0
|
118 |
|
sl@0
|
119 |
//draw inner rectangle
|
sl@0
|
120 |
aGc->SetPenColor(iFgColor);
|
sl@0
|
121 |
aGc->SetBrushColor(iBgColor);
|
sl@0
|
122 |
aGc->DrawRect(iOpaqueRect);
|
sl@0
|
123 |
|
sl@0
|
124 |
CCompWin::DrawBitmap(aGc, aClip, aOrigin);
|
sl@0
|
125 |
}
|
sl@0
|
126 |
|
sl@0
|
127 |
void CEdgedWin::Redraw(const TRect& aRect)
|
sl@0
|
128 |
{
|
sl@0
|
129 |
iWsGc.Activate(*iWindow);
|
sl@0
|
130 |
iWsGc.Reset();
|
sl@0
|
131 |
iWsGc.SetPenStyle(iPenStyle);
|
sl@0
|
132 |
iWsGc.SetBrushStyle(iBrushStyle);
|
sl@0
|
133 |
TBool redraw = EFalse;
|
sl@0
|
134 |
//redraw outer rectangle if in rect
|
sl@0
|
135 |
if (aRect.iTl.iX < iOpaqueRect.iTl.iX ||
|
sl@0
|
136 |
aRect.iTl.iY < iOpaqueRect.iTl.iY ||
|
sl@0
|
137 |
aRect.iBr.iX > iOpaqueRect.iBr.iX ||
|
sl@0
|
138 |
aRect.iBr.iY > iOpaqueRect.iBr.iY)
|
sl@0
|
139 |
{
|
sl@0
|
140 |
redraw = ETrue;
|
sl@0
|
141 |
iRedrawWindow->BeginRedraw();
|
sl@0
|
142 |
iWsGc.SetPenColor(iTransFgColor);
|
sl@0
|
143 |
iWsGc.SetBrushColor(iTransBgColor);
|
sl@0
|
144 |
iWsGc.DrawRect(TRect(TPoint(0,0), iSize));
|
sl@0
|
145 |
// iRedrawWindow->EndRedraw() will be taken care of below
|
sl@0
|
146 |
}
|
sl@0
|
147 |
//redraw inner rectangle
|
sl@0
|
148 |
if (redraw || aRect.Intersects(iOpaqueRect))
|
sl@0
|
149 |
{
|
sl@0
|
150 |
if (!redraw)
|
sl@0
|
151 |
{
|
sl@0
|
152 |
iRedrawWindow->BeginRedraw(iOpaqueRect);//iOpaqueRect);
|
sl@0
|
153 |
}
|
sl@0
|
154 |
iWsGc.SetPenColor(iFgColor);
|
sl@0
|
155 |
iWsGc.SetBrushColor(iBgColor);
|
sl@0
|
156 |
iWsGc.DrawRect(iOpaqueRect);
|
sl@0
|
157 |
iRedrawWindow->EndRedraw();
|
sl@0
|
158 |
}
|
sl@0
|
159 |
iWsGc.Deactivate();
|
sl@0
|
160 |
}
|
sl@0
|
161 |
|
sl@0
|
162 |
void CEdgedWin::DumpDetails(RFile& aFile, TInt aDepth)
|
sl@0
|
163 |
{
|
sl@0
|
164 |
TBuf8<256> buf;
|
sl@0
|
165 |
buf.SetLength(0);
|
sl@0
|
166 |
for (TInt d = 0; d < aDepth; ++d)
|
sl@0
|
167 |
{
|
sl@0
|
168 |
buf.Append(_L8(" "));
|
sl@0
|
169 |
}
|
sl@0
|
170 |
buf.Append(_L8("Transparent = ["));
|
sl@0
|
171 |
buf.AppendNum((TInt64)iTransparent);
|
sl@0
|
172 |
buf.Append(_L8("] randomize_alpha = ["));
|
sl@0
|
173 |
buf.AppendNum((TInt64)iRandomizeAlpha);
|
sl@0
|
174 |
buf.Append(_L8("] pen_style = ["));
|
sl@0
|
175 |
buf.AppendNum((TInt64)iPenStyle);
|
sl@0
|
176 |
buf.Append(_L8("] brush_style = ["));
|
sl@0
|
177 |
buf.AppendNum((TInt64)iBrushStyle);
|
sl@0
|
178 |
buf.Append(_L8("] transFgColor = ["));
|
sl@0
|
179 |
buf.AppendNum(iTransFgColor.Value());
|
sl@0
|
180 |
buf.Append(_L8("] transBgColor = ["));
|
sl@0
|
181 |
buf.AppendNum(iTransBgColor.Value());
|
sl@0
|
182 |
buf.Append(_L8("] FgColor = ["));
|
sl@0
|
183 |
buf.AppendNum(iFgColor.Value());
|
sl@0
|
184 |
buf.Append(_L8("] BgColor = ["));
|
sl@0
|
185 |
buf.AppendNum(iBgColor.Value());
|
sl@0
|
186 |
buf.Append(_L8("]\r\n"));
|
sl@0
|
187 |
aFile.Write(buf);
|
sl@0
|
188 |
}
|