atspi-accessible.h | atspi-accessible.h | |||
---|---|---|---|---|
skipping to change at line 100 | skipping to change at line 100 | |||
AtspiStateSet * atspi_accessible_get_state_set (AtspiAccessible *obj); | AtspiStateSet * atspi_accessible_get_state_set (AtspiAccessible *obj); | |||
GHashTable * atspi_accessible_get_attributes (AtspiAccessible *obj, GError **error); | GHashTable * atspi_accessible_get_attributes (AtspiAccessible *obj, GError **error); | |||
GArray * atspi_accessible_get_attributes_as_array (AtspiAccessible *obj, GE rror **error); | GArray * atspi_accessible_get_attributes_as_array (AtspiAccessible *obj, GE rror **error); | |||
gchar * atspi_accessible_get_toolkit_name (AtspiAccessible *obj, GError **e rror); | gchar * atspi_accessible_get_toolkit_name (AtspiAccessible *obj, GError **e rror); | |||
gchar * atspi_accessible_get_toolkit_version (AtspiAccessible *obj, GError **error); | gchar * atspi_accessible_get_toolkit_version (AtspiAccessible *obj, GError **error); | |||
gchar * atspi_accessible_get_atspi_version (AtspiAccessible *obj, GError ** | ||||
error); | ||||
gint atspi_accessible_get_id (AtspiAccessible *obj, GError **error); | gint atspi_accessible_get_id (AtspiAccessible *obj, GError **error); | |||
AtspiAccessible * atspi_accessible_get_application (AtspiAccessible *obj, G Error **error); | AtspiAccessible * atspi_accessible_get_application (AtspiAccessible *obj, G Error **error); | |||
AtspiAction * atspi_accessible_get_action (AtspiAccessible *obj); | AtspiAction * atspi_accessible_get_action (AtspiAccessible *obj); | |||
AtspiCollection * atspi_accessible_get_collection (AtspiAccessible *obj); | AtspiCollection * atspi_accessible_get_collection (AtspiAccessible *obj); | |||
AtspiComponent * atspi_accessible_get_component (AtspiAccessible *obj); | AtspiComponent * atspi_accessible_get_component (AtspiAccessible *obj); | |||
skipping to change at line 134 | skipping to change at line 136 | |||
AtspiText * atspi_accessible_get_text (AtspiAccessible *obj); | AtspiText * atspi_accessible_get_text (AtspiAccessible *obj); | |||
AtspiValue * atspi_accessible_get_value (AtspiAccessible *obj); | AtspiValue * atspi_accessible_get_value (AtspiAccessible *obj); | |||
GArray * atspi_accessible_get_interfaces (AtspiAccessible *obj); | GArray * atspi_accessible_get_interfaces (AtspiAccessible *obj); | |||
void atspi_accessible_set_cache_mask (AtspiAccessible *accessible, AtspiCac he mask); | void atspi_accessible_set_cache_mask (AtspiAccessible *accessible, AtspiCac he mask); | |||
/* private */ | /* private */ | |||
void _atspi_accessible_add_cache (AtspiAccessible *accessible, AtspiCache f lag); | void _atspi_accessible_add_cache (AtspiAccessible *accessible, AtspiCache f lag); | |||
gboolean _atspi_accessible_test_cache (AtspiAccessible *accessible, AtspiCa che flag); | ||||
#endif /* _ATSPI_ACCESSIBLE_H_ */ | #endif /* _ATSPI_ACCESSIBLE_H_ */ | |||
End of changes. 2 change blocks. | ||||
0 lines changed or deleted | 4 lines changed or added | |||
atspi-constants.h | atspi-constants.h | |||
---|---|---|---|---|
skipping to change at line 762 | skipping to change at line 762 | |||
/** | /** | |||
* ATSPI_ROLE_COUNT: | * ATSPI_ROLE_COUNT: | |||
* | * | |||
* 1 higher than the highest valid value of #AtspiRole. | * 1 higher than the highest valid value of #AtspiRole. | |||
*/ | */ | |||
#define ATSPI_ROLE_COUNT (90+1) | #define ATSPI_ROLE_COUNT (90+1) | |||
typedef enum | typedef enum | |||
{ | { | |||
ATSPI_CACHE_NONE = 0x0001, | ATSPI_CACHE_NONE = 0x0000, | |||
ATSPI_CACHE_PARENT = 0x0001, | ATSPI_CACHE_PARENT = 0x0001, | |||
ATSPI_CACHE_CHILDREN = 0x0002, | ATSPI_CACHE_CHILDREN = 0x0002, | |||
ATSPI_CACHE_NAME = 0x0004, | ATSPI_CACHE_NAME = 0x0004, | |||
ATSPI_CACHE_DESCRIPTION = 0x0008, | ATSPI_CACHE_DESCRIPTION = 0x0008, | |||
ATSPI_CACHE_STATES = 0x0010, | ATSPI_CACHE_STATES = 0x0010, | |||
ATSPI_CACHE_ROLE = 0x0020, | ATSPI_CACHE_ROLE = 0x0020, | |||
ATSPI_CACHE_INTERFACES = 0x0040, | ATSPI_CACHE_INTERFACES = 0x0040, | |||
ATSPI_CACHE_ALL = 0x3fffffff, | ATSPI_CACHE_ALL = 0x3fffffff, | |||
ATSPI_CACHE_UNDEFINED = 0x40000000 | ATSPI_CACHE_UNDEFINED = 0x40000000 | |||
} AtspiCache; | } AtspiCache; | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||