]> Pileus Git - ~andy/gtk/blob - gtk/a11y/gtkscrollbaraccessible.c
65ca1054ce67c1690946ad593aaf8f922363e309
[~andy/gtk] / gtk / a11y / gtkscrollbaraccessible.c
1 /* GAIL - The GNOME Accessibility Implementation Library
2  * Copyright 2001 Sun Microsystems Inc.
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #include "config.h"
21
22 #include <gtk/gtk.h>
23 #include "gtkscrollbaraccessible.h"
24
25
26 G_DEFINE_TYPE (GtkScrollbarAccessible, _gtk_scrollbar_accessible, GTK_TYPE_RANGE_ACCESSIBLE)
27
28 static void
29 _gtk_scrollbar_accessible_init (GtkScrollbarAccessible *accessible)
30 {
31 }
32
33 static void
34 gtk_scrollbar_accessible_initialize (AtkObject *accessible,
35                                      gpointer   data)
36 {
37   ATK_OBJECT_CLASS (_gtk_scrollbar_accessible_parent_class)->initialize (accessible, data);
38
39   accessible->role = ATK_ROLE_SCROLL_BAR;
40 }
41
42 static gint
43 gtk_scrollbar_accessible_get_index_in_parent (AtkObject *accessible)
44 {
45   GtkWidget *widget;
46   GtkWidget *parent;
47   GtkWidget *child;
48   GtkScrolledWindow *scrolled_window;
49   gint id;
50
51   widget = gtk_accessible_get_widget (GTK_ACCESSIBLE (accessible));
52   if (widget == NULL)
53     return -1;
54
55   parent = gtk_widget_get_parent (widget);
56   if (!GTK_IS_SCROLLED_WINDOW (parent))
57     return ATK_OBJECT_CLASS (_gtk_scrollbar_accessible_parent_class)->get_index_in_parent (accessible);
58
59   scrolled_window = GTK_SCROLLED_WINDOW (parent);
60   id = 0;
61   child = gtk_bin_get_child (GTK_BIN (scrolled_window));
62   if (child)
63     {
64       if (widget == child)
65         return id;
66       id++;
67     }
68
69   child = gtk_scrolled_window_get_hscrollbar (scrolled_window);
70   if (child)
71     {
72       if (widget == child)
73         return id;
74       id++;
75     }
76   child = gtk_scrolled_window_get_vscrollbar (scrolled_window);
77   if (child)
78     {
79       if (widget == child)
80         return id;
81     }
82
83   return -1;
84 }
85
86 static void
87 _gtk_scrollbar_accessible_class_init (GtkScrollbarAccessibleClass *klass)
88 {
89   AtkObjectClass *class = ATK_OBJECT_CLASS (klass);
90
91   class->initialize = gtk_scrollbar_accessible_initialize;
92   class->get_index_in_parent = gtk_scrollbar_accessible_get_index_in_parent;
93 }