]> 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 0c70cbfc224859f1ca211d5a911d20904e6aff23..e46838c06e78c61dfc7da8acfdb42cf864a29c29 100644 (file)
@@ -6,22 +6,21 @@
  * \author Jürgen Vigna
  * \author Lars Gullik Bjønnes
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #include <config.h>
 
-
 #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;
 
 
@@ -33,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));
 }
 
 
@@ -53,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;
 }