mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-03 17:21:11 +00:00
link button: Add a style class
Add a .link style class to differentiate link buttons from normal buttons.
This commit is contained in:
parent
9e5914ebde
commit
4cd408e8d0
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user