|
1 /* |
|
2 * Copyright (c) 2009 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: Dialer virtual keypad button text labels. |
|
15 * This variant is for languages written with Thai |
|
16 * alphabets. |
|
17 * |
|
18 */ |
|
19 |
|
20 // NOTE: It's mandatory that all variated keypad resources have |
|
21 // the same resouce identifier and same structure. Same interface |
|
22 // is used for all of them! |
|
23 |
|
24 // RESOURCE IDENTIFIER |
|
25 NAME DIKP |
|
26 |
|
27 #include <eikon.rh> |
|
28 #include <eikon.hrh> |
|
29 |
|
30 #include "dialerkeypad.rh" |
|
31 |
|
32 RESOURCE RSS_SIGNATURE { } |
|
33 |
|
34 RESOURCE TBUF { buf=""; } |
|
35 |
|
36 RESOURCE DIALER_KEYPAD r_dialer_keypad |
|
37 { |
|
38 keys = |
|
39 { |
|
40 DIALER_KEY // 1 |
|
41 { |
|
42 firstRow = DEFAULT_KEY_1_TEXT; |
|
43 secondRow = <0x0E01><0x002D><0x0E05>; |
|
44 }, |
|
45 DIALER_KEY // 2 |
|
46 { |
|
47 firstRow = DEFAULT_KEY_2_TEXT; |
|
48 secondRow = <0x0E06><0x002D><0x0E09>; |
|
49 }, |
|
50 DIALER_KEY // 3 |
|
51 { |
|
52 firstRow = DEFAULT_KEY_3_TEXT; |
|
53 secondRow = <0x0E0A><0x002D><0x0E0D>; |
|
54 }, |
|
55 DIALER_KEY // 4 |
|
56 { |
|
57 firstRow = DEFAULT_KEY_4_TEXT; |
|
58 secondRow = <0x0E0E><0x002D><0x0E13>; |
|
59 }, |
|
60 DIALER_KEY // 5 |
|
61 { |
|
62 firstRow = DEFAULT_KEY_5_TEXT; |
|
63 secondRow = <0x0E14><0x002D><0x0E18>; |
|
64 }, |
|
65 DIALER_KEY // 6 |
|
66 { |
|
67 firstRow = DEFAULT_KEY_6_TEXT; |
|
68 secondRow = <0x0E19><0x002D><0x0E1D>; |
|
69 }, |
|
70 DIALER_KEY // 7 |
|
71 { |
|
72 firstRow = DEFAULT_KEY_7_TEXT; |
|
73 secondRow = <0x0E1E><0x002D><0x0E22>; |
|
74 }, |
|
75 DIALER_KEY // 8 |
|
76 { |
|
77 firstRow = DEFAULT_KEY_8_TEXT; |
|
78 secondRow = <0x0E23><0x002D><0x0E29>; |
|
79 }, |
|
80 DIALER_KEY // 9 |
|
81 { |
|
82 firstRow = DEFAULT_KEY_9_TEXT; |
|
83 secondRow = <0x0E2A><0x002D><0x0E2E>; |
|
84 }, |
|
85 DIALER_KEY // * |
|
86 { |
|
87 firstRow = DEFAULT_KEY_ASTERISK_TEXT; |
|
88 }, |
|
89 DIALER_KEY // 0 |
|
90 { |
|
91 firstRow = DEFAULT_KEY_0_TEXT; |
|
92 }, |
|
93 DIALER_KEY // # |
|
94 { |
|
95 firstRow = DEFAULT_KEY_HASH_TEXT; |
|
96 } |
|
97 }; |
|
98 } |
|
99 |
|
100 // End Of File |