]> git.lyx.org Git - lyx.git/blob - src/mathed/math_charinset.C
write \mathrm{x}\mathrm{y} as \mathrm{xy} again
[lyx.git] / src / mathed / math_charinset.C
1 #ifdef __GNUG__
2 #pragma implementation
3 #endif
4
5 #include <cctype>
6
7 #include "math_charinset.h"
8 #include "LColor.h"
9 #include "Painter.h"
10 #include "support/LOstream.h"
11 #include "mathed/support.h"
12 #include "math_parser.h"
13 #include "debug.h"
14
15
16 MathCharInset::MathCharInset(char c)
17         : char_(c), code_(nativeCode(c))
18 {
19 //lyxerr << "creating char '" << char_ << "' with code " << int(code_) << endl;
20 }
21
22
23 MathCharInset::MathCharInset(char c, MathTextCodes t)
24         : char_(c), code_((t == LM_TC_MIN) ? nativeCode(c) : t)
25 {
26 //lyxerr << "creating char '" << char_ << "' with code " << int(code_) << endl;
27 }
28
29
30 MathTextCodes MathCharInset::nativeCode(char c) const
31 {
32         if (isalpha(c))
33                 return LM_TC_VAR;
34         //if (strchr("0123456789;:!|[]().,?+/-*<>=", c)
35         return LM_TC_CONST;
36 }
37
38
39 MathInset * MathCharInset::clone() const
40 {   
41         return new MathCharInset(*this);
42 }
43
44
45 int MathCharInset::ascent() const
46 {
47         return mathed_char_ascent(code_, mi_, char_);
48 }
49
50
51 int MathCharInset::descent() const
52 {
53         return mathed_char_descent(code_, mi_, char_);
54 }
55
56
57 int MathCharInset::width() const
58 {
59         return mathed_char_width(code_, mi_, char_);
60 }
61
62
63 void MathCharInset::metrics(MathMetricsInfo const & mi) const
64 {
65         mi_ = mi;
66 }
67
68
69 void MathCharInset::draw(Painter & pain, int x, int y) const
70
71         //lyxerr << "drawing '" << char_ << "' code: " << code_ << endl;
72         drawChar(pain, code_, mi_, x, y, char_);
73 }
74
75
76 void MathCharInset::writeHeader(std::ostream & os) const
77 {
78         if (math_font_name(code_))
79                 os << '\\' << math_font_name(code_) << '{';
80 }
81
82
83 void MathCharInset::writeTrailer(std::ostream & os) const
84 {
85         if (math_font_name(code_))
86                 os << '}';
87 }
88
89
90 void MathCharInset::writeRaw(std::ostream & os) const
91 {
92         os << char_;
93 }
94
95
96 void MathCharInset::write(MathWriteInfo & os) const
97 {
98         writeHeader(os.os);
99         writeRaw(os.os);
100         writeTrailer(os.os);
101 }
102
103
104 void MathCharInset::writeNormal(std::ostream & os) const
105 {
106         os << "[char " << char_ << " " << "mathalpha" << "]";
107 }
108
109
110 bool MathCharInset::isRelOp() const
111 {
112         return char_ == '=' || char_ == '<' || char_ == '>';
113 }
114
115
116 void MathCharInset::handleFont(MathTextCodes t)
117 {
118         code_ = (code_ == t) ? LM_TC_VAR : t;
119 }