📄 httpclient.rss
字号:
/*
* ============================================================================
* Name : HttpClient.rss
* Part of : HttpClient
* Created : 07.03.2006 by ToBeReplacedByAuthor
* Description:
* This file contains all the resources for the HttpClient.
* Initial content was generated by Series 60 Application Wizard.
* Version :
* Copyright: ToBeReplacedByCopyright
* ============================================================================
*/
// RESOURCE IDENTIFIER
NAME AWIZ // 4 letter ID
// INCLUDES
#include <eikon.rh>
#include "HttpClient.hrh"
#include "HttpClient.loc"
#include <avkon.rsg>
#include <avkon.rh>
#include <avkon.mbg>
// RESOURCE DEFINITIONS
RESOURCE RSS_SIGNATURE { }
RESOURCE TBUF { buf = "HttpClient"; }
RESOURCE EIK_APP_INFO
{
hotkeys = r_httpclient_hotkeys;
menubar = r_httpclient_menubar;
cba = R_AVKON_SOFTKEYS_OPTIONS_BACK;
}
//----------------------------------------------------
//
// r_httpclient_hotkeys
//
//----------------------------------------------------
//
RESOURCE HOTKEYS r_httpclient_hotkeys
{
control =
{
HOTKEY { command = EAknCmdExit; key='e'; }
};
}
//----------------------------------------------------
//
// r_httpclient_menubar
//
//----------------------------------------------------
//
RESOURCE MENU_BAR r_httpclient_menubar
{
titles =
{
MENU_TITLE { menu_pane = r_httpclient_menu; txt = "File"; }
};
}
//----------------------------------------------------
//
// r_httpclient_menu
//
//----------------------------------------------------
//
RESOURCE MENU_PANE r_httpclient_menu
{
items =
{
MENU_ITEM { command = EHttpClientCmdGet; txt = qtn_appl_get; },
MENU_ITEM { command = EHttpClientCmdCancel; txt = qtn_appl_cancel; },
MENU_ITEM { command = EAknCmdExit; txt = qtn_appl_exit; }
};
}
//-----------------------------------------------------------------------------
//
// r_httpclient_query
//
//-----------------------------------------------------------------------------
//
RESOURCE DIALOG r_httpclient_query
{
flags = EGeneralQueryFlags;
buttons = R_AVKON_SOFTKEYS_OK_CANCEL;
items =
{
DLG_LINE
{
type = EAknCtQuery;
id = EGeneralQuery;
control = AVKON_DATA_QUERY
{
layout = EDataLayout;
label = qtn_prompt_url;
control = EDWIN
{
flags = EEikEdwinNoHorizScrolling | EEikEdwinResizable;
maxlength = KUrlMaxLength;
max_view_height_in_lines = 6;
// if you have the line above, you must have this.
// It's calculable from LAF
base_line_delta = 21;
};
};
}
};
}
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -