X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_boxinset.h;h=c155a76301cd3d4a0294dd8af8d69777cb133c44;hb=b447408de232872fef1537fca542abc23702d572;hp=c2f4364daaf4b5ea371f9ffed1b26dde16796e61;hpb=d109cee80bb0156683629bd15f1b246a9bb463b9;p=lyx.git diff --git a/src/mathed/math_boxinset.h b/src/mathed/math_boxinset.h index c2f4364daa..c155a76301 100644 --- a/src/mathed/math_boxinset.h +++ b/src/mathed/math_boxinset.h @@ -1,41 +1,49 @@ // -*- C++ -*- +/** + * \file math_boxinset.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_BOXINSET_H #define MATH_BOXINSET_H -#include "math_gridinset.h" -#include "LString.h" +#include "math_nestinset.h" + +#include -#ifdef __GNUG__ -#pragma interface -#endif class LyXFont; /// Support for \\mbox -class MathBoxInset : public MathGridInset { +class MathBoxInset : public MathNestInset { public: /// - explicit MathBoxInset(string const &); + explicit MathBoxInset(std::string const & name); + /// + virtual std::auto_ptr clone() const; /// - MathInset * clone() const; - /// identifies BoxInsets - MathBoxInset * asBoxInset() { return this; } - /// identifies BoxInsets - MathBoxInset const * asBoxInset() const { return this; } + mode_type currentMode() const { return TEXT_MODE; } /// - void rebreak(); + void metrics(MetricsInfo & mi, Dimension & dim) const; + /// + void draw(PainterInfo & pi, int x, int y) const; /// void write(WriteStream & os) const; /// - void normalize(NormalStream &) const; + void normalize(NormalStream & ns) const; /// - void draw(Painter &, int x, int y) const; + void infoize(std::ostream & os) const; private: /// - mutable MathMetricsInfo mi_; - /// - string name_; + std::string name_; }; + + #endif