1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/mm_plat/audio_effects_proxy_api/inc/LoudnessProxy.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,147 @@
1.4 +/*
1.5 +* Copyright (c) 2004 Nokia Corporation and/or its subsidiary(-ies).
1.6 +* All rights reserved.
1.7 +* This component and the accompanying materials are made available
1.8 +* under the terms of "Eclipse Public License v1.0"
1.9 +* which accompanies this distribution, and is available
1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.11 +*
1.12 +* Initial Contributors:
1.13 +* Nokia Corporation - initial contribution.
1.14 +*
1.15 +* Contributors:
1.16 +*
1.17 +* Description: This is the definition of the Loudness proxy class.
1.18 +*
1.19 +*
1.20 +*/
1.21 +
1.22 +
1.23 +#ifndef CLOUDNESSPROXY_H
1.24 +#define CLOUDNESSPROXY_H
1.25 +
1.26 +// INCLUDES
1.27 +
1.28 +#include <e32base.h>
1.29 +#include <LoudnessBase.h>
1.30 +#include <mmf/common/mmfcontrollerframework.h>
1.31 +#include <CustomCommandUtility.h>
1.32 +#include "LoudnessMessageTypes.h"
1.33 +#include <MLoudnessObserver.h>
1.34 +
1.35 +// FORWARD DECLARATION
1.36 +class CLoudnessEventObserver;
1.37 +
1.38 +// CLASS DECLARATION
1.39 +
1.40 +/**
1.41 +* Interface class to be implemented by objects that receives callbacks from Loudness Event Observer.
1.42 +*
1.43 +* @since 3.0
1.44 +*/
1.45 +class MLoudnessCallback
1.46 + {
1.47 + public:
1.48 +
1.49 + /**
1.50 + * Invoked by the Loudness Event Observer when the Loudness object changes state
1.51 + * @since 3.0
1.52 + * @param aBuffer Buffer containing the Loudness data
1.53 + */
1.54 + virtual void LoudnessEvent( const TDesC8& aDataPckg ) = 0;
1.55 +
1.56 + };
1.57 +
1.58 +/**
1.59 +* This is the Loudness effect proxy class responsible for handling framework messages.
1.60 +*
1.61 +* @lib LoudnessProxy.lib
1.62 +* @since 3.0
1.63 +*/
1.64 +
1.65 +class CLoudnessProxy : public CLoudness,
1.66 + public MLoudnessCallback
1.67 + {
1.68 + public: // Constructors and destructor
1.69 +
1.70 + /**
1.71 + *
1.72 + * Factory function for creating the Loudness proxy object.
1.73 + * @since 3.0
1.74 + * @param aMessageHandler reference to message handler
1.75 + * @param aCustomCommand reference to custom command utility
1.76 + * @return pointer to a Loudness proxy object
1.77 + */
1.78 + IMPORT_C static CLoudnessProxy* NewL( TMMFMessageDestinationPckg aMessageHandler,
1.79 + MCustomCommand& aCustomCommand,
1.80 + CCustomInterfaceUtility* aCustomInterfaceUtility );
1.81 + /**
1.82 + *
1.83 + * Destructor
1.84 + */
1.85 + virtual ~CLoudnessProxy();
1.86 +
1.87 + public: // functions from base class
1.88 +
1.89 + /**
1.90 + * From CAudioEffect
1.91 + * Apply effect settings
1.92 + * @since 3.0
1.93 + */
1.94 + IMPORT_C virtual void ApplyL();
1.95 +
1.96 + public: // functions from MLoudnessCallback
1.97 +
1.98 + /**
1.99 + * From MLoudnessCallback
1.100 + * Changes to Loudness data has occured
1.101 + * @since 3.0
1.102 + * @param aBuffer Buffer containing serialized Loudness data
1.103 + */
1.104 + void LoudnessEvent( const TDesC8& aDataPckg );
1.105 +
1.106 + private:
1.107 +
1.108 + /**
1.109 + * Private C++ constructor for this class.
1.110 + * @since 3.0
1.111 + * @param aMessageHandler reference to message handler
1.112 + * @param aCustomCommand reference to custom command utility
1.113 + * @return -
1.114 + */
1.115 + CLoudnessProxy(TMMFMessageDestinationPckg aMessageHandler, MCustomCommand& aCustomCommand,
1.116 + CCustomInterfaceUtility* aCustomInterfaceUtility);
1.117 +
1.118 + /**
1.119 + * Second phase constructor for this class.
1.120 + * @since 3.0
1.121 + * @return -
1.122 + */
1.123 + void ConstructL();
1.124 +
1.125 + /**
1.126 + * Start the active observer.
1.127 + * @since 3.0
1.128 + * @param -
1.129 + * @return -
1.130 + */
1.131 + void StartObserver();
1.132 +
1.133 + private:
1.134 +
1.135 + // Pointer to custom command utility
1.136 + MCustomCommand* iCustomCommand;
1.137 + // Message handler handle
1.138 + TMMFMessageDestinationPckg iMessageHandler;
1.139 + // Loudness Event Observer
1.140 + CLoudnessEventObserver* iLoudnessEventObserver;
1.141 + // Pointer to the custom interface utility
1.142 + CCustomInterfaceUtility* iCustomInterfaceUtility;
1.143 +
1.144 +
1.145 +
1.146 + };
1.147 +
1.148 +#endif // of CLOUDNESSPROXY_H
1.149 +
1.150 +// End of File