commonuisupport/uikon/test/tpackage/tembed.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 // TPACKAGE.RSS
       
    15 // 
       
    16 //
       
    17 
       
    18 NAME TPCK
       
    19 
       
    20 #include <techview/eikon.rh>
       
    21 
       
    22 //#include <techview/eikon.rsg>
       
    23 #include <uiklafgt/eikcore.rsg>
       
    24 #include "tembed.hrh"
       
    25 
       
    26 RESOURCE RSS_SIGNATURE { }
       
    27 
       
    28 RESOURCE TBUF16 { buf="Test embeded"; }
       
    29 
       
    30 RESOURCE EIK_APP_INFO
       
    31 	{
       
    32 	hotkeys=r_tpck_hotkeys;
       
    33 	menubar=r_tpck_menubar;
       
    34 	}
       
    35 
       
    36 RESOURCE HOTKEYS r_tpck_hotkeys
       
    37     {
       
    38     control=
       
    39         {
       
    40         HOTKEY {command=EEikCmdExit; key='e';}
       
    41         };
       
    42     }
       
    43 
       
    44 RESOURCE MENU_BAR r_tpck_menubar
       
    45     {
       
    46     titles=
       
    47         {
       
    48         MENU_TITLE { menu_pane=r_tpck_file_menu; txt="File"; }
       
    49 		};
       
    50     }
       
    51 
       
    52 RESOURCE MENU_PANE r_tpck_file_menu
       
    53     {
       
    54     items=
       
    55         {
       
    56 	    MENU_ITEM
       
    57             {
       
    58             command=EEikCmdExit;
       
    59             txt="Close file";
       
    60             }
       
    61 		};
       
    62     }
       
    63 
       
    64