]> 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 b314cf7313f574077d084bfa2e320f6e5c0be512..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.
  */
 #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<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;
        ///
@@ -39,23 +42,26 @@ public:
        void write(WriteStream & os) const;
        ///
        void normalize(NormalStream &) const;
-
-public:
        ///
        InsetMathXYMatrix const * targetMatrix() const;
        ///
-       MathArray const & targetCell() const;
+       MathData const & targetCell() const;
        ///
-       MathArray const & sourceCell() const;
+       MathData 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_;
 };
 
+
+
+} // namespace lyx
 #endif