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

Static控件

开发平台:

Visual C++

  1. // SampleReportView.cpp : implementation of the CSampleReportView class
  2. //
  3. #include "stdafx.h"
  4. #include "SampleReport.h"
  5. #include "SampleReportDoc.h"
  6. #include "SampleReportView.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CSampleReportView
  14. IMPLEMENT_DYNCREATE(CSampleReportView, CScrollView)
  15. BEGIN_MESSAGE_MAP(CSampleReportView, CScrollView)
  16. //{{AFX_MSG_MAP(CSampleReportView)
  17. // NOTE - the ClassWizard will add and remove mapping macros here.
  18. //    DO NOT EDIT what you see in these blocks of generated code!
  19. //}}AFX_MSG_MAP
  20. // Standard printing commands
  21. ON_COMMAND(ID_FILE_PRINT, CScrollView::OnFilePrint)
  22. ON_COMMAND(ID_FILE_PRINT_DIRECT, CScrollView::OnFilePrint)
  23. ON_COMMAND(ID_FILE_PRINT_PREVIEW, CScrollView::OnFilePrintPreview)
  24. END_MESSAGE_MAP()
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CSampleReportView construction/destruction
  27. CSampleReportView::CSampleReportView()
  28. {
  29. // TODO: add construction code here
  30. }
  31. CSampleReportView::~CSampleReportView()
  32. {
  33. }
  34. BOOL CSampleReportView::PreCreateWindow(CREATESTRUCT& cs)
  35. {
  36. // TODO: Modify the Window class or styles here by modifying
  37. //  the CREATESTRUCT cs
  38. return CScrollView::PreCreateWindow(cs);
  39. }
  40. /////////////////////////////////////////////////////////////////////////////
  41. // CSampleReportView drawing
  42. void CSampleReportView::OnDraw(CDC* pDC)
  43. {
  44. CSampleReportDoc* pDoc = GetDocument();
  45. ASSERT_VALID(pDoc);
  46. pDoc->Draw(pDC);
  47. }
  48. void CSampleReportView::OnInitialUpdate()
  49. {
  50. CScrollView::OnInitialUpdate();
  51. CSize sizeTotal;
  52. // TODO: calculate the total size of this view
  53. // For this sample app, the page defaults to 8.5 x 11 inches.
  54. // Also, remember to set the mode to LO_METRIC, which is used
  55. // by the report. However, this view is not WISWIG in that the 
  56. // printer resolution is different from the screen resolution. 
  57. // However, if you print-preview the report, you will see the 
  58. // report in all it's glory !
  59. sizeTotal.cx = (int)(8.5*254);
  60. sizeTotal.cy = (int)(11*245);
  61. SetScrollSizes(MM_LOMETRIC, sizeTotal);
  62. }
  63. /////////////////////////////////////////////////////////////////////////////
  64. // CSampleReportView printing
  65. BOOL CSampleReportView::OnPreparePrinting(CPrintInfo* pInfo)
  66. {
  67. // default preparation
  68. return DoPreparePrinting(pInfo);
  69. }
  70. void CSampleReportView::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* pInfo)
  71. {
  72. pInfo->SetMaxPage( GetDocument()->GetPageCount());
  73. }
  74. void CSampleReportView::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  75. {
  76. // TODO: add cleanup after printing
  77. }
  78. /////////////////////////////////////////////////////////////////////////////
  79. // CSampleReportView diagnostics
  80. #ifdef _DEBUG
  81. void CSampleReportView::AssertValid() const
  82. {
  83. CScrollView::AssertValid();
  84. }
  85. void CSampleReportView::Dump(CDumpContext& dc) const
  86. {
  87. CScrollView::Dump(dc);
  88. }
  89. CSampleReportDoc* CSampleReportView::GetDocument() // non-debug version is inline
  90. {
  91. ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CSampleReportDoc)));
  92. return (CSampleReportDoc*)m_pDocument;
  93. }
  94. #endif //_DEBUG
  95. /////////////////////////////////////////////////////////////////////////////
  96. // CSampleReportView message handlers
  97. void CSampleReportView::OnPrint(CDC* pDC, CPrintInfo* pInfo) 
  98. {
  99. GetDocument()->GotoPage( pInfo->m_nCurPage - 1); // we use 0-based indexing, hence the -1
  100. CScrollView::OnPrint(pDC, pInfo);
  101. }