phoneapp/phoneuistates/tsrc/common/cphonestateincomingstub.cpp
changeset 77 2be0b271d017
equal deleted inserted replaced
72:c76a0b1755b9 77:2be0b271d017
       
     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 "cphonestateincoming.h"
       
    21 #include "phoneappcommands.hrh"
       
    22 
       
    23 CPhoneStateIncoming::CPhoneStateIncoming(
       
    24         MPhoneStateMachine* aStateMachine, 
       
    25         MPhoneViewCommandHandle* aViewCommandHandle,
       
    26         MPhoneCustomization* aPhoneCustomization ): 
       
    27         CPhoneState( aStateMachine, aViewCommandHandle, aPhoneCustomization )
       
    28     {
       
    29     }
       
    30 
       
    31 CPhoneStateIncoming::~CPhoneStateIncoming()
       
    32     {
       
    33     
       
    34     }
       
    35 
       
    36 void CPhoneStateIncoming::ConstructL()
       
    37     {
       
    38     
       
    39     }
       
    40 
       
    41 void CPhoneStateIncoming::HandlePhoneEngineMessageL(
       
    42     const TInt /*aMessage*/, 
       
    43     TInt /*aCallId*/ )
       
    44     {
       
    45     
       
    46     }
       
    47 
       
    48 TBool CPhoneStateIncoming::HandleCommandL( TInt aCommand )
       
    49     {
       
    50     switch( aCommand )
       
    51         {
       
    52         case EPhoneCmdOptions:
       
    53              OpenMenuBarL();
       
    54         break;
       
    55         default:
       
    56         break;
       
    57         }
       
    58     }
       
    59 
       
    60 void CPhoneStateIncoming::HandleNumberEntryClearedL()
       
    61     {
       
    62     
       
    63     }
       
    64 
       
    65 void CPhoneStateIncoming::HandleKeyMessageL(
       
    66     TPhoneKeyEventMessages /*aMessage*/,
       
    67     TKeyCode /*aScanCode*/ )
       
    68     {
       
    69     
       
    70     }
       
    71 
       
    72 void CPhoneStateIncoming::HandleKeyEventL(
       
    73     const TKeyEvent& /*aKeyEvent*/,
       
    74     TEventCode /*aEventCode*/ )
       
    75     {
       
    76    
       
    77     }
       
    78 
       
    79 void CPhoneStateIncoming::DynInitMenuPaneL( 
       
    80     TInt /*aResourceId*/, 
       
    81     CEikMenuPane* /*aMenuPane*/ )
       
    82     {
       
    83     
       
    84     }
       
    85 
       
    86 void CPhoneStateIncoming::HandleAudioPlayStoppedL()
       
    87     {
       
    88     
       
    89     }
       
    90 
       
    91 void CPhoneStateIncoming::OpenMenuBarL()
       
    92     {
       
    93     
       
    94     }
       
    95 
       
    96 //  End of File  
       
    97