|
1 /* |
|
2 * Copyright (c) 2002-2007 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: Implementation of the vkb ui state machine (compositionnochars) |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 // System includes |
|
20 |
|
21 // user includes |
|
22 #include "peninputvkbuistatewithtransitorychars.h" |
|
23 |
|
24 // ======== MEMBER FUNCTIONS ======== |
|
25 |
|
26 // Implementation of Class CPeninputVkbUiStateWithTransitoryChars |
|
27 |
|
28 // ----------------------------------------------------------------------------- |
|
29 // CPeninputVkbUiStateWithTransitoryChars::NewL |
|
30 // (other items were commented in a header). |
|
31 // ----------------------------------------------------------------------------- |
|
32 // |
|
33 CPeninputVkbUiStateWithTransitoryChars* CPeninputVkbUiStateWithTransitoryChars::NewL(MPeninputUiStateMgr* aUiStateMgr, |
|
34 MPeninputLayoutContext* aContext) |
|
35 { |
|
36 CPeninputVkbUiStateWithTransitoryChars* self = new ( ELeave ) CPeninputVkbUiStateWithTransitoryChars(aUiStateMgr,aContext); |
|
37 CleanupStack::PushL(self); |
|
38 self->Construct(); |
|
39 CleanupStack::Pop(self); |
|
40 return self; |
|
41 } |
|
42 |
|
43 // ----------------------------------------------------------------------------- |
|
44 // CPeninputVkbUiStateWithTransitoryChars::~CPeninputVkbUiStateWithTransitoryChars |
|
45 // (other items were commented in a header). |
|
46 // ----------------------------------------------------------------------------- |
|
47 // |
|
48 CPeninputVkbUiStateWithTransitoryChars::~CPeninputVkbUiStateWithTransitoryChars() |
|
49 { |
|
50 } |
|
51 |
|
52 // ----------------------------------------------------------------------------- |
|
53 // CPeninputVkbUiStateWithTransitoryChars::HandleKeyEventL |
|
54 // (other items were commented in a header). |
|
55 // ----------------------------------------------------------------------------- |
|
56 // |
|
57 TBool CPeninputVkbUiStateWithTransitoryChars::HandleKeyEventL(const TRawEvent& /*aData*/) |
|
58 { |
|
59 return ETrue; // by HiraganaKanji |
|
60 } |
|
61 |
|
62 // ----------------------------------------------------------------------------- |
|
63 // CPeninputVkbUiStateWithTransitoryChars::CPeninputVkbUiStateWithTransitoryChars |
|
64 // (other items were commented in a header). |
|
65 // ----------------------------------------------------------------------------- |
|
66 // |
|
67 CPeninputVkbUiStateWithTransitoryChars::CPeninputVkbUiStateWithTransitoryChars(MPeninputUiStateMgr* aUiStateMgr, |
|
68 MPeninputLayoutContext* aContext) |
|
69 :CPeninputVkbUiState(aUiStateMgr,aContext) |
|
70 { |
|
71 } |
|
72 |
|
73 // ----------------------------------------------------------------------------- |
|
74 // CPeninputVkbUiStateWithTransitoryChars::HandleVkbEvent |
|
75 // (other items were commented in a header). |
|
76 // return False --->iVkbWindow->HandleControlEvent() by UiLayout |
|
77 // ----------------------------------------------------------------------------- |
|
78 // |
|
79 TBool CPeninputVkbUiStateWithTransitoryChars::HandleVkbEvent(TInt /*aEventType*/, |
|
80 const TDesC& /*aEventData*/) |
|
81 { |
|
82 return EFalse; |
|
83 } |
|
84 |
|
85 // ----------------------------------------------------------------------------- |
|
86 // CPeninputVkbUiStateWithTransitoryChars::HandleBackEvent |
|
87 // (other items were commented in a header). |
|
88 // ----------------------------------------------------------------------------- |
|
89 // |
|
90 TBool CPeninputVkbUiStateWithTransitoryChars::HandleBackEvent(TInt /*aEventType*/, |
|
91 const TDesC& /*aEventData*/) |
|
92 { |
|
93 return EFalse; |
|
94 } |
|
95 // ----------------------------------------------------------------------------- |
|
96 // CPeninputVkbUiStateWithTransitoryChars::HandleEnterSpaceTabEvent |
|
97 // (other items were commented in a header). |
|
98 // ----------------------------------------------------------------------------- |
|
99 // |
|
100 TBool CPeninputVkbUiStateWithTransitoryChars::HandleEnterSpaceTabEvent(TInt /*aEventType*/, |
|
101 const TDesC& /*aEventData*/) |
|
102 { |
|
103 return EFalse; |
|
104 } |
|
105 |
|
106 // End Of File |