445 lines
		
	
	
		
			13 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			445 lines
		
	
	
		
			13 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /* GTK+ - accessibility implementations
 | |
|  * Copyright 2011, F123 Consulting & Mais Diferenças
 | |
|  * Copyright 2001, 2002, 2003 Sun Microsystems Inc.
 | |
|  *
 | |
|  * This library is free software; you can redistribute it and/or
 | |
|  * modify it under the terms of the GNU Lesser General Public
 | |
|  * License as published by the Free Software Foundation; either
 | |
|  * version 2 of the License, or (at your option) any later version.
 | |
|  *
 | |
|  * This library is distributed in the hope that it will be useful,
 | |
|  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
|  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | |
|  * Lesser General Public License for more details.
 | |
|  *
 | |
|  * You should have received a copy of the GNU Lesser General Public
 | |
|  * License along with this library. If not, see <http://www.gnu.org/licenses/>.
 | |
|  */
 | |
| 
 | |
| #include "config.h"
 | |
| 
 | |
| #include <gtk/gtk.h>
 | |
| 
 | |
| #include "gtkwidgetaccessibleprivate.h"
 | |
| #include "gtkwindowaccessible.h"
 | |
| #include "gtktoplevelaccessible.h"
 | |
| #include "gtkwindowprivate.h"
 | |
| 
 | |
| /* atkcomponent.h */
 | |
| 
 | |
| static void                  gtk_window_accessible_get_extents      (AtkComponent         *component,
 | |
|                                                            gint                 *x,
 | |
|                                                            gint                 *y,
 | |
|                                                            gint                 *width,
 | |
|                                                            gint                 *height,
 | |
|                                                            AtkCoordType         coord_type);
 | |
| static void                  gtk_window_accessible_get_size         (AtkComponent         *component,
 | |
|                                                            gint                 *width,
 | |
|                                                            gint                 *height);
 | |
| 
 | |
| static void atk_component_interface_init (AtkComponentIface *iface);
 | |
| static void atk_window_interface_init (AtkWindowIface *iface);
 | |
| 
 | |
| G_DEFINE_TYPE_WITH_CODE (GtkWindowAccessible,
 | |
|                          gtk_window_accessible,
 | |
|                          GTK_TYPE_CONTAINER_ACCESSIBLE,
 | |
|                          G_IMPLEMENT_INTERFACE (ATK_TYPE_COMPONENT,
 | |
|                                                 atk_component_interface_init)
 | |
|                          G_IMPLEMENT_INTERFACE (ATK_TYPE_WINDOW,
 | |
|                                                 atk_window_interface_init));
 | |
| 
 | |
| 
 | |
| static void
 | |
| gtk_window_accessible_focus_event (AtkObject *obj,
 | |
|                                    gboolean   focus_in)
 | |
| {
 | |
|   atk_object_notify_state_change (obj, ATK_STATE_ACTIVE, focus_in);
 | |
| }
 | |
| 
 | |
| static void
 | |
| gtk_window_accessible_notify_gtk (GObject    *obj,
 | |
|                                   GParamSpec *pspec)
 | |
| {
 | |
|   GtkWidget *widget = GTK_WIDGET (obj);
 | |
|   AtkObject* atk_obj = gtk_widget_get_accessible (widget);
 | |
| 
 | |
|   if (g_strcmp0 (pspec->name, "title") == 0)
 | |
|     {
 | |
|       g_object_notify (G_OBJECT (atk_obj), "accessible-name");
 | |
|       g_signal_emit_by_name (atk_obj, "visible-data-changed");
 | |
|     }
 | |
|   else
 | |
|     GTK_WIDGET_ACCESSIBLE_CLASS (gtk_window_accessible_parent_class)->notify_gtk (obj, pspec);
 | |
| }
 | |
| 
 | |
| static gboolean
 | |
| window_state_event_cb (GtkWidget           *widget,
 | |
|                        GdkEventWindowState *event)
 | |
