]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathColor.h
cursor is no more damaging the background. L-shaped cursor is broken right now....
[lyx.git] / src / mathed / InsetMathColor.h
index 06ae60023d577f0b124259bd7c52c7b727d37d6b..71fada04738581adc3bfb7a913c56c9b6937561d 100644 (file)
@@ -16,6 +16,9 @@
 
 #include "InsetMathNest.h"
 
+
+namespace lyx {
+
 /// Change colours.
 
 class InsetMathColor : public InsetMathNest {
@@ -24,7 +27,7 @@ public:
        explicit InsetMathColor(bool oldstyle,
                LColor_color const & color = LColor::none);
        /// Create a color inset from LaTeX color name
-       explicit InsetMathColor(bool oldstyle, std::string const & color);
+       explicit InsetMathColor(bool oldstyle, docstring const & color);
        ///
        void metrics(MetricsInfo & mi, Dimension & dim) const;
        /// we write extra braces in any case...
@@ -39,7 +42,7 @@ public:
        /// write normalized content
        void normalize(NormalStream & ns) const;
        ///
-       void infoize(std::ostream & os) const;
+       void infoize(odocstream & os) const;
 private:
        virtual std::auto_ptr<InsetBase> doClone() const;
        /// width of '[' in current font
@@ -47,7 +50,10 @@ private:
        ///
        bool oldstyle_;
        /// Our color. Only valid LaTeX colors are allowed.
-       std::string color_;
+       docstring color_;
 };
 
+
+} // namespace lyx
+
 #endif