1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/test/t_stress/src/crpwin.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,171 @@
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 +
1.26 +#include "crpwin.h"
1.27 +
1.28 +/*******************************************************************************
1.29 +Client side of the crp used by CCrpWin
1.30 +*******************************************************************************/
1.31 +
1.32 +
1.33 +CCrpClient * CCrpClient::NewL()
1.34 + {
1.35 + CCrpClient * self = new (ELeave) CCrpClient();
1.36 + CleanupStack::PushL(self);
1.37 + self->ConstructL();
1.38 + CleanupStack::Pop(self);
1.39 + return self;
1.40 + }
1.41 +
1.42 +void CCrpClient::DrawCrp(CWindowGc& aGc,const TRect& aRect)
1.43 + {
1.44 + aGc.DrawWsGraphic(Id(),aRect);
1.45 + CWsGraphic::Flush();
1.46 + }
1.47 +
1.48 +CCrpClient::~CCrpClient()
1.49 + {
1.50 + }
1.51 +
1.52 +CCrpClient::CCrpClient()
1.53 + {
1.54 + }
1.55 +
1.56 +void CCrpClient::ConstructL()
1.57 + {
1.58 + BaseConstructL(TUid::Uid(0xa0005923),KNullDesC8()); //lint !e569 Loss of information (arg. no. 1) (32 bits to 31 bits)
1.59 + }
1.60 +
1.61 +void CCrpClient::HandleMessage(const TDesC8& /*aData*/)
1.62 + {
1.63 + }
1.64 +
1.65 +void CCrpClient::OnReplace()
1.66 + {
1.67 + __DEBUGGER();
1.68 + }
1.69 +
1.70 +
1.71 +
1.72 +
1.73 +/**
1.74 +CRP WIN
1.75 +*/
1.76 +
1.77 +
1.78 +//static configuration data, definitions and default assignments
1.79 +TBool CCrpWin::iEnabled = ETrue;
1.80 +TBool CCrpWin::iTransparent = ETrue;
1.81 +
1.82 +
1.83 +CCrpWin* CCrpWin::NewLC(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc)
1.84 + {
1.85 + CCrpWin* self = new (ELeave) CCrpWin(aWs, aGroup, aParent, aGc);
1.86 + CleanupStack::PushL(self);
1.87 + self->ConstructL();
1.88 + return self;
1.89 + }
1.90 +
1.91 +void CCrpWin::LoadConfiguration(const MTestStepConfigurationContext* aContext)
1.92 + {
1.93 + aContext->GetBool(KT_WservStressParamEnabled, iEnabled);
1.94 + aContext->GetBool(KT_WservStressParamTransparent, iTransparent);
1.95 + }
1.96 +
1.97 +CCrpWin::~CCrpWin()
1.98 + {
1.99 + delete iCrp;
1.100 + }
1.101 +
1.102 +void CCrpWin::SetSize(const TSize & aSize)
1.103 + {
1.104 + CCompWin::SetSize(aSize);
1.105 + }
1.106 +
1.107 +void CCrpWin::Redraw(const TRect& aRect)
1.108 + {
1.109 + iWsGc.Activate(*iWindow);
1.110 + iWsGc.Reset();
1.111 +
1.112 + iRedrawWindow->BeginRedraw(aRect);
1.113 + if(iCrp)
1.114 + {
1.115 + iCrp->DrawCrp(iWsGc,iSize);
1.116 + }
1.117 + iRedrawWindow->EndRedraw();
1.118 +
1.119 + iWsGc.Deactivate();
1.120 + }
1.121 +
1.122 +void CCrpWin::DrawBitmap(CFbsBitGc* aGc, TRect& aClip, TPoint& aOrigin)
1.123 + {
1.124 + aGc->Reset();
1.125 + TPoint origin = iPos + aOrigin;
1.126 + aGc->SetOrigin(origin);
1.127 +
1.128 + TRect clip(origin, iSize);
1.129 + clip.Intersection(aClip);
1.130 + clip.Move(-origin);
1.131 + aGc->SetClippingRect(clip);
1.132 +
1.133 + TRect windowRect(origin,iSize);
1.134 + windowRect.Move(-origin);
1.135 +
1.136 + aGc->SetDrawMode(CGraphicsContext::EDrawModePEN);
1.137 + aGc->SetPenColor(TRgb(255,0,0));
1.138 + aGc->SetPenStyle(CGraphicsContext::ESolidPen);
1.139 + aGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
1.140 + aGc->SetBrushColor(TRgb(255,0,0));
1.141 + aGc->DrawRect(windowRect);
1.142 + aGc->SetBrushColor(TRgb(0,0,255));
1.143 + aGc->DrawEllipse(windowRect);
1.144 +
1.145 + CCompWin::DrawBitmap(aGc, aClip, aOrigin);
1.146 + }
1.147 +
1.148 +CCrpWin::CCrpWin(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc) :
1.149 + CCompWin(aWs, aGroup, aParent, aGc)
1.150 + {
1.151 + }
1.152 +
1.153 +void CCrpWin::ConstructL()
1.154 + {
1.155 + CCompWin::PreConstructL(iTransparent);
1.156 + iCrp = CCrpClient::NewL();
1.157 + CCompWin::PostConstructL();
1.158 + }
1.159 +
1.160 +void CCrpWin::DumpDetails(RFile& aFile, TInt aDepth)
1.161 + {
1.162 + TBuf8<256> buf;
1.163 + buf.SetLength(0);
1.164 + for (TInt d = 0; d < aDepth; ++d)
1.165 + {
1.166 + buf.Append(_L8(" "));
1.167 + }
1.168 + buf.Append(_L8("Transparent = ["));
1.169 + buf.AppendNum((TInt64)iTransparent);
1.170 + buf.Append(_L8("]\r\n"));
1.171 + aFile.Write(buf);
1.172 + }
1.173 +
1.174 +