📄 blueshare.rss
字号:
/*
============================================================================
Name : BlueShare.rss
Author :
Copyright : Your copyright notice
Description : This file contains all the resources for the BlueShare.
============================================================================
*/
// RESOURCE IDENTIFIER
NAME BLUE // 4 letter ID
// INCLUDES
#include <eikon.rh>
#include <avkon.rsg>
#include <avkon.rh>
#include <appinfo.rh>
#include "BlueShare.hrh"
#include "BlueShare.rls"
#include <commondialogs.hrh> //FILESELECTIONDIALOG
#include <commondialogs.rh>
// 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="BLUE";
}
// -----------------------------------------------------------------------------
//
// Define default menu and CBA key.
//
// -----------------------------------------------------------------------------
//
RESOURCE EIK_APP_INFO
{
menubar = r_menubar;
cba = R_AVKON_SOFTKEYS_OPTIONS_EXIT;
}
// -----------------------------------------------------------------------------
//
// r_menubar
// Main menubar
//
// -----------------------------------------------------------------------------
//
RESOURCE MENU_BAR r_menubar
{
titles =
{
MENU_TITLE { menu_pane = r_menu; }
};
}
// -----------------------------------------------------------------------------
//
// r_menu
// Menu for "Options"
//
// -----------------------------------------------------------------------------
//
RESOURCE MENU_PANE r_menu
{
items =
{
// added the new Options menu command here
MENU_ITEM
{
command = EBlueShareSendSis;
txt = qtn_btshare;
},
MENU_ITEM
{
command = EAknSoftkeyExit;
txt = qtn_exit;
}
};
}
// -----------------------------------------------------------------------------
//
// Resources for messages.
//
// -----------------------------------------------------------------------------
//
RESOURCE TBUF32 r_caption_string { buf=qtn_caption_string; }
RESOURCE TBUF r_btob_err_no_records { buf = qtn_btob_err_no_records; }
RESOURCE TBUF r_btob_err_cant_get_attribute { buf = qtn_btob_err_cant_get_attribute; }
RESOURCE TBUF r_btob_err_attr_req_com { buf = qtn_btob_err_attr_req_com; }
RESOURCE TBUF r_btob_service_description { buf = qtn_btob_service_description; }
RESOURCE TBUF r_btob_error_prefix { buf = qtn_btob_error_prefix; }
RESOURCE TBUF r_btob_connected { buf = qtn_btob_connected; }
RESOURCE TBUF r_btob_server_stopped { buf = qtn_btob_server_stopped; }
RESOURCE TBUF r_btob_server_started { buf = qtn_btob_server_started; }
RESOURCE TBUF r_btob_str_failed { buf = qtn_btob_str_failed; }
RESOURCE TBUF r_btob_hello { buf = qtn_btob_hello; }
RESOURCE TBUF r_btob_no_device { buf = qtn_btob_no_device; }
RESOURCE TBUF r_btob_connection_error { buf = qtn_btob_connection_error; }
RESOURCE TBUF r_btob_send_error { buf = qtn_btob_send_error; }
RESOURCE TBUF r_btob_found_service { buf = qtn_btob_found_service; }
RESOURCE TBUF r_btob_sent_object { buf = qtn_btob_sent_object; }
RESOURCE TBUF r_btob_disconnected { buf = qtn_btob_disconnected; }
RESOURCE TBUF r_btob_client_busy { buf = qtn_btob_client_busy; }
RESOURCE TBUF r_btob_disconnecting { buf = qtn_btob_disconnecting; }
RESOURCE TBUF r_btob_no_bt { buf = qtn_btob_no_bt; }
// ----------------------------------------------------------------------------
//
// r_localisable_app_info
//
// ----------------------------------------------------------------------------
//
RESOURCE LOCALISABLE_APP_INFO r_localisable_app_info
{
short_caption = qtn_caption_string;
caption_and_icon =
CAPTION_AND_ICON_INFO
{
caption = qtn_caption_string;
number_of_icons = 1;
icon_file = "\\resource\\apps\\BlueShare_0xE0005B8E.mif";
};
}
RESOURCE FILESELECTIONDIALOG r_file_selection_dialog_c
{
title = "Select:";
root_path = "C:\\";
}
RESOURCE FILESELECTIONDIALOG r_file_selection_dialog_e
{
title = "Select:";
root_path = "E:\\";
}
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -