X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FRenderButton.cpp;h=ee1b1f44cd04326aafa2ae8d631873cb9520622b;hb=152817576adaefaa1be8f124b9feecd5c2bfd7c2;hp=6a8372f77c64d1b712232da4a6d20dd43fb67cbd;hpb=897436efbb9bd641b61467d185a2dfae9839e575;p=lyx.git diff --git a/src/insets/RenderButton.cpp b/src/insets/RenderButton.cpp index 6a8372f77c..ee1b1f44cd 100644 --- a/src/insets/RenderButton.cpp +++ b/src/insets/RenderButton.cpp @@ -12,7 +12,6 @@ #include "RenderButton.h" -#include "Color.h" #include "MetricsInfo.h" #include "frontends/FontMetrics.h" @@ -21,18 +20,15 @@ namespace lyx { -using std::string; -using std::auto_ptr; - RenderButton::RenderButton() : editable_(false) {} -auto_ptr RenderButton::clone(Inset const *) const +RenderBase * RenderButton::clone(Inset const *) const { - return auto_ptr(new RenderButton(*this)); + return new RenderButton(*this); } @@ -43,9 +39,9 @@ void RenderButton::update(docstring const & text, bool editable) } -bool RenderButton::metrics(MetricsInfo &, Dimension & dim) const +void RenderButton::metrics(MetricsInfo &, Dimension & dim) const { - Font font(Font::ALL_SANE); + FontInfo font = sane_font; font.decSize(); frontend::FontMetrics const & fm = theFontMetrics(font); @@ -55,26 +51,22 @@ bool RenderButton::metrics(MetricsInfo &, Dimension & dim) const else fm.rectText(text_, dim.wid, dim.asc, dim.des); - dim.wid += 4; - if (dim_ == dim) - return false; dim_ = dim; - return true; } void RenderButton::draw(PainterInfo & pi, int x, int y) const { // Draw it as a box with the LaTeX text - Font font(Font::ALL_SANE); - font.setColor(Color::command); + FontInfo font = sane_font; + font.setColor(Color_command); font.decSize(); if (editable_) { - pi.pain.buttonText(x + 2, y, text_, font, renderState()); + pi.pain.buttonText(x, y, text_, font, renderState()); } else { - pi.pain.rectText(x + 2, y, text_, font, - Color::commandbg, Color::commandframe); + pi.pain.rectText(x, y, text_, font, + Color_commandbg, Color_commandframe); } }