X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathUnknown.h;h=9c8a81b19aac141578bdc4fa24223553d1ee0c4e;hb=98fb638d61d38df1443339de4e8ba58c7c81784a;hp=86573b42d1ecabc05ca5eca4c63fb74f3d58580a;hpb=e89625ef28143545a511cdabc67dee8b7be1b216;p=lyx.git diff --git a/src/mathed/InsetMathUnknown.h b/src/mathed/InsetMathUnknown.h index 86573b42d1..9c8a81b19a 100644 --- a/src/mathed/InsetMathUnknown.h +++ b/src/mathed/InsetMathUnknown.h @@ -12,23 +12,26 @@ #ifndef MATH_UNKNOWNINSET_H #define MATH_UNKNOWNINSET_H -#include "InsetMathDim.h" +#include "InsetMath.h" + + +namespace lyx { /// LaTeX names for objects that we really don't know -class InsetMathUnknown : public InsetMathDim { +class InsetMathUnknown : public InsetMath { public: /// - explicit InsetMathUnknown(std::string const & name, + explicit InsetMathUnknown(docstring const & name, bool final = true, bool black = false); /// - void metrics(MetricsInfo & mi, Dimension & dim) const; + bool metrics(MetricsInfo & mi, Dimension & dim) const; /// void draw(PainterInfo & pi, int x, int y) const; /// - void setName(std::string const & name); + void setName(docstring const & name); /// - std::string name() const; + docstring name() const; /// identifies UnknownInsets InsetMathUnknown const * asUnknownInset() const { return this; } /// identifies UnknownInsets @@ -41,20 +44,27 @@ public: /// void mathematica(MathematicaStream &) const; /// - void mathmlize(MathMLStream &) const; + void mathmlize(MathStream &) const; /// void octave(OctaveStream &) const; /// void finalize(); /// bool final() const; + /// + int kerning() const { return kerning_; } private: - virtual std::auto_ptr doClone() const; + virtual std::auto_ptr doClone() const; /// - std::string name_; + docstring name_; /// are we finished creating the name? bool final_; /// bool black_; + /// + mutable int kerning_; }; + + +} // namespace lyx #endif