📄 colortooldoc.cpp
字号:
// colortoolDoc.cpp : implementation of the CColortoolDoc class
//
#include "stdafx.h"
#include "colortool.h"
#include "colortoolDoc.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CColortoolDoc
IMPLEMENT_DYNCREATE(CColortoolDoc, CDocument)
BEGIN_MESSAGE_MAP(CColortoolDoc, CDocument)
//{{AFX_MSG_MAP(CColortoolDoc)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CColortoolDoc construction/destruction
CColortoolDoc::CColortoolDoc()
{
// TODO: add one-time construction code here
}
CColortoolDoc::~CColortoolDoc()
{
}
BOOL CColortoolDoc::OnNewDocument()
{
if (!CDocument::OnNewDocument())
return FALSE;
// TODO: add reinitialization code here
// (SDI documents will reuse this document)
return TRUE;
}
/////////////////////////////////////////////////////////////////////////////
// CColortoolDoc serialization
void CColortoolDoc::Serialize(CArchive& ar)
{
if (ar.IsStoring())
{
// TODO: add storing code here
}
else
{
// TODO: add loading code here
}
}
/////////////////////////////////////////////////////////////////////////////
// CColortoolDoc diagnostics
#ifdef _DEBUG
void CColortoolDoc::AssertValid() const
{
CDocument::AssertValid();
}
void CColortoolDoc::Dump(CDumpContext& dc) const
{
CDocument::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CColortoolDoc commands
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -