popuplist.rss

来自「最新官方例子,图形,描述副,基本控件,通讯协议,等等,」· RSS 代码 · 共 117 行

RSS
117
字号
/**
* 
* @brief Resource file for PopUpList application
*
* Copyright (c) EMCC Software Ltd 2003
* @version 1.0
*/

//  RESOURCE IDENTIFIER
NAME    LIS1 // 4 letter ID

//  INCLUDES

#include <avkon.rsg>
#include <avkon.rh>
#include <avkon.mbg>
#include <eikon.rh>

#include "PopUpList.hrh"
#include "PopUpList.loc"

//  RESOURCE DEFINITIONS 

RESOURCE RSS_SIGNATURE { }

RESOURCE TBUF { buf="PopUpList"; }

RESOURCE EIK_APP_INFO
	{
	menubar=r_popuplist_menu_bar;
	cba=R_AVKON_SOFTKEYS_OPTIONS_BACK;
	}


//----------------------------------------------------
//   
//    r_popuplist_menu_bar
//    options menu for the application
//
//----------------------------------------------------
//
RESOURCE MENU_BAR r_popuplist_menu_bar
	{
	titles=
		{
		MENU_TITLE 
			{
			txt = ""; // the text is not used in Series 60
			menu_pane = r_popuplist_menu_pane;
			}
		};
	}


//----------------------------------------------------
//   
//    r_popuplist_menu_pane
//    options menu pane for the application
//
//----------------------------------------------------
//
RESOURCE MENU_PANE r_popuplist_menu_pane
	{
	items =
		{
		MENU_ITEM
			{
			command = EAknCmdExit;
			txt = EXIT_TEXT;
			}
		};
	}


// ---------------------------------------------------------
//	r_popuplist_saved_games_listbox
//	The saved games list
//
// ---------------------------------------------------------
//
RESOURCE LISTBOX r_popuplist_saved_games_listbox
	{
	flags = EAknListBoxSelectionList;
	}


// ---------------------------------------------------------
//	r_popuplist_saved_games_menulistbox
//	The saved games list
//
// ---------------------------------------------------------
//
RESOURCE LISTBOX r_popuplist_saved_games_menulistbox
	{
	flags = EAknListBoxMenuList;
	}


// ---------------------------------------------------------
//   
//    Strings used by the application
//
// ---------------------------------------------------------
//
RESOURCE TBUF r_icon_file_name
	{ 
	buf = ICON_FILE_NAME; 
	}

RESOURCE TBUF r_saved_game_menu_list_title
	{
	buf = SAVED_GAME_MENU_LIST_TITLE;
	}


// End of File

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?