2008-07-01 22:57:50 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
2001-05-03 20:11:14 +00:00
|
|
|
* Copyright 2001 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, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2008-06-22 14:28:52 +00:00
|
|
|
#include "config.h"
|
2001-05-03 20:11:14 +00:00
|
|
|
#include <string.h>
|
2002-10-11 22:57:11 +00:00
|
|
|
|
|
|
|
#include "gtkwidget.h"
|
2005-09-01 05:11:46 +00:00
|
|
|
#include "gtkintl.h"
|
2002-10-11 22:57:11 +00:00
|
|
|
#include "gtkaccessible.h"
|
2001-05-03 20:11:14 +00:00
|
|
|
|
2009-10-14 22:25:40 +00:00
|
|
|
/**
|
|
|
|
* SECTION:gtkaccessible
|
|
|
|
* @Short_description: Accessibility support for widgets
|
|
|
|
* @Title: GtkAccessible
|
2011-07-14 23:50:21 +00:00
|
|
|
*
|
|
|
|
* The #GtkAccessible class is the base class for accessible
|
|
|
|
* implementations for #GtkWidget subclasses. It is a thin
|
|
|
|
* wrapper around #AtkObject, which adds facilities for associating
|
|
|
|
* a widget with its accessible object.
|
|
|
|
*
|
|
|
|
* An accessible implementation for a third-party widget should
|
|
|
|
* derive from #GtkAccessible and implement the suitable interfaces
|
|
|
|
* from ATK, such as #AtkText or #AtkSelection. To establish
|
|
|
|
* the connection between the widget class and its corresponding
|
|
|
|
* acccessible implementation, override the get_accessible vfunc
|
|
|
|
* in #GtkWidgetClass.
|
2009-10-14 22:25:40 +00:00
|
|
|
*/
|
|
|
|
|
2010-08-26 17:15:37 +00:00
|
|
|
struct _GtkAccessiblePrivate
|
2010-05-22 23:06:45 +00:00
|
|
|
{
|
|
|
|
GtkWidget *widget;
|
|
|
|
};
|
2009-10-14 22:25:40 +00:00
|
|
|
|
2011-12-18 05:55:44 +00:00
|
|
|
enum {
|
|
|
|
PROP_0,
|
|
|
|
PROP_WIDGET
|
|
|
|
};
|
|
|
|
|
2001-05-03 20:11:14 +00:00
|
|
|
static void gtk_accessible_real_connect_widget_destroyed (GtkAccessible *accessible);
|
|
|
|
|
2006-05-14 04:25:34 +00:00
|
|
|
G_DEFINE_TYPE (GtkAccessible, gtk_accessible, ATK_TYPE_OBJECT)
|
2001-05-03 20:11:14 +00:00
|
|
|
|
2011-12-18 05:55:44 +00:00
|
|
|
static void
|
|
|
|
gtk_accessible_set_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GtkAccessible *accessible = GTK_ACCESSIBLE (object);
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
|
|
|
case PROP_WIDGET:
|
|
|
|
gtk_accessible_set_widget (accessible, g_value_get_object (value));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_accessible_get_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GtkAccessible *accessible = GTK_ACCESSIBLE (object);
|
|
|
|
GtkAccessiblePrivate *priv = accessible->priv;
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
|
|
|
case PROP_WIDGET:
|
|
|
|
g_value_set_object (value, priv->widget);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-05-03 17:07:09 +00:00
|
|
|
static void
|
2011-02-20 21:46:27 +00:00
|
|
|
gtk_accessible_init (GtkAccessible *accessible)
|
2006-05-03 17:07:09 +00:00
|
|
|
{
|
2011-02-20 21:46:27 +00:00
|
|
|
accessible->priv = G_TYPE_INSTANCE_GET_PRIVATE (accessible,
|
|
|
|
GTK_TYPE_ACCESSIBLE,
|
|
|
|
GtkAccessiblePrivate);
|
2001-05-03 20:11:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_accessible_class_init (GtkAccessibleClass *klass)
|
|
|
|
{
|
2011-12-18 05:55:44 +00:00
|
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
|
|
|
|
|
2001-05-03 20:11:14 +00:00
|
|
|
klass->connect_widget_destroyed = gtk_accessible_real_connect_widget_destroyed;
|
2010-05-22 23:06:45 +00:00
|
|
|
|
2011-12-18 05:55:44 +00:00
|
|
|
gobject_class->get_property = gtk_accessible_get_property;
|
|
|
|
gobject_class->set_property = gtk_accessible_set_property;
|
|
|
|
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
PROP_WIDGET,
|
|
|
|
g_param_spec_object ("widget",
|
|
|
|
P_("Widget"),
|
|
|
|
P_("The widget referenced by this accessible."),
|
|
|
|
GTK_TYPE_WIDGET,
|
|
|
|
G_PARAM_READWRITE));
|
|
|
|
|
2010-08-26 17:15:37 +00:00
|
|
|
g_type_class_add_private (klass, sizeof (GtkAccessiblePrivate));
|
2001-05-03 20:11:14 +00:00
|
|
|
}
|
|
|
|
|
2010-06-22 10:24:38 +00:00
|
|
|
/**
|
|
|
|
* gtk_accessible_set_widget:
|
|
|
|
* @accessible: a #GtkAccessible
|
|
|
|
* @widget: a #GtkWidget
|
|
|
|
*
|
|
|
|
* Sets the #GtkWidget corresponding to the #GtkAccessible.
|
|
|
|
*
|
|
|
|
* Since: 2.22
|
2011-07-14 23:50:21 +00:00
|
|
|
*/
|
2010-06-22 10:24:38 +00:00
|
|
|
void
|
|
|
|
gtk_accessible_set_widget (GtkAccessible *accessible,
|
|
|
|
GtkWidget *widget)
|
|
|
|
{
|
2011-12-18 06:30:23 +00:00
|
|
|
GtkAccessiblePrivate *priv;
|
|
|
|
|
2010-06-22 19:10:23 +00:00
|
|
|
g_return_if_fail (GTK_IS_ACCESSIBLE (accessible));
|
2010-06-22 10:24:38 +00:00
|
|
|
|
2011-12-18 06:30:23 +00:00
|
|
|
priv = accessible->priv;
|
|
|
|
|
|
|
|
if (priv->widget == widget)
|
|
|
|
return;
|
|
|
|
|
|
|
|
priv->widget = widget;
|
2011-12-18 05:55:44 +00:00
|
|
|
|
|
|
|
g_object_notify (G_OBJECT (accessible), "widget");
|
2010-06-22 10:24:38 +00:00
|
|
|
}
|
|
|
|
|
2010-03-10 23:02:57 +00:00
|
|
|
/**
|
|
|
|
* gtk_accessible_get_widget:
|
|
|
|
* @accessible: a #GtkAccessible
|
|
|
|
*
|
2011-07-14 23:50:21 +00:00
|
|
|
* Gets the #GtkWidget corresponding to the #GtkAccessible.
|
|
|
|
* The returned widget does not have a reference added, so
|
|
|
|
* you do not need to unref it.
|
2010-03-10 23:02:57 +00:00
|
|
|
*
|
2011-07-14 23:50:21 +00:00
|
|
|
* Returns: (transfer none): pointer to the #GtkWidget
|
|
|
|
* corresponding to the #GtkAccessible, or %NULL.
|
2010-03-10 23:02:57 +00:00
|
|
|
*
|
|
|
|
* Since: 2.22
|
2011-07-14 23:50:21 +00:00
|
|
|
*/
|
2010-03-10 23:02:57 +00:00
|
|
|
GtkWidget*
|
|
|
|
gtk_accessible_get_widget (GtkAccessible *accessible)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GTK_IS_ACCESSIBLE (accessible), NULL);
|
|
|
|
|
2010-05-22 23:06:45 +00:00
|
|
|
return accessible->priv->widget;
|
2010-03-10 23:02:57 +00:00
|
|
|
}
|
|
|
|
|
2001-05-03 20:11:14 +00:00
|
|
|
/**
|
2011-07-14 23:50:21 +00:00
|
|
|
* gtk_accessible_connect_widget_destroyed:
|
2001-05-03 20:11:14 +00:00
|
|
|
* @accessible: a #GtkAccessible
|
|
|
|
*
|
2011-07-14 23:50:21 +00:00
|
|
|
* This function specifies the callback function to be called
|
|
|
|
* when the widget corresponding to a GtkAccessible is destroyed.
|
2001-05-03 20:11:14 +00:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
gtk_accessible_connect_widget_destroyed (GtkAccessible *accessible)
|
|
|
|
{
|
|
|
|
GtkAccessibleClass *class;
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_ACCESSIBLE (accessible));
|
|
|
|
|
|
|
|
class = GTK_ACCESSIBLE_GET_CLASS (accessible);
|
|
|
|
|
|
|
|
if (class->connect_widget_destroyed)
|
|
|
|
class->connect_widget_destroyed (accessible);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_accessible_real_connect_widget_destroyed (GtkAccessible *accessible)
|
|
|
|
{
|
2010-08-26 17:15:37 +00:00
|
|
|
GtkAccessiblePrivate *priv = accessible->priv;
|
2010-05-22 23:06:45 +00:00
|
|
|
|
|
|
|
if (priv->widget)
|
2011-07-02 19:23:52 +00:00
|
|
|
g_signal_connect (priv->widget, "destroy",
|
|
|
|
G_CALLBACK (gtk_widget_destroyed), &priv->widget);
|
2001-05-03 20:11:14 +00:00
|
|
|
}
|