CoolButton.h
上传用户:onward9999
上传日期:2022-06-27
资源大小:989k
文件大小:1k
源码类别:

其他游戏

开发平台:

Visual C++

  1. #if !defined(AFX_COOLBUTTON_H__B86C574E_1E72_11D4_9933_E709602BF90C__INCLUDED_)
  2. #define AFX_COOLBUTTON_H__B86C574E_1E72_11D4_9933_E709602BF90C__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // CoolButton.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CCoolButton window
  10. #define XS_FLAT_BUTTON
  11. class CCoolButton : public CButton
  12. {
  13. // Construction
  14. public:
  15. CCoolButton();
  16. // Attributes
  17. public:
  18. // Operations
  19. public:
  20. // Overrides
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CCoolButton)
  23. public:
  24. virtual void DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct);
  25. //}}AFX_VIRTUAL
  26. // Implementation
  27. public:
  28. BOOL SubclassDlgItem(UINT nID, CWnd* pParent);
  29. void SetIcon(HICON hIcon,BYTE cx,BYTE cy);
  30. virtual ~CCoolButton();
  31. // Generated message map functions
  32. protected:
  33. #ifdef XS_FLAT_BUTTON
  34. //{{AFX_MSG(CCoolButton)
  35. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  36. afx_msg void OnKillFocus(CWnd* pNewWnd);
  37. //}}AFX_MSG
  38. #endif
  39. DECLARE_MESSAGE_MAP()
  40. private:
  41. BYTE m_cyIcon;
  42. BYTE m_cxIcon;
  43. HICON m_hIcon;
  44. #ifdef XS_FLAT_BUTTON
  45. BOOL m_MouseOnButton;
  46. #endif
  47. };
  48. /////////////////////////////////////////////////////////////////////////////
  49. //{{AFX_INSERT_LOCATION}}
  50. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  51. #endif // !defined(AFX_COOLBUTTON_H__B86C574E_1E72_11D4_9933_E709602BF90C__INCLUDED_)