]> git.lyx.org Git - lyx.git/blob - src/insets/InsetMarginal.cpp
Improve keyval highlighter
[lyx.git] / src / insets / InsetMarginal.cpp
1 /**
2  * \file InsetMarginal.cpp
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 "Buffer.h"
17 #include "BufferParams.h"
18 #include "output_docbook.h"
19 #include "TocBackend.h"
20
21 #include "support/docstream.h"
22 #include "support/gettext.h"
23 #include "support/lstrings.h"
24
25 namespace lyx {
26
27
28 InsetMarginal::InsetMarginal(Buffer * buf)
29         : InsetFootlike(buf)
30 {}
31
32
33 int InsetMarginal::plaintext(odocstringstream & os,
34                              OutputParams const & runparams, size_t max_length) const
35 {
36         os << '[' << buffer().B_("margin") << ":\n";
37         InsetText::plaintext(os, runparams, max_length);
38         os << "\n]";
39
40         return PLAINTEXT_NEWLINE + 1; // one char on a separate line
41 }
42
43
44 void InsetMarginal::docbook(XMLStream & xs, OutputParams const & runparams) const
45 {
46         // Implementation as per http://www.sagehill.net/docbookxsl/SideFloats.html
47         // Unfortunately, only for XSL-FO output with the default style sheets, hence the role.
48         xs << xml::StartTag("sidebar", "role=\"margin\"");
49         xs << xml::CR();
50         xs << XMLStream::ESCAPE_NONE << "<?dbfo float-type=\"margin.note\"?>";
51         xs << xml::CR();
52         InsetText::docbook(xs, runparams);
53         xs << xml::EndTag("sidebar");
54 }
55
56
57 } // namespace lyx