X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_kerninset.h;h=48d50638b817ea07a3ef28e8f410b66bb4313c50;hb=701b99ecd70ac472aa53c8b2317af44def4f9670;hp=37adf09da2486c8c8345bdaf4bd137edf4773481;hpb=fe87869cb763c613c4dc36294efbd8edff175d54;p=lyx.git diff --git a/src/mathed/math_kerninset.h b/src/mathed/math_kerninset.h index 37adf09da2..48d50638b8 100644 --- a/src/mathed/math_kerninset.h +++ b/src/mathed/math_kerninset.h @@ -1,38 +1,42 @@ // -*- C++ -*- +/** + * \file math_kerninset.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. + * + * \author André Pönitz + * + * Full author contact details are available in file CREDITS. + */ + #ifndef MATH_CHEATINSET_H #define MATH_CHEATINSET_H -#include "math_diminset.h" -#include "vspace.h" -#include "LString.h" -#include "math_nestinset.h" +#include "math_inset.h" +#include "lyxlength.h" -#ifdef __GNUG__ -#pragma interface -#endif /// The \kern primitive /// Some hack for visual effects -class MathKernInset : public MathDimInset { +class MathKernInset : public MathInset { public: /// MathKernInset(); /// explicit MathKernInset(LyXLength const & wid); /// - explicit MathKernInset(string const & wid); + explicit MathKernInset(std::string const & wid); /// - MathInset * clone() const; + void metrics(MetricsInfo & mi, Dimension & dim) const; /// - void draw(MathPainterInfo &, int x, int y) const; + void draw(PainterInfo & pi, int x, int y) const; /// void write(WriteStream & os) const; /// void normalize(NormalStream & ns) const; - /// - void metrics(MathMetricsInfo & st) const; private: + virtual std::auto_ptr doClone() const; /// width in em LyXLength wid_; };