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