GuiRadioButton.h
上传用户:wlkj888
上传日期:2022-08-01
资源大小:806k
文件大小:3k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. /****************************************************************************
  2.  * *  
  3.  * GuiToolKit   *
  4.  *  (MFC extension) *  
  5.  * Created by Francisco Campos G. www.beyondata.com fcampos@beyondata.com *
  6.  *--------------------------------------------------------------------------*    
  7.  * *
  8.  * This program is free software;so you are free to use it any of your *
  9.  * applications (Freeware, Shareware, Commercial),but leave this header *
  10.  * intact. *
  11.  * *
  12.  * These files are provided "as is" without warranty of any kind. *
  13.  * *
  14.  *        GuiToolKit is forever FREE CODE !!!!! *
  15.  * *
  16.  *--------------------------------------------------------------------------*
  17.  * Created by: Francisco Campos G. *
  18.  * Bug Fixes and improvements : (Add your name) *
  19.  * -Francisco Campos *
  20.  * *
  21.  ****************************************************************************/
  22. #if !defined(AFX_GUIRADIOBUTTON_H__B0A3DCE3_0F46_43C1_B4EB_7EFCEA8F57E7__INCLUDED_)
  23. #define AFX_GUIRADIOBUTTON_H__B0A3DCE3_0F46_43C1_B4EB_7EFCEA8F57E7__INCLUDED_
  24. #if _MSC_VER > 1000
  25. #pragma once
  26. #endif // _MSC_VER > 1000
  27. // GuiRadioButton.h : header file
  28. //
  29. /////////////////////////////////////////////////////////////////////////////
  30. // CGuiRadioButton window
  31. class GUILIBDLLEXPORT CGuiRadioButton : public CButton
  32. {
  33. DECLARE_DYNAMIC(CGuiRadioButton);
  34. // Construction
  35. public:
  36. CGuiRadioButton();
  37. // Attributes
  38. public:
  39. BOOL m_SelectBtn;
  40. BOOL m_bOldCheck;
  41. BOOL m_bPressBtn;
  42. CRect m_rc;
  43. // Operations
  44. public:
  45. // Overrides
  46. // ClassWizard generated virtual function overrides
  47. //{{AFX_VIRTUAL(CGuiRadioButton)
  48. public:
  49. virtual void DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct);
  50. virtual BOOL PreTranslateMessage(MSG* pMsg);
  51. protected:
  52. virtual void PreSubclassWindow();
  53. //}}AFX_VIRTUAL
  54. // Implementation
  55. public:
  56. virtual ~CGuiRadioButton();
  57. void UnCheckRadio();
  58. void CheckRadio(CDC* pDC,CRect m_rcTemp); 
  59. void DrawEllipse(CDC* pDC,CRect m_rc);
  60. void SetCheck(int nCheck);
  61. void DrawOrange(CDC* pDC,CRect m_rc);
  62. // Generated message map functions
  63. protected:
  64. //{{AFX_MSG(CGuiRadioButton)
  65. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  66. afx_msg void OnTimer(UINT nIDEvent);
  67. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  68. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  69. afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
  70. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  71. afx_msg void OnKillFocus(CWnd* pNewWnd);
  72. //}}AFX_MSG
  73. DECLARE_MESSAGE_MAP()
  74. };
  75. /////////////////////////////////////////////////////////////////////////////
  76. //{{AFX_INSERT_LOCATION}}
  77. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  78. #endif // !defined(AFX_GUIRADIOBUTTON_H__B0A3DCE3_0F46_43C1_B4EB_7EFCEA8F57E7__INCLUDED_)