]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfoot.C
fix compilation pb ; update eu.po
[lyx.git] / src / insets / insetfoot.C
index 2b01a0e82626eb71b277833e0d126d438704340b..f6cdfb05efec919625b24ad1de7c5886f9e02356 100644 (file)
@@ -3,9 +3,10 @@
  * 
  *           LyX, The Document Processor
  *      
- *          Copyright (C) 1998 The LyX Team.
+ *          Copyright 1998 The LyX Team.
  *
- *======================================================*/
+ * ======================================================
+ */
 
 #include <config.h>
 
 #include "gettext.h"
 #include "lyxfont.h"
 #include "BufferView.h"
-#include "lyxscreen.h"
-#include "Painter.h"
+#include "lyxtext.h"
+#include "insets/insettext.h"
+#include "support/LOstream.h"
+#include "debug.h"
 
 
-InsetFoot::InsetFoot(Buffer * bf): InsetCollapsable(bf)
+InsetFoot::InsetFoot()
+       : InsetFootlike()
 {
-    setLabel(_("foot"));
-    LyXFont font(LyXFont::ALL_SANE);
-    font.decSize();
-    font.decSize();
-    font.setColor(LColor::footnote);
-    setLabelFont(font);
-    setAutoCollapse(false);
+       setLabel(_("foot"));
+       setInsetName("Foot");
 }
 
 
-InsetFoot * InsetFoot::Clone() const
+Inset * InsetFoot::Clone(Buffer const &) const
 {
-    InsetFoot * result = new InsetFoot(buffer);
-    return result;
+       InsetFoot * result = new InsetFoot;
+       result->inset.init(&inset);
+
+       result->collapsed = collapsed;
+       return result;
 }
 
 
-const char * InsetFoot::EditMessage() const
+string const InsetFoot::EditMessage() const
 {
-    return _("Opened Footnote Inset");
+       return _("Opened Footnote Inset");
 }
 
-#ifndef USE_OSTREAM_ONLY
-int InsetFoot::Latex(string & l, signed char fragile) const
-{
-    int i;
-    
-    if (fragile) 
-       l += "\\footnotetext{";
-    else 
-       l += "\\footnote{";
-
-    i = InsetText::Latex(l, fragile);
-    l += "}";
-
-    return i;
-}
-#endif
 
-int InsetFoot::Latex(ostream & os, signed char fragile) const
+int InsetFoot::Latex(Buffer const * buf,
+                    std::ostream & os, bool fragile, bool fp) const
 {
-    int i;
-    
-    if (fragile) 
-       os << "\\footnotetext{";
-    else 
-       os << "\\footnote{";
-
-    i = InsetText::Latex(os, fragile);
-    os << "}";
-
-    return i;
+       os << "\\footnote{%\n";
+       
+       int const i = inset.Latex(buf, os, fragile, fp);
+       os << "}%\n";
+       
+       return i + 2;
 }
 
-void InsetFoot::Write(ostream & os) const
-{
-    os << "Foot\n";
-    os << "\ncollapsed ";
-    if (display())
-       os << "false";
-    else
-       os << "true";
-    os << "\n";
-    WriteParagraphData(os);
-}
 
-void InsetFoot::Read(LyXLex & lex)
+bool InsetFoot::InsertInsetAllowed(Inset * in) const
 {
-    if (lex.IsOK()) {
-       string token, tmptok;
-        
-       lex.next();
-        token = lex.GetString();
-       if (token == "collapsed") {
-           lex.next();
-           collapsed = lex.GetBool();
+       if ((in->LyxCode() == Inset::FOOT_CODE) ||
+           (in->LyxCode() == Inset::MARGIN_CODE)) {
+               return false;
        }
-    }
-    InsetText::Read(lex);
-}
-
-bool InsetFoot::InsertInset(BufferView *bv, Inset * inset)
-{
-    if ((inset->LyxCode() == Inset::FOOT_CODE) ||
-       (inset->LyxCode() == Inset::MARGIN_CODE)) {
-       return false;
-    }
-    return InsetText::InsertInset(bv, inset);
+       return true;
 }