]> git.lyx.org Git - lyx.git/blob - src/mathed/math_fontinset.C
first shot at preview. It crashes. Don't know why. To see it work a bit, change
[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         drawMarkers(pi, x, y);
49 }
50
51
52 void MathFontInset::metricsT(TextMetricsInfo const & mi) const
53 {
54         xcell(0).metricsT(mi);
55         width_   = xcell(0).width();
56         ascent_  = xcell(0).ascent();
57         descent_ = xcell(0).descent();
58 }
59
60
61 void MathFontInset::drawT(TextPainter & pain, int x, int y) const
62 {
63         //lyxerr << "drawing font code: " << code_ << '\n';
64         xcell(0).drawT(pain, x, y);
65 }
66
67
68 void MathFontInset::write(WriteStream & os) const
69 {
70         os << '\\' << name_ << '{' << cell(0) << '}';
71 }
72
73
74 void MathFontInset::normalize(NormalStream & os) const
75 {
76         os << "[font_ " << name_ << " " << cell(0) << "]";
77 }
78
79
80 void MathFontInset::validate(LaTeXFeatures & features) const
81 {
82         // Make sure amssymb is put in preamble if Blackboard Bold or
83         // Fraktur used:
84         if (name_ == "mathfrak" || name_ == "mathbb")
85                 features.require("amssymb");
86 }
87
88
89 void MathFontInset::infoize(std::ostream & os) const
90 {
91         os << "Font: " << name_;
92 }