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 Room Level proxy class.
20 #ifndef CROOMLEVELPROXY_H
21 #define CROOMLEVELPROXY_H
25 #include <RoomLevelBase.h>
26 #include <mmf/common/mmfcontrollerframework.h>
27 #include <CustomCommandUtility.h>
28 #include "RoomLevelMessageTypes.h"
29 #include <MRoomLevelObserver.h>
30 #include <MAudioEffectObserver.h>
32 // FORWARD DECLARATION
33 class CRoomLevelEventObserver;
34 //class CEnvironmentalReverbProxy;
39 * Interface class to be implemented by objects that receives callbacks from Room Level Event Observer.
43 class MRoomLevelCallback
48 * Invoked by the RoomLevel Event Observer when the RoomLevel object changes state
50 * @param aBuffer Buffer containing the RoomLevel data
52 virtual void RoomLevelEvent( const TDesC8& aDataPckg ) = 0;
57 * This is the RoomLevel effect proxy class responsible for handling framework messages.
59 * @lib RoomLevelProxy.lib
63 class CRoomLevelProxy : public CRoomLevel,
64 public MRoomLevelCallback
66 public: // Constructors and destructor
70 * Factory function for creating the RoomLevel proxy object.
72 * @param aMessageHandler reference to message handler
73 * @param aCustomCommand reference to custom command utility
74 * @return pointer to a RoomLevel proxy object
76 IMPORT_C static CRoomLevelProxy* NewL( TMMFMessageDestinationPckg aMessageHandler,
77 MCustomCommand& aCustomCommand,
78 CCustomInterfaceUtility* aCustomInterfaceUtility );
83 virtual ~CRoomLevelProxy();
85 public: // functions from base class
89 * Apply effect settings
92 IMPORT_C virtual void ApplyL();
95 public: // functions from MRoomLevelCallback
98 * From MRoomLevelCallback
99 * Changes to RoomLevel data has occured
101 * @param aBuffer Buffer containing serialized RoomLevel data
103 void RoomLevelEvent( const TDesC8& aDataPckg );
107 * Set reverb unique ID
110 * @param aReverb A reference to the client reverb object
112 virtual TInt AttachReverb(CEnvironmentalReverb& aReverb);
115 * Delete related message handler and custom interface
118 * @param aReverb A reference to the client reverb object
120 virtual TInt DettachReverb(CEnvironmentalReverb& aReverb);
127 * Private C++ constructor for this class.
129 * @param aMessageHandler reference to message handler
130 * @param aCustomCommand reference to custom command utility
133 CRoomLevelProxy(TMMFMessageDestinationPckg aMessageHandler, MCustomCommand& aCustomCommand,
134 CCustomInterfaceUtility* aCustomInterfaceUtility);
137 * Second phase constructor for this class.
144 * Start the active observer.
149 void StartObserver();
155 // Pointer to custom command utility
156 MCustomCommand* iCustomCommand;
157 // Message handler handle
158 TMMFMessageDestinationPckg iMessageHandler;
159 // RoomLevel Event Observer
160 CRoomLevelEventObserver* iRoomLevelEventObserver;
161 // Pointer to the custom interface utility
162 CCustomInterfaceUtility* iCustomInterfaceUtility;
166 #endif // of CROOMLEVELPROXY_H