X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=libspi%2Faccessible.h;h=452ce7853a41b34b64994b767172f6f837a2657d;hb=edf9ed64974254eade7ed3b1ddcad9f963c03694;hp=0b202a882dfecebfdbe1cbea8795c5719895e19a;hpb=9bf98cd378e1572019a743bb4bf18e896b4fcd1d;p=platform%2Fcore%2Fuifw%2Fat-spi2-atk.git diff --git a/libspi/accessible.h b/libspi/accessible.h index 0b202a8..452ce78 100644 --- a/libspi/accessible.h +++ b/libspi/accessible.h @@ -1,4 +1,22 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ +/* ATK - Accessibility Toolkit + * Copyright 2001 Sun Microsystems Inc. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Library 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 + * Library General Public License for more details. + * + * You should have received a copy of the GNU Library 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. + */ + #ifndef ACCESSIBLE_H_ #define ACCESSIBLE_H_ @@ -7,9 +25,9 @@ extern "C" { #endif /* __cplusplus */ -#include +#include #include -#include +#include #define ACCESSIBLE_TYPE (accessible_get_type ()) #define ACCESSIBLE(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), ACCESSIBLE_TYPE, Accessible)) @@ -18,18 +36,20 @@ extern "C" { #define IS_ACCESSIBLE_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), ACCESSIBLE_TYPE)) typedef struct { - BonoboXObject parent; + BonoboObject parent; AtkObject *atko; } Accessible; typedef struct { - BonoboXObjectClass parent_class; + BonoboObjectClass parent_class; POA_Accessibility_Accessible__epv epv; } AccessibleClass; GType accessible_get_type (void); Accessible *accessible_new (AtkObject *o); +#include "component.h" + #ifdef __cplusplus } #endif /* __cplusplus */