GuicheckBox.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_CHECKBOX_H__38E72D24_A4C7_11D5_B914_000000000000__INCLUDED_)
  23. #define AFX_CHECKBOX_H__38E72D24_A4C7_11D5_B914_000000000000__INCLUDED_
  24. #if _MSC_VER > 1000
  25. #pragma once
  26. #endif // _MSC_VER > 1000
  27. // CGuiCheckBox.h : header file
  28. //
  29. /////////////////////////////////////////////////////////////////////////////
  30. // CGuiCheckBox window
  31. #include "GuiDrawLayer.h"
  32. class GUILIBDLLEXPORT CGuiCheckBox : public CButton
  33. {
  34. // Construction
  35. public:
  36. CGuiCheckBox();
  37. virtual ~CGuiCheckBox();
  38. // Attributes
  39. public:
  40. void DrawCheck(CDC* pDC, CRect m_rcTemp);
  41. void DrawOrange(CDC* pDC, CRect m_rcTemp);
  42. public:
  43. BOOL         m_bCheckBtn;
  44. BOOL         m_bPressBtn;
  45. BOOL         m_bOldTemp;
  46. COLORREF     m_clrHigh;
  47. COLORREF     m_clrCheck;
  48. GuiDrawLayer m_wd;
  49. BOOL         m_bSelected;
  50. public:
  51. // Overrides
  52. //{{AFX_VIRTUAL(CGuiCheckBox)
  53. virtual void DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct);
  54. virtual BOOL PreTranslateMessage(MSG* pMsg);
  55. virtual void PreSubclassWindow();
  56. //}}AFX_VIRTUAL
  57. protected:
  58. //{{AFX_MSG(CGuiCheckBox)
  59. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  60. afx_msg int  OnCreate(LPCREATESTRUCT lpCreateStruct);
  61. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  62. afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
  63. afx_msg void OnTimer(UINT nIDEvent);
  64. afx_msg void OnMouseMove(UINT nFlags, CPoint point); 
  65. //}}AFX_MSG
  66. DECLARE_MESSAGE_MAP()
  67. };
  68. ////////////////////////////////////////////
  69. /////////////////////////////////
  70. //{{AFX_INSERT_LOCATION}}
  71. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  72. #endif // !defined(AFX_CHECKBOX_H__38E72D24_A4C7_11D5_B914_000000000000__INCLUDED_)