]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetmarginal.C
Rename LatexRunParams::fragile as moving_arg.
[lyx.git] / src / insets / insetmarginal.C
index 80980c9fd15e7e9c96feebda74c9a2405466a2e9..174d7db8439a8bac2ef1d6f09349e2d18620616e 100644 (file)
@@ -1,18 +1,16 @@
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
- *      
- *          Copyright 1998 The LyX Team.
+/**
+ * \file insetmarginal.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 "insetmarginal.h"
 #include "gettext.h"
 #include "debug.h"
 
 
-InsetMarginal::InsetMarginal()
-       : InsetFootlike()
+using std::ostream;
+
+
+InsetMarginal::InsetMarginal(BufferParams const & bp)
+       : InsetFootlike(bp)
 {
        setLabel(_("margin"));
        setInsetName("Marginal");
 }
 
 
+InsetMarginal::InsetMarginal(InsetMarginal const & in, bool same_id)
+       : InsetFootlike(in, same_id)
+{
+       setLabel(_("margin"));
+       setInsetName("Marginal");
+}
+
+
+Inset * InsetMarginal::clone(Buffer const &, bool same_id) const
+{
+       return new InsetMarginal(*const_cast<InsetMarginal *>(this), same_id);
+}
+
+
 string const InsetMarginal::editMessage() const
 {
        return _("Opened Marginal Note Inset");
 }
 
 
-int InsetMarginal::latex(Buffer const * buf,
-                        std::ostream & os, bool fragile, bool fp) const
+int InsetMarginal::latex(Buffer const * buf, ostream & os,
+                        LatexRunParams const & runparams) const
 {
        os << "%\n\\marginpar{";
-       
-       int const i = inset.latex(buf, os, fragile, fp);
+
+       int const i = inset.latex(buf, os, runparams);
        os << "%\n}";
-       
+
        return i + 2;
 }