]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathXArrow.C
cursor is no more damaging the background. L-shaped cursor is broken right now....
[lyx.git] / src / mathed / InsetMathXArrow.C
1 /**
2  * \file InsetMathXArrow.C
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 using std::string;
25 using std::auto_ptr;
26
27
28 InsetMathXArrow::InsetMathXArrow(docstring const & name)
29         : InsetMathFracBase(), name_(name)
30 {}
31
32
33 auto_ptr<InsetBase> InsetMathXArrow::doClone() const
34 {
35         return auto_ptr<InsetBase>(new InsetMathXArrow(*this));
36 }
37
38
39 void InsetMathXArrow::metrics(MetricsInfo & mi, Dimension & dim) const
40 {
41         ScriptChanger dummy(mi.base);
42         cell(0).metrics(mi);
43         cell(1).metrics(mi);
44         dim.wid = std::max(cell(0).width(), cell(1).width()) + 10;
45         dim.asc = cell(0).height() + 10;
46         dim.des = cell(1).height();
47         metricsMarkers(dim);
48         dim_ = dim;
49 }
50
51
52 void InsetMathXArrow::draw(PainterInfo & pi, int x, int y) const
53 {
54         ScriptChanger dummy(pi.base);
55         cell(0).draw(pi, x + 5, y - 10);
56         cell(1).draw(pi, x + 5, y + cell(1).height());
57         mathed_draw_deco(pi, x + 1, y - 7, width() - 2, 5, name_);
58         drawMarkers(pi, x, y);
59 }
60
61
62 void InsetMathXArrow::write(WriteStream & os) const
63 {
64         os << '\\' << name_;
65         if (cell(1).size())
66                 os << '[' << cell(1) << ']';
67         os << '{' << cell(0) << '}';
68 }
69
70
71 void InsetMathXArrow::normalize(NormalStream & os) const
72 {
73         os << "[xarrow " << name_ << ' ' <<  cell(0) << ' ' << cell(1) << ']';
74 }
75
76
77 void InsetMathXArrow::validate(LaTeXFeatures & features) const
78 {
79         features.require("amsmath");
80         InsetMathNest::validate(features);
81 }
82
83
84 } // namespace lyx