PrintPreviewDoc.cpp
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:3k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // PrintPreviewDoc.cpp : implementation of the CPrintPreviewDoc class
  2. //
  3. // This file is a part of the XTREME TOOLKIT PRO MFC class library.
  4. // (c)1998-2008 Codejock Software, All Rights Reserved.
  5. //
  6. // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
  7. // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
  8. // CONSENT OF CODEJOCK SOFTWARE.
  9. //
  10. // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
  11. // IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
  12. // YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
  13. // SINGLE COMPUTER.
  14. //
  15. // CONTACT INFORMATION:
  16. // support@codejock.com
  17. // http://www.codejock.com
  18. //
  19. /////////////////////////////////////////////////////////////////////////////
  20. #include "stdafx.h"
  21. #include "PrintPreview.h"
  22. #include "PrintPreviewDoc.h"
  23. #ifdef _DEBUG
  24. #define new DEBUG_NEW
  25. #undef THIS_FILE
  26. static char THIS_FILE[] = __FILE__;
  27. #endif
  28. /////////////////////////////////////////////////////////////////////////////
  29. // CPrintPreviewDoc
  30. IMPLEMENT_DYNCREATE(CPrintPreviewDoc, CRichEditDoc)
  31. BEGIN_MESSAGE_MAP(CPrintPreviewDoc, CRichEditDoc)
  32. //{{AFX_MSG_MAP(CPrintPreviewDoc)
  33. // NOTE - the ClassWizard will add and remove mapping macros here.
  34. //    DO NOT EDIT what you see in these blocks of generated code!
  35. //}}AFX_MSG_MAP
  36. END_MESSAGE_MAP()
  37. /////////////////////////////////////////////////////////////////////////////
  38. // CPrintPreviewDoc construction/destruction
  39. CPrintPreviewDoc::CPrintPreviewDoc()
  40. {
  41. // TODO: add one-time construction code here
  42. }
  43. CPrintPreviewDoc::~CPrintPreviewDoc()
  44. {
  45. }
  46. BOOL CPrintPreviewDoc::OnNewDocument()
  47. {
  48. if (!CRichEditDoc::OnNewDocument())
  49. return FALSE;
  50. // TODO: add reinitialization code here
  51. // (SDI documents will reuse this document)
  52. return TRUE;
  53. }
  54. CRichEditCntrItem* CPrintPreviewDoc::CreateClientItem(REOBJECT* preo) const
  55. {
  56. // cast away constness of this
  57. return new CRichEditCntrItem(preo, (CPrintPreviewDoc*) this);
  58. }
  59. /////////////////////////////////////////////////////////////////////////////
  60. // CPrintPreviewDoc serialization
  61. void CPrintPreviewDoc::Serialize(CArchive& ar)
  62. {
  63. if (ar.IsStoring())
  64. {
  65. // TODO: add storing code here
  66. }
  67. else
  68. {
  69. // TODO: add loading code here
  70. }
  71. // Calling the base class CRichEditDoc enables serialization
  72. //  of the container document's COleClientItem objects.
  73. // TODO: set CRichEditDoc::m_bRTF = FALSE if you are serializing as text
  74. CRichEditDoc::Serialize(ar);
  75. }
  76. /////////////////////////////////////////////////////////////////////////////
  77. // CPrintPreviewDoc diagnostics
  78. #ifdef _DEBUG
  79. void CPrintPreviewDoc::AssertValid() const
  80. {
  81. CRichEditDoc::AssertValid();
  82. }
  83. void CPrintPreviewDoc::Dump(CDumpContext& dc) const
  84. {
  85. CRichEditDoc::Dump(dc);
  86. }
  87. #endif //_DEBUG
  88. /////////////////////////////////////////////////////////////////////////////
  89. // CPrintPreviewDoc commands