atspi-accessible.h | atspi-accessible.h | |||
---|---|---|---|---|
skipping to change at line 29 | skipping to change at line 29 | |||
* | * | |||
* You should have received a copy of the GNU Library General Public | * You should have received a copy of the GNU Library General Public | |||
* License along with this library; if not, write to the | * License along with this library; if not, write to the | |||
* Free Software Foundation, Inc., 59 Temple Place - Suite 330, | * Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |||
* Boston, MA 02111-1307, USA. | * Boston, MA 02111-1307, USA. | |||
*/ | */ | |||
#ifndef _ATSPI_ACCESSIBLE_H_ | #ifndef _ATSPI_ACCESSIBLE_H_ | |||
#define _ATSPI_ACCESSIBLE_H_ | #define _ATSPI_ACCESSIBLE_H_ | |||
G_BEGIN_DECLS | ||||
#include "glib-object.h" | #include "glib-object.h" | |||
#include "atspi-application.h" | #include "atspi-application.h" | |||
#include "atspi-constants.h" | #include "atspi-constants.h" | |||
#include "atspi-object.h" | #include "atspi-object.h" | |||
#include "atspi-stateset.h" | #include "atspi-stateset.h" | |||
#include "atspi-types.h" | #include "atspi-types.h" | |||
#define ATSPI_TYPE_ACCESSIBLE (atspi_accessible_get_ type ()) | #define ATSPI_TYPE_ACCESSIBLE (atspi_accessible_get_ type ()) | |||
#define ATSPI_ACCESSIBLE(obj) (G_TYPE_CHECK_INSTANCE _CAST ((obj), ATSPI_TYPE_ACCESSIBLE, AtspiAccessible)) | #define ATSPI_ACCESSIBLE(obj) (G_TYPE_CHECK_INSTANCE _CAST ((obj), ATSPI_TYPE_ACCESSIBLE, AtspiAccessible)) | |||
skipping to change at line 143 | skipping to change at line 145 | |||
void atspi_accessible_set_cache_mask (AtspiAccessible *accessible, AtspiCac he mask); | void atspi_accessible_set_cache_mask (AtspiAccessible *accessible, AtspiCac he mask); | |||
void atspi_accessible_clear_cache (AtspiAccessible *accessible); | void atspi_accessible_clear_cache (AtspiAccessible *accessible); | |||
guint atspi_accessible_get_process_id (AtspiAccessible *accessible, GError **error); | guint atspi_accessible_get_process_id (AtspiAccessible *accessible, GError **error); | |||
/* private */ | /* private */ | |||
void _atspi_accessible_add_cache (AtspiAccessible *accessible, AtspiCache f lag); | void _atspi_accessible_add_cache (AtspiAccessible *accessible, AtspiCache f lag); | |||
AtspiCache _atspi_accessible_get_cache_mask (AtspiAccessible *accessible); | AtspiCache _atspi_accessible_get_cache_mask (AtspiAccessible *accessible); | |||
gboolean _atspi_accessible_test_cache (AtspiAccessible *accessible, AtspiCa che flag); | gboolean _atspi_accessible_test_cache (AtspiAccessible *accessible, AtspiCa che flag); | |||
G_END_DECLS | ||||
#endif /* _ATSPI_ACCESSIBLE_H_ */ | #endif /* _ATSPI_ACCESSIBLE_H_ */ | |||
End of changes. 2 change blocks. | ||||
0 lines changed or deleted | 5 lines changed or added | |||
atspi-action.h | atspi-action.h | |||
---|---|---|---|---|
skipping to change at line 34 | skipping to change at line 34 | |||
#ifndef _ATSPI_ACTION_H_ | #ifndef _ATSPI_ACTION_H_ | |||
#define _ATSPI_ACTION_H_ | #define _ATSPI_ACTION_H_ | |||
#include "glib-object.h" | #include "glib-object.h" | |||
#include "atspi-constants.h" | #include "atspi-constants.h" | |||
#include "atspi-types.h" | #include "atspi-types.h" | |||
G_BEGIN_DECLS | ||||
#define ATSPI_TYPE_ACTION (atspi_action_get_type ()) | #define ATSPI_TYPE_ACTION (atspi_action_get_type ()) | |||
#define ATSPI_IS_ACTION(obj) G_TYPE_CHECK_INSTANCE_TYPE ((o bj), ATSPI_TYPE_ACTION) | #define ATSPI_IS_ACTION(obj) G_TYPE_CHECK_INSTANCE_TYPE ((o bj), ATSPI_TYPE_ACTION) | |||
#define ATSPI_ACTION(obj) G_TYPE_CHECK_INSTANCE_CAST ((o bj), ATSPI_TYPE_ACTION, AtspiAction) | #define ATSPI_ACTION(obj) G_TYPE_CHECK_INSTANCE_CAST ((o bj), ATSPI_TYPE_ACTION, AtspiAction) | |||
#define ATSPI_ACTION_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), ATSPI_TYPE_ACTION, AtspiAction)) | #define ATSPI_ACTION_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), ATSPI_TYPE_ACTION, AtspiAction)) | |||
GType atspi_action_get_type (); | GType atspi_action_get_type (); | |||
struct _AtspiAction | struct _AtspiAction | |||
{ | { | |||
GTypeInterface parent; | GTypeInterface parent; | |||
skipping to change at line 56 | skipping to change at line 58 | |||
gint atspi_action_get_n_actions (AtspiAction *obj, GError **error); | gint atspi_action_get_n_actions (AtspiAction *obj, GError **error); | |||
gchar * atspi_action_get_description (AtspiAction *obj, int i, GError **err or); | gchar * atspi_action_get_description (AtspiAction *obj, int i, GError **err or); | |||
gchar * atspi_action_get_key_binding (AtspiAction *obj, gint i, GError **er ror); | gchar * atspi_action_get_key_binding (AtspiAction *obj, gint i, GError **er ror); | |||
gchar * atspi_action_get_name (AtspiAction *obj, gint i, GError **error); | gchar * atspi_action_get_name (AtspiAction *obj, gint i, GError **error); | |||
gboolean atspi_action_do_action (AtspiAction *obj, gint i, GError **error); | gboolean atspi_action_do_action (AtspiAction *obj, gint i, GError **error); | |||
G_END_DECLS | ||||
#endif /* _ATSPI_ACTION_H_ */ | #endif /* _ATSPI_ACTION_H_ */ | |||
End of changes. 2 change blocks. | ||||
0 lines changed or deleted | 4 lines changed or added | |||
atspi-application.h | atspi-application.h | |||
---|---|---|---|---|
skipping to change at line 33 | skipping to change at line 33 | |||
*/ | */ | |||
#ifndef _ATSPI_APPLICATION_H_ | #ifndef _ATSPI_APPLICATION_H_ | |||
#define _ATSPI_APPLICATION_H_ | #define _ATSPI_APPLICATION_H_ | |||
#include <dbus/dbus.h> | #include <dbus/dbus.h> | |||
#include "atspi-accessible.h" | #include "atspi-accessible.h" | |||
#include <sys/time.h> | #include <sys/time.h> | |||
G_BEGIN_DECLS | ||||
#define ATSPI_TYPE_APPLICATION (atspi_application_ge t_type ()) | #define ATSPI_TYPE_APPLICATION (atspi_application_ge t_type ()) | |||
#define ATSPI_APPLICATION(obj) (G_TYPE_CHECK_INSTANC E_CAST ((obj), ATSPI_TYPE_APPLICATION, AtspiApplication)) | #define ATSPI_APPLICATION(obj) (G_TYPE_CHECK_INSTANC E_CAST ((obj), ATSPI_TYPE_APPLICATION, AtspiApplication)) | |||
#define ATSPI_APPLICATION_CLASS(klass) (G_TYPE_CHECK_CLASS_C AST ((klass), ATSPI_TYPE_APPLICATION, AtspiAccessibleClass)) | #define ATSPI_APPLICATION_CLASS(klass) (G_TYPE_CHECK_CLASS_C AST ((klass), ATSPI_TYPE_APPLICATION, AtspiAccessibleClass)) | |||
#define ATSPI_IS_APPLICATION(obj) (G_TYPE_CHECK_INSTANC E_TYPE ((obj), ATSPI_TYPE_APPLICATION)) | #define ATSPI_IS_APPLICATION(obj) (G_TYPE_CHECK_INSTANC E_TYPE ((obj), ATSPI_TYPE_APPLICATION)) | |||
#define ATSPI_IS_APPLICATION_CLASS(klass) (G_TYPE_CHECK_CLASS_T YPE ((klass), ATSPI_TYPE_APPLICATION)) | #define ATSPI_IS_APPLICATION_CLASS(klass) (G_TYPE_CHECK_CLASS_T YPE ((klass), ATSPI_TYPE_APPLICATION)) | |||
#define ATSPI_APPLICATION_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_ CLASS ((obj), ATSPI_TYPE_APPLICATION, AtspiAccessibleClass)) | #define ATSPI_APPLICATION_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_ CLASS ((obj), ATSPI_TYPE_APPLICATION, AtspiAccessibleClass)) | |||
typedef struct _AtspiApplication AtspiApplication; | typedef struct _AtspiApplication AtspiApplication; | |||
struct _AtspiApplication | struct _AtspiApplication | |||
{ | { | |||
skipping to change at line 64 | skipping to change at line 66 | |||
typedef struct _AtspiApplicationClass AtspiApplicationClass; | typedef struct _AtspiApplicationClass AtspiApplicationClass; | |||
struct _AtspiApplicationClass | struct _AtspiApplicationClass | |||
{ | { | |||
GObjectClass parent_class; | GObjectClass parent_class; | |||
}; | }; | |||
AtspiApplication * | AtspiApplication * | |||
_atspi_application_new (const char *bus_name); | _atspi_application_new (const char *bus_name); | |||
G_END_DECLS | ||||
#endif /* _ATSPI_APPLICATION_H_ */ | #endif /* _ATSPI_APPLICATION_H_ */ | |||
End of changes. 2 change blocks. | ||||
0 lines changed or deleted | 4 lines changed or added | |||
atspi-collection.h | atspi-collection.h | |||
---|---|---|---|---|
skipping to change at line 36 | skipping to change at line 36 | |||
#ifndef _ATSPI_COLLECTION_H_ | #ifndef _ATSPI_COLLECTION_H_ | |||
#define _ATSPI_COLLECTION_H_ | #define _ATSPI_COLLECTION_H_ | |||
#include "glib-object.h" | #include "glib-object.h" | |||
#include "atspi-constants.h" | #include "atspi-constants.h" | |||
#include "atspi-types.h" | #include "atspi-types.h" | |||
#include "atspi-matchrule.h" | #include "atspi-matchrule.h" | |||
G_BEGIN_DECLS | ||||
#define ATSPI_TYPE_COLLECTION (atspi_collection_get_type ()) | #define ATSPI_TYPE_COLLECTION (atspi_collection_get_type ()) | |||
#define ATSPI_IS_COLLECTION(obj) G_TYPE_CHECK_INSTANCE_TYPE ((obj), ATSPI_TYPE_COLLECTION) | #define ATSPI_IS_COLLECTION(obj) G_TYPE_CHECK_INSTANCE_TYPE ((obj), ATSPI_TYPE_COLLECTION) | |||
#define ATSPI_COLLECTION(obj) G_TYPE_CHECK_INSTANCE_CAST ((obj), ATSPI_TYPE_COLLECTION, AtspiCollection) | #define ATSPI_COLLECTION(obj) G_TYPE_CHECK_INSTANCE_CAST ((obj), ATSPI_TYPE_COLLECTION, AtspiCollection) | |||
#define ATSPI_COLLECTION_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTER FACE ((obj), ATSPI_TYPE_COLLECTION, AtspiCollection)) | #define ATSPI_COLLECTION_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTER FACE ((obj), ATSPI_TYPE_COLLECTION, AtspiCollection)) | |||
GType atspi_collection_get_type (); | GType atspi_collection_get_type (); | |||
struct _AtspiCollection | struct _AtspiCollection | |||
{ | { | |||
GTypeInterface parent; | GTypeInterface parent; | |||
skipping to change at line 58 | skipping to change at line 60 | |||
gboolean atspi_collection_is_ancestor_of (AtspiCollection *collection, Atsp iAccessible *test, GError **error); | gboolean atspi_collection_is_ancestor_of (AtspiCollection *collection, Atsp iAccessible *test, GError **error); | |||
GArray * atspi_collection_get_matches (AtspiCollection *collection, AtspiMa tchRule *rule, AtspiCollectionSortOrder sortby, gint count, gboolean traver se, GError **error); | GArray * atspi_collection_get_matches (AtspiCollection *collection, AtspiMa tchRule *rule, AtspiCollectionSortOrder sortby, gint count, gboolean traver se, GError **error); | |||
GArray * atspi_collection_get_matches_to (AtspiCollection *collection, Atsp iAccessible *current_object, AtspiMatchRule *rule, AtspiCollectionSortOrder sortby, AtspiCollectionTreeTraversalType tree, gboolean limit_scope, gint count, gboolean traverse, GError **error); | GArray * atspi_collection_get_matches_to (AtspiCollection *collection, Atsp iAccessible *current_object, AtspiMatchRule *rule, AtspiCollectionSortOrder sortby, AtspiCollectionTreeTraversalType tree, gboolean limit_scope, gint count, gboolean traverse, GError **error); | |||
GArray * atspi_collection_get_matches_from (AtspiCollection *collection, At spiAccessible *current_object, AtspiMatchRule *rule, AtspiCollectionSortOrd er sortby, AtspiCollectionTreeTraversalType tree, gint count, gboolean trav erse, GError **error); | GArray * atspi_collection_get_matches_from (AtspiCollection *collection, At spiAccessible *current_object, AtspiMatchRule *rule, AtspiCollectionSortOrd er sortby, AtspiCollectionTreeTraversalType tree, gint count, gboolean trav erse, GError **error); | |||
AtspiAccessible * atspi_collection_get_active_descendant (AtspiCollection * collection, GError **error); | AtspiAccessible * atspi_collection_get_active_descendant (AtspiCollection * collection, GError **error); | |||
G_END_DECLS | ||||
#endif /* _ATSPI_COLLECTION_H_ */ | #endif /* _ATSPI_COLLECTION_H_ */ | |||
End of changes. 2 change blocks. | ||||
0 lines changed or deleted | 4 lines changed or added | |||
atspi-component.h | atspi-component.h | |||
---|---|---|---|---|
skipping to change at line 34 | skipping to change at line 34 | |||
#ifndef _ATSPI_COMPONENT_H_ | #ifndef _ATSPI_COMPONENT_H_ | |||
#define _ATSPI_COMPONENT_H_ | #define _ATSPI_COMPONENT_H_ | |||
#include "glib-object.h" | #include "glib-object.h" | |||
#include "atspi-constants.h" | #include "atspi-constants.h" | |||
#include "atspi-types.h" | #include "atspi-types.h" | |||
G_BEGIN_DECLS | ||||
typedef struct _AtspiRect AtspiRect; | typedef struct _AtspiRect AtspiRect; | |||
struct _AtspiRect | struct _AtspiRect | |||
{ | { | |||
gint x; | gint x; | |||
gint y; | gint y; | |||
gint width; | gint width; | |||
gint height; | gint height; | |||
}; | }; | |||
/** | /** | |||
skipping to change at line 107 | skipping to change at line 109 | |||
gboolean atspi_component_grab_focus (AtspiComponent *obj, GError **error); | gboolean atspi_component_grab_focus (AtspiComponent *obj, GError **error); | |||
gdouble atspi_component_get_alpha (AtspiComponent *obj, GError **er ror); | gdouble atspi_component_get_alpha (AtspiComponent *obj, GError **er ror); | |||
gboolean atspi_component_set_extents (AtspiComponent *obj, gint x, gint y, gint width, gint height, AtspiCoordType ctype, GError **error); | gboolean atspi_component_set_extents (AtspiComponent *obj, gint x, gint y, gint width, gint height, AtspiCoordType ctype, GError **error); | |||
gboolean atspi_component_set_position (AtspiComponent *obj, gint x, gint y, AtspiCoordType ctype, GError **error); | gboolean atspi_component_set_position (AtspiComponent *obj, gint x, gint y, AtspiCoordType ctype, GError **error); | |||
gboolean atspi_component_set_size (AtspiComponent *obj, gint width, gint he ight, GError **error); | gboolean atspi_component_set_size (AtspiComponent *obj, gint width, gint he ight, GError **error); | |||
G_END_DECLS | ||||
#endif /* _ATSPI_COMPONENT_H_ */ | #endif /* _ATSPI_COMPONENT_H_ */ | |||
End of changes. 2 change blocks. | ||||
0 lines changed or deleted | 5 lines changed or added | |||
atspi-device-listener-private.h | atspi-device-listener-private.h | |||
---|---|---|---|---|
skipping to change at line 32 | skipping to change at line 32 | |||
* Boston, MA 02111-1307, USA. | * Boston, MA 02111-1307, USA. | |||
*/ | */ | |||
#ifndef _ATSPI_DEVICE_LISTENER_PRIVATE_H_ | #ifndef _ATSPI_DEVICE_LISTENER_PRIVATE_H_ | |||
#define _ATSPI_DEVICE_LISTENER_PRIVATE_H_ | #define _ATSPI_DEVICE_LISTENER_PRIVATE_H_ | |||
#include "atspi-device-listener.h" | #include "atspi-device-listener.h" | |||
#include "dbus/dbus.h" | #include "dbus/dbus.h" | |||
G_BEGIN_DECLS | ||||
DBusHandlerResult _atspi_dbus_handle_DeviceEvent (DBusConnection *bus, DBus Message *message, void *data); | DBusHandlerResult _atspi_dbus_handle_DeviceEvent (DBusConnection *bus, DBus Message *message, void *data); | |||
gchar *_atspi_device_listener_get_path (AtspiDeviceListener *listener); | gchar *_atspi_device_listener_get_path (AtspiDeviceListener *listener); | |||
G_END_DECLS | ||||
#endif /* _ATSPI_DEVICE_LISTENER_H_ */ | #endif /* _ATSPI_DEVICE_LISTENER_H_ */ | |||
End of changes. 2 change blocks. | ||||
0 lines changed or deleted | 5 lines changed or added | |||
atspi-device-listener.h | atspi-device-listener.h | |||
---|---|---|---|---|
skipping to change at line 33 | skipping to change at line 33 | |||
* Boston, MA 02111-1307, USA. | * Boston, MA 02111-1307, USA. | |||
*/ | */ | |||
#ifndef _ATSPI_DEVICE_LISTENER_H_ | #ifndef _ATSPI_DEVICE_LISTENER_H_ | |||
#define _ATSPI_DEVICE_LISTENER_H_ | #define _ATSPI_DEVICE_LISTENER_H_ | |||
#include "glib-object.h" | #include "glib-object.h" | |||
#include "atspi-types.h" | #include "atspi-types.h" | |||
G_BEGIN_DECLS | ||||
/** | /** | |||
* AtspiDeviceListenerCB: | * AtspiDeviceListenerCB: | |||
* @stroke: (transfer full): The #AtspiDeviceEvent for which notification i s | * @stroke: (transfer full): The #AtspiDeviceEvent for which notification i s | |||
* being received. | * being received. | |||
* @user_data: Data which is passed to the client each time this callback i s notified. | * @user_data: Data which is passed to the client each time this callback i s notified. | |||
* | * | |||
* A callback function prototype via which clients receive device event not ifications. | * A callback function prototype via which clients receive device event not ifications. | |||
* | * | |||
* Returns: #TRUE if the client wishes to consume/preempt the event, preven ting it from being | * Returns: #TRUE if the client wishes to consume/preempt the event, preven ting it from being | |||
* relayed to the currently focussed application, #FALSE if the event deliv ery should proceed as normal. | * relayed to the currently focussed application, #FALSE if the event deliv ery should proceed as normal. | |||
skipping to change at line 90 | skipping to change at line 92 | |||
GType atspi_device_listener_get_type (void); | GType atspi_device_listener_get_type (void); | |||
AtspiDeviceListener *atspi_device_listener_new (AtspiDeviceListenerCB callb ack, void *user_data, GDestroyNotify callback_destroyed); | AtspiDeviceListener *atspi_device_listener_new (AtspiDeviceListenerCB callb ack, void *user_data, GDestroyNotify callback_destroyed); | |||
AtspiDeviceListener *atspi_device_listener_new_simple (AtspiDeviceListenerS impleCB callback, GDestroyNotify callback_destroyed); | AtspiDeviceListener *atspi_device_listener_new_simple (AtspiDeviceListenerS impleCB callback, GDestroyNotify callback_destroyed); | |||
void atspi_device_listener_add_callback (AtspiDeviceListener *listener, Ats piDeviceListenerCB callback, GDestroyNotify callback_destroyed, void *user_ data); | void atspi_device_listener_add_callback (AtspiDeviceListener *listener, Ats piDeviceListenerCB callback, GDestroyNotify callback_destroyed, void *user_ data); | |||
void atspi_device_listener_remove_callback (AtspiDeviceListener *listener, AtspiDeviceListenerCB callback); | void atspi_device_listener_remove_callback (AtspiDeviceListener *listener, AtspiDeviceListenerCB callback); | |||
G_END_DECLS | ||||
#endif /* _ATSPI_DEVICE_LISTENER_H_ */ | #endif /* _ATSPI_DEVICE_LISTENER_H_ */ | |||
End of changes. 2 change blocks. | ||||
0 lines changed or deleted | 5 lines changed or added | |||
atspi-document.h | atspi-document.h | |||
---|---|---|---|---|
skipping to change at line 34 | skipping to change at line 34 | |||
#ifndef _ATSPI_DOCUMENT_H_ | #ifndef _ATSPI_DOCUMENT_H_ | |||
#define _ATSPI_DOCUMENT_H_ | #define _ATSPI_DOCUMENT_H_ | |||
#include "glib-object.h" | #include "glib-object.h" | |||
#include "atspi-constants.h" | #include "atspi-constants.h" | |||
#include "atspi-types.h" | #include "atspi-types.h" | |||
G_BEGIN_DECLS | ||||
#define ATSPI_TYPE_DOCUMENT (atspi_document_get_type ()) | #define ATSPI_TYPE_DOCUMENT (atspi_document_get_type ()) | |||
#define ATSPI_IS_DOCUMENT(obj) G_TYPE_CHECK_INSTANCE_TYPE ( (obj), ATSPI_TYPE_DOCUMENT) | #define ATSPI_IS_DOCUMENT(obj) G_TYPE_CHECK_INSTANCE_TYPE ( (obj), ATSPI_TYPE_DOCUMENT) | |||
#define ATSPI_DOCUMENT(obj) G_TYPE_CHECK_INSTANCE_CAST ( (obj), ATSPI_TYPE_DOCUMENT, AtspiDocument) | #define ATSPI_DOCUMENT(obj) G_TYPE_CHECK_INSTANCE_CAST ( (obj), ATSPI_TYPE_DOCUMENT, AtspiDocument) | |||
#define ATSPI_DOCUMENT_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFA CE ((obj), ATSPI_TYPE_DOCUMENT, AtspiDocument)) | #define ATSPI_DOCUMENT_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFA CE ((obj), ATSPI_TYPE_DOCUMENT, AtspiDocument)) | |||
GType atspi_document_get_type (); | GType atspi_document_get_type (); | |||
struct _AtspiDocument | struct _AtspiDocument | |||
{ | { | |||
GTypeInterface parent; | GTypeInterface parent; | |||
}; | }; | |||
gchar * atspi_document_get_locale (AtspiDocument *obj, GError **error); | gchar * atspi_document_get_locale (AtspiDocument *obj, GError **error); | |||
gchar * atspi_document_get_attribute_value (AtspiDocument *obj, gchar *attr ibute, GError **error); | gchar * atspi_document_get_attribute_value (AtspiDocument *obj, gchar *attr ibute, GError **error); | |||
GHashTable * atspi_document_get_attributes (AtspiDocument *obj, GError **er ror); | GHashTable * atspi_document_get_attributes (AtspiDocument *obj, GError **er ror); | |||
G_END_DECLS | ||||
#endif /* _ATSPI_DOCUMENT_H_ */ | #endif /* _ATSPI_DOCUMENT_H_ */ | |||
End of changes. 2 change blocks. | ||||
0 lines changed or deleted | 4 lines changed or added | |||
atspi-editabletext.h | atspi-editabletext.h | |||
---|---|---|---|---|
skipping to change at line 34 | skipping to change at line 34 | |||
#ifndef _ATSPI_EDITABLE_TEXT_H_ | #ifndef _ATSPI_EDITABLE_TEXT_H_ | |||
#define _ATSPI_EDITABLE_TEXT_H_ | #define _ATSPI_EDITABLE_TEXT_H_ | |||
#include "glib-object.h" | #include "glib-object.h" | |||
#include "atspi-constants.h" | #include "atspi-constants.h" | |||
#include "atspi-types.h" | #include "atspi-types.h" | |||
G_BEGIN_DECLS | ||||
#define ATSPI_TYPE_EDITABLE_TEXT (atspi_editable_text_ge t_type ()) | #define ATSPI_TYPE_EDITABLE_TEXT (atspi_editable_text_ge t_type ()) | |||
#define ATSPI_IS_EDITABLE_TEXT(obj) G_TYPE_CHECK_INSTANCE_T YPE ((obj), ATSPI_TYPE_EDITABLE_TEXT) | #define ATSPI_IS_EDITABLE_TEXT(obj) G_TYPE_CHECK_INSTANCE_T YPE ((obj), ATSPI_TYPE_EDITABLE_TEXT) | |||
#define ATSPI_EDITABLE_TEXT(obj) G_TYPE_CHECK_INSTANCE_C AST ((obj), ATSPI_TYPE_EDITABLE_TEXT, AtspiEditableText) | #define ATSPI_EDITABLE_TEXT(obj) G_TYPE_CHECK_INSTANCE_C AST ((obj), ATSPI_TYPE_EDITABLE_TEXT, AtspiEditableText) | |||
#define ATSPI_EDITABLE_TEXT_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_IN TERFACE ((obj), ATSPI_TYPE_EDITABLE_TEXT, AtspiEditableText)) | #define ATSPI_EDITABLE_TEXT_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_IN TERFACE ((obj), ATSPI_TYPE_EDITABLE_TEXT, AtspiEditableText)) | |||
GType atspi_editable_text_get_type (); | GType atspi_editable_text_get_type (); | |||
struct _AtspiEditableText | struct _AtspiEditableText | |||
{ | { | |||
GTypeInterface parent; | GTypeInterface parent; | |||
skipping to change at line 62 | skipping to change at line 64 | |||
gboolean atspi_editable_text_insert_text (AtspiEditableText *obj, gint posi tion, const gchar *text, gint length, GError **error); | gboolean atspi_editable_text_insert_text (AtspiEditableText *obj, gint posi tion, const gchar *text, gint length, GError **error); | |||
gboolean atspi_editable_text_copy_text (AtspiEditableText *obj, gint start_ pos, gint end_pos, GError **error); | gboolean atspi_editable_text_copy_text (AtspiEditableText *obj, gint start_ pos, gint end_pos, GError **error); | |||
gboolean atspi_editable_text_cut_text (AtspiEditableText *obj, gint start_p os, gint end_pos, GError **error); | gboolean atspi_editable_text_cut_text (AtspiEditableText *obj, gint start_p os, gint end_pos, GError **error); | |||
gboolean atspi_editable_text_delete_text (AtspiEditableText *obj, gint star t_pos, gint end_pos, GError **error); | gboolean atspi_editable_text_delete_text (AtspiEditableText *obj, gint star t_pos, gint end_pos, GError **error); | |||
gboolean atspi_editable_text_paste_text (AtspiEditableText *obj, gint posit ion, GError **error); | gboolean atspi_editable_text_paste_text (AtspiEditableText *obj, gint posit ion, GError **error); | |||
G_END_DECLS | ||||
#endif /* _ATSPI_EDITABLE_TEXT_H_ */ | #endif /* _ATSPI_EDITABLE_TEXT_H_ */ | |||
End of changes. 2 change blocks. | ||||
0 lines changed or deleted | 4 lines changed or added | |||
atspi-event-listener-private.h | atspi-event-listener-private.h | |||
---|---|---|---|---|
skipping to change at line 33 | skipping to change at line 33 | |||
* Boston, MA 02111-1307, USA. | * Boston, MA 02111-1307, USA. | |||
*/ | */ | |||
#ifndef _ATSPI_EVENT_LISTENER_PRIVATE_H_ | #ifndef _ATSPI_EVENT_LISTENER_PRIVATE_H_ | |||
#define _ATSPI_EVENT_LISTENER_PRIVATE_H_ | #define _ATSPI_EVENT_LISTENER_PRIVATE_H_ | |||
#include "atspi-event-listener.h" | #include "atspi-event-listener.h" | |||
#include "dbus/dbus.h" | #include "dbus/dbus.h" | |||
G_BEGIN_DECLS | ||||
DBusHandlerResult _atspi_dbus_handle_Event (DBusConnection *bus, DBusMessag e *message, void *data); | DBusHandlerResult _atspi_dbus_handle_Event (DBusConnection *bus, DBusMessag e *message, void *data); | |||
void _atspi_send_event (AtspiEvent *e); | void _atspi_send_event (AtspiEvent *e); | |||
DBusHandlerResult _atspi_dbus_handle_event (DBusConnection *bus, DBusMessag e *message, void *data); | DBusHandlerResult _atspi_dbus_handle_event (DBusConnection *bus, DBusMessag e *message, void *data); | |||
G_END_DECLS | ||||
#endif /* _ATSPI_EVENT_LISTENER_H_ */ | #endif /* _ATSPI_EVENT_LISTENER_H_ */ | |||
End of changes. 2 change blocks. | ||||
0 lines changed or deleted | 5 lines changed or added | |||
atspi-event-listener.h | atspi-event-listener.h | |||
---|---|---|---|---|
skipping to change at line 33 | skipping to change at line 33 | |||
* Boston, MA 02111-1307, USA. | * Boston, MA 02111-1307, USA. | |||
*/ | */ | |||
#ifndef _ATSPI_EVENT_LISTENER_H_ | #ifndef _ATSPI_EVENT_LISTENER_H_ | |||
#define _ATSPI_EVENT_LISTENER_H_ | #define _ATSPI_EVENT_LISTENER_H_ | |||
#include "glib-object.h" | #include "glib-object.h" | |||
#include "atspi-types.h" | #include "atspi-types.h" | |||
G_BEGIN_DECLS | ||||
GType atspi_event_get_type (void); | GType atspi_event_get_type (void); | |||
/** | /** | |||
* AtspiEventListenerCB: | * AtspiEventListenerCB: | |||
* @event: (transfer full): The event for which notification is sent. | * @event: (transfer full): The event for which notification is sent. | |||
* @user_data: User data which is passed to the callback each time a notifi cation takes place. | * @user_data: User data which is passed to the callback each time a notifi cation takes place. | |||
* | * | |||
* A function prototype for callbacks via which clients are notified of AT- SPI events. | * A function prototype for callbacks via which clients are notified of AT- SPI events. | |||
* | * | |||
**/ | **/ | |||
skipping to change at line 121 | skipping to change at line 123 | |||
gboolean | gboolean | |||
atspi_event_listener_deregister_from_callback (AtspiEventListenerCB callbac k, | atspi_event_listener_deregister_from_callback (AtspiEventListenerCB callbac k, | |||
void *user_data, | void *user_data, | |||
const gchar *eve nt_type, | const gchar *eve nt_type, | |||
GError **error); | GError **error); | |||
gboolean | gboolean | |||
atspi_event_listener_deregister_no_data (AtspiEventListenerSimpleCB callbac k, | atspi_event_listener_deregister_no_data (AtspiEventListenerSimpleCB callbac k, | |||
const gchar *event_type, | const gchar *event_type, | |||
GError **error); | GError **error); | |||
G_END_DECLS | ||||
#endif /* _ATSPI_EVENT_LISTENER_H_ */ | #endif /* _ATSPI_EVENT_LISTENER_H_ */ | |||
End of changes. 2 change blocks. | ||||
0 lines changed or deleted | 5 lines changed or added | |||
atspi-gmain.h | atspi-gmain.h | |||
---|---|---|---|---|
skipping to change at line 27 | skipping to change at line 27 | |||
* along with this program; if not, write to the Free Software | * along with this program; if not, write to the Free Software | |||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-130 1 USA | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-130 1 USA | |||
* | * | |||
* This file is based on dbus-gmain.c from dbus-glib with functions renamed | * This file is based on dbus-gmain.c from dbus-glib with functions renamed | |||
* and unnecessary code removed. | * and unnecessary code removed. | |||
*/ | */ | |||
#ifndef _ATSPI_GMAIN_H | #ifndef _ATSPI_GMAIN_H | |||
#define _ATSPI_GMAIN_H | #define _ATSPI_GMAIN_H | |||
G_BEGIN_DECLS | ||||
void | void | |||
atspi_dbus_connection_setup_with_g_main (DBusConnection *connection, | atspi_dbus_connection_setup_with_g_main (DBusConnection *connection, | |||
GMainContext *context); | GMainContext *context); | |||
void | void | |||
atspi_dbus_server_setup_with_g_main (DBusServer *server, | atspi_dbus_server_setup_with_g_main (DBusServer *server, | |||
GMainContext *context); | GMainContext *context); | |||
G_END_DECLS | ||||
#endif | #endif | |||
End of changes. 2 change blocks. | ||||
0 lines changed or deleted | 5 lines changed or added | |||
atspi-hyperlink.h | atspi-hyperlink.h | |||
---|---|---|---|---|
skipping to change at line 36 | skipping to change at line 36 | |||
#ifndef _ATSPI_HYPERLINK_H_ | #ifndef _ATSPI_HYPERLINK_H_ | |||
#define _ATSPI_HYPERLINK_H_ | #define _ATSPI_HYPERLINK_H_ | |||
#include "glib-object.h" | #include "glib-object.h" | |||
#include "atspi-constants.h" | #include "atspi-constants.h" | |||
#include "atspi-text.h" /* for AtspiRange */ | #include "atspi-text.h" /* for AtspiRange */ | |||
#include "atspi-types.h" | #include "atspi-types.h" | |||
G_BEGIN_DECLS | ||||
#define ATSPI_TYPE_HYPERLINK (atspi_hyperlink_get_ty pe ()) | #define ATSPI_TYPE_HYPERLINK (atspi_hyperlink_get_ty pe ()) | |||
#define ATSPI_HYPERLINK(obj) (G_TYPE_CHECK_INSTANCE_ CAST ((obj), ATSPI_TYPE_HYPERLINK, AtspiHyperlink)) | #define ATSPI_HYPERLINK(obj) (G_TYPE_CHECK_INSTANCE_ CAST ((obj), ATSPI_TYPE_HYPERLINK, AtspiHyperlink)) | |||
#define ATSPI_HYPERLINK_CLASS(klass) (G_TYPE_CHECK_CLASS_CAS T ((klass), ATSPI_TYPE_HYPERLINK, AtspiHyperlinkClass)) | #define ATSPI_HYPERLINK_CLASS(klass) (G_TYPE_CHECK_CLASS_CAS T ((klass), ATSPI_TYPE_HYPERLINK, AtspiHyperlinkClass)) | |||
#define ATSPI_IS_HYPERLINK(obj) (G_TYPE_CHECK_INSTANCE_ TYPE ((obj), ATSPI_TYPE_HYPERLINK)) | #define ATSPI_IS_HYPERLINK(obj) (G_TYPE_CHECK_INSTANCE_ TYPE ((obj), ATSPI_TYPE_HYPERLINK)) | |||
#define ATSPI_IS_HYPERLINK_CLASS(klass) (G_TYPE_CHECK_CLASS_TYP E ((klass), ATSPI_TYPE_HYPERLINK)) | #define ATSPI_IS_HYPERLINK_CLASS(klass) (G_TYPE_CHECK_CLASS_TYP E ((klass), ATSPI_TYPE_HYPERLINK)) | |||
#define ATSPI_HYPERLINK_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CL ASS ((obj), ATSPI_TYPE_HYPERLINK, AtspiHyperlinkClass)) | #define ATSPI_HYPERLINK_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CL ASS ((obj), ATSPI_TYPE_HYPERLINK, AtspiHyperlinkClass)) | |||
struct _AtspiHyperlink | struct _AtspiHyperlink | |||
{ | { | |||
AtspiObject parent; | AtspiObject parent; | |||
skipping to change at line 73 | skipping to change at line 75 | |||
AtspiAccessible* atspi_hyperlink_get_object (AtspiHyperlink *obj, gint i, G Error **error); | AtspiAccessible* atspi_hyperlink_get_object (AtspiHyperlink *obj, gint i, G Error **error); | |||
AtspiRange * atspi_hyperlink_get_index_range (AtspiHyperlink *obj, GError * *error); | AtspiRange * atspi_hyperlink_get_index_range (AtspiHyperlink *obj, GError * *error); | |||
gint atspi_hyperlink_get_start_index (AtspiHyperlink *obj, GError **error); | gint atspi_hyperlink_get_start_index (AtspiHyperlink *obj, GError **error); | |||
gint atspi_hyperlink_get_end_index (AtspiHyperlink *obj, GError **error); | gint atspi_hyperlink_get_end_index (AtspiHyperlink *obj, GError **error); | |||
gboolean atspi_hyperlink_is_valid (AtspiHyperlink *obj, GError **error); | gboolean atspi_hyperlink_is_valid (AtspiHyperlink *obj, GError **error); | |||
G_END_DECLS | ||||
#endif /* _ATSPI_HYPERLINK_H_ */ | #endif /* _ATSPI_HYPERLINK_H_ */ | |||
End of changes. 2 change blocks. | ||||
0 lines changed or deleted | 4 lines changed or added | |||
atspi-hypertext.h | atspi-hypertext.h | |||
---|---|---|---|---|
skipping to change at line 35 | skipping to change at line 35 | |||
#ifndef _ATSPI_HYPERTEXT_H_ | #ifndef _ATSPI_HYPERTEXT_H_ | |||
#define _ATSPI_HYPERTEXT_H_ | #define _ATSPI_HYPERTEXT_H_ | |||
#include "glib-object.h" | #include "glib-object.h" | |||
#include "atspi-constants.h" | #include "atspi-constants.h" | |||
#include "atspi-types.h" | #include "atspi-types.h" | |||
G_BEGIN_DECLS | ||||
#define ATSPI_TYPE_HYPERTEXT (atspi_hypertext_get_type ( )) | #define ATSPI_TYPE_HYPERTEXT (atspi_hypertext_get_type ( )) | |||
#define ATSPI_IS_HYPERTEXT(obj) G_TYPE_CHECK_INSTANCE_TYPE ((obj), ATSPI_TYPE_HYPERTEXT) | #define ATSPI_IS_HYPERTEXT(obj) G_TYPE_CHECK_INSTANCE_TYPE ((obj), ATSPI_TYPE_HYPERTEXT) | |||
#define ATSPI_HYPERTEXT(obj) G_TYPE_CHECK_INSTANCE_CAST ((obj), ATSPI_TYPE_HYPERTEXT, AtspiHypertext) | #define ATSPI_HYPERTEXT(obj) G_TYPE_CHECK_INSTANCE_CAST ((obj), ATSPI_TYPE_HYPERTEXT, AtspiHypertext) | |||
#define ATSPI_HYPERTEXT_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERF ACE ((obj), ATSPI_TYPE_HYPERTEXT, AtspiHypertext)) | #define ATSPI_HYPERTEXT_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERF ACE ((obj), ATSPI_TYPE_HYPERTEXT, AtspiHypertext)) | |||
GType atspi_hypertext_get_type (); | GType atspi_hypertext_get_type (); | |||
struct _AtspiHypertext | struct _AtspiHypertext | |||
{ | { | |||
GTypeInterface parent; | GTypeInterface parent; | |||
}; | }; | |||
gint atspi_hypertext_get_n_links (AtspiHypertext *obj, GError **error); | gint atspi_hypertext_get_n_links (AtspiHypertext *obj, GError **error); | |||
AtspiHyperlink * atspi_hypertext_get_link (AtspiHypertext *obj, gint link_i ndex, GError **error); | AtspiHyperlink * atspi_hypertext_get_link (AtspiHypertext *obj, gint link_i ndex, GError **error); | |||
gint atspi_hypertext_get_link_index (AtspiHypertext *obj, gint character_offset, GError **error); | gint atspi_hypertext_get_link_index (AtspiHypertext *obj, gint character_offset, GError **error); | |||
G_END_DECLS | ||||
#endif /* _ATSPI_HYPERTEXT_H_ */ | #endif /* _ATSPI_HYPERTEXT_H_ */ | |||
End of changes. 2 change blocks. | ||||
0 lines changed or deleted | 4 lines changed or added | |||
atspi-image.h | atspi-image.h | |||
---|---|---|---|---|
skipping to change at line 35 | skipping to change at line 35 | |||
#ifndef _ATSPI_IMAGE_H_ | #ifndef _ATSPI_IMAGE_H_ | |||
#define _ATSPI_IMAGE_H_ | #define _ATSPI_IMAGE_H_ | |||
#include "glib-object.h" | #include "glib-object.h" | |||
#include "atspi-constants.h" | #include "atspi-constants.h" | |||
#include "atspi-types.h" | #include "atspi-types.h" | |||
G_BEGIN_DECLS | ||||
#define ATSPI_TYPE_IMAGE (atspi_image_get_type ()) | #define ATSPI_TYPE_IMAGE (atspi_image_get_type ()) | |||
#define ATSPI_IS_IMAGE(obj) G_TYPE_CHECK_INSTANCE_TYPE ((ob j), ATSPI_TYPE_IMAGE) | #define ATSPI_IS_IMAGE(obj) G_TYPE_CHECK_INSTANCE_TYPE ((ob j), ATSPI_TYPE_IMAGE) | |||
#define ATSPI_IMAGE(obj) G_TYPE_CHECK_INSTANCE_CAST ((ob j), ATSPI_TYPE_IMAGE, AtspiImage) | #define ATSPI_IMAGE(obj) G_TYPE_CHECK_INSTANCE_CAST ((ob j), ATSPI_TYPE_IMAGE, AtspiImage) | |||
#define ATSPI_IMAGE_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), ATSPI_TYPE_IMAGE, AtspiImage)) | #define ATSPI_IMAGE_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), ATSPI_TYPE_IMAGE, AtspiImage)) | |||
GType atspi_image_get_type (); | GType atspi_image_get_type (); | |||
struct _AtspiImage | struct _AtspiImage | |||
{ | { | |||
GTypeInterface parent; | GTypeInterface parent; | |||
skipping to change at line 56 | skipping to change at line 58 | |||
gchar * atspi_image_get_image_description (AtspiImage *obj, GError **error) ; | gchar * atspi_image_get_image_description (AtspiImage *obj, GError **error) ; | |||
AtspiPoint * atspi_image_get_image_size (AtspiImage *obj, GError **error); | AtspiPoint * atspi_image_get_image_size (AtspiImage *obj, GError **error); | |||
AtspiPoint * atspi_image_get_image_position (AtspiImage *obj, AtspiCoordTyp e ctype, GError **error); | AtspiPoint * atspi_image_get_image_position (AtspiImage *obj, AtspiCoordTyp e ctype, GError **error); | |||
AtspiRect * atspi_image_get_image_extents (AtspiImage *obj, AtspiCoordType ctype, GError **error); | AtspiRect * atspi_image_get_image_extents (AtspiImage *obj, AtspiCoordType ctype, GError **error); | |||
gchar * atspi_image_get_image_locale (AtspiImage *obj, GError **error); | gchar * atspi_image_get_image_locale (AtspiImage *obj, GError **error); | |||
G_END_DECLS | ||||
#endif /* _ATSPI_IMAGE_H_ */ | #endif /* _ATSPI_IMAGE_H_ */ | |||
End of changes. 2 change blocks. | ||||
0 lines changed or deleted | 5 lines changed or added | |||
atspi-matchrule.h | atspi-matchrule.h | |||
---|---|---|---|---|
skipping to change at line 35 | skipping to change at line 35 | |||
#ifndef _ATSPI_MATCH_RULE_H_ | #ifndef _ATSPI_MATCH_RULE_H_ | |||
#define _ATSPI_MATCH_RULE_H_ | #define _ATSPI_MATCH_RULE_H_ | |||
#include "glib-object.h" | #include "glib-object.h" | |||
#include "atspi-stateset.h" | #include "atspi-stateset.h" | |||
#include "atspi-constants.h" | #include "atspi-constants.h" | |||
#include "atspi-types.h" | #include "atspi-types.h" | |||
G_BEGIN_DECLS | ||||
#define ATSPI_TYPE_MATCH_RULE (atspi_match_rule_get_ type ()) | #define ATSPI_TYPE_MATCH_RULE (atspi_match_rule_get_ type ()) | |||
#define ATSPI_MATCH_RULE(obj) (G_TYPE_CHECK_INSTANCE _CAST ((obj), ATSPI_TYPE_MATCH_RULE, AtspiMatchRule)) | #define ATSPI_MATCH_RULE(obj) (G_TYPE_CHECK_INSTANCE _CAST ((obj), ATSPI_TYPE_MATCH_RULE, AtspiMatchRule)) | |||
#define ATSPI_MATCH_RULE_CLASS(klass) (G_TYPE_CHECK_CLASS_CA ST ((klass), ATSPI_TYPE_MATCH_RULE, AtspiMatchRuleClass)) | #define ATSPI_MATCH_RULE_CLASS(klass) (G_TYPE_CHECK_CLASS_CA ST ((klass), ATSPI_TYPE_MATCH_RULE, AtspiMatchRuleClass)) | |||
#define ATSPI_IS_MATCH_RULE(obj) (G_TYPE_CHECK_INSTANCE _TYPE ((obj), ATSPI_TYPE_MATCH_RULE)) | #define ATSPI_IS_MATCH_RULE(obj) (G_TYPE_CHECK_INSTANCE _TYPE ((obj), ATSPI_TYPE_MATCH_RULE)) | |||
#define ATSPI_IS_MATCH_RULE_CLASS(klass) (G_TYPE_CHECK_CLASS_TY PE ((klass), ATSPI_TYPE_MATCH_RULE)) | #define ATSPI_IS_MATCH_RULE_CLASS(klass) (G_TYPE_CHECK_CLASS_TY PE ((klass), ATSPI_TYPE_MATCH_RULE)) | |||
#define ATSPI_MATCH_RULE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_C LASS ((obj), ATSPI_TYPE_MATCH_RULE, AtspiMatchRuleClass)) | #define ATSPI_MATCH_RULE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_C LASS ((obj), ATSPI_TYPE_MATCH_RULE, AtspiMatchRuleClass)) | |||
typedef struct _AtspiMatchRule AtspiMatchRule; | typedef struct _AtspiMatchRule AtspiMatchRule; | |||
struct _AtspiMatchRule | struct _AtspiMatchRule | |||
{ | { | |||
skipping to change at line 76 | skipping to change at line 78 | |||
atspi_match_rule_new (AtspiStateSet *states, | atspi_match_rule_new (AtspiStateSet *states, | |||
AtspiCollectionMatchType statematchtype, | AtspiCollectionMatchType statematchtype, | |||
GHashTable *attributes, | GHashTable *attributes, | |||
AtspiCollectionMatchType attributematchtype, | AtspiCollectionMatchType attributematchtype, | |||
GArray *roles, | GArray *roles, | |||
AtspiCollectionMatchType rolematchtype, | AtspiCollectionMatchType rolematchtype, | |||
GArray *interfaces, | GArray *interfaces, | |||
AtspiCollectionMatchType interfacematchtype, | AtspiCollectionMatchType interfacematchtype, | |||
gboolean invert); | gboolean invert); | |||
G_END_DECLS | ||||
#endif /* _ATSPI_MATCH_RULE_H_ */ | #endif /* _ATSPI_MATCH_RULE_H_ */ | |||
End of changes. 2 change blocks. | ||||
0 lines changed or deleted | 4 lines changed or added | |||
atspi-misc.h | atspi-misc.h | |||
---|---|---|---|---|
skipping to change at line 29 | skipping to change at line 29 | |||
* | * | |||
* You should have received a copy of the GNU Library General Public | * You should have received a copy of the GNU Library General Public | |||
* License along with this library; if not, write to the | * License along with this library; if not, write to the | |||
* Free Software Foundation, Inc., 59 Temple Place - Suite 330, | * Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |||
* Boston, MA 02111-1307, USA. | * Boston, MA 02111-1307, USA. | |||
*/ | */ | |||
#ifndef _ATSPI_MISC_H_ | #ifndef _ATSPI_MISC_H_ | |||
#define _ATSPI_MISC_H_ | #define _ATSPI_MISC_H_ | |||
G_BEGIN_DECLS | ||||
int atspi_init (void); | int atspi_init (void); | |||
void atspi_event_main (); | void atspi_event_main (); | |||
void atspi_event_quit (); | void atspi_event_quit (); | |||
int atspi_exit (); | int atspi_exit (); | |||
DBusConnection * | DBusConnection * | |||
atspi_get_a11y_bus (); | atspi_get_a11y_bus (); | |||
void | void | |||
atspi_set_timeout (gint val, gint startup_time); | atspi_set_timeout (gint val, gint startup_time); | |||
G_END_DECLS | ||||
#endif /* _ATSPI_MISC_H_ */ | #endif /* _ATSPI_MISC_H_ */ | |||
End of changes. 2 change blocks. | ||||
0 lines changed or deleted | 5 lines changed or added | |||
atspi-object.h | atspi-object.h | |||
---|---|---|---|---|
skipping to change at line 33 | skipping to change at line 33 | |||
*/ | */ | |||
#ifndef _ATSPI_OBJECT_H_ | #ifndef _ATSPI_OBJECT_H_ | |||
#define _ATSPI_OBJECT_H_ | #define _ATSPI_OBJECT_H_ | |||
#include "glib-object.h" | #include "glib-object.h" | |||
#include "atspi-application.h" | #include "atspi-application.h" | |||
#include "atspi-types.h" | #include "atspi-types.h" | |||
G_BEGIN_DECLS | ||||
#define ATSPI_TYPE_OBJECT (atspi_object_get_type ()) | #define ATSPI_TYPE_OBJECT (atspi_object_get_type ()) | |||
#define ATSPI_OBJECT(obj) (G_TYPE_CHECK_INSTANCE_CAS T ((obj), ATSPI_TYPE_OBJECT, AtspiObject)) | #define ATSPI_OBJECT(obj) (G_TYPE_CHECK_INSTANCE_CAS T ((obj), ATSPI_TYPE_OBJECT, AtspiObject)) | |||
#define ATSPI_OBJECT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ( (klass), ATSPI_TYPE_OBJECT, AtspiObjectClass)) | #define ATSPI_OBJECT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ( (klass), ATSPI_TYPE_OBJECT, AtspiObjectClass)) | |||
#define ATSPI_IS_OBJECT(obj) (G_TYPE_CHECK_INSTANCE_TYP E ((obj), ATSPI_TYPE_OBJECT)) | #define ATSPI_IS_OBJECT(obj) (G_TYPE_CHECK_INSTANCE_TYP E ((obj), ATSPI_TYPE_OBJECT)) | |||
#define ATSPI_IS_OBJECT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ( (klass), ATSPI_TYPE_OBJECT)) | #define ATSPI_IS_OBJECT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ( (klass), ATSPI_TYPE_OBJECT)) | |||
#define ATSPI_OBJECT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), ATSPI_TYPE_OBJECT, AtspiObjectClass)) | #define ATSPI_OBJECT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), ATSPI_TYPE_OBJECT, AtspiObjectClass)) | |||
typedef struct _AtspiObject AtspiObject; | typedef struct _AtspiObject AtspiObject; | |||
struct _AtspiObject | struct _AtspiObject | |||
{ | { | |||
skipping to change at line 55 | skipping to change at line 57 | |||
char *path; | char *path; | |||
}; | }; | |||
typedef struct _AtspiObjectClass AtspiObjectClass; | typedef struct _AtspiObjectClass AtspiObjectClass; | |||
struct _AtspiObjectClass | struct _AtspiObjectClass | |||
{ | { | |||
GObjectClass parent_class; | GObjectClass parent_class; | |||
}; | }; | |||
GType atspi_object_get_type (void); | GType atspi_object_get_type (void); | |||
G_END_DECLS | ||||
#endif /* _ATSPI_OBJECT_H_ */ | #endif /* _ATSPI_OBJECT_H_ */ | |||
End of changes. 2 change blocks. | ||||
0 lines changed or deleted | 5 lines changed or added | |||
atspi-registry.h | atspi-registry.h | |||
---|---|---|---|---|
skipping to change at line 32 | skipping to change at line 32 | |||
* Boston, MA 02111-1307, USA. | * Boston, MA 02111-1307, USA. | |||
*/ | */ | |||
#ifndef _ATSPI_REGISTRY_H_ | #ifndef _ATSPI_REGISTRY_H_ | |||
#define _ATSPI_REGISTRY_H_ | #define _ATSPI_REGISTRY_H_ | |||
#include "atspi-accessible.h" | #include "atspi-accessible.h" | |||
#include "atspi-types.h" | #include "atspi-types.h" | |||
#include "atspi-device-listener.h" | #include "atspi-device-listener.h" | |||
G_BEGIN_DECLS | ||||
GType atspi_key_definition_get_type (); | GType atspi_key_definition_get_type (); | |||
gint atspi_get_desktop_count (); | gint atspi_get_desktop_count (); | |||
AtspiAccessible* atspi_get_desktop (gint i); | AtspiAccessible* atspi_get_desktop (gint i); | |||
GArray *atspi_get_desktop_list (); | GArray *atspi_get_desktop_list (); | |||
gboolean | gboolean | |||
atspi_register_keystroke_listener (AtspiDeviceListener *listener, | atspi_register_keystroke_listener (AtspiDeviceListener *listener, | |||
skipping to change at line 71 | skipping to change at line 73 | |||
void *filter, GError **error); | void *filter, GError **error); | |||
gboolean | gboolean | |||
atspi_generate_keyboard_event (glong keyval, | atspi_generate_keyboard_event (glong keyval, | |||
const gchar *keystring, | const gchar *keystring, | |||
AtspiKeySynthType synth_type, GError **error); | AtspiKeySynthType synth_type, GError **error); | |||
gboolean | gboolean | |||
atspi_generate_mouse_event (glong x, glong y, const gchar *name, GError **e rror); | atspi_generate_mouse_event (glong x, glong y, const gchar *name, GError **e rror); | |||
G_END_DECLS | ||||
#endif /* _ATSPI_REGISTRY_H_ */ | #endif /* _ATSPI_REGISTRY_H_ */ | |||
End of changes. 2 change blocks. | ||||
0 lines changed or deleted | 4 lines changed or added | |||
atspi-relation.h | atspi-relation.h | |||
---|---|---|---|---|
skipping to change at line 33 | skipping to change at line 33 | |||
* Boston, MA 02111-1307, USA. | * Boston, MA 02111-1307, USA. | |||
*/ | */ | |||
#ifndef _ATSPI_RELATION_H_ | #ifndef _ATSPI_RELATION_H_ | |||
#define _ATSPI_RELATION_H_ | #define _ATSPI_RELATION_H_ | |||
#include "glib-object.h" | #include "glib-object.h" | |||
#include "atspi-constants.h" | #include "atspi-constants.h" | |||
G_BEGIN_DECLS | ||||
#define ATSPI_TYPE_RELATION (atspi_relation_get_type ()) | #define ATSPI_TYPE_RELATION (atspi_relation_get_type ()) | |||
#define ATSPI_IS_RELATION(obj) G_TYPE_CHECK_INSTANCE_TYPE ( (obj), ATSPI_TYPE_RELATION) | #define ATSPI_IS_RELATION(obj) G_TYPE_CHECK_INSTANCE_TYPE ( (obj), ATSPI_TYPE_RELATION) | |||
#define ATSPI_RELATION(obj) G_TYPE_CHECK_INSTANCE_CAST ( (obj), ATSPI_TYPE_RELATION, AtspiRelation) | #define ATSPI_RELATION(obj) G_TYPE_CHECK_INSTANCE_CAST ( (obj), ATSPI_TYPE_RELATION, AtspiRelation) | |||
#define ATSPI_RELATION_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFA CE ((obj), ATSPI_TYPE_RELATION, AtspiRelation)) | #define ATSPI_RELATION_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFA CE ((obj), ATSPI_TYPE_RELATION, AtspiRelation)) | |||
GType atspi_relation_get_type (); | GType atspi_relation_get_type (); | |||
typedef struct _AtspiRelation AtspiRelation; | typedef struct _AtspiRelation AtspiRelation; | |||
struct _AtspiRelation | struct _AtspiRelation | |||
{ | { | |||
skipping to change at line 62 | skipping to change at line 64 | |||
}; | }; | |||
AtspiRelationType atspi_relation_get_relation_type (AtspiRelation *obj); | AtspiRelationType atspi_relation_get_relation_type (AtspiRelation *obj); | |||
gint atspi_relation_get_n_targets (AtspiRelation *obj); | gint atspi_relation_get_n_targets (AtspiRelation *obj); | |||
AtspiAccessible * atspi_relation_get_target (AtspiRelation *obj, gint i); | AtspiAccessible * atspi_relation_get_target (AtspiRelation *obj, gint i); | |||
/* private */ | /* private */ | |||
AtspiRelation * _atspi_relation_new_from_iter (DBusMessageIter *iter); | AtspiRelation * _atspi_relation_new_from_iter (DBusMessageIter *iter); | |||
G_END_DECLS | ||||
#endif /* _ATSPI_RELATION_H_ */ | #endif /* _ATSPI_RELATION_H_ */ | |||
End of changes. 2 change blocks. | ||||
0 lines changed or deleted | 5 lines changed or added | |||
atspi-selection.h | atspi-selection.h | |||
---|---|---|---|---|
skipping to change at line 35 | skipping to change at line 35 | |||
#ifndef _ATSPI_SELECTION_H_ | #ifndef _ATSPI_SELECTION_H_ | |||
#define _ATSPI_SELECTION_H_ | #define _ATSPI_SELECTION_H_ | |||
#include "glib-object.h" | #include "glib-object.h" | |||
#include "atspi-constants.h" | #include "atspi-constants.h" | |||
#include "atspi-types.h" | #include "atspi-types.h" | |||
G_BEGIN_DECLS | ||||
#define ATSPI_TYPE_SELECTION (atspi_selection_get_type ( )) | #define ATSPI_TYPE_SELECTION (atspi_selection_get_type ( )) | |||
#define ATSPI_IS_SELECTION(obj) G_TYPE_CHECK_INSTANCE_TYPE ((obj), ATSPI_TYPE_SELECTION) | #define ATSPI_IS_SELECTION(obj) G_TYPE_CHECK_INSTANCE_TYPE ((obj), ATSPI_TYPE_SELECTION) | |||
#define ATSPI_SELECTION(obj) G_TYPE_CHECK_INSTANCE_CAST ((obj), ATSPI_TYPE_SELECTION, AtspiSelection) | #define ATSPI_SELECTION(obj) G_TYPE_CHECK_INSTANCE_CAST ((obj), ATSPI_TYPE_SELECTION, AtspiSelection) | |||
#define ATSPI_SELECTION_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERF ACE ((obj), ATSPI_TYPE_SELECTION, AtspiSelection)) | #define ATSPI_SELECTION_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERF ACE ((obj), ATSPI_TYPE_SELECTION, AtspiSelection)) | |||
GType atspi_selection_get_type (); | GType atspi_selection_get_type (); | |||
struct _AtspiSelection | struct _AtspiSelection | |||
{ | { | |||
GTypeInterface parent; | GTypeInterface parent; | |||
skipping to change at line 65 | skipping to change at line 67 | |||
gboolean atspi_selection_deselect_child (AtspiSelection *obj, gint child_in dex, GError **error); | gboolean atspi_selection_deselect_child (AtspiSelection *obj, gint child_in dex, GError **error); | |||
gboolean | gboolean | |||
atspi_selection_is_child_selected (AtspiSelection *obj, | atspi_selection_is_child_selected (AtspiSelection *obj, | |||
gint child_index, GError **error); | gint child_index, GError **error); | |||
gboolean atspi_selection_select_all (AtspiSelection *obj, GError **error); | gboolean atspi_selection_select_all (AtspiSelection *obj, GError **error); | |||
gboolean atspi_selection_clear_selection (AtspiSelection *obj, GError **err or); | gboolean atspi_selection_clear_selection (AtspiSelection *obj, GError **err or); | |||
G_END_DECLS | ||||
#endif /* _ATSPI_SELECTION_H_ */ | #endif /* _ATSPI_SELECTION_H_ */ | |||
End of changes. 2 change blocks. | ||||
0 lines changed or deleted | 4 lines changed or added | |||
atspi-stateset.h | atspi-stateset.h | |||
---|---|---|---|---|
skipping to change at line 35 | skipping to change at line 35 | |||
#ifndef _ATSPI_STATE_SET_H_ | #ifndef _ATSPI_STATE_SET_H_ | |||
#define _ATSPI_STATE_SET_H_ | #define _ATSPI_STATE_SET_H_ | |||
#define ATSPI_TYPE_STATE_SET (atspi_state_set_get_ty pe ()) | #define ATSPI_TYPE_STATE_SET (atspi_state_set_get_ty pe ()) | |||
#define ATSPI_STATE_SET(obj) (G_TYPE_CHECK_INSTANCE_ CAST ((obj), ATSPI_TYPE_STATE_SET, AtspiStateSet)) | #define ATSPI_STATE_SET(obj) (G_TYPE_CHECK_INSTANCE_ CAST ((obj), ATSPI_TYPE_STATE_SET, AtspiStateSet)) | |||
#define ATSPI_STATE_SET_CLASS(klass) (G_TYPE_CHECK_CLASS_CAS T ((klass), ATSPI_TYPE_STATE_SET, AtspiStateSetClass)) | #define ATSPI_STATE_SET_CLASS(klass) (G_TYPE_CHECK_CLASS_CAS T ((klass), ATSPI_TYPE_STATE_SET, AtspiStateSetClass)) | |||
#define ATSPI_IS_STATE_SET(obj) (G_TYPE_CHECK_INSTANCE_ TYPE ((obj), ATSPI_TYPE_STATE_SET)) | #define ATSPI_IS_STATE_SET(obj) (G_TYPE_CHECK_INSTANCE_ TYPE ((obj), ATSPI_TYPE_STATE_SET)) | |||
#define ATSPI_IS_STATE_SET_CLASS(klass) (G_TYPE_CHECK_CLASS_TYP E ((klass), ATSPI_TYPE_STATE_SET)) | #define ATSPI_IS_STATE_SET_CLASS(klass) (G_TYPE_CHECK_CLASS_TYP E ((klass), ATSPI_TYPE_STATE_SET)) | |||
#define ATSPI_STATE_SET_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CL ASS ((obj), ATSPI_TYPE_STATE_SET, AtspiStateSetClass)) | #define ATSPI_STATE_SET_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CL ASS ((obj), ATSPI_TYPE_STATE_SET, AtspiStateSetClass)) | |||
G_BEGIN_DECLS | ||||
typedef struct _AtspiStateSet AtspiStateSet; | typedef struct _AtspiStateSet AtspiStateSet; | |||
struct _AtspiStateSet | struct _AtspiStateSet | |||
{ | { | |||
GObject parent; | GObject parent; | |||
struct _AtspiAccessible *accessible; | struct _AtspiAccessible *accessible; | |||
gint64 states; | gint64 states; | |||
}; | }; | |||
typedef struct _AtspiStateSetClass AtspiStateSetClass; | typedef struct _AtspiStateSetClass AtspiStateSetClass; | |||
struct _AtspiStateSetClass | struct _AtspiStateSetClass | |||
skipping to change at line 71 | skipping to change at line 73 | |||
gboolean atspi_state_set_equals (AtspiStateSet *set, AtspiStateSet *set2); | gboolean atspi_state_set_equals (AtspiStateSet *set, AtspiStateSet *set2); | |||
GArray * atspi_state_set_get_states (AtspiStateSet *set); | GArray * atspi_state_set_get_states (AtspiStateSet *set); | |||
gboolean atspi_state_set_is_empty (AtspiStateSet *set); | gboolean atspi_state_set_is_empty (AtspiStateSet *set); | |||
void atspi_state_set_remove (AtspiStateSet *set, AtspiStateType state); | void atspi_state_set_remove (AtspiStateSet *set, AtspiStateType state); | |||
AtspiStateSet * _atspi_state_set_new_internal (struct _AtspiAccessible *acc essible, gint64 states); | AtspiStateSet * _atspi_state_set_new_internal (struct _AtspiAccessible *acc essible, gint64 states); | |||
G_END_DECLS | ||||
#endif /* _ATSPI_STATE_SET_H_ */ | #endif /* _ATSPI_STATE_SET_H_ */ | |||
End of changes. 2 change blocks. | ||||
0 lines changed or deleted | 4 lines changed or added | |||
atspi-table.h | atspi-table.h | |||
---|---|---|---|---|
skipping to change at line 35 | skipping to change at line 35 | |||
#ifndef _ATSPI_TABLE_H_ | #ifndef _ATSPI_TABLE_H_ | |||
#define _ATSPI_TABLE_H_ | #define _ATSPI_TABLE_H_ | |||
#include "glib-object.h" | #include "glib-object.h" | |||
#include "atspi-constants.h" | #include "atspi-constants.h" | |||
#include "atspi-types.h" | #include "atspi-types.h" | |||
G_BEGIN_DECLS | ||||
#define ATSPI_TYPE_TABLE (atspi_table_get_type ()) | #define ATSPI_TYPE_TABLE (atspi_table_get_type ()) | |||
#define ATSPI_IS_TABLE(obj) G_TYPE_CHECK_INSTANCE_TYPE ((ob j), ATSPI_TYPE_TABLE) | #define ATSPI_IS_TABLE(obj) G_TYPE_CHECK_INSTANCE_TYPE ((ob j), ATSPI_TYPE_TABLE) | |||
#define ATSPI_TABLE(obj) G_TYPE_CHECK_INSTANCE_CAST ((ob j), ATSPI_TYPE_TABLE, AtspiTable) | #define ATSPI_TABLE(obj) G_TYPE_CHECK_INSTANCE_CAST ((ob j), ATSPI_TYPE_TABLE, AtspiTable) | |||
#define ATSPI_TABLE_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), ATSPI_TYPE_TABLE, AtspiTable)) | #define ATSPI_TABLE_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), ATSPI_TYPE_TABLE, AtspiTable)) | |||
GType atspi_table_get_type (); | GType atspi_table_get_type (); | |||
struct _AtspiTable | struct _AtspiTable | |||
{ | { | |||
GTypeInterface parent; | GTypeInterface parent; | |||
skipping to change at line 101 | skipping to change at line 103 | |||
gboolean atspi_table_add_column_selection (AtspiTable *obj, gint column, GE rror **error); | gboolean atspi_table_add_column_selection (AtspiTable *obj, gint column, GE rror **error); | |||
gboolean atspi_table_remove_row_selection (AtspiTable *obj, gint row, GErro r **error); | gboolean atspi_table_remove_row_selection (AtspiTable *obj, gint row, GErro r **error); | |||
gboolean atspi_table_remove_column_selection (AtspiTable *obj, gint column, GError **error); | gboolean atspi_table_remove_column_selection (AtspiTable *obj, gint column, GError **error); | |||
gboolean atspi_table_get_row_column_extents_at_index (AtspiTable *obj, gint index, gint *row, gint *col, gint *row_extents, gint *col_extents, gboolea n *is_selected, GError **error); | gboolean atspi_table_get_row_column_extents_at_index (AtspiTable *obj, gint index, gint *row, gint *col, gint *row_extents, gint *col_extents, gboolea n *is_selected, GError **error); | |||
gboolean atspi_table_is_selected (AtspiTable *obj, gint row, gint column, G Error **error); | gboolean atspi_table_is_selected (AtspiTable *obj, gint row, gint column, G Error **error); | |||
G_END_DECLS | ||||
#endif /* _ATSPI_TABLE_H_ */ | #endif /* _ATSPI_TABLE_H_ */ | |||
End of changes. 2 change blocks. | ||||
0 lines changed or deleted | 4 lines changed or added | |||
atspi-text.h | atspi-text.h | |||
---|---|---|---|---|
skipping to change at line 35 | skipping to change at line 35 | |||
#ifndef _ATSPI_TEXT_H_ | #ifndef _ATSPI_TEXT_H_ | |||
#define _ATSPI_TEXT_H_ | #define _ATSPI_TEXT_H_ | |||
#include "glib-object.h" | #include "glib-object.h" | |||
#include "atspi-constants.h" | #include "atspi-constants.h" | |||
#include "atspi-types.h" | #include "atspi-types.h" | |||
G_BEGIN_DECLS | ||||
typedef struct _AtspiRange AtspiRange; | typedef struct _AtspiRange AtspiRange; | |||
struct _AtspiRange | struct _AtspiRange | |||
{ | { | |||
gint start_offset; | gint start_offset; | |||
gint end_offset; | gint end_offset; | |||
}; | }; | |||
/** | /** | |||
* ATSPI_TYPE_RANGE: | * ATSPI_TYPE_RANGE: | |||
* | * | |||
skipping to change at line 124 | skipping to change at line 126 | |||
gint atspi_text_get_n_selections (AtspiText *obj, GError **error); | gint atspi_text_get_n_selections (AtspiText *obj, GError **error); | |||
AtspiRange * atspi_text_get_selection (AtspiText *obj, gint selection_num, GError **error); | AtspiRange * atspi_text_get_selection (AtspiText *obj, gint selection_num, GError **error); | |||
gboolean atspi_text_add_selection (AtspiText *obj, gint start_offset, gint end_offset, GError **error); | gboolean atspi_text_add_selection (AtspiText *obj, gint start_offset, gint end_offset, GError **error); | |||
gboolean atspi_text_remove_selection (AtspiText *obj, gint selection_num, G Error **error); | gboolean atspi_text_remove_selection (AtspiText *obj, gint selection_num, G Error **error); | |||
gboolean atspi_text_set_selection (AtspiText *obj, gint selection_num, gint start_offset, gint end_offset, GError **error); | gboolean atspi_text_set_selection (AtspiText *obj, gint selection_num, gint start_offset, gint end_offset, GError **error); | |||
G_END_DECLS | ||||
#endif /* _ATSPI_TEXT_H_ */ | #endif /* _ATSPI_TEXT_H_ */ | |||
End of changes. 2 change blocks. | ||||
0 lines changed or deleted | 5 lines changed or added | |||
atspi-value.h | atspi-value.h | |||
---|---|---|---|---|
skipping to change at line 35 | skipping to change at line 35 | |||
#ifndef _ATSPI_VALUE_H_ | #ifndef _ATSPI_VALUE_H_ | |||
#define _ATSPI_VALUE_H_ | #define _ATSPI_VALUE_H_ | |||
#include "glib-object.h" | #include "glib-object.h" | |||
#include "atspi-constants.h" | #include "atspi-constants.h" | |||
#include "atspi-types.h" | #include "atspi-types.h" | |||
G_BEGIN_DECLS | ||||
#define ATSPI_TYPE_VALUE (atspi_value_get_type ()) | #define ATSPI_TYPE_VALUE (atspi_value_get_type ()) | |||
#define ATSPI_IS_VALUE(obj) G_TYPE_CHECK_INSTANCE_TYPE ((ob j), ATSPI_TYPE_VALUE) | #define ATSPI_IS_VALUE(obj) G_TYPE_CHECK_INSTANCE_TYPE ((ob j), ATSPI_TYPE_VALUE) | |||
#define ATSPI_VALUE(obj) G_TYPE_CHECK_INSTANCE_CAST ((ob j), ATSPI_TYPE_VALUE, AtspiValue) | #define ATSPI_VALUE(obj) G_TYPE_CHECK_INSTANCE_CAST ((ob j), ATSPI_TYPE_VALUE, AtspiValue) | |||
#define ATSPI_VALUE_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), ATSPI_TYPE_VALUE, AtspiValue)) | #define ATSPI_VALUE_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), ATSPI_TYPE_VALUE, AtspiValue)) | |||
GType atspi_value_get_type (); | GType atspi_value_get_type (); | |||
struct _AtspiValue | struct _AtspiValue | |||
{ | { | |||
GTypeInterface parent; | GTypeInterface parent; | |||
skipping to change at line 57 | skipping to change at line 59 | |||
gdouble atspi_value_get_minimum_value (AtspiValue *obj, GError **error); | gdouble atspi_value_get_minimum_value (AtspiValue *obj, GError **error); | |||
gdouble atspi_value_get_current_value (AtspiValue *obj, GError **error); | gdouble atspi_value_get_current_value (AtspiValue *obj, GError **error); | |||
gdouble atspi_value_get_maximum_value (AtspiValue *obj, GError **error); | gdouble atspi_value_get_maximum_value (AtspiValue *obj, GError **error); | |||
gboolean atspi_value_set_current_value (AtspiValue *obj, gdouble new_value, GError **error); | gboolean atspi_value_set_current_value (AtspiValue *obj, gdouble new_value, GError **error); | |||
gdouble atspi_value_get_minimum_increment (AtspiValue *obj, GError **error) ; | gdouble atspi_value_get_minimum_increment (AtspiValue *obj, GError **error) ; | |||
G_END_DECLS | ||||
#endif /* _ATSPI_VALUE_H_ */ | #endif /* _ATSPI_VALUE_H_ */ | |||
End of changes. 2 change blocks. | ||||
0 lines changed or deleted | 4 lines changed or added | |||