22 lines
335 B
C++
22 lines
335 B
C++
#pragma once
|
|
|
|
|
|
// CHCButton
|
|
|
|
class CHCButton : public CBitmapButton
|
|
{
|
|
DECLARE_DYNAMIC(CHCButton)
|
|
|
|
public:
|
|
CHCButton();
|
|
virtual ~CHCButton();
|
|
|
|
protected:
|
|
DECLARE_MESSAGE_MAP()
|
|
public:
|
|
afx_msg void OnMouseMove(UINT nFlags, CPoint point);
|
|
afx_msg BOOL OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message);
|
|
};
|
|
|
|
|