lafagnosticuifoundation/graphicseffects/test/inc/t_gfxtransadapterstub.h
author William Roberts <williamr@symbian.org>
Thu, 08 Apr 2010 21:17:06 +0100
branchCompilerCompatibility
changeset 12 63e62fffcf54
parent 0 2f259fa3e83a
permissions -rw-r--r--
Change EXPORT_C in header file into IMPORT_C, to fix Bug 2478

// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of "Eclipse Public License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
//
// Initial Contributors:
// Nokia Corporation - initial contribution.
//
// Contributors:
//
// Description:
//

/**
 @file
 @test
 @internalComponent - Internal Symbian test code
*/

#ifndef _T_GFXTRANSADAPTERSTUB_H_
#define _T_GFXTRANSADAPTERSTUB_H_

#include <e32base.h>

#include <gfxtranseffect/gfxtransadapter.h>

class CCoeControl;

/** 
A class containing the basic, stub methods for an engine adapter.  The
adapter sits between the client and the engine, and will need to be customised
for each engine.

This is a fake implementation of transition engine for testing purposes.
It's goal is to create a correct TControlPolicy so that transition could be started.
This code was created to test the fix for defect INC109405: Problem with sequential Gfxtranseffect registrations 
*/
NONSHARABLE_CLASS(CGfxTransAdapterStub) : public CBase, public MGfxTransAdapter
	{
private:
	CGfxTransAdapterStub(MGfxTransClient* aClient);
	~CGfxTransAdapterStub();
public:
	void ConstructL();
public: //MGfxTransAdapter
	TInt HandleClientState(TClientState aState, const CCoeControl *aKey, TInt aHandle); 
	TBool IsActive();
	TControlPolicy* GetTransitionPolicies(TInt &aCount);
	void StartTransition(TInt aHandle);
	void HandleParticpantUpdate(TInt aHandle, const CParticipantData* aParticipant, RWsGraphicMsgBuf* aCommandBuffer, const TRect& aDrawRect, const TRect& aBoundingRect);
	void BeginFullScreen(TUint aAction, const TRect &aEffectArea);
	void BeginFullScreen(TUint aAction, const TRect &aEffectArea, TUint aType, const TDesC8& aParams);
	void EndFullScreen();
	void AbortFullScreen();
	void NotifyExternalState(TInt aState, const TDesC8* aArg);
private:
	friend class MGfxTransAdapter;
	MGfxTransClient* iClient;
	};

#endif //_T_GFXTRANSADAPTERSTUB_H_