📄 graphics.rss
字号:
/* Copyright (c) 2004, Nokia. All rights reserved */
// RESOURCE IDENTIFIER
NAME GRAP // 4 letter ID
// INCLUDES
#include <eikon.rh>
#include <avkon.rh>
#include <avkon.rsg>
#include "Graphics.hrh"
#include "Graphics.loc"
// 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="";
}
// -----------------------------------------------------------------------------
//
// Define default menu and CBA key.
//
// -----------------------------------------------------------------------------
//
RESOURCE EIK_APP_INFO
{
menubar = r_graphics_menubar;
cba = R_AVKON_SOFTKEYS_OPTIONS_EXIT;
}
// -----------------------------------------------------------------------------
//
// r_graphics_menubar
// Menubar for Graphics example
//
// -----------------------------------------------------------------------------
//
RESOURCE MENU_BAR r_graphics_menubar
{
titles =
{
MENU_TITLE
{
menu_pane = r_graphics_menu;
}
};
}
// -----------------------------------------------------------------------------
//
// r_graphics_menu
// Menu for "Options"
//
// -----------------------------------------------------------------------------
//
RESOURCE MENU_PANE r_graphics_menu
{
items =
{
MENU_ITEM
{
command = EGaphicsNoOffScreenDemo;
txt = qtn_grap_no_off_screen_text;
},
MENU_ITEM
{
command = EGaphicsOffScreenDemo;
txt = qtn_grap_off_screen_text;
},
MENU_ITEM
{
command = EGaphicsStopDemo;
txt = qtn_grap_stop_anim_text;
},
MENU_ITEM
{
command = EAknCmdExit;
txt = qtn_grap_exit_text;
}
};
}
// -----------------------------------------------------------------------------
//
// Resources for messages.
//
// -----------------------------------------------------------------------------
//
RESOURCE TBUF r_grap_caption_string
{ buf = qtn_focu_caption_string; }
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -