phoneapp/phoneuistates/src/cphonestartup.cpp
changeset 0 5f000ab63145
child 19 544e34b3255a
child 21 92ab7f8d0eab
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/phoneapp/phoneuistates/src/cphonestartup.cpp	Mon Jan 18 20:18:27 2010 +0200
@@ -0,0 +1,132 @@
+/*
+* Copyright (c) 2006 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: Implementation of CPhoneStartup class.
+*
+*/
+
+
+// INCLUDES
+#include "cphonestartup.h"
+#include "phonerssbase.h"
+#include "phonelogger.h"
+#include "cphonegeneralgsmmessageshandler.h"
+
+// ================= MEMBER FUNCTIONS =======================
+
+// C++ default constructor can NOT contain any code, that
+// might leave.
+//
+CPhoneStartup::CPhoneStartup( 
+    MPhoneStateMachine* aStateMachine, 
+    MPhoneViewCommandHandle* aViewCommandHandle,
+    TBool aPEReady ) : 
+    CPhoneStateStartup( aStateMachine, aViewCommandHandle, NULL )
+    {
+    iPEReady = aPEReady;
+    }
+
+// -----------------------------------------------------------
+// CPhoneStartup::~CPhoneStartup()
+// Destructor
+// (other items were commented in a header).
+// -----------------------------------------------------------
+
+CPhoneStartup::~CPhoneStartup()
+    {
+    }
+
+// -----------------------------------------------------------
+// CPhoneStartup::ConstructL()
+// Constructor
+// (other items were commented in a header).
+// -----------------------------------------------------------
+//
+void CPhoneStartup::ConstructL()
+    {
+    __LOGMETHODSTARTEND( EPhoneUIStates, "CPhoneStartup::ConstructL()");
+    CPhoneStateStartup::ConstructL();
+    }
+
+// -----------------------------------------------------------
+// CPhoneStartup::NewL()
+// Constructor
+// (other items were commented in a header).
+// -----------------------------------------------------------
+//
+CPhoneStartup* CPhoneStartup::NewL( 
+    MPhoneStateMachine* aStateMachine, 
+    MPhoneViewCommandHandle* aViewCommandHandle, 
+    TBool aPEReady )
+    {
+    CPhoneStartup* self = new (ELeave) 
+        CPhoneStartup( aStateMachine, aViewCommandHandle, aPEReady );
+    
+    CleanupStack::PushL( self );
+    self->ConstructL();
+    CleanupStack::Pop( self );
+    
+    return self;
+    }
+
+// -----------------------------------------------------------
+// CPhoneStartup::HandlePhoneEngineMessageL
+// -----------------------------------------------------------
+//
+void CPhoneStartup::HandlePhoneEngineMessageL( 
+    const TInt aMessage, 
+    TInt aCallId )
+    {
+    __LOGMETHODSTARTEND(EPhoneUIStates, 
+        "CPhoneStartup::HandlePhoneEngineMessageL() ");
+    switch ( aMessage )
+        {
+        case MEngineMonitor::EPEMessageRemoteHeld:
+            CPhoneState::SendGlobalInfoNoteL( 
+                EPhoneInformationRemotePutOnHoldNote );
+            break;
+        
+        case MEngineMonitor::EPEMessageRemoteResumed:
+            CPhoneState::SendGlobalInfoNoteL( 
+                EPhoneInformationConnectedNote );
+            break;
+
+        case MEngineMonitor::EPEMessageIssuingSSRequest: // fall through
+        case MEngineMonitor::EPEMessageCallBarred: // fall through
+        case MEngineMonitor::EPEMessageShowVersion: // fall through
+        case MEngineMonitor::EPEMessageIssuedSSRequest: // fall through
+        case MEngineMonitor::EPEMessageTempClirActivationUnsuccessful:
+        case MEngineMonitor::EPEMessageIncCallIsForw: // fall through
+        case MEngineMonitor::EPEMessageIncCallForwToC: // fall through
+        case MEngineMonitor::EPEMessageOutCallForwToC: // fall through
+        case MEngineMonitor::EPEMessageForwardUnconditionalModeActive: // fall through
+        case MEngineMonitor::EPEMessageForwardConditionallyModeActive:
+			{
+			CPhoneGeneralGsmMessagesHandler* gsmMsgHandler =
+				CPhoneGeneralGsmMessagesHandler::NewL( *iStateMachine,
+													   *iViewCommandHandle,
+													   *this );
+			CleanupStack::PushL( gsmMsgHandler );
+			gsmMsgHandler->HandlePhoneEngineMessageL( aMessage, aCallId );
+			CleanupStack::PopAndDestroy( gsmMsgHandler );
+			}
+			break;
+
+        default:
+            CPhoneStateStartup::HandlePhoneEngineMessageL( 
+                aMessage, aCallId );
+            break;
+        }
+    }
+
+// End of File