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