www.pudn.com > NetTest2nd.rar > NetTest.rss
/* ============================================================================ Name : NetTest.rss Author : Version : Copyright : Your copyright notice Description : This file contains all the resources for the NetTest. ============================================================================ */ // RESOURCE IDENTIFIER NAME AWIZ // 4 letter ID // INCLUDES #include#include "NetTest.hrh" #include "NetTest.loc" #include #include #include // RESOURCE DEFINITIONS RESOURCE RSS_SIGNATURE { } RESOURCE TBUF { buf = "NetTest"; } RESOURCE EIK_APP_INFO { hotkeys = r_nettest_hotkeys; menubar = r_nettest_menubar; cba = R_AVKON_SOFTKEYS_OPTIONS_BACK; } //---------------------------------------------------- // // r_nettest_hotkeys // //---------------------------------------------------- // RESOURCE HOTKEYS r_nettest_hotkeys { control = { HOTKEY { command = EAknCmdExit; key='e'; } }; } //---------------------------------------------------- // // r_nettest_menubar // //---------------------------------------------------- // RESOURCE MENU_BAR r_nettest_menubar { titles = { MENU_TITLE { menu_pane = r_nettest_menu; txt = "File"; } }; } //---------------------------------------------------- // // r_nettest_menu // //---------------------------------------------------- // RESOURCE MENU_PANE r_nettest_menu { items = { MENU_ITEM { command = ENetTestCMWapConn; txt = qtn_wap_conn; }, MENU_ITEM { command = ENetTestCMNetConn; txt = qtn_net_conn; }, MENU_ITEM { command = ENetTestResume; txt = qtn_test_resume; }, MENU_ITEM { command = ENetTestStop; txt = qtn_test_stop; }, MENU_ITEM { command = EAknCmdExit; txt = qtn_appl_exit; } }; }