summaryrefslogtreecommitdiff
path: root/starmath/source/mathmlimport.hxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2015-02-24 13:55:58 +0900
committerCaolán McNamara <caolanm@redhat.com>2015-02-27 12:05:12 +0000
commitfe43c9227bd77c6471126b2553820c14b4721d6f (patch)
tree58e3673e4189cbfee9dc00abc78142be27cd038b /starmath/source/mathmlimport.hxx
parent543b432f132ef928216526854aa0df4d94b76dca (diff)
starmath: render the selected subexpression of MathML's <maction>
... specified by the selection attribute. For its expected behavior, see the section <maction> in MathML 1.01: <http://www.w3.org/TR/REC-MathML/chap3_6.html#sec3.6.1> Change-Id: I70c1b2cfe1afec730f3e67ba0938bbaf8ada8e23 Reviewed-on: https://gerrit.libreoffice.org/14600 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'starmath/source/mathmlimport.hxx')
-rw-r--r--starmath/source/mathmlimport.hxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/starmath/source/mathmlimport.hxx b/starmath/source/mathmlimport.hxx
index 0a1e700759c2..c46742b899f9 100644
--- a/starmath/source/mathmlimport.hxx
+++ b/starmath/source/mathmlimport.hxx
@@ -80,6 +80,7 @@ class SmXMLImport : public SvXMLImport
SvXMLTokenMap *pPresScriptEmptyElemTokenMap;
SvXMLTokenMap *pPresTableElemTokenMap;
SvXMLTokenMap *pColorTokenMap;
+ SvXMLTokenMap *pActionAttrTokenMap;
SmNodeStack aNodeStack;
bool bSuccess;
@@ -241,6 +242,7 @@ public:
const SvXMLTokenMap &GetPresScriptEmptyElemTokenMap();
const SvXMLTokenMap &GetPresTableElemTokenMap();
const SvXMLTokenMap &GetColorTokenMap();
+ const SvXMLTokenMap &GetActionAttrTokenMap();
SmNodeStack & GetNodeStack() { return aNodeStack; }
SmNode *GetTree()
@@ -339,6 +341,10 @@ enum SmXMLAnnotationAttrTokenMap
XML_TOK_ENCODING
};
+enum SmXMLActionAttrTokenMap
+{
+ XML_TOK_SELECTION
+};
#endif