www.pudn.com > afxmessagebox.rar > afxmessageboxView.cpp


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