📄 project.rss
字号:
// project.rss
// Copyright Symbian Ltd, John Pagonis 2005-2006, Symbian Developer NetworkNAME MULT#include <eikon.rh>#include <eikcore.rsg>#include <indicato.rsg>
#include <cknctl.rh>#include "project.hrh"
RESOURCE RSS_SIGNATURE { }RESOURCE TBUF { buf=""; }RESOURCE EIK_APP_INFO { menubar = r_main_menu; cba = r_main_cba;
status_pane = r_status_pane;
toolband=r_titlebar; }RESOURCE MENU_BAR r_main_menu { titles= { MENU_TITLE { menu_pane=r_actions_menu;txt="Actions"; } }; }RESOURCE CBA r_main_cba { buttons= { CBA_BUTTON { id=EEikCmdExit; txt="Exit"; },
CBA_BUTTON
{
id=EProjectAppCmdToggleView;
txt="Change\nView";
},
CBA_BUTTON
{
id=EProjectAppCmdDoStuff;
txt="Stuff ON";
},
CBA_BUTTON
{
id=EProjectAppCmdDoStuffCancel;
txt="Stuff OFF";
} }; }
RESOURCE STATUS_PANE_APP_MODEL r_status_pane
{
layout = R_INDICATOR_LAYOUT_NARROW;
}
RESOURCE TOOLBAND r_titlebar
{
controls=
{
APPTITLE
{
id=EProjectAppTitle;
maintitle= "Project S80";
subtitle ="1.2";
titletype= ECknAppTitleTypeWindow;
}
};
}
RESOURCE MENU_PANE r_actions_menu { items= { MENU_ITEM
{
txt = "Do Something";
flags = 0;
command = EProjectAppCmdDoSomething;
},
MENU_ITEM
{
txt = "Do Better";
flags = 0;
command = EProjectAppCmdDoBetter;
},
MENU_ITEM
{
txt = "Do More";
flags = 0;
command = EProjectAppCmdDoMore;
} }; }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -