os/mm/mm_plat/global_audio_settings_api/inc/MGlobalAudioSettingsObserver.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     1 /*
     2 * Copyright (c) 2004 Nokia Corporation and/or its subsidiary(-ies). 
     3 * All rights reserved.
     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".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description:  This file contains definitions of GlobalAudioSettings observer.
    15 *
    16 */
    17 
    18 
    19 
    20 #ifndef MGLOBALAUDIOSETTINGSOBSERVER_H
    21 #define MGLOBALAUDIOSETTINGSOBSERVER_H
    22 
    23 // CONSTANTS
    24 
    25 // CLASS DECLARATION
    26 
    27 /**
    28  *  An interface to Global Audio Settings observer callback functions.
    29  *
    30  *  This serves as the method of communication between the client and the
    31  *  CGlobalAudioSettings object.
    32  *
    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.
    37  *
    38  *  @lib GlobalAudioSettings.lib
    39  *  @since 3.2
    40  */
    41 class MAudioSettingsObserver
    42     {
    43 public:
    44     enum TGASEventId
    45         {
    46           EGASWarningTones,
    47           EGASMessageTones,
    48           EGASSilentProfile,
    49           EGASVibra,
    50           EGASMessageToneName,
    51           EGASEmailToneName,
    52           EGASRingingType,
    53           EGASVideoCallToneName,
    54           EGASRingingTone1Name,
    55           EGASRingingTone2Name,
    56           EGASKeyPadVolume,
    57           EGASSilenceMode
    58         };
    59 
    60 public:
    61     /**
    62     * Invoked by the Global Audio Settings object when audio setting has changed.
    63     *
    64     * @since 3.2
    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.
    68     */
    69     virtual void SettingsChanged(CGlobalAudioSettings& aGlobalAudioSettings, TGASEventId aSetting) = 0;
    70     };
    71 
    72 #endif      // MGLOBALAUDIOSETTINGSOBSERVER_H
    73 
    74 // End of File