htmlexporter.h
来自「非常好用的可移植的多平台C/C++源代码编辑器」· C头文件 代码 · 共 27 行
H
27 行
#ifndef HTMLEXPORTER_INCLUDED
#define HTMLEXPORTER_INCLUDED
#include "BaseExporter.h"
#include <string>
using std::string;
class HTMLExporter : public BaseExporter
{
public:
void Export(const wxString &filename, const wxString &title, const wxMemoryBuffer &styled_text, const EditorColorSet *color_set);
private:
static const char *HTMLHeaderBEG;
static const char *HTMLMeta;
static const char *HTMLStyleBEG;
static string HTMLStyle(const EditorColorSet *color_set, HighlightLanguage lang);
static const char *HTMLStyleEND;
static const char *HTMLHeaderEND;
static const char *HTMLBodyBEG;
static string HTMLBody(const wxMemoryBuffer &styled_text);
static const char *HTMLBodyEND;
};
#endif // HTMLEXPORTER_INCLUDED
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?