ai3view.h

来自「五子棋是一种受大众广泛喜爱的游戏」· C头文件 代码 · 共 47 行

H
47
字号
// AI3View.h : interface of the CAI3View class
//
/////////////////////////////////////////////////////////////////////////////
#pragma once

class CAI3View : public CScrollView
{
protected: // create from serialization only
	CAI3View();
	DECLARE_DYNCREATE(CAI3View)

// Attributes
public:
	CAI3Doc* GetDocument();

// Operations
public:

// Overrides
public:
	virtual void OnDraw(CDC* pDC);  // overridden to draw this view
	virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
	protected:
	virtual void OnInitialUpdate(); // called first time after construct
// Implementation
public:
	virtual ~CAI3View();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:
	afx_msg void OnViewStepOnly();
	afx_msg void OnUpdateViewStepOnly(CCmdUI* pCmdUI);
	afx_msg void OnViewTreeOnly();
	afx_msg void OnUpdateViewTreeOnly(CCmdUI* pCmdUI);
	DECLARE_MESSAGE_MAP()
private:
	BOOL m_bIsDispAll;
};

#ifndef _DEBUG  // debug version in AI3View.cpp
inline CAI3Doc* CAI3View::GetDocument()
   { return (CAI3Doc*)m_pDocument; }
#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?