]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfoot.C
clear()->erase() ; lots of using directives for cxx
[lyx.git] / src / insets / insetfoot.C
index 170dc4ffd4825e9e3e5dc4de7967876cc3bb2ac6..50f6af9a849ed9d3a094ead3b62193f8bab41b26 100644 (file)
 #include "gettext.h"
 #include "lyxfont.h"
 #include "BufferView.h"
-#include "lyxscreen.h"
 #include "Painter.h"
+#include "support/LOstream.h"
 
 using std::ostream;
+using std::endl;
 
 InsetFoot::InsetFoot(Buffer * bf)
                : InsetCollapsable(bf)
@@ -32,13 +33,14 @@ InsetFoot::InsetFoot(Buffer * bf)
     font.setColor(LColor::footnote);
     setLabelFont(font);
     setAutoCollapse(false);
+    setInsetName("Foot");
 }
 
 
 Inset * InsetFoot::Clone() const
 {
     InsetFoot * result = new InsetFoot(buffer);
-    result->init(buffer, par);
+    result->init(buffer, this);
 
     result->collapsed = collapsed;
     return result;
@@ -51,51 +53,38 @@ char const * InsetFoot::EditMessage() const
 }
 
 
-int InsetFoot::Latex(ostream & os, signed char fragile, bool fp) const
+int InsetFoot::Latex(ostream & os, bool fragile, bool fp) const
 {
-       if (fragile) 
-               os << "\\footnotetext{";
-       else 
-               os << "\\footnote{";
-       
-       int i = InsetText::Latex(os, fragile, fp);
-       os << "}";
-       
-       return i;
+    os << "\\footnote{%" << endl;
+    
+    int i = InsetText::Latex(os, fragile, fp);
+    os << "}%" << endl;
+    
+    return i + 2;
 }
 
 
-void InsetFoot::Write(ostream & os) const
+bool InsetFoot::InsertInset(BufferView * bv, Inset * inset)
 {
-       os << "Foot\n"
-          << "\ncollapsed ";
-       if (display())
-               os << "false\n";
-       else
-               os << "true\n";
-       WriteParagraphData(os);
-}
-
+    if (!InsertInsetAllowed(inset))
+       return false;
 
-void InsetFoot::Read(LyXLex & lex)
-{
-    if (lex.IsOK()) {
-       lex.next();
-        string token = lex.GetString();
-       if (token == "collapsed") {
-           lex.next();
-           collapsed = lex.GetBool();
-       }
-    }
-    InsetText::Read(lex);
+    return InsetText::InsertInset(bv, inset);
 }
 
-
-bool InsetFoot::InsertInset(BufferView * bv, Inset * inset)
+bool InsetFoot::InsertInsetAllowed(Inset * inset) const
 {
     if ((inset->LyxCode() == Inset::FOOT_CODE) ||
        (inset->LyxCode() == Inset::MARGIN_CODE)) {
        return false;
     }
-    return InsetText::InsertInset(bv, inset);
+    return true;
+}
+
+LyXFont InsetFoot::GetDrawFont(LyXParagraph * par, int pos) const
+{
+    LyXFont fn = InsetCollapsable::GetDrawFont(par, pos);
+    fn.decSize();
+    fn.decSize();
+    return fn;
 }