RTSlider.h
上传用户:oy0519
上传日期:2008-01-20
资源大小:124k
文件大小:1k
源码类别:

绘图程序

开发平台:

Visual C++

  1. #if !defined(AFX_RTSLIDER_H__3629C3E5_F472_11D3_85D1_0008C777FFEE__INCLUDED_)
  2. #define AFX_RTSLIDER_H__3629C3E5_F472_11D3_85D1_0008C777FFEE__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // RTSlider.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CRTSlider window
  10. class CRTSlider : public CSliderCtrl
  11. {
  12. // Construction
  13. public:
  14. CRTSlider();
  15. // Attributes
  16. public:
  17. enum sType{TICK = 0, PAGE};
  18. int  m_sType;
  19. int  m_nCurPos;
  20. // Operations
  21. public:
  22. void SetType(int type) {m_sType = type;};
  23. // Overrides
  24. // ClassWizard generated virtual function overrides
  25. //{{AFX_VIRTUAL(CRTSlider)
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. public:
  29. virtual ~CRTSlider();
  30. // Generated message map functions
  31. protected:
  32. //{{AFX_MSG(CRTSlider)
  33. afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
  34. //}}AFX_MSG
  35. DECLARE_MESSAGE_MAP()
  36. };
  37. /////////////////////////////////////////////////////////////////////////////
  38. //{{AFX_INSERT_LOCATION}}
  39. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  40. #endif // !defined(AFX_RTSLIDER_H__3629C3E5_F472_11D3_85D1_0008C777FFEE__INCLUDED_)