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

📄 bottomview.h

📁 一个类c语言的解释器
💻 H
字号:
#pragma once
#include "cmmgDoc.h"
#include "OutRichCtrl.h"
#include "AnalyseTree.h";

// CBottomView view

class CBottomView : public CView
{
	DECLARE_DYNCREATE(CBottomView)
public:
	CcmmgDoc* GetDocument() const;
	virtual void OnInitialUpdate();
protected:
	CBottomView();           // protected constructor used by dynamic creation
	virtual ~CBottomView();

protected:
	virtual void OnSize(UINT nType, int cx, int cy);
public:
	COutRichCtrl output;
	CListBox err;

public:
	virtual void OnDraw(CDC* pDC);      // overridden to draw this view

	VOID OnSelChange(NMHDR * pNotifyStruct, LRESULT * result);
public:
	AnalyseTree *analyse_tree;
	void scan();
	void parse();
	void exec();
#ifdef _DEBUG
	virtual void AssertValid() const;
#ifndef _WIN32_WCE
	virtual void Dump(CDumpContext& dc) const;
#endif
#endif

protected:
	DECLARE_MESSAGE_MAP()
};


inline CcmmgDoc* CBottomView::GetDocument() const
{ return reinterpret_cast<CcmmgDoc*>(m_pDocument); }

⌨️ 快捷键说明

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