globalquery.rss

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

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

//  RESOURCE IDENTIFIER
NAME    QUE3 // 4 letter ID

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

#include "globalquery.hrh"
#include "globalquery.loc"

//  RESOURCE DEFINITIONS 

RESOURCE RSS_SIGNATURE { }

RESOURCE TBUF { buf="GlobalQuery"; }

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

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


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

// ---------------------------------------------------------
//   
//    Strings used by the application
//
// ---------------------------------------------------------
//
RESOURCE TBUF R_GLOBALQUERY_HEADER_TEXT
	{	
	buf = HEADER_TEXT; 
	}

RESOURCE TBUF R_GLOBALQUERY_MESSAGE_TEXT
	{	
	buf = MESSAGE_TEXT; 
	}

// End of File

⌨️ 快捷键说明

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