X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_spaceinset.h;h=00dd1a80186af52b02f221ea0eec99eb67fa65d9;hb=57501b93064a6deed43e415beed45606054d86ad;hp=21fee9249c13371ae2177c6061db7758edf97fd0;hpb=0daba49b1d7493cbf76658314b7459b51f870081;p=lyx.git diff --git a/src/mathed/math_spaceinset.h b/src/mathed/math_spaceinset.h index 21fee9249c..00dd1a8018 100644 --- a/src/mathed/math_spaceinset.h +++ b/src/mathed/math_spaceinset.h @@ -1,35 +1,52 @@ // -*- C++ -*- +/** + * \file math_spaceinset.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_SPACEINSET_H #define MATH_SPACEINSET_H -#include "math_diminset.h" -#include "math_defs.h" +#include "math_inset.h" -#ifdef __GNUG__ -#pragma interface -#endif /// Smart spaces -class MathSpaceInset : public MathDimInset { +class MathSpaceInset : public MathInset { public: /// explicit MathSpaceInset(int sp); /// - MathInset * clone() const; - /// - void draw(Painter &, int x, int y) const; - /// - void write(MathWriteInfo & os) const; + explicit MathSpaceInset(std::string const & name); /// - void writeNormal(NormalStream &) const; - /// - void metrics(MathMetricsInfo const & st) const; + virtual std::auto_ptr clone() const; /// MathSpaceInset const * asSpaceInset() const { return this; } /// MathSpaceInset * asSpaceInset() { return this; } /// void incSpace(); + /// + void metrics(MetricsInfo & mi, Dimension & dim) const; + /// + void draw(PainterInfo & pi, int x, int y) const; + + /// + void normalize(NormalStream &) const; + /// + void validate(LaTeXFeatures & features) const; + /// + void maple(MapleStream &) const; + /// + void mathematica(MathematicaStream &) const; + /// + void octave(OctaveStream &) const; + /// + void write(WriteStream & os) const; private: /// int space_;