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

📄 editorview.cpp

📁 这源代码是《白领就业指南:visual c++ 6.0 设计师之路》的配套源代码
💻 CPP
字号:
// EditorView.cpp : implementation of the CEditorView class
//

#include "stdafx.h"
#include "Editor.h"

#include "EditorDoc.h"
#include "EditorView.h"

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

/////////////////////////////////////////////////////////////////////////////
// CEditorView

IMPLEMENT_DYNCREATE(CEditorView, CView)

BEGIN_MESSAGE_MAP(CEditorView, CView)
	//{{AFX_MSG_MAP(CEditorView)
	ON_WM_CHAR()
	ON_COMMAND(ID_SELECT_FONT, OnSelectFont)
	//}}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()

/////////////////////////////////////////////////////////////////////////////
// CEditorView construction/destruction

CEditorView::CEditorView()
{



}

CEditorView::~CEditorView()
{
	//if(pFont)
	//	delete pFont;

}

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

	return CView::PreCreateWindow(cs);
}

/////////////////////////////////////////////////////////////////////////////
// CEditorView drawing

void CEditorView::OnDraw(CDC* pDC)
{
	CEditorDoc* pDoc = GetDocument();
	ASSERT_VALID(pDoc);
	// TODO: add draw code for native data here
/*	CFont *oldFont;
	oldFont=pDC->SelectObject(pFont);*/

	TEXTMETRIC tm;
	pDC->GetTextMetrics(&tm);
	lHeight=tm.tmHeight+tm.tmExternalLeading;
	cWidth=tm.tmAveCharWidth;
	//纵向y坐标为0
	int y=0;
	POSITION pos;
	CString line;
	if(!(pos=pDoc->lines.GetHeadPosition()))
	{
		return;
	}
	//循环输出各文本行
	while(pos!=NULL)
	{
		line=pDoc->lines.GetNext(pos);
		pDC->TextOut(0, y, line, line.GetLength());
		//更新y坐标值,让它加上文本行所用字体的高度
		y+=lHeight;
	}
	//恢复原来DC所用的字体
//	pDC->SelectObject(pFont);

}

/////////////////////////////////////////////////////////////////////////////
// CEditorView printing

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

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

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

/////////////////////////////////////////////////////////////////////////////
// CEditorView diagnostics

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

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

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

/////////////////////////////////////////////////////////////////////////////
// CEditorView message handlers

void CEditorView::OnChar(UINT nChar, UINT nRepCnt, UINT nFlags) 
{
	
	CEditorDoc* pDoc=GetDocument();
	CClientDC dc(this);

//	CFont *oldFont;
	//选择当前字体
//	oldFont=dc.SelectObject(pFont);

	CString line("");//存放编辑器当前行字符串
	POSITION pos=NULL;//字符串链表位置指示
	if(nChar=='\r')//若是回车,则增加一行
	{
		pDoc->nLineNum++;
	}
	else
	{
		//按行号返回字符串链表中位置值
		pos=pDoc->lines.FindIndex(pDoc->nLineNum);
		if(!pos)
		{
			//没有找到该行号对应的行,因此它是一个空行,把它加到字符串链表中。
			line+=(char)nChar;
			pDoc->lines.AddTail(CString(line));
		}
		else{
		//当前文本行还没有换行结束,因此将文本加入到行末
			line=pDoc->lines.GetAt(pos);
			line+=(char)nChar;
			pDoc->lines.SetAt(pos,line);
		}

		TEXTMETRIC tm;
		dc.GetTextMetrics(&tm);
		dc.TextOut(0,
		(int)pDoc->nLineNum*tm.tmHeight,
		line,
		line.GetLength());
	}
//	pDoc->SetModifiedFlag(TRUE);
//	dc.SelectObject(oldFont);
	
	CView::OnChar(nChar, nRepCnt, nFlags);
}

void CEditorView::OnSelectFont() 
{

/*	CFontDialog dlg;
	if(dlg.DoModal()==IDOK)
	{
		LOGFONT LF;

		//获取所选字体的信息
		dlg.GetCurrentFont(&LF);
		//建立新的字体
		pFont->DeleteObject();
		pFont->CreateFontIndirect(&LF);

		Invalidate();
		UpdateWindow();
	}*/
	
}

void CEditorView::OnInitialUpdate() 
{
	CView::OnInitialUpdate();
	
	CDC *pDC=GetDC();
/*	//pFont=new CFont();
	if(!(pFont->CreateFont(0,0,0,0,FW_NORMAL,FALSE,FALSE,FALSE,
	ANSI_CHARSET,OUT_TT_PRECIS,CLIP_TT_ALWAYS,
	DEFAULT_QUALITY,DEFAULT_PITCH,"Courier New")))
	{
		pFont->CreateStockObject(SYSTEM_FONT);
	}

	CFont *oldFont=pDC->SelectObject(pFont);*/
	TEXTMETRIC tm;
	pDC->GetTextMetrics(&tm);
	lHeight=tm.tmHeight+tm.tmExternalLeading;
	cWidth=tm.tmAveCharWidth;
//	pDC->SelectObject(oldFont);
}

⌨️ 快捷键说明

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