]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetmarginal.C
* src/LyXAction.C: mark goto-clear-bookmark as working without buffer
[lyx.git] / src / insets / insetmarginal.C
index 201c333a7ca6af9f0d907e4f0441d55be98af7a1..c8f418bcb062c813609ddd6fbb050268e5090c1e 100644 (file)
@@ -1,64 +1,77 @@
-/* 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 "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"
+
+
+namespace lyx {
+
+using std::string;
+using std::auto_ptr;
+using std::ostream;
 
 
-InsetMarginal::InsetMarginal()
-       : InsetFootlike()
+InsetMarginal::InsetMarginal(BufferParams const & bp)
+       : InsetFootlike(bp)
 {
        setLabel(_("margin"));
-       setInsetName("Marginal");
+       setInsetName(from_ascii("Marginal"));
 }
 
 
-InsetMarginal::InsetMarginal(InsetMarginal const & in, bool same_id)
-       : InsetFootlike(in, same_id)
+InsetMarginal::InsetMarginal(InsetMarginal const & in)
+       : InsetFootlike(in)
 {
        setLabel(_("margin"));
-       setInsetName("Marginal");
+       setInsetName(from_ascii("Marginal"));
 }
 
 
-Inset * InsetMarginal::clone(Buffer const &, bool same_id) const
+auto_ptr<InsetBase> InsetMarginal::doClone() const
 {
-       return new InsetMarginal(*const_cast<InsetMarginal *>(this), same_id);
+       return auto_ptr<InsetBase>(new InsetMarginal(*this));
 }
 
 
-string const InsetMarginal::editMessage() const
+docstring 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, odocstream & 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;
 }
+
+int InsetMarginal::docbook(Buffer const & buf, odocstream & os,
+                      OutputParams const & runparams) const
+{
+       os << "<note role=\"margin\">";
+       int const i = InsetText::docbook(buf, os, runparams);
+       os << "</note>";
+
+       return i;
+}
+
+
+} // namespace lyx