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

📄 camdecode.rss

📁 Symbian 调用摄像头的简单程序。实现了最基本的功能。
💻 RSS
字号:
/*
============================================================================
 Name        : CamDecode.rss
 Author      : Augusta
 Version     :
 Copyright   : All Right Reserved
 Description : This file contains all the resources for the CamDecode.
============================================================================
*/

//  RESOURCE IDENTIFIER
NAME    AWIZ // 4 letter ID

//  INCLUDES

#include <eikon.rh>
#include "CamDecode.hrh"
#include "CamDecode.loc"
#include <avkon.rsg>
#include <avkon.rh>
#include <avkon.mbg>



//  RESOURCE DEFINITIONS 

RESOURCE RSS_SIGNATURE { }

RESOURCE TBUF { buf = "CamDecode"; }

RESOURCE EIK_APP_INFO
	{
	hotkeys = r_camdecode_hotkeys;
	menubar = r_camdecode_menubar;
	cba = R_AVKON_SOFTKEYS_OPTIONS_BACK;	 
	}

//----------------------------------------------------
//   
//    r_camdecode_hotkeys
//
//----------------------------------------------------
//
RESOURCE HOTKEYS r_camdecode_hotkeys
	{
	control =
		{
		HOTKEY { command = EAknCmdExit; key='e'; }
		};
	}

//----------------------------------------------------
//   
//    r_camdecode_menubar
//
//----------------------------------------------------
//
RESOURCE MENU_BAR r_camdecode_menubar
	{
	titles =
		{
		MENU_TITLE { menu_pane = r_camdecode_menu; txt = "File"; }
		};
	}

//----------------------------------------------------
//   
//    r_camdecode_menu
//
//----------------------------------------------------
//
RESOURCE MENU_PANE r_camdecode_menu
	{
	items =
		{
		MENU_ITEM { command = ECamDecodeCmdAppTest; txt = qtn_appl_test; },
		MENU_ITEM { command = ECamDecodeCmdAppCacu; txt = qtn_appl_cacu; },
		MENU_ITEM { command = EAknCmdExit; txt = qtn_appl_exit; }
		};
	}

//----------------------------------------------------------------------
//  r_$(elementName)_text -- Localized string used by the application
//----------------------------------------------------------------------
/*
References to the following line in the .loc file:
	#define R_MESSAGE_TEXT_STRING "Hello world!"
With S60 you can load the buffer by using StringLoader (more flexible API):
	#include <StringLoader.h>	// Link against: CommonEngine.lib 
	HBufC* text = StringLoader::LoadLC(R_MESSAGE_TEXT);
	// Do something with the string
	CleanupStack::PopAndDestroy(text);
Or in the traditional Symbian OS way with CCoeEnv::AllocReadResourceLC():
	#include <eikenv.h>			// Link against: eikcore.lib
	HBufC* text = CEikonEnv::Static()->AllocReadResourceLC(R_MESSAGE_TEXT);
	// Do something with the string
	CleanupStack::PopAndDestroy(text);
*/
RESOURCE TBUF r_message_text {	buf = R_MESSAGE_TEXT_STRING; }


⌨️ 快捷键说明

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