00001 /* 00002 * ============================================================================== 00003 * Name : MAudioEqualizerObserver.h 00004 * Part of : Effects Framework 00005 * Description : This is the definition of the Audio Equalizer effect observer class. 00006 * 00007 * Version : 2 00008 * 00009 * Copyright © 2004 Nokia Corporation. 00010 * This material, including documentation and any related 00011 * computer programs, is protected by copyright controlled by 00012 * Nokia Corporation. All rights are reserved. Copying, 00013 * including reproducing, storing, adapting or translating, any 00014 * or all of this material requires the prior written consent of 00015 * Nokia Corporation. This material also contains confidential 00016 * information which may not be disclosed to others without the 00017 * prior written consent of Nokia Corporation. 00018 * ============================================================================== 00019 */ 00020 00021 #ifndef MAUDIOEQUALIZEROBSERVER_H 00022 #define MAUDIOEQUALIZEROBSERVER_H 00023 00024 // INCLUDES 00025 00026 #include <e32base.h> 00027 #include <AudioEqualizerBase.h> 00028 #include <MAudioEffectObserver.h> 00029 00030 00031 // CLASS DECLARATION 00032 00041 class MAudioEqualizerObserver : public MAudioEffectObserver 00042 { 00043 public: 00044 static const TUint KBand1Changed = KSpecificEffectBase + 1; 00045 static const TUint KBand2Changed = KSpecificEffectBase + 2; 00046 static const TUint KBand3Changed = KSpecificEffectBase + 3; 00047 static const TUint KBand4Changed = KSpecificEffectBase + 4; 00048 static const TUint KBand5Changed = KSpecificEffectBase + 5; 00049 static const TUint KBand6Changed = KSpecificEffectBase + 6; 00050 static const TUint KBand7Changed = KSpecificEffectBase + 7; 00051 static const TUint KBand8Changed = KSpecificEffectBase + 8; 00052 static const TUint KBand9Changed = KSpecificEffectBase + 9; 00053 static const TUint KBand10Changed = KSpecificEffectBase + 10; 00054 static const TUint KBand11Changed = KSpecificEffectBase + 11; 00055 static const TUint KBand12Changed = KSpecificEffectBase + 12; 00056 }; 00057 00058 // of MAUDIOEQUALIZEROBSERVER_H 00059 #endif 00060 00061 // End of File