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
|
2012-02-27 13:01:10 +00:00
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2001-05-03 20:11:14 +00:00
|
|
|
|
*/
|
|
|
|
|
|
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
|
|
|
|
|
};
|
|
|
|
|
|
2013-06-27 19:02:52 +00:00
|
|
|
|
G_DEFINE_TYPE_WITH_PRIVATE (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
|
|
|
|
{
|
2013-06-27 19:02:52 +00:00
|
|
|
|
accessible->priv = gtk_accessible_get_instance_private (accessible);
|
2001-05-03 20:11:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-12-18 15:41:06 +00:00
|
|
|
|
static AtkStateSet *
|
|
|
|
|
gtk_accessible_ref_state_set (AtkObject *object)
|
|
|
|
|
{
|
|
|
|
|
GtkAccessible *accessible = GTK_ACCESSIBLE (object);
|
|
|
|
|
AtkStateSet *state_set;
|
|
|
|
|
|
|
|
|
|
state_set = ATK_OBJECT_CLASS (gtk_accessible_parent_class)->ref_state_set (object);
|
|
|
|
|
|
|
|
|
|
if (accessible->priv->widget == NULL)
|
|
|
|
|
atk_state_set_add_state (state_set, ATK_STATE_DEFUNCT);
|
|
|
|
|
|
|
|
|
|
return state_set;
|
|
|
|
|
}
|
|
|
|
|
|
2011-12-18 11:55:41 +00:00
|
|
|
|
static void
|
|
|
|
|
gtk_accessible_real_widget_set (GtkAccessible *accessible)
|
|
|
|
|
{
|
2011-12-18 15:41:06 +00:00
|
|
|
|
atk_object_notify_state_change (ATK_OBJECT (accessible), ATK_STATE_DEFUNCT, FALSE);
|
2011-12-18 11:55:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gtk_accessible_real_widget_unset (GtkAccessible *accessible)
|
|
|
|
|
{
|
2011-12-18 15:41:06 +00:00
|
|
|
|
atk_object_notify_state_change (ATK_OBJECT (accessible), ATK_STATE_DEFUNCT, TRUE);
|
2011-12-18 11:55:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-12-18 16:29:31 +00:00
|
|
|
|
static void
|
2012-02-10 12:21:06 +00:00
|
|
|
|
gtk_accessible_dispose (GObject *object)
|
2011-12-18 16:29:31 +00:00
|
|
|
|
{
|
|
|
|
|
GtkAccessible *accessible = GTK_ACCESSIBLE (object);
|
|
|
|
|
|
|
|
|
|
gtk_accessible_set_widget (accessible, NULL);
|
|
|
|
|
|
2012-02-10 12:21:06 +00:00
|
|
|
|
G_OBJECT_CLASS (gtk_accessible_parent_class)->dispose (object);
|
2011-12-18 16:29:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
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);
|
2011-12-18 15:41:06 +00:00
|
|
|
|
AtkObjectClass *atkobject_class = ATK_OBJECT_CLASS (klass);
|
2011-12-18 05:55:44 +00:00
|
|
|
|
|
2011-12-18 11:55:41 +00:00
|
|
|
|
klass->widget_set = gtk_accessible_real_widget_set;
|
|
|
|
|
klass->widget_unset = gtk_accessible_real_widget_unset;
|
2010-05-22 23:06:45 +00:00
|
|
|
|
|
2011-12-18 15:41:06 +00:00
|
|
|
|
atkobject_class->ref_state_set = gtk_accessible_ref_state_set;
|
2011-12-18 05:55:44 +00:00
|
|
|
|
gobject_class->get_property = gtk_accessible_get_property;
|
|
|
|
|
gobject_class->set_property = gtk_accessible_set_property;
|
2012-02-10 12:21:06 +00:00
|
|
|
|
gobject_class->dispose = gtk_accessible_dispose;
|
2011-12-18 05:55:44 +00:00
|
|
|
|
|
|
|
|
|
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));
|
2001-05-03 20:11:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
2010-06-22 10:24:38 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_accessible_set_widget:
|
|
|
|
|
* @accessible: a #GtkAccessible
|
2011-12-18 11:49:06 +00:00
|
|
|
|
* @widget: (allow-none): a #GtkWidget or %NULL to unset
|
2010-06-22 10:24:38 +00:00
|
|
|
|
*
|
|
|
|
|
* Sets the #GtkWidget corresponding to the #GtkAccessible.
|
|
|
|
|
*
|
2014-02-02 06:22:14 +00:00
|
|
|
|
* @accessible will not hold a reference to @widget.
|
2014-02-07 18:01:26 +00:00
|
|
|
|
* It is the caller’s responsibility to ensure that when @widget
|
2011-12-18 11:49:06 +00:00
|
|
|
|
* is destroyed, the widget is unset by calling this function
|
2014-02-02 06:22:14 +00:00
|
|
|
|
* again with @widget set to %NULL.
|
|
|
|
|
*
|
2010-06-22 10:24:38 +00:00
|
|
|
|
* 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;
|
2011-12-18 11:55:41 +00:00
|
|
|
|
GtkAccessibleClass *klass;
|
2011-12-18 06:30:23 +00:00
|
|
|
|
|
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;
|
2011-12-18 11:55:41 +00:00
|
|
|
|
klass = GTK_ACCESSIBLE_GET_CLASS (accessible);
|
2011-12-18 06:30:23 +00:00
|
|
|
|
|
|
|
|
|
if (priv->widget == widget)
|
|
|
|
|
return;
|
|
|
|
|
|
2011-12-18 11:55:41 +00:00
|
|
|
|
if (priv->widget)
|
|
|
|
|
klass->widget_unset (accessible);
|
|
|
|
|
|
2011-12-18 06:30:23 +00:00
|
|
|
|
priv->widget = widget;
|
2011-12-18 05:55:44 +00:00
|
|
|
|
|
2012-01-12 03:40:06 +00:00
|
|
|
|
if (widget)
|
2011-12-18 11:55:41 +00:00
|
|
|
|
klass->widget_set (accessible);
|
|
|
|
|
|
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
|
|
|
|
*
|
2015-12-28 20:14:08 +00:00
|
|
|
|
* Returns: (nullable) (transfer none): pointer to the #GtkWidget
|
2011-07-14 23:50:21 +00:00
|
|
|
|
* 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
|
|
|
|
}
|
|
|
|
|
|