Update contrib.
2 * Copyright (c) 2004 Nokia Corporation and/or its subsidiary(-ies).
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".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
14 * Description: This is the definition of the Environmental Reverb proxy class.
20 #ifndef CENVIRONMENTALREVERBPROXY_H
21 #define CENVIRONMENTALREVERBPROXY_H
26 #include "EnvironmentalReverbMessageTypes.h"
27 #include <EnvironmentalReverbBase.h>
28 #include <mmf/common/mmfcontrollerframework.h>
29 #include <CustomCommandUtility.h>
30 #include <MEnvironmentalReverbObserver.h>
31 #include <MAudioEffectObserver.h>
33 // FORWARD DECLARATION
34 class CEnvironmentalReverbEventObserver;
35 class CRoomLevelProxy;
40 * Interface class to be implemented by objects that receives callbacks from Environmental Reverb Event Observer.
44 class MEnvironmentalReverbCallback
49 * Invoked by the EnvironmentalReverb Event Observer when the EnvironmentalReverb object changes state
51 * @param aBuffer Buffer containing the EnvironmentalReverb data
53 virtual void EnvironmentalReverbEvent( const TDesC8& aDataPckg ) = 0;
58 * This is the EnvironmentalReverb effect proxy class responsible for handling framework messages.
60 * @lib EnvironmentalReverbProxy.lib
64 class CEnvironmentalReverbProxy : public CEnvironmentalReverb,
65 public MEnvironmentalReverbCallback
67 public: // Constructors and destructor
71 * Factory function for creating the EnvironmentalReverb proxy object.
73 * @param aMessageHandler reference to message handler
74 * @param aCustomCommand reference to custom command utility
75 * @return pointer to a EnvironmentalReverb proxy object
77 IMPORT_C static CEnvironmentalReverbProxy* NewL( TMMFMessageDestinationPckg aMessageHandler,
78 MCustomCommand& aCustomCommand,
79 CCustomInterfaceUtility* aCustomInterfaceUtility );
84 virtual ~CEnvironmentalReverbProxy();
86 public: // functions from base class
90 * Apply effect settings
93 IMPORT_C virtual void ApplyL();
96 * Gets unique ID used by Adapation to identify stream specific Reverb
100 virtual TUint32 GetUniqueId() const;
103 * Add the reference to Room Level object to array
105 * @return error/no error
107 virtual TInt RoomLevelAttached(CRoomLevelProxy& aProxy);
111 * Remove the reference to Room Level object from array
113 * @return error/no error
116 virtual TInt RoomLevelDetached(CRoomLevelProxy& aProxy);
119 public: // functions from MEnvironmentalReverbCallback
122 * From MEnvironmentalReverbCallback
123 * Changes to EnvironmentalReverb data has occured
125 * @param aBuffer Buffer containing serialized EnvironmentalReverb data
127 void EnvironmentalReverbEvent( const TDesC8& aDataPckg );
132 * Private C++ constructor for this class.
134 * @param aMessageHandler reference to message handler
135 * @param aCustomCommand reference to custom command utility
138 CEnvironmentalReverbProxy(TMMFMessageDestinationPckg aMessageHandler, MCustomCommand& aCustomCommand,
139 CCustomInterfaceUtility* aCustomInterfaceUtility);
142 * Second phase constructor for this class.
149 * Start the active observer.
154 void StartObserver();
158 // Pointer to custom command utility
159 MCustomCommand* iCustomCommand;
160 // Message handler handle
161 TMMFMessageDestinationPckg iMessageHandler;
162 // EnvironmentalReverb Event Observer
163 CEnvironmentalReverbEventObserver* iEnvironmentalReverbEventObserver;
164 // Pointer to the custom interface utility
165 CCustomInterfaceUtility* iCustomInterfaceUtility;
167 RPointerArray<CRoomLevelProxy> iCRoomLevelProxyList;
171 #endif // of CENVIRONMENTALREVERBPROXY_H