X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_sizeinset.h;h=2ec061a0e36e2e169160cdea75838583d2d76e0a;hb=3e93baac3cd18e27db3eb2a1fcaf90b25e0918a6;hp=98d209e5e161f4d347582d8f803d4122df900be3;hpb=9ccefe810b24031894fff8cf3dd39c1bc7f31241;p=lyx.git diff --git a/src/mathed/math_sizeinset.h b/src/mathed/math_sizeinset.h index 98d209e5e1..2ec061a0e3 100644 --- a/src/mathed/math_sizeinset.h +++ b/src/mathed/math_sizeinset.h @@ -1,38 +1,49 @@ // -*- 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_inset.h" -#include "math_defs.h" +#include "math_nestinset.h" +#include "metricsinfo.h" -#ifdef __GNUG__ -#pragma interface -#endif -/** An inset for \scriptsize etc - \author André Poenitz -*/ +class latexkeys; -class MathSizeInset : public MathInset { +/// An inset for \scriptsize etc. +class MathSizeInset : public MathNestInset { public: /// - explicit MathSizeInset(MathStyles st); + explicit MathSizeInset(latexkeys const * l); /// - virtual MathInset * clone() const; + virtual std::auto_ptr clone() const; + /// we write extra braces in any case... + bool extraBraces() const { return true; } /// - void Metrics(MathStyles st); + void metrics(MetricsInfo & mi, Dimension & dim) const; /// - void draw(Painter &, int x, int baseline); + void draw(PainterInfo &, int x, int y) const; + /// - void Write(std::ostream &, bool fragile) const; + void write(WriteStream & os) const; /// - void WriteNormal(std::ostream &) const; + void normalize(NormalStream &) const; + /// + void infoize(std::ostream & os) const; private: /// - char const * verbose() const; - /// - MathStyles style_; + latexkeys const * key_; + /// + Styles const style_; }; #endif