luaedit.h

来自「一个2D电磁场FEM计算的VC++源程序」· C头文件 代码 · 共 27 行

H
27
字号
//////////////////////////////////////////////////
// CLuaEdit is a specialized CEdit control that
// allows the selection to be evaluated by Lua
//////////////////////////////////////////////////

class CLuaEdit : public CEdit
{
private:
	using CEdit::Create;

public:
// Implementation
	BOOL IsSelection();
	void ParseWithLua();
	void Undo();
	void SelectAll();

protected:
	

	//{{AFX_MSG(CLuaEdit)
	afx_msg void OnChar(UINT, UINT, UINT); // check to see if we need to evaluate the selection
	afx_msg void OnRButtonUp(UINT nFlags, CPoint point);
	//}}AFX_MSG

	DECLARE_MESSAGE_MAP()
};

⌨️ 快捷键说明

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