First public contribution.
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 file contains definitions of GlobalAudioSettings observer.
20 #ifndef MGLOBALAUDIOSETTINGSOBSERVER_H
21 #define MGLOBALAUDIOSETTINGSOBSERVER_H
28 * An interface to Global Audio Settings observer callback functions.
30 * This serves as the method of communication between the client and the
31 * CGlobalAudioSettings object.
33 * The class is a mixin and is intended to be inherited by the client class
34 * that is interested in observing the global audio settings. The functions
35 * encapsulated by this class are called when events occur which causes device
36 * audio settings to be changed that affects the overall audio behavior.
38 * @lib GlobalAudioSettings.lib
41 class MAudioSettingsObserver
53 EGASVideoCallToneName,
62 * Invoked by the Global Audio Settings object when audio setting has changed.
65 * @param CGlobalAudioSettings& A reference to Global Audio Settings object
66 * which invoked the callback.
67 * @param aSetting Specific id of the audio setting that changed.
69 virtual void SettingsChanged(CGlobalAudioSettings& aGlobalAudioSettings, TGASEventId aSetting) = 0;
72 #endif // MGLOBALAUDIOSETTINGSOBSERVER_H