ButtonXP.h
上传用户:ckg1000
上传日期:2013-01-26
资源大小:630k
文件大小:1k
源码类别:

CAD

开发平台:

Visual C++

  1. ///////////////////////////////////////////////////////////////////////////////
  2. //
  3. // ButtonXP.h
  4. //
  5. ///////////////////////////////////////////////////////////////////////////////
  6. #pragma once
  7. #include "Tools.h"
  8. ///////////////////////////////////////////////////////////////////////////////
  9. class CButtonXP : public CButton
  10. {
  11. // Construction
  12. public:
  13.     CButtonXP();
  14. // Attributes
  15. public:
  16. // Operations
  17. public:
  18. // Overrides
  19.     // ClassWizard generated virtual function overrides
  20.     //{{AFX_VIRTUAL(CButtonXP)
  21.     public:
  22.     virtual void PreSubclassWindow();
  23.     virtual void DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct);
  24.     //}}AFX_VIRTUAL
  25. // Implementation
  26. public:
  27.     virtual ~CButtonXP();
  28. protected:
  29.     CMouseMgr m_MouseMgr;
  30.     // Generated message map functions
  31. protected:
  32.     //{{AFX_MSG(CButtonXP)
  33.     afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  34.     afx_msg void OnMouseOut();
  35.     //}}AFX_MSG
  36.     DECLARE_MESSAGE_MAP()
  37. };
  38. /////////////////////////////////////////////////////////////////////////////
  39. //{{AFX_INSERT_LOCATION}}
  40. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.