📄 activehello.rss
字号:
// ActiveHello.rss
//
// Copyright (c) 2004 Symbian Software Ltd. All rights reserved.
//
NAME ACTV
#include <eikon.rh>
#include <avkon.rh>
#include <avkon.rsg>
//#include <eikcore.rsg>
#include "activehello.hrh"
RESOURCE RSS_SIGNATURE { }
RESOURCE TBUF r_default_document_name
{
buf="ActiveHello";
}
RESOURCE EIK_APP_INFO
{
menubar = r_activehello_menubar;
cba = R_AVKON_SOFTKEYS_OPTIONS_EXIT;
}
RESOURCE MENU_BAR r_activehello_menubar
{
titles=
{
MENU_TITLE
{
menu_pane = r_activehello_menu;
}
};
}
RESOURCE MENU_PANE r_activehello_menu
{
items=
{
MENU_ITEM
{
command = EActiveHelloCmdSetHello;
txt = "Set hello";
},
MENU_ITEM
{
command = EActiveHelloCmdCancelHello;
txt = "Cancel";
},
MENU_ITEM
{
command = EActiveHelloCmdStartFlashing;
txt = "Start flashing";
},
MENU_ITEM
{
command = EActiveHelloCmdStopFlashing;
txt = "Stop flashing";
}
};
}
RESOURCE TBUF r_activehello_text_hello
{
buf = "Hello world!";
}
RESOURCE TBUF r_activehello_text_cancelled
{
buf = "Cancelled";
}
RESOURCE TBUF r_activehello_text_started
{
buf = "Started flashing";
}
RESOURCE TBUF r_activehello_text_stopped
{
buf = "Stopped flashing";
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -