]> git.lyx.org Git - lyx.git/blob - src/mathed/math_charinset.C
fix display "'" vs "\ni"
[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         return LM_TC_CONST;
35 }
36
37
38 MathInset * MathCharInset::clone() const
39 {   
40         return new MathCharInset(*this);
41 }
42
43
44 int MathCharInset::ascent() const
45 {
46         return mathed_char_ascent(code_, size(), char_);
47 }
48
49
50 int MathCharInset::descent() const
51 {
52         return mathed_char_descent(code_, size(), char_);
53 }
54
55
56 int MathCharInset::width() const
57 {
58         return mathed_char_width(code_, size(), char_);
59 }
60
61
62 void MathCharInset::metrics(MathStyles st) const
63 {
64         size_ = st;
65 }
66
67
68 void MathCharInset::draw(Painter & pain, int x, int y) const
69
70         xo(x);
71         yo(y);
72         //lyxerr << "drawing '" << char_ << "' code: " << code_ << endl;
73         drawChar(pain, code_, size_, x, y, char_);
74 }
75
76
77 void MathCharInset::writeHeader(std::ostream & os) const
78 {
79         if (code_ >= LM_TC_RM && code_ <= LM_TC_TEXTRM) 
80                 os << '\\' << math_font_name[code_ - LM_TC_RM] << '{';
81 }
82
83
84 void MathCharInset::writeTrailer(std::ostream & os) const
85 {
86         if (code_ >= LM_TC_RM && code_ <= LM_TC_TEXTRM)
87                 os << '}';
88 }
89
90
91 void MathCharInset::writeRaw(std::ostream & os) const
92 {
93         os << char_;
94 }
95
96
97 void MathCharInset::write(std::ostream & os, bool) const
98 {
99         writeHeader(os);
100         writeRaw(os);
101         writeTrailer(os);
102 }
103
104
105 void MathCharInset::writeNormal(std::ostream & os) const
106 {
107         os << char_;
108 }
109
110
111 bool MathCharInset::isRelOp() const
112 {
113         return char_ == '=' || char_ == '<' || char_ == '>';
114 }
115
116
117 void MathCharInset::handleFont(MathTextCodes t)
118 {
119         code_ = (code_ == t) ? LM_TC_VAR : t;
120 }