1 /* ATK - Accessibility Toolkit
2 * Copyright 2001 Sun Microsystems Inc.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
20 #ifndef __ATK_COMPONENT_H__
21 #define __ATK_COMPONENT_H__
23 #include <atk/atkobject.h>
24 #include <atk/atkutil.h>
28 #endif /* __cplusplus */
31 * The AtkComponent interface should be supported by any object that is
32 * rendered on the screen. The interface provides the standard mechanism
33 * for an assistive technology to determine and set the graphical
34 * representation of an object.
37 #define ATK_TYPE_COMPONENT (atk_component_get_type ())
38 #define ATK_IS_COMPONENT(obj) G_TYPE_CHECK_INSTANCE_TYPE ((obj), ATK_TYPE_COMPONENT)
39 #define ATK_COMPONENT(obj) G_TYPE_CHECK_INSTANCE_CAST ((obj), ATK_TYPE_COMPONENT, AtkComponent)
40 #define ATK_COMPONENT_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), ATK_TYPE_COMPONENT, AtkComponentIface))
42 #ifndef _TYPEDEF_ATK_COMPONENT_
43 #define _TYPEDEF_ATK_COMPONENT_
44 typedef struct _AtkComponent AtkComponent;
46 typedef struct _AtkComponentIface AtkComponentIface;
48 typedef void (*AtkFocusHandler) (AtkObject*, gboolean);
50 typedef struct _AtkRectangle AtkRectangle;
60 GType atk_rectangle_get_type (void);
62 #define ATK_TYPE_RECTANGLE (atk_rectangle_get_type ())
63 struct _AtkComponentIface
65 GTypeInterface parent;
67 guint (* add_focus_handler) (AtkComponent *component,
68 AtkFocusHandler handler);
70 gboolean (* contains) (AtkComponent *component,
73 AtkCoordType coord_type);
75 AtkObject* (* ref_accessible_at_point) (AtkComponent *component,
78 AtkCoordType coord_type);
79 void (* get_extents) (AtkComponent *component,
84 AtkCoordType coord_type);
85 void (* get_position) (AtkComponent *component,
88 AtkCoordType coord_type);
89 void (* get_size) (AtkComponent *component,
92 gboolean (* grab_focus) (AtkComponent *component);
93 void (* remove_focus_handler) (AtkComponent *component,
95 gboolean (* set_extents) (AtkComponent *component,
100 AtkCoordType coord_type);
101 gboolean (* set_position) (AtkComponent *component,
104 AtkCoordType coord_type);
105 gboolean (* set_size) (AtkComponent *component,
109 AtkLayer (* get_layer) (AtkComponent *component);
110 gint (* get_mdi_zorder) (AtkComponent *component);
115 void (* bounds_changed) (AtkComponent *component,
116 AtkRectangle *bounds);
117 gdouble (* get_alpha) (AtkComponent *component);
120 GType atk_component_get_type (void);
122 /* convenience functions */
124 guint atk_component_add_focus_handler (AtkComponent *component,
125 AtkFocusHandler handler);
126 gboolean atk_component_contains (AtkComponent *component,
129 AtkCoordType coord_type);
130 AtkObject* atk_component_ref_accessible_at_point(AtkComponent *component,
133 AtkCoordType coord_type);
134 void atk_component_get_extents (AtkComponent *component,
139 AtkCoordType coord_type);
140 void atk_component_get_position (AtkComponent *component,
143 AtkCoordType coord_type);
144 void atk_component_get_size (AtkComponent *component,
147 AtkLayer atk_component_get_layer (AtkComponent *component);
148 gint atk_component_get_mdi_zorder (AtkComponent *component);
149 gboolean atk_component_grab_focus (AtkComponent *component);
150 void atk_component_remove_focus_handler (AtkComponent *component,
152 gboolean atk_component_set_extents (AtkComponent *component,
157 AtkCoordType coord_type);
158 gboolean atk_component_set_position (AtkComponent *component,
161 AtkCoordType coord_type);
162 gboolean atk_component_set_size (AtkComponent *component,
165 gdouble atk_component_get_alpha (AtkComponent *component);
168 #endif /* __cplusplus */
171 #endif /* __ATK_COMPONENT_H__ */