]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathEnsureMath.cpp
d73a1cb35991e49e8c553d95ccaba20f1f1ad27e
[lyx.git] / src / mathed / InsetMathEnsureMath.cpp
1 /**
2  * \file InsetMathEnsureMath.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  * \author Enrico Forestieri
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "InsetMathEnsureMath.h"
15
16 #include "MathData.h"
17 #include "MathStream.h"
18 #include "MathSupport.h"
19
20 #include "LaTeXFeatures.h"
21 #include "MetricsInfo.h"
22
23 #include <ostream>
24
25
26 namespace lyx {
27
28 InsetMathEnsureMath::InsetMathEnsureMath(Buffer * buf)
29         : InsetMathNest(buf, 1)
30 {}
31
32
33 Inset * InsetMathEnsureMath::clone() const
34 {
35         return new InsetMathEnsureMath(*this);
36 }
37
38
39 void InsetMathEnsureMath::metrics(MetricsInfo & mi, Dimension & dim) const
40 {
41         bool really_change_font = isTextFont(mi.base.fontname);
42         Changer dummy = really_change_font ? mi.base.changeFontSet("mathnormal")
43                 : Changer();
44         cell(0).metrics(mi, dim);
45         metricsMarkers(mi, dim);
46 }
47
48
49 void InsetMathEnsureMath::draw(PainterInfo & pi, int x, int y) const
50 {
51         bool really_change_font = isTextFont(pi.base.fontname);
52         Changer dummy = really_change_font ? pi.base.changeFontSet("mathnormal")
53                 : Changer();
54         cell(0).draw(pi, x, y);
55         drawMarkers(pi, x, y);
56 }
57
58
59 void InsetMathEnsureMath::metricsT(TextMetricsInfo const & mi, Dimension & dim) const
60 {
61         cell(0).metricsT(mi, dim);
62 }
63
64
65 void InsetMathEnsureMath::drawT(TextPainter & pain, int x, int y) const
66 {
67         cell(0).drawT(pain, x, y);
68 }
69
70
71 void InsetMathEnsureMath::write(WriteStream & os) const
72 {
73         ModeSpecifier specifier(os, MATH_MODE);
74         os << "\\ensuremath{" << cell(0) << "}";
75 }
76
77
78 void InsetMathEnsureMath::mathmlize(MathStream & os) const
79 {
80         SetMode mathmode(os, false);
81         os << MTag("mstyle", "class='math'")
82            << cell(0)
83            << ETag("mstyle");
84 }
85
86
87 void InsetMathEnsureMath::htmlize(HtmlStream & os) const
88 {
89         SetHTMLMode mathmode(os, false);
90         os << MTag("span", "class='math'")
91            << cell(0)
92            << ETag("span");
93 }
94
95
96 void InsetMathEnsureMath::infoize(odocstream & os) const
97 {
98         os << "EnsureMath";
99 }
100
101
102 void InsetMathEnsureMath::validate(LaTeXFeatures & features) const
103 {
104         // FIXME XHTML
105         // It'd be better to be able to get this from an InsetLayout, but at present
106         // InsetLayouts do not seem really to work for things that aren't InsetTexts.
107         if (features.runparams().math_flavor == OutputParams::MathAsMathML)
108                 features.addCSSSnippet("mstyle.math { font-style: italic; }");
109         else if (features.runparams().math_flavor == OutputParams::MathAsHTML)
110                 features.addCSSSnippet("span.mathbox { font-style: italic; }");
111
112         InsetMathNest::validate(features);
113 }
114
115 } // namespace lyx