at-bridge/Makefile.am: fixed LDFLAGS.
[platform/core/uifw/at-spi2-atk.git] / libspi / accessible.h
index 0b202a8..acb2123 100644 (file)
@@ -1,4 +1,22 @@
-/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
+/* AT-SPI : Assistive Technology Service Provider Interface
+ * 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 <bonobo/bonobo-xobject.h>
+#include <bonobo/bonobo-object.h>
 #include <atk/atkobject.h>
-#include <Accessible.h>
+#include <libspi/Accessibility.h>
 
 #define ACCESSIBLE_TYPE        (accessible_get_type ())
 #define ACCESSIBLE(o)          (G_TYPE_CHECK_INSTANCE_CAST ((o), ACCESSIBLE_TYPE, Accessible))
@@ -18,18 +36,19 @@ 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);
 
+
 #ifdef __cplusplus
 }
 #endif /* __cplusplus */