os/mm/mm_plat/custom_interface_builder_api/inc/CustomInterfaceBuilder.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2005-2006 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:  CustomInterface Builder
    15 *
    16 */
    17 
    18 #ifndef __CUSTOMINTERFACEBUILDER_H
    19 #define __CUSTOMINTERFACEBUILDER_H
    20 
    21 #include <e32std.h>
    22 #include <mmf/common/mmfcontroller.h>
    23 #include <MCustomInterface.h>
    24 
    25 class CAdaptationCustomInterfaceBuilder;
    26 class CMMFDevSound;
    27 class CMMFObjectContainer;
    28 
    29 class CCustomInterfaceBuilder : public CMMFObject
    30 	{
    31 public:
    32 	IMPORT_C static CCustomInterfaceBuilder* NewL(CMMFObjectContainer& aObjectContainer,
    33 	                                              CMMFDevSound&        aDevSound);
    34 	virtual ~CCustomInterfaceBuilder();
    35 
    36 	virtual void HandleRequest(TMMFMessage& aMessage);
    37 
    38     IMPORT_C static CCustomInterfaceBuilder* NewL(CMMFObjectContainer& aObjectContainer,
    39 	                                              MCustomInterface& aCustomInterface);
    40 
    41     IMPORT_C void SetSecureCustomInterfaces( const TBool aSecure );
    42 
    43 private:
    44 	CCustomInterfaceBuilder(CMMFObjectContainer& aObjectContainer,
    45 	                        CMMFDevSound&        aDevSound);
    46 	CCustomInterfaceBuilder(CMMFObjectContainer& aObjectContainer,
    47 	                        MCustomInterface& aCustomInterface);
    48 	void ConstructL();
    49 	void        DoHandleRequestL(TMMFMessage& aMessage);
    50 	void        DoBuildL(TMMFMessage& aMessage);
    51 	void        DoRemoveL(TMMFMessage& aMessage);
    52 	TAny*       GetCustomInterfaceL(TUid aInterfaceId);
    53 
    54 	//CMMFDevSound&                      iDevSound;
    55     CMMFDevSound*                      iDevSound;
    56 	MCustomInterface*                  iCustomInterface;
    57 	CMMFObjectContainer&               iObjectContainer;
    58 	CAdaptationCustomInterfaceBuilder* iAdaptationBuilder;
    59 	TBool                              iSecureCustomInterfaces;
    60 	};
    61 
    62 #endif