]> 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 ca1ce4b43196b0db8381a82d06644cd5ee290c27..bd112abb2ffbbf06b1699beb05018b9810dabb23 100644 (file)
@@ -1,31 +1,43 @@
 // -*- 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: 
+public:
        ///
        explicit MathCasesInset(row_type rows = 1u);
        ///
-       MathInset * clone() const;
+       virtual std::auto_ptr<InsetBase> clone() const;
        ///
-       void metrics(MathMetricsInfo const & st) const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
-       void draw(Painter & pain, int x, int y) const;
+       void draw(PainterInfo & pain, int x, int y) 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;
 };
 
 #endif