GuiSliderCtrl.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_GUISLIDERCTRL_H__1DC8660F_0D35_408B_BD0D_95621F561841__INCLUDED_)
  23. #define AFX_GUISLIDERCTRL_H__1DC8660F_0D35_408B_BD0D_95621F561841__INCLUDED_
  24. #if _MSC_VER > 1000
  25. #pragma once
  26. #endif // _MSC_VER > 1000
  27. // GuiSliderCtrl.h : header file
  28. //
  29. /////////////////////////////////////////////////////////////////////////////
  30. // CGuiSliderCtrl window
  31. #include "GuiDrawLayer.h"
  32. class GUILIBDLLEXPORT CGuiSliderCtrl : public CSliderCtrl
  33. {
  34. // Construction
  35. public:
  36. CGuiSliderCtrl();
  37. // Attributes
  38. public:
  39. void DrawHThumb(CDC* pDC, CRect rcClient);
  40. void DrawVThumb(CDC* pDC, CRect rcClient);
  41. void DrawSlider(CDC* pDC, CRect rcClient);
  42. public:
  43. BOOL bSelected;
  44. COLORREF m_clrGreen;  //verder
  45. COLORREF m_clrOrange; //no tan naranja
  46. GuiDrawLayer m_dl;
  47. BOOL m_Press;
  48. public:
  49. virtual ~CGuiSliderCtrl();
  50. // Generated message map functions
  51. protected:
  52. //{{AFX_MSG(CGuiSliderCtrl)
  53. afx_msg void OnCustomdraw(NMHDR* pNMHDR, LRESULT* pResult);
  54. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  55. afx_msg void OnTimer(UINT nIDEvent);
  56. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  57. afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
  58. //}}AFX_MSG
  59. DECLARE_MESSAGE_MAP()
  60. };
  61. /////////////////////////////////////////////////////////////////////////////
  62. //{{AFX_INSERT_LOCATION}}
  63. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  64. #endif // !defined(AFX_GUISLIDERCTRL_H__1DC8660F_0D35_408B_BD0D_95621F561841__INCLUDED_)