⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 progressnote.rss

📁 这是个基于SYMBIAN OS上的标准消息通知(NOTE)程序
💻 RSS
字号:
/**
* 
* @brief Resource file for ProgressNote application
*
* Copyright (c) EMCC Software Ltd 2003
* @version 1.0
*/

//  RESOURCE IDENTIFIER
NAME    NOT1 // 4 letter ID

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

#include "progressnote.hrh"
#include "progressnote.loc"

//  RESOURCE DEFINITIONS 

RESOURCE RSS_SIGNATURE { }

RESOURCE TBUF { buf="ProgressNote"; }

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

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


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

//----------------------------------------------------
//   
//    r_progressnote_saving_game_note
//    saving game note for the application
//
//----------------------------------------------------
//
RESOURCE DIALOG r_progressnote_saving_game_note
	{
	flags=EAknProgressNoteFlags;
	items =
		{
		DLG_LINE
			{
			type = EAknCtNote;
			id = ENoteEx1DlgCIdSavingNote;
			control = AVKON_NOTE
				{
				layout = EProgressLayout;
				singular_label = SAVING_GAME_TEXT;
				imagefile = "\\system\data\avkon.mbm";
				imageid = EMbmAvkonQgn_note_progress;
				imagemask = EMbmAvkonQgn_note_progress_mask;
				};
			}
		};
	}
// End of File

⌨️ 快捷键说明

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