From 4cd408e8d070d93e40ee346e378a410b2c6438c9 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Fri, 30 Oct 2015 00:50:48 -0400 Subject: [PATCH] link button: Add a style class Add a .link style class to differentiate link buttons from normal buttons. --- gtk/gtklinkbutton.c | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/gtk/gtklinkbutton.c b/gtk/gtklinkbutton.c index 7f8be6ace4..99d7fd3332 100644 --- a/gtk/gtklinkbutton.c +++ b/gtk/gtklinkbutton.c @@ -42,6 +42,11 @@ * clicked. This behaviour can be overridden by connecting to the * #GtkLinkButton::activate-link signal and returning %TRUE from the * signal handler. + * + * # CSS nodes + * + * GtkLinkButton has a single CSS node with name button. To differentiate + * it from a plain #GtkButton, it gets the .link style class. */ #include "config.h" @@ -205,11 +210,14 @@ gtk_link_button_class_init (GtkLinkButtonClass *klass) G_TYPE_BOOLEAN, 0); gtk_widget_class_set_accessible_type (widget_class, GTK_TYPE_LINK_BUTTON_ACCESSIBLE); + gtk_widget_class_set_css_name (widget_class, "button"); } static void gtk_link_button_init (GtkLinkButton *link_button) { + GtkStyleContext *context; + link_button->priv = gtk_link_button_get_instance_private (link_button); gtk_button_set_relief (GTK_BUTTON (link_button), GTK_RELIEF_NONE); @@ -231,6 +239,9 @@ gtk_link_button_init (GtkLinkButton *link_button) GDK_BUTTON1_MASK, link_drop_types, G_N_ELEMENTS (link_drop_types), GDK_ACTION_COPY); + + context = gtk_widget_get_style_context (GTK_WIDGET (link_button)); + gtk_style_context_add_class (context, "link"); } static void