os/graphics/windowing/windowserver/test/t_stress/inc/crpwin.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/test/t_stress/inc/crpwin.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,80 @@
     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 +#ifndef CRPWIN_H
    1.26 +#define CRPWIN_H
    1.27 +
    1.28 +
    1.29 +#include <w32std.h>
    1.30 +#include "compwin.h"
    1.31 +
    1.32 +/*******************************************************************************
    1.33 +Client side of the crp used by CCrpWin
    1.34 +*******************************************************************************/
    1.35 +class CCrpClient : public CWsGraphic
    1.36 +	{
    1.37 +public:
    1.38 +	static CCrpClient * NewL();
    1.39 +	~CCrpClient();
    1.40 +	void DrawCrp(CWindowGc& aGc,const TRect& aRect);
    1.41 +
    1.42 +private:
    1.43 +	CCrpClient();
    1.44 +	void ConstructL();
    1.45 +
    1.46 +private: // from CWsGraphic
    1.47 +	virtual void HandleMessage(const TDesC8& aData);
    1.48 +	virtual void OnReplace();
    1.49 +	};
    1.50 +
    1.51 +/*******************************************************************************
    1.52 +These windows have a crp that draws over the full extent of the window.
    1.53 +Currently only draws a simple square with an elipse within (NO ANIMATION).
    1.54 +*******************************************************************************/
    1.55 +_LIT8(KCrpWindowType, "CrpDrawer");
    1.56 +class CCrpWin : public CCompWin
    1.57 +	{ 
    1.58 +public:
    1.59 +	static CCrpWin* NewLC(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc);
    1.60 +	static void LoadConfiguration(const MTestStepConfigurationContext* aContext);
    1.61 +	static TBool IsEnabled() { return iEnabled; }
    1.62 +	~CCrpWin();
    1.63 +	
    1.64 +	void SetSize(const TSize & aSize);
    1.65 +	void Redraw(const TRect& aRect);
    1.66 +	void DrawBitmap(CFbsBitGc* aGc, TRect& aClip, TPoint& aOrigin);
    1.67 +	virtual const TDesC8& TypeName() { return KCrpWindowType; }
    1.68 +	void DumpDetails(RFile & aFile, TInt aDepth);
    1.69 +	
    1.70 +protected:
    1.71 +	CCrpWin(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc);
    1.72 +	void ConstructL();
    1.73 +	
    1.74 +private:
    1.75 +	static TBool iEnabled;
    1.76 +	static TBool iTransparent;
    1.77 +	CCrpClient* iCrp;
    1.78 +	};
    1.79 +
    1.80 +
    1.81 +
    1.82 +
    1.83 +#endif // CRPWIN_H