SkinButton.h
上传用户:xuzhiwei76
上传日期:2022-07-10
资源大小:2k
文件大小:2k
源码类别:

按钮控件

开发平台:

Visual C++

  1. #if !defined(AFX_SKINBUTTON_H__0BB3DC00_8775_4611_A01E_7285C6B95876__INCLUDED_)
  2. #define AFX_SKINBUTTON_H__0BB3DC00_8775_4611_A01E_7285C6B95876__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // SkinButton.h : header file
  7. // Download by http://www.downcode.com
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CSkinButton window
  10. class CSkinButton : public CButton
  11. {
  12. // Construction
  13. public:
  14. CSkinButton();
  15. // Attributes
  16. public:
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CSkinButton)
  22. public:
  23. virtual void DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct);
  24. virtual BOOL PreTranslateMessage(MSG* pMsg);
  25. protected:
  26. virtual void PreSubclassWindow();
  27. //}}AFX_VIRTUAL
  28. // Implementation
  29. public:
  30. void Init(UINT nNormalID,UINT nMouseOverID,CString strTipText);
  31. BOOL SetBitmap(UINT nNormalID,UINT nMouseOverID);
  32. void SetToolTipText(CString strText);
  33. BOOL SetButtonCursor(HCURSOR hCursor);
  34. virtual ~CSkinButton();
  35. // Generated message map functions
  36. protected:
  37. //{{AFX_MSG(CSkinButton)
  38. afx_msg BOOL OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message);
  39. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  40. afx_msg void OnTimer(UINT nIDEvent);
  41. //}}AFX_MSG
  42. DECLARE_MESSAGE_MAP()
  43. private:
  44. void AdjustPosition();
  45. CWnd* pWndParent;
  46. UINT m_nMouseOverID;
  47. UINT m_nNormalID;
  48. CToolTipCtrl m_ToolTip;
  49. void SetDefaultCursor();
  50. HCURSOR m_hCursor;
  51. BOOL m_bMouseOver;
  52. };
  53. /////////////////////////////////////////////////////////////////////////////
  54. //{{AFX_INSERT_LOCATION}}
  55. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  56. #endif // !defined(AFX_SKINBUTTON_H__0BB3DC00_8775_4611_A01E_7285C6B95876__INCLUDED_)