]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathSize.cpp
InsetMath: match the screen display with the EnsureMath behaviour in output
[lyx.git] / src / mathed / InsetMathSize.cpp
1 /**
2  * \file InsetMathSize.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author André Pönitz
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "InsetMathSize.h"
14
15 #include "LaTeXFeatures.h"
16 #include "MathData.h"
17 #include "MathParser.h"
18 #include "MathStream.h"
19 #include "output_xhtml.h"
20
21 #include "support/convert.h"
22 #include "support/gettext.h"
23 #include "support/lstrings.h"
24
25 #include <string>
26 #include <ostream>
27
28 using namespace lyx::support;
29 using namespace std;
30
31 namespace lyx {
32
33 InsetMathSize::InsetMathSize(Buffer * buf, latexkeys const * l)
34         : InsetMathNest(buf, 1), key_(l),
35           style_(MathStyle(convert<int>(l->extra)))
36 {}
37
38
39 Inset * InsetMathSize::clone() const
40 {
41         return new InsetMathSize(*this);
42 }
43
44
45 void InsetMathSize::metrics(MetricsInfo & mi, Dimension & dim) const
46 {
47         Changer dummy2 = mi.base.changeEnsureMath();
48         Changer dummy = mi.base.font.changeStyle(style_);
49         cell(0).metrics(mi, dim);
50         metricsMarkers(mi, dim);
51 }
52
53
54 void InsetMathSize::draw(PainterInfo & pi, int x, int y) const
55 {
56         Changer dummy2 = pi.base.changeEnsureMath();
57         Changer dummy = pi.base.font.changeStyle(style_);
58         cell(0).draw(pi, x + 1, y);
59         drawMarkers(pi, x, y);
60 }
61
62
63 void InsetMathSize::write(WriteStream & os) const
64 {
65         MathEnsurer ensurer(os);
66         os << "{\\" << key_->name << ' ' << cell(0) << '}';
67 }
68
69
70 // From the MathML documentation:
71 //      MathML uses two attributes, displaystyle and scriptlevel, to control 
72 //      orthogonal presentation features that TeX encodes into one "style" 
73 //      attribute with values \displaystyle, \textstyle, \scriptstyle, and 
74 //      \scriptscriptstyle. The corresponding values of displaystyle and scriptlevel 
75 //      for those TeX styles would be "true" and "0", "false" and "0", "false" and "1", 
76 //      and "false" and "2", respectively. 
77 void InsetMathSize::mathmlize(MathStream & ms) const
78 {
79         string const & name = to_utf8(key_->name);
80         bool dispstyle = (name == "displaystyle");
81         int scriptlevel = 0;
82         if (name == "scriptstyle")
83                 scriptlevel = 1;
84         else if (name == "scriptscriptstyle")
85                 scriptlevel = 2;
86         stringstream attrs;
87         attrs << "displaystyle='" << (dispstyle ? "true" : "false")
88                 << "' scriptlevel='" << scriptlevel << "'";
89         ms << MTag("mstyle", attrs.str()) << cell(0) << ETag("mstyle");
90 }
91
92
93 void InsetMathSize::htmlize(HtmlStream & os) const
94 {
95         string const & name = to_utf8(key_->name);
96         os <<   MTag("span", "class='" + name + "'")
97                         << cell(0) << ETag("span");
98 }
99
100
101 void InsetMathSize::normalize(NormalStream & os) const
102 {
103         os << '[' << key_->name << ' ' << cell(0) << ']';
104 }
105
106
107 void InsetMathSize::infoize(odocstream & os) const
108 {
109         os << bformat(_("Size: %1$s"), key_->name);
110 }
111
112
113 void InsetMathSize::validate(LaTeXFeatures & features) const
114 {
115         if (features.runparams().math_flavor == OutputParams::MathAsHTML)
116                 features.addCSSSnippet(
117                         "span.displaystyle, span.textstyle{font-size: normal;}\n"
118                         "span.scriptstyle {font-size: small;}\n"
119                         "span.scriptscriptstyle {font-size: x-small;}");
120         InsetMathNest::validate(features);
121 }
122
123 } // namespace lyx