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

编辑框

开发平台:

Visual C++

  1. #if !defined(AFX_NUMEDIT_H__7482F7FF_A479_11D2_A6A7_00600844997A__INCLUDED_)
  2. #define AFX_NUMEDIT_H__7482F7FF_A479_11D2_A6A7_00600844997A__INCLUDED_
  3. #if _MSC_VER >= 1000
  4. #pragma once
  5. #endif // _MSC_VER >= 1000
  6. // NumEdit.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CNumEdit window
  10. #ifndef CLASS_EXPORT
  11. #define CLASS_EXPORT
  12. #endif
  13. class CLASS_EXPORT CNumEdit : public CEdit
  14. {
  15. DECLARE_DYNAMIC(CNumEdit)
  16. // Construction
  17. public:
  18. CNumEdit();
  19. // Attributes
  20. public:
  21. enum {VALID = 0x00, OUT_OF_RANGE = 0x01, INVALID_CHAR = 0x02, MINUS_PLUS = 0x03};
  22. // Operations
  23. public:
  24. // Overrides
  25. // ClassWizard generated virtual function overrides
  26. //{{AFX_VIRTUAL(CNumEdit)
  27. //}}AFX_VIRTUAL
  28. // Implementation
  29. public:
  30. virtual void ChangeAmount(int step);
  31. virtual float GetDelta();
  32. virtual void SetDelta(float delta);
  33. virtual void GetRange(float &min, float &max)const; 
  34. virtual void SetRange(float min, float max);
  35. virtual void Verbose(BOOL v);
  36. virtual BOOL Verbose()const; 
  37. virtual int IsValid()const; 
  38. virtual int IsValid(const CString &str)const; 
  39. virtual BOOL SetValue(float val);
  40. virtual float GetValue()const; 
  41. virtual ~CNumEdit();
  42. // Generated message map functions
  43. protected:
  44. virtual CString& ConstructFormat(CString &str, float num);
  45. BYTE m_NumberOfNumberAfterPoint;
  46. BOOL m_Verbose;
  47. float m_Delta, m_MinValue, m_MaxValue;
  48. //{{AFX_MSG(CNumEdit)
  49. afx_msg void OnChar(UINT nChar, UINT nRepCnt, UINT nFlags);
  50. //}}AFX_MSG
  51. DECLARE_MESSAGE_MAP()
  52. };
  53. /////////////////////////////////////////////////////////////////////////////
  54. //{{AFX_INSERT_LOCATION}}
  55. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  56. #endif // !defined(AFX_NUMEDIT_H__7482F7FF_A479_11D2_A6A7_00600844997A__INCLUDED_)