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 reverb effect observer class.
20 #ifndef MENVIRONMENTALREVERBOBSERVER_H
21 #define MENVIRONMENTALREVERBOBSERVER_H
26 #include <EnvironmentalReverbBase.h>
27 #include <MAudioEffectObserver.h>
33 * This is the reverb effect observer class. Object interested in receiving notification
34 * when the CEnvironmentalReverb object changes state should derive from this class and implement
40 class MEnvironmentalReverbObserver : public MAudioEffectObserver
43 static const TUint KDecayTimeChanged = KSpecificEffectBase + 1;
44 static const TUint KDecayHFRatioChanged = KSpecificEffectBase + 2;
45 static const TUint KDensityChanged = KSpecificEffectBase + 3;
46 static const TUint KDiffusionChanged = KSpecificEffectBase + 4;
47 static const TUint KReflectionsDelayChanged = KSpecificEffectBase + 5;
48 static const TUint KReflectionsLevelChanged = KSpecificEffectBase + 6;
49 static const TUint KReverbDelayChanged = KSpecificEffectBase + 7;
50 static const TUint KReverbLevelChanged = KSpecificEffectBase + 8;
51 static const TUint KRoomLevelChanged = KSpecificEffectBase + 9;
52 static const TUint KRoomHFLevelChanged = KSpecificEffectBase + 10;
55 #endif // of MENVIRONMENTALREVERBOBSERVER_H