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

对话框与窗口

开发平台:

Visual C++

  1. // SomeView.cpp : implementation of the CSomeView 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 "MSDI.h"
  22. #include "SomeDoc.h"
  23. #include "SomeView.h"
  24. #ifdef _DEBUG
  25. #define new DEBUG_NEW
  26. #undef THIS_FILE
  27. static char THIS_FILE[] = __FILE__;
  28. #endif
  29. /////////////////////////////////////////////////////////////////////////////
  30. // CSomeView
  31. IMPLEMENT_DYNCREATE(CSomeView, CEditView)
  32. BEGIN_MESSAGE_MAP(CSomeView, CEditView)
  33. //{{AFX_MSG_MAP(CSomeView)
  34. //}}AFX_MSG_MAP
  35. // Standard printing commands
  36. ON_COMMAND(ID_FILE_PRINT, CEditView::OnFilePrint)
  37. ON_COMMAND(ID_FILE_PRINT_DIRECT, CEditView::OnFilePrint)
  38. ON_COMMAND(ID_FILE_PRINT_PREVIEW, CEditView::OnFilePrintPreview)
  39. END_MESSAGE_MAP()
  40. /////////////////////////////////////////////////////////////////////////////
  41. // CSomeView construction/destruction
  42. CSomeView::CSomeView()
  43. {
  44. }
  45. CSomeView::~CSomeView()
  46. {
  47. }
  48. BOOL CSomeView::PreCreateWindow(CREATESTRUCT& cs)
  49. {
  50. BOOL bPreCreated = CEditView::PreCreateWindow(cs);
  51. cs.style &= ~(ES_AUTOHSCROLL|WS_HSCROLL);   // Enable word-wrapping
  52. return bPreCreated;
  53. }
  54. /////////////////////////////////////////////////////////////////////////////
  55. // CSomeView drawing
  56. void CSomeView::OnDraw(CDC* /*pDC*/)
  57. {
  58. }
  59. /////////////////////////////////////////////////////////////////////////////
  60. // CSomeView printing
  61. BOOL CSomeView::OnPreparePrinting(CPrintInfo* pInfo)
  62. {
  63. // default CEditView preparation
  64. return CEditView::DoPreparePrinting(pInfo);
  65. }
  66. void CSomeView::OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo)
  67. {
  68. CEditView::OnBeginPrinting(pDC, pInfo);
  69. }
  70. void CSomeView::OnEndPrinting(CDC* pDC, CPrintInfo* pInfo)
  71. {
  72. CEditView::OnEndPrinting(pDC, pInfo);
  73. }
  74. /////////////////////////////////////////////////////////////////////////////
  75. // CSomeView diagnostics
  76. #ifdef _DEBUG
  77. void CSomeView::AssertValid() const
  78. {
  79. CEditView::AssertValid();
  80. }
  81. void CSomeView::Dump(CDumpContext& dc) const
  82. {
  83. CEditView::Dump(dc);
  84. }
  85. CSomeDoc* CSomeView::GetDocument() // non-debug version is inline
  86. {
  87. ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CSomeDoc)));
  88. return (CSomeDoc*)m_pDocument;
  89. }
  90. #endif //_DEBUG
  91. /////////////////////////////////////////////////////////////////////////////
  92. // CSomeView message handlers