X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathUnknown.h;h=9c8a81b19aac141578bdc4fa24223553d1ee0c4e;hb=2640b2122838b7025b8494fb378b8927fca75831;hp=106fae98ea4c370728b59f7bc895a9f4f29592a9;hpb=6c300f72a217722652dc27db9108e1050028979c;p=lyx.git diff --git a/src/mathed/InsetMathUnknown.h b/src/mathed/InsetMathUnknown.h index 106fae98ea..9c8a81b19a 100644 --- a/src/mathed/InsetMathUnknown.h +++ b/src/mathed/InsetMathUnknown.h @@ -12,26 +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 @@ -44,21 +44,25 @@ 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_; };