X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_fracinset.h;h=90ea9c9fd755026bb7c5d378b6861ff1e3c6353b;hb=3e93baac3cd18e27db3eb2a1fcaf90b25e0918a6;hp=45197d59819825ae71c5bf5a3a29a42b623ca705;hpb=73b1ac43f4abe9f6e5eb15471c79c82c0897865f;p=lyx.git diff --git a/src/mathed/math_fracinset.h b/src/mathed/math_fracinset.h index 45197d5981..90ea9c9fd7 100644 --- a/src/mathed/math_fracinset.h +++ b/src/mathed/math_fracinset.h @@ -1,28 +1,34 @@ // -*- C++ -*- +/** + * \file math_fracinset.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. + * + * \author Alejandro Aguilar Sierra + * \author André Pönitz + * + * Full author contact details are available in file CREDITS. + */ + #ifndef MATH_FRACINSET_H #define MATH_FRACINSET_H #include "math_fracbase.h" -#ifdef __GNUG__ -#pragma interface -#endif -/** Fraction like objects (frac, binom) - \author Alejandro Aguilar Sierra - */ +/// Fraction like objects (frac, binom) class MathFracInset : public MathFracbaseInset { public: /// explicit MathFracInset(bool atop = false); /// - MathInset * clone() const; + virtual std::auto_ptr clone() const; /// - void metrics(MathMetricsInfo & mi) const; + void metrics(MetricsInfo & mi, Dimension & dim) const; /// - void draw(MathPainterInfo &, int x, int y) const; + void draw(PainterInfo &, int x, int y) const; /// - void metricsT(TextMetricsInfo const & mi) const; + void metricsT(TextMetricsInfo const & mi, Dimension & dim) const; /// void drawT(TextPainter &, int x, int y) const; /// identifies FracInsets @@ -30,16 +36,16 @@ public: /// identifies FracInsets MathFracInset const * asFracInset() const; /// - string name() const; + std::string name() const; /// void write(WriteStream & os) const; /// - void maplize(MapleStream &) const; + void maple(MapleStream &) const; /// - void mathematicize(MathematicaStream &) const; + void mathematica(MathematicaStream &) const; /// - void octavize(OctaveStream &) const; + void octave(OctaveStream &) const; /// void mathmlize(MathMLStream &) const; public: