]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_casesinset.h
bug + spped fixes + small stuff
[lyx.git] / src / mathed / math_casesinset.h
index ebd27bf31b8162180a92fe532647bed0160e3e0f..bd112abb2ffbbf06b1699beb05018b9810dabb23 100644 (file)
@@ -1,21 +1,32 @@
 // -*- 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"
 
 
+class LaTeXFeatures;
 
 class MathCasesInset : public MathGridInset {
 public:
        ///
        explicit MathCasesInset(row_type rows = 1u);
        ///
-       MathInset * clone() const;
+       virtual std::auto_ptr<InsetBase> clone() const;
        ///
-       void metrics(MathMetricsInfo & st) const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
-       void draw(MathPainterInfo & pain, int x, int y) const;
+       void draw(PainterInfo & pain, int x, int y) const;
 
        ///
        void infoize(std::ostream & os) const;
@@ -25,6 +36,8 @@ public:
        void maple(MapleStream &) const;
        ///
        void write(WriteStream & os) const;
+       ///
+       void validate(LaTeXFeatures & features) const;
 };
 
 #endif