]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathXArrow.cpp
886c8a6e7fde57ebf991edc7be19767201ab8dc4
[lyx.git] / src / mathed / InsetMathXArrow.cpp
1 /**
2  * \file InsetMathXArrow.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 "InsetMathXArrow.h"
14 #include "MathData.h"
15 #include "MathStream.h"
16 #include "MathStream.h"
17 #include "MathSupport.h"
18
19 #include "LaTeXFeatures.h"
20
21
22 namespace lyx {
23
24
25 InsetMathXArrow::InsetMathXArrow(docstring const & name)
26         : InsetMathFracBase(), name_(name)
27 {}
28
29
30 Inset * InsetMathXArrow::clone() const
31 {
32         return new InsetMathXArrow(*this);
33 }
34
35
36 void InsetMathXArrow::metrics(MetricsInfo & mi, Dimension & dim) const
37 {
38         ScriptChanger dummy(mi.base);
39         cell(0).metrics(mi);
40         cell(1).metrics(mi);
41         dim.wid = std::max(cell(0).width(), cell(1).width()) + 10;
42         dim.asc = cell(0).height() + 10;
43         dim.des = cell(1).height();
44         metricsMarkers(dim);
45         // Cache the inset dimension. 
46         setDimCache(mi, dim);
47 }
48
49
50 void InsetMathXArrow::draw(PainterInfo & pi, int x, int y) const
51 {
52         ScriptChanger dummy(pi.base);
53         cell(0).draw(pi, x + 5, y - 10);
54         cell(1).draw(pi, x + 5, y + cell(1).height());
55         Dimension const dim = dimension(*pi.base.bv);
56         mathed_draw_deco(pi, x + 1, y - 7, dim.wid - 2, 5, name_);
57         drawMarkers(pi, x, y);
58 }
59
60
61 void InsetMathXArrow::write(WriteStream & os) const
62 {
63         os << '\\' << name_;
64         if (cell(1).size())
65                 os << '[' << cell(1) << ']';
66         os << '{' << cell(0) << '}';
67 }
68
69
70 void InsetMathXArrow::normalize(NormalStream & os) const
71 {
72         os << "[xarrow " << name_ << ' ' <<  cell(0) << ' ' << cell(1) << ']';
73 }
74
75
76 void InsetMathXArrow::validate(LaTeXFeatures & features) const
77 {
78         features.require("amsmath");
79         InsetMathNest::validate(features);
80 }
81
82
83 } // namespace lyx