]> git.lyx.org Git - lyx.git/blob - src/mathed/math_xyarrowinset.C
remove unneeded LFUN_MATH_MACROARG
[lyx.git] / src / mathed / math_xyarrowinset.C
1 #include <config.h>
2
3 #ifdef __GNUG__
4 #pragma implementation
5 #endif
6
7 #include "math_xyarrowinset.h"
8 #include "math_xymatrixinset.h"
9 #include "math_mathmlstream.h"
10 #include "math_streamstr.h"
11 #include "math_support.h"
12 #include "Painter.h"
13 #include "debug.h"
14
15
16 using std::max;
17
18
19 MathXYArrowInset::MathXYArrowInset()
20         : MathNestInset(2)
21 {}
22
23
24 MathInset * MathXYArrowInset::clone() const
25 {
26         return new MathXYArrowInset(*this);
27 }
28
29
30 MathXYMatrixInset const * MathXYArrowInset::targetMatrix() const
31 {
32         return mi_.inset ? mi_.inset->asXYMatrixInset() : 0;
33 }
34
35
36 MathXArray const & MathXYArrowInset::targetCell() const
37 {
38         MathXYMatrixInset const * p = targetMatrix();
39         int x = 0;
40         int y = 0;
41         MathArray const & t = cell(0);
42         for (MathArray::const_iterator it = t.begin(); it != t.end(); ++it) {
43                 switch ((*it)->getChar()) {
44                         case 'l': --x; break;
45                         case 'r': ++x; break;
46                         case 'u': --y; break;
47                         case 'd': ++y; break;
48                 }
49         }
50         //lyxerr << "target: x: " << x << " y: " << y << "\n";
51         int n = mi_.idx + p->ncols() * y + x;
52         if (n < 0 || n >= int(p->nargs())) {
53                 lyxerr << "source: n: " << mi_.idx << "\n";
54                 lyxerr << "target: n: " << n << " out of range\n";
55                 n = 0;
56         }
57   return p->xcell(n);
58 }
59
60
61 MathXArray const & MathXYArrowInset::sourceCell() const
62 {
63   return targetMatrix()->xcell(mi_.idx);
64 }
65
66
67 void MathXYArrowInset::metrics(MathMetricsInfo const & mi) const
68 {
69         mi_ = mi;
70         MathNestInset::metrics(mi);
71
72         if (editing()) {
73                 int w    = mathed_string_width(LM_TC_TEXTRM, mi_, "target: ");
74                 width_   = w + max(xcell(0).width(), xcell(1).width());
75                 ascent_  = xcell(0).ascent();
76                 descent_ = xcell(0).descent() + xcell(1).height() + 10;
77         } else {
78                 width_   = 0;
79                 ascent_  = 0;
80                 descent_ = 0;
81                 //mathed_string_dim(LM_TC_TEXTRM, mi_, "X", ascent_, descent_, width_);
82         }
83 }
84
85
86 void MathXYArrowInset::draw(Painter & pain, int x, int y) const
87 {
88         metrics(mi_);
89
90         if (editing()) {
91
92                 int lasc;
93                 int ldes;
94                 int lwid;
95                 mathed_string_dim(LM_TC_TEXTRM, mi_, "target: ", lasc, ldes, lwid);
96
97                 xcell(0).draw(pain, x + lwid, y);
98                 drawStr(pain, LM_TC_TEXTRM, mi_, x + 3, y, "target");
99                 y += max(xcell(0).descent(), ldes) + 5;
100
101                 y += max(xcell(1).ascent(), lasc) + 5;
102                 xcell(1).draw(pain, x + lwid, y);
103                 drawStr(pain, LM_TC_TEXTRM, mi_, x + 3, y, "label");
104
105         } else {
106
107                 //drawStr(pain, LM_TC_TEXTRM, mi_, x, y, "X");
108                 MathXArray const & s = sourceCell();
109                 MathXArray const & t = targetCell();
110                 pain.line(s.xm(), s.ym(), t.xm(), t.ym(), LColor::math);
111                 xcell(1).draw(pain, (s.xm() + t.xm())/2, (s.ym() + t.ym())/2);
112                 
113         }
114 }
115
116
117 void MathXYArrowInset::write(WriteStream & os) const
118 {
119         os << "\\ar";
120         if (cell(0).size())
121                 os << "[" << cell(0) << "]";
122         if (cell(1).size())
123                 os << (up_ ? "^" : "_") << "{" << cell(1) << "}";
124         os << " ";
125 }
126
127
128 void MathXYArrowInset::normalize(NormalStream & os) const
129 {
130         os << "[xyarrow ";
131         MathNestInset::normalize(os);
132         os << "]";
133 }