diff -r 000000000000 -r bde4ae8d615e os/mm/mm_plat/audio_effects_proxy_api/inc/SourceDopplerProxy.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/os/mm/mm_plat/audio_effects_proxy_api/inc/SourceDopplerProxy.h Fri Jun 15 03:10:57 2012 +0200 @@ -0,0 +1,146 @@ +/* +* Copyright (c) 2004 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: This is the definition of the Source Doppler Proxy class. +* +* +*/ + + +#ifndef CSOURCEDOPPLERPROXY_H +#define CSOURCEDOPPLERPROXY_H + +// INCLUDES + +#include +#include +#include +#include +#include "SourceDopplerMessageTypes.h" +#include +#include + +// FORWARD DECLARATION +class CSourceDopplerEventObserver; + +// CLASS DECLARATION + +/** +* Interface class to be implemented by objects that receives callbacks from Source Doppler Event Observer. +* +* @since 3.0 +*/ +class MSourceDopplerCallback + { + public: + + /** + * Invoked by the Doppler Event Observer when the doppler object changes state + * @since 3.0 + * @param aBuffer Buffer containing the doppler data + */ + virtual void SourceDopplerEvent( const TDesC8& aDataPckg ) = 0; + + }; + +/** +* This is the doppler effect proxy class responsible for handling framework messages. +* +* @lib DopplerProxy.lib +* @since 3.0 +*/ + +class CSourceDopplerProxy : public CSourceDoppler, + public MSourceDopplerCallback + { + public: // Constructors and destructor + + /** + * + * Factory function for creating the doppler proxy object. + * @since 3.0 + * @param aMessageHandler reference to message handler + * @param aCustomCommand reference to custom command utility + * @return pointer to a doppler proxy object + */ + IMPORT_C static CSourceDopplerProxy* NewL( TMMFMessageDestinationPckg aMessageHandler, + MCustomCommand& aCustomCommand, + CCustomInterfaceUtility* aCustomInterfaceUtility ); + /** + * + * Destructor + */ + virtual ~CSourceDopplerProxy(); + + public: // functions from base class + + /** + * From CAudioEffect + * Apply effect settings + * @since 3.0 + */ + IMPORT_C virtual void ApplyL(); + + public: // functions from MSourceDopplerCallback + + /** + * From MDopplerCallback + * Changes to doppler data has occured + * @since 3.0 + * @param aBuffer Buffer containing serialized doppler data + */ + void SourceDopplerEvent( const TDesC8& aDataPckg ); + + private: + + /** + * Private C++ constructor for this class. + * @since 3.0 + * @param aMessageHandler reference to message handler + * @param aCustomCommand reference to custom command utility + * @return - + */ + CSourceDopplerProxy(TMMFMessageDestinationPckg aMessageHandler, MCustomCommand& aCustomCommand, + CCustomInterfaceUtility* aCustomInterfaceUtility); + + /** + * Second phase constructor for this class. + * @since 3.0 + * @return - + */ + void ConstructL(); + + /** + * Start the active observer. + * @since 3.0 + * @param - + * @return - + */ + void StartObserver(); + + private: + + // Pointer to custom command utility + MCustomCommand* iCustomCommand; + // Message handler handle + TMMFMessageDestinationPckg iMessageHandler; + // Doppler Event Observer + CSourceDopplerEventObserver* iDopplerEventObserver; + // Pointer to the custom interface utility + CCustomInterfaceUtility* iCustomInterfaceUtility; + + }; + +#endif // of CSOURCEDOPPLERPROXY_H + +// End of File