📄 ideoptions.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 + -