1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/test/t_stress/src/edgedwin.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,188 @@
1.4 +// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +/**
1.20 + @file
1.21 + @test
1.22 + @internalComponent
1.23 +*/
1.24 +
1.25 +#include "edgedwin.h"
1.26 +#include "utils.h"
1.27 +
1.28 +
1.29 +/**
1.30 +EDGED WIN
1.31 +*/
1.32 +
1.33 +//static configuration data, definitions and default assignments
1.34 +TBool CEdgedWin::iEnabled = ETrue;
1.35 +TBool CEdgedWin::iTransparent = ETrue;
1.36 +TBool CEdgedWin::iRandomizeAlpha = EFalse;
1.37 +TBool CEdgedWin::iRandomizePenStyle = EFalse;
1.38 +TBool CEdgedWin::iRandomizeBrushStyle = EFalse;
1.39 +
1.40 +
1.41 +CEdgedWin* CEdgedWin::NewLC(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc)
1.42 + {
1.43 + CEdgedWin* self = new (ELeave) CEdgedWin(aWs, aGroup, aParent, aGc);
1.44 + CleanupStack::PushL(self);
1.45 + self->ConstructL();
1.46 + return self;
1.47 + }
1.48 +
1.49 +void CEdgedWin::LoadConfiguration(const MTestStepConfigurationContext* aContext)
1.50 + {
1.51 + aContext->GetBool(KT_WservStressParamEnabled, iEnabled);
1.52 + aContext->GetBool(KT_WservStressParamTransparent, iTransparent);
1.53 + aContext->GetBool(KT_WservStressParamRandomizeAlpha, iRandomizeAlpha);
1.54 + aContext->GetBool(KT_WservStressParamRandomizePenStyle, iRandomizePenStyle);
1.55 + aContext->GetBool(KT_WservStressParamRandomizeBrushStyle, iRandomizeBrushStyle);
1.56 + }
1.57 +
1.58 +CEdgedWin::CEdgedWin(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc) :
1.59 + CCompWin(aWs, aGroup, aParent, aGc)
1.60 + {
1.61 + }
1.62 +
1.63 +CEdgedWin::~CEdgedWin()
1.64 + {
1.65 + }
1.66 +
1.67 +void CEdgedWin::ConstructL()
1.68 + {
1.69 + CCompWin::PreConstructL(iTransparent);
1.70 + iTransBgColor = TRnd::rnd();
1.71 + iTransFgColor = TRnd::rnd();
1.72 + iBgColor = TRnd::rnd();
1.73 + iFgColor = TRnd::rnd();
1.74 + if (!iTransparent || !iRandomizeAlpha) //randomizing the alpha will cause bitmap differences
1.75 + {
1.76 + iTransBgColor.SetAlpha(0xFF);
1.77 + iTransFgColor.SetAlpha(0xFF);
1.78 + }
1.79 + iBgColor.SetAlpha(0xFF); //inner rectangle should not be transparent
1.80 + iFgColor.SetAlpha(0xFF); //inner rectangle should not be transparent
1.81 +
1.82 + iPenStyle = iRandomizePenStyle ? GetRandomPenStyle() : CGraphicsContext::ESolidPen;
1.83 + iBrushStyle = iRandomizeBrushStyle ? GetRandomBrushStyle() : CGraphicsContext::ESolidBrush;
1.84 + CCompWin::PostConstructL();
1.85 + }
1.86 +
1.87 +void CEdgedWin::SetSize(const TSize & aSize)
1.88 + {
1.89 + CCompWin::SetSize(aSize);
1.90 +
1.91 + iOpaqueRect.iTl.iX = 10;
1.92 + iOpaqueRect.iTl.iY = 10;
1.93 + iOpaqueRect.iBr.iX = iSize.iWidth - 10;
1.94 + iOpaqueRect.iBr.iY = iSize.iHeight - 10;
1.95 + if (iTransparent)
1.96 + {
1.97 + iTransparentRegion.Clear();
1.98 + iTransparentRegion.AddRect(TRect(TPoint(0,0), iSize));
1.99 + iTransparentRegion.SubRect(iOpaqueRect);
1.100 + iRedrawWindow->SetTransparentRegion(iTransparentRegion); //TRANSPARENCY must be defined in wsini.ini
1.101 + }
1.102 + }
1.103 +
1.104 +void CEdgedWin::DrawBitmap(CFbsBitGc* aGc, TRect& aClip, TPoint& aOrigin)
1.105 + {
1.106 + aGc->Reset();
1.107 + TPoint origin = iPos + aOrigin;
1.108 + aGc->SetOrigin(origin);
1.109 +
1.110 + TRect clip(origin, iSize);
1.111 + clip.Intersection(aClip);
1.112 + clip.Move(-origin);
1.113 +
1.114 + aGc->SetClippingRect(clip);
1.115 + aGc->SetPenStyle(iPenStyle);
1.116 + aGc->SetBrushStyle(iBrushStyle);
1.117 + //draw outer rectangle
1.118 + aGc->SetPenColor(iTransFgColor);
1.119 + aGc->SetBrushColor(iTransBgColor);
1.120 + aGc->DrawRect(TRect(TPoint(0,0), iSize));
1.121 +
1.122 + //draw inner rectangle
1.123 + aGc->SetPenColor(iFgColor);
1.124 + aGc->SetBrushColor(iBgColor);
1.125 + aGc->DrawRect(iOpaqueRect);
1.126 +
1.127 + CCompWin::DrawBitmap(aGc, aClip, aOrigin);
1.128 + }
1.129 +
1.130 +void CEdgedWin::Redraw(const TRect& aRect)
1.131 + {
1.132 + iWsGc.Activate(*iWindow);
1.133 + iWsGc.Reset();
1.134 + iWsGc.SetPenStyle(iPenStyle);
1.135 + iWsGc.SetBrushStyle(iBrushStyle);
1.136 + TBool redraw = EFalse;
1.137 + //redraw outer rectangle if in rect
1.138 + if (aRect.iTl.iX < iOpaqueRect.iTl.iX ||
1.139 + aRect.iTl.iY < iOpaqueRect.iTl.iY ||
1.140 + aRect.iBr.iX > iOpaqueRect.iBr.iX ||
1.141 + aRect.iBr.iY > iOpaqueRect.iBr.iY)
1.142 + {
1.143 + redraw = ETrue;
1.144 + iRedrawWindow->BeginRedraw();
1.145 + iWsGc.SetPenColor(iTransFgColor);
1.146 + iWsGc.SetBrushColor(iTransBgColor);
1.147 + iWsGc.DrawRect(TRect(TPoint(0,0), iSize));
1.148 + // iRedrawWindow->EndRedraw() will be taken care of below
1.149 + }
1.150 + //redraw inner rectangle
1.151 + if (redraw || aRect.Intersects(iOpaqueRect))
1.152 + {
1.153 + if (!redraw)
1.154 + {
1.155 + iRedrawWindow->BeginRedraw(iOpaqueRect);//iOpaqueRect);
1.156 + }
1.157 + iWsGc.SetPenColor(iFgColor);
1.158 + iWsGc.SetBrushColor(iBgColor);
1.159 + iWsGc.DrawRect(iOpaqueRect);
1.160 + iRedrawWindow->EndRedraw();
1.161 + }
1.162 + iWsGc.Deactivate();
1.163 + }
1.164 +
1.165 +void CEdgedWin::DumpDetails(RFile& aFile, TInt aDepth)
1.166 + {
1.167 + TBuf8<256> buf;
1.168 + buf.SetLength(0);
1.169 + for (TInt d = 0; d < aDepth; ++d)
1.170 + {
1.171 + buf.Append(_L8(" "));
1.172 + }
1.173 + buf.Append(_L8("Transparent = ["));
1.174 + buf.AppendNum((TInt64)iTransparent);
1.175 + buf.Append(_L8("] randomize_alpha = ["));
1.176 + buf.AppendNum((TInt64)iRandomizeAlpha);
1.177 + buf.Append(_L8("] pen_style = ["));
1.178 + buf.AppendNum((TInt64)iPenStyle);
1.179 + buf.Append(_L8("] brush_style = ["));
1.180 + buf.AppendNum((TInt64)iBrushStyle);
1.181 + buf.Append(_L8("] transFgColor = ["));
1.182 + buf.AppendNum(iTransFgColor.Value());
1.183 + buf.Append(_L8("] transBgColor = ["));
1.184 + buf.AppendNum(iTransBgColor.Value());
1.185 + buf.Append(_L8("] FgColor = ["));
1.186 + buf.AppendNum(iFgColor.Value());
1.187 + buf.Append(_L8("] BgColor = ["));
1.188 + buf.AppendNum(iBgColor.Value());
1.189 + buf.Append(_L8("]\r\n"));
1.190 + aFile.Write(buf);
1.191 + }