⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 shufaview.cpp

📁 程序可以自动提取
💻 CPP
字号:
// shufaView.cpp : implementation of the CShufaView class
//

#include "stdafx.h"
#include "shufa.h"

#include "afxwin.h"

#include "shufaDoc.h"
#include "shufaView.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CShufaView

IMPLEMENT_DYNCREATE(CShufaView, CScrollView)

BEGIN_MESSAGE_MAP(CShufaView, CScrollView)
	//{{AFX_MSG_MAP(CShufaView)
		// 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, CScrollView::OnFilePrint)
	ON_COMMAND(ID_FILE_PRINT_DIRECT, CScrollView::OnFilePrint)
	ON_COMMAND(ID_FILE_PRINT_PREVIEW, CScrollView::OnFilePrintPreview)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CShufaView construction/destruction

CShufaView::CShufaView()
{
	// TODO: add construction code here

}

CShufaView::~CShufaView()
{
}

BOOL CShufaView::PreCreateWindow(CREATESTRUCT& cs)
{
	// TODO: Modify the Window class or styles here by modifying
	//  the CREATESTRUCT cs

	return CView::PreCreateWindow(cs);
}

/////////////////////////////////////////////////////////////////////////////
// CShufaView drawing

void CShufaView::OnDraw(CDC* pDC)
{
	CShufaDoc* pDoc = GetDocument();
	ASSERT_VALID(pDoc);
	// TODO: add draw code for native data here
    
	pDoc->Display(pDC);


	
    
    
}
////////////////////////////////////////////////////////////////////////////

void CShufaView::OnInitialUpdate()
{
  CScrollView::OnInitialUpdate();   
    
  CSize   sizeTotal;   
  //   TODO:   calculate   the   total   size   of   this   view   
  sizeTotal.cx=800;
  sizeTotal.cy=1500;   
  SetScrollSizes(MM_TEXT,sizeTotal);   

}



/////////////////////////////////////////////////////////////////////////////
// CShufaView printing

BOOL CShufaView::OnPreparePrinting(CPrintInfo* pInfo)
{
	// default preparation
	return DoPreparePrinting(pInfo);
}

void CShufaView::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
{
	// TODO: add extra initialization before printing
}

void CShufaView::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
{
	// TODO: add cleanup after printing
}

/////////////////////////////////////////////////////////////////////////////
// CShufaView diagnostics

#ifdef _DEBUG
void CShufaView::AssertValid() const
{
	CView::AssertValid();
}

void CShufaView::Dump(CDumpContext& dc) const
{
	CView::Dump(dc);
}

CShufaDoc* CShufaView::GetDocument() // non-debug version is inline
{
	ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CShufaDoc)));
	return (CShufaDoc*)m_pDocument;
}
#endif //_DEBUG

/////////////////////////////////////////////////////////////////////////////
// CShufaView message handlers

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -