home *** CD-ROM | disk | FTP | other *** search
/ Netscape Plug-Ins Developer's Kit / Netscape_Plug-Ins_Developers_Kit.iso / source / Chap17 / Ch17View.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1996-10-24  |  2.5 KB  |  106 lines

  1. // Ch17View.cpp : implementation of the CCh17View class
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "Ch17.h"
  6.  
  7. #include "Ch17Doc.h"
  8. #include "Ch17View.h"
  9.  
  10. #ifdef _DEBUG
  11. #define new DEBUG_NEW
  12. #undef THIS_FILE
  13. static char THIS_FILE[] = __FILE__;
  14. #endif
  15.  
  16. /////////////////////////////////////////////////////////////////////////////
  17. // CCh17View
  18.  
  19. IMPLEMENT_DYNCREATE(CCh17View, CView)
  20.  
  21. BEGIN_MESSAGE_MAP(CCh17View, CView)
  22.     //{{AFX_MSG_MAP(CCh17View)
  23.         // NOTE - the ClassWizard will add and remove mapping macros here.
  24.         //    DO NOT EDIT what you see in these blocks of generated code!
  25.     //}}AFX_MSG_MAP
  26.     // Standard printing commands
  27.     ON_COMMAND(ID_FILE_PRINT, CView::OnFilePrint)
  28.     ON_COMMAND(ID_FILE_PRINT_DIRECT, CView::OnFilePrint)
  29.     ON_COMMAND(ID_FILE_PRINT_PREVIEW, CView::OnFilePrintPreview)
  30. END_MESSAGE_MAP()
  31.  
  32. /////////////////////////////////////////////////////////////////////////////
  33. // CCh17View construction/destruction
  34.  
  35. CCh17View::CCh17View()
  36. {
  37.     // TODO: add construction code here
  38.  
  39. }
  40.  
  41. CCh17View::~CCh17View()
  42. {
  43. }
  44.  
  45. BOOL CCh17View::PreCreateWindow(CREATESTRUCT& cs)
  46. {
  47.     // TODO: Modify the Window class or styles here by modifying
  48.     //  the CREATESTRUCT cs
  49.  
  50.     return CView::PreCreateWindow(cs);
  51. }
  52.  
  53. /////////////////////////////////////////////////////////////////////////////
  54. // CCh17View drawing
  55.  
  56. void CCh17View::OnDraw(CDC* pDC)
  57. {
  58.     CCh17Doc* pDoc = GetDocument();
  59.     ASSERT_VALID(pDoc);
  60.  
  61.     // TODO: add draw code for native data here
  62. }
  63.  
  64. /////////////////////////////////////////////////////////////////////////////
  65. // CCh17View printing
  66.  
  67. BOOL CCh17View::OnPreparePrinting(CPrintInfo* pInfo)
  68. {
  69.     // default preparation
  70.     return DoPreparePrinting(pInfo);
  71. }
  72.  
  73. void CCh17View::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  74. {
  75.     // TODO: add extra initialization before printing
  76. }
  77.  
  78. void CCh17View::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  79. {
  80.     // TODO: add cleanup after printing
  81. }
  82.  
  83. /////////////////////////////////////////////////////////////////////////////
  84. // CCh17View diagnostics
  85.  
  86. #ifdef _DEBUG
  87. void CCh17View::AssertValid() const
  88. {
  89.     CView::AssertValid();
  90. }
  91.  
  92. void CCh17View::Dump(CDumpContext& dc) const
  93. {
  94.     CView::Dump(dc);
  95. }
  96.  
  97. CCh17Doc* CCh17View::GetDocument() // non-debug version is inline
  98. {
  99.     ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CCh17Doc)));
  100.     return (CCh17Doc*)m_pDocument;
  101. }
  102. #endif //_DEBUG
  103.  
  104. /////////////////////////////////////////////////////////////////////////////
  105. // CCh17View message handlers
  106.