]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_decorationinset.C
move around stuff, remove unneeded declarations etc
[lyx.git] / src / mathed / math_decorationinset.C
index f685706e34263b40813ca52001d798a2bde74928..25dd231ca4ab8fe5679d1dd8f2c111c24e9ba69e 100644 (file)
@@ -1,22 +1,40 @@
-#include <config.h>
+/**
+ * \file math_decorationinset.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Alejandro Aguilar Sierra
+ * \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS.
+ */
 
+#include <config.h>
 
 #include "math_decorationinset.h"
+#include "math_data.h"
 #include "math_support.h"
 #include "math_parser.h"
 #include "math_mathmlstream.h"
 #include "math_streamstr.h"
-#include "support/LOstream.h"
+
+#include "debug.h"
+
+#include "support/std_ostream.h"
+
+using std::auto_ptr;
 
 
 MathDecorationInset::MathDecorationInset(latexkeys const * key)
        : MathNestInset(1), key_(key)
-{}
+{
+//     lyxerr << " creating deco " << key->name << std::endl;
+}
 
 
-MathInset * MathDecorationInset::clone() const
+auto_ptr<InsetBase> MathDecorationInset::clone() const
 {
-       return new MathDecorationInset(*this);
+       return auto_ptr<InsetBase>(new MathDecorationInset(*this));
 }
 
 
@@ -72,24 +90,23 @@ bool MathDecorationInset::wide() const
 }
 
 
-Dimension MathDecorationInset::metrics(MetricsInfo & mi) const
+void MathDecorationInset::metrics(MetricsInfo & mi, Dimension & dim) const
 {
-       cell(0).metrics(mi);
-       dim_ = cell(0).dim();
+       cell(0).metrics(mi, dim);
 
        dh_  = 6; //mathed_char_height(LM_TC_VAR, mi, 'I', ascent_, descent_);
        dw_  = 6; //mathed_char_width(LM_TC_VAR, mi, 'x');
 
        if (upper()) {
-               dy_ = -dim_.asc - dh_;
-               dim_.asc += dh_ + 1;
+               dy_ = -dim.asc - dh_;
+               dim.asc += dh_ + 1;
        } else {
-               dy_ = dim_.des + 1;
-               dim_.des += dh_ + 2;
+               dy_ = dim.des + 1;
+               dim.des += dh_ + 2;
        }
 
-       metricsMarkers();
-       return dim_;
+       metricsMarkers(dim);
+       dim_ = dim;
 }
 
 
@@ -97,9 +114,9 @@ void MathDecorationInset::draw(PainterInfo & pi, int x, int y) const
 {
        cell(0).draw(pi, x + 1, y);
        if (wide())
-               mathed_draw_deco(pi, x + 1, y + dy_, pi.width, dh_, key_->name);
+               mathed_draw_deco(pi, x + 1, y + dy_, cell(0).width(), dh_, key_->name);
        else
-               mathed_draw_deco(pi, x + 1 + (pi.width - dw_) / 2,
+               mathed_draw_deco(pi, x + 1 + (cell(0).width() - dw_) / 2,
                        y + dy_, dw_, dh_, key_->name);
        drawMarkers(pi, x, y);
 }