]> git.lyx.org Git - lyx.git/blob - src/insets/insetenv.h
add warning make controllers compile and remove some alomost unused functions, commen...
[lyx.git] / src / insets / insetenv.h
1 // -*- C++ -*-
2 /**
3  * \file insetenv.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author André Pönitz
8  *
9  * Full author contact details are available in file CREDITS
10  */
11
12 #ifndef INSETENVIRONMENT_H
13 #define INSETENVIRONMENT_H
14
15 #include "insettext.h"
16 #include "lyxlayout_ptr_fwd.h"
17
18 class InsetEnvironment : public InsetText {
19 public:
20         ///
21         InsetEnvironment(BufferParams const &, string const & name);
22         ///
23         InsetEnvironment(InsetEnvironment const &, bool same_id = false);
24         ///
25         void write(Buffer const * buf, std::ostream & os) const;
26         ///
27         void read(Buffer const * buf, LyXLex & lex);
28         ///
29         Inset * clone(Buffer const &, bool same_id = false) const;
30         ///
31         Inset::Code lyxCode() const { return Inset::ENVIRONMENT_CODE; }
32         ///
33         int latex(Buffer const *, std::ostream &, bool fragile, bool fp) const;
34         ///
35         string const editMessage() const;
36         ///
37         Inset::EDITABLE editable() const { return HIGHLY_EDITABLE; }
38         ///
39         bool isTextInset() const { return true; }
40         ///
41         LyXLayout_ptr const & layout() const;
42         ///
43         bool needFullRow() const { return true; }
44         /** returns true if, when outputing LaTeX, font changes should
45             be closed before generating this inset. This is needed for
46             insets that may contain several paragraphs */
47         bool noFontChange() const { return true; }
48
49 private:
50         /// the layout
51         LyXLayout_ptr layout_;
52 };
53
54 #endif