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: sl@0: #include "crpwin.h" sl@0: sl@0: /******************************************************************************* sl@0: Client side of the crp used by CCrpWin sl@0: *******************************************************************************/ sl@0: sl@0: sl@0: CCrpClient * CCrpClient::NewL() sl@0: { sl@0: CCrpClient * self = new (ELeave) CCrpClient(); sl@0: CleanupStack::PushL(self); sl@0: self->ConstructL(); sl@0: CleanupStack::Pop(self); sl@0: return self; sl@0: } sl@0: sl@0: void CCrpClient::DrawCrp(CWindowGc& aGc,const TRect& aRect) sl@0: { sl@0: aGc.DrawWsGraphic(Id(),aRect); sl@0: CWsGraphic::Flush(); sl@0: } sl@0: sl@0: CCrpClient::~CCrpClient() sl@0: { sl@0: } sl@0: sl@0: CCrpClient::CCrpClient() sl@0: { sl@0: } sl@0: sl@0: void CCrpClient::ConstructL() sl@0: { sl@0: BaseConstructL(TUid::Uid(0xa0005923),KNullDesC8()); //lint !e569 Loss of information (arg. no. 1) (32 bits to 31 bits) sl@0: } sl@0: sl@0: void CCrpClient::HandleMessage(const TDesC8& /*aData*/) sl@0: { sl@0: } sl@0: sl@0: void CCrpClient::OnReplace() sl@0: { sl@0: __DEBUGGER(); sl@0: } sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: CRP WIN sl@0: */ sl@0: sl@0: sl@0: //static configuration data, definitions and default assignments sl@0: TBool CCrpWin::iEnabled = ETrue; sl@0: TBool CCrpWin::iTransparent = ETrue; sl@0: sl@0: sl@0: CCrpWin* CCrpWin::NewLC(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc) sl@0: { sl@0: CCrpWin* self = new (ELeave) CCrpWin(aWs, aGroup, aParent, aGc); sl@0: CleanupStack::PushL(self); sl@0: self->ConstructL(); sl@0: return self; sl@0: } sl@0: sl@0: void CCrpWin::LoadConfiguration(const MTestStepConfigurationContext* aContext) sl@0: { sl@0: aContext->GetBool(KT_WservStressParamEnabled, iEnabled); sl@0: aContext->GetBool(KT_WservStressParamTransparent, iTransparent); sl@0: } sl@0: sl@0: CCrpWin::~CCrpWin() sl@0: { sl@0: delete iCrp; sl@0: } sl@0: sl@0: void CCrpWin::SetSize(const TSize & aSize) sl@0: { sl@0: CCompWin::SetSize(aSize); sl@0: } sl@0: sl@0: void CCrpWin::Redraw(const TRect& aRect) sl@0: { sl@0: iWsGc.Activate(*iWindow); sl@0: iWsGc.Reset(); sl@0: sl@0: iRedrawWindow->BeginRedraw(aRect); sl@0: if(iCrp) sl@0: { sl@0: iCrp->DrawCrp(iWsGc,iSize); sl@0: } sl@0: iRedrawWindow->EndRedraw(); sl@0: sl@0: iWsGc.Deactivate(); sl@0: } sl@0: sl@0: void CCrpWin::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: aGc->SetClippingRect(clip); sl@0: sl@0: TRect windowRect(origin,iSize); sl@0: windowRect.Move(-origin); sl@0: sl@0: aGc->SetDrawMode(CGraphicsContext::EDrawModePEN); sl@0: aGc->SetPenColor(TRgb(255,0,0)); sl@0: aGc->SetPenStyle(CGraphicsContext::ESolidPen); sl@0: aGc->SetBrushStyle(CGraphicsContext::ESolidBrush); sl@0: aGc->SetBrushColor(TRgb(255,0,0)); sl@0: aGc->DrawRect(windowRect); sl@0: aGc->SetBrushColor(TRgb(0,0,255)); sl@0: aGc->DrawEllipse(windowRect); sl@0: sl@0: CCompWin::DrawBitmap(aGc, aClip, aOrigin); sl@0: } sl@0: sl@0: CCrpWin::CCrpWin(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc) : sl@0: CCompWin(aWs, aGroup, aParent, aGc) sl@0: { sl@0: } sl@0: sl@0: void CCrpWin::ConstructL() sl@0: { sl@0: CCompWin::PreConstructL(iTransparent); sl@0: iCrp = CCrpClient::NewL(); sl@0: CCompWin::PostConstructL(); sl@0: } sl@0: sl@0: void CCrpWin::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("]\r\n")); sl@0: aFile.Write(buf); sl@0: } sl@0: sl@0: