SampleReportDoc.h
上传用户:jimmy1212
上传日期:2020-11-02
资源大小:40k
文件大小:2k
源码类别:

Static控件

开发平台:

Visual C++

  1. // SampleReportDoc.h : interface of the CSampleReportDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_SAMPLEREPORTDOC_H__9546B614_C26C_11D5_B465_000000000000__INCLUDED_)
  5. #define AFX_SAMPLEREPORTDOC_H__9546B614_C26C_11D5_B465_000000000000__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "EasyReport.h"
  10. class CSampleReportDoc : public CDocument
  11. {
  12. protected: // create from serialization only
  13. CSampleReportDoc();
  14. DECLARE_DYNCREATE(CSampleReportDoc)
  15. // My report...
  16. CEasyReport m_Report;
  17. // Attributes
  18. public:
  19. // Operations
  20. public:
  21. // Overrides
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(CSampleReportDoc)
  24. public:
  25. virtual BOOL OnNewDocument();
  26. virtual void Serialize(CArchive& ar);
  27. //}}AFX_VIRTUAL
  28. // Implementation
  29. public:
  30. virtual ~CSampleReportDoc();
  31. void Draw(CDC *pDC)
  32. {
  33. m_Report.DrawCurrentPage(pDC);
  34. }
  35. void GotoPage(int inPageNum)
  36. {
  37. m_Report.GotoPage(inPageNum);
  38. }
  39. int GetPageCount()
  40. {
  41. return m_Report.GetPageCount();
  42. }
  43. #ifdef _DEBUG
  44. virtual void AssertValid() const;
  45. virtual void Dump(CDumpContext& dc) const;
  46. #endif
  47. protected:
  48. // Generated message map functions
  49. protected:
  50. //{{AFX_MSG(CSampleReportDoc)
  51. // NOTE - the ClassWizard will add and remove member functions here.
  52. //    DO NOT EDIT what you see in these blocks of generated code !
  53. //}}AFX_MSG
  54. DECLARE_MESSAGE_MAP()
  55. };
  56. /////////////////////////////////////////////////////////////////////////////
  57. //{{AFX_INSERT_LOCATION}}
  58. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  59. #endif // !defined(AFX_SAMPLEREPORTDOC_H__9546B614_C26C_11D5_B465_000000000000__INCLUDED_)