]> git.lyx.org Git - lyx.git/blob - src/mathed/math_fontinset.C
fonts as insets
[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
15
16
17
18 MathFontInset::MathFontInset(string const & name)
19         : MathNestInset(1), name_(name)
20 {
21         lock(true);
22 }
23
24
25 MathInset * MathFontInset::clone() const
26 {
27         return new MathFontInset(*this);
28 }
29
30
31 void MathFontInset::metrics(MathMetricsInfo & mi) const
32 {
33         MathFontSetChanger dummy(mi.base, name_.c_str());
34         xcell(0).metrics(mi);
35         width_   = xcell(0).width();
36         ascent_  = xcell(0).ascent();
37         descent_ = xcell(0).descent();
38 }
39
40
41 void MathFontInset::draw(MathPainterInfo & pi, int x, int y) const
42 {
43         //lyxerr << "MathFontInset::draw\n";
44         MathFontSetChanger dummy(pi.base, name_.c_str());
45         xcell(0).draw(pi, x, y);
46 }
47
48
49 void MathFontInset::metricsT(TextMetricsInfo const & mi) const
50 {
51         xcell(0).metricsT(mi);
52         width_   = xcell(0).width();
53         ascent_  = xcell(0).ascent();
54         descent_ = xcell(0).descent();
55 }
56
57
58 void MathFontInset::drawT(TextPainter & pain, int x, int y) const
59 {
60         //lyxerr << "drawing font code: " << code_ << '\n';
61         xcell(0).drawT(pain, x, y);
62 }
63
64
65 void MathFontInset::write(WriteStream & os) const
66 {
67         os << '\\' << name_ << '{' << cell(0) << '}';
68 }
69
70
71 void MathFontInset::normalize(NormalStream & os) const
72 {
73         os << "[font_ " << name_ << " " << cell(0) << "]";
74 }
75
76
77 void MathFontInset::validate(LaTeXFeatures & features) const
78 {
79         // Make sure amssymb is put in preamble if Blackboard Bold or
80         // Fraktur used:
81         if (name_ == "mathfrak" || name_ == "mathbb")
82                 features.require("amssymb");
83 }
84
85
86 void MathFontInset::infoize(std::ostream & os) const
87 {
88         os << "Font: " << name_;
89 }