]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfoot.C
(Herbert): strip the extension from the graphics filename when exporting
[lyx.git] / src / insets / insetfoot.C
index 1e0ccb8f3964b2d778a868a8ebf6bed94694a813..cf1576383bd8d020e090045980130f04f68d3743 100644 (file)
@@ -1,8 +1,8 @@
 /* This file is part of
  * ======================================================
- * 
+ *
  *           LyX, The Document Processor
- *      
+ *
  *          Copyright 1998 The LyX Team.
  *
  * ======================================================
 #include "debug.h"
 
 
-InsetFoot::InsetFoot()
-       : InsetFootlike()
+using std::ostream;
+
+
+InsetFoot::InsetFoot(BufferParams const & bp)
+       : InsetFootlike(bp)
 {
        setLabel(_("foot"));
        setInsetName("Foot");
@@ -53,17 +56,22 @@ string const InsetFoot::editMessage() const
 
 
 int InsetFoot::latex(Buffer const * buf,
-                    std::ostream & os, bool fragile, bool fp) const
+                    ostream & os, bool fragile, bool fp) const
 {
        os << "%\n\\footnote{";
-       
+
        int const i = inset.latex(buf, os, fragile, fp);
        os << "%\n}";
-       
+
        return i + 2;
 }
 
-void InsetFoot::validate(LaTeXFeatures & features) const
+
+int InsetFoot::docbook(Buffer const * buf, ostream & os) const
 {
-        features.NeedLyXFootnoteCode = true;
+       os << "<footnote>";
+       int const i = inset.docbook(buf, os);
+       os << "</footnote>";
+
+       return i;
 }