]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathChar.C
Almost fix 'make check'. The only remaining problem is an undefined
[lyx.git] / src / mathed / InsetMathChar.C
1 /**
2  * \file InsetMathChar.C
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 "InsetMathChar.h"
15 #include "MathSupport.h"
16 #include "MathStream.h"
17
18 #include "debug.h"
19 #include "dimension.h"
20 #include "support/lstrings.h"
21 #include "TextPainter.h"
22
23 #include "frontends/FontMetrics.h"
24
25
26 namespace lyx {
27
28 using std::auto_ptr;
29
30 extern bool has_math_fonts;
31
32 namespace {
33
34         bool isBinaryOp(char_type c)
35         {
36                 return support::contains("+-<>=/*", static_cast<char>(c));
37         }
38
39
40         bool slanted(char_type c)
41         {
42                 return ('a' <= c && c <= 'z') || ('A' <= c && c <= 'Z');
43         }
44
45 }
46
47
48 InsetMathChar::InsetMathChar(char_type c)
49         : char_(c)
50 {}
51
52
53
54 auto_ptr<InsetBase> InsetMathChar::doClone() const
55 {
56         return auto_ptr<InsetBase>(new InsetMathChar(*this));
57 }
58
59
60 bool InsetMathChar::metrics(MetricsInfo & mi, Dimension & dim) const
61 {
62 #if 1
63         if (char_ == '=' && has_math_fonts) {
64                 FontSetChanger dummy(mi.base, "cmr");
65                 dim = theFontMetrics(mi.base.font).dimension(char_);
66         } else if ((char_ == '>' || char_ == '<') && has_math_fonts) {
67                 FontSetChanger dummy(mi.base, "cmm");
68                 dim = theFontMetrics(mi.base.font).dimension(char_);
69         } else if (!slanted(char_) && mi.base.fontname == "mathnormal") {
70                 ShapeChanger dummy(mi.base.font, LyXFont::UP_SHAPE);
71                 dim = theFontMetrics(mi.base.font).dimension(char_);
72         } else {
73                 dim = theFontMetrics(mi.base.font).dimension(char_);
74         }
75         int const em = mathed_char_width(mi.base.font, 'M');
76         if (isBinaryOp(char_))
77                 dim.wid += static_cast<int>(0.5*em+0.5);
78         else if (char_ == '\'')
79                 dim.wid += static_cast<int>(0.1667*em+0.5);
80 #else
81         whichFont(font_, code_, mi);
82         dim = theFontMetrics(font_).dimension(char_);
83         if (isBinaryOp(char_, code_))
84                 width_ += 2 * theFontMetrics(font_).width(' ');
85         lyxerr << "InsetMathChar::metrics: " << dim << endl;
86 #endif
87         width_ = dim.wid;
88         if (dim_ == dim)
89                 return false;
90         dim_ = dim;
91         return true;
92 }
93
94
95 void InsetMathChar::draw(PainterInfo & pi, int x, int y) const
96 {
97         //lyxerr << "drawing '" << char_ << "' font: " << pi.base.fontname << endl;
98         int const em = mathed_char_width(pi.base.font, 'M');
99         if (isBinaryOp(char_))
100                 x += static_cast<int>(0.25*em+0.5);
101         else if (char_ == '\'')
102                 x += static_cast<int>(0.0833*em+0.5);
103 #if 1
104         if (char_ == '=' && has_math_fonts) {
105                 FontSetChanger dummy(pi.base, "cmr");
106                 pi.draw(x, y, char_);
107         } else if ((char_ == '>' || char_ == '<') && has_math_fonts) {
108                 FontSetChanger dummy(pi.base, "cmm");
109                 pi.draw(x, y, char_);
110         } else if (!slanted(char_) && pi.base.fontname == "mathnormal") {
111                 ShapeChanger dummy(pi.base.font, LyXFont::UP_SHAPE);
112                 pi.draw(x, y, char_);
113         } else {
114                 pi.draw(x, y, char_);
115         }
116 #else
117         drawChar(pain, font_, x, y, char_);
118 #endif
119 }
120
121
122 void InsetMathChar::metricsT(TextMetricsInfo const &, Dimension & dim) const
123 {
124         dim.wid = 1;
125         dim.asc = 1;
126         dim.des = 0;
127 }
128
129
130 void InsetMathChar::drawT(TextPainter & pain, int x, int y) const
131 {
132         //lyxerr << "drawing text '" << char_ << "' code: " << code_ << endl;
133         pain.draw(x, y, char_);
134 }
135
136
137 void InsetMathChar::write(WriteStream & os) const
138 {
139         os.os().put(char_);
140 }
141
142
143 void InsetMathChar::normalize(NormalStream & os) const
144 {
145         os << "[char ";
146         os.os().put(char_);
147         os << " mathalpha]";
148 }
149
150
151 void InsetMathChar::octave(OctaveStream & os) const
152 {
153         os.os().put(char_);
154 }
155
156
157 void InsetMathChar::mathmlize(MathStream & ms) const
158 {
159         switch (char_) {
160                 case '<': ms << "&lt;"; break;
161                 case '>': ms << "&gt;"; break;
162                 case '&': ms << "&amp;"; break;
163                 default: ms.os().put(char_); break;
164         }
165 }
166
167
168 bool InsetMathChar::isRelOp() const
169 {
170         return char_ == '=' || char_ == '<' || char_ == '>';
171 }
172
173
174 } // namespace lyx