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