summaryrefslogtreecommitdiffstats
path: root/src/htmlentity.h
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2014-02-10 19:34:18 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2014-02-10 19:53:35 (GMT)
commitdfa20277697fe904a0846b60a01cc388fc13c933 (patch)
tree011aa3c33d114404d7508756117e993b90e01799 /src/htmlentity.h
parent69665ef2ad0779f9255242929fb6028c8c3ec518 (diff)
downloadDoxygen-dfa20277697fe904a0846b60a01cc388fc13c933.zip
Doxygen-dfa20277697fe904a0846b60a01cc388fc13c933.tar.gz
Doxygen-dfa20277697fe904a0846b60a01cc388fc13c933.tar.bz2
Restructered html entity handling
Diffstat (limited to 'src/htmlentity.h')
-rw-r--r--src/htmlentity.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/src/htmlentity.h b/src/htmlentity.h
new file mode 100644
index 0000000..3aeb076
--- /dev/null
+++ b/src/htmlentity.h
@@ -0,0 +1,47 @@
+/******************************************************************************
+ *
+ * Copyright (C) 1997-2013 by Dimitri van Heesch.
+ *
+ * Permission to use, copy, modify, and distribute this software and its
+ * documentation under the terms of the GNU General Public License is hereby
+ * granted. No representations are made about the suitability of this software
+ * for any purpose. It is provided "as is" without express or implied warranty.
+ * See the GNU General Public License for more details.
+ *
+ * Documents produced by Doxygen are derivative works derived from the
+ * input used in their production; they are not affected by this license.
+ *
+ */
+#ifndef HTMLENTITY_H
+#define HTMLENTITY_H
+
+#include <qdict.h>
+#include "docparser.h"
+
+class FTextStream;
+
+/** @brief Singleton helper class to map html entities to other formats */
+class HtmlEntityMapper
+{
+ public:
+ static HtmlEntityMapper *instance();
+ static void deleteInstance();
+ DocSymbol::SymType name2sym(const QCString &symName) const;
+ const char *utf8(DocSymbol::SymType symb) const;
+ const char *html(DocSymbol::SymType symb) const;
+ const char *xml(DocSymbol::SymType symb) const;
+ const char *docbook(DocSymbol::SymType symb) const;
+ const char *latex(DocSymbol::SymType symb) const;
+ const char *man(DocSymbol::SymType symb) const;
+ const char *rtf(DocSymbol::SymType symb) const;
+ const DocSymbol::PerlSymb *perl(DocSymbol::SymType symb) const;
+ void writeXMLSchema(FTextStream &t);
+ void validate();
+ private:
+ HtmlEntityMapper();
+ ~HtmlEntityMapper();
+ static HtmlEntityMapper *s_instance;
+ QDict<int> *m_name2sym;
+};
+
+#endif