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

📄 ex31cv~1.cpp

📁 This companion disc contains the source code for the sample programs presented in INSIDE VISUAL C++
💻 CPP
字号:
// ex31cView.cpp : implementation of the CEx31cView class
//

#include "stdafx.h"
#include "ex31c.h"

#include "ex31cDoc.h"
#include "CntrItem.h"
#include "ex31cView.h"

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

/////////////////////////////////////////////////////////////////////////////
// CEx31cView

IMPLEMENT_DYNCREATE(CEx31cView, CRichEditView)

BEGIN_MESSAGE_MAP(CEx31cView, CRichEditView)
	//{{AFX_MSG_MAP(CEx31cView)
	ON_WM_RBUTTONDOWN()
	ON_COMMAND(ID_EDIT_CLEAR_ALL, OnEditClearAll)
	ON_UPDATE_COMMAND_UI(ID_EDIT_CLEAR_ALL, OnUpdateEditClearAll)
		// NOTE - the ClassWizard will add and remove mapping macros here.
		//    DO NOT EDIT what you see in these blocks of generated code!
	ON_WM_DESTROY()
	//}}AFX_MSG_MAP
	// Standard printing commands
	ON_COMMAND(ID_FILE_PRINT, CRichEditView::OnFilePrint)
	ON_COMMAND(ID_FILE_PRINT_DIRECT, CRichEditView::OnFilePrint)
	ON_COMMAND(ID_FILE_PRINT_PREVIEW, CRichEditView::OnFilePrintPreview)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CEx31cView construction/destruction

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

}

CEx31cView::~CEx31cView()
{
}

BOOL CEx31cView::PreCreateWindow(CREATESTRUCT& cs)
{
	
	BOOL bPreCreated = CRichEditView::PreCreateWindow(cs);
	cs.style |= ES_READONLY;
	return bPreCreated;
}

void CEx31cView::OnInitialUpdate()
{
	CRichEditView::OnInitialUpdate();

	// Set the printing margins (720 twips = 1/2 inch).
	SetMargins(CRect(720, 720, 720, 720));
}

/////////////////////////////////////////////////////////////////////////////
// CEx31cView printing

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


void CEx31cView::OnDestroy()
{
	// Deactivate the item on destruction; this is important
	// when a splitter view is being used.
   CRichEditView::OnDestroy();
   COleClientItem* pActiveItem = GetDocument()->GetInPlaceActiveItem(this);
   if (pActiveItem != NULL && pActiveItem->GetActiveView() == this)
   {
      pActiveItem->Deactivate();
      ASSERT(GetDocument()->GetInPlaceActiveItem(this) == NULL);
   }
}


/////////////////////////////////////////////////////////////////////////////
// CEx31cView diagnostics

#ifdef _DEBUG
void CEx31cView::AssertValid() const
{
	CRichEditView::AssertValid();
}

void CEx31cView::Dump(CDumpContext& dc) const
{
	CRichEditView::Dump(dc);
}

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

/////////////////////////////////////////////////////////////////////////////
// CEx31cView message handlers
void CEx31cView::OnRButtonDown(UINT nFlags, CPoint point) 
{
	TRACE("CEx31cView::OnRButtonDown\n");
	CMenu menu;
	menu.LoadMenu(IDR_MENUCONTEXT);
	ClientToScreen(&point);
	menu.GetSubMenu(0)->TrackPopupMenu(TPM_LEFTALIGN | TPM_RIGHTBUTTON,
		point.x, point.y, this);
}

void CEx31cView::OnEditClearAll() 
{
	CRichEditCtrl& re = GetRichEditCtrl();
	re.SetSel(0, -1);
	// won't let us clear unless we reset readonly flag
	re.SetOptions(ECOOP_XOR, ECO_READONLY);
	re.Clear();
	re.SetOptions(ECOOP_SET, ECO_READONLY);
}

void CEx31cView::OnUpdateEditClearAll(CCmdUI* pCmdUI) 
{
	pCmdUI->Enable(GetRichEditCtrl().GetTextLength() > 0);
}

⌨️ 快捷键说明

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