ex56View.cpp
资源名称:VC6.0.rar [点击查看]
上传用户:qdhmjx
上传日期:2022-07-11
资源大小:2226k
文件大小:3k
源码类别:
书籍源码
开发平台:
Visual C++
- // ex56View.cpp : implementation of the CEx56View class
- //
- #include "stdafx.h"
- #include "ex56.h"
- #include "ex56Doc.h"
- #include "ex56View.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CEx56View
- IMPLEMENT_DYNCREATE(CEx56View, CView)
- BEGIN_MESSAGE_MAP(CEx56View, CView)
- //{{AFX_MSG_MAP(CEx56View)
- ON_WM_RBUTTONDOWN()
- //}}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()
- /////////////////////////////////////////////////////////////////////////////
- // CEx56View construction/destruction
- CEx56View::CEx56View()
- {
- // TODO: add construction code here
- }
- CEx56View::~CEx56View()
- {
- }
- BOOL CEx56View::PreCreateWindow(CREATESTRUCT& cs)
- {
- // TODO: Modify the Window class or styles here by modifying
- // the CREATESTRUCT cs
- return CView::PreCreateWindow(cs);
- }
- /////////////////////////////////////////////////////////////////////////////
- // CEx56View drawing
- void CEx56View::OnDraw(CDC* pDC)
- {
- CEx56Doc* pDoc = GetDocument();
- ASSERT_VALID(pDoc);
- // TODO: add draw code for native data here
- }
- /////////////////////////////////////////////////////////////////////////////
- // CEx56View printing
- BOOL CEx56View::OnPreparePrinting(CPrintInfo* pInfo)
- {
- // default preparation
- return DoPreparePrinting(pInfo);
- }
- void CEx56View::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
- {
- // TODO: add extra initialization before printing
- }
- void CEx56View::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
- {
- // TODO: add cleanup after printing
- }
- /////////////////////////////////////////////////////////////////////////////
- // CEx56View diagnostics
- #ifdef _DEBUG
- void CEx56View::AssertValid() const
- {
- CView::AssertValid();
- }
- void CEx56View::Dump(CDumpContext& dc) const
- {
- CView::Dump(dc);
- }
- CEx56Doc* CEx56View::GetDocument() // non-debug version is inline
- {
- ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CEx56Doc)));
- return (CEx56Doc*)m_pDocument;
- }
- #endif //_DEBUG
- /////////////////////////////////////////////////////////////////////////////
- // CEx56View message handlers
- void CEx56View::OnRButtonDown(UINT nFlags, CPoint point)
- {
- // TODO: Add your message handler code here and/or call default
- CDC *pDC=GetDC();
- pDC->SetBkColor(RGB(255,0,0));
- pDC->SetTextColor(RGB(0,255,0));
- pDC->TextOut(point.x,point.y,"文本输出举例!");
- CView::OnRButtonDown(nFlags, point);
- }