]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathColor.h
Move <algorithm> from DocIterator.h
[lyx.git] / src / mathed / InsetMathColor.h
index 848a46fc7c53bdca9626699b191d5a091a2245bf..55a02c259641f8c478de225302721fee195ad08f 100644 (file)
@@ -14,7 +14,6 @@
 
 #include "InsetMathNest.h"
 
-#include "support/docstream.h"
 
 namespace lyx {
 
@@ -27,26 +26,29 @@ public:
        /// Create a color inset from LaTeX color name
        InsetMathColor(Buffer * buf, bool oldstyle, docstring const & color);
        ///
-       void metrics(MetricsInfo & mi, Dimension & dim) const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const override;
        /// we write extra braces in any case...
        /// FIXME Why? Are they necessary if oldstyle_ == false?
-       bool extraBraces() const { return true; }
+       bool extraBraces() const override { return true; }
        ///
-       void draw(PainterInfo & pi, int x, int y) const;
+       void draw(PainterInfo & pi, int x, int y) const override;
        /// we need package color
-       void validate(LaTeXFeatures & features) const;
+       void validate(LaTeXFeatures & features) const override;
+       ///
+       void write(WriteStream & os) const override;
+       /// FIXME XHTML For now, we do nothing with color.
+       void mathmlize(MathStream &) const override {}
+       /// FIXME XHTML For now, we do nothing with color.
+       void htmlize(HtmlStream &) const override {}
        ///
-       void write(WriteStream & os) const;
        /// write normalized content
-       void normalize(NormalStream & ns) const;
+       void normalize(NormalStream & ns) const override;
        ///
-       void infoize(odocstream & os) const;
+       void infoize(odocstream & os) const override;
        ///
-       InsetCode lyxCode() const { return MATH_COLOR_CODE; }
+       InsetCode lyxCode() const override { return MATH_COLOR_CODE; }
 private:
-       virtual Inset * clone() const;
-       /// width of '[' in current font
-       mutable int w_;
+       Inset * clone() const override;
        ///
        bool oldstyle_;
        /// Our color. Only valid LaTeX colors are allowed.