npdoc.cpp

来自「WinCE 上面开发的写字板」· C++ 代码 · 共 88 行

CPP
88
字号
//
// 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 + =
减小字号Ctrl + -
显示快捷键?