www.pudn.com > symbianex.rar > HelloWorld.rss
/* * ============================================================================ * Name : HelloWorld.rss * Part of : HelloWorld * Created : 2006-3-9 by Hewei * Description: * This file contains all the resources for the HelloWorld. * Initial content was generated by Series 60 AppWizard. * Version : * Copyright: * ============================================================================ */ // RESOURCE IDENTIFIER NAME AWIZ // 4 letter ID // INCLUDES #include#include "helloworld.hrh" #include "helloworld.loc" #include #include #include #include // RESOURCE DEFINITIONS RESOURCE RSS_SIGNATURE { } RESOURCE TBUF { buf = "HelloWorld"; } RESOURCE EIK_APP_INFO { hotkeys = r_helloworld_hotkeys; menubar = r_helloworld_menubar; cba = R_AVKON_SOFTKEYS_OPTIONS_BACK; } //---------------------------------------------------- // // r_helloworld_hotkeys // //---------------------------------------------------- // RESOURCE HOTKEYS r_helloworld_hotkeys { control = { HOTKEY { command = EAknCmdExit; key='e'; } }; } //---------------------------------------------------- // // r_helloworld_menubar // //---------------------------------------------------- // RESOURCE MENU_BAR r_helloworld_menubar { titles = { MENU_TITLE { menu_pane = r_helloworld_menu; txt = "File"; } }; } //---------------------------------------------------- // // r_helloworld_menu // //---------------------------------------------------- // RESOURCE MENU_PANE r_helloworld_menu { items = { MENU_ITEM { command = EHelloWorldCmdAppTest; txt = qtn_appl_test; }, MENU_ITEM { command=EHelloWorldCmdSubMenu;cascade=r_helloworld_submenu;txt=qtn_appl_sub_menu;}, MENU_ITEM { command = EAknCmdExit; txt = qtn_options_exit; } }; } RESOURCE MENU_PANE r_helloworld_submenu { items={ MENU_ITEM { command = EHelloWorldCmdAppSubMenu1; txt = qtn_appl_sub_menu_test1; }, MENU_ITEM { command = EHelloWorldCmdAppSubMenu2; txt = qtn_appl_sub_menu_test2; } }; } // End of File