]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_casesinset.C
get rid of broken_header.h and some unneeded tests
[lyx.git] / src / mathed / math_casesinset.C
index bb30d2f29c4041af0e1ac80944ec19e58a46c46d..fc1b3316282e2503228fbf399d5b13d7f7aa4522 100644 (file)
@@ -1,12 +1,21 @@
-#include <config.h>
+/**
+ * \file math_casesinset.C
+ * 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.
+ */
 
+#include <config.h>
 
 #include "math_casesinset.h"
-#include "math_parser.h"
+#include "math_data.h"
 #include "math_mathmlstream.h"
 #include "math_support.h"
 #include "LaTeXFeatures.h"
-#include "support/LOstream.h"
+#include "support/std_ostream.h"
 
 using std::auto_ptr;
 
@@ -16,7 +25,7 @@ MathCasesInset::MathCasesInset(row_type n)
 {}
 
 
-auto_ptr<InsetBase> MathCasesInset::clone() const
+auto_ptr<InsetBase> MathCasesInset::doClone() const
 {
        return auto_ptr<InsetBase>(new MathCasesInset(*this));
 }
@@ -30,10 +39,11 @@ void MathCasesInset::metrics(MetricsInfo & mi, Dimension & dim) const
 }
 
 
-void MathCasesInset::draw(PainterInfo & pain, int x, int y) const
+void MathCasesInset::draw(PainterInfo & pi, int x, int y) const
 {
-       mathed_draw_deco(pain, x + 1, y - dim_.ascent(), 6, dim_.height(), "{");
-       MathGridInset::draw(pain, x + 8, y);
+       mathed_draw_deco(pi, x + 1, y - dim_.ascent(), 6, dim_.height(), "{");
+       MathGridInset::draw(pi, x + 8, y);
+       setPosCache(pi, x, y);
 }