#include <iostream>
#include <fstream>
#include <sstream>
#include <map>
#include <string>
Go to the source code of this file.
Functions | |
void | initDocNotice () |
Dispatch initialization of notice containers, after default notice file loading. | |
void | printDocNotice (const string &faustversion, ostream &docout) |
Print the content of the notice (a string map), as LaTeX items inside an itemize environment. | |
Variables | |
map< string, bool > | gDocNoticeFlagMap |
gDocNoticeFlagMap is public to let others turn to "true" flags that one want to print. |
void initDocNotice | ( | ) |
Dispatch initialization of notice containers, after default notice file loading.
Definition at line 134 of file doc_notice.cpp.
References initDocNoticeFlagMap(), and initDocNoticeKeySet().
Referenced by loadTranslationFile().
00135 { 00136 initDocNoticeKeySet(); 00137 initDocNoticeFlagMap(); 00138 }
void printDocNotice | ( | const string & | faustversion, | |
ostream & | docout | |||
) |
Print the content of the notice (a string map), as LaTeX items inside an itemize environment.
[in] | notice | The set containing the strings to print as items. |
[in] | faustversion | The current version of this Faust compiler. |
[out] | docout | The LaTeX output file to print into. |
Definition at line 66 of file doc_notice.cpp.
References gDocAutodocStringMap, gDocNoticeFlagMap, and gDocNoticeStringMap.
Referenced by printdoccontent().
00066 { 00067 00068 if (! gDocNoticeStringMap.empty() ) { 00069 00070 //cerr << "Documentator : printDocNotice : printing..." << endl; 00071 00072 docout << endl << "\\begin{itemize}" << endl; 00073 00074 /* Presentations. */ 00075 docout << "\t\\item " << gDocAutodocStringMap["autontctext"] << endl; 00076 if(gDocNoticeFlagMap["faustapply"]) docout << "\t\\item " << gDocNoticeStringMap["faustapply"] << endl; 00077 if(gDocNoticeFlagMap["faustpresentation"]) docout << "\t\\item " << gDocNoticeStringMap["faustpresentation"] << endl; 00078 if(gDocNoticeFlagMap["causality"]) docout << "\t\\item " << gDocNoticeStringMap["causality"] << endl; 00079 if(gDocNoticeFlagMap["blockdiagrams"]) docout << "\t\\item " << gDocNoticeStringMap["blockdiagrams"] << endl; 00080 00081 /* Naming conventions of variables and functions. */ 00082 if(gDocNoticeFlagMap["foreignfun"]) docout << "\t\\item " << gDocNoticeStringMap["foreignfun"] << endl; 00083 if(gDocNoticeFlagMap["intcast"]) docout << "\t\\item " << gDocNoticeStringMap["intcast"] << endl; 00084 00085 /* Integer arithmetic into a tabular environment. */ 00086 if(gDocNoticeFlagMap["intplus"] || 00087 gDocNoticeFlagMap["intminus"] || 00088 gDocNoticeFlagMap["intmult"] || 00089 gDocNoticeFlagMap["intdiv"] || 00090 gDocNoticeFlagMap["intand"] || 00091 gDocNoticeFlagMap["intor"] || 00092 gDocNoticeFlagMap["intxor"]) 00093 { 00094 gDocNoticeFlagMap["operators"] = true; 00095 gDocNoticeFlagMap["optabtitle"] = true; 00096 gDocNoticeFlagMap["integerops"] = true; 00097 00098 docout << "\t\\item " << endl; 00099 docout << "\t\t" << gDocNoticeStringMap["operators"] << endl; 00100 docout << "\t\\begin{center}" << endl; 00101 docout << "\t\\begin{tabular}{|c|l|l|} " << endl; 00102 docout << "\t\t\\hline " << endl; 00103 docout << "\t\t" << gDocNoticeStringMap["optabtitle"] << endl; 00104 docout << "\t\t\\hline " << endl; 00105 if(gDocNoticeFlagMap["intplus"]) docout << "\t\t" << gDocNoticeStringMap["intplus"] << endl; 00106 if(gDocNoticeFlagMap["intminus"]) docout << "\t\t" << gDocNoticeStringMap["intminus"] << endl; 00107 if(gDocNoticeFlagMap["intmult"]) docout << "\t\t" << gDocNoticeStringMap["intmult"] << endl; 00108 if(gDocNoticeFlagMap["intdiv"]) docout << "\t\t" << gDocNoticeStringMap["intdiv"] << endl; 00109 if(gDocNoticeFlagMap["intand"]) docout << "\t\t" << gDocNoticeStringMap["intand"] << endl; 00110 if(gDocNoticeFlagMap["intor"]) docout << "\t\t" << gDocNoticeStringMap["intor"] << endl; 00111 if(gDocNoticeFlagMap["intxor"]) docout << "\t\t" << gDocNoticeStringMap["intxor"] << endl; 00112 docout << "\t\t\\hline " << endl; 00113 docout << "\t\\end{tabular} " << endl; 00114 docout << "\t\\end{center}" << endl; 00115 docout << "\t\t" << gDocNoticeStringMap["integerops"] << endl; 00116 } 00117 00118 if(gDocNoticeFlagMap["faustdocdir"]) docout << "\t\\item " << gDocNoticeStringMap["faustdocdir"] << endl; 00119 00120 docout << "\\end{itemize}" << endl << endl; 00121 } 00122 //cerr << " ... Documentator : printDocNotice : end of printing." << endl; 00123 }
map<string, bool> gDocNoticeFlagMap |
gDocNoticeFlagMap is public to let others turn to "true" flags that one want to print.
Definition at line 36 of file doc_notice.cpp.
Referenced by DocCompiler::compileLateq(), DocCompiler::generateBinOp(), DocCompiler::generateButton(), DocCompiler::generateCacheCode(), DocCompiler::generateCheckbox(), DocCompiler::generateDocConstantTbl(), DocCompiler::generateDocWriteTbl(), DocCompiler::generateFConst(), DocCompiler::generateFFun(), DocCompiler::generateFVar(), DocCompiler::generateHSlider(), DocCompiler::generateInput(), DocCompiler::generateIntCast(), DocCompiler::generateNumber(), DocCompiler::generateNumEntry(), DocCompiler::generateOutput(), DocCompiler::generatePrefix(), DocCompiler::generateRec(), DocCompiler::generateSelect2(), DocCompiler::generateSelect3(), DocCompiler::generateVariableStore(), DocCompiler::generateVSlider(), initDocNoticeFlagMap(), printDocDgm(), and printDocNotice().