www.pudn.com > docktool.zip > dockvw.cpp


// dockvw.cpp : implementation of the CDockView class 
// 
// This is a part of the Microsoft Foundation Classes C++ library. 
// Copyright (c) Microsoft Corporation.  All rights reserved. 
// 
// This source code is only intended as a supplement to the 
// Microsoft Foundation Classes Reference and related 
// electronic documentation provided with the library. 
// See these sources for detailed information regarding the 
// Microsoft Foundation Classes product. 
 
#include "stdafx.h" 
#include "docktool.h" 
 
#include "dockdoc.h" 
#include "dockvw.h" 
 
#ifdef _DEBUG 
#undef THIS_FILE 
static char BASED_CODE THIS_FILE[] = __FILE__; 
#endif 
 
///////////////////////////////////////////////////////////////////////////// 
// CDockView 
 
IMPLEMENT_DYNCREATE(CDockView, CView) 
 
BEGIN_MESSAGE_MAP(CDockView, CView) 
	//{{AFX_MSG_MAP(CDockView) 
		// 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 
END_MESSAGE_MAP() 
 
///////////////////////////////////////////////////////////////////////////// 
// CDockView construction/destruction 
 
CDockView::CDockView() 
{ 
	// TODO: add construction code here 
 
} 
 
CDockView::~CDockView() 
{ 
} 
 
///////////////////////////////////////////////////////////////////////////// 
// CDockView drawing 
 
void CDockView::OnDraw(CDC* pDC) 
{ 
	CDockDoc* pDoc = GetDocument(); 
	ASSERT_VALID(pDoc); 
	pDC;    // unused right now 
 
	// TODO: add draw code for native data here 
} 
 
///////////////////////////////////////////////////////////////////////////// 
// CDockView diagnostics 
 
#ifdef _DEBUG 
void CDockView::AssertValid() const 
{ 
	CView::AssertValid(); 
} 
 
void CDockView::Dump(CDumpContext& dc) const 
{ 
	CView::Dump(dc); 
} 
 
CDockDoc* CDockView::GetDocument() // non-debug version is inline 
{ 
	return STATIC_DOWNCAST(CDockDoc, m_pDocument); 
} 
#endif //_DEBUG 
 
///////////////////////////////////////////////////////////////////////////// 
// CDockView message handlers