Add selection interface
[platform/upstream/at-spi2-core.git] / atspi / atspi-accessible.h
1 /*
2  * AT-SPI - Assistive Technology Service Provider Interface
3  * (Gnome Accessibility Project; http://developer.gnome.org/projects/gap)
4  *
5  * Copyright 2002 Ximian, Inc.
6  *           2002 Sun Microsystems Inc.
7  *           
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Library General Public
11  * License as published by the Free Software Foundation; either
12  * version 2 of the License, or (at your option) any later version.
13  *
14  * This library is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Library General Public License for more details.
18  *
19  * You should have received a copy of the GNU Library General Public
20  * License along with this library; if not, write to the
21  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22  * Boston, MA 02111-1307, USA.
23  */
24
25 #ifndef _ATSPI_ACCESSIBLE_H_
26 #define _ATSPI_ACCESSIBLE_H_
27
28 #include "glib-object.h"
29
30 #include "atspi-application.h"
31 #include "atspi-constants.h"
32 #include "atspi-stateset.h"
33 #include "atspi-types.h"
34
35 #define ATSPI_TYPE_ACCESSIBLE                        (atspi_accessible_get_type ())
36 #define ATSPI_ACCESSIBLE(obj)                        (G_TYPE_CHECK_INSTANCE_CAST ((obj), ATSPI_TYPE_ACCESSIBLE, AtspiAccessible))
37 #define ATSPI_ACCESSIBLE_CLASS(klass)                (G_TYPE_CHECK_CLASS_CAST ((klass), ATSPI_TYPE_ACCESSIBLE, AtspiAccessibleClass))
38 #define ATSPI_IS_ACCESSIBLE(obj)                     (G_TYPE_CHECK_INSTANCE_TYPE ((obj), ATSPI_TYPE_ACCESSIBLE))
39 #define ATSPI_IS_ACCESSIBLE_CLASS(klass)             (G_TYPE_CHECK_CLASS_TYPE ((klass), ATSPI_TYPE_ACCESSIBLE))
40 #define ATSPI_ACCESSIBLE_GET_CLASS(obj)              (G_TYPE_INSTANCE_GET_CLASS ((obj), ATSPI_TYPE_ACCESSIBLE, AtspiAccessibleClass))
41
42 struct _AtspiAccessible
43 {
44   GObject parent;
45   AtspiAccessible *accessible_parent;
46   GList *children;
47   AtspiApplication *app;
48   char *path;
49   AtspiRole role;
50   gint interfaces;
51   char *name;
52   char *description;
53   AtspiStateSet *states;
54   guint cached_properties;
55 };
56
57 typedef struct _AtspiAccessibleClass AtspiAccessibleClass;
58 struct _AtspiAccessibleClass
59 {
60   GObjectClass parent_class;
61 };
62
63 GType atspi_accessible_get_type (void); 
64
65 AtspiAccessible *
66 atspi_accessible_new (AtspiApplication *app, const gchar *path);
67
68 gchar * atspi_role_get_name (AtspiRole role);
69
70 gchar * atspi_accessible_get_name (AtspiAccessible *obj, GError **error);
71
72 gchar * atspi_accessible_get_description (AtspiAccessible *obj, GError **error);
73
74 AtspiAccessible * atspi_accessible_get_parent (AtspiAccessible *obj, GError **error);
75
76 gint atspi_accessible_get_child_count (AtspiAccessible *obj, GError *error);
77
78 AtspiAccessible * atspi_accessible_get_child_at_index (AtspiAccessible *obj, gint    child_index, GError **error);
79
80 gint atspi_accessible_get_index_in_parent (AtspiAccessible *obj, GError **error);
81
82 GArray * atspi_accessible_get_relation_set (AtspiAccessible *obj, GError **error);
83
84 AtspiRole atspi_accessible_get_role (AtspiAccessible *obj, GError **error);
85
86 gchar * atspi_accessible_get_role_name (AtspiAccessible *obj, GError **error);
87
88 gchar * atspi_accessible_get_localized_role_name (AtspiAccessible *obj, GError **error);
89
90 AtspiStateSet * atspi_accessible_get_state_set (AtspiAccessible *obj);
91
92 GHashTable * atspi_accessible_get_attributes (AtspiAccessible *obj, GError **error);
93
94 GArray * atspi_accessible_get_attributes_as_array (AtspiAccessible *obj, GError **error);
95
96 AtspiAccessible * atspi_accessible_get_host_application (AtspiAccessible *obj, GError **error);
97
98 AtspiComponent * atspi_accessible_get_component (AtspiAccessible *obj);
99
100 AtspiSelection * atspi_accessible_get_selection (AtspiAccessible *obj);
101
102 AtspiTable * atspi_accessible_get_table (AtspiAccessible *obj);
103
104 AtspiText * atspi_accessible_get_text (AtspiAccessible *obj);
105 #endif  /* _ATSPI_ACCESSIBLE_H_ */