nettest.rss

来自「Symbian第二版断点续传代码,可以节省用户下载流量」· RSS 代码 · 共 84 行

RSS
84
字号
/*
============================================================================
 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 <eikon.rh>
#include "NetTest.hrh"
#include "NetTest.loc"
#include <avkon.rsg>
#include <avkon.rh>
#include <avkon.mbg>



//  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; }
        };
    }

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?