]> git.lyx.org Git - lyx.git/blob - src/insets/insetert.h
reformatting and remove using delc
[lyx.git] / src / insets / insetert.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 // The pristine updatable inset: Text
12
13
14 #ifndef INSETERT_H
15 #define INSETERT_H
16
17 #ifdef __GNUG__
18 #pragma interface
19 #endif
20
21 #include "insetcollapsable.h"
22
23 /** A colapsable text inset
24   
25   To write full ert (including styles and other insets) in a given
26   space. 
27 */
28 class InsetERT : public InsetCollapsable {
29 public:
30         ///
31         InsetERT();
32         ///
33         void Write(Buffer const * buf, std::ostream & os) const;
34         ///
35         Inset * Clone(Buffer const &) const;
36         ///
37         string const EditMessage() const;
38         ///
39         bool InsertInset(BufferView *, Inset *) { return false; }
40         ///
41         void SetFont(BufferView *, LyXFont const &, bool toggleall = false);
42         ///
43         void Edit(BufferView *, int, int, unsigned int);
44 };
45
46 #endif