]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfoot.C
Rename LatexRunParams::fragile as moving_arg.
[lyx.git] / src / insets / insetfoot.C
index c806568c2eefbeb1679ae891151818aff10f2ba7..a1ca0bc16148acbdb88d2018fb6d451a6b84a52c 100644 (file)
@@ -1,73 +1,86 @@
-/* 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 "lyxfont.h"
 #include "BufferView.h"
+#include "latexrunparams.h"
 #include "lyxtext.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;
-using std::endl;
 
 
-InsetFoot::InsetFoot()
-       : InsetFootlike()
+InsetFoot::InsetFoot(BufferParams const & bp)
+       : InsetFootlike(bp)
 {
-    setLabel(_("foot"));
-    setInsetName("Foot");
+       setLabel(_("foot"));
+       setInsetName("Foot");
 }
 
 
-Inset * InsetFoot::Clone() const
+InsetFoot::InsetFoot(InsetFoot const & in, bool same_id)
+       : InsetFootlike(in, same_id)
 {
-    InsetFoot * result = new InsetFoot;
-    result->inset->init(inset);
+       setLabel(_("foot"));
+       setInsetName("Foot");
+}
+
 
-    result->collapsed = collapsed;
-    return result;
+Inset * InsetFoot::clone(Buffer const &, bool same_id) const
+{
+       return new InsetFoot(*const_cast<InsetFoot *>(this), same_id);
 }
 
 
-string const InsetFoot::EditMessage() const
+string const InsetFoot::editMessage() const
 {
-    return _("Opened Footnote Inset");
+       return _("Opened Footnote Inset");
 }
 
 
-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
 {
-    os << "\\footnote{%\n";
-    
-    int i = inset->Latex(buf, os, fragile, fp);
-    os << "}%\n";
-    
-    return i + 2;
+       LatexRunParams runparams = runparams_in;
+       if (buf && parOwner()) {
+               LyXLayout_ptr const & layout = parOwner()->layout();
+               runparams.moving_arg |= layout->intitle;
+       }
+
+       os << "%\n\\footnote{";
+
+       int const i = inset.latex(buf, os, runparams);
+       os << "%\n}";
+
+       return i + 2;
 }
 
 
-bool InsetFoot::InsertInsetAllowed(Inset * in) const
+int InsetFoot::docbook(Buffer const * buf, ostream & os, bool mixcont) const
 {
-    if ((in->LyxCode() == Inset::FOOT_CODE) ||
-       (in->LyxCode() == Inset::MARGIN_CODE)) {
-       return false;
-    }
-    return true;
+       os << "<footnote>";
+       int const i = inset.docbook(buf, os, mixcont);
+       os << "</footnote>";
+
+       return i;
 }