⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 nettest.rss

📁 Symbian s60平台第二版下一个socket通讯的例子
💻 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 <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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -