wlansampleex.rss

来自「基于symbian平台的Wlan创建」· RSS 代码 · 共 85 行

RSS
85
字号
// ====================================================================
// File: WLanSampleEx.rss
// Created: 01/19/07
// Author: 
// Copyright (c): , All rights reserved
// ==================================================================== */

NAME HELL

#include <eikon.rh>
#include <eikon.rsg>
#include <avkon.rh>
#include <avkon.rsg>

#include "WLanSampleEx.hrh"


// ---------------------------------------------------------
//   
//    Define the resource file signature 
//    This resource should be empty.
//
// ---------------------------------------------------------
//
RESOURCE RSS_SIGNATURE { }

// ---------------------------------------------------------
//   
//    Default Document Name
//
// ---------------------------------------------------------
//
RESOURCE TBUF r_default_document_name { buf=""; }

// ---------------------------------------------------------
//   
//    Define default menu and CBA key.
//
// ---------------------------------------------------------
//
RESOURCE EIK_APP_INFO
    {
    menubar = r_WLanSampleEx_menubar;
    cba = R_AVKON_SOFTKEYS_OPTIONS_EXIT;
    }


// ---------------------------------------------------------
//   
//   r_WLanSampleEx_menubar
//   Menubar for WLanSampleEx example
//
// ---------------------------------------------------------
//
RESOURCE MENU_BAR r_WLanSampleEx_menubar
    {
    titles =
        {
        MENU_TITLE {menu_pane = r_WLanSampleEx_menu;}
        };
    }


// ---------------------------------------------------------
//   
//   r_WLanSampleEx_menu
//   Menu for "Options"
//
// ---------------------------------------------------------
//
RESOURCE MENU_PANE r_WLanSampleEx_menu
    {
    items = 
        {
        MENU_ITEM {command = EWLanSampleExCommand1;  txt = "Scan Wlan Names";},
        MENU_ITEM {command = EWLanSampleExCommand2;  txt = "Get wlan Info";},
		MENU_ITEM {command = EWLanSampleExCommand3;  txt = "Create access point";},
		MENU_ITEM {command = EWLanSampleExCommand4;  txt = "Establish Connection";},
		MENU_ITEM {command = EWLanSampleExCommand5;  txt = "Get MAC address";},
		MENU_ITEM {command = EWLanSampleExCommand6;  txt = "Get IP address";},
		MENU_ITEM {command = EWLanSampleExCommand7;  txt = "Get CurrentSignal";},
		MENU_ITEM {command = EAknSoftkeyExit;   txt = "Exit";}
        };
    }

⌨️ 快捷键说明

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