]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfoot.C
fix #832
[lyx.git] / src / insets / insetfoot.C
index 1e0ccb8f3964b2d778a868a8ebf6bed94694a813..345d921f51ff480284bd65a70c2660b173aa93c2 100644 (file)
@@ -1,18 +1,16 @@
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
- *      
- *          Copyright 1998 The LyX Team.
+/**
+ * \file insetfoot.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * ======================================================
+ * \author Jürgen Vigna
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
 
 #include "insetfoot.h"
 #include "gettext.h"
 #include "insets/insettext.h"
 #include "support/LOstream.h"
 #include "debug.h"
+// the following are needed just to get the layout of the enclosing
+// paragraph. This seems a bit too much to me (JMarc)
+#include "lyxlayout.h"
+#include "buffer.h"
+#include "paragraph.h"
+
 
+using std::ostream;
 
-InsetFoot::InsetFoot()
-       : InsetFootlike()
+
+InsetFoot::InsetFoot(BufferParams const & bp)
+       : InsetFootlike(bp)
 {
        setLabel(_("foot"));
        setInsetName("Foot");
@@ -53,17 +59,27 @@ 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
 {
+       if (buf && parOwner()) {
+               LyXLayout_ptr const & layout = parOwner()->layout();
+               fragile |= layout->intitle;
+       }
+
        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, bool mixcont) const
 {
-        features.NeedLyXFootnoteCode = true;
+       os << "<footnote>";
+       int const i = inset.docbook(buf, os, mixcont);
+       os << "</footnote>";
+
+       return i;
 }