X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=libspi%2Faccessible.h;h=e263f6d12de56599d075861c339dd34b8b2126cd;hb=af73589b8f6efcd457290b11e183769918cf3294;hp=0b202a882dfecebfdbe1cbea8795c5719895e19a;hpb=9bf98cd378e1572019a743bb4bf18e896b4fcd1d;p=platform%2Fcore%2Fuifw%2Fat-spi2-atk.git diff --git a/libspi/accessible.h b/libspi/accessible.h index 0b202a8..e263f6d 100644 --- a/libspi/accessible.h +++ b/libspi/accessible.h @@ -1,37 +1,50 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ -#ifndef ACCESSIBLE_H_ -#define ACCESSIBLE_H_ - - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -#include -#include -#include - -#define ACCESSIBLE_TYPE (accessible_get_type ()) -#define ACCESSIBLE(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), ACCESSIBLE_TYPE, Accessible)) -#define ACCESSIBLE_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), ACCESSIBLE_TYPE, AccessibleClass)) -#define IS_ACCESSIBLE(o) (G_TYPE_CHECK__INSTANCE_TYPE ((o), ACCESSIBLE_TYPE)) -#define IS_ACCESSIBLE_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), ACCESSIBLE_TYPE)) +/* 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 SPI_ACCESSIBLE_H_ +#define SPI_ACCESSIBLE_H_ + +#include + +G_BEGIN_DECLS + +#define SPI_ACCESSIBLE_TYPE (spi_accessible_get_type ()) +#define SPI_ACCESSIBLE(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), SPI_ACCESSIBLE_TYPE, SpiAccessible)) +#define SPI_ACCESSIBLE_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), SPI_ACCESSIBLE_TYPE, SpiAccessibleClass)) +#define SPI_IS_ACCESSIBLE(o) (G_TYPE_CHECK__INSTANCE_TYPE ((o), SPI_ACCESSIBLE_TYPE)) +#define SPI_IS_ACCESSIBLE_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), SPI_ACCESSIBLE_TYPE)) typedef struct { - BonoboXObject parent; - AtkObject *atko; -} Accessible; + SpiBase parent; +} SpiAccessible; typedef struct { - BonoboXObjectClass parent_class; + SpiBaseClass parent_class; POA_Accessibility_Accessible__epv epv; -} AccessibleClass; +} SpiAccessibleClass; -GType accessible_get_type (void); -Accessible *accessible_new (AtkObject *o); +GType spi_accessible_get_type (void); +SpiAccessible *spi_accessible_new (AtkObject *o); +Accessibility_Accessible spi_accessible_new_return (AtkObject *o, + gboolean release_ref, + CORBA_Environment *ev); -#ifdef __cplusplus -} -#endif /* __cplusplus */ +G_END_DECLS -#endif /* ACCESSIBLE_H_ */ +#endif /* SPI_ACCESSIBLE_H_ */