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
);
51 struct _AtkComponentIface
53 GTypeInterface parent
;
55 guint (* add_focus_handler
) (AtkComponent
*component
,
56 AtkFocusHandler handler
);
58 gboolean (* contains
) (AtkComponent
*component
,
61 AtkCoordType coord_type
);
63 AtkObject
* (* ref_accessible_at_point
) (AtkComponent
*component
,
66 AtkCoordType coord_type
);
67 void (* get_extents
) (AtkComponent
*component
,
72 AtkCoordType coord_type
);
73 void (* get_position
) (AtkComponent
*component
,
76 AtkCoordType coord_type
);
77 void (* get_size
) (AtkComponent
*component
,
80 gboolean (* grab_focus
) (AtkComponent
*component
);
81 void (* remove_focus_handler
) (AtkComponent
*component
,
83 gboolean (* set_extents
) (AtkComponent
*component
,
88 AtkCoordType coord_type
);
89 gboolean (* set_position
) (AtkComponent
*component
,
92 AtkCoordType coord_type
);
93 gboolean (* set_size
) (AtkComponent
*component
,
97 AtkLayer (* get_layer
) (AtkComponent
*component
);
98 gint (* get_mdi_zorder
) (AtkComponent
*component
);
104 GType
atk_component_get_type (void);
106 /* convenience functions */
108 guint
atk_component_add_focus_handler (AtkComponent
*component
,
109 AtkFocusHandler handler
);
110 gboolean
atk_component_contains (AtkComponent
*component
,
113 AtkCoordType coord_type
);
114 AtkObject
* atk_component_ref_accessible_at_point(AtkComponent
*component
,
117 AtkCoordType coord_type
);
118 void atk_component_get_extents (AtkComponent
*component
,
123 AtkCoordType coord_type
);
124 void atk_component_get_position (AtkComponent
*component
,
127 AtkCoordType coord_type
);
128 void atk_component_get_size (AtkComponent
*component
,
131 AtkLayer
atk_component_get_layer (AtkComponent
*component
);
132 gint
atk_component_get_mdi_zorder (AtkComponent
*component
);
133 gboolean
atk_component_grab_focus (AtkComponent
*component
);
134 void atk_component_remove_focus_handler (AtkComponent
*component
,
136 gboolean
atk_component_set_extents (AtkComponent
*component
,
141 AtkCoordType coord_type
);
142 gboolean
atk_component_set_position (AtkComponent
*component
,
145 AtkCoordType coord_type
);
146 gboolean
atk_component_set_size (AtkComponent
*component
,
152 #endif /* __cplusplus */
155 #endif /* __ATK_COMPONENT_H__ */