]> git.lyx.org Git - lyx.git/blob - src/insets/insetfootlike.h
Enable convertDefault.sh to run even if its executable bit is not set.
[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 #include "insetcollapsable.h"
16
17 // To have this class is probably a bit overkill... (Lgb)
18
19 // The footnote inset
20 class InsetFootlike : public InsetCollapsable {
21 public:
22         ///
23         InsetFootlike(BufferParams const &);
24         ///
25         InsetFootlike(InsetFootlike const &);
26         ///
27         void metrics(MetricsInfo &, Dimension &) const;
28         ///
29         void write(Buffer const & buf, std::ostream & os) const;
30         ///
31         bool insetAllowed(InsetOld::Code) const;
32         /** returns true if, when outputing LaTeX, font changes should
33             be closed before generating this inset. This is needed for
34             insets that may contain several paragraphs */
35         bool noFontChange() const { return true; }
36 };
37
38 #endif