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