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

📄 npdoc.cpp

📁 WinCE 上面开发的写字板
💻 CPP
字号:
//
// Copyright (c) Microsoft Corporation.  All rights reserved.
//
//
// Use of this source code is subject to the terms of the Microsoft end-user
// license agreement (EULA) under which you licensed this SOFTWARE PRODUCT.
// If you did not accept the terms of the EULA, you are not authorized to use
// this source code. For a copy of the EULA, please see the LICENSE.RTF on your
// install media.
//
// npdoc.cpp : implementation of the CNotepadDoc class
//

#include "stdafx.h"
#include "np.h"

#include "npdoc.h"

#ifdef _DEBUG
#undef THIS_FILE
static char BASED_CODE THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CNotepadDoc

IMPLEMENT_DYNCREATE(CNotepadDoc, CDocument)

BEGIN_MESSAGE_MAP(CNotepadDoc, CDocument)
	//{{AFX_MSG_MAP(CNotepadDoc)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CNotepadDoc construction/destruction

CNotepadDoc::CNotepadDoc()
{
}

CNotepadDoc::~CNotepadDoc()
{
}

BOOL CNotepadDoc::OnNewDocument()
{
	if (!CDocument::OnNewDocument())
		return FALSE;

	((CEditView*)m_viewList.GetHead())->SetWindowText(NULL);
#if defined(_WIN32_WCE_PSPC) && (_WIN32_WCE >= 300)
	::SHSipPreference(AfxGetMainWnd()->m_hWnd, SIP_UP);
#endif
	CDocument::SetModifiedFlag(FALSE);
	
	return TRUE;
}

BOOL CNotepadDoc::OnOpenDocument(LPCTSTR lpszPathName)
{
	((CEditView*)m_viewList.GetHead())->SetWindowText(NULL);
	return CDocument::OnOpenDocument(lpszPathName);
}
/////////////////////////////////////////////////////////////////////////////
// CNotepadDoc serialization

void CNotepadDoc::Serialize(CArchive& ar)
{
	((CEditView*)m_viewList.GetHead())->SerializeRaw(ar);
}
/////////////////////////////////////////////////////////////////////////////
// CNotepadDoc diagnostics

#ifdef _DEBUG
void CNotepadDoc::AssertValid() const
{
	CDocument::AssertValid();
}

void CNotepadDoc::Dump(CDumpContext& dc) const
{
	CDocument::Dump(dc);
}
#endif //_DEBUG

/////////////////////////////////////////////////////////////////////////////
// CNotepadDoc commands

⌨️ 快捷键说明

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