]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfoot.C
fix compilation pb ; update eu.po
[lyx.git] / src / insets / insetfoot.C
index 4b09114c098ee7930528626d548f36da176c1711..f6cdfb05efec919625b24ad1de7c5886f9e02356 100644 (file)
@@ -5,7 +5,8 @@
  *      
  *          Copyright 1998 The LyX Team.
  *
- *======================================================*/
+ * ======================================================
+ */
 
 #include <config.h>
 
 #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;
 
-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);
-    setInsetName("Foot");
+       setLabel(_("foot"));
+       setInsetName("Foot");
 }
 
 
-Inset * InsetFoot::Clone() const
+Inset * InsetFoot::Clone(Buffer const &) const
 {
-    InsetFoot * result = new InsetFoot(buffer);
-    result->init(buffer, this);
-
-    result->collapsed = collapsed;
-    return result;
-}
-
+       InsetFoot * result = new InsetFoot;
+       result->inset.init(&inset);
 
-char const * InsetFoot::EditMessage() const
-{
-    return _("Opened Footnote Inset");
+       result->collapsed = collapsed;
+       return result;
 }
 
 
-int InsetFoot::Latex(ostream & os, bool fragile, bool fp) const
+string const InsetFoot::EditMessage() const
 {
-    if (fragile) 
-       os << "\\footnote{"; // was footnotemark but that won't work
-    else 
-       os << "\\footnote{";
-    
-    int i = InsetText::Latex(os, fragile, fp);
-    os << "}";
-    
-    return i;
+       return _("Opened Footnote Inset");
 }
 
 
-bool InsetFoot::InsertInset(BufferView * bv, Inset * inset)
+int InsetFoot::Latex(Buffer const * buf,
+                    std::ostream & os, bool fragile, bool fp) const
 {
-    if (!InsertInsetAllowed(inset))
-       return false;
-
-    return InsetText::InsertInset(bv, inset);
+       os << "\\footnote{%\n";
+       
+       int const i = inset.Latex(buf, os, fragile, fp);
+       os << "}%\n";
+       
+       return i + 2;
 }
 
-bool InsetFoot::InsertInsetAllowed(Inset * inset) const
-{
-    if ((inset->LyxCode() == Inset::FOOT_CODE) ||
-       (inset->LyxCode() == Inset::MARGIN_CODE)) {
-       return false;
-    }
-    return true;
-}
 
-LyXFont InsetFoot::GetDrawFont(LyXParagraph * par, int pos) const
+bool InsetFoot::InsertInsetAllowed(Inset * in) const
 {
-    LyXFont fn = InsetCollapsable::GetDrawFont(par, pos);
-    fn.decSize();
-    fn.decSize();
-    return fn;
+       if ((in->LyxCode() == Inset::FOOT_CODE) ||
+           (in->LyxCode() == Inset::MARGIN_CODE)) {
+               return false;
+       }
+       return true;
 }