📄 wxscodegen.h
字号:
#ifndef WXSCODEGEN_H
#define WXSCODEGEN_H
#include "widget.h"
class wxsCodeGen
{
public:
wxsCodeGen(wxsWidget* Widget,int InitialSpaces=0,int TabSize=4,bool DontCreateRoot = true);
virtual ~wxsCodeGen();
inline const wxString& GetCode()
{
return Code;
}
protected:
/** This function should make the code more beauty ;) */
virtual void BeautyCode(wxString& Code,int InitialSpaces,int TabSize);
private:
wxString Code;
void AppendCodeReq(wxsWidget* Widget,wxsCodeParams& Params);
};
#endif // WXSCODEGEN_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -