这篇教程C++ DBG_RTF函数代码示例写得很实用,希望能帮到您。
本文整理汇总了C++中DBG_RTF函数的典型用法代码示例。如果您正苦于以下问题:C++ DBG_RTF函数的具体用法?C++ DBG_RTF怎么用?C++ DBG_RTF使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。 在下文中一共展示了DBG_RTF函数的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C++代码示例。 示例1: DBG_RTFvoid RTFDocVisitor::visitPost(DocTitle *){ if (m_hide) return; DBG_RTF("{//comment RTFDocVisitor::visitPost(DocTitle)}/n"); m_t << "//par" << endl; m_t << "}"; // end bold incIndentLevel(); m_t << rtf_Style_Reset << getStyle("DescContinue"); m_lastIsPara=FALSE;}
开发者ID:wufengyi,项目名称:doxygen,代码行数:10,
示例2: DBG_RTFvoid RTFDocVisitor::visitPre(DocSecRefList *){ if (m_hide) return; DBG_RTF("{//comment RTFDocVisitor::visitPre(DocSecRefList)}/n"); m_t << "{" << endl; incIndentLevel(); m_t << rtf_Style_Reset << getStyle("LatexTOC") << endl; m_t << "//par" << endl; m_lastIsPara=TRUE;}
开发者ID:fulinux,项目名称:doxygen,代码行数:10,
示例3: DBG_RTFvoid RTFDocVisitor::visitPre(DocSimpleSect *s){ if (m_hide) return; DBG_RTF("{//comment RTFDocVisitor::visitPre(DocSimpleSect)}/n"); if (!m_lastIsPara) m_t << "//par" << endl; m_t << "{"; // start desc //m_t << "{//b "; // start bold m_t << "{" << rtf_Style["Heading5"]->reference << endl; switch(s->type()) { case DocSimpleSect::See: m_t << theTranslator->trSeeAlso(); break; case DocSimpleSect::Return: m_t << theTranslator->trReturns(); break; case DocSimpleSect::Author: m_t << theTranslator->trAuthor(TRUE,TRUE); break; case DocSimpleSect::Authors: m_t << theTranslator->trAuthor(TRUE,FALSE); break; case DocSimpleSect::Version: m_t << theTranslator->trVersion(); break; case DocSimpleSect::Since: m_t << theTranslator->trSince(); break; case DocSimpleSect::Date: m_t << theTranslator->trDate(); break; case DocSimpleSect::Note: m_t << theTranslator->trNote(); break; case DocSimpleSect::Warning: m_t << theTranslator->trWarning(); break; case DocSimpleSect::Pre: m_t << theTranslator->trPrecondition(); break; case DocSimpleSect::Post: m_t << theTranslator->trPostcondition(); break; case DocSimpleSect::Invar: m_t << theTranslator->trInvariant(); break; case DocSimpleSect::Remark: m_t << theTranslator->trRemarks(); break; case DocSimpleSect::Attention: m_t << theTranslator->trAttention(); break; case DocSimpleSect::User: break; case DocSimpleSect::Rcs: break; case DocSimpleSect::Unknown: break; } // special case 1: user defined title if (s->type()!=DocSimpleSect::User && s->type()!=DocSimpleSect::Rcs) { m_t << ":"; m_t << "//par"; m_t << "}"; // end bold incIndentLevel(); m_t << rtf_Style_Reset << getStyle("DescContinue"); } m_lastIsPara=FALSE;}
开发者ID:dnjsflagh1,项目名称:code,代码行数:54,
示例4: DBG_RTFvoid RTFDocVisitor::visitPre(DocXRefItem *x){ if (m_hide) return; if (x->title().isEmpty()) return; bool anonymousEnum = x->file()=="@"; DBG_RTF("{//comment RTFDocVisitor::visitPre(DocXRefItem)}/n"); if (!m_lastIsPara) { m_t << "//par" << endl; m_lastIsPara=TRUE; } m_t << "{"; // start param list //m_t << "{//b "; // start bold m_t << "{" << rtf_Style["Heading5"]->reference << endl; if (Config_getBool(RTF_HYPERLINKS) && !anonymousEnum) { QCString refName; if (!x->file().isEmpty()) { refName+=x->file(); } if (!x->file().isEmpty() && !x->anchor().isEmpty()) { refName+="_"; } if (!x->anchor().isEmpty()) { refName+=x->anchor(); } m_t << "{//field " "{//*//fldinst " "{ HYPERLINK ////l /"" << refName << "/" " "}{}" "}" "{//fldrslt " "{//cs37//ul//cf2 "; filter(x->title()); m_t << "}" "}" "}"; } else { filter(x->title()); } m_t << ":"; m_t << "//par"; m_t << "}"; // end bold incIndentLevel(); m_t << rtf_Style_Reset << getStyle("DescContinue"); m_lastIsPara=FALSE;}
开发者ID:BlazesRus,项目名称:doxygen,代码行数:53,
示例5: DBG_RTFvoid RTFDocVisitor::visitPre(DocInternal *){ if (m_hide) return; DBG_RTF("{//comment RTFDocVisitor::visitPre(DocInternal)}/n"); m_t << "{"; // start desc m_t << "{//b "; // start bold m_t << theTranslator->trForInternalUseOnly(); m_t << "}"; // end bold m_t << "//par" << endl; incIndentLevel(); m_t << rtf_Style_Reset << getStyle("DescContinue"); m_lastIsPara=FALSE;}
开发者ID:arnaudgelas,项目名称:doxygen-cmake,代码行数:13,
示例6: DBG_RTFvoid RTFDocVisitor::visit(DocWhiteSpace *w){ if (m_hide) return; DBG_RTF("{//comment RTFDocVisitor::visit(DocWhiteSpace)}/n"); if (m_insidePre) { m_t << w->chars(); } else { m_t << " "; } m_lastIsPara=FALSE;}
开发者ID:zellcht,项目名称:group,代码行数:14,
示例7: DBG_RTFvoid RTFDocVisitor::visit(DocSymbol *s){ if (m_hide) return; DBG_RTF("{//comment RTFDocVisitor::visit(DocSymbol)}/n"); const char *res = HtmlEntityMapper::instance()->rtf(s->symbol()); if (res) { m_t << res; } else { err("RTF: non supported HTML-entity found: %s/n",HtmlEntityMapper::instance()->html(s->symbol(),TRUE)); } m_lastIsPara=FALSE;}
开发者ID:Acidburn0zzz,项目名称:doxygen,代码行数:15,
示例8: decIndentLevelvoid RTFDocVisitor::visitPost(DocHtmlListItem *) { decIndentLevel(); DBG_RTF("{//comment RTFDocVisitor::visitPost(DocHtmlListItem)}/n");}
开发者ID:zellcht,项目名称:group,代码行数:5,
注:本文中的DBG_RTF函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 C++ DBG_START_METH函数代码示例 C++ DBG_RETURN函数代码示例 |