2007-12-18 13:51:12 +00:00
|
|
|
/* GAIL - The GNOME Accessibility Enabling Library
|
|
|
|
* Copyright 2001 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
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2008-06-22 14:28:52 +00:00
|
|
|
#include "config.h"
|
2007-12-23 12:27:33 +00:00
|
|
|
|
2007-12-18 13:51:12 +00:00
|
|
|
#include <gtk/gtk.h>
|
|
|
|
#include "gailbox.h"
|
|
|
|
|
2007-12-23 12:24:59 +00:00
|
|
|
static void gail_box_class_init (GailBoxClass *klass);
|
|
|
|
static void gail_box_init (GailBox *box);
|
2007-12-25 09:29:46 +00:00
|
|
|
static void gail_box_initialize (AtkObject *accessible,
|
|
|
|
gpointer data);
|
2007-12-18 13:51:12 +00:00
|
|
|
|
2007-12-23 12:24:59 +00:00
|
|
|
G_DEFINE_TYPE (GailBox, gail_box, GAIL_TYPE_CONTAINER)
|
2007-12-18 13:51:12 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
gail_box_class_init (GailBoxClass *klass)
|
|
|
|
{
|
|
|
|
AtkObjectClass *class = ATK_OBJECT_CLASS (klass);
|
|
|
|
|
2007-12-25 09:29:46 +00:00
|
|
|
class->initialize = gail_box_initialize;
|
2007-12-18 13:51:12 +00:00
|
|
|
}
|
|
|
|
|
2007-12-23 12:24:59 +00:00
|
|
|
static void
|
|
|
|
gail_box_init (GailBox *box)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2007-12-25 09:29:46 +00:00
|
|
|
static void
|
|
|
|
gail_box_initialize (AtkObject *accessible,
|
|
|
|
gpointer data)
|
2007-12-18 13:51:12 +00:00
|
|
|
{
|
2007-12-25 09:29:46 +00:00
|
|
|
ATK_OBJECT_CLASS (gail_box_parent_class)->initialize (accessible, data);
|
2007-12-18 13:51:12 +00:00
|
|
|
|
|
|
|
accessible->role = ATK_ROLE_FILLER;
|
|
|
|
}
|