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 bassboost proxy class.
20 #ifndef CSOURCELOCATIONPROXY_H
21 #define CSOURCELOCATIONPROXY_H
26 #include <SourceLocationBase.h>
27 #include <mmf/common/mmfcontrollerframework.h>
28 #include <CustomCommandUtility.h>
29 #include "SourceLocationMessageTypes.h"
30 #include <MSourceLocationObserver.h>
31 #include <MAudioEffectObserver.h>
33 // FORWARD DECLARATION
34 class CSourceLocationEventObserver;
39 * Interface class to be implemented by objects that receives callbacks from SourceLocation Event Observer.
43 class MSourceLocationCallback
48 * Invoked by the SourceLocation Event Observer when the bassboost object changes state
50 * @param aBuffer Buffer containing the bassboost data
52 virtual void SourceLocationEvent( const TDesC8& aDataPckg ) = 0;
57 * This is the bassboost effect proxy class responsible for handling framework messages.
59 * @lib SourceLocationProxy.lib
63 class CSourceLocationProxy : public CSourceLocation,
64 public MSourceLocationCallback
66 public: // Constructors and destructor
70 * Factory function for creating the bassboost proxy object.
72 * @param aMessageHandler reference to message handler
73 * @param aCustomCommand reference to custom command utility
74 * @return pointer to a bassboost proxy object
76 IMPORT_C static CSourceLocationProxy* NewL( TMMFMessageDestinationPckg aMessageHandler,
77 MCustomCommand& aCustomCommand,
78 CCustomInterfaceUtility* aCustomInterfaceUtility );
83 virtual ~CSourceLocationProxy();
85 public: // functions from base class
89 * Apply effect settings
92 IMPORT_C virtual void ApplyL();
94 public: // functions from MSourceLocationCallback
97 * From MSourceLocationCallback
98 * Changes to bassboost data has occured
100 * @param aBuffer Buffer containing serialized bassboost data
102 void SourceLocationEvent( const TDesC8& aDataPckg );
107 * Private C++ constructor for this class.
109 * @param aMessageHandler reference to message handler
110 * @param aCustomCommand reference to custom command utility
113 CSourceLocationProxy(TMMFMessageDestinationPckg aMessageHandler, MCustomCommand& aCustomCommand,
114 CCustomInterfaceUtility* aCustomInterfaceUtility);
117 * Second phase constructor for this class.
124 * Start the active observer.
129 void StartObserver();
133 // Pointer to custom command utility
134 MCustomCommand* iCustomCommand;
135 // Message handler handle
136 TMMFMessageDestinationPckg iMessageHandler;
137 // SourceLocation Event Observer
138 CSourceLocationEventObserver* iSourceLocationEventObserver;
139 // Pointer to the custom interface utility
140 CCustomInterfaceUtility* iCustomInterfaceUtility;
144 #endif // of CSOURCELOCATIONPROXY_H