]> git.lyx.org Git - lyx.git/blob - src/mathed/math_binaryopinset.C
to much stuff for my liking...
[lyx.git] / src / mathed / math_binaryopinset.C
1 #include <config.h>
2
3 #ifdef __GNUG__
4 #pragma implementation
5 #endif
6
7 #include "math_binaryopinset.h"
8 #include "Painter.h"
9 #include "support/LOstream.h"
10 #include "math_support.h"
11 #include "math_mathmlstream.h"
12
13
14 using std::max;
15
16
17 MathBinaryOpInset::MathBinaryOpInset(char op)
18         : MathNestInset(2), op_(op)
19 {}
20
21
22 MathInset * MathBinaryOpInset::clone() const
23 {   
24         return new MathBinaryOpInset(*this);
25 }
26
27
28 int MathBinaryOpInset::opwidth() const
29 {
30         return mathed_char_width(LM_TC_CONST, mi_, op_);
31 }
32
33
34 void MathBinaryOpInset::metrics(MathMetricsInfo const & mi) const
35 {
36         mi_ = mi;
37         xcell(0).metrics(mi);
38         xcell(1).metrics(mi);
39         width_   = xcell(0).width() + xcell(1).width() + opwidth();
40         ascent_  = max(xcell(0).ascent(),  xcell(1).ascent());
41         descent_ = max(xcell(0).descent(), xcell(1).descent());
42 }
43
44
45 void MathBinaryOpInset::draw(Painter & pain, int x, int y) const
46
47         xcell(0).draw(pain, x, y); 
48         drawChar(pain, LM_TC_CONST, mi_, x + xcell(0).width() , y, op_);
49         xcell(1).draw(pain, x + width() - xcell(1).width(), y); 
50 }
51
52
53 void MathBinaryOpInset::write(WriteStream & os) const
54 {
55         os << '{' << cell(0) << op_ << cell(1) << '}';
56 }
57
58
59 void MathBinaryOpInset::normalize(NormalStream & os) const
60 {
61         os << "[binop " << op_ << ' ' << cell(0) << ' ' << cell(1) << ']';
62 }