]> git.lyx.org Git - lyx.git/blob - src/insets/insetfootlike.h
update no.po
[lyx.git] / src / insets / insetfootlike.h
1 // -*- C++ -*-
2 /**
3  * \file insetfootlike.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Lars Gullik Bjønnes
8  *
9  * Full author contact details are available in file CREDITS
10  */
11
12 #ifndef INSETFOOTLIKE_H
13 #define INSETFOOTLIKE_H
14
15 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "insetcollapsable.h"
20
21 // To have this class is probably a bit overkill... (Lgb)
22
23 /** The footnote inset
24
25 */
26 class InsetFootlike : public InsetCollapsable {
27 public:
28         ///
29         InsetFootlike(BufferParams const &);
30         ///
31         InsetFootlike(InsetFootlike const &, bool same_id = false);
32         ///
33         void write(Buffer const * buf, std::ostream & os) const;
34         ///
35         bool insetAllowed(Inset::Code) const;
36         /** returns true if, when outputing LaTeX, font changes should
37             be closed before generating this inset. This is needed for
38             insets that may contain several paragraphs */
39         bool noFontChange() const { return true; }
40 };
41
42 #endif