]> git.lyx.org Git - lyx.git/blob - src/insets/insetminipage.h
Fix for the deleteLyXText const problem.
[lyx.git] / src / insets / insetminipage.h
1 // -*- C++ -*-
2 /* This file is part of
3  * ======================================================
4  * 
5  *           LyX, The Document Processor
6  *
7  *           Copyright 1998 The LyX Team.
8  *
9  *======================================================
10  */
11
12 #ifndef InsetMinipage_H
13 #define InsetMinipage_H
14
15 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "insetcollapsable.h"
20
21 class Painter;
22
23 /** The footnote inset
24   
25 */
26 class InsetMinipage : public InsetCollapsable {
27 public:
28         ///
29         InsetMinipage();
30         ///
31         void Write(Buffer const * buf, std::ostream & os) const;
32         ///
33         Inset * Clone() const;
34         ///
35         Inset::Code LyxCode() const { return Inset::MINIPAGE_CODE; }
36         ///
37         int Latex(Buffer const *, std::ostream &, bool fragile, bool fp) const;
38         ///
39         const char * EditMessage() const;
40         ///
41         bool InsertInsetAllowed(Inset * inset) const;
42         ///
43 //      LyXFont GetDrawFont(BufferView *, LyXParagraph * par, int pos) const;
44 };
45
46 #endif