www.pudn.com > dwg.rar > dwgmfcView.cpp


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