X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_sizeinset.h;h=2ec061a0e36e2e169160cdea75838583d2d76e0a;hb=3e93baac3cd18e27db3eb2a1fcaf90b25e0918a6;hp=7d52d63170bebd2a541ce7b6197f66df02e1e457;hpb=1a696271da9e41ef9f3de8543914b24400735541;p=lyx.git diff --git a/src/mathed/math_sizeinset.h b/src/mathed/math_sizeinset.h index 7d52d63170..2ec061a0e3 100644 --- a/src/mathed/math_sizeinset.h +++ b/src/mathed/math_sizeinset.h @@ -1,31 +1,36 @@ // -*- C++ -*- +/** + * \file math_sizeinset.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 MATHSIZEINSET_H #define MATHSIZEINSET_H #include "math_nestinset.h" +#include "metricsinfo.h" -#ifdef __GNUG__ -#pragma interface -#endif - -/** An inset for \scriptsize etc - \author André Pönitz -*/ class latexkeys; +/// An inset for \scriptsize etc. class MathSizeInset : public MathNestInset { public: /// explicit MathSizeInset(latexkeys const * l); /// - MathInset * clone() const; + virtual std::auto_ptr clone() const; /// we write extra braces in any case... bool extraBraces() const { return true; } /// - void metrics(MathMetricsInfo & st) 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 write(WriteStream & os) const; @@ -38,7 +43,7 @@ private: /// latexkeys const * key_; /// - MathStyles const style_; + Styles const style_; }; #endif