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