rtfexporter.h
来自「非常好用的可移植的多平台C/C++源代码编辑器」· C头文件 代码 · 共 42 行
H
42 行
#ifndef RTFEXPORTER_INCLUDED
#define RTFEXPORTER_INCLUDED
#include "BaseExporter.h"
#include <vector>
#include <string>
using std::string;
using std::vector;
class RTFExporter : public BaseExporter
{
public:
struct Style
{
int value;
int backIdx;
int foreIdx;
bool bold;
bool italics;
bool underlined;
bool operator == (int aValue);
};
public:
void Export(const wxString &filename, const wxString &title, const wxMemoryBuffer &styled_text, const EditorColorSet *color_set);
private:
vector<Style> m_styles;
int defStyleIdx;
static string RTFFontTable(int &pt);
string RTFColorTable(const EditorColorSet *c_color_set, HighlightLanguage lang);
static const char *RTFInfo;
static const char *RTFTitle;
string RTFBody(const wxMemoryBuffer &styled_text, int pt);
static const char *RTFEnd;
};
#endif // RTFEXPORTER_INCLUDED
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?