]> git.lyx.org Git - features.git/blobdiff - src/mathed/math_casesinset.C
Replace LString.h with support/std_string.h,
[features.git] / src / mathed / math_casesinset.C
index 8fe06a6a7eb099d9fad49b8876a4dca2ee99e69c..a507cc231ecd0f44c1a49b1b582936e5131b5509 100644 (file)
@@ -1,14 +1,22 @@
-#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.
+ */
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
+#include <config.h>
 
 #include "math_casesinset.h"
-#include "math_parser.h"
 #include "math_mathmlstream.h"
 #include "math_support.h"
-#include "support/LOstream.h"
+#include "LaTeXFeatures.h"
+#include "support/std_ostream.h"
+
+using std::auto_ptr;
 
 
 MathCasesInset::MathCasesInset(row_type n)
@@ -16,22 +24,23 @@ MathCasesInset::MathCasesInset(row_type n)
 {}
 
 
-MathInset * MathCasesInset::clone() const
+auto_ptr<InsetBase> MathCasesInset::clone() const
 {
-       return new MathCasesInset(*this);
+       return auto_ptr<InsetBase>(new MathCasesInset(*this));
 }
 
 
-void MathCasesInset::metrics(MathMetricsInfo & mi) const
+void MathCasesInset::metrics(MetricsInfo & mi, Dimension & dim) const
 {
        MathGridInset::metrics(mi);
-       dim_.w += 8;
+       dim_.wid += 8;
+       dim = dim_;
 }
 
 
-void MathCasesInset::draw(MathPainterInfo & pain, int x, int y) const
+void MathCasesInset::draw(PainterInfo & pain, int x, int y) const
 {
-       mathed_draw_deco(pain, x + 1, y - ascent(), 6, height(), "{");
+       mathed_draw_deco(pain, x + 1, y - dim_.ascent(), 6, dim_.height(), "{");
        MathGridInset::draw(pain, x + 8, y);
 }
 
@@ -56,10 +65,10 @@ void MathCasesInset::normalize(NormalStream & os) const
 }
 
 
-void MathCasesInset::maplize(MapleStream & os) const
+void MathCasesInset::maple(MapleStream & os) const
 {
        os << "cases(";
-       MathGridInset::maplize(os);
+       MathGridInset::maple(os);
        os << ')';
 }
 
@@ -68,3 +77,10 @@ void MathCasesInset::infoize(std::ostream & os) const
 {
        os << "Cases ";
 }
+
+
+void MathCasesInset::validate(LaTeXFeatures & features) const
+{
+       features.require("amsmath");
+       MathGridInset::validate(features);
+}