]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfoot.C
Enable the external inset to handle unknown templates gracefully.
[lyx.git] / src / insets / insetfoot.C
index 28ee366ce0b394fb147ab7af28296eb67ba51b5a..e53a1db8769033fc5c4a03e1ef0898fdbf0b4c56 100644 (file)
@@ -1,23 +1,21 @@
-/* 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 "lyxfont.h"
 #include "BufferView.h"
+#include "latexrunparams.h"
 #include "lyxtext.h"
 #include "insets/insettext.h"
 #include "support/LOstream.h"
@@ -25,7 +23,6 @@
 // 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 "lyxtextclasslist.h"
 #include "buffer.h"
 #include "paragraph.h"
 
@@ -41,17 +38,17 @@ InsetFoot::InsetFoot(BufferParams const & bp)
 }
 
 
-InsetFoot::InsetFoot(InsetFoot const & in, bool same_id)
-       : InsetFootlike(in, same_id)
+InsetFoot::InsetFoot(InsetFoot const & in)
+       : InsetFootlike(in)
 {
        setLabel(_("foot"));
        setInsetName("Foot");
 }
 
 
-Inset * InsetFoot::clone(Buffer const &, bool same_id) const
+Inset * InsetFoot::clone() const
 {
-       return new InsetFoot(*const_cast<InsetFoot *>(this), same_id);
+       return new InsetFoot(*this);
 }
 
 
@@ -61,28 +58,28 @@ string const InsetFoot::editMessage() const
 }
 
 
-int InsetFoot::latex(Buffer const * buf,
-                    ostream & os, bool fragile, bool fp) const
+int InsetFoot::latex(Buffer const * buf, ostream & os,
+                    LatexRunParams const & runparams_in) const
 {
+       LatexRunParams runparams = runparams_in;
        if (buf && parOwner()) {
-               LyXLayout const & layout =
-                       textclasslist[buf->params.textclass][parOwner()->layout()];
-               fragile |= layout.intitle;
+               LyXLayout_ptr const & layout = parOwner()->layout();
+               runparams.moving_arg |= layout->intitle;
        }
 
        os << "%\n\\footnote{";
 
-       int const i = inset.latex(buf, os, fragile, fp);
+       int const i = inset.latex(buf, os, runparams);
        os << "%\n}";
 
        return i + 2;
 }
 
 
-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;