]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfoot.C
updates to minipage inset
[lyx.git] / src / insets / insetfoot.C
index e9f56e6785f7f11ac8ae169ba563f94a47188312..1d942e899935ff000021ffcbbecb4bc0233b2c1f 100644 (file)
 #include "gettext.h"
 #include "lyxfont.h"
 #include "BufferView.h"
-#include "Painter.h"
 #include "lyxtext.h"
 #include "insets/insettext.h"
 #include "support/LOstream.h"
+#include "debug.h"
 
 using std::ostream;
-using std::endl;
 
-InsetFoot::InsetFoot() : InsetCollapsable()
+
+InsetFoot::InsetFoot()
+       : InsetFootlike()
 {
     setLabel(_("foot"));
-    LyXFont font(LyXFont::ALL_SANE);
-    font.decSize();
-    font.decSize();
-    font.setColor(LColor::footnote);
-    setLabelFont(font);
-    setAutoCollapse(false);
     setInsetName("Foot");
 }
 
 
-void InsetFoot::Write(Buffer const * buf, ostream & os) const 
-{
-    os << getInsetName() << "\n";
-    InsetCollapsable::Write(buf, os);
-}
-
-
-Inset * InsetFoot::Clone() const
+Inset * InsetFoot::Clone(Buffer const &) const
 {
     InsetFoot * result = new InsetFoot;
     result->inset->init(inset);
@@ -56,7 +44,7 @@ Inset * InsetFoot::Clone() const
 }
 
 
-char const * InsetFoot::EditMessage() const
+string const InsetFoot::EditMessage() const
 {
     return _("Opened Footnote Inset");
 }
@@ -67,22 +55,13 @@ int InsetFoot::Latex(Buffer const * buf,
 {
     os << "\\footnote{%\n";
     
-    int i = inset->Latex(buf, os, fragile, fp);
+    int const i = inset->Latex(buf, os, fragile, fp);
     os << "}%\n";
     
     return i + 2;
 }
 
 
-bool InsetFoot::InsertInset(BufferView * bv, Inset * in)
-{
-    if (!InsertInsetAllowed(in))
-       return false;
-
-    return inset->InsertInset(bv, in);
-}
-
-
 bool InsetFoot::InsertInsetAllowed(Inset * in) const
 {
     if ((in->LyxCode() == Inset::FOOT_CODE) ||
@@ -91,13 +70,3 @@ bool InsetFoot::InsertInsetAllowed(Inset * in) const
     }
     return true;
 }
-
-#if 0
-LyXFont InsetFoot::GetDrawFont(BufferView * bv,
-                              LyXParagraph * p, int pos) const
-{
-    LyXFont fn = getLyXText(bv)->GetFont(bv->buffer(), p, pos);
-    fn.decSize().decSize();
-    return fn;
-}
-#endif