phoneapp/phoneuistates/tsrc/common/cphonestateincallstub.cpp
changeset 74 d1c62c765e48
child 78 baacf668fe89
equal deleted inserted replaced
65:2a5d4ab426d3 74:d1c62c765e48
       
     1 /*
       
     2 * Copyright (c) 2005-2008 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:
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // INCLUDE FILES
       
    20 #include "cphonestateincall.h"
       
    21 #include "phoneappcommands.hrh"
       
    22 
       
    23 CPhoneStateInCall::CPhoneStateInCall(
       
    24         MPhoneStateMachine* aStateMachine, 
       
    25         MPhoneViewCommandHandle* aViewCommandHandle,
       
    26         MPhoneCustomization* aPhoneCustomization ): 
       
    27         CPhoneState( aStateMachine, aViewCommandHandle, aPhoneCustomization ),
       
    28         iDtmfWaitCharTimer( NULL )
       
    29     {
       
    30     }
       
    31 
       
    32 CPhoneStateInCall::~CPhoneStateInCall()
       
    33     {
       
    34     
       
    35     }
       
    36         
       
    37 void CPhoneStateInCall::ConstructL()
       
    38     {
       
    39     
       
    40     }
       
    41     
       
    42 void CPhoneStateInCall::HandleKeyMessageL(
       
    43     TPhoneKeyEventMessages /*aMessage*/,
       
    44     TKeyCode /*aScanCode*/ )
       
    45     {
       
    46     
       
    47     }
       
    48 
       
    49 void CPhoneStateInCall::HandlePhoneEngineMessageL(
       
    50     const TInt /*aMessage*/, 
       
    51     TInt /*aCallId*/ )
       
    52     {
       
    53     
       
    54     }
       
    55 
       
    56 TBool CPhoneStateInCall::HandleCommandL( TInt aCommand )
       
    57     {
       
    58     switch( aCommand )
       
    59         {
       
    60         case EPhoneCmdOptions:
       
    61         break;
       
    62         default:
       
    63         break;
       
    64         }
       
    65     }
       
    66         
       
    67 void CPhoneStateInCall::CallFetchedNumberL( const TDesC& /*aFetchedNumber*/ )
       
    68     {
       
    69     
       
    70     }
       
    71 
       
    72 void CPhoneStateInCall::HandleNumberEntryClearedL()
       
    73     {
       
    74     
       
    75     }
       
    76 
       
    77 TBool CPhoneStateInCall::IsVideoCallActiveL()
       
    78     {
       
    79     
       
    80     }
       
    81 
       
    82 TBool CPhoneStateInCall::GetRingingCallL(  )
       
    83     {
       
    84     
       
    85     }
       
    86 
       
    87 TBool CPhoneStateInCall::IsVideoCallRingingL()
       
    88     {
       
    89     
       
    90     }
       
    91 
       
    92 
       
    93 void CPhoneStateInCall::DisconnectOutgoingCallL()
       
    94     {
       
    95     
       
    96     }
       
    97 
       
    98 void CPhoneStateInCall::HandleIdleL( TInt aCallId )
       
    99     {
       
   100     
       
   101     }
       
   102 
       
   103 //  End of File  
       
   104