X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathKern.h;h=b063e06d5b1dd3129578653e73edd38fb46db227;hb=f6d505c1ee494ab0d30eebba86082c86a915e1df;hp=192b01e6a251effc0fad73539d675e02f6f65cb9;hpb=6c300f72a217722652dc27db9108e1050028979c;p=lyx.git diff --git a/src/mathed/InsetMathKern.h b/src/mathed/InsetMathKern.h index 192b01e6a2..b063e06d5b 100644 --- a/src/mathed/InsetMathKern.h +++ b/src/mathed/InsetMathKern.h @@ -4,7 +4,7 @@ * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * - * \author André Pönitz + * \author André Pönitz * * Full author contact details are available in file CREDITS. */ @@ -13,7 +13,7 @@ #define MATH_CHEATINSET_H #include "InsetMath.h" -#include "lyxlength.h" +#include "Length.h" namespace lyx { @@ -27,9 +27,9 @@ public: /// InsetMathKern(); /// - explicit InsetMathKern(LyXLength const & wid); + explicit InsetMathKern(Length const & wid); /// - explicit InsetMathKern(std::string const & wid); + explicit InsetMathKern(docstring const & wid); /// void metrics(MetricsInfo & mi, Dimension & dim) const; /// @@ -39,14 +39,16 @@ public: /// void normalize(NormalStream & ns) const; /// - int width() const; + void mathmlize(MathStream &) const { } + /// + void htmlize(HtmlStream &) const { } + /// + InsetCode lyxCode() const { return MATH_KERN_CODE; } + private: - virtual std::auto_ptr doClone() const; + virtual Inset * clone() const; /// width in em - LyXLength wid_; - /// in pixels - mutable int wid_pix_; - + Length wid_; };