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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
29 /*******************************************************************************
30 Client side of the crp used by CCrpWin
31 *******************************************************************************/
32 class CCrpClient : public CWsGraphic
35 static CCrpClient * NewL();
37 void DrawCrp(CWindowGc& aGc,const TRect& aRect);
43 private: // from CWsGraphic
44 virtual void HandleMessage(const TDesC8& aData);
45 virtual void OnReplace();
48 /*******************************************************************************
49 These windows have a crp that draws over the full extent of the window.
50 Currently only draws a simple square with an elipse within (NO ANIMATION).
51 *******************************************************************************/
52 _LIT8(KCrpWindowType, "CrpDrawer");
53 class CCrpWin : public CCompWin
56 static CCrpWin* NewLC(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc);
57 static void LoadConfiguration(const MTestStepConfigurationContext* aContext);
58 static TBool IsEnabled() { return iEnabled; }
61 void SetSize(const TSize & aSize);
62 void Redraw(const TRect& aRect);
63 void DrawBitmap(CFbsBitGc* aGc, TRect& aClip, TPoint& aOrigin);
64 virtual const TDesC8& TypeName() { return KCrpWindowType; }
65 void DumpDetails(RFile & aFile, TInt aDepth);
68 CCrpWin(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc);
72 static TBool iEnabled;
73 static TBool iTransparent;