|
1 // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 /** |
|
17 @file |
|
18 @test |
|
19 @internalComponent - Internal Symbian test code |
|
20 */ |
|
21 |
|
22 #include <techview/eikon.rh> |
|
23 #include <techview/eikon.rsg> |
|
24 #include "TFEP1TESTTARGET.hrh" |
|
25 |
|
26 NAME TF1T |
|
27 |
|
28 RESOURCE RSS_SIGNATURE |
|
29 { |
|
30 } |
|
31 |
|
32 RESOURCE DIALOG r_tft_dialog |
|
33 { |
|
34 flags=EEikDialogFlagWait; |
|
35 title="TFEP1 test target"; |
|
36 buttons=R_EIK_BUTTONS_CANCEL_OK; |
|
37 items= |
|
38 { |
|
39 DLG_LINE |
|
40 { |
|
41 type=EEikCtEdwin; |
|
42 prompt="Normal edwin"; |
|
43 id=EControlIdNormalEdwin; |
|
44 control=EDWIN {width=15;}; |
|
45 }, |
|
46 DLG_LINE |
|
47 { |
|
48 type=EEikCtEdwin; |
|
49 prompt="Normal numerical edwin"; |
|
50 id=EControlIdNormalNumEdwin; |
|
51 control=EDWIN {width=15;}; |
|
52 }, |
|
53 DLG_LINE |
|
54 { |
|
55 type=EEikCtEdwin; |
|
56 prompt="Half-width katakana edwin"; |
|
57 id=EControlIdHalfWidthKatakanaEdwin; |
|
58 control=EDWIN {width=15;}; |
|
59 }, |
|
60 DLG_LINE |
|
61 { |
|
62 type=EEikCtEdwin; |
|
63 prompt="Phonetic-alphabet edwin"; |
|
64 id=EControlIdPhoneticAlphabetEdwin; |
|
65 control=EDWIN {width=15;}; |
|
66 }, |
|
67 DLG_LINE |
|
68 { |
|
69 type=EEikCtEdwin; |
|
70 prompt="CJK edwin"; |
|
71 id=EControlIdCJKEdwin; |
|
72 control=EDWIN |
|
73 {width=15;}; |
|
74 } |
|
75 |
|
76 }; |
|
77 } |
|
78 |