]> git.lyx.org Git - lyx.git/blob - src/insets/insetert.C
bbbd43edc2f514a542183a0b877d6c35078c4a80
[lyx.git] / src / insets / insetert.C
1 /* This file is part of
2  * ======================================================
3  * 
4  *           LyX, The Document Processor
5  *       
6  *          Copyright 1998 The LyX Team.
7  *
8  *======================================================*/
9
10 #include <config.h>
11
12 #ifdef __GNUG__
13 #pragma implementation
14 #endif
15
16 #include "insetert.h"
17 #include "gettext.h"
18 #include "lyxfont.h"
19 #include "Painter.h"
20 #include "buffer.h"
21 #include "support/LOstream.h"
22 #include "lyx_gui_misc.h"
23
24 using std::ostream;
25
26 InsetERT::InsetERT(Buffer * bf)
27         : InsetCollapsable(bf)
28 {
29     setLabel(_("ERT"));
30     LyXFont font(LyXFont::ALL_SANE);
31     font.setLatex (LyXFont::ON);
32     real_current_font = current_font = font;
33     LyXFont labelfont(LyXFont::ALL_SANE);
34     labelfont.decSize();
35     labelfont.decSize();
36     labelfont.setColor(LColor::ert);
37     setLabelFont(labelfont);
38     setAutoCollapse(false);
39 }
40
41
42 Inset * InsetERT::Clone() const
43 {
44     InsetERT * result = new InsetERT(buffer);
45     result->init(buffer, this);
46     return result;
47 }
48
49
50 void InsetERT::Write(ostream & os) const
51 {
52     os << "ERT\n";
53     WriteParagraphData(os);
54 }
55
56
57 char const * InsetERT::EditMessage() const 
58 {
59         return _("Opened ERT Inset");
60 }
61
62
63 bool InsetERT::InsertInset(BufferView *, Inset *)
64 {
65     return false;
66 }
67
68
69 void InsetERT::SetFont(BufferView *, LyXFont const &, bool)
70 {
71     WriteAlert(_("Impossible Operation!"),
72                _("Not permitted to change font-types inside ERT-insets!"),
73                _("Sorry."));
74 }
75
76 void InsetERT::Edit(BufferView * bv, int x, int y, unsigned int button)
77 {
78     InsetCollapsable::Edit(bv, x, y, button);
79     LyXFont font(LyXFont::ALL_SANE);
80     font.setLatex (LyXFont::ON);
81     current_font = real_current_font = font;
82 }