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

📄 editsoftview.cpp

📁 一个VC++源码一个VC++源码一个VC++源码一个VC++源码一个VC++源码
💻 CPP
字号:
// EditSoftView.cpp : implementation of the CEditSoftView class
//

#include "stdafx.h"
#include "EditSoft.h"

#include "EditSoftDoc.h"
#include "EditSoftView.h"

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

/////////////////////////////////////////////////////////////////////////////
// CEditSoftView

IMPLEMENT_DYNCREATE(CEditSoftView, CEditView)

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

/////////////////////////////////////////////////////////////////////////////
// CEditSoftView construction/destruction

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

}

CEditSoftView::~CEditSoftView()
{
}

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

	BOOL bPreCreated = CEditView::PreCreateWindow(cs);
	cs.style &= ~(ES_AUTOHSCROLL|WS_HSCROLL);	// Enable word-wrapping

	return bPreCreated;
}

/////////////////////////////////////////////////////////////////////////////
// CEditSoftView drawing

void CEditSoftView::OnDraw(CDC* pDC)
{
	CEditSoftDoc* pDoc = GetDocument();
	ASSERT_VALID(pDoc);
	// TODO: add draw code for native data here
}

/////////////////////////////////////////////////////////////////////////////
// CEditSoftView printing

BOOL CEditSoftView::OnPreparePrinting(CPrintInfo* pInfo)
{
	// default CEditView preparation
	return CEditView::OnPreparePrinting(pInfo);
}

void CEditSoftView::OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo)
{
	// Default CEditView begin printing.
	CEditView::OnBeginPrinting(pDC, pInfo);
}

void CEditSoftView::OnEndPrinting(CDC* pDC, CPrintInfo* pInfo)
{
	// Default CEditView end printing
	CEditView::OnEndPrinting(pDC, pInfo);
}

/////////////////////////////////////////////////////////////////////////////
// CEditSoftView diagnostics

#ifdef _DEBUG
void CEditSoftView::AssertValid() const
{
	CEditView::AssertValid();
}

void CEditSoftView::Dump(CDumpContext& dc) const
{
	CEditView::Dump(dc);
}

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

/////////////////////////////////////////////////////////////////////////////
// CEditSoftView message handlers

⌨️ 快捷键说明

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