| {
 | |
|   AtkObject* obj;
 | |
| 
 | |
|   obj = gtk_widget_get_accessible (widget);
 | |
|   atk_object_notify_state_change (obj, ATK_STATE_ICONIFIED,
 | |
|                                   (event->new_window_state & GDK_WINDOW_STATE_ICONIFIED) != 0);
 | |
| 
 | |
|   return FALSE;
 | |
| }
 | |
| 
 | |
| static void
 | |
| gtk_window_accessible_initialize (AtkObject *obj,
 | |
|                                   gpointer   data)
 | |
| {
 | |
|   GtkWidget *widget = GTK_WIDGET (data);
 | |
|   const gchar *name;
 | |
| 
 | |
|   ATK_OBJECT_CLASS (gtk_window_accessible_parent_class)->initialize (obj, data);
 | |
| 
 | |
|   g_signal_connect (data, "window-state-event", G_CALLBACK (window_state_event_cb), NULL);
 | |
|   _gtk_widget_accessible_set_layer (GTK_WIDGET_ACCESSIBLE (obj), ATK_LAYER_WINDOW);
 | |
| 
 | |
|   name = gtk_widget_get_name (widget);
 | |
| 
 | |
|   if (!g_strcmp0 (name, "gtk-tooltip"))
 | |
|     obj->role = ATK_ROLE_TOOL_TIP;
 | |
|   else if (gtk_window_get_window_type (GTK_WINDOW (widget)) == GTK_WINDOW_POPUP)
 | |
|     obj->role = ATK_ROLE_WINDOW;
 | |
|   else
 | |
|     obj->role = ATK_ROLE_FRAME;
 | |
| 
 | |
|   /* Notify that tooltip is showing */
 | |
|   if (obj->role == ATK_ROLE_TOOL_TIP && gtk_widget_get_mapped (widget))
 | |
|     atk_object_notify_state_change (obj, ATK_STATE_SHOWING, 1);
 | |
| }
 | |
| 
 | |
| static GtkWidget *
 | |
| find_label_child (GtkContainer *container)
 | |
| {
 | |
|   GList *children, *tmp_list;
 | |
|   GtkWidget *child;
 | |
| 
 | |
|   children = gtk_container_get_children (container);
 | |
| 
 | |
|   child = NULL;
 | |
|   for (tmp_list = children; tmp_list != NULL; tmp_list = tmp_list->next)
 | |
|     {
 | |
|       if (GTK_IS_LABEL (tmp_list->data))
 | |
|         {
 | |
|           child = GTK_WIDGET (tmp_list->data);
 | |
|           break;
 | |
|         }
 | |
|       else if (GTK_IS_CONTAINER (tmp_list->data))
 | |
|         {
 | |
|           child = find_label_child (GTK_CONTAINER (tmp_list->data));
 | |
|           if (child)
 | |
|             break;
 | |
|         }
 | |
|    }
 | |
|   g_list_free (children);
 | |
|   return child;
 | |
| }
 | |
| 
 | |
| static const gchar *
 | |
| gtk_window_accessible_get_name (AtkObject *accessible)
 | |
| {
 | |
|   const gchar* name;
 | |
|   GtkWidget* widget;
 | |
| 
 | |
|   widget = gtk_accessible_get_widget (GTK_ACCESSIBLE (accessible));
 | |
|   if (widget == NULL)
 | |
|     return NULL;
 | |
| 
 | |
|   name = ATK_OBJECT_CLASS (gtk_window_accessible_parent_class)->get_name (accessible);
 | |
|   if (name != NULL)
 | |
|     return name;
 | |
| 
 | |
|   if (GTK_IS_WINDOW (widget))
 | |
|     {
 | |
|       GtkWindow *window = GTK_WINDOW (widget);
 | |
| 
 | |
|       name = gtk_window_get_title (window);
 | |
|       if (name == NULL && accessible->role == ATK_ROLE_TOOL_TIP)
 | |
|         {
 | |
|           GtkWidget *child;
 | |
| 
 | |
|           child = find_label_child (GTK_CONTAINER (window));
 | |
|           if (GTK_IS_LABEL (child))
 | |
|             name = gtk_label_get_text (GTK_LABEL (child));
 | |
|         }
 | |
|     }
 | |
|   return name;
 | |
| }
 | |
