phoneapp/phoneuistates/tsrc/common/cphonestateidlestub.cpp
changeset 77 2be0b271d017
child 76 cfea66083b62
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/phoneapp/phoneuistates/tsrc/common/cphonestateidlestub.cpp	Mon Oct 04 00:16:48 2010 +0300
@@ -0,0 +1,111 @@
+/*
+* Copyright (c) 2005-2008 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:
+*
+*/
+
+
+// INCLUDE FILES
+#include "cphonestateidle.h"
+#include "phoneappcommands.hrh"
+
+CPhoneStateIdle::CPhoneStateIdle(
+        MPhoneStateMachine* aStateMachine, 
+        MPhoneViewCommandHandle* aViewCommandHandle,
+        MPhoneCustomization* aPhoneCustomization ): 
+        CPhoneState( aStateMachine, aViewCommandHandle, aPhoneCustomization )
+    {
+    }
+
+CPhoneStateIdle::~CPhoneStateIdle()
+    {
+    
+    }
+
+void CPhoneStateIdle::ConstructL()
+    {
+    
+    }
+
+void CPhoneStateIdle::HandlePhoneEngineMessageL(
+    const TInt /*aMessage*/, 
+    TInt /*aCallId*/ )
+    {
+    
+    }
+
+TBool CPhoneStateIdle::HandleCommandL( TInt /*aCommand*/ )
+    {
+
+    }
+
+void CPhoneStateIdle::HandleNumberEntryClearedL()
+    {
+    
+    }
+
+void CPhoneStateIdle::HandleKeyMessageL(
+    TPhoneKeyEventMessages /*aMessage*/,
+    TKeyCode /*aScanCode*/ )
+    {
+    
+    }
+
+void CPhoneStateIdle::HandleKeyEventL(
+    const TKeyEvent& /*aKeyEvent*/,
+    TEventCode /*aEventCode*/ )
+    {
+   
+    }
+
+TBool CPhoneStateIdle::HandleRemConCommandL(
+    TRemConCoreApiOperationId /*aOperationId*/, 
+    TRemConCoreApiButtonAction /*aButtonAct*/ )
+    {
+   
+    }
+
+void CPhoneStateIdle::HandlePhoneFocusLostEventL()
+    {
+    
+    }
+
+void CPhoneStateIdle::HandlePhoneForegroundEventL()
+    {
+    
+    }
+
+void CPhoneStateIdle::HandleIdleForegroundEventL()
+    {
+    
+    }
+
+void CPhoneStateIdle::DialL( const TDesC& /*aNumber*/, 
+    TPhoneNumberType /*aNumberType*/, TDialInitiationMethod /*aDialMethod*/ )
+    {
+    
+    }
+
+void CPhoneStateIdle::HandleDialingL( TInt /*aCallId*/ )
+    {
+    
+    }
+
+void CPhoneStateIdle::HandleSendCommandL()
+    {
+    
+    }
+
+//  End of File  
+