X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=libspi%2Fselection.h;h=0f3571648a65a376c4711ca3c21bfac69c5426eb;hb=09b09daa2b88f6b54895ee49f59cd060b14a5acf;hp=7bf673680c94383a386c9a3846c0efcb4406620a;hpb=81b1d9195d65999050f103b1fbe9c3c7ce8c99c6;p=platform%2Fcore%2Fuifw%2Fat-spi2-atk.git diff --git a/libspi/selection.h b/libspi/selection.h index 7bf6736..0f35716 100644 --- a/libspi/selection.h +++ b/libspi/selection.h @@ -1,4 +1,7 @@ -/* ATK - Accessibility Toolkit +/* + * AT-SPI - Assistive Technology Service Provider Interface + * (Gnome Accessibility Project; http://developer.gnome.org/projects/gap) + * * Copyright 2001 Sun Microsystems Inc. * * This library is free software; you can redistribute it and/or @@ -20,36 +23,31 @@ #ifndef SPI_SELECTION_H_ #define SPI_SELECTION_H_ -#include -#include -#include +#include +#include G_BEGIN_DECLS -#define SPI_SELECTION_TYPE (spi_selection_get_type ()) -#define SPI_SELECTION(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), SPI_SELECTION_TYPE, SpiSelection)) +#define SPI_SELECTION_TYPE (spi_selection_get_type ()) +#define SPI_SELECTION(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), SPI_SELECTION_TYPE, SpiSelection)) #define SPI_SELECTION_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), SPI_SELECTION_TYPE, SpiSelectionClass)) -#define IS_SPI_SELECTION(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), SPI_SELECTION_TYPE)) -#define IS_SPI_SELECTION_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), SPI_SELECTION_TYPE)) +#define SPI_IS_SELECTION(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), SPI_SELECTION_TYPE)) +#define SPI_IS_SELECTION_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), SPI_SELECTION_TYPE)) -typedef struct _Selection SpiSelection; -typedef struct _SelectionClass SpiSelectionClass; +typedef struct _SpiSelection SpiSelection; +typedef struct _SpiSelectionClass SpiSelectionClass; -struct _Selection { - BonoboObject parent; - AtkObject *atko; +struct _SpiSelection { + SpiBase parent; }; -struct _SelectionClass { - BonoboObjectClass parent_class; +struct _SpiSelectionClass { + SpiBaseClass parent_class; POA_Accessibility_Selection__epv epv; }; -GType -spi_selection_get_type (void); - -SpiSelection * -spi_selection_interface_new (AtkObject *obj); +GType spi_selection_get_type (void); +SpiSelection *spi_selection_interface_new (AtkObject *obj); G_END_DECLS