home *** CD-ROM | disk | FTP | other *** search
/ OpenStep (Enterprise) / OpenStepENTCD.toast / OEDEV / DEV.Z / mycalvw.cpp < prev    next >
C/C++ Source or Header  |  1995-10-16  |  2KB  |  74 lines

  1. // MyCalvw.cpp : implementation of the CMyCalcView class
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "MyCalc.h"
  6.  
  7. #include "MyCaldoc.h"
  8. #include "MyCalvw.h"
  9.  
  10. #ifdef _DEBUG
  11. #undef THIS_FILE
  12. static char BASED_CODE THIS_FILE[] = __FILE__;
  13. #endif
  14.  
  15. /////////////////////////////////////////////////////////////////////////////
  16. // CMyCalcView
  17.  
  18. IMPLEMENT_DYNCREATE(CMyCalcView, CView)
  19.  
  20. BEGIN_MESSAGE_MAP(CMyCalcView, CView)
  21.     //{{AFX_MSG_MAP(CMyCalcView)
  22.         // NOTE - the ClassWizard will add and remove mapping macros here.
  23.         //    DO NOT EDIT what you see in these blocks of generated code!
  24.     //}}AFX_MSG_MAP
  25. END_MESSAGE_MAP()
  26.  
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CMyCalcView construction/destruction
  29.  
  30. CMyCalcView::CMyCalcView()
  31. {
  32.     // TODO: add construction code here
  33.  
  34. }
  35.  
  36. CMyCalcView::~CMyCalcView()
  37. {
  38. }
  39.  
  40. /////////////////////////////////////////////////////////////////////////////
  41. // CMyCalcView drawing
  42.  
  43. void CMyCalcView::OnDraw(CDC* pDC)
  44. {
  45.     CMyCalcDoc* pDoc = GetDocument();
  46.     ASSERT_VALID(pDoc);
  47.  
  48.     // TODO: add draw code for native data here
  49. }
  50.  
  51. /////////////////////////////////////////////////////////////////////////////
  52. // CMyCalcView diagnostics
  53.  
  54. #ifdef _DEBUG
  55. void CMyCalcView::AssertValid() const
  56. {
  57.     CView::AssertValid();
  58. }
  59.  
  60. void CMyCalcView::Dump(CDumpContext& dc) const
  61. {
  62.     CView::Dump(dc);
  63. }
  64.  
  65. CMyCalcDoc* CMyCalcView::GetDocument() // non-debug version is inline
  66. {
  67.     ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CMyCalcDoc)));
  68.     return (CMyCalcDoc*)m_pDocument;
  69. }
  70. #endif //_DEBUG
  71.  
  72. /////////////////////////////////////////////////////////////////////////////
  73. // CMyCalcView message handlers
  74.