sl@0: /* sl@0: * Copyright (c) 2005-2006 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: CustomInterface Utility sl@0: * sl@0: */ sl@0: sl@0: #ifndef __CUSTOMINTERFACEUTILITY_H sl@0: #define __CUSTOMINTERFACEUTILITY_H sl@0: sl@0: #include sl@0: #include sl@0: //#include "CustomCommandTypes.h" sl@0: #include sl@0: class CProxyCustomInterfaceUtility; sl@0: //class CCustomInterfaceProxyBuilder; sl@0: class CMdaAudioConvertUtility; sl@0: class CMdaAudioPlayerUtility; sl@0: class CMdaAudioRecorderUtility; sl@0: class MCustomCommand; sl@0: class CMMFDevSound; sl@0: class CMidiClientUtility; sl@0: class CDrmPlayerUtility; sl@0: class CVideoPlayerUtility; sl@0: class CVideoRecorderUtility; sl@0: sl@0: class CCustomInterfaceUtility : public CBase, sl@0: public MCustomInterface sl@0: { sl@0: public: sl@0: IMPORT_C static CCustomInterfaceUtility* NewL(CMdaAudioConvertUtility& aUtility); sl@0: IMPORT_C static CCustomInterfaceUtility* NewL(CMdaAudioPlayerUtility& aUtility); sl@0: IMPORT_C static CCustomInterfaceUtility* NewL(CMdaAudioRecorderUtility& aUtility, sl@0: TBool aRecordStream); sl@0: IMPORT_C static CCustomInterfaceUtility* NewL(CCustomCommandUtility* aCustomCommandUtility); sl@0: IMPORT_C static CCustomInterfaceUtility* NewL(CMMFDevSound& aDevSound); sl@0: IMPORT_C static CCustomInterfaceUtility* NewL(CMidiClientUtility& aUtility); sl@0: IMPORT_C static CCustomInterfaceUtility* NewL(MCustomCommand& aUtility); sl@0: IMPORT_C virtual ~CCustomInterfaceUtility(); sl@0: sl@0: /** sl@0: * Factory function for creating CCustomInterfaceUtility object. sl@0: * @since 3.0 sl@0: * @param CDrmPlayerUtility A reference to a CDrmPlayerUtility object sl@0: * @return pointer to CCustomInterfaceUtility object sl@0: */ sl@0: IMPORT_C static CCustomInterfaceUtility* NewL(CDrmPlayerUtility& aUtility); sl@0: IMPORT_C static CCustomInterfaceUtility* NewL(CVideoPlayerUtility& aUtility); sl@0: IMPORT_C static CCustomInterfaceUtility* NewL(CVideoRecorderUtility& aUtility); sl@0: sl@0: virtual TAny* CustomInterface(TUid aInterfaceId); sl@0: sl@0: virtual void RemoveCustomInterface(TMMFMessageDestinationPckg aMessageHandler); sl@0: protected: sl@0: IMPORT_C CCustomInterfaceUtility(); sl@0: virtual void ConstructL(CCustomCommandUtility* aCustomCommandUtility); sl@0: virtual void ConstructL(CMMFDevSound& aDevSound); sl@0: sl@0: private: sl@0: sl@0: CProxyCustomInterfaceUtility* iProxyFactory; sl@0: sl@0: sl@0: private: sl@0: CMMFDevSound* iDevSound; sl@0: }; sl@0: sl@0: #endif