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

📄 nettest.rss

📁 一个symbian http上传下载例子
💻 RSS
字号:
/*
============================================================================
 Name        : NetTest.rss
 Author      : 
 Version     :
 Copyright   : Your copyright notice
 Description : Application resource file
============================================================================
*/

//  RESOURCE IDENTIFIER
NAME HEWB    // 4 letter ID


//  INCLUDES
#include <eikon.rh>
#include <avkon.rh>
#include <avkon.rsg>
#include <appinfo.rh>
#include "NetTest.hrh"
#include "NetTest.rls"

//  RESOURCE DEFINITIONS

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

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

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


// -----------------------------------------------------------------------------
//
//    Localizable application information
//
// -----------------------------------------------------------------------------
//
RESOURCE LOCALISABLE_APP_INFO r_nettest_localisable_app_info
    {
    short_caption = qtn_hewb_short_caption_string;
    caption_and_icon = 
    CAPTION_AND_ICON_INFO
        {
        caption = qtn_hewb_caption_string;

        number_of_icons = 1;
        icon_file = "\\resource\\apps\\NetTest_reg.mif";
        };
    }

// -----------------------------------------------------------------------------
//
//   r_nettest_menubar
//   Menubar for NetTest example
//
// -----------------------------------------------------------------------------
//
RESOURCE MENU_BAR r_nettest_menubar
    {
    titles =
        {
        MENU_TITLE { menu_pane = r_nettest_menu; }
        };
    }

// -----------------------------------------------------------------------------
//
//   r_nettest_menu
//   Menu for "Options"
//
// -----------------------------------------------------------------------------
//
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; }
        };
    }


// -----------------------------------------------------------------------------
//
// Resources for messages.
//
// -----------------------------------------------------------------------------
//
RESOURCE TBUF32 r_hewb_command1_text { buf=qtn_hewb_command1_text; }

⌨️ 快捷键说明

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