fep/frontendprocessor/test/feps/tfep3_ui.rss
changeset 0 eb1f2e154e89
equal deleted inserted replaced
-1:000000000000 0:eb1f2e154e89
       
     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 "tfep3.hrh"
       
    19 
       
    20 NAME TFP3
       
    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 TFEP3.H
       
    31 		LBUF {txt="Plain";},
       
    32 		LBUF {txt="Hexadecimal character code";},
       
    33 		LBUF {txt="Number keypad";}
       
    34 		};
       
    35 	}
       
    36 
       
    37 RESOURCE DIALOG r_tfp_settings_dialog
       
    38     {
       
    39     flags=EEikDialogFlagWait;
       
    40     title="TFEP3 settings";
       
    41     buttons=R_EIK_BUTTONS_CANCEL_OK;
       
    42 	items=
       
    43 		{
       
    44 		DLG_LINE
       
    45 			{
       
    46 			type=EEikCtCheckBox;
       
    47 			prompt="Inline editing enabled";
       
    48 			id=EControlIdInlineEditingEnabled;
       
    49 			},
       
    50 		DLG_LINE
       
    51 			{
       
    52 			type=EEikCtChoiceList;
       
    53 			prompt="Input method";
       
    54 			id=EControlIdInputMethod;
       
    55 			control=CHOICELIST {array_id=r_tfp_input_method_array;};
       
    56 			}
       
    57 		};
       
    58     }
       
    59