sl@0: // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @test sl@0: @internalComponent sl@0: */ sl@0: sl@0: #include "edgedwin.h" sl@0: #include "utils.h" sl@0: sl@0: sl@0: /** sl@0: EDGED WIN sl@0: */ sl@0: sl@0: //static configuration data, definitions and default assignments sl@0: TBool CEdgedWin::iEnabled = ETrue; sl@0: TBool CEdgedWin::iTransparent = ETrue; sl@0: TBool CEdgedWin::iRandomizeAlpha = EFalse; sl@0: TBool CEdgedWin::iRandomizePenStyle = EFalse; sl@0: TBool CEdgedWin::iRandomizeBrushStyle = EFalse; sl@0: sl@0: sl@0: CEdgedWin* CEdgedWin::NewLC(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc) sl@0: { sl@0: CEdgedWin* self = new (ELeave) CEdgedWin(aWs, aGroup, aParent, aGc); sl@0: CleanupStack::PushL(self); sl@0: self->ConstructL(); sl@0: return self; sl@0: } sl@0: sl@0: void CEdgedWin::LoadConfiguration(const MTestStepConfigurationContext* aContext) sl@0: { sl@0: aContext->GetBool(KT_WservStressParamEnabled, iEnabled); sl@0: aContext->GetBool(KT_WservStressParamTransparent, iTransparent); sl@0: aContext->GetBool(KT_WservStressParamRandomizeAlpha, iRandomizeAlpha); sl@0: aContext->GetBool(KT_WservStressParamRandomizePenStyle, iRandomizePenStyle); sl@0: aContext->GetBool(KT_WservStressParamRandomizeBrushStyle, iRandomizeBrushStyle); sl@0: } sl@0: sl@0: CEdgedWin::CEdgedWin(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc) : sl@0: CCompWin(aWs, aGroup, aParent, aGc) sl@0: { sl@0: } sl@0: sl@0: CEdgedWin::~CEdgedWin() sl@0: { sl@0: } sl@0: sl@0: void CEdgedWin::ConstructL() sl@0: { sl@0: CCompWin::PreConstructL(iTransparent); sl@0: iTransBgColor = TRnd::rnd(); sl@0: iTransFgColor = TRnd::rnd(); sl@0: iBgColor = TRnd::rnd(); sl@0: iFgColor = TRnd::rnd(); sl@0: if (!iTransparent || !iRandomizeAlpha) //randomizing the alpha will cause bitmap differences sl@0: { sl@0: iTransBgColor.SetAlpha(0xFF); sl@0: iTransFgColor.SetAlpha(0xFF); sl@0: } sl@0: iBgColor.SetAlpha(0xFF); //inner rectangle should not be transparent sl@0: iFgColor.SetAlpha(0xFF); //inner rectangle should not be transparent sl@0: sl@0: iPenStyle = iRandomizePenStyle ? GetRandomPenStyle() : CGraphicsContext::ESolidPen; sl@0: iBrushStyle = iRandomizeBrushStyle ? GetRandomBrushStyle() : CGraphicsContext::ESolidBrush; sl@0: CCompWin::PostConstructL(); sl@0: } sl@0: sl@0: void CEdgedWin::SetSize(const TSize & aSize) sl@0: { sl@0: CCompWin::SetSize(aSize); sl@0: sl@0: iOpaqueRect.iTl.iX = 10; sl@0: iOpaqueRect.iTl.iY = 10; sl@0: iOpaqueRect.iBr.iX = iSize.iWidth - 10; sl@0: iOpaqueRect.iBr.iY = iSize.iHeight - 10; sl@0: if (iTransparent) sl@0: { sl@0: iTransparentRegion.Clear(); sl@0: iTransparentRegion.AddRect(TRect(TPoint(0,0), iSize)); sl@0: iTransparentRegion.SubRect(iOpaqueRect); sl@0: iRedrawWindow->SetTransparentRegion(iTransparentRegion); //TRANSPARENCY must be defined in wsini.ini sl@0: } sl@0: } sl@0: sl@0: void CEdgedWin::DrawBitmap(CFbsBitGc* aGc, TRect& aClip, TPoint& aOrigin) sl@0: { sl@0: aGc->Reset(); sl@0: TPoint origin = iPos + aOrigin; sl@0: aGc->SetOrigin(origin); sl@0: sl@0: TRect clip(origin, iSize); sl@0: clip.Intersection(aClip); sl@0: clip.Move(-origin); sl@0: sl@0: aGc->SetClippingRect(clip); sl@0: aGc->SetPenStyle(iPenStyle); sl@0: aGc->SetBrushStyle(iBrushStyle); sl@0: //draw outer rectangle sl@0: aGc->SetPenColor(iTransFgColor); sl@0: aGc->SetBrushColor(iTransBgColor); sl@0: aGc->DrawRect(TRect(TPoint(0,0), iSize)); sl@0: sl@0: //draw inner rectangle sl@0: aGc->SetPenColor(iFgColor); sl@0: aGc->SetBrushColor(iBgColor); sl@0: aGc->DrawRect(iOpaqueRect); sl@0: sl@0: CCompWin::DrawBitmap(aGc, aClip, aOrigin); sl@0: } sl@0: sl@0: void CEdgedWin::Redraw(const TRect& aRect) sl@0: { sl@0: iWsGc.Activate(*iWindow); sl@0: iWsGc.Reset(); sl@0: iWsGc.SetPenStyle(iPenStyle); sl@0: iWsGc.SetBrushStyle(iBrushStyle); sl@0: TBool redraw = EFalse; sl@0: //redraw outer rectangle if in rect sl@0: if (aRect.iTl.iX < iOpaqueRect.iTl.iX || sl@0: aRect.iTl.iY < iOpaqueRect.iTl.iY || sl@0: aRect.iBr.iX > iOpaqueRect.iBr.iX || sl@0: aRect.iBr.iY > iOpaqueRect.iBr.iY) sl@0: { sl@0: redraw = ETrue; sl@0: iRedrawWindow->BeginRedraw(); sl@0: iWsGc.SetPenColor(iTransFgColor); sl@0: iWsGc.SetBrushColor(iTransBgColor); sl@0: iWsGc.DrawRect(TRect(TPoint(0,0), iSize)); sl@0: // iRedrawWindow->EndRedraw() will be taken care of below sl@0: } sl@0: //redraw inner rectangle sl@0: if (redraw || aRect.Intersects(iOpaqueRect)) sl@0: { sl@0: if (!redraw) sl@0: { sl@0: iRedrawWindow->BeginRedraw(iOpaqueRect);//iOpaqueRect); sl@0: } sl@0: iWsGc.SetPenColor(iFgColor); sl@0: iWsGc.SetBrushColor(iBgColor); sl@0: iWsGc.DrawRect(iOpaqueRect); sl@0: iRedrawWindow->EndRedraw(); sl@0: } sl@0: iWsGc.Deactivate(); sl@0: } sl@0: sl@0: void CEdgedWin::DumpDetails(RFile& aFile, TInt aDepth) sl@0: { sl@0: TBuf8<256> buf; sl@0: buf.SetLength(0); sl@0: for (TInt d = 0; d < aDepth; ++d) sl@0: { sl@0: buf.Append(_L8(" ")); sl@0: } sl@0: buf.Append(_L8("Transparent = [")); sl@0: buf.AppendNum((TInt64)iTransparent); sl@0: buf.Append(_L8("] randomize_alpha = [")); sl@0: buf.AppendNum((TInt64)iRandomizeAlpha); sl@0: buf.Append(_L8("] pen_style = [")); sl@0: buf.AppendNum((TInt64)iPenStyle); sl@0: buf.Append(_L8("] brush_style = [")); sl@0: buf.AppendNum((TInt64)iBrushStyle); sl@0: buf.Append(_L8("] transFgColor = [")); sl@0: buf.AppendNum(iTransFgColor.Value()); sl@0: buf.Append(_L8("] transBgColor = [")); sl@0: buf.AppendNum(iTransBgColor.Value()); sl@0: buf.Append(_L8("] FgColor = [")); sl@0: buf.AppendNum(iFgColor.Value()); sl@0: buf.Append(_L8("] BgColor = [")); sl@0: buf.AppendNum(iBgColor.Value()); sl@0: buf.Append(_L8("]\r\n")); sl@0: aFile.Write(buf); sl@0: }