2012-10-30 14:21:44 +00:00
|
|
|
/* GTK+ - accessibility implementations
|
2011-06-28 02:39:43 +00:00
|
|
|
* 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
|
2012-02-27 13:01:10 +00:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2011-06-28 02:39:43 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
#include "gtkrangeaccessible.h"
|
|
|
|
|
2013-08-14 03:54:53 +00:00
|
|
|
struct _GtkRangeAccessiblePrivate
|
|
|
|
{
|
|
|
|
GtkAdjustment *adjustment;
|
|
|
|
};
|
2011-06-28 02:39:43 +00:00
|
|
|
|
|
|
|
static void atk_value_interface_init (AtkValueIface *iface);
|
|
|
|
|
2012-12-27 06:04:46 +00:00
|
|
|
G_DEFINE_TYPE_WITH_CODE (GtkRangeAccessible, gtk_range_accessible, GTK_TYPE_WIDGET_ACCESSIBLE,
|
2013-08-14 03:54:53 +00:00
|
|
|
G_ADD_PRIVATE (GtkRangeAccessible)
|
2011-06-28 02:39:43 +00:00
|
|
|
G_IMPLEMENT_INTERFACE (ATK_TYPE_VALUE, atk_value_interface_init))
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_range_accessible_value_changed (GtkAdjustment *adjustment,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
g_object_notify (G_OBJECT (data), "accessible-value");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-08-14 03:54:53 +00:00
|
|
|
gtk_range_accessible_widget_set (GtkAccessible *accessible)
|
2011-06-28 02:39:43 +00:00
|
|
|
{
|
2013-08-14 03:54:53 +00:00
|
|
|
GtkRangeAccessiblePrivate *priv = GTK_RANGE_ACCESSIBLE (accessible)->priv;
|
|
|
|
GtkWidget *range;
|
2011-06-28 02:39:43 +00:00
|
|
|
GtkAdjustment *adj;
|
|
|
|
|
2013-08-14 03:54:53 +00:00
|
|
|
range = gtk_accessible_get_widget (accessible);
|
|
|
|
adj = gtk_range_get_adjustment (GTK_RANGE (range));
|
2011-06-28 02:39:43 +00:00
|
|
|
if (adj)
|
2013-08-14 03:54:53 +00:00
|
|
|
{
|
|
|
|
priv->adjustment = adj;
|
|
|
|
g_object_ref (priv->adjustment);
|
|
|
|
g_signal_connect (priv->adjustment, "value-changed",
|
|
|
|
G_CALLBACK (gtk_range_accessible_value_changed),
|
|
|
|
accessible);
|
|
|
|
}
|
2011-06-28 02:39:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-08-14 03:54:53 +00:00
|
|
|
gtk_range_accessible_widget_unset (GtkAccessible *accessible)
|
2011-06-28 02:39:43 +00:00
|
|
|
{
|
2013-08-14 03:54:53 +00:00
|
|
|
GtkRangeAccessiblePrivate *priv = GTK_RANGE_ACCESSIBLE (accessible)->priv;
|
2011-06-28 02:39:43 +00:00
|
|
|
|
2013-08-14 03:54:53 +00:00
|
|
|
if (priv->adjustment)
|
2011-06-29 02:47:21 +00:00
|
|
|
{
|
2013-08-14 03:54:53 +00:00
|
|
|
g_signal_handlers_disconnect_by_func (priv->adjustment,
|
|
|
|
G_CALLBACK (gtk_range_accessible_value_changed),
|
|
|
|
accessible);
|
|
|
|
g_object_unref (priv->adjustment);
|
|
|
|
priv->adjustment = NULL;
|
2011-06-29 02:47:21 +00:00
|
|
|
}
|
2013-08-14 03:54:53 +00:00
|
|
|
}
|
2011-06-28 02:39:43 +00:00
|
|
|
|
2013-08-14 03:54:53 +00:00
|
|
|
static void
|
|
|
|
gtk_range_accessible_initialize (AtkObject *obj,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
ATK_OBJECT_CLASS (gtk_range_accessible_parent_class)->initialize (obj, data);
|
|
|
|
obj->role = ATK_ROLE_SLIDER;
|
2011-06-28 02:39:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_range_accessible_notify_gtk (GObject *obj,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GtkWidget *widget = GTK_WIDGET (obj);
|
2011-06-28 04:39:27 +00:00
|
|
|
AtkObject *range;
|
2011-06-28 02:39:43 +00:00
|
|
|
|
|
|
|
if (strcmp (pspec->name, "adjustment") == 0)
|
|
|
|
{
|
2011-06-28 04:39:27 +00:00
|
|
|
range = gtk_widget_get_accessible (widget);
|
2013-08-14 03:54:53 +00:00
|
|
|
gtk_range_accessible_widget_unset (GTK_ACCESSIBLE (range));
|
|
|
|
gtk_range_accessible_widget_set (GTK_ACCESSIBLE (range));
|
2011-06-28 02:39:43 +00:00
|
|
|
}
|
|
|
|
else
|
2012-12-27 06:04:46 +00:00
|
|
|
GTK_WIDGET_ACCESSIBLE_CLASS (gtk_range_accessible_parent_class)->notify_gtk (obj, pspec);
|
2011-06-28 02:39:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2012-12-27 06:04:46 +00:00
|
|
|
gtk_range_accessible_class_init (GtkRangeAccessibleClass *klass)
|
2011-06-28 02:39:43 +00:00
|
|
|
{
|
|
|
|
AtkObjectClass *class = ATK_OBJECT_CLASS (klass);
|
2013-08-14 03:54:53 +00:00
|
|
|
GtkAccessibleClass *accessible_class = (GtkAccessibleClass*)klass;
|
2011-07-02 19:23:52 +00:00
|
|
|
GtkWidgetAccessibleClass *widget_class = (GtkWidgetAccessibleClass*)klass;
|
2011-06-28 02:39:43 +00:00
|
|
|
|
|
|
|
class->initialize = gtk_range_accessible_initialize;
|
|
|
|
|
2013-08-14 03:54:53 +00:00
|
|
|
accessible_class->widget_set = gtk_range_accessible_widget_set;
|
|
|
|
accessible_class->widget_unset = gtk_range_accessible_widget_unset;
|
|
|
|
|
|
|
|
widget_class->notify_gtk = gtk_range_accessible_notify_gtk;
|
2011-06-28 02:39:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2012-12-27 06:04:46 +00:00
|
|
|
gtk_range_accessible_init (GtkRangeAccessible *range)
|
2011-06-28 02:39:43 +00:00
|
|
|
{
|
2013-08-14 03:54:53 +00:00
|
|
|
range->priv = gtk_range_accessible_get_instance_private (range);
|
2011-06-28 02:39:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_range_accessible_get_current_value (AtkValue *obj,
|
|
|
|
GValue *value)
|
|
|
|
{
|
2011-06-28 04:39:27 +00:00
|
|
|
GtkWidget *widget;
|
|
|
|
GtkAdjustment *adjustment;
|
2011-06-28 02:39:43 +00:00
|
|
|
|
2011-06-28 04:39:27 +00:00
|
|
|
widget = gtk_accessible_get_widget (GTK_ACCESSIBLE (obj));
|
|
|
|
adjustment = gtk_range_get_adjustment (GTK_RANGE (widget));
|
|
|
|
if (adjustment == NULL)
|
2011-06-28 02:39:43 +00:00
|
|
|
return;
|
|
|
|
|
2011-06-28 04:39:27 +00:00
|
|
|
memset (value, 0, sizeof (GValue));
|
|
|
|
g_value_init (value, G_TYPE_DOUBLE);
|
|
|
|
g_value_set_double (value, gtk_adjustment_get_value (adjustment));
|
2011-06-28 02:39:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_range_accessible_get_maximum_value (AtkValue *obj,
|
|
|
|
GValue *value)
|
|
|
|
{
|
2011-06-28 04:39:27 +00:00
|
|
|
GtkWidget *widget;
|
|
|
|
GtkAdjustment *adjustment;
|
|
|
|
gdouble max;
|
2011-06-28 02:39:43 +00:00
|
|
|
|
2011-06-28 04:39:27 +00:00
|
|
|
widget = gtk_accessible_get_widget (GTK_ACCESSIBLE (obj));
|
|
|
|
adjustment = gtk_range_get_adjustment (GTK_RANGE (widget));
|
|
|
|
if (adjustment == NULL)
|
2011-06-28 02:39:43 +00:00
|
|
|
return;
|
|
|
|
|
2011-06-28 04:39:27 +00:00
|
|
|
max = gtk_adjustment_get_upper (adjustment)
|
|
|
|
- gtk_adjustment_get_page_size (adjustment);
|
2011-06-28 02:39:43 +00:00
|
|
|
|
2011-06-28 04:39:27 +00:00
|
|
|
if (gtk_range_get_restrict_to_fill_level (GTK_RANGE (widget)))
|
|
|
|
max = MIN (max, gtk_range_get_fill_level (GTK_RANGE (widget)));
|
2011-06-28 02:39:43 +00:00
|
|
|
|
2011-06-28 04:39:27 +00:00
|
|
|
memset (value, 0, sizeof (GValue));
|
|
|
|
g_value_init (value, G_TYPE_DOUBLE);
|
2011-06-28 02:39:43 +00:00
|
|
|
g_value_set_double (value, max);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_range_accessible_get_minimum_value (AtkValue *obj,
|
|
|
|
GValue *value)
|
|
|
|
{
|
2011-06-28 04:39:27 +00:00
|
|
|
GtkWidget *widget;
|
|
|
|
GtkAdjustment *adjustment;
|
2011-06-28 02:39:43 +00:00
|
|
|
|
2011-06-28 04:39:27 +00:00
|
|
|
widget = gtk_accessible_get_widget (GTK_ACCESSIBLE (obj));
|
|
|
|
adjustment = gtk_range_get_adjustment (GTK_RANGE (widget));
|
|
|
|
if (adjustment == NULL)
|
2011-06-28 02:39:43 +00:00
|
|
|
return;
|
|
|
|
|
2011-06-28 04:39:27 +00:00
|
|
|
memset (value, 0, sizeof (GValue));
|
|
|
|
g_value_init (value, G_TYPE_DOUBLE);
|
|
|
|
g_value_set_double (value, gtk_adjustment_get_lower (adjustment));
|
2011-06-28 02:39:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_range_accessible_get_minimum_increment (AtkValue *obj,
|
|
|
|
GValue *value)
|
|
|
|
{
|
2011-06-28 04:39:27 +00:00
|
|
|
GtkWidget *widget;
|
|
|
|
GtkAdjustment *adjustment;
|
2011-06-28 02:39:43 +00:00
|
|
|
|
2011-06-28 04:39:27 +00:00
|
|
|
widget = gtk_accessible_get_widget (GTK_ACCESSIBLE (obj));
|
|
|
|
adjustment = gtk_range_get_adjustment (GTK_RANGE (widget));
|
|
|
|
if (adjustment == NULL)
|
2011-06-28 02:39:43 +00:00
|
|
|
return;
|
|
|
|
|
2011-06-28 04:39:27 +00:00
|
|
|
memset (value, 0, sizeof (GValue));
|
|
|
|
g_value_init (value, G_TYPE_DOUBLE);
|
|
|
|
g_value_set_double (value, gtk_adjustment_get_minimum_increment (adjustment));
|
2011-06-28 02:39:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gtk_range_accessible_set_current_value (AtkValue *obj,
|
|
|
|
const GValue *value)
|
|
|
|
{
|
2011-06-28 04:39:27 +00:00
|
|
|
GtkWidget *widget;
|
|
|
|
GtkAdjustment *adjustment;
|
2011-06-28 02:39:43 +00:00
|
|
|
|
|
|
|
widget = gtk_accessible_get_widget (GTK_ACCESSIBLE (obj));
|
2011-06-28 04:39:27 +00:00
|
|
|
adjustment = gtk_range_get_adjustment (GTK_RANGE (widget));
|
|
|
|
if (adjustment == NULL)
|
2011-06-28 02:39:43 +00:00
|
|
|
return FALSE;
|
|
|
|
|
2011-06-28 04:39:27 +00:00
|
|
|
gtk_adjustment_set_value (adjustment, g_value_get_double (value));
|
2011-06-28 02:39:43 +00:00
|
|
|
|
2011-06-28 04:39:27 +00:00
|
|
|
return TRUE;
|
2011-06-28 02:39:43 +00:00
|
|
|
}
|
|
|
|
|
2014-05-03 00:46:45 +00:00
|
|
|
static void
|
|
|
|
gtk_range_accessible_get_value_and_text (AtkValue *obj,
|
|
|
|
gdouble *value,
|
|
|
|
gchar **text)
|
|
|
|
{
|
|
|
|
GtkWidget *widget;
|
|
|
|
GtkAdjustment *adjustment;
|
|
|
|
|
|
|
|
widget = gtk_accessible_get_widget (GTK_ACCESSIBLE (obj));
|
|
|
|
adjustment = gtk_range_get_adjustment (GTK_RANGE (widget));
|
|
|
|
if (adjustment == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
*value = gtk_adjustment_get_value (adjustment);
|
|
|
|
*text = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static AtkRange *
|
|
|
|
gtk_range_accessible_get_range (AtkValue *obj)
|
|
|
|
{
|
|
|
|
GtkWidget *widget;
|
|
|
|
GtkAdjustment *adjustment;
|
|
|
|
gdouble min, max;
|
|
|
|
|
|
|
|
widget = gtk_accessible_get_widget (GTK_ACCESSIBLE (obj));
|
|
|
|
adjustment = gtk_range_get_adjustment (GTK_RANGE (widget));
|
|
|
|
if (adjustment == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
min = gtk_adjustment_get_lower (adjustment);
|
|
|
|
max = gtk_adjustment_get_upper (adjustment)
|
|
|
|
- gtk_adjustment_get_page_size (adjustment);
|
|
|
|
|
|
|
|
if (gtk_range_get_restrict_to_fill_level (GTK_RANGE (widget)))
|
|
|
|
max = MIN (max, gtk_range_get_fill_level (GTK_RANGE (widget)));
|
|
|
|
|
|
|
|
return atk_range_new (min, max, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_range_accessible_set_value (AtkValue *obj,
|
|
|
|
const gdouble value)
|
|
|
|
{
|
|
|
|
GtkWidget *widget;
|
|
|
|
GtkAdjustment *adjustment;
|
|
|
|
|
|
|
|
widget = gtk_accessible_get_widget (GTK_ACCESSIBLE (obj));
|
|
|
|
adjustment = gtk_range_get_adjustment (GTK_RANGE (widget));
|
|
|
|
if (adjustment == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
gtk_adjustment_set_value (adjustment, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gdouble
|
|
|
|
gtk_range_accessible_get_increment (AtkValue *obj)
|
|
|
|
{
|
|
|
|
GtkWidget *widget;
|
|
|
|
GtkAdjustment *adjustment;
|
|
|
|
|
|
|
|
widget = gtk_accessible_get_widget (GTK_ACCESSIBLE (obj));
|
|
|
|
adjustment = gtk_range_get_adjustment (GTK_RANGE (widget));
|
|
|
|
if (adjustment == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return gtk_adjustment_get_minimum_increment (adjustment);
|
|
|
|
}
|
|
|
|
|
2011-06-28 02:39:43 +00:00
|
|
|
static void
|
|
|
|
atk_value_interface_init (AtkValueIface *iface)
|
|
|
|
{
|
|
|
|
iface->get_current_value = gtk_range_accessible_get_current_value;
|
|
|
|
iface->get_maximum_value = gtk_range_accessible_get_maximum_value;
|
|
|
|
iface->get_minimum_value = gtk_range_accessible_get_minimum_value;
|
|
|
|
iface->get_minimum_increment = gtk_range_accessible_get_minimum_increment;
|
|
|
|
iface->set_current_value = gtk_range_accessible_set_current_value;
|
2014-05-03 00:46:45 +00:00
|
|
|
|
|
|
|
iface->get_value_and_text = gtk_range_accessible_get_value_and_text;
|
|
|
|
iface->get_range = gtk_range_accessible_get_range;
|
|
|
|
iface->set_value = gtk_range_accessible_set_value;
|
|
|
|
iface->get_increment = gtk_range_accessible_get_increment;
|
2011-06-28 02:39:43 +00:00
|
|
|
}
|