]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathDelim.cpp
* moved atom_dim_ to coord cache in the buffer view to make it dependent on the buffe...
[lyx.git] / src / mathed / InsetMathDelim.cpp
1 /**
2  * \file InsetMathDelim.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Alejandro Aguilar Sierra
7  * \author André Pönitz
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "InsetMathDelim.h"
15
16 #include "MathData.h"
17 #include "MathStream.h"
18 #include "MathSupport.h"
19 #include "MetricsInfo.h"
20
21 #include "support/docstring.h"
22
23 #include "frontends/FontMetrics.h"
24
25 using namespace std;
26
27 namespace lyx {
28
29 static docstring convertDelimToLatexName(docstring const & name)
30 {
31         if (name.size() == 1) {
32                 char_type const c = name[0];
33                 if (c == '<' || c == '(' || c == '[' || c == '.'
34                     || c == '>' || c == ')' || c == ']' || c == '/' || c == '|')
35                         return name;
36         }
37         return '\\' + name + ' ';
38 }
39
40
41 InsetMathDelim::InsetMathDelim(docstring const & l, docstring const & r)
42         : InsetMathNest(1), left_(l), right_(r)
43 {}
44
45
46 InsetMathDelim::InsetMathDelim
47                 (docstring const & l, docstring const & r, MathData const & ar)
48         : InsetMathNest(1), left_(l), right_(r)
49 {
50         cell(0) = ar;
51 }
52
53
54 Inset * InsetMathDelim::clone() const
55 {
56         return new InsetMathDelim(*this);
57 }
58
59
60 void InsetMathDelim::write(WriteStream & os) const
61 {
62         os << "\\left" << convertDelimToLatexName(left_) << cell(0)
63            << "\\right" << convertDelimToLatexName(right_);
64 }
65
66
67 void InsetMathDelim::normalize(NormalStream & os) const
68 {
69         os << "[delim " << convertDelimToLatexName(left_) << ' '
70            << convertDelimToLatexName(right_) << ' ' << cell(0) << ']';
71 }
72
73
74 void InsetMathDelim::metrics(MetricsInfo & mi, Dimension & dim) const
75 {
76         Dimension dim0;
77         cell(0).metrics(mi, dim0);
78         Dimension t = theFontMetrics(mi.base.font).dimension('I');
79         int h0 = (t.asc + t.des) / 2;
80         int a0 = max(dim0.asc, t.asc)   - h0;
81         int d0 = max(dim0.des, t.des)  + h0;
82         dw_ = dim0.height() / 5;
83         if (dw_ > 8)
84                 dw_ = 8;
85         if (dw_ < 4)
86                 dw_ = 4;
87         dim.wid = dim0.width() + 2 * dw_ + 8;
88         dim.asc = max(a0, d0) + h0;
89         dim.des = max(a0, d0) - h0;
90 }
91
92
93 void InsetMathDelim::draw(PainterInfo & pi, int x, int y) const
94 {
95         Dimension const dim = dimension(*pi.base.bv);
96         int const b = y - dim.asc;
97         cell(0).draw(pi, x + dw_ + 4, y);
98         mathed_draw_deco(pi, x + 4, b, dw_, dim.height(), left_);
99         mathed_draw_deco(pi, x + dim.width() - dw_ - 4,
100                 b, dw_, dim.height(), right_);
101         setPosCache(pi, x, y);
102 }
103
104
105 bool InsetMathDelim::isParenthesis() const
106 {
107         return left_ == "(" && right_ == ")";
108 }
109
110
111 bool InsetMathDelim::isBrackets() const
112 {
113         return left_ == "[" && right_ == "]";
114 }
115
116
117 bool InsetMathDelim::isAbs() const
118 {
119         return left_ == "|" && right_ == "|";
120 }
121
122
123 void InsetMathDelim::maple(MapleStream & os) const
124 {
125         if (isAbs()) {
126                 if (cell(0).size() == 1 && cell(0).front()->asMatrixInset())
127                         os << "linalg[det](" << cell(0) << ')';
128                 else
129                         os << "abs(" << cell(0) << ')';
130         }
131         else
132                 os << left_ << cell(0) << right_;
133 }
134
135
136 void InsetMathDelim::maxima(MaximaStream & os) const
137 {
138         if (isAbs()) {
139                 if (cell(0).size() == 1 && cell(0).front()->asMatrixInset())
140                         os << "determinant(" << cell(0) << ')';
141                 else
142                         os << "abs(" << cell(0) << ')';
143         }
144         else
145                 os << left_ << cell(0) << right_;
146 }
147
148
149 void InsetMathDelim::mathematica(MathematicaStream & os) const
150 {
151         if (isAbs()) {
152                 if (cell(0).size() == 1 && cell(0).front()->asMatrixInset())
153                         os << "Det" << cell(0) << ']';
154                 else
155                         os << "Abs[" << cell(0) << ']';
156         }
157         else
158                 os << left_ << cell(0) << right_;
159 }
160
161
162 void InsetMathDelim::mathmlize(MathStream & os) const
163 {
164         os << "<fenced open=\"" << left_ << "\" close=\""
165                 << right_ << "\">" << cell(0) << "</fenced>";
166 }
167
168
169 void InsetMathDelim::octave(OctaveStream & os) const
170 {
171         if (isAbs())
172                 os << "det(" << cell(0) << ')';
173         else
174                 os << left_ << cell(0) << right_;
175 }
176
177
178 } // namespace lyx