]> git.lyx.org Git - lyx.git/blob - src/mathed/math_fontinset.C
replace (ascent, descent, width) triples by a structure 'dimension'
[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 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         dim_ = xcell(0).metrics(mi);
35         metricsMarkers();
36 }
37
38
39 void MathFontInset::draw(MathPainterInfo & pi, int x, int y) const
40 {
41         //lyxerr << "MathFontInset::draw\n";
42         //MathNestInset::draw(pi, x, y);
43         MathFontSetChanger dummy(pi.base, name_.c_str());
44         xcell(0).draw(pi, x + 1, y);
45         drawMarkers(pi, x, y);
46 }
47
48
49 void MathFontInset::metricsT(TextMetricsInfo const & mi) const
50 {
51         dim_ = xcell(0).metricsT(mi);
52 }
53
54
55 void MathFontInset::drawT(TextPainter & pain, int x, int y) const
56 {
57         //lyxerr << "drawing font code: " << code_ << '\n';
58         xcell(0).drawT(pain, x, y);
59 }
60
61
62 void MathFontInset::write(WriteStream & os) const
63 {
64         os << '\\' << name_ << '{' << cell(0) << '}';
65 }
66
67
68 void MathFontInset::normalize(NormalStream & os) const
69 {
70         os << "[font_ " << name_ << " " << cell(0) << "]";
71 }
72
73
74 void MathFontInset::validate(LaTeXFeatures & features) const
75 {
76         // Make sure amssymb is put in preamble if Blackboard Bold or
77         // Fraktur used:
78         if (name_ == "mathfrak" || name_ == "mathbb")
79                 features.require("amssymb");
80 }
81
82
83 void MathFontInset::infoize(std::ostream & os) const
84 {
85         os << "Font: " << name_;
86 }