]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetert.C
fix compilation pb ; update eu.po
[lyx.git] / src / insets / insetert.C
index 795ca2c042dc54fcc1bba3c0fe4e049364f9b779..c83ad95e4eee2653cdd879d8819dc011443efe36 100644 (file)
 #include "insetert.h"
 #include "gettext.h"
 #include "lyxfont.h"
-#include "Painter.h"
 #include "buffer.h"
+#include "insets/insettext.h"
 #include "support/LOstream.h"
 #include "lyx_gui_misc.h"
 
 using std::ostream;
 
-InsetERT::InsetERT(Buffer * bf)
-       : InsetCollapsable(bf)
+InsetERT::InsetERT() : InsetCollapsable()
 {
-    setLabel(_("ERT"));
-    LyXFont font(LyXFont::ALL_SANE);
-    font.setLatex (LyXFont::ON);
-    real_current_font = current_font = font;
-    LyXFont labelfont(LyXFont::ALL_SANE);
-    labelfont.decSize();
-    labelfont.decSize();
-    labelfont.setColor(LColor::ert);
-    setLabelFont(labelfont);
-    setAutoCollapse(false);
-    setInsetName("ERT");
+       setLabel(_("ERT"));
+       LyXFont font(LyXFont::ALL_SANE);
+       font.setLatex (LyXFont::ON);
+       labelfont = LyXFont(LyXFont::ALL_SANE);
+       labelfont.decSize();
+       labelfont.decSize();
+       labelfont.setColor(LColor::ert);
+       setAutoCollapse(false);
+       setInsetName("ERT");
 }
 
 
-Inset * InsetERT::Clone() const
+void InsetERT::Write(Buffer const * buf, ostream & os) const 
 {
-    InsetERT * result = new InsetERT(buffer);
-    result->init(buffer, this);
-
-    result->collapsed = collapsed;
-    return result;
+       os << getInsetName() << "\n";
+       InsetCollapsable::Write(buf, os);
 }
 
 
-char const * InsetERT::EditMessage() const 
+Inset * InsetERT::Clone(Buffer const &) const
 {
-       return _("Opened ERT Inset");
+       InsetERT * result = new InsetERT;
+       result->inset.init(&inset);
+       
+       result->collapsed = collapsed;
+       return result;
 }
 
 
-bool InsetERT::InsertInset(BufferView *, Inset *)
+string const InsetERT::EditMessage() const 
 {
-    return false;
+       return _("Opened ERT Inset");
 }
 
 
 void InsetERT::SetFont(BufferView *, LyXFont const &, bool)
 {
-    WriteAlert(_("Impossible Operation!"),
-              _("Not permitted to change font-types inside ERT-insets!"),
-              _("Sorry."));
+       WriteAlert(_("Impossible Operation!"),
+                  _("Not permitted to change font-types inside ERT-insets!"),
+                  _("Sorry."));
 }
 
+
 void InsetERT::Edit(BufferView * bv, int x, int y, unsigned int button)
 {
-    InsetCollapsable::Edit(bv, x, y, button);
-    LyXFont font(LyXFont::ALL_SANE);
-    font.setLatex (LyXFont::ON);
-    current_font = real_current_font = font;
+       InsetCollapsable::Edit(bv, x, y, button);
+       LyXFont font(LyXFont::ALL_SANE);
+       font.setLatex (LyXFont::ON);
 }