X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathXYArrow.h;h=baeef628c80ea9ec2d5095538db61b56800a1245;hb=a746aa52146257c0e7a2d60123f63dccad5b2751;hp=b314cf7313f574077d084bfa2e320f6e5c0be512;hpb=e89625ef28143545a511cdabc67dee8b7be1b216;p=lyx.git diff --git a/src/mathed/InsetMathXYArrow.h b/src/mathed/InsetMathXYArrow.h index b314cf7313..baeef628c8 100644 --- a/src/mathed/InsetMathXYArrow.h +++ b/src/mathed/InsetMathXYArrow.h @@ -13,7 +13,10 @@ #define MATH_ARROWINSET_H #include "InsetMathNest.h" -#include "metricsinfo.h" +#include "MetricsInfo.h" + + +namespace lyx { // for the \ar stuff in \xymatrix @@ -25,9 +28,9 @@ public: /// InsetMathXYArrow(); /// - virtual std::auto_ptr clone() const; + virtual std::auto_ptr clone() const; /// - void metrics(MetricsInfo & mi) const; + bool metrics(MetricsInfo & mi) const; /// void draw(PainterInfo & pi, int x, int y) const; /// @@ -44,18 +47,21 @@ public: /// InsetMathXYMatrix const * targetMatrix() const; /// - MathArray const & targetCell() const; + MathData const & targetCell() const; /// - MathArray const & sourceCell() const; + MathData const & sourceCell() const; /// bool up_; /// mutable MetricsInfo mi_; /// - mutable LyXFont font_; + mutable Font font_; /// mutable InsetMathXYMatrix const * target_; }; + + +} // namespace lyx #endif