PinButton.h
上传用户:wujian85
上传日期:2010-04-08
资源大小:227k
文件大小:2k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. #if !defined(AFX_PINBUTTON_H__F90B2D04_C3FB_11D1_865D_000000000000__INCLUDED_)
  2. #define AFX_PINBUTTON_H__F90B2D04_C3FB_11D1_865D_000000000000__INCLUDED_
  3. #if _MSC_VER >= 1000
  4. #pragma once
  5. #endif // _MSC_VER >= 1000
  6. // PinButton.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CPinButton window
  10. class CPinButton : public CButton
  11. {
  12. // Construction
  13. public:
  14. CPinButton();
  15. // Attributes
  16. public:
  17. CBitmap * pBmp, * pCheckBmp, * pCheckBmpPressed;
  18. bool bCheckMode;
  19. bool bCheckStatus;
  20. CRect rcImage;
  21. bool bLBtnDown;
  22. bool bHighlight;
  23. bool bCloseLock;
  24. // Operations
  25. public:
  26. // Overrides
  27. // ClassWizard generated virtual function overrides
  28. //{{AFX_VIRTUAL(CPinButton)
  29. public:
  30. virtual void DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct);
  31. //}}AFX_VIRTUAL
  32. // Implementation
  33. public:
  34. bool IsDlgButtonChecked();
  35. void EnableCheckMode(const bool bCheck = true);
  36. bool SetBitmap(int resId, COLORREF * rmp = NULL, const bool bIsCheck = false);
  37. bool SetBitmapCheckPress(int resId, COLORREF * rmp = NULL);
  38. virtual ~CPinButton();
  39. // Generated message map functions
  40. protected:
  41. //{{AFX_MSG(CPinButton)
  42. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  43. afx_msg void OnTimer(UINT nIDEvent);
  44. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  45. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  46. afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
  47. afx_msg void OnKillFocus(CWnd* pNewWnd);
  48. afx_msg void OnSetFocus(CWnd* pOldWnd);
  49. //}}AFX_MSG
  50. DECLARE_MESSAGE_MAP()
  51. };
  52. /////////////////////////////////////////////////////////////////////////////
  53. //{{AFX_INSERT_LOCATION}}
  54. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  55. #endif // !defined(AFX_PINBUTTON_H__F90B2D04_C3FB_11D1_865D_000000000000__INCLUDED_)