os/mm/mm_plat/custom_interface_utility_api/inc/CustomInterfaceUtility.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) 2005-2006 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:  CustomInterface Utility
sl@0
    15
*
sl@0
    16
*/
sl@0
    17
sl@0
    18
#ifndef __CUSTOMINTERFACEUTILITY_H
sl@0
    19
#define __CUSTOMINTERFACEUTILITY_H
sl@0
    20
sl@0
    21
#include <e32base.h>
sl@0
    22
#include <MCustomInterface.h>
sl@0
    23
//#include "CustomCommandTypes.h"
sl@0
    24
#include <CustomCommandUtility.h>
sl@0
    25
class CProxyCustomInterfaceUtility;
sl@0
    26
//class CCustomInterfaceProxyBuilder;
sl@0
    27
class CMdaAudioConvertUtility;
sl@0
    28
class CMdaAudioPlayerUtility;
sl@0
    29
class CMdaAudioRecorderUtility;
sl@0
    30
class MCustomCommand;
sl@0
    31
class CMMFDevSound;
sl@0
    32
class CMidiClientUtility;
sl@0
    33
class CDrmPlayerUtility;
sl@0
    34
class CVideoPlayerUtility;
sl@0
    35
class CVideoRecorderUtility;
sl@0
    36
sl@0
    37
class CCustomInterfaceUtility : public    CBase,
sl@0
    38
                                public    MCustomInterface
sl@0
    39
    {
sl@0
    40
public:
sl@0
    41
    IMPORT_C static CCustomInterfaceUtility* NewL(CMdaAudioConvertUtility&  aUtility);
sl@0
    42
    IMPORT_C static CCustomInterfaceUtility* NewL(CMdaAudioPlayerUtility&   aUtility);
sl@0
    43
    IMPORT_C static CCustomInterfaceUtility* NewL(CMdaAudioRecorderUtility& aUtility,
sl@0
    44
                                                  TBool       aRecordStream);
sl@0
    45
    IMPORT_C static CCustomInterfaceUtility* NewL(CCustomCommandUtility* aCustomCommandUtility);
sl@0
    46
    IMPORT_C static CCustomInterfaceUtility* NewL(CMMFDevSound& aDevSound);
sl@0
    47
    IMPORT_C static CCustomInterfaceUtility* NewL(CMidiClientUtility& aUtility);
sl@0
    48
    IMPORT_C static CCustomInterfaceUtility* NewL(MCustomCommand& aUtility);
sl@0
    49
    IMPORT_C virtual ~CCustomInterfaceUtility();
sl@0
    50
sl@0
    51
    /**
sl@0
    52
    * Factory function for creating CCustomInterfaceUtility object.
sl@0
    53
    * @since 3.0
sl@0
    54
    * @param CDrmPlayerUtility A reference to a CDrmPlayerUtility object
sl@0
    55
    * @return pointer to CCustomInterfaceUtility object
sl@0
    56
    */
sl@0
    57
    IMPORT_C static CCustomInterfaceUtility* NewL(CDrmPlayerUtility& aUtility);
sl@0
    58
    IMPORT_C static CCustomInterfaceUtility* NewL(CVideoPlayerUtility&   aUtility);
sl@0
    59
    IMPORT_C static CCustomInterfaceUtility* NewL(CVideoRecorderUtility&   aUtility);
sl@0
    60
sl@0
    61
    virtual TAny* CustomInterface(TUid aInterfaceId);
sl@0
    62
sl@0
    63
    virtual void RemoveCustomInterface(TMMFMessageDestinationPckg aMessageHandler);
sl@0
    64
protected:
sl@0
    65
    IMPORT_C CCustomInterfaceUtility();
sl@0
    66
    virtual void ConstructL(CCustomCommandUtility* aCustomCommandUtility);
sl@0
    67
    virtual void ConstructL(CMMFDevSound& aDevSound);
sl@0
    68
sl@0
    69
private:
sl@0
    70
sl@0
    71
    CProxyCustomInterfaceUtility* iProxyFactory;
sl@0
    72
sl@0
    73
sl@0
    74
private:
sl@0
    75
    CMMFDevSound*       iDevSound;
sl@0
    76
    };
sl@0
    77
sl@0
    78
#endif