GuiRadioButton.h
上传用户:zhanglf88
上传日期:2013-11-19
资源大小:6036k
文件大小:3k
源码类别:

金融证券系统

开发平台:

Visual C++

  1. //-----------------------------------------------------------------------//
  2. // This is a part of the GuiLib MFC Extention.  //
  3. // Autor  :  Francisco Campos  //
  4. // (C) 2002 Francisco Campos <www.beyondata.com> All rights reserved     //
  5. // This code is provided "as is", with absolutely no warranty expressed  //
  6. // or implied. Any use is at your own risk.  //
  7. // You must obtain the author's consent before you can include this code //
  8. // in a software library.  //
  9. // If the source code in  this file is used in any application  //
  10. // then acknowledgement must be made to the author of this program  //
  11. // fcampos@tutopia.com  //
  12. //-----------------------------------------------------------------------//
  13. #if !defined(AFX_GUIRADIOBUTTON_H__B0A3DCE3_0F46_43C1_B4EB_7EFCEA8F57E7__INCLUDED_)
  14. #define AFX_GUIRADIOBUTTON_H__B0A3DCE3_0F46_43C1_B4EB_7EFCEA8F57E7__INCLUDED_
  15. #if _MSC_VER > 1000
  16. #pragma once
  17. #endif // _MSC_VER > 1000
  18. // GuiRadioButton.h : header file
  19. //
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CGuiRadioButton window
  22. #include "GuiLib.h" 
  23. class GUILIBDLLEXPORT CGuiRadioButton : public CButton
  24. {
  25. DECLARE_DYNAMIC(CGuiRadioButton);
  26. // Construction
  27. public:
  28. CGuiRadioButton();
  29. // Attributes
  30. public:
  31. BOOL m_SelectBtn;
  32. BOOL m_bOldCheck;
  33. BOOL m_bPressBtn;
  34. CRect m_rc;
  35. // Operations
  36. public:
  37. // Overrides
  38. // ClassWizard generated virtual function overrides
  39. //{{AFX_VIRTUAL(CGuiRadioButton)
  40. public:
  41. virtual void DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct);
  42. virtual BOOL PreTranslateMessage(MSG* pMsg);
  43. protected:
  44. virtual void PreSubclassWindow();
  45. //}}AFX_VIRTUAL
  46. // Implementation
  47. public:
  48. virtual ~CGuiRadioButton();
  49. void UnCheckRadio();
  50. void CheckRadio(CDC* pDC,CRect m_rcTemp); 
  51. void DrawEllipse(CDC* pDC,CRect m_rc);
  52. void SetCheck(int nCheck);
  53. void DrawOrange(CDC* pDC,CRect m_rc);
  54. // Generated message map functions
  55. protected:
  56. //{{AFX_MSG(CGuiRadioButton)
  57. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  58. afx_msg void OnTimer(UINT nIDEvent);
  59. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  60. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  61. afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
  62. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  63. afx_msg void OnKillFocus(CWnd* pNewWnd);
  64. //}}AFX_MSG
  65. DECLARE_MESSAGE_MAP()
  66. };
  67. /////////////////////////////////////////////////////////////////////////////
  68. //{{AFX_INSERT_LOCATION}}
  69. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  70. #endif // !defined(AFX_GUIRADIOBUTTON_H__B0A3DCE3_0F46_43C1_B4EB_7EFCEA8F57E7__INCLUDED_)