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

📄 bitmapbitbltcontainer.h

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

// INCLUDES

#include <coecntrl.h>	// CCoeControl

// FORWARD DECLARATIONS

// CLASS DECLARATION
class CFbsBitmap;


/**
 *
 * @class	CBitmapBitBltContainer BitmapBitBltContainer.h 
 * @brief	This is a container class for illustrating the BitBlt function for the Bitmap
 * example application
 *
 * Copyright (c) EMCC Software Ltd 2003
 * @version	1.0
 * 
 */

class CBitmapBitBltContainer : public CCoeControl
	{
public: // constructors and destructor

	static CBitmapBitBltContainer* NewL(const TRect& aRect);
	static CBitmapBitBltContainer* NewLC(const TRect& aRect);
	~CBitmapBitBltContainer();

private: // constructor

	void ConstructL(const TRect& aRect);

private: // from CoeControl

	void Draw(const TRect& aRect) const;
	
private: // data
	CFbsBitmap* iBitmap;
	};

#endif	// __BITMAP_BITBLTCONTAINER_H__

// End of File

⌨️ 快捷键说明

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