mappedbitmapbutton.h

来自「vc++的技巧查找方式源代码。」· C头文件 代码 · 共 63 行

H
63
字号
// MappedBitmapButton.h : header file
//

#ifndef __MappedBitmapButton_h__
#define __MappedBitmapButton_h__

/////////////////////////////////////////////////////////////////////////////
// CMappedBitmapButton window

// Usage -- a replacement for the MFC CBitmapButton
// 1. include an owner-draw button in your dialog
// 2. declare a CMappedBitmapButton member in the CDialog code
// 3. hook in the CMappedBitmapButton using a call to AutoLoad
//
// the bitmap resource specified in AutoLoad must be divisable into
// 4 equally sized images that represent (left to right) the
// up, down, focused and disabled states of the button


class CMappedBitmapButton : public CButton
{
// Construction
public:
DECLARE_DYNAMIC( CMappedBitmapButton )
	CMappedBitmapButton();

// Attributes
public:

protected:
	CImageList	m_image;
	UINT		m_idResource;

// Operations
public:
	BOOL LoadBitmap( UINT idBitmapResource );
	void SizeToContent();
	BOOL AutoLoad(UINT nID, CWnd* pParent, UINT idBitmapResource);

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CMappedBitmapButton)
	public:
	virtual void DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct);
	//}}AFX_VIRTUAL

// Implementation
public:
	virtual ~CMappedBitmapButton();

	// Generated message map functions
protected:
	//{{AFX_MSG(CMappedBitmapButton)
	afx_msg void OnSysColorChange();
	//}}AFX_MSG

	DECLARE_MESSAGE_MAP()
};

/////////////////////////////////////////////////////////////////////////////

#endif //#ifndef __MappedBitmapButton_h__

⌨️ 快捷键说明

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