📄 flickerdoc.cpp
字号:
// FlickerDoc.cpp : implementation of the CFlickerDoc class
//
#include "stdafx.h"
#include "Flicker.h"
#include "FlickerDoc.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CFlickerDoc
IMPLEMENT_DYNCREATE(CFlickerDoc, CDocument)
BEGIN_MESSAGE_MAP(CFlickerDoc, CDocument)
//{{AFX_MSG_MAP(CFlickerDoc)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CFlickerDoc construction/destruction
CFlickerDoc::CFlickerDoc()
{
}
CFlickerDoc::~CFlickerDoc()
{
}
BOOL CFlickerDoc::OnNewDocument()
{
if (!CDocument::OnNewDocument())
return FALSE;
return TRUE;
}
/////////////////////////////////////////////////////////////////////////////
// CFlickerDoc serialization
void CFlickerDoc::Serialize(CArchive& ar)
{
if (ar.IsStoring())
{
}
else
{
}
}
/////////////////////////////////////////////////////////////////////////////
// CFlickerDoc diagnostics
#ifdef _DEBUG
void CFlickerDoc::AssertValid() const
{
CDocument::AssertValid();
}
void CFlickerDoc::Dump(CDumpContext& dc) const
{
CDocument::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CFlickerDoc commands
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -