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

金融证券系统

开发平台:

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