diff -r 000000000000 -r 5f000ab63145 phoneapp/phoneuivoipextension/inc/cphonenewcallcmdhandler.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/phoneapp/phoneuivoipextension/inc/cphonenewcallcmdhandler.h Mon Jan 18 20:18:27 2010 +0200 @@ -0,0 +1,114 @@ +/* +* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: Handles commands related to new call. +* +*/ + + +#ifndef C_CPHONENEWCALLCMDHANDLER_H +#define C_CPHONENEWCALLCMDHANDLER_H + +#include + +class MPhoneStateMachine; +class MPhoneViewCommandHandle; +class CPhoneStateUtilsVoip; + +/** + * Handles commands related to new Internet call. + * + * @lib PhoneUIVoIPExtension.dll + * @since S60 v5.1 + */ +NONSHARABLE_CLASS( CPhoneNewCallCmdHandler ) : public CBase + { + +public: + + /** + * Two-phased constructor. + * @param aStateMachine Handle to the state machine. + * @param aViewCommandHandle Handle to the PhoneUIView. + */ + static CPhoneNewCallCmdHandler* NewL( + MPhoneStateMachine& aStateMachine, + MPhoneViewCommandHandle& aViewCommandHandle ); + + /** + * Two-phased constructor. + * @param aStateMachine Handle to the state machine. + * @param aViewCommandHandle Handle to the PhoneUIView. + */ + static CPhoneNewCallCmdHandler* NewLC( + MPhoneStateMachine& aStateMachine, + MPhoneViewCommandHandle& aViewCommandHandle ); + + /** + * Destructor. + */ + virtual ~CPhoneNewCallCmdHandler(); + + /** + * Handles VoIP commands related to new call. + * @param aCommand VoIP command identifier. + */ + void HandleCommandL( TInt aCommand ); + +private: + + CPhoneNewCallCmdHandler( + MPhoneStateMachine& aStateMachine, + MPhoneViewCommandHandle& aViewCommandHandle ); + + void ConstructL(); + + /** + * Shows new call query. + */ + void ShowNewCallQueryL(); + + /** + * Starts new call. + */ + void DoNewCallL(); + + /** + * Opens single item contact fetch. + * @param aFetchType Type of the fetch. + */ + void OpenSingleItemContactFetchL( TInt aFetchType ); + + /** + * Returns VoIP state utils. + * @return VoIP state utils. + */ + CPhoneStateUtilsVoip& StateUtils(); + +private: // data + + /** + * Interface to the state machine. + * Not own. + */ + MPhoneStateMachine& iStateMachine; + + /** + * Interface to the phone ui view. + * Not own. + */ + MPhoneViewCommandHandle& iViewCommandHandle; + }; + + +#endif // C_CPHONENEWCALLCMDHANDLER_H