|
1 /* |
|
2 * Copyright (c) 2002-2005 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: header file of Stroke phrase predictive state |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 |
|
22 |
|
23 |
|
24 |
|
25 |
|
26 |
|
27 |
|
28 |
|
29 #ifndef T_AKNFEPUIINPUTSTATEPREDICTIVECANDIDATESTROKE_PHRASE_H |
|
30 #define T_AKNFEPUIINPUTSTATEPREDICTIVECANDIDATESTROKE_PHRASE_H |
|
31 |
|
32 // User includes |
|
33 #include "AknFepUiInputStatePredictiveCandidateChinesePhrase.h" |
|
34 |
|
35 /** |
|
36 * TAknFepInputStatePredictiveCandidateStrokePhrase class. |
|
37 * |
|
38 * Implementation of Stroke phrase predictive state |
|
39 * |
|
40 * @lib avkonfep.dll |
|
41 * @since S60 v3.2 |
|
42 */ |
|
43 class TAknFepInputStatePredictiveCandidateStrokePhrase : |
|
44 public TAknFepInputStatePredictiveCandidateChinesePhrase |
|
45 { |
|
46 public: |
|
47 |
|
48 /** |
|
49 * C++ default constructor |
|
50 * |
|
51 * @since S60 V3.2 |
|
52 * @param aOwner Pointer to UI manager state interface |
|
53 * @param aUIContainer Pointer to Chinese UI container |
|
54 */ |
|
55 TAknFepInputStatePredictiveCandidateStrokePhrase( |
|
56 MAknFepUIManagerStateInterface* aOwner, |
|
57 MAknFepUICtrlContainerChinese* aUIContainer); |
|
58 |
|
59 protected: |
|
60 |
|
61 /** |
|
62 * From TAknFepInputStatePredictiveCandidatePhrase |
|
63 * Handle system key press event |
|
64 * |
|
65 * @since S60 v3.2 |
|
66 * @param aKey System key |
|
67 * @param aLength Key press length |
|
68 * @return ETrue if handle, otherwise this class do not handle this key |
|
69 */ |
|
70 TBool HandleKeyL(TInt aKey, TKeyPressLength aLength); |
|
71 }; |
|
72 |
|
73 #endif T_AKNFEPUIINPUTSTATEPREDICTIVECANDIDATESTROKE_PHRASE_H |
|
74 |
|
75 // End of file |