?? ex04_3doc.cpp
字號:
// Ex04_3Doc.cpp : implementation of the CEx04_3Doc class
//
#include "stdafx.h"
#include "Ex04_3.h"
#include "Ex04_3Doc.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CEx04_3Doc
IMPLEMENT_DYNCREATE(CEx04_3Doc, CDocument)
BEGIN_MESSAGE_MAP(CEx04_3Doc, CDocument)
//{{AFX_MSG_MAP(CEx04_3Doc)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CEx04_3Doc construction/destruction
CEx04_3Doc::CEx04_3Doc()
{
// TODO: add one-time construction code here
x0=10;
y0=10;
x1=100;
y1=50;
}
CEx04_3Doc::~CEx04_3Doc()
{
}
BOOL CEx04_3Doc::OnNewDocument()
{
if (!CDocument::OnNewDocument())
return FALSE;
// TODO: add reinitialization code here
// (SDI documents will reuse this document)
return TRUE;
}
/////////////////////////////////////////////////////////////////////////////
// CEx04_3Doc serialization
void CEx04_3Doc::Serialize(CArchive& ar)
{
if (ar.IsStoring())
{
// TODO: add storing code here
ar<<x0<<y0<<x1<<y1;
}
else
{
// TODO: add loading code here
ar>>x0>>y0>>x1>>y1;
}
}
/////////////////////////////////////////////////////////////////////////////
// CEx04_3Doc diagnostics
#ifdef _DEBUG
void CEx04_3Doc::AssertValid() const
{
CDocument::AssertValid();
}
void CEx04_3Doc::Dump(CDumpContext& dc) const
{
CDocument::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CEx04_3Doc commands
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -