]> git.lyx.org Git - lyx.git/blob - src/insets/insetfootlike.h
* src/LyXAction.C: mark goto-clear-bookmark as working without buffer
[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
18 namespace lyx {
19
20 // To have this class is probably a bit overkill... (Lgb)
21
22 // The footnote inset
23 class InsetFootlike : public InsetCollapsable {
24 public:
25         ///
26         InsetFootlike(BufferParams const &);
27         ///
28         InsetFootlike(InsetFootlike const &);
29         ///
30         bool metrics(MetricsInfo &, Dimension &) const;
31         ///
32         void draw(PainterInfo & pi, int x, int y) const;
33         ///
34         void write(Buffer const & buf, std::ostream & os) const;
35         ///
36         bool insetAllowed(InsetBase::Code) const;
37         /** returns true if, when outputing LaTeX, font changes should
38             be closed before generating this inset. This is needed for
39             insets that may contain several paragraphs */
40         bool noFontChange() const { return true; }
41 };
42
43
44 } // namespace lyx
45
46 #endif