os/mm/mm_plat/global_audio_settings_api/inc/GlobalAudioSettings.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     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.
    15 *
    16 */
    17 
    18 
    19 
    20 #ifndef GLOBALAUDIOSETTINGS_H
    21 #define GLOBALAUDIOSETTINGS_H
    22 
    23 #include <e32base.h>
    24 
    25 class CGlobalAudioSettingsImpl;
    26 class MAudioSettingsObserver;
    27 class MAudioClientsListObserver;
    28 
    29 /**
    30 *  API for accessing global settings that affects Audio behavior.
    31 *
    32 *  This is API is intended to be used by Adaptation to read system attributes
    33 *  that affect audio behavior. This API also provides notification when any
    34 *  of these attribute values change.
    35 *
    36 *  @lib GlobalAudioSettings.lib
    37 *  @since S60 3.2
    38 */
    39 class CGlobalAudioSettings : public CBase
    40     {
    41     public:
    42         enum TAudioClientListType
    43             {
    44             EActiveAudioClients,
    45             EPausedAudioClients
    46             };
    47         
    48         enum TGASRingingType
    49             {
    50         /** The tone is played in a loop.
    51             */
    52             EGASRingingTypeRinging      = 0,
    53             /**
    54             * The tone is played in a loop. On the 1st round, the volume is gradually
    55             * increment from the lowest level to the set level.
    56             */
    57             EGASRingingTypeAscending    = 1,
    58             /** The tone is played only once.
    59             */
    60             EGASRingingTypeRingingOnce  = 2,
    61             /**
    62             * The phone only beeps once instead of playing the tone if one has been set.
    63             */
    64             EGASRingingTypeBeepOnce     = 3,
    65             /** The phone is silent.
    66             * This Ringing type is set when the phone is in silence mode.
    67             */
    68             EGASRingingTypeSilent       = 4
    69             };
    70         
    71         enum TGASKeypadVolume
    72                    {
    73                    EGASKeypadVolumeOff    = 0,
    74                    EGASKeypadVolumeLevel1 = 1,
    75                    EGASKeypadVolumeLevel2 = 2,
    76                    EGASKeypadVolumeLevel3 = 3
    77                    };
    78     public:
    79         /**
    80         * function for creating the GlobalAudioSettings
    81         *
    82         */
    83         IMPORT_C static CGlobalAudioSettings* NewL(MAudioSettingsObserver& aAudioSettingsObserver);
    84 
    85         /**
    86         * Destructor.
    87         *
    88         */
    89         IMPORT_C ~CGlobalAudioSettings();
    90 
    91         /**
    92         * Returns warning tones status set in the current profile.
    93         *
    94         * If warning tones are disabled in the current profile, Adaptation
    95         * should reject play requests having preferences mapped to warning tones.
    96         *
    97         * @since S60 3.2
    98         * @return TBool aEnable. ETrue if warning tones are enabled else EFalse.
    99         */
   100         IMPORT_C TBool IsWarningTonesEnabled();
   101 
   102         /**
   103         * Returns message tones status set in the current profile.
   104         *
   105         * If message tones are disabled in the current profile, Adaptation
   106         * should reject play requests having preferences mapped to message tones.
   107         *
   108         * @since S60 3.2
   109         * @return TBool aEnable. ETrue if message tones are enabled else EFalse.
   110         */
   111         IMPORT_C TBool IsMessageTonesEnabled();
   112 
   113         /**
   114         * Returns current silent profile status.
   115         *
   116         * @since S60 3.2
   117         * @return TBool aEnable. ETrue if current profile is silent profile
   118         * else EFalse.
   119         */
   120         IMPORT_C TBool IsSilentProfileEnabled();
   121 
   122         /**
   123         * Returns vibra status set in the current profile..
   124         *
   125         * If vibra is enabled in the current profile and vibra is not part of the
   126         * content, Adaptation should play vibra periodically for play requests
   127         * having preferences mapped to vibra settings.
   128         *
   129         * @since S60 3.2
   130         * @return TBool aEnable. ETrue if current profile vibra active else EFalse.
   131         */
   132         IMPORT_C TBool IsVibraEnabled();
   133 
   134         /**
   135         * Returns PublicSilence feature.
   136         *
   137         * If PublicSilence feature is enabled and if current profile is Silent
   138         * Profile, For all play requests having preferences mapped to Public
   139         * Silence setting, audio should only be played out via private accessory.
   140         * If no private accessory is connected, then playback should be rejected.
   141         *
   142         * @since S60 3.2
   143         * @return TBool aEnable. ETrue if PublicSilentMode is set else EFalse.
   144         */
   145         IMPORT_C TBool IsPublicSilenceEnabled();
   146         
   147         /**
   148         * Returns Message Alert Tone 
   149         *
   150         * 
   151         * The filename selected as the message alert tone in the
   152         * current profile.
   153         * 
   154         *
   155         * 
   156         * @return TDesC& aMessageAlertToneName. z:\\resource\\No_Sound.wav is returned if sound is off,else selected filename 
   157         * is returned
   158         */
   159         IMPORT_C TDesC& MessageAlertTone();
   160         
   161         /**
   162         * Returns Email Alert Tone status
   163         *
   164         * 
   165         * The filename selected as the email alert tone in the
   166         * current profile 
   167         * 
   168         *
   169         * 
   170         *  @return TBool aEnable. ETrue if current profile message tone is on else EFalse.
   171         */
   172         IMPORT_C TBool IsMessageAlertToneEnabled();
   173         /**
   174         * Returns Email Alert Tone 
   175         *
   176         * 
   177         * The filename selected as the email alert tone in the
   178         * current profile 
   179         * 
   180         *
   181         * 
   182         * @return TDesC& aEmailAlertToneName. z:\\resource\\No_Sound.wav is returned if sound is off,else selected filename 
   183         * is returned
   184         */
   185         IMPORT_C TDesC& EmailAlertTone();
   186         
   187         /**
   188        * Returns Email Alert Tone status
   189        *
   190        * 
   191        * The filename selected as the email alert tone in the
   192        * current profile 
   193        * 
   194        *
   195        * 
   196        *  @return TBool aEnable. ETrue if current profile email alert tone is on else EFalse.
   197        */
   198         IMPORT_C TBool IsEmailAlertToneEnabled();
   199         /**
   200         * Returns the RingingType
   201         *
   202         * 
   203         * Ringing type set in the current profile
   204         * 
   205         * 
   206         *
   207         * 
   208         * @return TGASRingingType aRingingType. 
   209         */
   210         
   211         IMPORT_C  TGASRingingType RingingType();
   212         
   213         /**
   214         * Returns Videocall Alert Tone 
   215         *
   216         * 
   217         * The filename selected as the video call alert tone in the
   218         * current profile 
   219         * 
   220         *
   221         * 
   222         * @return TDesC& aVideoCallAlertToneName. z:\\resource\\No_Sound.wav is returned if sound is off,else selected filename 
   223         * is returned
   224         */
   225         
   226         IMPORT_C TDesC& VideoCallAlertTone();
   227         /**
   228         * Returns Videocall Alert Tone status
   229         *
   230         * 
   231         * The filename selected as the video call alert tone in the
   232         * current profile 
   233         * 
   234         *
   235         * 
   236         * @return TBool aEnable. ETrue if current profile videocall alert tone is on else EFalse.
   237         */
   238         IMPORT_C TBool IsVideoCallAlertToneEnabled();
   239         /**
   240         * Returns Ringing Alert Tone 
   241         *
   242         * 
   243         * The filename selected as the ringing alert tone in the
   244         * current profile 
   245         * 
   246         *
   247         * @return TDesC& aRingingAlertTone1Name. z:\\resource\\No_Sound.wav is returned if sound is off,else selected filename 
   248         * is returned
   249         * 
   250         */
   251         
   252         IMPORT_C TDesC& RingingAlertTone1();
   253         /**
   254         * Returns Ringing Alert Tone1 status
   255         *
   256         * 
   257         * The filename selected as the ringing alert tone in the
   258         * current profile 
   259         * 
   260         *
   261         * 
   262         * @return TBool aEnable. ETrue if current profile ringing alert tone is on else EFalse.
   263         */
   264         IMPORT_C TBool IsRingingAlertTone1Enabled();
   265                 
   266         /**
   267         * Returns Ringing Alert Tone 2
   268         *
   269         * 
   270         * The filename selected as the ringing alert tone in the
   271         * current profile for the alternate line
   272         * 
   273         *
   274         * 
   275         * @return TDesC& aRingingAlertTone2Name. z:\\resource\\No_Sound.wav is returned if sound is off,else selected filename 
   276         * is returned
   277         */
   278         
   279         IMPORT_C TDesC& RingingAlertTone2();
   280         /**
   281         * Returns Ringing Alert Tone 2
   282         *
   283         * 
   284         * The filename selected as the ringing alert tone in the
   285         * current profile for the alternate line
   286         * 
   287         *
   288         * 
   289         * @return TBool aEnable. ETrue if current profile ringing alert tone of alternate line is on else EFalse.
   290         */
   291         IMPORT_C TBool IsRingingAlertTone2Enabled();
   292                 
   293         /**
   294         * Returns Ringing Keypad Volume
   295         *
   296         * 
   297         * The key tone volume selected  in the
   298         * current profile 
   299         * 
   300         *
   301         * 
   302         * @return TGASKeypadVolume aKeypadToneVolume.returns EGASKeypadVolumeOff sound is off,else selected volume level 
   303         * is returned
   304         */
   305         
   306         IMPORT_C TGASKeypadVolume KeyPadToneVolume();
   307         
   308         /**
   309         * Returns silent mode status.
   310         *
   311         * 
   312         * @return TBool aEnable. ETrue if the silent mode is enabled else EFalse.
   313         * Ringingtype is set to EGASRingingTypeSilent when silence mode is enabled
   314         */
   315         
   316         IMPORT_C TBool IsSilenceModeEnabled();
   317         /**
   318         * Registers audio clients list observer.
   319         *
   320         * When registered successfully, the observer will start receiveing
   321         * callback defined in MAudioClientsListObserver when audio clients list
   322         * changes.
   323         *
   324         * @since S60 3.2
   325         * @param MAudioClientsListObserver& aObserver. A reference to class
   326         *           implementing MAudioClientsListObserver interface.
   327         * @return TInt. KErrNone if successful. KErrAlreadyExists if the observer
   328         *           is already registered. Otherwise a systemwide error code.
   329         */
   330         IMPORT_C TInt RegisterAudioClientsListObserver(
   331                                     MAudioClientsListObserver& aObserver );
   332                 
   333         /**
   334         * Unregisters audio clients list observer.
   335         *
   336         * When unregistered, the observer will no longer receive callback when
   337         * audio clients list changes.
   338         *
   339         * @since S60 3.2
   340         * @param MAudioClientsListObserver& aObserver. A reference to class
   341         *           implementing MAudioClientsListObserver interface.
   342         * @return TInt. KErrNone if successful. KErrNotFound if the observer
   343         *           is not registered.
   344         */
   345         IMPORT_C TInt UnregisterAudioClientsListObserver(
   346                                     MAudioClientsListObserver& aObserver);
   347 
   348         /**
   349         * Gets audio clients list.
   350         *
   351         * On return of this function, the parameter aList will contain active
   352         * audio client application process ids.
   353         *
   354         * The parameter aList will be reset in the case
   355         *
   356         * @since S60 3.2
   357         * @param TAudioClientListType aFilter. Type of client list.
   358         * @param RArray<TProcessId>& aList. A reference to RArray.
   359         * @return TInt. KErrNone if successful. KErrBadName if
   360         *           aType is not one of the TAudioClientListType enumeration.
   361         *           Otherwise a systemwide error code.
   362         *           In case of error, the array aList will be reset.
   363         */
   364         IMPORT_C TInt GetAudioClientsList(
   365                                 TAudioClientListType aType,
   366                                 RArray<TProcessId>& aList );
   367 
   368     private:
   369         CGlobalAudioSettings();
   370         /**
   371         * Second Phase Costructor for GlobalAudioSettings Instance
   372         * @since 3.2
   373         * @param void
   374         */
   375         void ConstructL( MAudioSettingsObserver& aAudioSettingsObserver );
   376     
   377     private:
   378         CGlobalAudioSettingsImpl* iBody;
   379     };
   380 
   381 #endif
   382 // End of file