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

Static控件

开发平台:

Visual C++

  1. // SampleReportView.h : interface of the CSampleReportView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_SAMPLEREPORTVIEW_H__9546B616_C26C_11D5_B465_000000000000__INCLUDED_)
  5. #define AFX_SAMPLEREPORTVIEW_H__9546B616_C26C_11D5_B465_000000000000__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CSampleReportView : public CScrollView
  10. {
  11. protected: // create from serialization only
  12. CSampleReportView();
  13. DECLARE_DYNCREATE(CSampleReportView)
  14. // Attributes
  15. public:
  16. CSampleReportDoc* GetDocument();
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CSampleReportView)
  22. public:
  23. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  24. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  25. protected:
  26. virtual void OnInitialUpdate(); // called first time after construct
  27. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  28. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  29. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  30. virtual void OnPrint(CDC* pDC, CPrintInfo* pInfo);
  31. //}}AFX_VIRTUAL
  32. // Implementation
  33. public:
  34. virtual ~CSampleReportView();
  35. #ifdef _DEBUG
  36. virtual void AssertValid() const;
  37. virtual void Dump(CDumpContext& dc) const;
  38. #endif
  39. protected:
  40. // Generated message map functions
  41. protected:
  42. //{{AFX_MSG(CSampleReportView)
  43. // NOTE - the ClassWizard will add and remove member functions here.
  44. //    DO NOT EDIT what you see in these blocks of generated code !
  45. //}}AFX_MSG
  46. DECLARE_MESSAGE_MAP()
  47. };
  48. #ifndef _DEBUG  // debug version in SampleReportView.cpp
  49. inline CSampleReportDoc* CSampleReportView::GetDocument()
  50.    { return (CSampleReportDoc*)m_pDocument; }
  51. #endif
  52. /////////////////////////////////////////////////////////////////////////////
  53. //{{AFX_INSERT_LOCATION}}
  54. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  55. #endif // !defined(AFX_SAMPLEREPORTVIEW_H__9546B616_C26C_11D5_B465_000000000000__INCLUDED_)