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

📄 ideoptions.h

📁 一个可视化的编译器
💻 H
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -