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

📄 gdicanvas.h

📁 一個遊戲教程
💻 H
字号:
// GDICanvas.h: interface for the CGDICanvas class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_GDICANVAS_H__F5EB4F68_2CBC_11D4_A1EE_8F7A3049432E__INCLUDED_)
#define AFX_GDICANVAS_H__F5EB4F68_2CBC_11D4_A1EE_8F7A3049432E__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#include <windows.h>

//GDICanvas--wrapper for a dc and a bitmap
class CGDICanvas  
{
private:
	//memory dc
	HDC hdcMem;

	//new bitmap
	HBITMAP hbmNew;

	//old bitmap
	HBITMAP hbmOld;

	//width and height
	int nWidth;
	int nHeight;

public:
	//constructor
	CGDICanvas();

	//loads bitmap from a file
	void Load(HDC hdcCompatible,LPCTSTR lpszFilename);

	//creates a blank bitmap
	void CreateBlank(HDC hdcCompatible, int width, int height);

	//destroys bitmap and dc
	void Destroy();

	//converts to HDC
	operator HDC();

	//return width
	int GetWidth();

	//return height
	int GetHeight();

	//destructor
	~CGDICanvas();
};

#endif // !defined(AFX_GDICANVAS_H__F5EB4F68_2CBC_11D4_A1EE_8F7A3049432E__INCLUDED_)

⌨️ 快捷键说明

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