]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetFootlike.cpp
Use home made code for the bool facet.
[lyx.git] / src / insets / InsetFootlike.cpp
index 7c9fcb204c450c3eb270cbf331666c5655796753..2f6b8f5b6d6556b51bb7366d019f163cfec24582 100644 (file)
@@ -15,9 +15,7 @@
 #include "Buffer.h"
 #include "BufferView.h"
 #include "BufferParams.h"
-#include "Color.h"
 #include "MetricsInfo.h"
-#include "Paragraph.h"
 
 
 namespace lyx {
@@ -25,7 +23,7 @@ namespace lyx {
 InsetFootlike::InsetFootlike(BufferParams const & bp)
        : InsetCollapsable(bp)
 {
-       LyXFont font(LyXFont::ALL_SANE);
+       Font font(Font::ALL_SANE);
        font.decSize();
        font.decSize();
        font.setColor(Color::collapsable);
@@ -36,7 +34,7 @@ InsetFootlike::InsetFootlike(BufferParams const & bp)
 InsetFootlike::InsetFootlike(InsetFootlike const & in)
        : InsetCollapsable(in)
 {
-       LyXFont font(LyXFont::ALL_SANE);
+       Font font(Font::ALL_SANE);
        font.decSize();
        font.decSize();
        font.setColor(Color::collapsable);
@@ -46,7 +44,7 @@ InsetFootlike::InsetFootlike(InsetFootlike const & in)
 
 bool InsetFootlike::metrics(MetricsInfo & mi, Dimension & dim) const
 {
-       LyXFont tmpfont = mi.base.font;
+       Font tmpfont = mi.base.font;
        mi.base.font = mi.base.bv->buffer()->params().getFont();
        InsetCollapsable::metrics(mi, dim);
        mi.base.font = tmpfont;
@@ -58,7 +56,7 @@ bool InsetFootlike::metrics(MetricsInfo & mi, Dimension & dim) const
 
 void InsetFootlike::draw(PainterInfo & pi, int x, int y) const
 {
-       LyXFont tmpfont = pi.base.font;
+       Font tmpfont = pi.base.font;
        pi.base.font = pi.base.bv->buffer()->params().getFont();
        InsetCollapsable::draw(pi, x, y);
        pi.base.font = tmpfont;
@@ -67,7 +65,7 @@ void InsetFootlike::draw(PainterInfo & pi, int x, int y) const
 
 void InsetFootlike::write(Buffer const & buf, std::ostream & os) const
 {
-       os << to_utf8(insetName()) << "\n";
+       os << to_utf8(name()) << "\n";
        InsetCollapsable::write(buf, os);
 }