📄 statuspane.rss
字号:
/**
*
* @brief Resource file for StatusPane application
*
* Copyright (C) EMCC Software Ltd
* @version 1.0
*/
// RESOURCE IDENTIFIER
NAME SPA1 // 4 letter ID
// INCLUDES
#include <avkon.rh>
#include <avkon.rsg>
#include <eikon.rh>
#include <eikon.rsg>
#include "StatusPane.hrh"
#include "StatusPane.loc"
// RESOURCE DEFINITIONS
RESOURCE RSS_SIGNATURE { }
RESOURCE TBUF {buf = "StatusPane"; }
RESOURCE EIK_APP_INFO
{
// no implementation required
}
// ---------------------------------------------------------
//
// r_statuspane_view1
// Define view 1
//
// ---------------------------------------------------------
//
RESOURCE AVKON_VIEW r_statuspane_view1
{
menubar = r_statuspane_menubar;
cba = R_AVKON_SOFTKEYS_OPTIONS_BACK;
}
// ---------------------------------------------------------
//
// r_statuspane_menubar
// Menu title definition
//
// ---------------------------------------------------------
//
RESOURCE MENU_BAR r_statuspane_menubar
{
titles =
{
MENU_TITLE
{
menu_pane = r_statuspane_menu_pane;
}
};
}
// ---------------------------------------------------------
//
// r_statuspane__menu_pane
// Menu for "Options"
//
// ---------------------------------------------------------
//
RESOURCE MENU_PANE r_statuspane_menu_pane
{
items =
{
MENU_ITEM
{
command = EStatusPaneToggleVisibility;
txt = TOGGLE_VISIBILITY_TEXT;
},
MENU_ITEM
{
command = EAknCmdExit;
txt = EXIT_TEXT;
}
};
}
// ---------------------------------------------------------
//
// Strings used by the application
//
// ---------------------------------------------------------
//
RESOURCE TBUF r_label1_text
{
buf = LABEL1_TEXT;
}
RESOURCE TBUF r_label2_text
{
buf = LABEL2_TEXT;
}
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -