]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathEnsureMath.cpp
Get rid of Inset::setPosCache
[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         Changer dummy = mi.base.changeEnsureMath();
42         cell(0).metrics(mi, dim);
43         metricsMarkers(mi, dim);
44 }
45
46
47 void InsetMathEnsureMath::draw(PainterInfo & pi, int x, int y) const
48 {
49         Changer dummy = pi.base.changeEnsureMath();
50         cell(0).draw(pi, x, y);
51         drawMarkers(pi, x, y);
52 }
53
54
55 void InsetMathEnsureMath::metricsT(TextMetricsInfo const & mi, Dimension & dim) const
56 {
57         cell(0).metricsT(mi, dim);
58 }
59
60
61 void InsetMathEnsureMath::drawT(TextPainter & pain, int x, int y) const
62 {
63         cell(0).drawT(pain, x, y);
64 }
65
66
67 void InsetMathEnsureMath::write(WriteStream & os) const
68 {
69         ModeSpecifier specifier(os, MATH_MODE);
70         os << "\\ensuremath{" << cell(0) << "}";
71 }
72
73
74 void InsetMathEnsureMath::mathmlize(MathStream & os) const
75 {
76         SetMode mathmode(os, false);
77         os << MTag("mstyle", "class='math'")
78            << cell(0)
79            << ETag("mstyle");
80 }
81
82
83 void InsetMathEnsureMath::htmlize(HtmlStream & os) const
84 {
85         SetHTMLMode mathmode(os, false);
86         os << MTag("span", "class='math'")
87            << cell(0)
88            << ETag("span");
89 }
90
91
92 void InsetMathEnsureMath::infoize(odocstream & os) const
93 {
94         os << "EnsureMath";
95 }
96
97
98 void InsetMathEnsureMath::validate(LaTeXFeatures & features) const
99 {
100         // FIXME XHTML
101         // It'd be better to be able to get this from an InsetLayout, but at present
102         // InsetLayouts do not seem really to work for things that aren't InsetTexts.
103         if (features.runparams().math_flavor == OutputParams::MathAsMathML)
104                 features.addCSSSnippet("mstyle.math { font-style: italic; }");
105         else if (features.runparams().math_flavor == OutputParams::MathAsHTML)
106                 features.addCSSSnippet("span.mathbox { font-style: italic; }");
107
108         InsetMathNest::validate(features);
109 }
110
111 } // namespace lyx