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

📄 bmpmanip.rss

📁 该源码主要用于在手机平台上对图像的一些简单处理
💻 RSS
字号:
/* Copyright (c) 2003, Nokia Mobile Phones. All rights reserved */

NAME BMPM

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

#include "Bmpmanip.hrh"


// ---------------------------------------------------------
//   
//    Define the resource file signature 
//    This resource should be empty.
//
// ---------------------------------------------------------
//
RESOURCE RSS_SIGNATURE 
	{ 
	}

// ---------------------------------------------------------
//   
//    Default Document Name
//
// ---------------------------------------------------------
//
RESOURCE TBUF 
	{ 
	buf=""; 
	}

// ---------------------------------------------------------
//   
//    Define default menu and CBA key.
//
// ---------------------------------------------------------
//
RESOURCE EIK_APP_INFO
    {
    menubar = r_bmpmanip_menubar;
    cba = R_AVKON_SOFTKEYS_OPTIONS_EXIT;
    }


// ---------------------------------------------------------
//   
//   r_bmpmanip_menubar
//   Menubar for Bmpmanip example
//
// ---------------------------------------------------------
//
RESOURCE MENU_BAR r_bmpmanip_menubar
    {
    titles =
        {
        MENU_TITLE 
			{
			menu_pane = r_bmpmanip_menu;
			}
        };
    }


// ---------------------------------------------------------
//   
//   r_bmpmanip_menu
//   Menu for "Options"
//
// ---------------------------------------------------------
//
RESOURCE MENU_PANE r_bmpmanip_menu
    {
    items = 
        {
        MENU_ITEM 
			{
			command = EBmpmanipCmdRotate90;  
			txt = "Rotate by 90"<0xB0>;
			},
        MENU_ITEM 
			{
			command = EBmpmanipCmdRotate180;  
			txt = "Rotate by 180"<0xB0>;
			},
        MENU_ITEM 
			{
			command = EBmpmanipCmdRotate270;  
			txt = "Rotate by 270"<0xB0>;
			},
        MENU_ITEM 
			{
			command = EBmpmanipCmdSave;  
			txt = "Save";
			},
        MENU_ITEM {
			command = EAknSoftkeyExit;   
			txt = "Exit";
			}
        };
    }

⌨️ 快捷键说明

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