NumSpinCtrl.h
上传用户:jiyingjie
上传日期:2007-01-02
资源大小:16k
文件大小:2k
源码类别:

编辑框

开发平台:

Visual C++

  1. #if !defined(AFX_NUMSPINCTRL_H__C2BD95A2_A482_11D2_A6A7_00600844997A__INCLUDED_)
  2. #define AFX_NUMSPINCTRL_H__C2BD95A2_A482_11D2_A6A7_00600844997A__INCLUDED_
  3. #if _MSC_VER >= 1000
  4. #pragma once
  5. #endif // _MSC_VER >= 1000
  6. // NumSpinCtrl.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CNumSpinCtrl window
  10. #include "NumEdit.h"
  11. #ifndef CLASS_EXPORT
  12. #define CLASS_EXPORT
  13. #endif
  14. class CLASS_EXPORT CNumSpinCtrl : public CSpinButtonCtrl
  15. {
  16. DECLARE_DYNAMIC(CNumSpinCtrl)
  17. // Construction
  18. public:
  19. CNumSpinCtrl();
  20. // Attributes
  21. public:
  22. // Operations
  23. public:
  24. // Overrides
  25. // ClassWizard generated virtual function overrides
  26. //{{AFX_VIRTUAL(CNumSpinCtrl)
  27. //}}AFX_VIRTUAL
  28. // Implementation
  29. public:
  30. virtual void SetDelta(float delta);
  31. virtual float GetDelta();
  32. virtual void SetBuddy(CNumEdit *edit);
  33. virtual CNumEdit* GetBuddy() const;
  34. virtual void GetRange(float &lower, float& upper ) const;
  35. virtual void SetRange(float nLower, float nUpper );
  36. virtual float GetPos();
  37. virtual void SetPos(float val);
  38. virtual ~CNumSpinCtrl();
  39. // Generated message map functions
  40. protected:
  41. //{{AFX_MSG(CNumSpinCtrl)
  42. afx_msg void OnDeltapos(NMHDR* pNMHDR, LRESULT* pResult);
  43. //}}AFX_MSG
  44. DECLARE_MESSAGE_MAP()
  45. };
  46. /////////////////////////////////////////////////////////////////////////////
  47. //{{AFX_INSERT_LOCATION}}
  48. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  49. #endif // !defined(AFX_NUMSPINCTRL_H__C2BD95A2_A482_11D2_A6A7_00600844997A__INCLUDED_)