mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-29 06:51:10 +00:00
a11y: Remove idle handler for switch action handling
This commit is contained in:
parent
8efc350127
commit
659d24c9ab
@ -55,17 +55,6 @@ gtk_switch_accessible_ref_state_set (AtkObject *accessible)
|
||||
return state_set;
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_switch_accessible_finalize (GObject *obj)
|
||||
{
|
||||
GtkSwitchAccessible *accessible = (GtkSwitchAccessible *)obj;
|
||||
|
||||
if (accessible->action_idle)
|
||||
g_source_remove (accessible->action_idle);
|
||||
|
||||
G_OBJECT_CLASS (gtk_switch_accessible_parent_class)->finalize (obj);
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_switch_accessible_initialize (AtkObject *accessible,
|
||||
gpointer widget)
|
||||
@ -80,11 +69,8 @@ gtk_switch_accessible_initialize (AtkObject *accessible,
|
||||
static void
|
||||
gtk_switch_accessible_class_init (GtkSwitchAccessibleClass *klass)
|
||||
{
|
||||
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
||||
AtkObjectClass *atk_class = ATK_OBJECT_CLASS (klass);
|
||||
|
||||
object_class->finalize = gtk_switch_accessible_finalize;
|
||||
|
||||
atk_class->initialize = gtk_switch_accessible_initialize;
|
||||
atk_class->ref_state_set = gtk_switch_accessible_ref_state_set;
|
||||
}
|
||||
@ -92,7 +78,6 @@ gtk_switch_accessible_class_init (GtkSwitchAccessibleClass *klass)
|
||||
static void
|
||||
gtk_switch_accessible_init (GtkSwitchAccessible *self)
|
||||
{
|
||||
self->action_idle = 0;
|
||||
}
|
||||
|
||||
static gint
|
||||
@ -111,32 +96,11 @@ gtk_switch_action_get_name (AtkAction *action,
|
||||
return "toggle";
|
||||
}
|
||||
|
||||
static gboolean
|
||||
idle_do_action (gpointer data)
|
||||
{
|
||||
GtkSwitchAccessible *accessible = data;
|
||||
GtkWidget *widget;
|
||||
GtkSwitch *sw;
|
||||
|
||||
widget = gtk_accessible_get_widget (GTK_ACCESSIBLE (data));
|
||||
sw = GTK_SWITCH (widget);
|
||||
|
||||
accessible->action_idle = 0;
|
||||
|
||||
if (widget == NULL ||
|
||||
!gtk_widget_is_sensitive (widget) || !gtk_widget_get_visible (widget))
|
||||
return FALSE;
|
||||
|
||||
gtk_switch_set_active (sw, !gtk_switch_get_active (sw));
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
static gboolean
|
||||
gtk_switch_action_do_action (AtkAction *action,
|
||||
gint i)
|
||||
{
|
||||
GtkSwitchAccessible *accessible;
|
||||
GtkSwitch *sw;
|
||||
GtkWidget *widget;
|
||||
|
||||
widget = gtk_accessible_get_widget (GTK_ACCESSIBLE (action));
|
||||
@ -149,10 +113,8 @@ gtk_switch_action_do_action (AtkAction *action,
|
||||
if (!gtk_widget_is_sensitive (widget) || !gtk_widget_get_visible (widget))
|
||||
return FALSE;
|
||||
|
||||
accessible = (GtkSwitchAccessible *)action;
|
||||
|
||||
if (!accessible->action_idle)
|
||||
accessible->action_idle = gdk_threads_add_idle (idle_do_action, accessible);
|
||||
sw = GTK_SWITCH (widget);
|
||||
gtk_switch_set_active (sw, !gtk_switch_get_active (sw));
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
@ -37,8 +37,6 @@ typedef struct _GtkSwitchAccessibleClass GtkSwitchAccessibleClass;
|
||||
struct _GtkSwitchAccessible
|
||||
{
|
||||
GtkWidgetAccessible parent;
|
||||
|
||||
guint action_idle;
|
||||
};
|
||||
|
||||
struct _GtkSwitchAccessibleClass
|
||||
|
Loading…
Reference in New Issue
Block a user