]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetLine.cpp
Remove hardcoded values
[lyx.git] / src / insets / InsetLine.cpp
index 8b80f0d3ecbd29d96ae02bf665e030ae4e0109a1..dc75aa42516a0e8b6597864d5d09e37f5a2cadd3 100644 (file)
@@ -25,6 +25,7 @@
 #include "MetricsInfo.h"
 #include "OutputParams.h"
 #include "output_xhtml.h"
+#include "texstream.h"
 #include "Text.h"
 
 #include "frontends/FontMetrics.h"
@@ -45,7 +46,7 @@ using frontend::Painter;
 
 
 InsetLine::InsetLine(Buffer * buf, InsetCommandParams const & p)
-       : InsetCommand(buf, p)
+       : InsetCommand(buf, p), height_(0), offset_(0)
 {}
 
 
@@ -131,17 +132,6 @@ void InsetLine::metrics(MetricsInfo & mi, Dimension & dim) const
 
        dim.asc = max(fm.maxAscent(), offset_ + height_);
        dim.des = max(fm.maxDescent(), - offset_);
-
-       // Cache the inset dimension
-       setDimCache(mi, dim);
-}
-
-
-Dimension const InsetLine::dimension(BufferView const & bv) const
-{
-       // We cannot use InsetCommand::dimension() as this returns the dimension
-       // of the button, which is not used here.
-       return Inset::dimension(bv);
 }
 
 
@@ -159,7 +149,7 @@ void InsetLine::draw(PainterInfo & pi, int x, int y) const
                     y - offset_ - height_/2,
                     x + dim.wid - height_/2 - 2,
                     y - offset_ - height_/2,
-                    Line_color, Painter::line_solid, float(height_));
+                    Line_color, Painter::line_solid, height_);
 }