⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ai3view.h

📁 人工智能的相关程序
💻 H
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -