]> git.lyx.org Git - features.git/blob - src/mathed/InsetMathDFrac.cpp
Fix compilation problem due to same static variable in different files.
[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 "frontends/Painter.h"
18
19
20 namespace lyx {
21
22 InsetMathDFrac::InsetMathDFrac()
23         : InsetMathFrac()
24 {}
25
26
27 Inset * InsetMathDFrac::clone() const
28 {
29         return new InsetMathDFrac(*this);
30 }
31
32
33 void InsetMathDFrac::metrics(MetricsInfo & mi, Dimension & dim) const
34 {
35         Dimension dim0, dim1;
36         cell(0).metrics(mi, dim0);
37         cell(1).metrics(mi, dim1);
38         dim.wid = std::max(dim0.wid, dim1.wid) + 2;
39         dim.asc = dim0.height() + 2 + 5;
40         dim.des = dim1.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         Dimension const & dim0 = cell(0).dimension(*pi.base.bv);
50         Dimension const & dim1 = cell(1).dimension(*pi.base.bv);
51         int m = x + dim.wid / 2;
52         cell(0).draw(pi, m - dim0.wid / 2, y - dim0.des - 2 - 5);
53         cell(1).draw(pi, m - dim1.wid / 2, y + dim1.asc  + 2 - 5);
54         pi.pain.line(x + 1, y - 5, x + dim.wid - 2, y - 5, Color_math);
55         setPosCache(pi, x, y);
56 }
57
58
59 docstring InsetMathDFrac::name() const
60 {
61         return from_ascii("dfrac");
62 }
63
64
65 void InsetMathDFrac::mathmlize(MathStream & os) const
66 {
67         os << MTag("mdfrac") << cell(0) << cell(1) << ETag("mdfrac");
68 }
69
70
71 void InsetMathDFrac::validate(LaTeXFeatures & features) const
72 {
73         features.require("amsmath");
74         InsetMathNest::validate(features);
75 }
76
77
78 } // namespace lyx