]> Pileus Git - ~andy/gtk/blob - gtk/a11y/gtkframeaccessible.c
Convert GailContainer to GtkContainerAccessible
[~andy/gtk] / gtk / a11y / gtkframeaccessible.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 <string.h>
23 #include <gtk/gtk.h>
24 #include "gtkframeaccessible.h"
25
26
27 G_DEFINE_TYPE (GtkFrameAccessible, gtk_frame_accessible, GTK_TYPE_CONTAINER_ACCESSIBLE)
28
29 static void
30 gtk_frame_accessible_initialize (AtkObject *accessible,
31                                  gpointer   data)
32 {
33   ATK_OBJECT_CLASS (gtk_frame_accessible_parent_class)->initialize (accessible, data);
34
35   accessible->role = ATK_ROLE_PANEL;
36 }
37
38 static const gchar *
39 gtk_frame_accessible_get_name (AtkObject *obj)
40 {
41   const gchar *name;
42   GtkWidget *widget;
43
44   widget = gtk_accessible_get_widget (GTK_ACCESSIBLE (obj));
45   if (widget == NULL)
46       return NULL;
47
48   name = ATK_OBJECT_CLASS (gtk_frame_accessible_parent_class)->get_name (obj);
49   if (name != NULL)
50     return name;
51
52   return gtk_frame_get_label (GTK_FRAME (widget));
53 }
54
55 static void
56 gtk_frame_accessible_class_init (GtkFrameAccessibleClass *klass)
57 {
58   AtkObjectClass *class = ATK_OBJECT_CLASS (klass);
59
60   class->initialize = gtk_frame_accessible_initialize;
61   class->get_name = gtk_frame_accessible_get_name;
62 }
63
64 static void
65 gtk_frame_accessible_init (GtkFrameAccessible *frame)
66 {
67 }