Skip to content

Commit

Permalink
[GTK] Toggle buttons are blurry with GTK+ 3.19
Browse files Browse the repository at this point in the history
https://bugs.webkit.org/show_bug.cgi?id=154007

Reviewed by Michael Catanzaro.

Use min-width/min-height style properties when GTK+ >= 3.19.7 to
get the size of toggle buttons.

* rendering/RenderThemeGtk.cpp:
(WebCore::setToggleSize):
(WebCore::paintToggle):

Canonical link: https://commits.webkit.org/172171@main
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@196364 268f45cc-cd09-0410-ab3c-d52691b4dbfc
  • Loading branch information
carlosgcampos committed Feb 10, 2016
1 parent 376e7bb commit 548b7ea
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 8 deletions.
14 changes: 14 additions & 0 deletions Source/WebCore/ChangeLog
@@ -1,3 +1,17 @@
2016-02-09 Carlos Garcia Campos <cgarcia@igalia.com>

[GTK] Toggle buttons are blurry with GTK+ 3.19
https://bugs.webkit.org/show_bug.cgi?id=154007

Reviewed by Michael Catanzaro.

Use min-width/min-height style properties when GTK+ >= 3.19.7 to
get the size of toggle buttons.

* rendering/RenderThemeGtk.cpp:
(WebCore::setToggleSize):
(WebCore::paintToggle):

2016-02-09 Aakash Jain <aakash_jain@apple.com>

Headers that use WEBCORE_EXPORT should include PlatformExportMacros.h
Expand Down
38 changes: 30 additions & 8 deletions Source/WebCore/rendering/RenderThemeGtk.cpp
Expand Up @@ -543,12 +543,23 @@ static void setToggleSize(RenderThemePart themePart, RenderStyle& style)
// Other ports hard-code this to 13. GTK+ users tend to demand the native look.
gint indicatorSize;
gtk_style_context_get_style(context.get(), "indicator-size", &indicatorSize, nullptr);
IntSize minSize(indicatorSize, indicatorSize);

#if GTK_CHECK_VERSION(3, 19, 7)
GRefPtr<GtkStyleContext> childContext = createStyleContext(themePart == CheckButton ? CheckButtonCheck : RadioButtonRadio, context.get());
gint minWidth, minHeight;
gtk_style_context_get(childContext.get(), gtk_style_context_get_state(childContext.get()), "min-width", &minWidth, "min-height", &minHeight, nullptr);
if (minWidth)
minSize.setWidth(minWidth);
if (minHeight)
minSize.setHeight(minHeight);
#endif

if (style.width().isIntrinsicOrAuto())
style.setWidth(Length(indicatorSize, Fixed));
style.setWidth(Length(minSize.width(), Fixed));

if (style.height().isAuto())
style.setHeight(Length(indicatorSize, Fixed));
style.setHeight(Length(minSize.height(), Fixed));
}

static void paintToggle(const RenderThemeGtk* theme, RenderThemePart themePart, const RenderObject& renderObject, const PaintInfo& paintInfo, const IntRect& fullRect)
Expand Down Expand Up @@ -580,15 +591,26 @@ static void paintToggle(const RenderThemeGtk* theme, RenderThemePart themePart,
// buttons to be a smaller size is that we don't want to break site layouts.
gint indicatorSize;
gtk_style_context_get_style(context.get(), "indicator-size", &indicatorSize, nullptr);
IntSize minSize(indicatorSize, indicatorSize);

#if GTK_CHECK_VERSION(3, 19, 7)
gint minWidth, minHeight;
gtk_style_context_get(context.get(), gtk_style_context_get_state(context.get()), "min-width", &minWidth, "min-height", &minHeight, nullptr);
if (minWidth)
minSize.setWidth(minWidth);
if (minHeight)
minSize.setHeight(minHeight);
#endif

IntRect rect(fullRect);
if (rect.width() > indicatorSize) {
rect.inflateX(-(rect.width() - indicatorSize) / 2);
rect.setWidth(indicatorSize); // In case rect.width() was equal to indicatorSize + 1.
if (rect.width() > minSize.width()) {
rect.inflateX(-(rect.width() - minSize.width()) / 2);
rect.setWidth(minSize.width()); // In case rect.width() was equal to minSize.width() + 1.
}

if (rect.height() > indicatorSize) {
rect.inflateY(-(rect.height() - indicatorSize) / 2);
rect.setHeight(indicatorSize); // In case rect.height() was equal to indicatorSize + 1.
if (rect.height() > minSize.height()) {
rect.inflateY(-(rect.height() - minSize.height()) / 2);
rect.setHeight(minSize.height()); // In case rect.height() was equal to minSize.height() + 1.
}

gtk_render_background(context.get(), paintInfo.context().platformContext()->cr(), rect.x(), rect.y(), rect.width(), rect.height());
Expand Down

0 comments on commit 548b7ea

Please sign in to comment.