]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfoot.C
use more specific smart_ptr headers
[lyx.git] / src / insets / insetfoot.C
index b3b39f9171b29c2f640daab406656f5e3db5aefa..28ee366ce0b394fb147ab7af28296eb67ba51b5a 100644 (file)
@@ -1,8 +1,8 @@
 /* This file is part of
  * ======================================================
- * 
+ *
  *           LyX, The Document Processor
- *      
+ *
  *          Copyright 1998 The LyX Team.
  *
  * ======================================================
 #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 "lyxtextclasslist.h"
+#include "buffer.h"
+#include "paragraph.h"
+
+
+using std::ostream;
 
 
-InsetFoot::InsetFoot()
-       : InsetFootlike()
+InsetFoot::InsetFoot(BufferParams const & bp)
+       : InsetFootlike(bp)
 {
        setLabel(_("foot"));
        setInsetName("Foot");
 }
 
 
-Inset * InsetFoot::clone(Buffer const &) 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);
 }
 
 
@@ -49,22 +62,28 @@ 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 const & layout =
+                       textclasslist[buf->params.textclass][parOwner()->layout()];
+               fragile |= layout.intitle;
+       }
+
        os << "%\n\\footnote{";
-       
+
        int const i = inset.latex(buf, os, fragile, fp);
        os << "%\n}";
-       
+
        return i + 2;
 }
 
 
-bool InsetFoot::insertInsetAllowed(Inset * in) const
+int InsetFoot::docbook(Buffer const * buf, ostream & os) 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);
+       os << "</footnote>";
+
+       return i;
 }