bitmapbasic.rss
来自「《基于Symbian OS的手机开发与应用实践》这本书的配套源码。」· RSS 代码 · 共 88 行
RSS
88 行
/*
* ============================================================================
* Name : BitmapBasic.rss
* Part of : BitmapBasic
* Created : 30.01.2006 by ToBeReplacedByAuthor
* Description:
* This file contains all the resources for the BitmapBasic.
* Initial content was generated by Series 60 Application Wizard.
* Version :
* Copyright: ToBeReplacedByCopyright
* ============================================================================
*/
// RESOURCE IDENTIFIER
NAME AWIZ // 4 letter ID
// INCLUDES
#include <eikon.rh>
#include "BitmapBasic.hrh"
#include "BitmapBasic.loc"
#include <avkon.rsg>
#include <avkon.rh>
#include <avkon.mbg>
// RESOURCE DEFINITIONS
RESOURCE RSS_SIGNATURE { }
RESOURCE TBUF { buf = "BitmapBasic"; }
RESOURCE EIK_APP_INFO
{
hotkeys = r_bitmapbasic_hotkeys;
menubar = r_bitmapbasic_menubar;
cba = R_AVKON_SOFTKEYS_OPTIONS_BACK;
}
//----------------------------------------------------
//
// r_bitmapbasic_hotkeys
//
//----------------------------------------------------
//
RESOURCE HOTKEYS r_bitmapbasic_hotkeys
{
control =
{
HOTKEY { command = EAknCmdExit; key='e'; }
};
}
//----------------------------------------------------
//
// r_bitmapbasic_menubar
//
//----------------------------------------------------
//
RESOURCE MENU_BAR r_bitmapbasic_menubar
{
titles =
{
MENU_TITLE { menu_pane = r_bitmapbasic_menu; txt = "File"; }
};
}
//----------------------------------------------------
//
// r_bitmapbasic_menu
//
//----------------------------------------------------
//
RESOURCE MENU_PANE r_bitmapbasic_menu
{
items =
{
MENU_ITEM { command = EBitmapBasicDrawBitmap; txt = qtn_appl_drawbitmap; },
MENU_ITEM { command = EBitmapBasicBitBlt; txt = qtn_appl_bitblt; },
MENU_ITEM { command = EBitmapBasicSave; txt = qtn_appl_save; },
MENU_ITEM { command = EAknCmdExit; txt = qtn_appl_exit; }
};
}
// End of File
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?