appfw/apparchitecture/tef/UnProctectedUidApp.rss
changeset 0 2e3d3ce01487
equal deleted inserted replaced
-1:000000000000 0:2e3d3ce01487
       
     1 // Copyright (c) 2007-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 NAME UNPR
       
    23 
       
    24 #include <techview/eikon.rh>
       
    25 #include <uiklafgt/eikcore.rsg>
       
    26 
       
    27 RESOURCE RSS_SIGNATURE { }
       
    28 
       
    29 RESOURCE TBUF { buf=""; }
       
    30 
       
    31 RESOURCE EIK_APP_INFO
       
    32 	{
       
    33 	hotkeys=r_example_hotkeys;
       
    34 	menubar=r_example_menubar;
       
    35 	}
       
    36 
       
    37 RESOURCE HOTKEYS r_example_hotkeys
       
    38     {
       
    39     control=
       
    40         {
       
    41         HOTKEY { command=EEikCmdExit; key='e'; }
       
    42         };
       
    43     }
       
    44 
       
    45 RESOURCE MENU_BAR r_example_menubar
       
    46     {
       
    47     titles=
       
    48         {
       
    49         MENU_TITLE { menu_pane=r_example_first_menu; txt="UnProctectedUidApp"; }
       
    50 		};
       
    51     }
       
    52 
       
    53 RESOURCE MENU_PANE r_example_first_menu
       
    54 	{
       
    55 	items=
       
    56 		{
       
    57 		MENU_ITEM { command=EEikCmdExit; txt="Close"; }
       
    58         };
       
    59     }
       
    60