Click here to Skip to main content
15,885,365 members
Articles / Desktop Programming / MFC

Magnifying Cursor

Rate me:
Please Sign up or sign in to vote.
4.53/5 (17 votes)
27 Jan 20031 min read 91.7K   2.7K   33  
This cursor can magnify...
// MaskedBitmap.h: interface for the CMaskedBitmap class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_MASKEDBITMAP_H__D71EF554_A6FE_11D2_8E53_006008A82731__INCLUDED_)
#define AFX_MASKEDBITMAP_H__D71EF554_A6FE_11D2_8E53_006008A82731__INCLUDED_

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

class CMaskedBitmap : public CBitmap  
{
public:
	void DrawTransparent (CDC *pDC, int x, int y, COLORREF clrTransparency);
	void Draw (CDC* pDC, int x, int y);
};

#endif // !defined(AFX_MASKEDBITMAP_H__D71EF554_A6FE_11D2_8E53_006008A82731__INCLUDED_)

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions