equal
deleted
inserted
replaced
|
1 // Copyright (c) 1997-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 #include <techview/eikon.rh> |
|
17 #include <techview/eikon.rsg> |
|
18 #include "tfep1.hrh" |
|
19 |
|
20 NAME TFP1 |
|
21 |
|
22 RESOURCE RSS_SIGNATURE |
|
23 { |
|
24 } |
|
25 |
|
26 RESOURCE ARRAY r_tfp_input_method_array |
|
27 { |
|
28 items= |
|
29 { |
|
30 // these must be in the same order as the enum in TFEP1.H |
|
31 LBUF {txt="Plain";}, |
|
32 LBUF {txt="Hexadecimal character code";} |
|
33 }; |
|
34 } |
|
35 |
|
36 RESOURCE DIALOG r_tfp_settings_dialog |
|
37 { |
|
38 flags=EEikDialogFlagWait; |
|
39 title="TFEP1 settings"; |
|
40 buttons=R_EIK_BUTTONS_CANCEL_OK; |
|
41 items= |
|
42 { |
|
43 DLG_LINE |
|
44 { |
|
45 type=EEikCtCheckBox; |
|
46 prompt="Inline editing enabled"; |
|
47 id=EControlIdInlineEditingEnabled; |
|
48 }, |
|
49 DLG_LINE |
|
50 { |
|
51 type=EEikCtChoiceList; |
|
52 prompt="Input method"; |
|
53 id=EControlIdInputMethod; |
|
54 control=CHOICELIST {array_id=r_tfp_input_method_array;}; |
|
55 } |
|
56 }; |
|
57 } |
|
58 |