Update contrib.
2 * Copyright (c) 2005-2006 Nokia Corporation and/or its subsidiary(-ies).
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".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
14 * Description: CustomInterface Builder
18 #ifndef __CUSTOMINTERFACEBUILDER_H
19 #define __CUSTOMINTERFACEBUILDER_H
22 #include <mmf/common/mmfcontroller.h>
23 #include <MCustomInterface.h>
25 class CAdaptationCustomInterfaceBuilder;
27 class CMMFObjectContainer;
29 class CCustomInterfaceBuilder : public CMMFObject
32 IMPORT_C static CCustomInterfaceBuilder* NewL(CMMFObjectContainer& aObjectContainer,
33 CMMFDevSound& aDevSound);
34 virtual ~CCustomInterfaceBuilder();
36 virtual void HandleRequest(TMMFMessage& aMessage);
38 IMPORT_C static CCustomInterfaceBuilder* NewL(CMMFObjectContainer& aObjectContainer,
39 MCustomInterface& aCustomInterface);
41 IMPORT_C void SetSecureCustomInterfaces( const TBool aSecure );
44 CCustomInterfaceBuilder(CMMFObjectContainer& aObjectContainer,
45 CMMFDevSound& aDevSound);
46 CCustomInterfaceBuilder(CMMFObjectContainer& aObjectContainer,
47 MCustomInterface& aCustomInterface);
49 void DoHandleRequestL(TMMFMessage& aMessage);
50 void DoBuildL(TMMFMessage& aMessage);
51 void DoRemoveL(TMMFMessage& aMessage);
52 TAny* GetCustomInterfaceL(TUid aInterfaceId);
54 //CMMFDevSound& iDevSound;
55 CMMFDevSound* iDevSound;
56 MCustomInterface* iCustomInterface;
57 CMMFObjectContainer& iObjectContainer;
58 CAdaptationCustomInterfaceBuilder* iAdaptationBuilder;
59 TBool iSecureCustomInterfaces;