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 DistanceAttenuation proxy class.
20 #ifndef CDISTANCEATTENUATIONPROXY_H
21 #define CDISTANCEATTENUATIONPROXY_H
26 #include <DistanceAttenuationBase.h>
27 #include <mmf/common/mmfcontrollerframework.h>
28 #include <CustomCommandUtility.h>
29 #include "DistanceAttenuationMessageTypes.h"
30 #include <MDistanceAttenuationObserver.h>
32 // FORWARD DECLARATION
33 class CDistanceAttenuationEventObserver;
38 * Interface class to be implemented by objects that receives callbacks from Distance Attenuation Event Observer.
42 class MDistanceAttenuationCallback
47 * Invoked by the DistanceAttenuation Event Observer when the DistanceAttenuation object changes state
49 * @param aBuffer Buffer containing the DistanceAttenuation data
51 virtual void DistanceAttenuationEvent( const TDesC8& aDataPckg ) = 0;
56 * This is the DistanceAttenuation effect proxy class responsible for handling framework messages.
58 * @lib DistanceAttenuationProxy.lib
62 class CDistanceAttenuationProxy : public CDistanceAttenuation,
63 public MDistanceAttenuationCallback
65 public: // Constructors and destructor
69 * Factory function for creating the DistanceAttenuation proxy object.
71 * @param aMessageHandler reference to message handler
72 * @param aCustomCommand reference to custom command utility
73 * @return pointer to a DistanceAttenuation proxy object
75 IMPORT_C static CDistanceAttenuationProxy* NewL( TMMFMessageDestinationPckg aMessageHandler,
76 MCustomCommand& aCustomCommand,
77 CCustomInterfaceUtility* aCustomInterfaceUtility );
82 virtual ~CDistanceAttenuationProxy();
84 public: // functions from base class
88 * Apply effect settings
91 IMPORT_C virtual void ApplyL();
93 public: // functions from MDistanceAttenuationCallback
96 * From MDistanceAttenuationCallback
97 * Changes to DistanceAttenuation data has occured
99 * @param aBuffer Buffer containing serialized DistanceAttenuation data
101 void DistanceAttenuationEvent( 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 CDistanceAttenuationProxy(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 // DistanceAttenuation Event Observer
137 CDistanceAttenuationEventObserver* iDistanceAttenuationEventObserver;
138 // Pointer to the custom interface utility
139 CCustomInterfaceUtility* iCustomInterfaceUtility;
145 #endif // of CDISTANCEATTENUATIONPROXY_H