|
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 "cphonestateidle.h" |
|
21 #include "phoneappcommands.hrh" |
|
22 |
|
23 CPhoneStateIdle::CPhoneStateIdle( |
|
24 MPhoneStateMachine* aStateMachine, |
|
25 MPhoneViewCommandHandle* aViewCommandHandle, |
|
26 MPhoneCustomization* aPhoneCustomization ): |
|
27 CPhoneState( aStateMachine, aViewCommandHandle, aPhoneCustomization ) |
|
28 { |
|
29 } |
|
30 |
|
31 CPhoneStateIdle::~CPhoneStateIdle() |
|
32 { |
|
33 |
|
34 } |
|
35 |
|
36 void CPhoneStateIdle::ConstructL() |
|
37 { |
|
38 |
|
39 } |
|
40 |
|
41 void CPhoneStateIdle::HandlePhoneEngineMessageL( |
|
42 const TInt /*aMessage*/, |
|
43 TInt /*aCallId*/ ) |
|
44 { |
|
45 |
|
46 } |
|
47 |
|
48 TBool CPhoneStateIdle::HandleCommandL( TInt /*aCommand*/ ) |
|
49 { |
|
50 |
|
51 } |
|
52 |
|
53 void CPhoneStateIdle::HandleNumberEntryClearedL() |
|
54 { |
|
55 |
|
56 } |
|
57 |
|
58 void CPhoneStateIdle::HandleKeyMessageL( |
|
59 TPhoneKeyEventMessages /*aMessage*/, |
|
60 TKeyCode /*aScanCode*/ ) |
|
61 { |
|
62 |
|
63 } |
|
64 |
|
65 void CPhoneStateIdle::HandleKeyEventL( |
|
66 const TKeyEvent& /*aKeyEvent*/, |
|
67 TEventCode /*aEventCode*/ ) |
|
68 { |
|
69 |
|
70 } |
|
71 |
|
72 TBool CPhoneStateIdle::HandleRemConCommandL( |
|
73 TRemConCoreApiOperationId /*aOperationId*/, |
|
74 TRemConCoreApiButtonAction /*aButtonAct*/ ) |
|
75 { |
|
76 |
|
77 } |
|
78 |
|
79 void CPhoneStateIdle::HandlePhoneFocusLostEventL() |
|
80 { |
|
81 |
|
82 } |
|
83 |
|
84 void CPhoneStateIdle::HandlePhoneForegroundEventL() |
|
85 { |
|
86 |
|
87 } |
|
88 |
|
89 void CPhoneStateIdle::HandleIdleForegroundEventL() |
|
90 { |
|
91 |
|
92 } |
|
93 |
|
94 void CPhoneStateIdle::DialL( const TDesC& /*aNumber*/, |
|
95 TPhoneNumberType /*aNumberType*/, TDialInitiationMethod /*aDialMethod*/ ) |
|
96 { |
|
97 |
|
98 } |
|
99 |
|
100 void CPhoneStateIdle::HandleDialingL( TInt /*aCallId*/ ) |
|
101 { |
|
102 |
|
103 } |
|
104 |
|
105 void CPhoneStateIdle::HandleSendCommandL() |
|
106 { |
|
107 |
|
108 } |
|
109 |
|
110 // End of File |
|
111 |