Doxygen
LatexEscaper类 参考
+ 类 LatexEscaper 继承关系图:
+ LatexEscaper 的协作图:

Public 成员函数

std::unique_ptr< TemplateEscapeIntfclone ()
 Create a copy of the escape filter 更多...
 
 LatexEscaper ()
 
QCString escape (const QCString &s)
 Returns the input after escaping certain characters 更多...
 
void enableTabbing (bool b)
 Setting tabbing mode on or off (for LaTeX) 更多...
 
- Public 成员函数 继承自 TemplateEscapeIntf
virtual ~TemplateEscapeIntf ()
 

Private 属性

bool m_tabbing
 

详细描述

在文件 context.cpp8974 行定义.

构造及析构函数说明

◆ LatexEscaper()

LatexEscaper::LatexEscaper ( )
inline

在文件 context.cpp8981 行定义.

8981 : m_tabbing(FALSE) {}

成员函数说明

◆ clone()

std::unique_ptr<TemplateEscapeIntf> LatexEscaper::clone ( )
inlinevirtual

Create a copy of the escape filter

实现了 TemplateEscapeIntf.

在文件 context.cpp8977 行定义.

8978  {
8979  return std::make_unique<LatexEscaper>(*this);
8980  }

◆ enableTabbing()

void LatexEscaper::enableTabbing ( bool  b)
inlinevirtual

Setting tabbing mode on or off (for LaTeX)

实现了 TemplateEscapeIntf.

在文件 context.cpp8986 行定义.

8986 { m_tabbing=b; }

引用了 m_tabbing.

◆ escape()

QCString LatexEscaper::escape ( const QCString input)
inlinevirtual

Returns the input after escaping certain characters

实现了 TemplateEscapeIntf.

在文件 context.cpp8982 行定义.

8983  {
8984  return convertToLaTeX(s,m_tabbing);
8985  }

引用了 convertToLaTeX() , 以及 m_tabbing.

类成员变量说明

◆ m_tabbing

bool LatexEscaper::m_tabbing
private

在文件 context.cpp8988 行定义.

被这些函数引用 enableTabbing() , 以及 escape().


该类的文档由以下文件生成:
LatexEscaper::m_tabbing
bool m_tabbing
Definition: context.cpp:8988
convertToLaTeX
QCString convertToLaTeX(const QCString &s, bool insideTabbing, bool keepSpaces)
Definition: util.cpp:4161
FALSE
#define FALSE
Definition: qcstring.h:33