X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_fontinset.h;h=5174823b0435ab38c55385dbb159f797a1cb69bf;hb=edbef46cd7865dab72ab6b503d62e2492479d297;hp=91e20458d341ba7129f10667cd2d4c16f173d87c;hpb=10fd14e55b6887e3be09baa9ed1f5467c40a3889;p=lyx.git diff --git a/src/mathed/math_fontinset.h b/src/mathed/math_fontinset.h index 91e20458d3..5174823b04 100644 --- a/src/mathed/math_fontinset.h +++ b/src/mathed/math_fontinset.h @@ -1,39 +1,45 @@ // -*- 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" -#ifdef __GNUG__ -#pragma interface -#endif - -/** Inset for font changes - \author André Pönitz - */ 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; } + /// + MathFontInset const * asFontInset() const { return this; } /// are we in math mode, text mode, or unsure? mode_type currentMode() const; /// - void metrics(MathMetricsInfo & mi) const; + std::string name() const; /// - void draw(MathPainterInfo & pi, int x, int y) const; + void metrics(MetricsInfo & mi, Dimension & dim) const; /// - void metricsT(TextMetricsInfo const & mi) const; + void draw(PainterInfo & pi, int x, int y) const; /// - void drawT(TextPainter & pi, int x, int y) const; + void metricsT(TextMetricsInfo const & mi, Dimension & dim) const; /// - void write(WriteStream & os) const; - /// - void normalize(NormalStream &) const; + void drawT(TextPainter & pi, int x, int y) const; /// void validate(LaTeXFeatures & features) const; ///