]> git.lyx.org Git - features.git/blob - src/mathed/InsetMathDFrac.cpp
6b051ab7d5320c969b92fc55989d868af9448532
[features.git] / src / mathed / InsetMathDFrac.cpp
1 /**
2  * \file InsetMathDFrac.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 "InsetMathDFrac.h"
14 #include "MathData.h"
15 #include "MathStream.h"
16 #include "LaTeXFeatures.h"
17 #include "Color.h"
18 #include "frontends/Painter.h"
19
20
21 namespace lyx {
22
23 InsetMathDFrac::InsetMathDFrac()
24         : InsetMathFrac()
25 {}
26
27
28 Inset * InsetMathDFrac::clone() const
29 {
30         return new InsetMathDFrac(*this);
31 }
32
33
34 void InsetMathDFrac::metrics(MetricsInfo & mi, Dimension & dim) const
35 {
36         cell(0).metrics(mi);
37         cell(1).metrics(mi);
38         dim.wid = std::max(cell(0).width(), cell(1).width()) + 2;
39         dim.asc = cell(0).height() + 2 + 5;
40         dim.des = cell(1).height() + 2 - 5;
41         // Cache the inset dimension. 
42         setDimCache(mi, dim);
43 }
44
45
46 void InsetMathDFrac::draw(PainterInfo & pi, int x, int y) const
47 {
48         Dimension const dim = dimension(*pi.base.bv);
49         int m = x + dim.wid / 2;
50         cell(0).draw(pi, m - cell(0).width() / 2, y - cell(0).descent() - 2 - 5);
51         cell(1).draw(pi, m - cell(1).width() / 2, y + cell(1).ascent()  + 2 - 5);
52         pi.pain.line(x + 1, y - 5, x + dim.wid - 2, y - 5, Color::math);
53         setPosCache(pi, x, y);
54 }
55
56
57 docstring InsetMathDFrac::name() const
58 {
59         return from_ascii("dfrac");
60 }
61
62
63 void InsetMathDFrac::mathmlize(MathStream & os) const
64 {
65         os << MTag("mdfrac") << cell(0) << cell(1) << ETag("mdfrac");
66 }
67
68
69 void InsetMathDFrac::validate(LaTeXFeatures & features) const
70 {
71         features.require("amsmath");
72         InsetMathNest::validate(features);
73 }
74
75
76 } // namespace lyx