]> git.lyx.org Git - lyx.git/blob - src/insets/insetfoot.C
Enable convertDefault.sh to run even if its executable bit is not set.
[lyx.git] / src / insets / insetfoot.C
1 /**
2  * \file insetfoot.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 "insetfoot.h"
15 #include "gettext.h"
16 #include "lyxfont.h"
17 #include "BufferView.h"
18 #include "latexrunparams.h"
19 #include "lyxtext.h"
20 #include "insets/insettext.h"
21 #include "support/LOstream.h"
22 #include "debug.h"
23 // the following are needed just to get the layout of the enclosing
24 // paragraph. This seems a bit too much to me (JMarc)
25 #include "lyxlayout.h"
26 #include "paragraph_funcs.h"
27
28
29 using std::ostream;
30 using std::auto_ptr;
31
32
33 InsetFoot::InsetFoot(BufferParams const & bp)
34         : InsetFootlike(bp)
35 {
36         setLabel(_("foot"));
37         setInsetName("Foot");
38 }
39
40
41 InsetFoot::InsetFoot(InsetFoot const & in)
42         : InsetFootlike(in)
43 {
44         setLabel(_("foot"));
45         setInsetName("Foot");
46 }
47
48
49 auto_ptr<InsetBase> InsetFoot::clone() const
50 {
51         return auto_ptr<InsetBase>(new InsetFoot(*this));
52 }
53
54
55 string const InsetFoot::editMessage() const
56 {
57         return _("Opened Footnote Inset");
58 }
59
60
61 int InsetFoot::latex(Buffer const & buf, ostream & os,
62                      LatexRunParams const & runparams_in) const
63 {
64         LatexRunParams runparams = runparams_in;
65         runparams.moving_arg |= ownerPar(buf, this).layout()->intitle;
66
67         os << "%\n\\footnote{";
68
69         int const i = inset.latex(buf, os, runparams);
70         os << "%\n}";
71
72         return i + 2;
73 }
74
75
76 int InsetFoot::docbook(Buffer const & buf, ostream & os, bool mixcont) const
77 {
78         os << "<footnote>";
79         int const i = inset.docbook(buf, os, mixcont);
80         os << "</footnote>";
81
82         return i;
83 }