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 Lesser 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 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser 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.
22 #include <glib-object.h>
28 #undef FOCUS_EVENT /* <windows.h> pollutes the namespace
29 * like a six hundred pound gorilla */
33 #include "atkmarshal.h"
34 #include "atk-enum-types.h"
37 GPtrArray
*extra_roles
= NULL
;
41 PROP_0
, /* gobject convention */
45 PROP_PARENT
, /* ancestry has changed */
51 PROP_TABLE_COLUMN_DESCRIPTION
,
52 PROP_TABLE_COLUMN_HEADER
,
53 PROP_TABLE_ROW_DESCRIPTION
,
54 PROP_TABLE_ROW_HEADER
,
56 PROP_TABLE_CAPTION_OBJECT
,
57 PROP_HYPERTEXT_NUM_LINKS
,
58 PROP_LAST
/* gobject convention */
67 ACTIVE_DESCENDANT_CHANGED
,
72 typedef struct _AtkRoleItem AtkRoleItem
;
80 static AtkRoleItem role_items
[] =
82 { ATK_ROLE_INVALID
, N_("invalid")},
83 { ATK_ROLE_ACCEL_LABEL
, N_("accel label")},
84 { ATK_ROLE_ALERT
, N_("alert")},
85 { ATK_ROLE_ANIMATION
, N_("animation")},
86 { ATK_ROLE_ARROW
, N_("arrow")},
87 { ATK_ROLE_CALENDAR
, N_("calendar")},
88 { ATK_ROLE_CANVAS
, N_("canvas")},
89 { ATK_ROLE_CHECK_BOX
, N_("check box")},
90 { ATK_ROLE_CHECK_MENU_ITEM
, N_("check menu item")},
91 { ATK_ROLE_COLOR_CHOOSER
, N_("color chooser")},
92 { ATK_ROLE_COLUMN_HEADER
, N_("column header")},
93 { ATK_ROLE_COMBO_BOX
, N_("combo box")},
94 { ATK_ROLE_DATE_EDITOR
, N_("dateeditor")},
95 { ATK_ROLE_DESKTOP_ICON
, N_("desktop icon")},
96 { ATK_ROLE_DESKTOP_FRAME
, N_("desktop frame")},
97 { ATK_ROLE_DIAL
, N_("dial")},
98 { ATK_ROLE_DIALOG
, N_("dialog")},
99 { ATK_ROLE_DIRECTORY_PANE
, N_("directory pane")},
100 { ATK_ROLE_DRAWING_AREA
, N_("drawing area")},
101 { ATK_ROLE_FILE_CHOOSER
, N_("file chooser")},
102 { ATK_ROLE_FILLER
, N_("filler")},
103 /* I know it looks wrong but that is what Java returns */
104 { ATK_ROLE_FONT_CHOOSER
, N_("fontchooser")},
105 { ATK_ROLE_FRAME
, N_("frame")},
106 { ATK_ROLE_GLASS_PANE
, N_("glass pane")},
107 { ATK_ROLE_HTML_CONTAINER
, N_("html container")},
108 { ATK_ROLE_ICON
, N_("icon")},
109 { ATK_ROLE_IMAGE
, N_("image")},
110 { ATK_ROLE_INTERNAL_FRAME
, N_("internal frame")},
111 { ATK_ROLE_LABEL
, N_("label")},
112 { ATK_ROLE_LAYERED_PANE
, N_("layered pane")},
113 { ATK_ROLE_LIST
, N_("list")},
114 { ATK_ROLE_LIST_ITEM
, N_("list item")},
115 { ATK_ROLE_MENU
, N_("menu")},
116 { ATK_ROLE_MENU_BAR
, N_("menu bar")},
117 { ATK_ROLE_MENU_ITEM
, N_("menu item")},
118 { ATK_ROLE_OPTION_PANE
, N_("option pane")},
119 { ATK_ROLE_PAGE_TAB
, N_("page tab")},
120 { ATK_ROLE_PAGE_TAB_LIST
, N_("page tab list")},
121 { ATK_ROLE_PANEL
, N_("panel")},
122 { ATK_ROLE_PASSWORD_TEXT
, N_("password text")},
123 { ATK_ROLE_POPUP_MENU
, N_("popup menu")},
124 { ATK_ROLE_PROGRESS_BAR
, N_("progress bar")},
125 { ATK_ROLE_PUSH_BUTTON
, N_("push button")},
126 { ATK_ROLE_RADIO_BUTTON
, N_("radio button")},
127 { ATK_ROLE_RADIO_MENU_ITEM
, N_("radio menu item")},
128 { ATK_ROLE_ROOT_PANE
, N_("root pane")},
129 { ATK_ROLE_ROW_HEADER
, N_("row header")},
130 { ATK_ROLE_SCROLL_BAR
, N_("scroll bar")},
131 { ATK_ROLE_SCROLL_PANE
, N_("scroll pane")},
132 { ATK_ROLE_SEPARATOR
, N_("separator")},
133 { ATK_ROLE_SLIDER
, N_("slider")},
134 { ATK_ROLE_SPLIT_PANE
, N_("split pane")},
135 { ATK_ROLE_SPIN_BUTTON
, N_("spin button")},
136 { ATK_ROLE_STATUSBAR
, N_("statusbar")},
137 { ATK_ROLE_TABLE
, N_("table")},
138 { ATK_ROLE_TABLE_CELL
, N_("table cell")},
139 { ATK_ROLE_TABLE_COLUMN_HEADER
, N_("table column header")},
140 { ATK_ROLE_TABLE_ROW_HEADER
, N_("table row header")},
141 { ATK_ROLE_TEAR_OFF_MENU_ITEM
, N_("tear off menu item")},
142 { ATK_ROLE_TERMINAL
, N_("terminal")},
143 { ATK_ROLE_TEXT
, N_("text")},
144 { ATK_ROLE_TOGGLE_BUTTON
, N_("toggle button")},
145 { ATK_ROLE_TOOL_BAR
, N_("tool bar")},
146 { ATK_ROLE_TOOL_TIP
, N_("tool tip")},
147 { ATK_ROLE_TREE
, N_("tree")},
148 { ATK_ROLE_TREE_TABLE
, N_("tree table")},
149 { ATK_ROLE_UNKNOWN
, N_("unknown")},
150 { ATK_ROLE_VIEWPORT
, N_("viewport")},
151 { ATK_ROLE_WINDOW
, N_("window")},
152 { ATK_ROLE_HEADER
, N_("header")},
153 { ATK_ROLE_FOOTER
, N_("footer")},
154 { ATK_ROLE_PARAGRAPH
, N_("paragraph")},
155 { ATK_ROLE_APPLICATION
, N_("application")},
156 { ATK_ROLE_AUTOCOMPLETE
, N_("autocomplete")}
159 static void atk_object_class_init (AtkObjectClass
*klass
);
160 static void atk_object_init (AtkObject
*accessible
,
161 AtkObjectClass
*klass
);
162 static AtkRelationSet
* atk_object_real_ref_relation_set
163 (AtkObject
*accessible
);
164 static void atk_object_real_initialize (AtkObject
*accessible
,
166 static void atk_object_real_set_property (GObject
*object
,
170 static void atk_object_real_get_property (GObject
*object
,
174 static void atk_object_finalize (GObject
*object
);
175 static G_CONST_RETURN gchar
*
176 atk_object_real_get_name (AtkObject
*object
);
177 static G_CONST_RETURN gchar
*
178 atk_object_real_get_description
180 static AtkObject
* atk_object_real_get_parent (AtkObject
*object
);
181 static AtkRole
atk_object_real_get_role (AtkObject
*object
);
182 static AtkLayer
atk_object_real_get_layer (AtkObject
*object
);
183 static AtkStateSet
* atk_object_real_ref_state_set
185 static void atk_object_real_set_name (AtkObject
*object
,
187 static void atk_object_real_set_description
189 const gchar
*description
);
190 static void atk_object_real_set_parent (AtkObject
*object
,
192 static void atk_object_real_set_role (AtkObject
*object
,
194 static guint atk_object_real_connect_property_change_handler
196 AtkPropertyChangeHandler
198 static void atk_object_real_remove_property_change_handler
201 static void atk_object_notify (GObject
*obj
,
205 static guint atk_object_signals
[LAST_SIGNAL
] = { 0, };
207 static gpointer parent_class
= NULL
;
209 static const gchar
* atk_object_name_property_name
= "accessible-name";
210 static const gchar
* atk_object_name_property_description
= "accessible-description";
211 static const gchar
* atk_object_name_property_parent
= "accessible-parent";
212 static const gchar
* atk_object_name_property_value
= "accessible-value";
213 static const gchar
* atk_object_name_property_role
= "accessible-role";
214 static const gchar
* atk_object_name_property_component_layer
= "accessible-component-layer";
215 static const gchar
* atk_object_name_property_component_mdi_zorder
= "accessible-component-mdi-zorder";
216 static const gchar
* atk_object_name_property_table_caption
= "accessible-table-caption";
217 static const gchar
* atk_object_name_property_table_column_description
= "accessible-table-column-description";
218 static const gchar
* atk_object_name_property_table_column_header
= "accessible-table-column-header";
219 static const gchar
* atk_object_name_property_table_row_description
= "accessible-table-row-description";
220 static const gchar
* atk_object_name_property_table_row_header
= "accessible-table-row-header";
221 static const gchar
* atk_object_name_property_table_summary
= "accessible-table-summary";
222 static const gchar
* atk_object_name_property_table_caption_object
= "accessible-table-caption-object";
223 static const gchar
* atk_object_name_property_hypertext_num_links
= "accessible-hypertext-nlinks";
226 atk_object_get_type (void)
228 static GType type
= 0;
232 static const GTypeInfo typeInfo
=
234 sizeof (AtkObjectClass
),
235 (GBaseInitFunc
) NULL
,
236 (GBaseFinalizeFunc
) NULL
,
237 (GClassInitFunc
) atk_object_class_init
,
238 (GClassFinalizeFunc
) NULL
,
242 (GInstanceInitFunc
) atk_object_init
,
244 type
= g_type_register_static (G_TYPE_OBJECT
, "AtkObject", &typeInfo
, 0) ;
250 atk_object_class_init (AtkObjectClass
*klass
)
252 GObjectClass
*gobject_class
= G_OBJECT_CLASS (klass
);
254 parent_class
= g_type_class_peek_parent (klass
);
256 gobject_class
->set_property
= atk_object_real_set_property
;
257 gobject_class
->get_property
= atk_object_real_get_property
;
258 gobject_class
->finalize
= atk_object_finalize
;
259 gobject_class
->notify
= atk_object_notify
;
261 klass
->get_name
= atk_object_real_get_name
;
262 klass
->get_description
= atk_object_real_get_description
;
263 klass
->get_parent
= atk_object_real_get_parent
;
264 klass
->get_n_children
= NULL
;
265 klass
->ref_child
= NULL
;
266 klass
->get_index_in_parent
= NULL
;
267 klass
->ref_relation_set
= atk_object_real_ref_relation_set
;
268 klass
->get_role
= atk_object_real_get_role
;
269 klass
->get_layer
= atk_object_real_get_layer
;
270 klass
->get_mdi_zorder
= NULL
;
271 klass
->initialize
= atk_object_real_initialize
;
272 klass
->ref_state_set
= atk_object_real_ref_state_set
;
273 klass
->set_name
= atk_object_real_set_name
;
274 klass
->set_description
= atk_object_real_set_description
;
275 klass
->set_parent
= atk_object_real_set_parent
;
276 klass
->set_role
= atk_object_real_set_role
;
277 klass
->connect_property_change_handler
=
278 atk_object_real_connect_property_change_handler
;
279 klass
->remove_property_change_handler
=
280 atk_object_real_remove_property_change_handler
;
283 * We do not define default signal handlers here
285 klass
->children_changed
= NULL
;
286 klass
->focus_event
= NULL
;
287 klass
->property_change
= NULL
;
288 klass
->visible_data_changed
= NULL
;
289 klass
->active_descendant_changed
= NULL
;
291 g_object_class_install_property (gobject_class
,
293 g_param_spec_string (atk_object_name_property_name
,
294 _("Accessible Name"),
295 _("Object instance\'s name formatted for assistive technology access"),
298 g_object_class_install_property (gobject_class
,
300 g_param_spec_string (atk_object_name_property_description
,
301 _("Accessible Description"),
302 _("Description of an object, formatted for assistive technology access"),
305 g_object_class_install_property (gobject_class
,
307 g_param_spec_object (atk_object_name_property_parent
,
308 _("Accessible Parent"),
309 _("Is used to notify that the parent has changed"),
312 g_object_class_install_property (gobject_class
,
314 g_param_spec_double (atk_object_name_property_value
,
315 _("Accessible Value"),
316 _("Is used to notify that the value has changed"),
321 g_object_class_install_property (gobject_class
,
323 g_param_spec_int (atk_object_name_property_role
,
324 _("Accessible Role"),
325 _("The accessible role of this object"),
330 g_object_class_install_property (gobject_class
,
332 g_param_spec_int (atk_object_name_property_component_layer
,
333 _("Accessible Layer"),
334 _("The accessible layer of this object"),
339 g_object_class_install_property (gobject_class
,
341 g_param_spec_int (atk_object_name_property_component_mdi_zorder
,
342 _("Accessible MDI Value"),
343 _("The accessible MDI value of this object"),
348 g_object_class_install_property (gobject_class
,
350 g_param_spec_string (atk_object_name_property_table_caption
,
351 _("Accessible Table Caption"),
352 _("Is used to notify that the table caption has changed; this property should not be used. accessible-table-caption-object should be used instead"),
355 g_object_class_install_property (gobject_class
,
356 PROP_TABLE_COLUMN_HEADER
,
357 g_param_spec_object (atk_object_name_property_table_column_header
,
358 _("Accessible Table Column Header"),
359 _("Is used to notify that the table column header has changed"),
362 g_object_class_install_property (gobject_class
,
363 PROP_TABLE_COLUMN_DESCRIPTION
,
364 g_param_spec_string (atk_object_name_property_table_column_description
,
365 _("Accessible Table Column Description"),
366 _("Is used to notify that the table column description has changed"),
369 g_object_class_install_property (gobject_class
,
370 PROP_TABLE_ROW_HEADER
,
371 g_param_spec_object (atk_object_name_property_table_row_header
,
372 _("Accessible Table Row Header"),
373 _("Is used to notify that the table row header has changed"),
376 g_object_class_install_property (gobject_class
,
377 PROP_TABLE_ROW_DESCRIPTION
,
378 g_param_spec_string (atk_object_name_property_table_row_description
,
379 _("Accessible Table Row Description"),
380 _("Is used to notify that the table row description has changed"),
383 g_object_class_install_property (gobject_class
,
385 g_param_spec_object (atk_object_name_property_table_summary
,
386 _("Accessible Table Summary"),
387 _("Is used to notify that the table summary has changed"),
390 g_object_class_install_property (gobject_class
,
391 PROP_TABLE_CAPTION_OBJECT
,
392 g_param_spec_object (atk_object_name_property_table_caption_object
,
393 _("Accessible Table Caption Object"),
394 _("Is used to notify that the table caption has changed"),
397 g_object_class_install_property (gobject_class
,
398 PROP_HYPERTEXT_NUM_LINKS
,
399 g_param_spec_int (atk_object_name_property_hypertext_num_links
,
400 _("Accessible Hypertext Number of Links"),
401 _("The number of links which the current AtkHypertext has"),
406 atk_object_signals
[CHILDREN_CHANGED
] =
407 g_signal_new ("children_changed",
408 G_TYPE_FROM_CLASS (klass
),
409 G_SIGNAL_RUN_LAST
| G_SIGNAL_DETAILED
,
410 G_STRUCT_OFFSET (AtkObjectClass
, children_changed
),
412 g_cclosure_marshal_VOID__UINT_POINTER
,
414 2, G_TYPE_UINT
, G_TYPE_POINTER
);
415 atk_object_signals
[FOCUS_EVENT
] =
416 g_signal_new ("focus_event",
417 G_TYPE_FROM_CLASS (klass
),
419 G_STRUCT_OFFSET (AtkObjectClass
, focus_event
),
421 g_cclosure_marshal_VOID__BOOLEAN
,
424 atk_object_signals
[PROPERTY_CHANGE
] =
425 g_signal_new ("property_change",
426 G_TYPE_FROM_CLASS (klass
),
427 G_SIGNAL_RUN_LAST
| G_SIGNAL_DETAILED
,
428 G_STRUCT_OFFSET (AtkObjectClass
, property_change
),
429 (GSignalAccumulator
) NULL
, NULL
,
430 g_cclosure_marshal_VOID__POINTER
,
433 atk_object_signals
[STATE_CHANGE
] =
434 g_signal_new ("state_change",
435 G_TYPE_FROM_CLASS (klass
),
436 G_SIGNAL_RUN_LAST
| G_SIGNAL_DETAILED
,
437 G_STRUCT_OFFSET (AtkObjectClass
, state_change
),
438 (GSignalAccumulator
) NULL
, NULL
,
439 atk_marshal_VOID__STRING_BOOLEAN
,
443 atk_object_signals
[VISIBLE_DATA_CHANGED
] =
444 g_signal_new ("visible_data_changed",
445 G_TYPE_FROM_CLASS (klass
),
447 G_STRUCT_OFFSET (AtkObjectClass
, visible_data_changed
),
448 (GSignalAccumulator
) NULL
, NULL
,
449 g_cclosure_marshal_VOID__VOID
,
451 atk_object_signals
[ACTIVE_DESCENDANT_CHANGED
] =
452 g_signal_new ("active_descendant_changed",
453 G_TYPE_FROM_CLASS (klass
),
454 G_SIGNAL_RUN_LAST
| G_SIGNAL_DETAILED
,
455 G_STRUCT_OFFSET (AtkObjectClass
, active_descendant_changed
),
457 g_cclosure_marshal_VOID__POINTER
,
463 atk_object_init (AtkObject
*accessible
,
464 AtkObjectClass
*klass
)
466 accessible
->name
= NULL
;
467 accessible
->description
= NULL
;
468 accessible
->accessible_parent
= NULL
;
469 accessible
->relation_set
= atk_relation_set_new();
470 accessible
->role
= ATK_ROLE_UNKNOWN
;
474 atk_implementor_get_type (void)
476 static GType type
= 0;
480 static const GTypeInfo typeInfo
=
482 sizeof (AtkImplementorIface
),
483 (GBaseInitFunc
) NULL
,
484 (GBaseFinalizeFunc
) NULL
,
487 type
= g_type_register_static (G_TYPE_INTERFACE
, "AtkImplementorIface", &typeInfo
, 0) ;
494 * atk_object_get_name:
495 * @accessible: an #AtkObject
497 * Gets the accessible name of the accessible.
499 * Returns: a character string representing the accessible name of the object.
501 G_CONST_RETURN gchar
*
502 atk_object_get_name (AtkObject
*accessible
)
504 AtkObjectClass
*klass
;
506 g_return_val_if_fail (ATK_IS_OBJECT (accessible
), NULL
);
508 klass
= ATK_OBJECT_GET_CLASS (accessible
);
510 return (klass
->get_name
) (accessible
);
516 * atk_object_get_description:
517 * @accessible: an #AtkObject
519 * Gets the accessible description of the accessible.
521 * Returns: a character string representing the accessible description
525 G_CONST_RETURN gchar
*
526 atk_object_get_description (AtkObject
*accessible
)
528 AtkObjectClass
*klass
;
530 g_return_val_if_fail (ATK_IS_OBJECT (accessible
), NULL
);
532 klass
= ATK_OBJECT_GET_CLASS (accessible
);
533 if (klass
->get_description
)
534 return (klass
->get_description
) (accessible
);
540 * atk_object_get_parent:
541 * @accessible: an #AtkObject
543 * Gets the accessible parent of the accessible.
545 * Returns: a #AtkObject representing the accessible parent of the accessible
548 atk_object_get_parent (AtkObject
*accessible
)
550 AtkObjectClass
*klass
;
552 g_return_val_if_fail (ATK_IS_OBJECT (accessible
), NULL
);
554 klass
= ATK_OBJECT_GET_CLASS (accessible
);
555 if (klass
->get_parent
)
556 return (klass
->get_parent
) (accessible
);
562 * atk_object_get_n_accessible_children:
563 * @accessible: an #AtkObject
565 * Gets the number of accessible children of the accessible.
567 * Returns: an integer representing the number of accessible children
571 atk_object_get_n_accessible_children (AtkObject
*accessible
)
573 AtkObjectClass
*klass
;
575 g_return_val_if_fail (ATK_IS_OBJECT (accessible
), 0);
577 klass
= ATK_OBJECT_GET_CLASS (accessible
);
578 if (klass
->get_n_children
)
579 return (klass
->get_n_children
) (accessible
);
585 * atk_object_ref_accessible_child:
586 * @accessible: an #AtkObject
587 * @i: a gint representing the position of the child, starting from 0
589 * Gets a reference to the specified accessible child of the object.
590 * The accessible children are 0-based so the first accessible child is
591 * at index 0, the second at index 1 and so on.
593 * Returns: an #AtkObject representing the specified accessible child
597 atk_object_ref_accessible_child (AtkObject
*accessible
,
600 AtkObjectClass
*klass
;
602 g_return_val_if_fail (ATK_IS_OBJECT (accessible
), NULL
);
604 klass
= ATK_OBJECT_GET_CLASS (accessible
);
605 if (klass
->ref_child
)
606 return (klass
->ref_child
) (accessible
, i
);
612 * atk_object_ref_relation_set:
613 * @accessible: an #AtkObject
615 * Gets the #AtkRelationSet associated with the object.
617 * Returns: an #AtkRelationSet representing the relation set of the object.
620 atk_object_ref_relation_set (AtkObject
*accessible
)
622 AtkObjectClass
*klass
;
624 g_return_val_if_fail (ATK_IS_OBJECT (accessible
), NULL
);
626 klass
= ATK_OBJECT_GET_CLASS (accessible
);
627 if (klass
->ref_relation_set
)
628 return (klass
->ref_relation_set
) (accessible
);
635 * @name: a character string describing the new role.
637 * Registers the role specified by @name.
639 * Returns: an #AtkRole for the new role.
642 atk_role_register (const gchar
*name
)
645 extra_roles
= g_ptr_array_new ();
647 g_ptr_array_add (extra_roles
, g_strdup (name
));
648 return extra_roles
->len
+ ATK_ROLE_LAST_DEFINED
;
652 * atk_object_get_role:
653 * @accessible: an #AtkObject
655 * Gets the role of the accessible.
657 * Returns: an #AtkRole which is the role of the accessible
660 atk_object_get_role (AtkObject
*accessible
)
662 AtkObjectClass
*klass
;
664 g_return_val_if_fail (ATK_IS_OBJECT (accessible
), ATK_ROLE_UNKNOWN
);
666 klass
= ATK_OBJECT_GET_CLASS (accessible
);
668 return (klass
->get_role
) (accessible
);
670 return ATK_ROLE_UNKNOWN
;
674 * atk_object_get_layer:
675 * @accessible: an #AtkObject
677 * Gets the layer of the accessible.
678 * DEPRECATED: use atk_component_get_layer instead!
680 * Returns: an #AtkLayer which is the layer of the accessible
683 atk_object_get_layer (AtkObject
*accessible
)
685 AtkObjectClass
*klass
;
687 g_return_val_if_fail (ATK_IS_OBJECT (accessible
), ATK_LAYER_INVALID
);
689 klass
= ATK_OBJECT_GET_CLASS (accessible
);
690 if (klass
->get_layer
)
691 return (klass
->get_layer
) (accessible
);
693 return ATK_LAYER_INVALID
;
697 * atk_object_get_mdi_zorder:
698 * @accessible: an #AtkObject
700 * Gets the zorder of the accessible. The value G_MININT will be returned
701 * if the layer of the accessible is not ATK_LAYER_MDI.
702 * DEPRECATED: use atk_component_get_mdi_zorder instead!
704 * Returns: a gint which is the zorder of the accessible, i.e. the depth at
705 * which the component is shown in relation to other components in the same
709 atk_object_get_mdi_zorder (AtkObject
*accessible
)
711 AtkObjectClass
*klass
;
713 g_return_val_if_fail (ATK_IS_OBJECT (accessible
), G_MININT
);
715 klass
= ATK_OBJECT_GET_CLASS (accessible
);
716 if (klass
->get_mdi_zorder
)
717 return (klass
->get_mdi_zorder
) (accessible
);
723 * atk_object_ref_state_set:
724 * @accessible: an #AtkObject
726 * Gets a reference to the state set of the accessible; the caller must
727 * unreference it when it is no longer needed.
729 * Returns: a reference to an #AtkStateSet which is the state
730 * set of the accessible
733 atk_object_ref_state_set (AtkObject
*accessible
)
735 AtkObjectClass
*klass
;
737 g_return_val_if_fail (ATK_IS_OBJECT (accessible
), NULL
);
739 klass
= ATK_OBJECT_GET_CLASS (accessible
);
740 if (klass
->ref_state_set
)
741 return (klass
->ref_state_set
) (accessible
);
747 * atk_object_get_index_in_parent:
748 * @accessible: an #AtkObject
750 * Gets the 0-based index of this accessible in its parent; returns -1 if the
751 * accessible does not have an accessible parent.
753 * Returns: an integer which is the index of the accessible in its parent
756 atk_object_get_index_in_parent (AtkObject
*accessible
)
758 AtkObjectClass
*klass
;
760 g_return_val_if_fail (ATK_OBJECT (accessible
), -1);
762 klass
= ATK_OBJECT_GET_CLASS (accessible
);
763 if (klass
->get_index_in_parent
)
764 return (klass
->get_index_in_parent
) (accessible
);
770 * atk_object_set_name:
771 * @accessible: an #AtkObject
772 * @name: a character string to be set as the accessible name
774 * Sets the accessible name of the accessible.
777 atk_object_set_name (AtkObject
*accessible
,
780 AtkObjectClass
*klass
;
782 g_return_if_fail (ATK_IS_OBJECT (accessible
));
783 g_return_if_fail (name
!= NULL
);
785 klass
= ATK_OBJECT_GET_CLASS (accessible
);
788 (klass
->set_name
) (accessible
, name
);
789 g_object_notify (G_OBJECT (accessible
), atk_object_name_property_name
);
794 * atk_object_set_description:
795 * @accessible: an #AtkObject
796 * @description : a character string to be set as the accessible description
798 * Sets the accessible description of the accessible.
801 atk_object_set_description (AtkObject
*accessible
,
802 const gchar
*description
)
804 AtkObjectClass
*klass
;
806 g_return_if_fail (ATK_IS_OBJECT (accessible
));
807 g_return_if_fail (description
!= NULL
);
809 klass
= ATK_OBJECT_GET_CLASS (accessible
);
810 if (klass
->set_description
)
812 (klass
->set_description
) (accessible
, description
);
813 g_object_notify (G_OBJECT (accessible
), atk_object_name_property_description
);
818 * atk_object_set_parent:
819 * @accessible: an #AtkObject
820 * @parent : an #AtkObject to be set as the accessible parent
822 * Sets the accessible parent of the accessible.
825 atk_object_set_parent (AtkObject
*accessible
,
828 AtkObjectClass
*klass
;
830 g_return_if_fail (ATK_IS_OBJECT (accessible
));
832 klass
= ATK_OBJECT_GET_CLASS (accessible
);
833 if (klass
->set_parent
)
835 (klass
->set_parent
) (accessible
, parent
);
836 g_object_notify (G_OBJECT (accessible
), atk_object_name_property_parent
);
841 * atk_object_set_role:
842 * @accessible: an #AtkObject
843 * @role : an #AtkRole to be set as the role
845 * Sets the role of the accessible.
848 atk_object_set_role (AtkObject
*accessible
,
851 AtkObjectClass
*klass
;
854 g_return_if_fail (ATK_IS_OBJECT (accessible
));
856 klass
= ATK_OBJECT_GET_CLASS (accessible
);
859 old_role
= atk_object_get_role (accessible
);
860 if (old_role
!= role
)
862 (klass
->set_role
) (accessible
, role
);
863 if (old_role
!= ATK_ROLE_UNKNOWN
)
864 /* Do not notify for initial role setting */
865 g_object_notify (G_OBJECT (accessible
), atk_object_name_property_role
);
871 * atk_object_connect_property_change_handler:
872 * @accessible: an #AtkObject
873 * @handler : a function to be called when a property changes its value
875 * Specifies a function to be called when a property changes value.
877 * Returns: a #guint which is the handler id used in
878 * atk_object_remove_property_change_handler()
881 atk_object_connect_property_change_handler (AtkObject
*accessible
,
882 AtkPropertyChangeHandler
*handler
)
884 AtkObjectClass
*klass
;
886 g_return_val_if_fail (ATK_IS_OBJECT (accessible
), 0);
887 g_return_val_if_fail ((handler
!= NULL
), 0);
889 klass
= ATK_OBJECT_GET_CLASS (accessible
);
890 if (klass
->connect_property_change_handler
)
891 return (klass
->connect_property_change_handler
) (accessible
, handler
);
897 * atk_object_remove_property_change_handler:
898 * @accessible: an #AtkObject
899 * @handler_id : a guint which identifies the handler to be removed.
901 * Removes a property change handler.
904 atk_object_remove_property_change_handler (AtkObject
*accessible
,
907 AtkObjectClass
*klass
;
909 g_return_if_fail (ATK_IS_OBJECT (accessible
));
911 klass
= ATK_OBJECT_GET_CLASS (accessible
);
912 if (klass
->remove_property_change_handler
)
913 (klass
->remove_property_change_handler
) (accessible
, handler_id
);
917 * atk_object_notify_state_change:
918 * @accessible: an #AtkObject
919 * @state: an #AtkState whose state is changed
920 * @value : a gboolean which indicates whether the state is being set on or off
922 * Emits a state-change signal for the specified state.
925 atk_object_notify_state_change (AtkObject
*accessible
,
929 G_CONST_RETURN gchar
* name
;
931 name
= atk_state_type_get_name (state
);
932 g_signal_emit (accessible
, atk_object_signals
[STATE_CHANGE
],
933 g_quark_from_string (name
),
938 * atk_implementor_ref_accessible:
939 * @implementor: The #GObject instance which should implement #AtkImplementorIface
940 * if a non-null return value is required.
942 * Gets a reference to an object's #AtkObject implementation, if
943 * the object implements #AtkObjectIface
945 * Returns: a reference to an object's #AtkObject implementation
948 atk_implementor_ref_accessible (AtkImplementor
*object
)
950 AtkImplementorIface
*iface
;
951 AtkObject
*accessible
= NULL
;
953 g_return_val_if_fail (ATK_IS_IMPLEMENTOR (object
), NULL
);
955 iface
= ATK_IMPLEMENTOR_GET_IFACE (object
);
958 accessible
= iface
->ref_accessible (object
);
960 g_return_val_if_fail ((accessible
!= NULL
), NULL
);
965 static AtkRelationSet
*
966 atk_object_real_ref_relation_set (AtkObject
*accessible
)
968 g_return_val_if_fail (accessible
->relation_set
, NULL
);
969 g_object_ref (accessible
->relation_set
);
971 return accessible
->relation_set
;
975 atk_object_real_set_property (GObject
*object
,
980 AtkObject
*accessible
;
982 accessible
= ATK_OBJECT (object
);
987 atk_object_set_name (accessible
, g_value_get_string (value
));
989 case PROP_DESCRIPTION
:
990 atk_object_set_description (accessible
, g_value_get_string (value
));
993 atk_object_set_role (accessible
, g_value_get_int (value
));
996 atk_object_set_parent (accessible
, g_value_get_object (value
));
999 if (ATK_IS_VALUE (accessible
))
1000 atk_value_set_current_value (ATK_VALUE (accessible
), value
);
1002 case PROP_TABLE_SUMMARY
:
1003 if (ATK_IS_TABLE (accessible
))
1004 atk_table_set_summary (ATK_TABLE (accessible
), g_value_get_object (value
));
1006 case PROP_TABLE_CAPTION_OBJECT
:
1007 if (ATK_IS_TABLE (accessible
))
1008 atk_table_set_caption (ATK_TABLE (accessible
), g_value_get_object (value
));
1016 atk_object_real_get_property (GObject
*object
,
1021 AtkObject
*accessible
;
1023 accessible
= ATK_OBJECT (object
);
1028 g_value_set_string (value
, atk_object_get_name (accessible
));
1030 case PROP_DESCRIPTION
:
1031 g_value_set_string (value
, atk_object_get_description (accessible
));
1034 g_value_set_int (value
, atk_object_get_role (accessible
));
1037 if (ATK_IS_COMPONENT (accessible
))
1038 g_value_set_int (value
, atk_component_get_layer (ATK_COMPONENT (accessible
)));
1040 case PROP_MDI_ZORDER
:
1041 if (ATK_IS_COMPONENT (accessible
))
1042 g_value_set_int (value
, atk_component_get_mdi_zorder (ATK_COMPONENT (accessible
)));
1045 g_value_set_object (value
, atk_object_get_parent (accessible
));
1048 if (ATK_IS_VALUE (accessible
))
1049 atk_value_get_current_value (ATK_VALUE (accessible
), value
);
1051 case PROP_TABLE_SUMMARY
:
1052 if (ATK_IS_TABLE (accessible
))
1053 g_value_set_object (value
, atk_table_get_summary (ATK_TABLE (accessible
)));
1055 case PROP_TABLE_CAPTION_OBJECT
:
1056 if (ATK_IS_TABLE (accessible
))
1057 g_value_set_object (value
, atk_table_get_caption (ATK_TABLE (accessible
)));
1059 case PROP_HYPERTEXT_NUM_LINKS
:
1060 if (ATK_IS_HYPERTEXT (accessible
))
1061 g_value_set_set (value
, atk_hypertext_get_n_links (ATK_HYPERTEXT (accessible
)));
1064 G_OBJECT_WARN_INVALID_PROPERTY_ID (object
, prop_id
, pspec
);
1070 atk_object_finalize (GObject
*object
)
1072 AtkObject
*accessible
;
1074 g_return_if_fail (ATK_IS_OBJECT (object
));
1076 accessible
= ATK_OBJECT (object
);
1078 g_free (accessible
->name
);
1079 g_free (accessible
->description
);
1082 * Free memory allocated for relation set if it have been allocated.
1084 if (accessible
->relation_set
)
1085 g_object_unref (accessible
->relation_set
);
1087 if (accessible
->accessible_parent
)
1088 g_object_unref (accessible
->accessible_parent
);
1090 G_OBJECT_CLASS (parent_class
)->finalize (object
);
1093 static G_CONST_RETURN gchar
*
1094 atk_object_real_get_name (AtkObject
*object
)
1096 return object
->name
;
1099 static G_CONST_RETURN gchar
*
1100 atk_object_real_get_description (AtkObject
*object
)
1102 return object
->description
;
1106 atk_object_real_get_parent (AtkObject
*object
)
1108 return object
->accessible_parent
;
1112 atk_object_real_get_role (AtkObject
*object
)
1114 return object
->role
;
1118 atk_object_real_get_layer (AtkObject
*object
)
1120 return object
->layer
;
1124 atk_object_real_ref_state_set (AtkObject
*accessible
)
1126 AtkStateSet
*state_set
;
1128 AtkObject
*focus_object
;
1130 state_set
= atk_state_set_new ();
1132 ap
= atk_object_get_parent (accessible
);
1134 if (ATK_IS_SELECTION (ap
))
1138 atk_state_set_add_state (state_set
, ATK_STATE_SELECTABLE
);
1140 i
= atk_object_get_index_in_parent (accessible
);
1142 if (atk_selection_is_child_selected(ATK_SELECTION (ap
), i
))
1143 atk_state_set_add_state (state_set
, ATK_STATE_SELECTED
);
1145 focus_object
= atk_get_focus_object ();
1146 if (focus_object
== accessible
)
1147 atk_state_set_add_state (state_set
, ATK_STATE_FOCUSED
);
1153 atk_object_real_set_name (AtkObject
*object
,
1156 g_free (object
->name
);
1157 object
->name
= g_strdup (name
);
1161 atk_object_real_set_description (AtkObject
*object
,
1162 const gchar
*description
)
1164 g_free (object
->description
);
1165 object
->description
= g_strdup (description
);
1169 atk_object_real_set_parent (AtkObject
*object
,
1172 if (object
->accessible_parent
)
1173 g_object_unref (object
->accessible_parent
);
1175 object
->accessible_parent
= parent
;
1176 if (object
->accessible_parent
)
1177 g_object_ref (object
->accessible_parent
);
1181 atk_object_real_set_role (AtkObject
*object
,
1184 object
->role
= role
;
1188 atk_object_real_connect_property_change_handler (AtkObject
*obj
,
1189 AtkPropertyChangeHandler
*handler
)
1191 return g_signal_connect_closure_by_id (obj
,
1192 atk_object_signals
[PROPERTY_CHANGE
],
1195 G_CALLBACK (handler
), NULL
,
1196 (GClosureNotify
) NULL
),
1201 atk_object_real_remove_property_change_handler (AtkObject
*obj
,
1204 g_signal_handler_disconnect (obj
, handler_id
);
1208 * atk_object_initialize:
1209 * @accessible: a #AtkObject
1210 * @data: a #gpointer which identifies the object for which the AtkObject was created.
1212 * This function is called when implementing subclasses of #AtkObject.
1213 * It does initialization required for the new object. It is intended
1214 * that this function should called only in the ..._new() functions used
1215 * to create an instance of a subclass of #AtkObject
1218 atk_object_initialize (AtkObject
*accessible
,
1221 AtkObjectClass
*klass
;
1223 g_return_if_fail (ATK_IS_OBJECT (accessible
));
1225 klass
= ATK_OBJECT_GET_CLASS (accessible
);
1226 if (klass
->initialize
)
1227 klass
->initialize (accessible
, data
);
1231 * This function is a signal handler for notify signal which gets emitted
1232 * when a property changes value.
1234 * It constructs an AtkPropertyValues structure and emits a "property_changed"
1235 * signal which causes the user specified AtkPropertyChangeHandler
1239 atk_object_notify (GObject
*obj
,
1242 AtkPropertyValues values
= { 0, };
1244 g_value_init (&values
.new_value
, pspec
->value_type
);
1245 g_object_get_property (obj
, pspec
->name
, &values
.new_value
);
1246 values
.property_name
= pspec
->name
;
1247 g_signal_emit (obj
, atk_object_signals
[PROPERTY_CHANGE
],
1248 g_quark_from_string (pspec
->name
),
1250 g_value_unset (&values
.new_value
);
1254 * atk_role_get_name:
1255 * @role: The #AtkRole whose name is required
1257 * Gets the description string describing the #AtkRole @role.
1259 * Returns: the string describing the AtkRole
1261 G_CONST_RETURN gchar
*
1262 atk_role_get_name (AtkRole role
)
1267 for (i
= 0; i
< G_N_ELEMENTS (role_items
); i
++)
1269 if (role
== role_items
[i
].role
)
1270 return role_items
[i
].name
;
1277 n
-= ATK_ROLE_LAST_DEFINED
+ 1;
1279 if (n
< extra_roles
->len
)
1280 name
= g_ptr_array_index (extra_roles
, n
);
1289 #define ATKLOCALEDIR get_atk_locale_dir()
1291 G_WIN32_DLLMAIN_FOR_DLL_NAME(static, dll_name
)
1294 get_atk_locale_dir (void)
1296 return g_win32_get_package_installation_subdirectory
1297 (GETTEXT_PACKAGE
, dll_name
, "lib/locale");
1303 * atk_role_get_localized_name:
1304 * @role: The #AtkRole whose localized name is required
1306 * Gets the localized description string describing the #AtkRole @role.
1308 * Returns: the localized string describing the AtkRole
1310 G_CONST_RETURN gchar
*
1311 atk_role_get_localized_name (AtkRole role
)
1313 G_CONST_RETURN gchar
*name
;
1315 static gboolean gettext_initialized
= FALSE
;
1318 if (!gettext_initialized
)
1320 gettext_initialized
= TRUE
;
1322 bindtextdomain (GETTEXT_PACKAGE
, ATKLOCALEDIR
);
1323 #ifdef HAVE_BIND_TEXTDOMAIN_CODESET
1324 bind_textdomain_codeset (GETTEXT_PACKAGE
, "UTF-8");
1329 for (i
= 0; i
< G_N_ELEMENTS (role_items
); i
++)
1331 if (role
== role_items
[i
].role
)
1332 return dgettext (GETTEXT_PACKAGE
, role_items
[i
].name
);
1334 name
= atk_role_get_name (role
);
1340 * atk_role_for_name:
1341 * @name: a string which is the (non-localized) name of an ATK role.
1343 * Get the #AtkRole type corresponding to a rolew name.
1345 * Returns: the #AtkRole enumerated type corresponding to the specified
1347 * or #ATK_ROLE_INVALID if no matching role is found.
1350 atk_role_for_name (const gchar
*name
)
1352 AtkRole role
= ATK_ROLE_INVALID
;
1355 g_return_val_if_fail (name
, ATK_ROLE_INVALID
);
1357 for (i
= 0; i
< G_N_ELEMENTS (role_items
); i
++)
1359 if (strcmp (name
, role_items
[i
].name
) == 0)
1360 return role_items
[i
].role
;
1365 for (i
= 0; i
< extra_roles
->len
; i
++)
1367 gchar
*extra_role
= (gchar
*)g_ptr_array_index (extra_roles
, i
);
1369 g_return_val_if_fail (extra_role
, ATK_ROLE_INVALID
);
1371 if (strcmp (name
, extra_role
) == 0)
1373 role
= i
+ 1 + ATK_ROLE_LAST_DEFINED
;
1383 * atk_object_add_relationship:
1384 * @object: The #AtkObject to which an AtkRelation is to be added.
1385 * @relationship: The #AtkRelationType of the relation
1386 * @target: The #AtkObject which is to be the target of the relation.
1388 * Adds a relationship of the specified type with the specified target.
1390 * Returns TRUE if the relationship is added.
1393 atk_object_add_relationship (AtkObject
*object
,
1394 AtkRelationType relationship
,
1397 AtkObject
*array
[1];
1398 AtkRelation
*relation
;
1400 g_return_val_if_fail (ATK_IS_OBJECT (object
), FALSE
);
1401 g_return_val_if_fail (ATK_IS_OBJECT (target
), FALSE
);
1404 relation
= atk_relation_new (array
, 1, relationship
);
1405 atk_relation_set_add (object
->relation_set
, relation
);
1406 g_object_unref (relation
);
1412 * atk_object_remove_relationship:
1413 * @object: The #AtkObject from which an AtkRelation is to be removed.
1414 * @relationship: The #AtkRelationType of the relation
1415 * @target: The #AtkObject which is the target of the relation to be removed.
1417 * Removes a relationship of the specified type with the specified target.
1419 * Returns TRUE if the relationship is removed.
1422 atk_object_remove_relationship (AtkObject
*object
,
1423 AtkRelationType relationship
,
1426 gint n_relations
, i
;
1427 gboolean ret
= FALSE
;
1428 AtkRelation
*relation
;
1430 g_return_val_if_fail (ATK_IS_OBJECT (object
), FALSE
);
1431 g_return_val_if_fail (ATK_IS_OBJECT (target
), FALSE
);
1433 n_relations
= atk_relation_set_get_n_relations (object
->relation_set
);
1434 for (i
= 0; i
< n_relations
; i
++)
1436 relation
= atk_relation_set_get_relation (object
->relation_set
, i
);
1437 if (atk_relation_get_relation_type (relation
) == relationship
)
1441 array
= atk_relation_get_target (relation
);
1443 if (g_ptr_array_index (array
, 0) == target
)
1445 atk_relation_set_remove (object
->relation_set
, relation
);
1456 atk_object_real_initialize (AtkObject
*accessible
,