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

📄 http.rss

📁 简单的socket请求
💻 RSS
字号:
/*
============================================================================
 Name        : Http.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 "Http.hrh"
#include "Http.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_http_menubar;
    cba = R_AVKON_SOFTKEYS_OPTIONS_EXIT;
    }
    



// -----------------------------------------------------------------------------
//
//    Localizable application information
//
// -----------------------------------------------------------------------------
//
RESOURCE LOCALISABLE_APP_INFO r_http_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\\Http_reg.mif";
        };
    }

// -----------------------------------------------------------------------------
//
//   r_http_menubar
//   Menubar for Http example
//
// -----------------------------------------------------------------------------
//
RESOURCE MENU_BAR r_http_menubar
    {
    titles =
        {
        MENU_TITLE { menu_pane = r_http_menu; }
        };
    }
#include "Http.rss.inc"

/*
// ---------------------------------------------------------
//   
//   r_http_menu
//   Menu for "Options"
//
// ---------------------------------------------------------
//

RESOURCE MENU_PANE r_http_menu
    {
    items = 
        {
		MENU_ITEM
			{
			command = EHttpSetServer;
			txt = "Set Server";
			},
        MENU_ITEM 
            {
            command = EHttpGetCommand;
            txt = "REQUEST BY GET";
            },
		MENU_ITEM 
            {
            command = EHttpOpenFile;
            txt = "OPEN FILE";
            },
		MENU_ITEM 
            {
            command = EHttpSelectIAPs;
            txt = "Select IAPs";
			cascade = r_http_menu_submenu_pane;
            },
        MENU_ITEM
            {
            command = EAknSoftkeyExit;
            txt = "Exit";
            }
        };
    }
// ---------------------------------------------------------
//   
//   r_http_menu_submenu_pane
//   Menu for "Search"
//
// ---------------------------------------------------------
RESOURCE MENU_PANE r_http_menu_submenu_pane
    {
    items = 
        {
        MENU_ITEM 
            {
            command = EHttpIAPs1;
            txt = "";
            },
        MENU_ITEM
           {
            command = EHttpIAPs2;
            txt = "";
            },
        MENU_ITEM
            {
            command = EHttpIAPs3;
            txt = "";
            },
		MENU_ITEM
            {
            command = EHttpIAPs4;
            txt = "";
            },
		MENU_ITEM
            {
            command = EHttpIAPs5;
            txt = "";
            },
		MENU_ITEM
            {
            command = EHttpIAPs6;
            txt = "";
            },
		MENU_ITEM
            {
            command = EHttpIAPs7;
            txt = "";
            },
		MENU_ITEM
            {
            command = EHttpIAPs8;
            txt = "";
            }
        };
    }
//----------------------------------------------------
//    r_output_rtexted
//    resource for rich text editor control on main view
//----------------------------------------------------
//
RESOURCE RTXTED r_output_view_rtexted
    {
    numlines = 10;
    textlimit= 10000;
    fontcontrolflags = EGulFontControlAll;
    fontnameflags = EGulNoSymbolFonts;
    default_input_mode = EAknEditorNullInputMode;
    }


RESOURCE DIALOG r_sockets_dialog_connect
    {
    flags = EGeneralQueryFlags;
    buttons = R_AVKON_SOFTKEYS_OK_CANCEL;
    items =
        {
        DLG_LINE
            {
            type = EAknCtQuery;
            id = EGeneralQuery;
            control = AVKON_DATA_QUERY
                {
                layout = EDataLayout;
                label = "Server Address";
                control = EDWIN
                    {
                    flags = EEikEdwinNoHorizScrolling | EEikEdwinResizable;
                    width = 20;
                    lines = 2;
                    maxlength = 50;
                    default_input_mode = EAknEditorNumericInputMode;
                    };
                };
            }
        };

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

⌨️ 快捷键说明

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