]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathSize.cpp
Merge branch 'master' of git.lyx.org:lyx
[lyx.git] / src / mathed / InsetMathSize.cpp
index bb0b69f0d8c4998ab22a79f11489ec1d4b324b96..a638f43851d368fbdfde456c37edda9185b57c0c 100644 (file)
@@ -3,7 +3,7 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author André Pönitz
+ * \author André Pönitz
  *
  * Full author contact details are available in file CREDITS.
  */
 #include <config.h>
 
 #include "InsetMathSize.h"
+
+#include "LaTeXFeatures.h"
 #include "MathData.h"
 #include "MathParser.h"
 #include "MathStream.h"
+#include "output_xhtml.h"
 
 #include "support/convert.h"
-#include "support/std_ostream.h"
 
+#include <string>
+#include <ostream>
+
+using namespace std;
 
 namespace lyx {
 
-InsetMathSize::InsetMathSize(latexkeys const * l)
-       : InsetMathNest(1), key_(l), style_(Styles(convert<int>(l->extra)))
+InsetMathSize::InsetMathSize(Buffer * buf, latexkeys const * l)
+       : InsetMathNest(buf, 1), key_(l), style_(Styles(convert<int>(l->extra)))
 {}
 
 
@@ -32,15 +38,11 @@ Inset * InsetMathSize::clone() const
 }
 
 
-bool InsetMathSize::metrics(MetricsInfo & mi, Dimension & dim) const
+void InsetMathSize::metrics(MetricsInfo & mi, Dimension & dim) const
 {
        StyleChanger dummy(mi.base, style_);
        cell(0).metrics(mi, dim);
        metricsMarkers(dim);
-       if (dim_ == dim)
-               return false;
-       dim_ = dim;
-       return true;
 }
 
 
@@ -54,10 +56,43 @@ void InsetMathSize::draw(PainterInfo & pi, int x, int y) const
 
 void InsetMathSize::write(WriteStream & os) const
 {
+       MathEnsurer ensurer(os);
        os << "{\\" << key_->name << ' ' << cell(0) << '}';
 }
 
 
+// From the MathML documentation:
+//     MathML uses two attributes, displaystyle and scriptlevel, to control 
+//     orthogonal presentation features that TeX encodes into one "style" 
+//     attribute with values \displaystyle, \textstyle, \scriptstyle, and 
+//     \scriptscriptstyle. The corresponding values of displaystyle and scriptlevel 
+//     for those TeX styles would be "true" and "0", "false" and "0", "false" and "1", 
+//     and "false" and "2", respectively. 
+void InsetMathSize::mathmlize(MathStream & ms) const
+{
+       string const & name = to_utf8(key_->name);
+       bool dispstyle = (name == "displaystyle");
+       int scriptlevel = 0;
+       if (name == "scriptstyle")
+               scriptlevel = 1;
+       else if (name == "scriptscriptstyle")
+               scriptlevel = 2;
+       stringstream attrs;
+       attrs << "displaystyle='" << (dispstyle ? "true" : "false")
+               << "' scriptlevel='" << scriptlevel << "'";
+       ms << MTag("mstyle", attrs.str()) << ">"
+          << cell(0) << ETag("mstyle");
+}
+
+
+void InsetMathSize::htmlize(HtmlStream & os) const
+{
+       string const & name = to_utf8(key_->name);
+       os <<   MTag("span", "class='" + name + "'")
+                       << cell(0) << ETag("span");
+}
+
+
 void InsetMathSize::normalize(NormalStream & os) const
 {
        os << '[' << key_->name << ' ' << cell(0) << ']';
@@ -70,4 +105,14 @@ void InsetMathSize::infoize(odocstream & os) const
 }
 
 
+void InsetMathSize::validate(LaTeXFeatures & features) const
+{
+       if (features.runparams().math_flavor == OutputParams::MathAsHTML)
+               features.addCSSSnippet(
+                       "span.displaystyle, span.textstyle{font-size: normal;}\n"
+                       "span.scriptstyle {font-size: small;}\n"
+                       "span.scriptscriptstyle {font-size: x-small;}");
+       InsetMathNest::validate(features);
+}
+
 } // namespace lyx