commonuisupport/uikon/test/tlibs/tautolib/TAUTOLIB.RSS
changeset 0 2f259fa3e83a
equal deleted inserted replaced
-1:000000000000 0:2f259fa3e83a
       
     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 NAME TALB
       
    17 
       
    18 #include <techview/eikon.rh>
       
    19 #include <techview/eikon.rsg>
       
    20 #include "tautolib.hrh"
       
    21 
       
    22 RESOURCE RSS_SIGNATURE { }
       
    23 
       
    24 RESOURCE TBUF16 { buf=""; }
       
    25 
       
    26 RESOURCE EIK_APP_INFO test_app_info
       
    27     {
       
    28     hotkeys=testautolib_hot_keys;
       
    29 	menubar=testautolib_menu_bar;
       
    30     }
       
    31 
       
    32 RESOURCE HOTKEYS testautolib_hot_keys
       
    33 	{
       
    34 	control=
       
    35 		{
       
    36         HOTKEY { key='e'; command=EEikCmdExit; }
       
    37 		};
       
    38 	}
       
    39 
       
    40 RESOURCE MENU_BAR testautolib_menu_bar
       
    41 	{
       
    42     titles=
       
    43         {
       
    44 		MENU_TITLE
       
    45 			{
       
    46 			menu_pane=testautolib_menu_file;
       
    47 			txt="File";
       
    48 			}
       
    49 		};
       
    50 	}
       
    51 
       
    52 RESOURCE MENU_PANE testautolib_menu_file
       
    53 	{
       
    54     items =
       
    55         {
       
    56         MENU_ITEM
       
    57 			{
       
    58 			command=EEikCmdExit;
       
    59 			txt="Exit";
       
    60 			}
       
    61 		};
       
    62 	}
       
    63