os/mm/devsound/a3fdevsound/inc/a3fdevsoundaudiopauseresume.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
 
sl@0
    16
#ifndef A3FDEVSOUNDAUDIOPAUSERESUME_H
sl@0
    17
#define A3FDEVSOUNDAUDIOPAUSERESUME_H
sl@0
    18
sl@0
    19
/**
sl@0
    20
* @publishedPartner 
sl@0
    21
* @released
sl@0
    22
* @file
sl@0
    23
*/
sl@0
    24
sl@0
    25
#include <e32base.h>
sl@0
    26
sl@0
    27
/**
sl@0
    28
* KUIdAudioResourceNotification – To get the interface of MAutoPauseResume from context.
sl@0
    29
*/
sl@0
    30
const TInt KUIdAudioResourceNotificationValue = 0x10285D3B;
sl@0
    31
const TUid KUIdAudioResourceNotification = {KUIdAudioResourceNotificationValue};
sl@0
    32
sl@0
    33
sl@0
    34
/**
sl@0
    35
Defines the interface for observing auto pause and resume events
sl@0
    36
*/
sl@0
    37
class MA3FDevSoundAutoPauseResumeObserver
sl@0
    38
	{
sl@0
    39
public:
sl@0
    40
	/*
sl@0
    41
	Notifies the DevSound Adaptor that the resource is available.
sl@0
    42
	*/
sl@0
    43
	virtual void NotifyResume() = 0;
sl@0
    44
	};
sl@0
    45
sl@0
    46
/**
sl@0
    47
Interface providing support for AutoPauseResume Register, Cancel and WillResumePlay.
sl@0
    48
*/
sl@0
    49
class MA3FDevSoundAutoPauseResume
sl@0
    50
	{
sl@0
    51
public:
sl@0
    52
	/*
sl@0
    53
	Registers the Event for Notification when resource is avaliable.
sl@0
    54
	@param TUid aEventType The event which the client is notified of.
sl@0
    55
	@param TDesC8 &aNotificationRegistrationData Notification registration specific data.
sl@0
    56
	@param MA3FDevSoundAutoPauseResumeObserver* aObserverPtr An Observer to receive the notification.
sl@0
    57
	@return An error code indicating if the registration was successful. KErrNone on success, otherwise another of the system-wide error codes.
sl@0
    58
	*/
sl@0
    59
	virtual TInt RegisterAsClient(TUid aEventType, const TDesC8& aNotificationRegistrationData, MA3FDevSoundAutoPauseResumeObserver* aObserverPtr) = 0;
sl@0
    60
sl@0
    61
	/*
sl@0
    62
	Cancels the registered notification event.
sl@0
    63
	@param TUid aEventType The Event to notify the client.
sl@0
    64
	@return An error code indicating if the cancel registration was successful. KErrNone on success, otherwise another of the system-wide error codes.
sl@0
    65
	*/
sl@0
    66
	virtual TInt CancelRegisterAsClient(TUid aEventType) = 0;
sl@0
    67
sl@0
    68
	/*
sl@0
    69
	Waits for the client to resume the play even after the default timer expires.
sl@0
    70
	@return An error code indicating if the function call was successful. KErrNone on success, otherwise another of the system-wide error codes.
sl@0
    71
	*/
sl@0
    72
	virtual TInt WillResumePlay() = 0;
sl@0
    73
	};
sl@0
    74
sl@0
    75
#endif //A3FDEVSOUNDAUDIOPAUSERESUME_H