myprintView.cpp
上传用户:zqhqzfj
上传日期:2007-01-04
资源大小:54k
文件大小:3k
源码类别:

打印编程

开发平台:

Visual C++

  1. // myprintView.cpp : implementation of the CMyprintView class
  2. //
  3. #include "stdafx.h"
  4. #include "myprint.h"
  5. #include "myprintDoc.h"
  6. #include "myprintView.h"
  7. #include "MyPrintDialog.h"
  8. #include <Dlgs.h>
  9. #ifdef _DEBUG
  10. #define new DEBUG_NEW
  11. #undef THIS_FILE
  12. static char THIS_FILE[] = __FILE__;
  13. #endif
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CMyprintView
  16. IMPLEMENT_DYNCREATE(CMyprintView, CView)
  17. BEGIN_MESSAGE_MAP(CMyprintView, CView)
  18. //{{AFX_MSG_MAP(CMyprintView)
  19. // NOTE - the ClassWizard will add and remove mapping macros here.
  20. //    DO NOT EDIT what you see in these blocks of generated code!
  21. //}}AFX_MSG_MAP
  22. // Standard printing commands
  23. ON_COMMAND(ID_FILE_PRINT, CView::OnFilePrint)
  24. ON_COMMAND(ID_FILE_PRINT_DIRECT, CView::OnFilePrint)
  25. ON_COMMAND(ID_FILE_PRINT_PREVIEW, CView::OnFilePrintPreview)
  26. END_MESSAGE_MAP()
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CMyprintView construction/destruction
  29. CMyprintView::CMyprintView()
  30. {
  31. // TODO: add construction code here
  32. }
  33. CMyprintView::~CMyprintView()
  34. {
  35. }
  36. BOOL CMyprintView::PreCreateWindow(CREATESTRUCT& cs)
  37. {
  38. // TODO: Modify the Window class or styles here by modifying
  39. //  the CREATESTRUCT cs
  40. return CView::PreCreateWindow(cs);
  41. }
  42. /////////////////////////////////////////////////////////////////////////////
  43. // CMyprintView drawing
  44. void CMyprintView::OnDraw(CDC* pDC)
  45. {
  46. CMyprintDoc* pDoc = GetDocument();
  47. ASSERT_VALID(pDoc);
  48. // TODO: add draw code for native data here
  49. }
  50. /////////////////////////////////////////////////////////////////////////////
  51. // CMyprintView printing
  52. BOOL CMyprintView::OnPreparePrinting(CPrintInfo* pInfo)
  53. {
  54. delete pInfo->m_pPD;
  55. pInfo->m_pPD = new CMyPrintDialog(FALSE);
  56. return DoPreparePrinting(pInfo);
  57. }
  58. void CMyprintView::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  59. {
  60. // TODO: add extra initialization before printing
  61. }
  62. void CMyprintView::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  63. {
  64. // TODO: add cleanup after printing
  65. }
  66. /////////////////////////////////////////////////////////////////////////////
  67. // CMyprintView diagnostics
  68. #ifdef _DEBUG
  69. void CMyprintView::AssertValid() const
  70. {
  71. CView::AssertValid();
  72. }
  73. void CMyprintView::Dump(CDumpContext& dc) const
  74. {
  75. CView::Dump(dc);
  76. }
  77. CMyprintDoc* CMyprintView::GetDocument() // non-debug version is inline
  78. {
  79. ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CMyprintDoc)));
  80. return (CMyprintDoc*)m_pDocument;
  81. }
  82. #endif //_DEBUG
  83. /////////////////////////////////////////////////////////////////////////////
  84. // CMyprintView message handlers