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 Loudness proxy class.
20 #ifndef CLOUDNESSPROXY_H
21 #define CLOUDNESSPROXY_H
26 #include <LoudnessBase.h>
27 #include <mmf/common/mmfcontrollerframework.h>
28 #include <CustomCommandUtility.h>
29 #include "LoudnessMessageTypes.h"
30 #include <MLoudnessObserver.h>
32 // FORWARD DECLARATION
33 class CLoudnessEventObserver;
38 * Interface class to be implemented by objects that receives callbacks from Loudness Event Observer.
42 class MLoudnessCallback
47 * Invoked by the Loudness Event Observer when the Loudness object changes state
49 * @param aBuffer Buffer containing the Loudness data
51 virtual void LoudnessEvent( const TDesC8& aDataPckg ) = 0;
56 * This is the Loudness effect proxy class responsible for handling framework messages.
58 * @lib LoudnessProxy.lib
62 class CLoudnessProxy : public CLoudness,
63 public MLoudnessCallback
65 public: // Constructors and destructor
69 * Factory function for creating the Loudness proxy object.
71 * @param aMessageHandler reference to message handler
72 * @param aCustomCommand reference to custom command utility
73 * @return pointer to a Loudness proxy object
75 IMPORT_C static CLoudnessProxy* NewL( TMMFMessageDestinationPckg aMessageHandler,
76 MCustomCommand& aCustomCommand,
77 CCustomInterfaceUtility* aCustomInterfaceUtility );
82 virtual ~CLoudnessProxy();
84 public: // functions from base class
88 * Apply effect settings
91 IMPORT_C virtual void ApplyL();
93 public: // functions from MLoudnessCallback
96 * From MLoudnessCallback
97 * Changes to Loudness data has occured
99 * @param aBuffer Buffer containing serialized Loudness data
101 void LoudnessEvent( const TDesC8& aDataPckg );
106 * Private C++ constructor for this class.
108 * @param aMessageHandler reference to message handler
109 * @param aCustomCommand reference to custom command utility
112 CLoudnessProxy(TMMFMessageDestinationPckg aMessageHandler, MCustomCommand& aCustomCommand,
113 CCustomInterfaceUtility* aCustomInterfaceUtility);
116 * Second phase constructor for this class.
123 * Start the active observer.
128 void StartObserver();
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;
145 #endif // of CLOUDNESSPROXY_H