]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_casesinset.h
Andreas' patch to prevent crash on click on previewd inset
[lyx.git] / src / mathed / math_casesinset.h
index 07a83a2de64c7ec9890d05fb70ce6ae245f29af0..f28776c51b72d6c2c73553ad155abd1e2404ad2b 100644 (file)
@@ -1,31 +1,48 @@
 // -*- C++ -*-
+/**
+ * \file math_casesinset.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_CASESINSET_H
 #define MATH_CASESINSET_H
 
 #include "math_gridinset.h"
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
+class LaTeXFeatures;
 
 class MathCasesInset : public MathGridInset {
 public:
        ///
        explicit MathCasesInset(row_type rows = 1u);
        ///
-       MathInset * clone() const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
+       ///
+       void draw(PainterInfo & pi, int x, int y) const;
        ///
-       void metrics(MathMetricsInfo const & st) const;
+       virtual void doDispatch(LCursor & cur, FuncRequest & cmd);
        ///
-       void draw(Painter & pain, int x, int y) const;
+       bool getStatus(LCursor & cur, FuncRequest const & cmd,
+               FuncStatus & flag) const;
 
+       ///
+       void infoize(std::ostream & os) const;
        ///
        void normalize(NormalStream &) const;
        ///
-       void maplize(MapleStream &) const;
+       void maple(MapleStream &) const;
        ///
        void write(WriteStream & os) const;
+       ///
+       void validate(LaTeXFeatures & features) const;
+private:
+       virtual std::auto_ptr<InsetBase> doClone() const;
 };
 
 #endif