📄 project.rss
字号:
// project.rss
// Copyright Symbian Ltd, John Pagonis 2005-2006, Symbian Developer Network
NAME MULT
#include <eikon.rh>
#include <eikon.rsg>
#include <avkon.rh>
#include <avkon.rsg>
#include "project.hrh"
//CHARACTER_SET UTF8
RESOURCE RSS_SIGNATURE { }
RESOURCE TBUF r_default_document_name { buf="ProjectApp"; }
RESOURCE EIK_APP_INFO
{
menubar = r_actions_menu;
cba = r_softkeys_options_toggle;
}
// CBA definition ( OPTIONS - NEXT )
RESOURCE CBA r_softkeys_options_toggle
{
buttons =
{
CBA_BUTTON
{
id = EAknSoftkeyOptions;
txt = "Options";
},
CBA_BUTTON
{
id = EProjectAppCmdToggleView;
txt = "Toggle";
}
};
}
RESOURCE MENU_BAR r_actions_menu
{
titles =
{
MENU_TITLE
{
menu_pane = r_actions_pane;
txt = "Actions";
}
};
}
RESOURCE MENU_PANE r_actions_pane
{
items =
{
MENU_ITEM
{
command=EProjectAppCmdDoStuff;
txt="Stuff ON";
},
MENU_ITEM
{
command=EProjectAppCmdDoStuffCancel;
flags = EEikMenuItemSeparatorAfter;
txt="Stuff OFF";
},
MENU_ITEM
{
txt = "Do Something";
command = EProjectAppCmdDoSomething;
},
MENU_ITEM
{
txt = "Do Better";
command = EProjectAppCmdDoBetter;
},
MENU_ITEM
{
txt = "Do More";
flags = EEikMenuItemSeparatorAfter;
command = EProjectAppCmdDoMore;
},
MENU_ITEM
{
command = EAknCmdExit;
txt = "Exit";
}
};
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -