]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetmarginal.C
convert graphics for .tex export, fixes bug 1231
[lyx.git] / src / insets / insetmarginal.C
index a62b85144cca2f21863d2392f79fbd45b339f7e2..e46838c06e78c61dfc7da8acfdb42cf864a29c29 100644 (file)
@@ -1,29 +1,26 @@
-/* This file is part of
- * ======================================================
+/**
+ * \file insetmarginal.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 "insetmarginal.h"
+
 #include "gettext.h"
-#include "lyxfont.h"
-#include "BufferView.h"
-#include "lyxtext.h"
-#include "insets/insettext.h"
-#include "support/LOstream.h"
-#include "debug.h"
+#include "paragraph.h"
 
+#include "support/std_ostream.h"
 
+
+using std::string;
+using std::auto_ptr;
 using std::ostream;
 
 
@@ -35,17 +32,17 @@ InsetMarginal::InsetMarginal(BufferParams const & bp)
 }
 
 
-InsetMarginal::InsetMarginal(InsetMarginal const & in, bool same_id)
-       : InsetFootlike(in, same_id)
+InsetMarginal::InsetMarginal(InsetMarginal const & in)
+       : InsetFootlike(in)
 {
        setLabel(_("margin"));
        setInsetName("Marginal");
 }
 
 
-Inset * InsetMarginal::clone(Buffer const &, bool same_id) const
+auto_ptr<InsetBase> InsetMarginal::clone() const
 {
-       return new InsetMarginal(*const_cast<InsetMarginal *>(this), same_id);
+       return auto_ptr<InsetBase>(new InsetMarginal(*this));
 }
 
 
@@ -55,13 +52,11 @@ string const InsetMarginal::editMessage() const
 }
 
 
-int InsetMarginal::latex(Buffer const * buf,
-                        ostream & os, bool fragile, bool fp) const
+int InsetMarginal::latex(Buffer const & buf, ostream & os,
+                        OutputParams const & runparams) const
 {
        os << "%\n\\marginpar{";
-
-       int const i = inset.latex(buf, os, fragile, fp);
+       int const i = InsetText::latex(buf, os, runparams);
        os << "%\n}";
-
        return i + 2;
 }