| 
 | |
| static gint
 | |
| gtk_window_accessible_get_index_in_parent (AtkObject *accessible)
 | |
| {
 | |
|   GtkWidget* widget;
 | |
|   AtkObject* atk_obj;
 | |
|   gint index = -1;
 | |
| 
 | |
|   widget = gtk_accessible_get_widget (GTK_ACCESSIBLE (accessible));
 | |
|   if (widget == NULL)
 | |
|     return -1;
 | |
| 
 | |
|   index = ATK_OBJECT_CLASS (gtk_window_accessible_parent_class)->get_index_in_parent (accessible);
 | |
|   if (index != -1)
 | |
|     return index;
 | |
| 
 | |
|   atk_obj = atk_get_root ();
 | |
| 
 | |
|   if (GTK_IS_WINDOW (widget))
 | |
|     {
 | |
|       GtkWindow *window = GTK_WINDOW (widget);
 | |
|       if (GTK_IS_TOPLEVEL_ACCESSIBLE (atk_obj))
 | |
|         {
 | |
|           GtkToplevelAccessible *toplevel = GTK_TOPLEVEL_ACCESSIBLE (atk_obj);
 | |
|           index = g_list_index (gtk_toplevel_accessible_get_children (toplevel), window);
 | |
|         }
 | |
|       else
 | |
|         {
 | |
|           gint i, sibling_count;
 | |
| 
 | |
|           sibling_count = atk_object_get_n_accessible_children (atk_obj);
 | |
|           for (i = 0; i < sibling_count && index == -1; ++i)
 | |
|             {
 | |
|               AtkObject *child = atk_object_ref_accessible_child (atk_obj, i);
 | |
|               if (accessible == child)
 | |
|                 index = i;
 | |
|               g_object_unref (G_OBJECT (child));
 | |
|             }
 | |
|         }
 | |
|     }
 | |
|   return index;
 | |
| }
 | |
| 
 | |
| static AtkRelationSet *
 | |
| gtk_window_accessible_ref_relation_set (AtkObject *obj)
 | |
| {
 | |
|   GtkWidget *widget;
 | |
|   AtkRelationSet *relation_set;
 | |
|   AtkObject *array[1];
 | |
|   AtkRelation* relation;
 | |
|   GtkWidget *current_widget;
 | |
| 
 | |
|   widget = gtk_accessible_get_widget (GTK_ACCESSIBLE (obj));
 | |
|   if (widget == NULL)
 | |
|     return NULL;
 | |
| 
 | |
|   relation_set = ATK_OBJECT_CLASS (gtk_window_accessible_parent_class)->ref_relation_set (obj);
 | |
| 
 | |
|   if (atk_object_get_role (obj) == ATK_ROLE_TOOL_TIP)
 | |
|     {
 | |
|       relation = atk_relation_set_get_relation_by_type (relation_set, ATK_RELATION_POPUP_FOR);
 | |
|       if (relation)
 | |
|         atk_relation_set_remove (relation_set, relation);
 | |
| 
 | |
|       if (0) /* FIXME need a way to go from tooltip window to widget */
 | |
|         {
 | |
|           array[0] = gtk_widget_get_accessible (current_widget);
 | |
|           relation = atk_relation_new (array, 1, ATK_RELATION_POPUP_FOR);
 | |
|           atk_relation_set_add (relation_set, relation);
 | |
|           g_object_unref (relation);
 | |
|         }
 | |
|     }
 | |
|   return relation_set;
 | |
| }
 | |
| 
 | |
| static AtkStateSet *
 | |
| gtk_window_accessible_ref_state_set (AtkObject *accessible)
 | |
