📄 mylistbox.rss
字号:
// --------------------------------------------------------------------------
// MyListBox.rss
//
// Copyright 2005, Antony Pranata
// http://www.antonypranata.com
//
// An example of subclassing a list box in Symbian (UIQ).
// --------------------------------------------------------------------------
// RESOURCE IDENTIFIER
NAME AWIZ // 4 letter ID
// INCLUDES
#include <eikon.rh>
#include "MyListBox.hrh"
#include <eikon.rsg>
#include <qikon.rh>
// RESOURCE DEFINITIONS
RESOURCE RSS_SIGNATURE { }
RESOURCE TBUF { buf = "MyListBox"; }
RESOURCE EIK_APP_INFO
{
menubar = r_mylistbox_menubar;
}
//----------------------------------------------------
//
// r_mylistbox_menubar
//
//----------------------------------------------------
//
RESOURCE MENU_BAR r_mylistbox_menubar
{
titles =
{
MENU_TITLE { menu_pane = r_mylistbox_menu; txt = "MyListBox"; }
};
}
//----------------------------------------------------
//
// r_mylistbox_menu
//
//----------------------------------------------------
//
RESOURCE MENU_PANE r_mylistbox_menu
{
items =
{
MENU_ITEM
{
command = ECmdMyListBoxDoubleLine;
txt = "Double line list box";
flags = EEikMenuItemCheckBox;
}
};
}
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -