X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FRenderButton.cpp;h=ed6e26b51e6d1d8c7bb9fd71ad0afaa351c823fd;hb=75bfed55079cab6b73fbea6ce4ae3f10d1af3b91;hp=ee1b1f44cd04326aafa2ae8d631873cb9520622b;hpb=b917c4e40f9f5cd3d101444600eddafcca54d6e3;p=lyx.git diff --git a/src/insets/RenderButton.cpp b/src/insets/RenderButton.cpp index ee1b1f44cd..ed6e26b51e 100644 --- a/src/insets/RenderButton.cpp +++ b/src/insets/RenderButton.cpp @@ -22,7 +22,7 @@ namespace lyx { RenderButton::RenderButton() - : editable_(false) + : editable_(false), inherit_font_(false) {} @@ -32,24 +32,22 @@ RenderBase * RenderButton::clone(Inset const *) const } -void RenderButton::update(docstring const & text, bool editable) +void RenderButton::update(docstring const & text, bool editable, + bool inherit_font) { text_ = text; editable_ = editable; + inherit_font_ = inherit_font; } -void RenderButton::metrics(MetricsInfo &, Dimension & dim) const +void RenderButton::metrics(MetricsInfo & mi, Dimension & dim) const { - FontInfo font = sane_font; + FontInfo font = inherit_font_ ? mi.base.font : sane_font; font.decSize(); - frontend::FontMetrics const & fm = - theFontMetrics(font); + frontend::FontMetrics const & fm = theFontMetrics(font); - if (editable_) - fm.buttonText(text_, dim.wid, dim.asc, dim.des); - else - fm.rectText(text_, dim.wid, dim.asc, dim.des); + fm.buttonText(text_, Inset::TEXT_TO_INSET_OFFSET, dim.wid, dim.asc, dim.des); dim_ = dim; } @@ -58,15 +56,18 @@ void RenderButton::metrics(MetricsInfo &, Dimension & dim) const void RenderButton::draw(PainterInfo & pi, int x, int y) const { // Draw it as a box with the LaTeX text - FontInfo font = sane_font; + FontInfo font = inherit_font_ ? pi.base.font : sane_font; font.setColor(Color_command); font.decSize(); if (editable_) { - pi.pain.buttonText(x, y, text_, font, renderState()); + pi.pain.buttonText(x, y, text_, font, + renderState() ? Color_buttonhoverbg : Color_buttonbg, + Color_buttonframe, Inset::TEXT_TO_INSET_OFFSET); } else { - pi.pain.rectText(x, y, text_, font, - Color_commandbg, Color_commandframe); + pi.pain.buttonText(x, y, text_, font, + Color_commandbg, Color_commandframe, + Inset::TEXT_TO_INSET_OFFSET); } }