X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_boxinset.h;h=c155a76301cd3d4a0294dd8af8d69777cb133c44;hb=b447408de232872fef1537fca542abc23702d572;hp=c027c3954e489114c84ae2b8f754180eb08eda6c;hpb=10fd14e55b6887e3be09baa9ed1f5467c40a3889;p=lyx.git diff --git a/src/mathed/math_boxinset.h b/src/mathed/math_boxinset.h index c027c3954e..c155a76301 100644 --- a/src/mathed/math_boxinset.h +++ b/src/mathed/math_boxinset.h @@ -1,13 +1,21 @@ // -*- 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_nestinset.h" -#include "LString.h" -#ifdef __GNUG__ -#pragma interface -#endif +#include + class LyXFont; @@ -16,15 +24,15 @@ class LyXFont; class MathBoxInset : public MathNestInset { public: /// - explicit MathBoxInset(string const & name); + explicit MathBoxInset(std::string const & name); /// - MathInset * clone() const; + virtual std::auto_ptr clone() const; /// mode_type currentMode() const { return TEXT_MODE; } /// - void metrics(MathMetricsInfo & mi) const; + void metrics(MetricsInfo & mi, Dimension & dim) const; /// - void draw(MathPainterInfo & pi, int x, int y) const; + void draw(PainterInfo & pi, int x, int y) const; /// void write(WriteStream & os) const; /// @@ -34,7 +42,7 @@ public: private: /// - string name_; + std::string name_; };