DNAView.cpp
上传用户:kanghaisi
上传日期:2017-04-20
资源大小:5727k
文件大小:3k
源码类别:

DNA

开发平台:

Visual C++

  1. // DNAView.cpp : implementation of the CDNAView class
  2. //
  3. #include "stdafx.h"
  4. #include "DNA.h"
  5. #include "DNADoc.h"
  6. #include "DNAView.h"
  7. #include "ExplainDlg.h"
  8. #include "ShowDlg.h"
  9. #ifdef _DEBUG
  10. #define new DEBUG_NEW
  11. #undef THIS_FILE
  12. static char THIS_FILE[] = __FILE__;
  13. #endif
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CDNAView
  16. IMPLEMENT_DYNCREATE(CDNAView, CView)
  17. BEGIN_MESSAGE_MAP(CDNAView, CView)
  18. //{{AFX_MSG_MAP(CDNAView)
  19. ON_COMMAND(IDM_Explain, OnExplain)
  20. ON_COMMAND(IDM_Show, OnShow)
  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. // CDNAView construction/destruction
  29. CDNAView::CDNAView()
  30. {
  31. // TODO: add construction code here
  32. }
  33. CDNAView::~CDNAView()
  34. {
  35. }
  36. BOOL CDNAView::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. // CDNAView drawing
  44. void CDNAView::OnDraw(CDC* pDC)
  45. {
  46. CDNADoc* pDoc = GetDocument();
  47. ASSERT_VALID(pDoc);
  48. // TODO: add draw code for native data here
  49. }
  50. /////////////////////////////////////////////////////////////////////////////
  51. // CDNAView printing
  52. BOOL CDNAView::OnPreparePrinting(CPrintInfo* pInfo)
  53. {
  54. // default preparation
  55. return DoPreparePrinting(pInfo);
  56. }
  57. void CDNAView::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  58. {
  59. // TODO: add extra initialization before printing
  60. }
  61. void CDNAView::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  62. {
  63. // TODO: add cleanup after printing
  64. }
  65. /////////////////////////////////////////////////////////////////////////////
  66. // CDNAView diagnostics
  67. #ifdef _DEBUG
  68. void CDNAView::AssertValid() const
  69. {
  70. CView::AssertValid();
  71. }
  72. void CDNAView::Dump(CDumpContext& dc) const
  73. {
  74. CView::Dump(dc);
  75. }
  76. CDNADoc* CDNAView::GetDocument() // non-debug version is inline
  77. {
  78. ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CDNADoc)));
  79. return (CDNADoc*)m_pDocument;
  80. }
  81. #endif //_DEBUG
  82. /////////////////////////////////////////////////////////////////////////////
  83. // CDNAView message handlers
  84. void CDNAView::OnExplain() 
  85. {
  86. // TODO: Add your command handler code here
  87. CExplainDlg dlg;
  88. dlg.DoModal();
  89. }
  90. void CDNAView::OnShow() 
  91. {
  92. // TODO: Add your command handler code here
  93. CShowDlg dlg;
  94. dlg.DoModal();
  95. }