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