📄 activeobj.rss
字号:
/*
============================================================================
Name : ActiveObj.rss
Author :
Version :
Copyright : Forum Nokia, 2006
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 "ActiveObj.hrh"
#include "ActiveObj.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_activeobj_menubar;
cba = R_AVKON_SOFTKEYS_OPTIONS_EXIT;
}
// -----------------------------------------------------------------------------
//
// Localizable application information
//
// -----------------------------------------------------------------------------
//
RESOURCE LOCALISABLE_APP_INFO r_activeobj_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\\ActiveObj_reg.mif";
};
}
// -----------------------------------------------------------------------------
//
// r_activeobj_menubar
// Menubar for ActiveObj example
//
// -----------------------------------------------------------------------------
//
RESOURCE MENU_BAR r_activeobj_menubar
{
titles =
{
MENU_TITLE { menu_pane = r_activeobj_menu; }
};
}
// -----------------------------------------------------------------------------
//
// r_activeobj_menu
// Menu for "Options"
//
// -----------------------------------------------------------------------------
//
RESOURCE MENU_PANE r_activeobj_menu
{
items =
{
// added the new Options menu command here
MENU_ITEM
{
command = ECommandStartSort;
txt = qtn_start_sort;
},
MENU_ITEM
{
command = ECommandCancelSort;
txt = qtn_cancel_sort;
},
MENU_ITEM
{
command = ECommandSyncSort;
txt = qtn_sync_sort;
},
MENU_ITEM
{
command = EAknSoftkeyExit;
txt = qtn_exit;
}
};
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -