os/mm/mmlibs/mmfw/inc/mmf/ControllerFramework/mmfdurationinfocustomcommands.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.
sl@0
     1
// Copyright (c) 2004-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 __MMF_DURATION_INFO_CUSTOM_COMMANDS_H__
sl@0
    17
#define __MMF_DURATION_INFO_CUSTOM_COMMANDS_H__
sl@0
    18
sl@0
    19
#ifdef SYMBIAN_CAF_V2
sl@0
    20
sl@0
    21
#include <e32base.h>
sl@0
    22
#include <mmf/common/mmcaf.h>
sl@0
    23
#include <mmf/common/mmfstandardcustomcommands.h>
sl@0
    24
sl@0
    25
sl@0
    26
/**
sl@0
    27
@publishedAll
sl@0
    28
@deprecated 9.2- Replaced by KUidInterfaceMMFDurationInfoControl2
sl@0
    29
*/
sl@0
    30
sl@0
    31
const TUid KUidInterfaceMMFDurationInfoControl = {0x102737C8};
sl@0
    32
sl@0
    33
/**
sl@0
    34
@publishedAll
sl@0
    35
@released
sl@0
    36
sl@0
    37
The duration state of the controller.
sl@0
    38
*/
sl@0
    39
enum TMMFDurationInfo
sl@0
    40
	{
sl@0
    41
	EMMFDurationInfoValid, 		// Duration is known
sl@0
    42
	EMMFDurationInfoUnknown,	// Invalid response from controller
sl@0
    43
	EMMFDurationInfoInfinite,	// Clip is of infinite length
sl@0
    44
	};
sl@0
    45
sl@0
    46
#ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
sl@0
    47
#include <mmf/common/mmfdurationinfocustomcommandsimpl.h>
sl@0
    48
#include <mmf/common/mmfdurationinfocustomcommandsenums.h>
sl@0
    49
#endif
sl@0
    50
sl@0
    51
/**
sl@0
    52
@publishedAll
sl@0
    53
@deprecated 9.2 - Replaced by MMMFDurationInfoCustomCommandImplementor2
sl@0
    54
sl@0
    55
Mixin class to be derived from by controller plugins wishing to support the Duration information 
sl@0
    56
custom commands
sl@0
    57
*/
sl@0
    58
class MMMFDurationInfoCustomCommandImplementor
sl@0
    59
	{
sl@0
    60
public:
sl@0
    61
sl@0
    62
	/**
sl@0
    63
	Is the duration of the clip known? i.e. is the stream infinite?
sl@0
    64
	
sl@0
    65
	@param aDurationInfo
sl@0
    66
		   Controller duration information
sl@0
    67
		   
sl@0
    68
	@return TMMFDurationInfo Duration state.
sl@0
    69
	*/
sl@0
    70
	virtual TMMFDurationInfo GetDurationInfo(TMMFDurationInfo& aDurationInfo)=0;
sl@0
    71
	};
sl@0
    72
sl@0
    73
/**
sl@0
    74
@publishedAll
sl@0
    75
@deprecated 9.2 - Replaced by CMMFDurationInfoCustomCommandParser2
sl@0
    76
*/
sl@0
    77
class CMMFDurationInfoCustomCommandParser : public CMMFCustomCommandParserBase
sl@0
    78
	{
sl@0
    79
public:
sl@0
    80
sl@0
    81
	/**
sl@0
    82
	Creates a new custom command parser capable of processing duration information controller commands.
sl@0
    83
sl@0
    84
	@param  aImplementor
sl@0
    85
	        A reference to the controller plugin that owns this new object.
sl@0
    86
sl@0
    87
	@return A pointer to the object created.
sl@0
    88
sl@0
    89
	@since  9.1
sl@0
    90
	*/
sl@0
    91
	IMPORT_C static CMMFDurationInfoCustomCommandParser* NewL(MMMFDurationInfoCustomCommandImplementor& aImplementor);
sl@0
    92
sl@0
    93
	/**
sl@0
    94
	Destructor.
sl@0
    95
sl@0
    96
	@since  9.1
sl@0
    97
	*/
sl@0
    98
	IMPORT_C ~CMMFDurationInfoCustomCommandParser();
sl@0
    99
sl@0
   100
	/**
sl@0
   101
	Handles a request from the client. Called by the controller framework.
sl@0
   102
sl@0
   103
	@param  aMessage
sl@0
   104
	        The message to be handled.
sl@0
   105
sl@0
   106
	@since  9.1
sl@0
   107
	*/
sl@0
   108
	void HandleRequest(TMMFMessage& aMessage);
sl@0
   109
sl@0
   110
private:
sl@0
   111
	/**
sl@0
   112
	Constructor.
sl@0
   113
sl@0
   114
	@param  aImplementor
sl@0
   115
	        A reference to the controller plugin that owns this new object.
sl@0
   116
	@since  9.1
sl@0
   117
	*/
sl@0
   118
	CMMFDurationInfoCustomCommandParser(MMMFDurationInfoCustomCommandImplementor& aImplementor);
sl@0
   119
	
sl@0
   120
	/**
sl@0
   121
	Request duration information from the implementor
sl@0
   122
sl@0
   123
	@param  aMessage
sl@0
   124
	        Message for writing results to the client.
sl@0
   125
	*/
sl@0
   126
	TInt GetDurationInfo(TMMFMessage& aMessage);
sl@0
   127
sl@0
   128
private:
sl@0
   129
sl@0
   130
	MMMFDurationInfoCustomCommandImplementor& iImplementor;
sl@0
   131
	
sl@0
   132
	};
sl@0
   133
sl@0
   134
#endif // SYMBIAN_CAF_V2
sl@0
   135
sl@0
   136
#endif // __MMF_DURATION_INFO_CUSTOM_COMMANDS_H__
sl@0
   137