os/mm/mm_plat/global_audio_settings_api/inc/MGlobalAudioSettingsObserver.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
* Copyright (c) 2004 Nokia Corporation and/or its subsidiary(-ies). 
sl@0
     3
* All rights reserved.
sl@0
     4
* This component and the accompanying materials are made available
sl@0
     5
* under the terms of "Eclipse Public License v1.0"
sl@0
     6
* which accompanies this distribution, and is available
sl@0
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     8
*
sl@0
     9
* Initial Contributors:
sl@0
    10
* Nokia Corporation - initial contribution.
sl@0
    11
*
sl@0
    12
* Contributors:
sl@0
    13
*
sl@0
    14
* Description:  This file contains definitions of GlobalAudioSettings observer.
sl@0
    15
*
sl@0
    16
*/
sl@0
    17
sl@0
    18
sl@0
    19
sl@0
    20
#ifndef MGLOBALAUDIOSETTINGSOBSERVER_H
sl@0
    21
#define MGLOBALAUDIOSETTINGSOBSERVER_H
sl@0
    22
sl@0
    23
// CONSTANTS
sl@0
    24
sl@0
    25
// CLASS DECLARATION
sl@0
    26
sl@0
    27
/**
sl@0
    28
 *  An interface to Global Audio Settings observer callback functions.
sl@0
    29
 *
sl@0
    30
 *  This serves as the method of communication between the client and the
sl@0
    31
 *  CGlobalAudioSettings object.
sl@0
    32
 *
sl@0
    33
 *  The class is a mixin and is intended to be inherited by the client class
sl@0
    34
 *  that is interested in observing the global audio settings. The functions
sl@0
    35
 *  encapsulated by this class are called when events occur which causes device
sl@0
    36
 *  audio settings to be changed that affects the overall audio behavior.
sl@0
    37
 *
sl@0
    38
 *  @lib GlobalAudioSettings.lib
sl@0
    39
 *  @since 3.2
sl@0
    40
 */
sl@0
    41
class MAudioSettingsObserver
sl@0
    42
    {
sl@0
    43
public:
sl@0
    44
    enum TGASEventId
sl@0
    45
        {
sl@0
    46
          EGASWarningTones,
sl@0
    47
          EGASMessageTones,
sl@0
    48
          EGASSilentProfile,
sl@0
    49
          EGASVibra,
sl@0
    50
          EGASMessageToneName,
sl@0
    51
          EGASEmailToneName,
sl@0
    52
          EGASRingingType,
sl@0
    53
          EGASVideoCallToneName,
sl@0
    54
          EGASRingingTone1Name,
sl@0
    55
          EGASRingingTone2Name,
sl@0
    56
          EGASKeyPadVolume,
sl@0
    57
          EGASSilenceMode
sl@0
    58
        };
sl@0
    59
sl@0
    60
public:
sl@0
    61
    /**
sl@0
    62
    * Invoked by the Global Audio Settings object when audio setting has changed.
sl@0
    63
    *
sl@0
    64
    * @since 3.2
sl@0
    65
    * @param CGlobalAudioSettings& A reference to Global Audio Settings object
sl@0
    66
    *   which invoked the callback.
sl@0
    67
    * @param aSetting Specific id of the audio setting that changed.
sl@0
    68
    */
sl@0
    69
    virtual void SettingsChanged(CGlobalAudioSettings& aGlobalAudioSettings, TGASEventId aSetting) = 0;
sl@0
    70
    };
sl@0
    71
sl@0
    72
#endif      // MGLOBALAUDIOSETTINGSOBSERVER_H
sl@0
    73
sl@0
    74
// End of File