| {
 | |
|   AtkStateSet *state_set;
 | |
|   GtkWidget *widget;
 | |
|   GtkWindow *window;
 | |
|   GdkWindow *gdk_window;
 | |
|   GdkWindowState state;
 | |
| 
 | |
|   widget = gtk_accessible_get_widget (GTK_ACCESSIBLE (accessible));
 | |
|   if (widget == NULL)
 | |
|     return NULL;
 | |
| 
 | |
|   state_set = ATK_OBJECT_CLASS (gtk_window_accessible_parent_class)->ref_state_set (accessible);
 | |
| 
 | |
|   window = GTK_WINDOW (widget);
 | |
| 
 | |
|   if (gtk_window_has_toplevel_focus (window) && gtk_window_is_active (window))
 | |
|     atk_state_set_add_state (state_set, ATK_STATE_ACTIVE);
 | |
| 
 | |
|   gdk_window = gtk_widget_get_window (widget);
 | |
|   if (gdk_window)
 | |
|     {
 | |
|       state = gdk_window_get_state (gdk_window);
 | |
|       if (state & GDK_WINDOW_STATE_ICONIFIED)
 | |
|         atk_state_set_add_state (state_set, ATK_STATE_ICONIFIED);
 | |
|     }
 | |
|   if (gtk_window_get_modal (window))
 | |
|     atk_state_set_add_state (state_set, ATK_STATE_MODAL);
 | |
| 
 | |
|   if (gtk_window_get_resizable (window))
 | |
|     atk_state_set_add_state (state_set, ATK_STATE_RESIZABLE);
 | |
| 
 | |
|   return state_set;
 | |
| }
 | |
| 
 | |
| static void
 | |
| count_widget (GtkWidget *widget,
 | |
|               gint      *count)
 | |
| {
 | |
|   (*count)++;
 | |
| }
 | |
| 
 | |
| static void
 | |
| prepend_widget (GtkWidget  *widget,
 | |
| 		GList     **list)
 | |
| {
 | |
|   *list = g_list_prepend (*list, widget);
 | |
| }
 | |
| 
 | |
| static gint
 | |
| gtk_window_accessible_get_n_children (AtkObject *object)
 | |
| {
 | |
|   GtkWidget *window;
 | |
|   gint count = 0;
 | |
| 
 | |
|   window = gtk_accessible_get_widget (GTK_ACCESSIBLE (object));
 | |
|   gtk_container_forall (GTK_CONTAINER (window),
 | |
| 			(GtkCallback) count_widget, &count);
 | |
|   return count;
 | |
| }
 | |
| 
 | |
| static AtkObject *
 | |
| gtk_window_accessible_ref_child (AtkObject *object,
 | |
|                                  gint       i)
 | |
| {
 | |
|   GtkWidget *window, *ref_child;
 | |
|   GList *children = NULL;
 | |
| 
 | |
|   window = gtk_accessible_get_widget (GTK_ACCESSIBLE (object));
 | |
|   gtk_container_forall (GTK_CONTAINER (window),
 | |
| 			(GtkCallback) prepend_widget, &children);
 | |
|   ref_child = g_list_nth_data (children, i);
 | |
|   g_list_free (children);
 | |
| 
 | |
|   if (!ref_child)
 | |
|     return NULL;
 | |
| 
 | |
|   return g_object_ref (gtk_widget_get_accessible (ref_child));
 | |
| }
 | |
| 
 | |
| static void
 | |
| gtk_window_accessible_class_init (GtkWindowAccessibleClass *klass)
 | |
| {
 | |
|   GtkWidgetAccessibleClass *widget_class = (GtkWidgetAccessibleClass*)klass;
 | |
|   AtkObjectClass *class = ATK_OBJECT_CLASS (klass);
 | |
| 
 | |
|   widget_class->notify_gtk = gtk_window_accessible_notify_gtk;
 | |
| 
 | |
|   class->get_name = gtk_window_accessible_get_name;
 | |
|   class->get_index_in_parent = gtk_window_accessible_get_index_in_parent;
 | |
|   class->ref_relation_set = gtk_window_accessible_ref_relation_set;
 | |
|   class->ref_state_set = gtk_window_accessible_ref_state_set;
 | |
|   class->initialize = gtk_window_accessible_initialize;
 | |
|   class->focus_event = gtk_window_accessible_focus_event;
 | |
|   class->get_n_children = gtk_window_accessible_get_n_children;
 | |
|   class->ref_child = gtk_window_accessible_ref_child;
 | |
| }
 | |
