]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathColor.h
Fix bug #11007
[lyx.git] / src / mathed / InsetMathColor.h
index fad0e658d1cb00447b2907443ea708cef6f974e2..d3098d95cea55c6fa5fc21fd1615d929a2957a88 100644 (file)
@@ -14,7 +14,6 @@
 
 #include "InsetMathNest.h"
 
-#include "support/docstream.h"
 
 namespace lyx {
 
@@ -23,10 +22,9 @@ namespace lyx {
 class InsetMathColor : public InsetMathNest {
 public:
        /// Create a color inset from LyX color number
-       explicit InsetMathColor(bool oldstyle,
-               ColorCode color = Color_none);
+       InsetMathColor(Buffer * buf, bool oldstyle, ColorCode color = Color_none);
        /// Create a color inset from LaTeX color name
-       explicit InsetMathColor(bool oldstyle, docstring const & color);
+       InsetMathColor(Buffer * buf, bool oldstyle, docstring const & color);
        ///
        void metrics(MetricsInfo & mi, Dimension & dim) const;
        /// we write extra braces in any case...
@@ -36,20 +34,29 @@ public:
        void draw(PainterInfo & pi, int x, int y) const;
        /// we need package color
        void validate(LaTeXFeatures & features) const;
+       /// we inherit the mode
+       mode_type currentMode() const override { return current_mode_; }
        ///
        void write(WriteStream & os) const;
+       /// FIXME XHTML For now, we do nothing with color.
+       void mathmlize(MathStream &) const {}
+       /// FIXME XHTML For now, we do nothing with color.
+       void htmlize(HtmlStream &) const {}
+       ///
        /// write normalized content
        void normalize(NormalStream & ns) const;
        ///
        void infoize(odocstream & os) const;
+       ///
+       InsetCode lyxCode() const { return MATH_COLOR_CODE; }
 private:
        virtual Inset * clone() const;
-       /// width of '[' in current font
-       mutable int w_;
        ///
        bool oldstyle_;
        /// Our color. Only valid LaTeX colors are allowed.
        docstring color_;
+       /// the inherited mode
+       mutable mode_type current_mode_;
 };