]> Pileus Git - ~andy/gtk/blob - gtk/a11y/gtkspinneraccessible.c
GtkEntryAccessible: Remove unused variable
[~andy/gtk] / gtk / a11y / gtkspinneraccessible.c
1 /* GTK - The GIMP Toolkit
2  *
3  * Copyright (C) 2007 John Stowers, Neil Jagdish Patel.
4  * Copyright (C) 2009 Bastien Nocera, David Zeuthen
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library. If not, see <http://www.gnu.org/licenses/>.
18  *
19  * Code adapted from egg-spinner
20  * by Christian Hergert <christian.hergert@gmail.com>
21  */
22
23 #include "config.h"
24
25 #include <gtk/gtk.h>
26 #include "gtkintl.h"
27 #include "gtkspinneraccessible.h"
28
29 static void atk_image_interface_init (AtkImageIface *iface);
30
31 G_DEFINE_TYPE_WITH_CODE (GtkSpinnerAccessible, _gtk_spinner_accessible, GTK_TYPE_WIDGET_ACCESSIBLE,
32                          G_IMPLEMENT_INTERFACE (ATK_TYPE_IMAGE, atk_image_interface_init));
33
34 static void
35 gtk_spinner_accessible_initialize (AtkObject *accessible,
36                                    gpointer   widget)
37 {
38   ATK_OBJECT_CLASS (_gtk_spinner_accessible_parent_class)->initialize (accessible, widget);
39
40   atk_object_set_name (accessible, C_("throbbing progress animation widget", "Spinner"));
41   atk_object_set_description (accessible, _("Provides visual indication of progress"));
42   atk_object_set_role (accessible, ATK_ROLE_ANIMATION);
43 }
44
45 static void
46 _gtk_spinner_accessible_class_init (GtkSpinnerAccessibleClass *klass)
47 {
48   AtkObjectClass *atk_class = ATK_OBJECT_CLASS (klass);
49
50   atk_class->initialize = gtk_spinner_accessible_initialize;
51 }
52
53 static void
54 _gtk_spinner_accessible_init (GtkSpinnerAccessible *self)
55 {
56 }
57
58 static void
59 gtk_spinner_accessible_image_get_size (AtkImage *image,
60                                        gint     *width,
61                                        gint     *height)
62 {
63   GtkWidget *widget;
64
65   widget = gtk_accessible_get_widget (GTK_ACCESSIBLE (image));
66   if (widget == NULL)
67     {
68       *width = 0;
69       *height = 0;
70       return;
71     }
72
73   *width = gtk_widget_get_allocated_width (widget);
74   *height = gtk_widget_get_allocated_height (widget);
75 }
76
77 static void
78 atk_image_interface_init (AtkImageIface *iface)
79 {
80   iface->get_image_size = gtk_spinner_accessible_image_get_size;
81 }