| 
 | |
| static void
 | |
| gtk_window_accessible_init (GtkWindowAccessible *accessible)
 | |
| {
 | |
| }
 | |
| 
 | |
| static void
 | |
| gtk_window_accessible_get_extents (AtkComponent  *component,
 | |
|                                    gint          *x,
 | |
|                                    gint          *y,
 | |
|                                    gint          *width,
 | |
|                                    gint          *height,
 | |
|                                    AtkCoordType   coord_type)
 | |
| {
 | |
|   GtkWidget *widget;
 | |
|   GdkWindow *window;
 | |
|   GdkRectangle rect;
 | |
|   gint x_toplevel, y_toplevel;
 | |
| 
 | |
|   widget = gtk_accessible_get_widget (GTK_ACCESSIBLE (component));
 | |
|   if (widget == NULL)
 | |
|     return;
 | |
| 
 | |
|   if (!gtk_widget_is_toplevel (widget))
 | |
|     {
 | |
|       AtkComponentIface *parent_iface;
 | |
| 
 | |
|       parent_iface = (AtkComponentIface *) g_type_interface_peek_parent (ATK_COMPONENT_GET_IFACE (component));
 | |
|       parent_iface->get_extents (component, x, y, width, height, coord_type);
 | |
|       return;
 | |
|     }
 | |
| 
 | |
|   window = gtk_widget_get_window (widget);
 | |
|   if (window == NULL)
 | |
|     return;
 | |
| 
 | |
|   gdk_window_get_frame_extents (window, &rect);
 | |
| 
 | |
|   *width = rect.width;
 | |
|   *height = rect.height;
 | |
|   if (!gtk_widget_is_drawable (widget))
 | |
|     {
 | |
|       *x = G_MININT;
 | |
|       *y = G_MININT;
 | |
|       return;
 | |
|     }
 | |
| 
 | |
|   *x = rect.x;
 | |
|   *y = rect.y;
 | |
|   if (coord_type == ATK_XY_WINDOW)
 | |
|     {
 | |
|       gdk_window_get_origin (window, &x_toplevel, &y_toplevel);
 | |
|       *x -= x_toplevel;
 | |
|       *y -= y_toplevel;
 | |
|     }
 | |
| }
 | |
| 
 | |
| static void
 | |
| gtk_window_accessible_get_size (AtkComponent *component,
 | |
|                                 gint         *width,
 | |
|                                 gint         *height)
 | |
| {
 | |
|   GtkWidget *widget;
 | |
|   GdkWindow *window;
 | |
|   GdkRectangle rect;
 | |
| 
 | |
|   widget = gtk_accessible_get_widget (GTK_ACCESSIBLE (component));
 | |
|   if (widget == NULL)
 | |
|     return;
 | |
| 
 | |
|   if (!gtk_widget_is_toplevel (widget))
 | |
|     {
 | |
|       AtkComponentIface *parent_iface;
 | |
| 
 | |
|       parent_iface = (AtkComponentIface *) g_type_interface_peek_parent (ATK_COMPONENT_GET_IFACE (component));
 | |
|       parent_iface->get_size (component, width, height);
 | |
|       return;
 | |
|     }
 | |
| 
 | |
|   window = gtk_widget_get_window (widget);
 | |
|   if (window == NULL)
 | |
|     return;
 | |
| 
 | |
|   gdk_window_get_frame_extents (window, &rect);
 | |
| 
 | |
|   *width = rect.width;
 | |
|   *height = rect.height;
 | |
| }
 | |
| 
 | |
| static void
 | |
| atk_component_interface_init (AtkComponentIface *iface)
 | |
| {
 | |
|   iface->get_extents = gtk_window_accessible_get_extents;
 | |
|   iface->get_size = gtk_window_accessible_get_size;
 | |
| }
 | |
| 
 | |
| static void
 | |
| atk_window_interface_init (AtkWindowIface *iface)
 | |
| {
 | |
|   /* At this moment AtkWindow is just about signals */
 | |
| }
 | 
