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

📄 bitmapbitbltmaskview.h

📁 symbian S6O 3rd上传图片例题
💻 H
字号:
#ifndef __BITMAP_BITBLTMASKVIEW_H__
#define __BITMAP_BITBLTMASKVIEW_H__

//INCLUDES

// System includes
#include <aknview.h>	// CAknView

// FORWARD DECLARATIONS

class CBitmapBitBltMaskContainer;

/**
 *
 * @class	CBitmapBitBltMaskView BitmapBitBltMaskView.h 
 * @brief	This is a view class used to contain the BitmapBitBltMaskContainer control which
 * is used to illustrate blitting masked bitmaps
 *
 * Copyright (c) EMCC Software Ltd 2003
 * @version	1.0
 * 
 */

class CBitmapBitBltMaskView: public CAknView
	{
public: // constructors and destructor
	
	static CBitmapBitBltMaskView* NewL();
	static CBitmapBitBltMaskView* NewLC();
	~CBitmapBitBltMaskView();
	
private: // from CAknView
 	
	TUid Id() const;
	void HandleCommandL(TInt aCommand);

	void DoActivateL(
		const TVwsViewId& aPrevViewId,
		TUid aCustomMessageId,
		const TDesC8& aCustomMessage);
	
	void DoDeactivate();
	
private: // constructors
	
	void ConstructL();
	
private: // data
	
	CBitmapBitBltMaskContainer* iContainer; // what this view will display
	TUid iId;
	};

#endif	// __BITMAP_BITBLTMASKVIEW_H__

// End of File

⌨️ 快捷键说明

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