sl@0: /* sl@0: * Copyright (c) 2004 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: This file contains definitions of GlobalAudioSettings. sl@0: * sl@0: */ sl@0: sl@0: sl@0: sl@0: #ifndef GLOBALAUDIOSETTINGS_H sl@0: #define GLOBALAUDIOSETTINGS_H sl@0: sl@0: #include sl@0: sl@0: class CGlobalAudioSettingsImpl; sl@0: class MAudioSettingsObserver; sl@0: class MAudioClientsListObserver; sl@0: sl@0: /** sl@0: * API for accessing global settings that affects Audio behavior. sl@0: * sl@0: * This is API is intended to be used by Adaptation to read system attributes sl@0: * that affect audio behavior. This API also provides notification when any sl@0: * of these attribute values change. sl@0: * sl@0: * @lib GlobalAudioSettings.lib sl@0: * @since S60 3.2 sl@0: */ sl@0: class CGlobalAudioSettings : public CBase sl@0: { sl@0: public: sl@0: enum TAudioClientListType sl@0: { sl@0: EActiveAudioClients, sl@0: EPausedAudioClients sl@0: }; sl@0: sl@0: enum TGASRingingType sl@0: { sl@0: /** The tone is played in a loop. sl@0: */ sl@0: EGASRingingTypeRinging = 0, sl@0: /** sl@0: * The tone is played in a loop. On the 1st round, the volume is gradually sl@0: * increment from the lowest level to the set level. sl@0: */ sl@0: EGASRingingTypeAscending = 1, sl@0: /** The tone is played only once. sl@0: */ sl@0: EGASRingingTypeRingingOnce = 2, sl@0: /** sl@0: * The phone only beeps once instead of playing the tone if one has been set. sl@0: */ sl@0: EGASRingingTypeBeepOnce = 3, sl@0: /** The phone is silent. sl@0: * This Ringing type is set when the phone is in silence mode. sl@0: */ sl@0: EGASRingingTypeSilent = 4 sl@0: }; sl@0: sl@0: enum TGASKeypadVolume sl@0: { sl@0: EGASKeypadVolumeOff = 0, sl@0: EGASKeypadVolumeLevel1 = 1, sl@0: EGASKeypadVolumeLevel2 = 2, sl@0: EGASKeypadVolumeLevel3 = 3 sl@0: }; sl@0: public: sl@0: /** sl@0: * function for creating the GlobalAudioSettings sl@0: * sl@0: */ sl@0: IMPORT_C static CGlobalAudioSettings* NewL(MAudioSettingsObserver& aAudioSettingsObserver); sl@0: sl@0: /** sl@0: * Destructor. sl@0: * sl@0: */ sl@0: IMPORT_C ~CGlobalAudioSettings(); sl@0: sl@0: /** sl@0: * Returns warning tones status set in the current profile. sl@0: * sl@0: * If warning tones are disabled in the current profile, Adaptation sl@0: * should reject play requests having preferences mapped to warning tones. sl@0: * sl@0: * @since S60 3.2 sl@0: * @return TBool aEnable. ETrue if warning tones are enabled else EFalse. sl@0: */ sl@0: IMPORT_C TBool IsWarningTonesEnabled(); sl@0: sl@0: /** sl@0: * Returns message tones status set in the current profile. sl@0: * sl@0: * If message tones are disabled in the current profile, Adaptation sl@0: * should reject play requests having preferences mapped to message tones. sl@0: * sl@0: * @since S60 3.2 sl@0: * @return TBool aEnable. ETrue if message tones are enabled else EFalse. sl@0: */ sl@0: IMPORT_C TBool IsMessageTonesEnabled(); sl@0: sl@0: /** sl@0: * Returns current silent profile status. sl@0: * sl@0: * @since S60 3.2 sl@0: * @return TBool aEnable. ETrue if current profile is silent profile sl@0: * else EFalse. sl@0: */ sl@0: IMPORT_C TBool IsSilentProfileEnabled(); sl@0: sl@0: /** sl@0: * Returns vibra status set in the current profile.. sl@0: * sl@0: * If vibra is enabled in the current profile and vibra is not part of the sl@0: * content, Adaptation should play vibra periodically for play requests sl@0: * having preferences mapped to vibra settings. sl@0: * sl@0: * @since S60 3.2 sl@0: * @return TBool aEnable. ETrue if current profile vibra active else EFalse. sl@0: */ sl@0: IMPORT_C TBool IsVibraEnabled(); sl@0: sl@0: /** sl@0: * Returns PublicSilence feature. sl@0: * sl@0: * If PublicSilence feature is enabled and if current profile is Silent sl@0: * Profile, For all play requests having preferences mapped to Public sl@0: * Silence setting, audio should only be played out via private accessory. sl@0: * If no private accessory is connected, then playback should be rejected. sl@0: * sl@0: * @since S60 3.2 sl@0: * @return TBool aEnable. ETrue if PublicSilentMode is set else EFalse. sl@0: */ sl@0: IMPORT_C TBool IsPublicSilenceEnabled(); sl@0: sl@0: /** sl@0: * Returns Message Alert Tone sl@0: * sl@0: * sl@0: * The filename selected as the message alert tone in the sl@0: * current profile. sl@0: * sl@0: * sl@0: * sl@0: * @return TDesC& aMessageAlertToneName. z:\\resource\\No_Sound.wav is returned if sound is off,else selected filename sl@0: * is returned sl@0: */ sl@0: IMPORT_C TDesC& MessageAlertTone(); sl@0: sl@0: /** sl@0: * Returns Email Alert Tone status sl@0: * sl@0: * sl@0: * The filename selected as the email alert tone in the sl@0: * current profile sl@0: * sl@0: * sl@0: * sl@0: * @return TBool aEnable. ETrue if current profile message tone is on else EFalse. sl@0: */ sl@0: IMPORT_C TBool IsMessageAlertToneEnabled(); sl@0: /** sl@0: * Returns Email Alert Tone sl@0: * sl@0: * sl@0: * The filename selected as the email alert tone in the sl@0: * current profile sl@0: * sl@0: * sl@0: * sl@0: * @return TDesC& aEmailAlertToneName. z:\\resource\\No_Sound.wav is returned if sound is off,else selected filename sl@0: * is returned sl@0: */ sl@0: IMPORT_C TDesC& EmailAlertTone(); sl@0: sl@0: /** sl@0: * Returns Email Alert Tone status sl@0: * sl@0: * sl@0: * The filename selected as the email alert tone in the sl@0: * current profile sl@0: * sl@0: * sl@0: * sl@0: * @return TBool aEnable. ETrue if current profile email alert tone is on else EFalse. sl@0: */ sl@0: IMPORT_C TBool IsEmailAlertToneEnabled(); sl@0: /** sl@0: * Returns the RingingType sl@0: * sl@0: * sl@0: * Ringing type set in the current profile sl@0: * sl@0: * sl@0: * sl@0: * sl@0: * @return TGASRingingType aRingingType. sl@0: */ sl@0: sl@0: IMPORT_C TGASRingingType RingingType(); sl@0: sl@0: /** sl@0: * Returns Videocall Alert Tone sl@0: * sl@0: * sl@0: * The filename selected as the video call alert tone in the sl@0: * current profile sl@0: * sl@0: * sl@0: * sl@0: * @return TDesC& aVideoCallAlertToneName. z:\\resource\\No_Sound.wav is returned if sound is off,else selected filename sl@0: * is returned sl@0: */ sl@0: sl@0: IMPORT_C TDesC& VideoCallAlertTone(); sl@0: /** sl@0: * Returns Videocall Alert Tone status sl@0: * sl@0: * sl@0: * The filename selected as the video call alert tone in the sl@0: * current profile sl@0: * sl@0: * sl@0: * sl@0: * @return TBool aEnable. ETrue if current profile videocall alert tone is on else EFalse. sl@0: */ sl@0: IMPORT_C TBool IsVideoCallAlertToneEnabled(); sl@0: /** sl@0: * Returns Ringing Alert Tone sl@0: * sl@0: * sl@0: * The filename selected as the ringing alert tone in the sl@0: * current profile sl@0: * sl@0: * sl@0: * @return TDesC& aRingingAlertTone1Name. z:\\resource\\No_Sound.wav is returned if sound is off,else selected filename sl@0: * is returned sl@0: * sl@0: */ sl@0: sl@0: IMPORT_C TDesC& RingingAlertTone1(); sl@0: /** sl@0: * Returns Ringing Alert Tone1 status sl@0: * sl@0: * sl@0: * The filename selected as the ringing alert tone in the sl@0: * current profile sl@0: * sl@0: * sl@0: * sl@0: * @return TBool aEnable. ETrue if current profile ringing alert tone is on else EFalse. sl@0: */ sl@0: IMPORT_C TBool IsRingingAlertTone1Enabled(); sl@0: sl@0: /** sl@0: * Returns Ringing Alert Tone 2 sl@0: * sl@0: * sl@0: * The filename selected as the ringing alert tone in the sl@0: * current profile for the alternate line sl@0: * sl@0: * sl@0: * sl@0: * @return TDesC& aRingingAlertTone2Name. z:\\resource\\No_Sound.wav is returned if sound is off,else selected filename sl@0: * is returned sl@0: */ sl@0: sl@0: IMPORT_C TDesC& RingingAlertTone2(); sl@0: /** sl@0: * Returns Ringing Alert Tone 2 sl@0: * sl@0: * sl@0: * The filename selected as the ringing alert tone in the sl@0: * current profile for the alternate line sl@0: * sl@0: * sl@0: * sl@0: * @return TBool aEnable. ETrue if current profile ringing alert tone of alternate line is on else EFalse. sl@0: */ sl@0: IMPORT_C TBool IsRingingAlertTone2Enabled(); sl@0: sl@0: /** sl@0: * Returns Ringing Keypad Volume sl@0: * sl@0: * sl@0: * The key tone volume selected in the sl@0: * current profile sl@0: * sl@0: * sl@0: * sl@0: * @return TGASKeypadVolume aKeypadToneVolume.returns EGASKeypadVolumeOff sound is off,else selected volume level sl@0: * is returned sl@0: */ sl@0: sl@0: IMPORT_C TGASKeypadVolume KeyPadToneVolume(); sl@0: sl@0: /** sl@0: * Returns silent mode status. sl@0: * sl@0: * sl@0: * @return TBool aEnable. ETrue if the silent mode is enabled else EFalse. sl@0: * Ringingtype is set to EGASRingingTypeSilent when silence mode is enabled sl@0: */ sl@0: sl@0: IMPORT_C TBool IsSilenceModeEnabled(); sl@0: /** sl@0: * Registers audio clients list observer. sl@0: * sl@0: * When registered successfully, the observer will start receiveing sl@0: * callback defined in MAudioClientsListObserver when audio clients list sl@0: * changes. sl@0: * sl@0: * @since S60 3.2 sl@0: * @param MAudioClientsListObserver& aObserver. A reference to class sl@0: * implementing MAudioClientsListObserver interface. sl@0: * @return TInt. KErrNone if successful. KErrAlreadyExists if the observer sl@0: * is already registered. Otherwise a systemwide error code. sl@0: */ sl@0: IMPORT_C TInt RegisterAudioClientsListObserver( sl@0: MAudioClientsListObserver& aObserver ); sl@0: sl@0: /** sl@0: * Unregisters audio clients list observer. sl@0: * sl@0: * When unregistered, the observer will no longer receive callback when sl@0: * audio clients list changes. sl@0: * sl@0: * @since S60 3.2 sl@0: * @param MAudioClientsListObserver& aObserver. A reference to class sl@0: * implementing MAudioClientsListObserver interface. sl@0: * @return TInt. KErrNone if successful. KErrNotFound if the observer sl@0: * is not registered. sl@0: */ sl@0: IMPORT_C TInt UnregisterAudioClientsListObserver( sl@0: MAudioClientsListObserver& aObserver); sl@0: sl@0: /** sl@0: * Gets audio clients list. sl@0: * sl@0: * On return of this function, the parameter aList will contain active sl@0: * audio client application process ids. sl@0: * sl@0: * The parameter aList will be reset in the case sl@0: * sl@0: * @since S60 3.2 sl@0: * @param TAudioClientListType aFilter. Type of client list. sl@0: * @param RArray& aList. A reference to RArray. sl@0: * @return TInt. KErrNone if successful. KErrBadName if sl@0: * aType is not one of the TAudioClientListType enumeration. sl@0: * Otherwise a systemwide error code. sl@0: * In case of error, the array aList will be reset. sl@0: */ sl@0: IMPORT_C TInt GetAudioClientsList( sl@0: TAudioClientListType aType, sl@0: RArray& aList ); sl@0: sl@0: private: sl@0: CGlobalAudioSettings(); sl@0: /** sl@0: * Second Phase Costructor for GlobalAudioSettings Instance sl@0: * @since 3.2 sl@0: * @param void sl@0: */ sl@0: void ConstructL( MAudioSettingsObserver& aAudioSettingsObserver ); sl@0: sl@0: private: sl@0: CGlobalAudioSettingsImpl* iBody; sl@0: }; sl@0: sl@0: #endif sl@0: // End of file