]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathBig.C
This commit fixes a crash when accessing a math inset. This was due to an invalid...
[lyx.git] / src / mathed / InsetMathBig.C
1 /**
2  * \file InsetMathBig.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 "InsetMathBig.h"
14 #include "MathSupport.h"
15 #include "MathMLStream.h"
16 #include "MathStream.h"
17
18 #include "frontends/FontMetrics.h"
19
20 #include "support/lstrings.h"
21
22
23 using std::string;
24 using std::auto_ptr;
25
26
27 InsetMathBig::InsetMathBig(string const & name, string const & delim)
28         : name_(name), delim_(delim)
29 {}
30
31
32 string InsetMathBig::name() const
33 {
34         return name_;
35 }
36
37
38 auto_ptr<InsetBase> InsetMathBig::doClone() const
39 {
40         return auto_ptr<InsetBase>(new InsetMathBig(*this));
41 }
42
43
44 InsetMathBig::size_type InsetMathBig::size() const
45 {
46         // order: big Big bigg Bigg biggg Biggg
47         //        0   1   2    3    4     5
48         return name_[0] == 'B' ?
49                 2 * (name_.size() - 4) + 1:
50                 2 * (name_.size() - 4);
51 }
52
53
54 double InsetMathBig::increase() const
55 {
56         // The formula used in amsmath.sty is
57         // 1.2 * (1.0 + size() * 0.5) - 1.0.
58         // We use a smaller step and a bigger offset because our base size
59         // is different.
60         return (size() + 1) * 0.3;
61 }
62
63
64 void InsetMathBig::metrics(MetricsInfo & mi, Dimension & dim) const
65 {
66         double const h = theFontMetrics(mi.base.font).ascent('I');
67         double const f = increase();
68         dim_.wid = 6;
69         dim_.asc = int(h + f * h);
70         dim_.des = int(f * h);
71         dim = dim_;
72 }
73
74
75 void InsetMathBig::draw(PainterInfo & pi, int x, int y) const
76 {
77         // mathed_draw_deco does not use the leading backslash, so remove it.
78         // Replace \| by \Vert (equivalent in LaTeX), since mathed_draw_deco
79         // would treat it as |.
80         string const delim = (delim_ == "\\|") ?
81                 "Vert" :
82                 lyx::support::ltrim(delim_, "\\");
83         mathed_draw_deco(pi, x + 1, y - dim_.ascent(), 4, dim_.height(),
84                          delim);
85         setPosCache(pi, x, y);
86 }
87
88
89 void InsetMathBig::write(WriteStream & os) const
90 {
91         os << '\\' << name_ << ' ' << delim_;
92         if (delim_[0] == '\\')
93                 os.pendingSpace(true);
94 }
95
96
97 void InsetMathBig::normalize(NormalStream & os) const
98 {
99         os << '[' << name_ << ' ' <<  delim_ << ']';
100 }
101
102
103 void InsetMathBig::infoize2(std::ostream & os) const
104 {
105         os << name_;
106 }
107
108
109 bool InsetMathBig::isBigInsetDelim(string const & delim)
110 {
111         // mathed_draw_deco must handle these
112         static char const * const delimiters[] = {
113                 "(", ")", "\\{", "\\}", "\\lbrace", "\\rbrace", "[", "]",
114                 "|", "/", "\\|", "\\vert", "\\Vert", "'", "\\backslash",
115                 "\\langle", "\\lceil", "\\lfloor",
116                 "\\rangle", "\\rceil", "\\rfloor",
117                 "\\downarrow", "\\Downarrow",
118                 "\\uparrow", "\\Uparrow",
119                 "\\updownarrow", "\\Updownarrow", ""
120         };
121         return (lyx::support::findToken(delimiters, delim) >= 0);
122 }