www.pudn.com > BitMapToolBar.rar > TestToolBarView.cpp


// TestToolBarView.cpp : implementation of the CTestToolBarView class 
// 
 
#include "stdafx.h" 
#include "TestToolBar.h" 
 
#include "TestToolBarDoc.h" 
#include "TestToolBarView.h" 
 
#ifdef _DEBUG 
#define new DEBUG_NEW 
#undef THIS_FILE 
static char THIS_FILE[] = __FILE__; 
#endif 
 
///////////////////////////////////////////////////////////////////////////// 
// CTestToolBarView 
 
IMPLEMENT_DYNCREATE(CTestToolBarView, CFormView) 
 
BEGIN_MESSAGE_MAP(CTestToolBarView, CFormView) 
	//{{AFX_MSG_MAP(CTestToolBarView) 
		// 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() 
 
///////////////////////////////////////////////////////////////////////////// 
// CTestToolBarView construction/destruction 
 
CTestToolBarView::CTestToolBarView() 
	: CFormView(CTestToolBarView::IDD) 
{ 
	//{{AFX_DATA_INIT(CTestToolBarView) 
		// NOTE: the ClassWizard will add member initialization here 
	//}}AFX_DATA_INIT 
	// TODO: add construction code here 
 
} 
 
CTestToolBarView::~CTestToolBarView() 
{ 
} 
 
void CTestToolBarView::DoDataExchange(CDataExchange* pDX) 
{ 
	CFormView::DoDataExchange(pDX); 
	//{{AFX_DATA_MAP(CTestToolBarView) 
		// NOTE: the ClassWizard will add DDX and DDV calls here 
	//}}AFX_DATA_MAP 
} 
 
BOOL CTestToolBarView::PreCreateWindow(CREATESTRUCT& cs) 
{ 
	// TODO: Modify the Window class or styles here by modifying 
	//  the CREATESTRUCT cs 
 
	return CFormView::PreCreateWindow(cs); 
} 
 
void CTestToolBarView::OnInitialUpdate() 
{ 
	CFormView::OnInitialUpdate(); 
	GetParentFrame()->RecalcLayout(); 
	ResizeParentToFit(); 
 
} 
 
///////////////////////////////////////////////////////////////////////////// 
// CTestToolBarView diagnostics 
 
#ifdef _DEBUG 
void CTestToolBarView::AssertValid() const 
{ 
	CFormView::AssertValid(); 
} 
 
void CTestToolBarView::Dump(CDumpContext& dc) const 
{ 
	CFormView::Dump(dc); 
} 
 
CTestToolBarDoc* CTestToolBarView::GetDocument() // non-debug version is inline 
{ 
	ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CTestToolBarDoc))); 
	return (CTestToolBarDoc*)m_pDocument; 
} 
#endif //_DEBUG 
 
///////////////////////////////////////////////////////////////////////////// 
// CTestToolBarView message handlers