]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_makeboxinset.C
Andreas' patch to prevent crash on click on previewd inset
[lyx.git] / src / mathed / math_makeboxinset.C
index b708d4a7da40987dcf0eda45aa0b05778a0e7758..a3d6d4b480b07b0a1875c6ff541c3089b38063b2 100644 (file)
@@ -1,14 +1,21 @@
-#include <config.h>
+/**
+ * \file math_makeboxinset.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Ling Li
+ *
+ * Full author contact details are available in file CREDITS.
+ */
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
+#include <config.h>
 
 #include "math_makeboxinset.h"
-#include "math_support.h"
+#include "math_data.h"
 #include "math_mathmlstream.h"
-#include "math_streamstr.h"
-#include "frontends/Painter.h"
+#include "math_support.h"
+
+#include "support/std_ostream.h"
 
 using std::auto_ptr;
 
@@ -18,7 +25,7 @@ MathMakeboxInset::MathMakeboxInset()
 {}
 
 
-auto_ptr<InsetBase> MathMakeboxInset::clone() const
+auto_ptr<InsetBase> MathMakeboxInset::doClone() const
 {
        return auto_ptr<InsetBase>(new MathMakeboxInset(*this));
 }
@@ -29,12 +36,12 @@ void MathMakeboxInset::metrics(MetricsInfo & mi, Dimension & dim) const
        FontSetChanger dummy(mi.base, "textnormal");
        w_ = mathed_char_width(mi.base.font, '[');
        MathNestInset::metrics(mi);
-       dim_   = cell(0).dim();
-       dim_  += cell(1).dim();
-       dim_  += cell(2).dim();
-       dim_.wid += 4 * w_ + 4;
-       metricsMarkers();
-       dim = dim_;
+       dim   = cell(0).dim();
+       dim  += cell(1).dim();
+       dim  += cell(2).dim();
+       dim.wid += 4 * w_ + 4;
+       metricsMarkers(dim);
+       dim_ = dim;
 }
 
 
@@ -58,6 +65,7 @@ void MathMakeboxInset::draw(PainterInfo & pi, int x, int y) const
        x += w_ + 2;
 
        cell(2).draw(pi, x, y);
+       setPosCache(pi, x, y);
 }
 
 
@@ -75,3 +83,10 @@ void MathMakeboxInset::normalize(NormalStream & os) const
 {
        os << "[makebox " << cell(0) << ' ' << cell(1) << ' ' << cell(2) << ']';
 }
+
+
+void MathMakeboxInset::infoize(std::ostream & os) const
+{
+       os << "Makebox (width: " << cell(0)
+           << " pos: " << cell(1) << ")";
+}