]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_makeboxinset.C
bug + spped fixes + small stuff
[lyx.git] / src / mathed / math_makeboxinset.C
index 1ae10b02701d7c7511c734ef70991f17c0362837..7154dfff7acb97d713a6a9144e19a2307f8b2fbc 100644 (file)
 #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;
 
@@ -35,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;
 }
 
 
@@ -81,3 +82,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) << ")";
+}