CoolButton.h
上传用户:chrisyuan
上传日期:2022-06-18
资源大小:59k
文件大小:2k
源码类别:

按钮控件

开发平台:

Visual C++

  1. #if !defined(AFX_COOLBUTTON_H__121C99B1_5BC7_11D1_A688_0000B43382FE__INCLUDED_)
  2. #define AFX_COOLBUTTON_H__121C99B1_5BC7_11D1_A688_0000B43382FE__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. class CCoolButton : public CButton
  11. {
  12. // Construction
  13. public:
  14. CCoolButton();
  15. // Attributes
  16. public:
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CCoolButton)
  22. public:
  23. virtual void DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct);
  24. protected:
  25. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. public:
  29. CFont fUnderline;
  30. HCURSOR hHand;
  31. bool bLBtnDown;
  32. bool bHighlight;
  33. virtual ~CCoolButton();
  34. // Generated message map functions
  35. protected:
  36. //{{AFX_MSG(CCoolButton)
  37. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  38. afx_msg BOOL OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message);
  39. afx_msg void OnTimer(UINT nIDEvent);
  40. afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
  41. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  42. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  43. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  44. //}}AFX_MSG
  45. DECLARE_MESSAGE_MAP()
  46. };
  47. /////////////////////////////////////////////////////////////////////////////
  48. //{{AFX_INSERT_LOCATION}}
  49. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  50. #endif // !defined(AFX_COOLBUTTON_H__121C99B1_5BC7_11D1_A688_0000B43382FE__INCLUDED_)