1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/test/t_stress/src/enormouswin.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,186 @@
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 "enormouswin.h"
1.26 +#include "utils.h"
1.27 +
1.28 +
1.29 +/**
1.30 +ENORMOUS WIN
1.31 +*/
1.32 +
1.33 +//static configuration data, definitions and default assignments
1.34 +TBool CEnormousWin::iEnabled = ETrue;
1.35 +TBool CEnormousWin::iTransparent = ETrue;
1.36 +TBool CEnormousWin::iRandomizePenStyle = EFalse;
1.37 +TBool CEnormousWin::iRandomizeBrushStyle = EFalse;
1.38 +
1.39 +
1.40 +CEnormousWin* CEnormousWin::NewLC(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc)
1.41 + {
1.42 + CEnormousWin* self = new (ELeave) CEnormousWin(aWs, aGroup, aParent, aGc);
1.43 + CleanupStack::PushL(self);
1.44 + self->ConstructL();
1.45 + return self;
1.46 + }
1.47 +
1.48 +void CEnormousWin::LoadConfiguration(const MTestStepConfigurationContext* aContext)
1.49 + {
1.50 + aContext->GetBool(KT_WservStressParamEnabled, iEnabled);
1.51 + aContext->GetBool(KT_WservStressParamTransparent, iTransparent);
1.52 + aContext->GetBool(KT_WservStressParamRandomizePenStyle, iRandomizePenStyle);
1.53 + aContext->GetBool(KT_WservStressParamRandomizeBrushStyle, iRandomizeBrushStyle);
1.54 + }
1.55 +
1.56 +CEnormousWin::CEnormousWin(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc) :
1.57 + CCompWin(aWs, aGroup, aParent, aGc)
1.58 + {
1.59 + }
1.60 +
1.61 +CEnormousWin::~CEnormousWin()
1.62 + {
1.63 + }
1.64 +
1.65 +void CEnormousWin::ConstructL()
1.66 + {
1.67 + CCompWin::PreConstructL(iTransparent);
1.68 + iRedrawWindow->EnableRedrawStore(EFalse);
1.69 + TPoint pos = iPos;
1.70 + pos.iX *= EScale;
1.71 + pos.iY *= EScale;
1.72 + SetPos(pos);
1.73 + TSize size = iSize;
1.74 + size.iWidth *= EScale;
1.75 + size.iHeight *= EScale;
1.76 + SetSize(size);
1.77 + iPenStyle = iRandomizePenStyle ? GetRandomPenStyle() : CGraphicsContext::ESolidPen;
1.78 + iBrushStyle = iRandomizeBrushStyle ? GetRandomBrushStyle() : CGraphicsContext::ESolidBrush;
1.79 + CCompWin::PostConstructL();
1.80 + }
1.81 +
1.82 +void CEnormousWin::DrawBitmap(CFbsBitGc* aGc, TRect& aClip, TPoint& aOrigin)
1.83 + {
1.84 + aGc->Reset();
1.85 + TPoint origin = iPos + aOrigin;
1.86 + aGc->SetOrigin(origin);
1.87 +
1.88 + TRect clip(origin, iSize);
1.89 + clip.Intersection(aClip);
1.90 + clip.Move(-origin);
1.91 + aGc->SetClippingRect(clip);
1.92 +
1.93 + aGc->SetPenStyle(iPenStyle);
1.94 + aGc->SetBrushStyle(iBrushStyle);
1.95 +
1.96 + TInt left = clip.iTl.iX / ESegmentSize;
1.97 + TInt top = clip.iTl.iY / ESegmentSize;
1.98 + TInt right = clip.iBr.iX / ESegmentSize + 1;
1.99 + TInt bottom = clip.iBr.iY / ESegmentSize + 1;
1.100 + TRgb fg;
1.101 + TRgb bg;
1.102 +
1.103 + for (TInt y = top; y < bottom; ++y)
1.104 + {
1.105 + TInt g = (y * 31) & 0xFF;
1.106 + for (TInt x = left; x < right; ++x)
1.107 + {
1.108 + TRect rect(x * ESegmentSize, y * ESegmentSize, (x + 1) * ESegmentSize, (y + 1) * ESegmentSize);
1.109 + TInt r = (x * 25) & 0xFF;
1.110 + TInt b = ((x + y) * 28) & 0xFF;
1.111 + TInt col = ((b << 16) + (g << 8) + r) | 0x101010;
1.112 + bg = col;
1.113 + fg = 0xFFFFFF ^ col;
1.114 + bg.SetAlpha(0xFF);
1.115 + fg.SetAlpha(0xFF);
1.116 + if (iTransparent && (x & y & 1))
1.117 + {
1.118 + bg.SetAlpha(0x80);
1.119 + fg.SetAlpha(0x80);
1.120 + }
1.121 + aGc->SetPenColor(fg);
1.122 + aGc->SetBrushColor(bg);
1.123 + aGc->DrawRect(rect);
1.124 + }
1.125 + }
1.126 +
1.127 + CCompWin::DrawBitmap(aGc, aClip, aOrigin);
1.128 + }
1.129 +
1.130 +void CEnormousWin::Redraw(const TRect& aRect)
1.131 + {
1.132 + iWsGc.Activate(*iWindow);
1.133 + iWsGc.Reset();
1.134 +
1.135 + iWsGc.SetPenStyle(iPenStyle);
1.136 + iWsGc.SetBrushStyle(iBrushStyle);
1.137 +
1.138 + TInt left = aRect.iTl.iX / ESegmentSize;
1.139 + TInt top = aRect.iTl.iY / ESegmentSize;
1.140 + TInt right = aRect.iBr.iX / ESegmentSize + 1;
1.141 + TInt bottom = aRect.iBr.iY / ESegmentSize + 1;
1.142 + TRgb fg;
1.143 + TRgb bg;
1.144 +
1.145 + for (TInt y = top; y < bottom; ++y)
1.146 + {
1.147 + TInt g = (y * 31) & 0xFF;
1.148 + for (TInt x = left; x < right; ++x)
1.149 + {
1.150 + TRect rect(x * ESegmentSize, y * ESegmentSize, (x + 1) * ESegmentSize, (y + 1) * ESegmentSize);
1.151 + iRedrawWindow->BeginRedraw(rect);
1.152 + TInt r = (x * 25) & 0xFF;
1.153 + TInt b = ((x + y) * 28) & 0xFF;
1.154 + TInt col = ((b << 16) + (g << 8) + r) | 0x101010;
1.155 + bg = col;
1.156 + fg = 0xFFFFFF ^ col;
1.157 + bg.SetAlpha(0xFF);
1.158 + fg.SetAlpha(0xFF);
1.159 + if (iTransparent && (x & y & 1))
1.160 + {
1.161 + bg.SetAlpha(0x80);
1.162 + fg.SetAlpha(0x80);
1.163 + }
1.164 + iWsGc.SetPenColor(fg);
1.165 + iWsGc.SetBrushColor(bg);
1.166 + iWsGc.DrawRect(rect);
1.167 + iRedrawWindow->EndRedraw();
1.168 + }
1.169 + }
1.170 + iWsGc.Deactivate();
1.171 + }
1.172 +
1.173 +void CEnormousWin::DumpDetails(RFile& aFile, TInt aDepth)
1.174 + {
1.175 + TBuf8<256> buf;
1.176 + buf.SetLength(0);
1.177 + for (TInt d = 0; d < aDepth; ++d)
1.178 + {
1.179 + buf.Append(_L8(" "));
1.180 + }
1.181 + buf.Append(_L8("Transparent = ["));
1.182 + buf.AppendNum((TInt64)iTransparent);
1.183 + buf.Append(_L8("] pen_style = ["));
1.184 + buf.AppendNum((TInt64)iPenStyle);
1.185 + buf.Append(_L8("] brush_style = ["));
1.186 + buf.AppendNum((TInt64)iBrushStyle);
1.187 + buf.Append(_L8("]\r\n"));
1.188 + aFile.Write(buf);
1.189 + }