]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_frameboxinset.C
Fix event loop to no longer eat CPU
[lyx.git] / src / mathed / math_frameboxinset.C
index 4e51af0c41184b4860c22351a26208f1b263acce..bb6badd6bb7590b1404052c1f5fa8de8f591ccd3 100644 (file)
@@ -1,33 +1,46 @@
+/**
+ * \file math_frameboxinset.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_frameboxinset.h"
-#include "math_support.h"
+#include "math_data.h"
 #include "math_mathmlstream.h"
-#include "math_streamstr.h"
+#include "math_support.h"
+#include "LColor.h"
 #include "frontends/Painter.h"
 
+using std::auto_ptr;
+
 
 MathFrameboxInset::MathFrameboxInset()
        : MathNestInset(3)
 {}
 
 
-MathInset * MathFrameboxInset::clone() const
+auto_ptr<InsetBase> MathFrameboxInset::doClone() const
 {
-       return new MathFrameboxInset(*this);
+       return auto_ptr<InsetBase>(new MathFrameboxInset(*this));
 }
 
 
-Dimension MathFrameboxInset::metrics(MetricsInfo & mi) const
+void MathFrameboxInset::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();
-       metricsMarkers();
-       return dim_;
+       dim  = cell(0).dim();
+       dim += cell(1).dim();
+       dim += cell(2).dim();
+       metricsMarkers(dim);
+       dim_ = dim;
 }
 
 
@@ -53,6 +66,7 @@ void MathFrameboxInset::draw(PainterInfo & pi, int x, int y) const
        x += w_ + 4;
 
        cell(2).draw(pi, x, y);
+       drawMarkers(pi, x, y);
 }