?? npdoc.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 + -