phoneapp/phoneuiview/src/cphonedtmfsendingnote.cpp
changeset 0 5f000ab63145
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/phoneapp/phoneuiview/src/cphonedtmfsendingnote.cpp	Mon Jan 18 20:18:27 2010 +0200
@@ -0,0 +1,66 @@
+/*
+* 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 CPhoneDtmfSendingNote class.
+*
+*/
+
+
+// INCLUDE FILES
+#include "cphonedtmfsendingnote.h"
+#include "phoneui.hrh"
+
+// ================= MEMBER FUNCTIONS =======================
+// C++ default constructor can NOT contain any code, that
+// might leave.
+//
+CPhoneDtmfSendingNote::CPhoneDtmfSendingNote( CEikDialog** aSelfPtr, MEikCommandObserver& aCommandObserver ) :
+    CPhoneNote( aSelfPtr, aCommandObserver ) 
+    {
+    }
+
+// ---------------------------------------------------------
+// Destructor
+// ---------------------------------------------------------
+// 
+CPhoneDtmfSendingNote::~CPhoneDtmfSendingNote()
+    {
+    }
+
+// ---------------------------------------------------------
+// CPhoneDtmfSendingNote::OfferKeyEventL
+// ---------------------------------------------------------
+//
+TKeyResponse CPhoneDtmfSendingNote::OfferKeyEventL( 
+    const TKeyEvent& aKeyEvent,
+    TEventCode /*aType*/ )
+    {
+	if ( aKeyEvent.iScanCode == EStdKeyNo || aKeyEvent.iCode == EKeyNo )
+		{
+		OkToExitL( EPhoneCmdWaitNoteOk );
+		return EKeyWasNotConsumed;
+		}
+	else if( aKeyEvent.iScanCode == EStdKeyApplication0 ||
+	         aKeyEvent.iScanCode == EStdKeyYes || aKeyEvent.iCode == EKeyYes )
+		{
+		// Don't consume application and Yes -key
+		return EKeyWasNotConsumed;			
+		}
+	else
+		{
+		// Consume other key events
+	    return EKeyWasConsumed;		
+		}
+    }
+
+// End of File