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