]> git.lyx.org Git - lyx.git/blob - src/insets/insetfoot.h
The speed patch: redraw only rows that have changed
[lyx.git] / src / insets / insetfoot.h
1 // -*- C++ -*-
2 /**
3  * \file insetfoot.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Jürgen Vigna
8  * \author Lars Gullik Bjønnes
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #ifndef INSETFOOT_H
14 #define INSETFOOT_H
15
16 #include "insetfootlike.h"
17
18 /** The footnote inset
19
20 */
21 class InsetFoot : public InsetFootlike {
22 public:
23         ///
24         InsetFoot(BufferParams const &);
25         ///
26         InsetBase::Code lyxCode() const { return InsetBase::FOOT_CODE; }
27         ///
28         int latex(Buffer const &, std::ostream &,
29                   OutputParams const &) const;
30         ///
31         int docbook(Buffer const &, std::ostream &,
32                     OutputParams const & runparams) const;
33         ///
34         std::string const editMessage() const;
35 protected:
36         InsetFoot(InsetFoot const &);
37 private:
38         virtual std::auto_ptr<InsetBase> doClone() const;
39 };
40
41 #endif