]> git.lyx.org Git - lyx.git/blob - src/insets/insetmarginal.C
Change _() to return a docstring. Fixup callers with the help of lyx::to_utf8.
[lyx.git] / src / insets / insetmarginal.C
1 /**
2  * \file insetmarginal.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Jürgen Vigna
7  * \author Lars Gullik Bjønnes
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "insetmarginal.h"
15
16 #include "gettext.h"
17 #include "paragraph.h"
18
19 #include "support/std_ostream.h"
20
21
22 using std::string;
23 using std::auto_ptr;
24 using std::ostream;
25
26
27 InsetMarginal::InsetMarginal(BufferParams const & bp)
28         : InsetFootlike(bp)
29 {
30         // FIXME UNICODE
31         setLabel(lyx::to_utf8(_("margin")));
32         setInsetName("Marginal");
33 }
34
35
36 InsetMarginal::InsetMarginal(InsetMarginal const & in)
37         : InsetFootlike(in)
38 {
39         // FIXME UNICODE
40         setLabel(lyx::to_utf8(_("margin")));
41         setInsetName("Marginal");
42 }
43
44
45 auto_ptr<InsetBase> InsetMarginal::doClone() const
46 {
47         return auto_ptr<InsetBase>(new InsetMarginal(*this));
48 }
49
50
51 string const InsetMarginal::editMessage() const
52 {
53         // FIXME UNICODE
54         return lyx::to_utf8(_("Opened Marginal Note Inset"));
55 }
56
57
58 int InsetMarginal::latex(Buffer const & buf, ostream & os,
59                          OutputParams const & runparams) const
60 {
61         os << "%\n\\marginpar{";
62         int const i = InsetText::latex(buf, os, runparams);
63         os << "%\n}";
64         return i + 2;
65 }
66
67 int InsetMarginal::docbook(Buffer const & buf, ostream & os,
68                        OutputParams const & runparams) const
69 {
70         os << "<note role=\"margin\">";
71         int const i = InsetText::docbook(buf, os, runparams);
72         os << "</note>";
73
74         return i;
75 }