]> git.lyx.org Git - lyx.git/blob - src/mathed/math_biginset.C
Standardise the header blurb in mathed.
[lyx.git] / src / mathed / math_biginset.C
1 /**
2  * \file math_biginset.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_biginset.h"
14 #include "math_support.h"
15 #include "math_parser.h"
16 #include "math_mathmlstream.h"
17 #include "math_streamstr.h"
18
19 using std::auto_ptr;
20
21
22 MathBigInset::MathBigInset(string const & name, string const & delim)
23         : name_(name), delim_(delim)
24 {}
25
26
27 auto_ptr<InsetBase> MathBigInset::clone() const
28 {
29         return auto_ptr<InsetBase>(new MathBigInset(*this));
30 }
31
32
33 MathBigInset::size_type MathBigInset::size() const
34 {
35         return name_.size() - 4;
36 }
37
38
39 double MathBigInset::increase() const
40 {
41         switch (size()) {
42                 case 1:  return 0.2;
43                 case 2:  return 0.44;
44                 case 3:  return 0.7;
45                 default: return 0.0;
46         }
47 }
48
49
50 void MathBigInset::metrics(MetricsInfo & mi, Dimension & dim) const
51 {
52         double const h = mathed_char_ascent(mi.base.font, 'I');
53         double const f = increase();
54         dim_.wid = 6;
55         dim_.asc = int(h + f * h);
56         dim_.des = int(f * h);
57         dim = dim_;
58 }
59
60
61 void MathBigInset::draw(PainterInfo & pi, int x, int y) const
62 {
63         mathed_draw_deco(pi, x + 1, y - dim_.ascent(), 4, dim_.height(), delim_);
64 }
65
66
67 void MathBigInset::write(WriteStream & os) const
68 {
69         os << '\\' << name_ << ' ' << delim_;
70 }
71
72
73 void MathBigInset::normalize(NormalStream & os) const
74 {
75         os << '[' << name_ << ' ' <<  delim_ << ']';
76 }