mylistbox.rss

来自「MyListBox Symbian 3rd custom control.」· RSS 代码 · 共 66 行

RSS
66
字号
// --------------------------------------------------------------------------
// 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 + =
减小字号Ctrl + -
显示快捷键?