]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfoot.C
fix #832
[lyx.git] / src / insets / insetfoot.C
index cf1576383bd8d020e090045980130f04f68d3743..345d921f51ff480284bd65a70c2660b173aa93c2 100644 (file)
@@ -1,18 +1,16 @@
-/* This file is part of
- * ======================================================
+/**
+ * \file insetfoot.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
+ * \author Jürgen Vigna
+ * \author Lars Gullik Bjønnes
  *
- *          Copyright 1998 The LyX Team.
- *
- * ======================================================
+ * 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;
@@ -58,6 +61,11 @@ string const InsetFoot::editMessage() const
 int InsetFoot::latex(Buffer const * buf,
                     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);
@@ -67,10 +75,10 @@ int InsetFoot::latex(Buffer const * buf,
 }
 
 
-int InsetFoot::docbook(Buffer const * buf, ostream & os) const
+int InsetFoot::docbook(Buffer const * buf, ostream & os, bool mixcont) const
 {
        os << "<footnote>";
-       int const i = inset.docbook(buf, os);
+       int const i = inset.docbook(buf, os, mixcont);
        os << "</footnote>";
 
        return i;