]> git.lyx.org Git - lyx.git/blob - src/mathed/math_xarrowinset.C
more IU
[lyx.git] / src / mathed / math_xarrowinset.C
1 /**
2  * \file math_xarrowinset.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 "math_xarrowinset.h"
14 #include "math_data.h"
15 #include "math_mathmlstream.h"
16 #include "math_streamstr.h"
17 #include "math_support.h"
18
19
20 using std::string;
21 using std::auto_ptr;
22
23
24 MathXArrowInset::MathXArrowInset(string const & name)
25         : MathFracbaseInset(), name_(name)
26 {}
27
28
29 auto_ptr<InsetBase> MathXArrowInset::clone() const
30 {
31         return auto_ptr<InsetBase>(new MathXArrowInset(*this));
32 }
33
34
35 void MathXArrowInset::metrics(MetricsInfo & mi, Dimension & dim) const
36 {
37         ScriptChanger dummy(mi.base);
38         cell(0).metrics(mi);
39         cell(1).metrics(mi);
40         dim_.wid = std::max(cell(0).width(), cell(1).width()) + 10;
41         dim_.asc = cell(0).height() + 10;
42         dim_.des = cell(1).height();
43         dim = dim_;
44 }
45
46
47 void MathXArrowInset::draw(PainterInfo & pi, int x, int y) const
48 {
49         ScriptChanger dummy(pi.base);
50         cell(0).draw(pi, x + 5, y - 10);
51         cell(1).draw(pi, x + 5, y + cell(1).height());
52         mathed_draw_deco(pi, x + 1, y - 7, pi.width - 2, 5, name_);
53 }
54
55
56 void MathXArrowInset::write(WriteStream & os) const
57 {
58         os << '\\' << name_;
59         if (cell(1).size())
60                 os << '[' << cell(1) << ']';
61         os << '{' << cell(0) << '}';
62 }
63
64
65 void MathXArrowInset::normalize(NormalStream & os) const
66 {
67         os << "[xarrow " << name_ << ' ' <<  cell(0) << ' ' << cell(1) << ']';
68 }