]> git.lyx.org Git - lyx.git/blob - src/mathed/math_fontinset.C
*duck*
[lyx.git] / src / mathed / math_fontinset.C
1 #include <config.h>
2
3 #ifdef __GNUG__
4 #pragma implementation
5 #endif
6
7 #include "math_fontinset.h"
8 #include "debug.h"
9 #include "math_mathmlstream.h"
10 #include "math_streamstr.h"
11 #include "math_support.h"
12 #include "LaTeXFeatures.h"
13 #include "textpainter.h"
14 #include "frontends/Painter.h"
15
16
17
18
19 MathFontInset::MathFontInset(string const & name)
20         : MathNestInset(1), name_(name)
21 {
22         //lock(true);
23 }
24
25
26 MathInset * MathFontInset::clone() const
27 {
28         return new MathFontInset(*this);
29 }
30
31
32 void MathFontInset::metrics(MathMetricsInfo & mi) const
33 {
34         MathFontSetChanger dummy(mi.base, name_.c_str());
35         xcell(0).metrics(mi);
36         ascent_  = xcell(0).ascent();
37         descent_ = xcell(0).descent() + 2;
38         width_   = xcell(0).width()   + 2;
39 }
40
41
42 void MathFontInset::draw(MathPainterInfo & pi, int x, int y) const
43 {
44         //lyxerr << "MathFontInset::draw\n";
45         //MathNestInset::draw(pi, x, y);
46         MathFontSetChanger dummy(pi.base, name_.c_str());
47         xcell(0).draw(pi, x + 1, y);
48         if (editing()) {
49                 int t = x + width() - 1;
50                 int d = y + descent();
51                 pi.pain.line(x, d - 3, x, d, LColor::mathframe); 
52                 pi.pain.line(t, d - 3, t, d, LColor::mathframe); 
53                 pi.pain.line(x, d, x + 3, d, LColor::mathframe); 
54                 pi.pain.line(t - 2, d, t, d, LColor::mathframe); 
55         }
56 }
57
58
59 void MathFontInset::metricsT(TextMetricsInfo const & mi) const
60 {
61         xcell(0).metricsT(mi);
62         width_   = xcell(0).width();
63         ascent_  = xcell(0).ascent();
64         descent_ = xcell(0).descent();
65 }
66
67
68 void MathFontInset::drawT(TextPainter & pain, int x, int y) const
69 {
70         //lyxerr << "drawing font code: " << code_ << '\n';
71         xcell(0).drawT(pain, x, y);
72 }
73
74
75 void MathFontInset::write(WriteStream & os) const
76 {
77         os << '\\' << name_ << '{' << cell(0) << '}';
78 }
79
80
81 void MathFontInset::normalize(NormalStream & os) const
82 {
83         os << "[font_ " << name_ << " " << cell(0) << "]";
84 }
85
86
87 void MathFontInset::validate(LaTeXFeatures & features) const
88 {
89         // Make sure amssymb is put in preamble if Blackboard Bold or
90         // Fraktur used:
91         if (name_ == "mathfrak" || name_ == "mathbb")
92                 features.require("amssymb");
93 }
94
95
96 void MathFontInset::infoize(std::ostream & os) const
97 {
98         os << "Font: " << name_;
99 }