A bit more re-organization.
[lyx.git] / src / mathed / InsetMathColor.cpp
blob7d005621e6aeee9f42657017019bb7517cbd6495
1 /**
2 * \file InsetMathColor.cpp
3 * This file is part of LyX, the document processor.
4 * Licence details can be found in the file COPYING.
6 * \author André Pönitz
8 * Full author contact details are available in file CREDITS.
9 */
11 #include <config.h>
13 #include "ColorSet.h"
15 #include "InsetMathColor.h"
16 #include "LaTeXFeatures.h"
17 #include "MathData.h"
18 #include "MathStream.h"
19 #include "MathSupport.h"
20 #include "MetricsInfo.h"
22 #include <ostream>
25 namespace lyx {
27 InsetMathColor::InsetMathColor(Buffer * buf, bool oldstyle, ColorCode color)
28 : InsetMathNest(buf, 1), oldstyle_(oldstyle),
29 color_(from_utf8(lcolor.getLaTeXName(color)))
33 InsetMathColor::InsetMathColor(Buffer * buf, bool oldstyle,
34 docstring const & color)
35 : InsetMathNest(buf, 1), oldstyle_(oldstyle), color_(color)
39 Inset * InsetMathColor::clone() const
41 return new InsetMathColor(*this);
45 void InsetMathColor::metrics(MetricsInfo & mi, Dimension & dim) const
47 cell(0).metrics(mi, dim);
48 metricsMarkers(dim);
52 void InsetMathColor::draw(PainterInfo & pi, int x, int y) const
54 ColorCode origcol = pi.base.font.color();
55 pi.base.font.setColor(lcolor.getFromLaTeXName(to_utf8(color_)));
56 cell(0).draw(pi, x + 1, y);
57 pi.base.font.setColor(origcol);
58 drawMarkers(pi, x, y);
59 setPosCache(pi, x, y);
63 /// color "none" (reset to default) needs special treatment
64 static bool normalcolor(docstring const & color)
66 return color == "none";
70 void InsetMathColor::validate(LaTeXFeatures & features) const
72 InsetMathNest::validate(features);
73 if (!normalcolor(color_))
74 features.require("color");
78 void InsetMathColor::write(WriteStream & os) const
80 if (normalcolor(color_))
81 // reset to default color inside another color inset
82 os << "{\\normalcolor " << cell(0) << '}';
83 else if (oldstyle_)
84 os << "{\\color{" << color_ << '}' << cell(0) << '}';
85 else
86 os << "\\textcolor{" << color_ << "}{" << cell(0) << '}';
90 void InsetMathColor::normalize(NormalStream & os) const
92 os << "[color " << color_ << ' ' << cell(0) << ']';
96 void InsetMathColor::infoize(odocstream & os) const
98 os << "Color: " << color_;
102 } // namespace lyx