]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetERT.cpp
pimpl not needed here
[lyx.git] / src / insets / InsetERT.cpp
index 8342b2f8d84ea4897e1554fe8593ccc7fdb3c7c1..650b7811c9f845831a13f168d34a9086cdda5320 100644 (file)
@@ -52,7 +52,6 @@ using std::string;
 void InsetERT::init()
 {
        setButtonLabel();
-       setLabelFont(layout_.labelfont);
        // FIXME: what to do with those?
        //text_.current_font.setLanguage(latex_language);
        //text_.real_current_font.setLanguage(latex_language);
@@ -62,7 +61,6 @@ void InsetERT::init()
 InsetERT::InsetERT(BufferParams const & bp, CollapseStatus status)
        : InsetCollapsable(bp, status)
 {
-       setLayout(bp);
        init();
 }
 
@@ -101,19 +99,6 @@ InsetERT::~InsetERT()
 }
 
 
-void InsetERT::resetParagraphsFont()
-{
-       Font font(inherit_font, latex_language);
-       ParagraphList::iterator par = paragraphs().begin();
-       ParagraphList::iterator const end = paragraphs().end();
-       while (par != end) {
-               par->resetFonts(font);
-               par->params().clear();
-               ++par;
-       }
-}
-
-
 void InsetERT::write(Buffer const & buf, ostream & os) const
 {
        os << "ERT" << "\n";
@@ -252,24 +237,10 @@ bool InsetERT::insetAllowed(InsetCode /* code */) const
 }
 
 
-void InsetERT::metrics(MetricsInfo & mi, Dimension & dim) const
-{
-       FontInfo tmpfont = mi.base.font;
-       getDrawFont(mi.base.font);
-       mi.base.font.realize(tmpfont);
-       InsetCollapsable::metrics(mi, dim);
-       mi.base.font = tmpfont;
-}
-
-
 void InsetERT::draw(PainterInfo & pi, int x, int y) const
 {
-       FontInfo tmpfont = pi.base.font;
-       getDrawFont(pi.base.font);
-       pi.base.font.realize(tmpfont);
        const_cast<InsetERT &>(*this).setButtonLabel();
        InsetCollapsable::draw(pi, x, y);
-       pi.base.font = tmpfont;
 }
 
 
@@ -280,13 +251,6 @@ bool InsetERT::showInsetDialog(BufferView * bv) const
 }
 
 
-void InsetERT::getDrawFont(FontInfo & font) const
-{
-       font = inherit_font;
-       font.realize(layout_.font);
-}
-
-
 string const InsetERTMailer::name_("ert");
 
 InsetERTMailer::InsetERTMailer(InsetERT & inset)