ideoptions.h

来自「一个可视化的编译器」· C头文件 代码 · 共 36 行

H
36
字号
#pragma once
namespace LeastLIDE{
	using namespace System;
	using namespace System::Text;

ref class IDEOptions
{

	String ^interpreterPath;
	String ^interpreterParams;
	String ^editorFontName;
	float editorFontSize;

public:
	void SetInterpreter(String ^path, String ^params);
	void SetEditor(String ^fontName, float fontSize);
	String ^ GetInterpreterPath();
	String ^ GetInterpreterParams();
	String ^ GetEditorFontName();
	float GetEditorFontSize();
	IDEOptions(void);

	void Load();
	void Save();

	IDEOptions ^operator = (const IDEOptions ^b)
    {
        this->interpreterPath = b->interpreterPath;
        this->interpreterParams = b->interpreterParams;
        this->editorFontName = b->editorFontName;
        this->editorFontSize = b->editorFontSize;
        return this;
    }
};
}

⌨️ 快捷键说明

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