www.pudn.com > page.rar > pageView.cpp


// pageView.cpp : implementation of the CPageView class 
// 
 
#include "stdafx.h" 
#include "page.h" 
 
#include "pageDoc.h" 
#include "pageView.h" 
 
#ifdef _DEBUG 
#define new DEBUG_NEW 
#undef THIS_FILE 
static char THIS_FILE[] = __FILE__; 
#endif 
 
///////////////////////////////////////////////////////////////////////////// 
// CPageView 
 
IMPLEMENT_DYNCREATE(CPageView, CView) 
 
BEGIN_MESSAGE_MAP(CPageView, CView) 
	//{{AFX_MSG_MAP(CPageView) 
		// 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() 
 
///////////////////////////////////////////////////////////////////////////// 
// CPageView construction/destruction 
 
CPageView::CPageView() 
{ 
	// TODO: add construction code here 
 
} 
 
CPageView::~CPageView() 
{ 
} 
 
BOOL CPageView::PreCreateWindow(CREATESTRUCT& cs) 
{ 
	// TODO: Modify the Window class or styles here by modifying 
	//  the CREATESTRUCT cs 
 
	return CView::PreCreateWindow(cs); 
} 
 
///////////////////////////////////////////////////////////////////////////// 
// CPageView drawing 
 
void CPageView::OnDraw(CDC* pDC) 
{ 
	CPageDoc* pDoc = GetDocument(); 
	ASSERT_VALID(pDoc); 
	// TODO: add draw code for native data here 
} 
 
///////////////////////////////////////////////////////////////////////////// 
// CPageView printing 
 
BOOL CPageView::OnPreparePrinting(CPrintInfo* pInfo) 
{ 
	// default preparation 
	return DoPreparePrinting(pInfo); 
} 
 
void CPageView::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/) 
{ 
	// TODO: add extra initialization before printing 
} 
 
void CPageView::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/) 
{ 
	// TODO: add cleanup after printing 
} 
 
///////////////////////////////////////////////////////////////////////////// 
// CPageView diagnostics 
 
#ifdef _DEBUG 
void CPageView::AssertValid() const 
{ 
	CView::AssertValid(); 
} 
 
void CPageView::Dump(CDumpContext& dc) const 
{ 
	CView::Dump(dc); 
} 
 
CPageDoc* CPageView::GetDocument() // non-debug version is inline 
{ 
	ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CPageDoc))); 
	return (CPageDoc*)m_pDocument; 
} 
#endif //_DEBUG 
 
///////////////////////////////////////////////////////////////////////////// 
// CPageView message handlers