First public contribution.
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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
25 /*******************************************************************************
26 Client side of the crp used by CCrpWin
27 *******************************************************************************/
30 CCrpClient * CCrpClient::NewL()
32 CCrpClient * self = new (ELeave) CCrpClient();
33 CleanupStack::PushL(self);
35 CleanupStack::Pop(self);
39 void CCrpClient::DrawCrp(CWindowGc& aGc,const TRect& aRect)
41 aGc.DrawWsGraphic(Id(),aRect);
45 CCrpClient::~CCrpClient()
49 CCrpClient::CCrpClient()
53 void CCrpClient::ConstructL()
55 BaseConstructL(TUid::Uid(0xa0005923),KNullDesC8()); //lint !e569 Loss of information (arg. no. 1) (32 bits to 31 bits)
58 void CCrpClient::HandleMessage(const TDesC8& /*aData*/)
62 void CCrpClient::OnReplace()
75 //static configuration data, definitions and default assignments
76 TBool CCrpWin::iEnabled = ETrue;
77 TBool CCrpWin::iTransparent = ETrue;
80 CCrpWin* CCrpWin::NewLC(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc)
82 CCrpWin* self = new (ELeave) CCrpWin(aWs, aGroup, aParent, aGc);
83 CleanupStack::PushL(self);
88 void CCrpWin::LoadConfiguration(const MTestStepConfigurationContext* aContext)
90 aContext->GetBool(KT_WservStressParamEnabled, iEnabled);
91 aContext->GetBool(KT_WservStressParamTransparent, iTransparent);
99 void CCrpWin::SetSize(const TSize & aSize)
101 CCompWin::SetSize(aSize);
104 void CCrpWin::Redraw(const TRect& aRect)
106 iWsGc.Activate(*iWindow);
109 iRedrawWindow->BeginRedraw(aRect);
112 iCrp->DrawCrp(iWsGc,iSize);
114 iRedrawWindow->EndRedraw();
119 void CCrpWin::DrawBitmap(CFbsBitGc* aGc, TRect& aClip, TPoint& aOrigin)
122 TPoint origin = iPos + aOrigin;
123 aGc->SetOrigin(origin);
125 TRect clip(origin, iSize);
126 clip.Intersection(aClip);
128 aGc->SetClippingRect(clip);
130 TRect windowRect(origin,iSize);
131 windowRect.Move(-origin);
133 aGc->SetDrawMode(CGraphicsContext::EDrawModePEN);
134 aGc->SetPenColor(TRgb(255,0,0));
135 aGc->SetPenStyle(CGraphicsContext::ESolidPen);
136 aGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
137 aGc->SetBrushColor(TRgb(255,0,0));
138 aGc->DrawRect(windowRect);
139 aGc->SetBrushColor(TRgb(0,0,255));
140 aGc->DrawEllipse(windowRect);
142 CCompWin::DrawBitmap(aGc, aClip, aOrigin);
145 CCrpWin::CCrpWin(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc) :
146 CCompWin(aWs, aGroup, aParent, aGc)
150 void CCrpWin::ConstructL()
152 CCompWin::PreConstructL(iTransparent);
153 iCrp = CCrpClient::NewL();
154 CCompWin::PostConstructL();
157 void CCrpWin::DumpDetails(RFile& aFile, TInt aDepth)
161 for (TInt d = 0; d < aDepth; ++d)
163 buf.Append(_L8(" "));
165 buf.Append(_L8("Transparent = ["));
166 buf.AppendNum((TInt64)iTransparent);
167 buf.Append(_L8("]\r\n"));