propView.cpp
上传用户:tenhai
上传日期:2021-02-19
资源大小:492k
文件大小:3k
源码类别:

组合框控件

开发平台:

Visual C++

  1. // propView.cpp : implementation of the CPropView class
  2. //
  3. #include "stdafx.h"
  4. #include "prop.h"
  5. #include "propDoc.h"
  6. #include "CntrItem.h"
  7. #include "propView.h"
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CPropView
  15. IMPLEMENT_DYNCREATE(CPropView, CRichEditView)
  16. BEGIN_MESSAGE_MAP(CPropView, CRichEditView)
  17. //{{AFX_MSG_MAP(CPropView)
  18. // NOTE - the ClassWizard will add and remove mapping macros here.
  19. //    DO NOT EDIT what you see in these blocks of generated code!
  20. ON_WM_DESTROY()
  21. //}}AFX_MSG_MAP
  22. // Standard printing commands
  23. ON_COMMAND(ID_FILE_PRINT, CRichEditView::OnFilePrint)
  24. ON_COMMAND(ID_FILE_PRINT_DIRECT, CRichEditView::OnFilePrint)
  25. ON_COMMAND(ID_FILE_PRINT_PREVIEW, CRichEditView::OnFilePrintPreview)
  26. END_MESSAGE_MAP()
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CPropView construction/destruction
  29. CPropView::CPropView()
  30. {
  31. // TODO: add construction code here
  32. }
  33. CPropView::~CPropView()
  34. {
  35. }
  36. BOOL CPropView::PreCreateWindow(CREATESTRUCT& cs)
  37. {
  38. // TODO: Modify the Window class or styles here by modifying
  39. //  the CREATESTRUCT cs
  40. return CRichEditView::PreCreateWindow(cs);
  41. }
  42. void CPropView::OnInitialUpdate()
  43. {
  44. CRichEditView::OnInitialUpdate();
  45. // Set the printing margins (720 twips = 1/2 inch).
  46. SetMargins(CRect(720, 720, 720, 720));
  47. }
  48. /////////////////////////////////////////////////////////////////////////////
  49. // CPropView printing
  50. BOOL CPropView::OnPreparePrinting(CPrintInfo* pInfo)
  51. {
  52. // default preparation
  53. return DoPreparePrinting(pInfo);
  54. }
  55. void CPropView::OnDestroy()
  56. {
  57. // Deactivate the item on destruction; this is important
  58. // when a splitter view is being used.
  59.    CRichEditView::OnDestroy();
  60.    COleClientItem* pActiveItem = GetDocument()->GetInPlaceActiveItem(this);
  61.    if (pActiveItem != NULL && pActiveItem->GetActiveView() == this)
  62.    {
  63.       pActiveItem->Deactivate();
  64.       ASSERT(GetDocument()->GetInPlaceActiveItem(this) == NULL);
  65.    }
  66. }
  67. /////////////////////////////////////////////////////////////////////////////
  68. // CPropView diagnostics
  69. #ifdef _DEBUG
  70. void CPropView::AssertValid() const
  71. {
  72. CRichEditView::AssertValid();
  73. }
  74. void CPropView::Dump(CDumpContext& dc) const
  75. {
  76. CRichEditView::Dump(dc);
  77. }
  78. CPropDoc* CPropView::GetDocument() // non-debug version is inline
  79. {
  80. ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CPropDoc)));
  81. return (CPropDoc*)m_pDocument;
  82. }
  83. #endif //_DEBUG
  84. /////////////////////////////////////////////////////////////////////////////
  85. // CPropView message handlers