|
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 is the default latin variant of the file. |
|
16 * |
|
17 */ |
|
18 |
|
19 // NOTE: It's mandatory that all variated keypad resources have |
|
20 // the same resouce identifier and same structure. Same interface |
|
21 // is used for all of them! |
|
22 |
|
23 // RESOURCE IDENTIFIER |
|
24 NAME DIKP |
|
25 |
|
26 #include <eikon.rh> |
|
27 #include <eikon.hrh> |
|
28 |
|
29 #include "dialerkeypad.rh" |
|
30 |
|
31 RESOURCE RSS_SIGNATURE { } |
|
32 |
|
33 RESOURCE TBUF { buf=""; } |
|
34 |
|
35 RESOURCE DIALER_KEYPAD r_dialer_keypad |
|
36 { |
|
37 keys = |
|
38 { |
|
39 DIALER_KEY // 1 |
|
40 { |
|
41 firstRow = DEFAULT_KEY_1_TEXT; |
|
42 }, |
|
43 DIALER_KEY // 2 |
|
44 { |
|
45 firstRow = DEFAULT_KEY_2_TEXT; |
|
46 }, |
|
47 DIALER_KEY // 3 |
|
48 { |
|
49 firstRow = DEFAULT_KEY_3_TEXT; |
|
50 }, |
|
51 DIALER_KEY // 4 |
|
52 { |
|
53 firstRow = DEFAULT_KEY_4_TEXT; |
|
54 }, |
|
55 DIALER_KEY // 5 |
|
56 { |
|
57 firstRow = DEFAULT_KEY_5_TEXT; |
|
58 }, |
|
59 DIALER_KEY // 6 |
|
60 { |
|
61 firstRow = DEFAULT_KEY_6_TEXT; |
|
62 }, |
|
63 DIALER_KEY // 7 |
|
64 { |
|
65 firstRow = DEFAULT_KEY_7_TEXT; |
|
66 }, |
|
67 DIALER_KEY // 8 |
|
68 { |
|
69 firstRow = DEFAULT_KEY_8_TEXT; |
|
70 }, |
|
71 DIALER_KEY // 9 |
|
72 { |
|
73 firstRow = DEFAULT_KEY_9_TEXT; |
|
74 }, |
|
75 DIALER_KEY // * |
|
76 { |
|
77 firstRow = DEFAULT_KEY_ASTERISK_TEXT; |
|
78 }, |
|
79 DIALER_KEY // 0 |
|
80 { |
|
81 firstRow = DEFAULT_KEY_0_TEXT; |
|
82 }, |
|
83 DIALER_KEY // # |
|
84 { |
|
85 firstRow = DEFAULT_KEY_HASH_TEXT; |
|
86 } |
|
87 }; |
|
88 } |
|
89 |
|
90 // End Of File |