]> git.lyx.org Git - lyx.git/blob - src/insets/insetfootlike.h
The speed patch: redraw only rows that have changed
[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 draw(PainterInfo & pi, int x, int y) const;
30         ///
31         void write(Buffer const & buf, std::ostream & os) const;
32         ///
33         bool insetAllowed(InsetBase::Code) const;
34         /** returns true if, when outputing LaTeX, font changes should
35             be closed before generating this inset. This is needed for
36             insets that may contain several paragraphs */
37         bool noFontChange() const { return true; }
38 };
39
40 #endif