IEButton.h
上传用户:szcysw
上传日期:2013-03-11
资源大小:6752k
文件大小:1k
源码类别:

界面编程

开发平台:

Visual C++

  1. #if !defined(AFX_IEBUTTON_H__DEA83191_D703_494B_A84A_6C1D2935F0CA__INCLUDED_)
  2. #define AFX_IEBUTTON_H__DEA83191_D703_494B_A84A_6C1D2935F0CA__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // IEButton.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CIEButton window
  10. class CIEButton : public CButton
  11. {
  12. // Construction
  13. public:
  14. CIEButton();
  15. // Attributes
  16. public:
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CIEButton)
  22. public:
  23. virtual void DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct);
  24. //}}AFX_VIRTUAL
  25. // Implementation
  26. public:
  27. //设置状态,查看鼠标是否位于按钮之上
  28. BOOL IsMouseOn;
  29.  
  30. virtual ~CIEButton();
  31. // Generated message map functions
  32. protected:
  33. //{{AFX_MSG(CIEButton)
  34. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  35. afx_msg void OnClicked();
  36. //}}AFX_MSG
  37. DECLARE_MESSAGE_MAP()
  38. };
  39. /////////////////////////////////////////////////////////////////////////////
  40. //{{AFX_INSERT_LOCATION}}
  41. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  42. #endif // !defined(AFX_IEBUTTON_H__DEA83191_D703_494B_A84A_6C1D2935F0CA__INCLUDED_)