FormatNumView.h
上传用户:lqt88888
上传日期:2009-12-14
资源大小:905k
文件大小:2k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // FormatNumView.h : interface of the CFormatNumView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_FORMATNUMVIEW_H__B8A549AA_7403_4667_9DE8_2BA4FFAAE119__INCLUDED_)
  5. #define AFX_FORMATNUMVIEW_H__B8A549AA_7403_4667_9DE8_2BA4FFAAE119__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CFormatNumSet;
  10. class CFormatNumView : public CRecordView
  11. {
  12. protected: // create from serialization only
  13. CFormatNumView();
  14. DECLARE_DYNCREATE(CFormatNumView)
  15. public:
  16. //{{AFX_DATA(CFormatNumView)
  17. enum { IDD = IDD_FORMATNUM_FORM };
  18. CFormatNumSet* m_pSet;
  19. double m_fNumber;
  20. //}}AFX_DATA
  21. // Attributes
  22. public:
  23. CFormatNumDoc* GetDocument();
  24. // Operations
  25. public:
  26. // Overrides
  27. // ClassWizard generated virtual function overrides
  28. //{{AFX_VIRTUAL(CFormatNumView)
  29. public:
  30. virtual CRecordset* OnGetRecordset();
  31. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  32. protected:
  33. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  34. virtual void OnInitialUpdate(); // called first time after construct
  35. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  36. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  37. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  38. //}}AFX_VIRTUAL
  39. // Implementation
  40. public:
  41. virtual ~CFormatNumView();
  42. #ifdef _DEBUG
  43. virtual void AssertValid() const;
  44. virtual void Dump(CDumpContext& dc) const;
  45. #endif
  46. protected:
  47. // Generated message map functions
  48. protected:
  49. //{{AFX_MSG(CFormatNumView)
  50. afx_msg void OnShow();
  51. afx_msg void OnModify();
  52. //}}AFX_MSG
  53. DECLARE_MESSAGE_MAP()
  54. };
  55. #ifndef _DEBUG  // debug version in FormatNumView.cpp
  56. inline CFormatNumDoc* CFormatNumView::GetDocument()
  57.    { return (CFormatNumDoc*)m_pDocument; }
  58. #endif
  59. /////////////////////////////////////////////////////////////////////////////
  60. //{{AFX_INSERT_LOCATION}}
  61. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  62. #endif // !defined(AFX_FORMATNUMVIEW_H__B8A549AA_7403_4667_9DE8_2BA4FFAAE119__INCLUDED_)