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

📄 wxscodegen.h

📁 非常好用的可移植的多平台C/C++源代码编辑器
💻 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 + -