X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_xyarrowinset.h;h=fe69939be4dc1875e382f2bfc14fe9cd492c1878;hb=701b99ecd70ac472aa53c8b2317af44def4f9670;hp=e8fb3d5e986452aa434d1fd22ebec39fef543888;hpb=dd60fa8ccbc203482c803c941a44b84e82dc8dee;p=lyx.git diff --git a/src/mathed/math_xyarrowinset.h b/src/mathed/math_xyarrowinset.h index e8fb3d5e98..fe69939be4 100644 --- a/src/mathed/math_xyarrowinset.h +++ b/src/mathed/math_xyarrowinset.h @@ -1,31 +1,37 @@ // -*- C++ -*- +/** + * \file math_xyarrowinset.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_XYARROWINSET_H #define MATH_ARROWINSET_H #include "math_nestinset.h" +#include "metricsinfo.h" -#ifdef __GNUG__ -#pragma interface -#endif // for the \ar stuff in \xymatrix class MathXYMatrixInset; class MathXYArrowInset : public MathNestInset { -public: +public: /// MathXYArrowInset(); /// - MathInset * clone() const; + virtual std::auto_ptr clone() const; /// - void metrics(MathMetricsInfo const & st) const; + void metrics(MetricsInfo & mi) const; /// - void draw(Painter & pain, int x, int y) const; + void draw(PainterInfo & pi, int x, int y) const; /// MathXYArrowInset * asXYArrowInset() { return this; } - /// - bool editing() const; /// void normalize(); @@ -38,14 +44,18 @@ public: /// MathXYMatrixInset const * targetMatrix() const; /// - MathXArray const & targetCell() const; + MathArray const & targetCell() const; /// - MathXArray const & sourceCell() const; + MathArray const & sourceCell() const; /// bool up_; /// - mutable MathMetricsInfo mi_; + mutable MetricsInfo mi_; + /// + mutable LyXFont font_; + /// + mutable MathXYMatrixInset const * target_; }; #endif