]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathXYArrow.h
Do not throw exceptions here either. See r22806.
[lyx.git] / src / mathed / InsetMathXYArrow.h
index 42552c48ebbcd37cb571b5984d1dca643d549587..75734bb856f7bfedec23c97ae13855b952d138e2 100644 (file)
@@ -4,7 +4,7 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author André Pönitz
+ * \author André Pönitz
  *
  * Full author contact details are available in file CREDITS.
  */
@@ -13,7 +13,7 @@
 #define MATH_ARROWINSET_H
 
 #include "InsetMathNest.h"
-#include "metricsinfo.h"
+#include "MetricsInfo.h"
 
 
 namespace lyx {
@@ -28,9 +28,9 @@ public:
        ///
        InsetMathXYArrow();
        ///
-       virtual std::auto_ptr<InsetBase> clone() const;
+       virtual Inset * clone() const;
        ///
-       void metrics(MetricsInfo & mi) const;
+       bool metrics(MetricsInfo & mi) const;
        ///
        void draw(PainterInfo & pi, int x, int y) const;
        ///
@@ -42,21 +42,21 @@ public:
        void write(WriteStream & os) const;
        ///
        void normalize(NormalStream &) const;
-
-public:
        ///
        InsetMathXYMatrix const * targetMatrix() const;
        ///
-       MathArray const & targetCell() const;
+       MathData const & targetCell() const;
+       ///
+       MathData const & sourceCell() const;
        ///
-       MathArray const & sourceCell() const;
+       InsetCode lyxCode() const { return MATH_XYARROW_CODE; }
 
        ///
        bool up_;
        ///
        mutable MetricsInfo mi_;
        ///
-       mutable LyXFont font_;
+       mutable Font font_;
        ///
        mutable InsetMathXYMatrix const * target_;
 };