]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathColor.h
* InsetMathHull:
[lyx.git] / src / mathed / InsetMathColor.h
1 // -*- C++ -*-
2 /**
3  * \file InsetMathColor.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author André Pönitz
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef MATH_COLORINSET_H
13 #define MATH_COLORINSET_H
14
15 #include "InsetMathNest.h"
16
17
18 namespace lyx {
19
20 /// Change colours.
21
22 class InsetMathColor : public InsetMathNest {
23 public:
24         /// Create a color inset from LyX color number
25         explicit InsetMathColor(bool oldstyle,
26                 ColorCode color = Color_none);
27         /// Create a color inset from LaTeX color name
28         explicit InsetMathColor(bool oldstyle, docstring const & color);
29         ///
30         void metrics(MetricsInfo & mi, Dimension & dim) const;
31         /// we write extra braces in any case...
32         /// FIXME Why? Are they necessary if oldstyle_ == false?
33         bool extraBraces() const { return true; }
34         ///
35         void draw(PainterInfo & pi, int x, int y) const;
36         /// we need package color
37         void validate(LaTeXFeatures & features) const;
38         ///
39         void write(WriteStream & os) const;
40         /// write normalized content
41         void normalize(NormalStream & ns) const;
42         ///
43         void infoize(odocstream & os) const;
44 private:
45         virtual Inset * clone() const;
46         /// width of '[' in current font
47         mutable int w_;
48         ///
49         bool oldstyle_;
50         /// Our color. Only valid LaTeX colors are allowed.
51         docstring color_;
52 };
53
54
55 } // namespace lyx
56
57 #endif