📄 skiing.rss
字号:
/**
*
* @brief Resource file for Skiing application
*
* Copyright (c) EMCC Software Ltd 2003
* @version 1.0
*/
// RESOURCE IDENTIFIER
NAME SKIG // 4 letter ID
// INCLUDES
#include <avkon.loc>
#include <avkon.rsg>
#include <avkon.rh>
#include <avkon.mbg>
#include <eikon.rh>
#include "Skiing.loc"
#include "Skiing.hrh"
// RESOURCE DEFINITIONS
RESOURCE RSS_SIGNATURE { }
RESOURCE TBUF { buf = "Skiing"; }
// ---------------------------------------------------------
//
// Application menu
//
// ---------------------------------------------------------
//
RESOURCE EIK_APP_INFO
{
menubar = r_skiing_menubar;
cba = R_AVKON_SOFTKEYS_OPTIONS_EXIT;
}
RESOURCE MENU_BAR r_skiing_menubar
{
titles =
{
MENU_TITLE
{
menu_pane = r_skiing_menu;
}
};
}
RESOURCE MENU_PANE r_skiing_menu
{
items =
{
MENU_ITEM
{
command = ESkiingStart;
txt = START_GAME;
},
MENU_ITEM
{
command = ESkiingPause;
txt = PAUSE_GAME;
},
MENU_ITEM
{
command = EAknSoftkeyExit;
txt = qtn_options_exit;
}
};
}
// ---------------------------------------------------------
//
// Strings used by the application
//
// ---------------------------------------------------------
//
RESOURCE DIALOG r_aknexquery_confirmation_query
{
flags = EGeneralQueryFlags;
buttons = R_AVKON_SOFTKEYS_OK_EMPTY;
items =
{
DLG_LINE
{
type = EAknCtQuery;
id = EGeneralQuery;
control = AVKON_CONFIRMATION_QUERY
{
layout = EConfirmationQueryLayout;
label = CONTINUE_GAME;
};
}
};
}
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -