]> Pileus Git - ~andy/gtk/blob - modules/other/gail/gailscrollbar.c
gail: No need to include modules/other in CFLAGS anymore
[~andy/gtk] / modules / other / gail / gailscrollbar.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 "gailscrollbar.h"
24
25 static void gail_scrollbar_class_init  (GailScrollbarClass *klass);
26 static void gail_scrollbar_init        (GailScrollbar      *accessible);
27 static void gail_scrollbar_initialize  (AtkObject           *accessible,
28                                         gpointer             data);
29
30 static gint gail_scrollbar_get_index_in_parent (AtkObject *accessible);
31
32 G_DEFINE_TYPE (GailScrollbar, gail_scrollbar, GAIL_TYPE_RANGE)
33
34 static void      
35 gail_scrollbar_class_init (GailScrollbarClass *klass)
36 {
37   AtkObjectClass *class = ATK_OBJECT_CLASS (klass);
38
39   class->initialize = gail_scrollbar_initialize;
40   class->get_index_in_parent = gail_scrollbar_get_index_in_parent;
41 }
42
43 static void
44 gail_scrollbar_init (GailScrollbar      *accessible)
45 {
46 }
47
48 static void
49 gail_scrollbar_initialize (AtkObject *accessible,
50                            gpointer  data)
51 {
52   ATK_OBJECT_CLASS (gail_scrollbar_parent_class)->initialize (accessible, data);
53
54   accessible->role = ATK_ROLE_SCROLL_BAR;
55 }
56
57 static gint
58 gail_scrollbar_get_index_in_parent (AtkObject *accessible)
59 {
60   GtkWidget *widget;
61   GtkWidget *parent;
62   GtkWidget *child;
63   GtkScrolledWindow *scrolled_window;
64   gint id;
65
66   widget = gtk_accessible_get_widget (GTK_ACCESSIBLE (accessible));
67
68   if (widget == NULL)
69   {
70     /*
71      * State is defunct
72      */
73     return -1;
74   }
75   g_return_val_if_fail (GTK_IS_SCROLLBAR (widget), -1);
76
77   parent = gtk_widget_get_parent (widget);
78   if (!GTK_IS_SCROLLED_WINDOW (parent))
79     return ATK_OBJECT_CLASS (gail_scrollbar_parent_class)->get_index_in_parent (accessible);
80
81   scrolled_window = GTK_SCROLLED_WINDOW (parent);
82   id = 0;
83   child = gtk_bin_get_child (GTK_BIN (scrolled_window));
84   if (child)
85     {
86       if (widget == child)
87         return id;
88       id++;
89     }
90
91   child = gtk_scrolled_window_get_hscrollbar (scrolled_window);
92   if (child)
93     {
94       if (widget == child)
95         return id;
96       id++;
97     }
98   child = gtk_scrolled_window_get_vscrollbar (scrolled_window);
99   if (child)
100     {
101       if (widget == child)
102         return id;
103     }
104
105   return -1;
106