os/mm/mm_plat/audio_effects_proxy_api/inc/LoudnessProxy.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2004 Nokia Corporation and/or its subsidiary(-ies). 
     3 * All rights reserved.
     4 * This component and the accompanying materials are made available
     5 * under the terms of "Eclipse Public License v1.0"
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description:  This is the definition of the Loudness proxy class.
    15 *
    16 *
    17 */
    18 
    19 
    20 #ifndef CLOUDNESSPROXY_H
    21 #define CLOUDNESSPROXY_H
    22 
    23 // INCLUDES
    24 
    25 #include <e32base.h>
    26 #include <LoudnessBase.h>
    27 #include <mmf/common/mmfcontrollerframework.h>
    28 #include <CustomCommandUtility.h>
    29 #include "LoudnessMessageTypes.h"
    30 #include <MLoudnessObserver.h>
    31 
    32 // FORWARD DECLARATION
    33 class CLoudnessEventObserver;
    34 
    35 // CLASS DECLARATION
    36 
    37 /**
    38 *  Interface class to be implemented by objects that receives callbacks from Loudness Event Observer.
    39 *
    40 *  @since 3.0
    41 */
    42 class MLoudnessCallback
    43     {
    44     public:
    45 
    46         /**
    47         * Invoked by the Loudness Event Observer when the Loudness object changes state
    48         * @since 3.0
    49         * @param aBuffer Buffer containing the Loudness data
    50         */
    51         virtual void LoudnessEvent( const TDesC8& aDataPckg ) = 0;
    52 
    53     };
    54 
    55 /**
    56 *  This is the Loudness effect proxy class responsible for handling framework messages.
    57 *
    58 *  @lib LoudnessProxy.lib
    59 *  @since 3.0
    60 */
    61 
    62 class CLoudnessProxy : public CLoudness,
    63 					         public MLoudnessCallback
    64 	{
    65 	public:		// Constructors and destructor
    66 
    67 	    /**
    68         *
    69         * Factory function for creating the Loudness proxy object.
    70         * @since 3.0
    71         * @param aMessageHandler reference to message handler
    72         * @param aCustomCommand reference to custom command utility
    73         * @return	pointer to a Loudness proxy object
    74         */
    75 		IMPORT_C static CLoudnessProxy* NewL( TMMFMessageDestinationPckg aMessageHandler,
    76                      						        MCustomCommand& aCustomCommand,
    77                       						        CCustomInterfaceUtility* aCustomInterfaceUtility );
    78 		/**
    79         *
    80         * Destructor
    81         */
    82 		virtual ~CLoudnessProxy();
    83 
    84 	public: // functions from base class
    85 
    86 		/**
    87 		* From CAudioEffect
    88         * Apply effect settings
    89         * @since 3.0
    90         */
    91 		IMPORT_C virtual void ApplyL();
    92 
    93 	public: // functions from MLoudnessCallback
    94 
    95 		/**
    96 		* From MLoudnessCallback
    97         * Changes to Loudness data has occured
    98         * @since 3.0
    99         * @param aBuffer Buffer containing serialized Loudness data
   100         */
   101 		void LoudnessEvent( const TDesC8& aDataPckg );
   102 
   103 	private:
   104 
   105 		/**
   106 		* Private C++ constructor for this class.
   107         * @since	3.0
   108         * @param aMessageHandler reference to message handler
   109         * @param aCustomCommand reference to custom command utility
   110         * @return	-
   111         */
   112 		CLoudnessProxy(TMMFMessageDestinationPckg aMessageHandler, MCustomCommand& aCustomCommand,
   113 					         CCustomInterfaceUtility* aCustomInterfaceUtility);
   114 
   115 		/**
   116 		* Second phase constructor for this class.
   117         * @since	3.0
   118         * @return -
   119         */
   120 		void ConstructL();
   121 
   122 		/**
   123 		* Start the active observer.
   124         * @since	3.0
   125 		* @param -
   126         * @return -
   127         */
   128         void StartObserver();
   129 
   130 	private:
   131 
   132 		// Pointer to custom command utility
   133 		MCustomCommand* iCustomCommand;
   134 		// Message handler handle
   135 		TMMFMessageDestinationPckg iMessageHandler;
   136 	 	// Loudness Event Observer
   137 		CLoudnessEventObserver* iLoudnessEventObserver;
   138 		// Pointer to the custom interface utility
   139     	CCustomInterfaceUtility* iCustomInterfaceUtility;
   140 
   141 
   142 
   143 	};
   144 
   145 #endif	// of CLOUDNESSPROXY_H
   146 
   147 // End of File