home *** CD-ROM | disk | FTP | other *** search
- // Ch17View.cpp : implementation of the CCh17View class
- //
-
- #include "stdafx.h"
- #include "Ch17.h"
-
- #include "Ch17Doc.h"
- #include "Ch17View.h"
-
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
- // CCh17View
-
- IMPLEMENT_DYNCREATE(CCh17View, CView)
-
- BEGIN_MESSAGE_MAP(CCh17View, CView)
- //{{AFX_MSG_MAP(CCh17View)
- // NOTE - the ClassWizard will add and remove mapping macros here.
- // DO NOT EDIT what you see in these blocks of generated code!
- //}}AFX_MSG_MAP
- // Standard printing commands
- ON_COMMAND(ID_FILE_PRINT, CView::OnFilePrint)
- ON_COMMAND(ID_FILE_PRINT_DIRECT, CView::OnFilePrint)
- ON_COMMAND(ID_FILE_PRINT_PREVIEW, CView::OnFilePrintPreview)
- END_MESSAGE_MAP()
-
- /////////////////////////////////////////////////////////////////////////////
- // CCh17View construction/destruction
-
- CCh17View::CCh17View()
- {
- // TODO: add construction code here
-
- }
-
- CCh17View::~CCh17View()
- {
- }
-
- BOOL CCh17View::PreCreateWindow(CREATESTRUCT& cs)
- {
- // TODO: Modify the Window class or styles here by modifying
- // the CREATESTRUCT cs
-
- return CView::PreCreateWindow(cs);
- }
-
- /////////////////////////////////////////////////////////////////////////////
- // CCh17View drawing
-
- void CCh17View::OnDraw(CDC* pDC)
- {
- CCh17Doc* pDoc = GetDocument();
- ASSERT_VALID(pDoc);
-
- // TODO: add draw code for native data here
- }
-
- /////////////////////////////////////////////////////////////////////////////
- // CCh17View printing
-
- BOOL CCh17View::OnPreparePrinting(CPrintInfo* pInfo)
- {
- // default preparation
- return DoPreparePrinting(pInfo);
- }
-
- void CCh17View::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
- {
- // TODO: add extra initialization before printing
- }
-
- void CCh17View::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
- {
- // TODO: add cleanup after printing
- }
-
- /////////////////////////////////////////////////////////////////////////////
- // CCh17View diagnostics
-
- #ifdef _DEBUG
- void CCh17View::AssertValid() const
- {
- CView::AssertValid();
- }
-
- void CCh17View::Dump(CDumpContext& dc) const
- {
- CView::Dump(dc);
- }
-
- CCh17Doc* CCh17View::GetDocument() // non-debug version is inline
- {
- ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CCh17Doc)));
- return (CCh17Doc*)m_pDocument;
- }
- #endif //_DEBUG
-
- /////////////////////////////////////////////////////////////////////////////
- // CCh17View message handlers
-