]> git.lyx.org Git - features.git/blobdiff - src/insets/insetfoot.C
several changes and some new insets, read the Changelog
[features.git] / src / insets / insetfoot.C
index 04323504159e587e4057e00e3b85f05e044100c7..9b33e6f08b25a1559e1836a9642c39f27f867fe6 100644 (file)
@@ -18,6 +18,7 @@
 #include "lyxfont.h"
 #include "BufferView.h"
 #include "Painter.h"
+#include "lyxtext.h"
 #include "support/LOstream.h"
 
 using std::ostream;
@@ -36,9 +37,16 @@ InsetFoot::InsetFoot() : InsetCollapsable()
 }
 
 
+void InsetFoot::Write(Buffer const * buf, ostream & os) const 
+{
+       os << getInsetName() << "\n";
+       InsetCollapsable::Write(buf, os);
+}
+
+
 Inset * InsetFoot::Clone() const
 {
-    InsetFoot * result = new InsetFoot();
+    InsetFoot * result = new InsetFoot;
     result->init(this);
 
     result->collapsed = collapsed;
@@ -54,10 +62,10 @@ char const * InsetFoot::EditMessage() const
 
 int InsetFoot::Latex(Buffer const * buf, ostream & os, bool fragile, bool fp) const
 {
-    os << "\\footnote{%" << endl;
+    os << "\\footnote{%\n";
     
     int i = InsetText::Latex(buf, os, fragile, fp);
-    os << "}%" << endl;
+    os << "}%\n";
     
     return i + 2;
 }
@@ -82,9 +90,9 @@ bool InsetFoot::InsertInsetAllowed(Inset * inset) const
 }
 
 
-LyXFont InsetFoot::GetDrawFont(Buffer const * buf, LyXParagraph * p, int pos) const
+LyXFont InsetFoot::GetDrawFont(BufferView * bv,LyXParagraph * p, int pos) const
 {
-    LyXFont fn = InsetCollapsable::GetDrawFont(buf, p, pos);
+    LyXFont fn = getLyXText(bv)->GetFont(bv->buffer(), p, pos);
     fn.decSize().decSize();
     return fn;
 }