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: #ifndef CRPWIN_H sl@0: #define CRPWIN_H sl@0: sl@0: sl@0: #include sl@0: #include "compwin.h" sl@0: sl@0: /******************************************************************************* sl@0: Client side of the crp used by CCrpWin sl@0: *******************************************************************************/ sl@0: class CCrpClient : public CWsGraphic sl@0: { sl@0: public: sl@0: static CCrpClient * NewL(); sl@0: ~CCrpClient(); sl@0: void DrawCrp(CWindowGc& aGc,const TRect& aRect); sl@0: sl@0: private: sl@0: CCrpClient(); sl@0: void ConstructL(); sl@0: sl@0: private: // from CWsGraphic sl@0: virtual void HandleMessage(const TDesC8& aData); sl@0: virtual void OnReplace(); sl@0: }; sl@0: sl@0: /******************************************************************************* sl@0: These windows have a crp that draws over the full extent of the window. sl@0: Currently only draws a simple square with an elipse within (NO ANIMATION). sl@0: *******************************************************************************/ sl@0: _LIT8(KCrpWindowType, "CrpDrawer"); sl@0: class CCrpWin : public CCompWin sl@0: { sl@0: public: sl@0: static CCrpWin* NewLC(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc); sl@0: static void LoadConfiguration(const MTestStepConfigurationContext* aContext); sl@0: static TBool IsEnabled() { return iEnabled; } sl@0: ~CCrpWin(); sl@0: sl@0: void SetSize(const TSize & aSize); sl@0: void Redraw(const TRect& aRect); sl@0: void DrawBitmap(CFbsBitGc* aGc, TRect& aClip, TPoint& aOrigin); sl@0: virtual const TDesC8& TypeName() { return KCrpWindowType; } sl@0: void DumpDetails(RFile & aFile, TInt aDepth); sl@0: sl@0: protected: sl@0: CCrpWin(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc); sl@0: void ConstructL(); sl@0: sl@0: private: sl@0: static TBool iEnabled; sl@0: static TBool iTransparent; sl@0: CCrpClient* iCrp; sl@0: }; sl@0: sl@0: sl@0: sl@0: sl@0: #endif // CRPWIN_H