AdvButton.h
上传用户:shcaka8
上传日期:2013-04-06
资源大小:103k
文件大小:2k
源码类别:

家庭/个人应用

开发平台:

Visual C++

  1. #if !defined(AFX_ADVBUTTON_H__B17E0AEE_7CA7_4783_B840_936876C7FACA__INCLUDED_)
  2. #define AFX_ADVBUTTON_H__B17E0AEE_7CA7_4783_B840_936876C7FACA__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // AdvButton.h : header file
  7. //
  8. #define WHITE RGB(255,255,255) //白色
  9. #define SYSCOLOR GetSysColor(COLOR_BTNFACE) //系统色
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CAdvButton window
  12. class CAdvButton : public CButton 
  13. {
  14. // Construction
  15. public:
  16. CAdvButton();
  17. // Attributes
  18. public:
  19. CRect  m_ClientRect;
  20. CRgn   m_ClientRgn ;
  21. UINT   m_State;
  22. CPoint m_Point;
  23. BOOL   m_IsTimerOn;
  24. UINT   m_BtnType;
  25. BOOL   m_IsPushed;
  26. // Operations
  27. public:
  28. // Overrides
  29. // ClassWizard generated virtual function overrides
  30. //{{AFX_VIRTUAL(CAdvButton)
  31. public:
  32. virtual void DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct);
  33. protected:
  34. virtual void PreSubclassWindow();
  35. //}}AFX_VIRTUAL
  36. // Implementation
  37. public:
  38. void SetType(UINT piType);
  39. BOOL Create(LPCTSTR lpszCaption,DWORD dwStyle,const RECT& rect,CWnd *pParentWnd,UINT nID);
  40. virtual ~CAdvButton();
  41. // Generated message map functions
  42. protected:
  43. //{{AFX_MSG(CAdvButton)
  44. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  45. afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
  46. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  47. afx_msg void OnTimer(UINT nIDEvent);
  48. afx_msg int  OnCreate(LPCREATESTRUCT lpCreateStruct);
  49. //}}AFX_MSG
  50. DECLARE_MESSAGE_MAP()
  51. };
  52. /////////////////////////////////////////////////////////////////////////////
  53. //{{AFX_INSERT_LOCATION}}
  54. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  55. #endif // !defined(AFX_ADVBUTTON_H__B17E0AEE_7CA7_4783_B840_936876C7FACA__INCLUDED_)