X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_fontinset.h;h=5174823b0435ab38c55385dbb159f797a1cb69bf;hb=1ecc7b79cdf95de50f2683fb7a8f983b5dcdf0d2;hp=7673b0742297ba26fe8855fb8f08a58d5d266712;hpb=1829cdef6a34ec623c25ec8967dc048e8f19eee9;p=lyx.git diff --git a/src/mathed/math_fontinset.h b/src/mathed/math_fontinset.h index 7673b07422..5174823b04 100644 --- a/src/mathed/math_fontinset.h +++ b/src/mathed/math_fontinset.h @@ -1,24 +1,29 @@ // -*- C++ -*- +/** + * \file math_fontinset.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_FONTINSET_H #define MATH_FONTINSET_H #include "math_nestinset.h" -/** Inset for font changes - * \author André Pönitz - * - * Full author contact details are available in file CREDITS - */ - class latexkeys; +/// Inset for font changes class MathFontInset : public MathNestInset { public: /// explicit MathFontInset(latexkeys const * key); /// - MathInset * clone() const; + virtual std::auto_ptr clone() const; /// MathFontInset * asFontInset() { return this; } /// @@ -26,13 +31,13 @@ public: /// are we in math mode, text mode, or unsure? mode_type currentMode() const; /// - string name() const; + std::string name() const; /// - void metrics(MetricsInfo & mi) const; + void metrics(MetricsInfo & mi, Dimension & dim) const; /// void draw(PainterInfo & pi, int x, int y) const; /// - void metricsT(TextMetricsInfo const & mi) const; + void metricsT(TextMetricsInfo const & mi, Dimension & dim) const; /// void drawT(TextPainter & pi, int x, int y) const; ///